]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/vf_lenscorrection: add bilinear interpolation
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{id}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program optionally followed by "@@@var{id}".
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{commands}
316 @chapter Changing options at runtime with a command
317
318 Some options can be changed during the operation of the filter using
319 a command. These options are marked 'T' on the output of
320 @command{ffmpeg} @option{-h filter=<name of filter>}.
321 The name of the command is the name of the option and the argument is
322 the new value.
323
324 @anchor{framesync}
325 @chapter Options for filters with several inputs (framesync)
326 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
327
328 Some filters with several inputs support a common set of options.
329 These options can only be set by name, not with the short notation.
330
331 @table @option
332 @item eof_action
333 The action to take when EOF is encountered on the secondary input; it accepts
334 one of the following values:
335
336 @table @option
337 @item repeat
338 Repeat the last frame (the default).
339 @item endall
340 End both streams.
341 @item pass
342 Pass the main input through.
343 @end table
344
345 @item shortest
346 If set to 1, force the output to terminate when the shortest input
347 terminates. Default value is 0.
348
349 @item repeatlast
350 If set to 1, force the filter to extend the last frame of secondary streams
351 until the end of the primary stream. A value of 0 disables this behavior.
352 Default value is 1.
353 @end table
354
355 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
356
357 @chapter Audio Filters
358 @c man begin AUDIO FILTERS
359
360 When you configure your FFmpeg build, you can disable any of the
361 existing filters using @code{--disable-filters}.
362 The configure output will show the audio filters included in your
363 build.
364
365 Below is a description of the currently available audio filters.
366
367 @section acompressor
368
369 A compressor is mainly used to reduce the dynamic range of a signal.
370 Especially modern music is mostly compressed at a high ratio to
371 improve the overall loudness. It's done to get the highest attention
372 of a listener, "fatten" the sound and bring more "power" to the track.
373 If a signal is compressed too much it may sound dull or "dead"
374 afterwards or it may start to "pump" (which could be a powerful effect
375 but can also destroy a track completely).
376 The right compression is the key to reach a professional sound and is
377 the high art of mixing and mastering. Because of its complex settings
378 it may take a long time to get the right feeling for this kind of effect.
379
380 Compression is done by detecting the volume above a chosen level
381 @code{threshold} and dividing it by the factor set with @code{ratio}.
382 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
383 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
384 the signal would cause distortion of the waveform the reduction can be
385 levelled over the time. This is done by setting "Attack" and "Release".
386 @code{attack} determines how long the signal has to rise above the threshold
387 before any reduction will occur and @code{release} sets the time the signal
388 has to fall below the threshold to reduce the reduction again. Shorter signals
389 than the chosen attack time will be left untouched.
390 The overall reduction of the signal can be made up afterwards with the
391 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
392 raising the makeup to this level results in a signal twice as loud than the
393 source. To gain a softer entry in the compression the @code{knee} flattens the
394 hard edge at the threshold in the range of the chosen decibels.
395
396 The filter accepts the following options:
397
398 @table @option
399 @item level_in
400 Set input gain. Default is 1. Range is between 0.015625 and 64.
401
402 @item mode
403 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
404 Default is @code{downward}.
405
406 @item threshold
407 If a signal of stream rises above this level it will affect the gain
408 reduction.
409 By default it is 0.125. Range is between 0.00097563 and 1.
410
411 @item ratio
412 Set a ratio by which the signal is reduced. 1:2 means that if the level
413 rose 4dB above the threshold, it will be only 2dB above after the reduction.
414 Default is 2. Range is between 1 and 20.
415
416 @item attack
417 Amount of milliseconds the signal has to rise above the threshold before gain
418 reduction starts. Default is 20. Range is between 0.01 and 2000.
419
420 @item release
421 Amount of milliseconds the signal has to fall below the threshold before
422 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
423
424 @item makeup
425 Set the amount by how much signal will be amplified after processing.
426 Default is 1. Range is from 1 to 64.
427
428 @item knee
429 Curve the sharp knee around the threshold to enter gain reduction more softly.
430 Default is 2.82843. Range is between 1 and 8.
431
432 @item link
433 Choose if the @code{average} level between all channels of input stream
434 or the louder(@code{maximum}) channel of input stream affects the
435 reduction. Default is @code{average}.
436
437 @item detection
438 Should the exact signal be taken in case of @code{peak} or an RMS one in case
439 of @code{rms}. Default is @code{rms} which is mostly smoother.
440
441 @item mix
442 How much to use compressed signal in output. Default is 1.
443 Range is between 0 and 1.
444 @end table
445
446 @subsection Commands
447
448 This filter supports the all above options as @ref{commands}.
449
450 @section acontrast
451 Simple audio dynamic range compression/expansion filter.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item contrast
457 Set contrast. Default is 33. Allowed range is between 0 and 100.
458 @end table
459
460 @section acopy
461
462 Copy the input audio source unchanged to the output. This is mainly useful for
463 testing purposes.
464
465 @section acrossfade
466
467 Apply cross fade from one input audio stream to another input audio stream.
468 The cross fade is applied for specified duration near the end of first stream.
469
470 The filter accepts the following options:
471
472 @table @option
473 @item nb_samples, ns
474 Specify the number of samples for which the cross fade effect has to last.
475 At the end of the cross fade effect the first input audio will be completely
476 silent. Default is 44100.
477
478 @item duration, d
479 Specify the duration of the cross fade effect. See
480 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
481 for the accepted syntax.
482 By default the duration is determined by @var{nb_samples}.
483 If set this option is used instead of @var{nb_samples}.
484
485 @item overlap, o
486 Should first stream end overlap with second stream start. Default is enabled.
487
488 @item curve1
489 Set curve for cross fade transition for first stream.
490
491 @item curve2
492 Set curve for cross fade transition for second stream.
493
494 For description of available curve types see @ref{afade} filter description.
495 @end table
496
497 @subsection Examples
498
499 @itemize
500 @item
501 Cross fade from one input to another:
502 @example
503 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
504 @end example
505
506 @item
507 Cross fade from one input to another but without overlapping:
508 @example
509 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
510 @end example
511 @end itemize
512
513 @section acrossover
514 Split audio stream into several bands.
515
516 This filter splits audio stream into two or more frequency ranges.
517 Summing all streams back will give flat output.
518
519 The filter accepts the following options:
520
521 @table @option
522 @item split
523 Set split frequencies. Those must be positive and increasing.
524
525 @item order
526 Set filter order for each band split. This controls filter roll-off or steepness
527 of filter transfer function.
528 Available values are:
529
530 @table @samp
531 @item 2nd
532 12 dB per octave.
533 @item 4th
534 24 dB per octave.
535 @item 6th
536 36 dB per octave.
537 @item 8th
538 48 dB per octave.
539 @item 10th
540 60 dB per octave.
541 @item 12th
542 72 dB per octave.
543 @item 14th
544 84 dB per octave.
545 @item 16th
546 96 dB per octave.
547 @item 18th
548 108 dB per octave.
549 @item 20th
550 120 dB per octave.
551 @end table
552
553 Default is @var{4th}.
554
555 @item level
556 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
557
558 @item gains
559 Set output gain for each band. Default value is 1 for all bands.
560 @end table
561
562 @subsection Examples
563
564 @itemize
565 @item
566 Split input audio stream into two bands (low and high) with split frequency of 1500 Hz,
567 each band will be in separate stream:
568 @example
569 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
570 @end example
571
572 @item
573 Same as above, but with higher filter order:
574 @example
575 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500:order=8th[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
576 @end example
577
578 @item
579 Same as above, but also with additional middle band (frequencies between 1500 and 8000):
580 @example
581 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500 8000:order=8th[LOW][MID][HIGH]' -map '[LOW]' low.wav -map '[MID]' mid.wav -map '[HIGH]' high.wav
582 @end example
583 @end itemize
584
585 @section acrusher
586
587 Reduce audio bit resolution.
588
589 This filter is bit crusher with enhanced functionality. A bit crusher
590 is used to audibly reduce number of bits an audio signal is sampled
591 with. This doesn't change the bit depth at all, it just produces the
592 effect. Material reduced in bit depth sounds more harsh and "digital".
593 This filter is able to even round to continuous values instead of discrete
594 bit depths.
595 Additionally it has a D/C offset which results in different crushing of
596 the lower and the upper half of the signal.
597 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
598
599 Another feature of this filter is the logarithmic mode.
600 This setting switches from linear distances between bits to logarithmic ones.
601 The result is a much more "natural" sounding crusher which doesn't gate low
602 signals for example. The human ear has a logarithmic perception,
603 so this kind of crushing is much more pleasant.
604 Logarithmic crushing is also able to get anti-aliased.
605
606 The filter accepts the following options:
607
608 @table @option
609 @item level_in
610 Set level in.
611
612 @item level_out
613 Set level out.
614
615 @item bits
616 Set bit reduction.
617
618 @item mix
619 Set mixing amount.
620
621 @item mode
622 Can be linear: @code{lin} or logarithmic: @code{log}.
623
624 @item dc
625 Set DC.
626
627 @item aa
628 Set anti-aliasing.
629
630 @item samples
631 Set sample reduction.
632
633 @item lfo
634 Enable LFO. By default disabled.
635
636 @item lforange
637 Set LFO range.
638
639 @item lforate
640 Set LFO rate.
641 @end table
642
643 @section acue
644
645 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
646 filter.
647
648 @section adeclick
649 Remove impulsive noise from input audio.
650
651 Samples detected as impulsive noise are replaced by interpolated samples using
652 autoregressive modelling.
653
654 @table @option
655 @item w
656 Set window size, in milliseconds. Allowed range is from @code{10} to
657 @code{100}. Default value is @code{55} milliseconds.
658 This sets size of window which will be processed at once.
659
660 @item o
661 Set window overlap, in percentage of window size. Allowed range is from
662 @code{50} to @code{95}. Default value is @code{75} percent.
663 Setting this to a very high value increases impulsive noise removal but makes
664 whole process much slower.
665
666 @item a
667 Set autoregression order, in percentage of window size. Allowed range is from
668 @code{0} to @code{25}. Default value is @code{2} percent. This option also
669 controls quality of interpolated samples using neighbour good samples.
670
671 @item t
672 Set threshold value. Allowed range is from @code{1} to @code{100}.
673 Default value is @code{2}.
674 This controls the strength of impulsive noise which is going to be removed.
675 The lower value, the more samples will be detected as impulsive noise.
676
677 @item b
678 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
679 @code{10}. Default value is @code{2}.
680 If any two samples detected as noise are spaced less than this value then any
681 sample between those two samples will be also detected as noise.
682
683 @item m
684 Set overlap method.
685
686 It accepts the following values:
687 @table @option
688 @item a
689 Select overlap-add method. Even not interpolated samples are slightly
690 changed with this method.
691
692 @item s
693 Select overlap-save method. Not interpolated samples remain unchanged.
694 @end table
695
696 Default value is @code{a}.
697 @end table
698
699 @section adeclip
700 Remove clipped samples from input audio.
701
702 Samples detected as clipped are replaced by interpolated samples using
703 autoregressive modelling.
704
705 @table @option
706 @item w
707 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
708 Default value is @code{55} milliseconds.
709 This sets size of window which will be processed at once.
710
711 @item o
712 Set window overlap, in percentage of window size. Allowed range is from @code{50}
713 to @code{95}. Default value is @code{75} percent.
714
715 @item a
716 Set autoregression order, in percentage of window size. Allowed range is from
717 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
718 quality of interpolated samples using neighbour good samples.
719
720 @item t
721 Set threshold value. Allowed range is from @code{1} to @code{100}.
722 Default value is @code{10}. Higher values make clip detection less aggressive.
723
724 @item n
725 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
726 Default value is @code{1000}. Higher values make clip detection less aggressive.
727
728 @item m
729 Set overlap method.
730
731 It accepts the following values:
732 @table @option
733 @item a
734 Select overlap-add method. Even not interpolated samples are slightly changed
735 with this method.
736
737 @item s
738 Select overlap-save method. Not interpolated samples remain unchanged.
739 @end table
740
741 Default value is @code{a}.
742 @end table
743
744 @section adelay
745
746 Delay one or more audio channels.
747
748 Samples in delayed channel are filled with silence.
749
750 The filter accepts the following option:
751
752 @table @option
753 @item delays
754 Set list of delays in milliseconds for each channel separated by '|'.
755 Unused delays will be silently ignored. If number of given delays is
756 smaller than number of channels all remaining channels will not be delayed.
757 If you want to delay exact number of samples, append 'S' to number.
758 If you want instead to delay in seconds, append 's' to number.
759
760 @item all
761 Use last set delay for all remaining channels. By default is disabled.
762 This option if enabled changes how option @code{delays} is interpreted.
763 @end table
764
765 @subsection Examples
766
767 @itemize
768 @item
769 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
770 the second channel (and any other channels that may be present) unchanged.
771 @example
772 adelay=1500|0|500
773 @end example
774
775 @item
776 Delay second channel by 500 samples, the third channel by 700 samples and leave
777 the first channel (and any other channels that may be present) unchanged.
778 @example
779 adelay=0|500S|700S
780 @end example
781
782 @item
783 Delay all channels by same number of samples:
784 @example
785 adelay=delays=64S:all=1
786 @end example
787 @end itemize
788
789 @section adenorm
790 Remedy denormals in audio by adding extremely low-level noise.
791
792 This filter shall be placed before any filter that can produce denormals.
793
794 A description of the accepted parameters follows.
795
796 @table @option
797 @item level
798 Set level of added noise in dB. Default is @code{-351}.
799 Allowed range is from -451 to -90.
800
801 @item type
802 Set type of added noise.
803
804 @table @option
805 @item dc
806 Add DC signal.
807 @item ac
808 Add AC signal.
809 @item square
810 Add square signal.
811 @item pulse
812 Add pulse signal.
813 @end table
814
815 Default is @code{dc}.
816 @end table
817
818 @subsection Commands
819
820 This filter supports the all above options as @ref{commands}.
821
822 @section aderivative, aintegral
823
824 Compute derivative/integral of audio stream.
825
826 Applying both filters one after another produces original audio.
827
828 @section aecho
829
830 Apply echoing to the input audio.
831
832 Echoes are reflected sound and can occur naturally amongst mountains
833 (and sometimes large buildings) when talking or shouting; digital echo
834 effects emulate this behaviour and are often used to help fill out the
835 sound of a single instrument or vocal. The time difference between the
836 original signal and the reflection is the @code{delay}, and the
837 loudness of the reflected signal is the @code{decay}.
838 Multiple echoes can have different delays and decays.
839
840 A description of the accepted parameters follows.
841
842 @table @option
843 @item in_gain
844 Set input gain of reflected signal. Default is @code{0.6}.
845
846 @item out_gain
847 Set output gain of reflected signal. Default is @code{0.3}.
848
849 @item delays
850 Set list of time intervals in milliseconds between original signal and reflections
851 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
852 Default is @code{1000}.
853
854 @item decays
855 Set list of loudness of reflected signals separated by '|'.
856 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
857 Default is @code{0.5}.
858 @end table
859
860 @subsection Examples
861
862 @itemize
863 @item
864 Make it sound as if there are twice as many instruments as are actually playing:
865 @example
866 aecho=0.8:0.88:60:0.4
867 @end example
868
869 @item
870 If delay is very short, then it sounds like a (metallic) robot playing music:
871 @example
872 aecho=0.8:0.88:6:0.4
873 @end example
874
875 @item
876 A longer delay will sound like an open air concert in the mountains:
877 @example
878 aecho=0.8:0.9:1000:0.3
879 @end example
880
881 @item
882 Same as above but with one more mountain:
883 @example
884 aecho=0.8:0.9:1000|1800:0.3|0.25
885 @end example
886 @end itemize
887
888 @section aemphasis
889 Audio emphasis filter creates or restores material directly taken from LPs or
890 emphased CDs with different filter curves. E.g. to store music on vinyl the
891 signal has to be altered by a filter first to even out the disadvantages of
892 this recording medium.
893 Once the material is played back the inverse filter has to be applied to
894 restore the distortion of the frequency response.
895
896 The filter accepts the following options:
897
898 @table @option
899 @item level_in
900 Set input gain.
901
902 @item level_out
903 Set output gain.
904
905 @item mode
906 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
907 use @code{production} mode. Default is @code{reproduction} mode.
908
909 @item type
910 Set filter type. Selects medium. Can be one of the following:
911
912 @table @option
913 @item col
914 select Columbia.
915 @item emi
916 select EMI.
917 @item bsi
918 select BSI (78RPM).
919 @item riaa
920 select RIAA.
921 @item cd
922 select Compact Disc (CD).
923 @item 50fm
924 select 50µs (FM).
925 @item 75fm
926 select 75µs (FM).
927 @item 50kf
928 select 50µs (FM-KF).
929 @item 75kf
930 select 75µs (FM-KF).
931 @end table
932 @end table
933
934 @subsection Commands
935
936 This filter supports the all above options as @ref{commands}.
937
938 @section aeval
939
940 Modify an audio signal according to the specified expressions.
941
942 This filter accepts one or more expressions (one for each channel),
943 which are evaluated and used to modify a corresponding audio signal.
944
945 It accepts the following parameters:
946
947 @table @option
948 @item exprs
949 Set the '|'-separated expressions list for each separate channel. If
950 the number of input channels is greater than the number of
951 expressions, the last specified expression is used for the remaining
952 output channels.
953
954 @item channel_layout, c
955 Set output channel layout. If not specified, the channel layout is
956 specified by the number of expressions. If set to @samp{same}, it will
957 use by default the same input channel layout.
958 @end table
959
960 Each expression in @var{exprs} can contain the following constants and functions:
961
962 @table @option
963 @item ch
964 channel number of the current expression
965
966 @item n
967 number of the evaluated sample, starting from 0
968
969 @item s
970 sample rate
971
972 @item t
973 time of the evaluated sample expressed in seconds
974
975 @item nb_in_channels
976 @item nb_out_channels
977 input and output number of channels
978
979 @item val(CH)
980 the value of input channel with number @var{CH}
981 @end table
982
983 Note: this filter is slow. For faster processing you should use a
984 dedicated filter.
985
986 @subsection Examples
987
988 @itemize
989 @item
990 Half volume:
991 @example
992 aeval=val(ch)/2:c=same
993 @end example
994
995 @item
996 Invert phase of the second channel:
997 @example
998 aeval=val(0)|-val(1)
999 @end example
1000 @end itemize
1001
1002 @anchor{afade}
1003 @section afade
1004
1005 Apply fade-in/out effect to input audio.
1006
1007 A description of the accepted parameters follows.
1008
1009 @table @option
1010 @item type, t
1011 Specify the effect type, can be either @code{in} for fade-in, or
1012 @code{out} for a fade-out effect. Default is @code{in}.
1013
1014 @item start_sample, ss
1015 Specify the number of the start sample for starting to apply the fade
1016 effect. Default is 0.
1017
1018 @item nb_samples, ns
1019 Specify the number of samples for which the fade effect has to last. At
1020 the end of the fade-in effect the output audio will have the same
1021 volume as the input audio, at the end of the fade-out transition
1022 the output audio will be silence. Default is 44100.
1023
1024 @item start_time, st
1025 Specify the start time of the fade effect. Default is 0.
1026 The value must be specified as a time duration; see
1027 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1028 for the accepted syntax.
1029 If set this option is used instead of @var{start_sample}.
1030
1031 @item duration, d
1032 Specify the duration of the fade effect. See
1033 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1034 for the accepted syntax.
1035 At the end of the fade-in effect the output audio will have the same
1036 volume as the input audio, at the end of the fade-out transition
1037 the output audio will be silence.
1038 By default the duration is determined by @var{nb_samples}.
1039 If set this option is used instead of @var{nb_samples}.
1040
1041 @item curve
1042 Set curve for fade transition.
1043
1044 It accepts the following values:
1045 @table @option
1046 @item tri
1047 select triangular, linear slope (default)
1048 @item qsin
1049 select quarter of sine wave
1050 @item hsin
1051 select half of sine wave
1052 @item esin
1053 select exponential sine wave
1054 @item log
1055 select logarithmic
1056 @item ipar
1057 select inverted parabola
1058 @item qua
1059 select quadratic
1060 @item cub
1061 select cubic
1062 @item squ
1063 select square root
1064 @item cbr
1065 select cubic root
1066 @item par
1067 select parabola
1068 @item exp
1069 select exponential
1070 @item iqsin
1071 select inverted quarter of sine wave
1072 @item ihsin
1073 select inverted half of sine wave
1074 @item dese
1075 select double-exponential seat
1076 @item desi
1077 select double-exponential sigmoid
1078 @item losi
1079 select logistic sigmoid
1080 @item sinc
1081 select sine cardinal function
1082 @item isinc
1083 select inverted sine cardinal function
1084 @item nofade
1085 no fade applied
1086 @end table
1087 @end table
1088
1089 @subsection Commands
1090
1091 This filter supports the all above options as @ref{commands}.
1092
1093 @subsection Examples
1094
1095 @itemize
1096 @item
1097 Fade in first 15 seconds of audio:
1098 @example
1099 afade=t=in:ss=0:d=15
1100 @end example
1101
1102 @item
1103 Fade out last 25 seconds of a 900 seconds audio:
1104 @example
1105 afade=t=out:st=875:d=25
1106 @end example
1107 @end itemize
1108
1109 @section afftdn
1110 Denoise audio samples with FFT.
1111
1112 A description of the accepted parameters follows.
1113
1114 @table @option
1115 @item nr
1116 Set the noise reduction in dB, allowed range is 0.01 to 97.
1117 Default value is 12 dB.
1118
1119 @item nf
1120 Set the noise floor in dB, allowed range is -80 to -20.
1121 Default value is -50 dB.
1122
1123 @item nt
1124 Set the noise type.
1125
1126 It accepts the following values:
1127 @table @option
1128 @item w
1129 Select white noise.
1130
1131 @item v
1132 Select vinyl noise.
1133
1134 @item s
1135 Select shellac noise.
1136
1137 @item c
1138 Select custom noise, defined in @code{bn} option.
1139
1140 Default value is white noise.
1141 @end table
1142
1143 @item bn
1144 Set custom band noise for every one of 15 bands.
1145 Bands are separated by ' ' or '|'.
1146
1147 @item rf
1148 Set the residual floor in dB, allowed range is -80 to -20.
1149 Default value is -38 dB.
1150
1151 @item tn
1152 Enable noise tracking. By default is disabled.
1153 With this enabled, noise floor is automatically adjusted.
1154
1155 @item tr
1156 Enable residual tracking. By default is disabled.
1157
1158 @item om
1159 Set the output mode.
1160
1161 It accepts the following values:
1162 @table @option
1163 @item i
1164 Pass input unchanged.
1165
1166 @item o
1167 Pass noise filtered out.
1168
1169 @item n
1170 Pass only noise.
1171
1172 Default value is @var{o}.
1173 @end table
1174 @end table
1175
1176 @subsection Commands
1177
1178 This filter supports the following commands:
1179 @table @option
1180 @item sample_noise, sn
1181 Start or stop measuring noise profile.
1182 Syntax for the command is : "start" or "stop" string.
1183 After measuring noise profile is stopped it will be
1184 automatically applied in filtering.
1185
1186 @item noise_reduction, nr
1187 Change noise reduction. Argument is single float number.
1188 Syntax for the command is : "@var{noise_reduction}"
1189
1190 @item noise_floor, nf
1191 Change noise floor. Argument is single float number.
1192 Syntax for the command is : "@var{noise_floor}"
1193
1194 @item output_mode, om
1195 Change output mode operation.
1196 Syntax for the command is : "i", "o" or "n" string.
1197 @end table
1198
1199 @section afftfilt
1200 Apply arbitrary expressions to samples in frequency domain.
1201
1202 @table @option
1203 @item real
1204 Set frequency domain real expression for each separate channel separated
1205 by '|'. Default is "re".
1206 If the number of input channels is greater than the number of
1207 expressions, the last specified expression is used for the remaining
1208 output channels.
1209
1210 @item imag
1211 Set frequency domain imaginary expression for each separate channel
1212 separated by '|'. Default is "im".
1213
1214 Each expression in @var{real} and @var{imag} can contain the following
1215 constants and functions:
1216
1217 @table @option
1218 @item sr
1219 sample rate
1220
1221 @item b
1222 current frequency bin number
1223
1224 @item nb
1225 number of available bins
1226
1227 @item ch
1228 channel number of the current expression
1229
1230 @item chs
1231 number of channels
1232
1233 @item pts
1234 current frame pts
1235
1236 @item re
1237 current real part of frequency bin of current channel
1238
1239 @item im
1240 current imaginary part of frequency bin of current channel
1241
1242 @item real(b, ch)
1243 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1244
1245 @item imag(b, ch)
1246 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1247 @end table
1248
1249 @item win_size
1250 Set window size. Allowed range is from 16 to 131072.
1251 Default is @code{4096}
1252
1253 @item win_func
1254 Set window function. Default is @code{hann}.
1255
1256 @item overlap
1257 Set window overlap. If set to 1, the recommended overlap for selected
1258 window function will be picked. Default is @code{0.75}.
1259 @end table
1260
1261 @subsection Examples
1262
1263 @itemize
1264 @item
1265 Leave almost only low frequencies in audio:
1266 @example
1267 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1268 @end example
1269
1270 @item
1271 Apply robotize effect:
1272 @example
1273 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1274 @end example
1275
1276 @item
1277 Apply whisper effect:
1278 @example
1279 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"
1280 @end example
1281 @end itemize
1282
1283 @anchor{afir}
1284 @section afir
1285
1286 Apply an arbitrary Finite Impulse Response filter.
1287
1288 This filter is designed for applying long FIR filters,
1289 up to 60 seconds long.
1290
1291 It can be used as component for digital crossover filters,
1292 room equalization, cross talk cancellation, wavefield synthesis,
1293 auralization, ambiophonics, ambisonics and spatialization.
1294
1295 This filter uses the streams higher than first one as FIR coefficients.
1296 If the non-first stream holds a single channel, it will be used
1297 for all input channels in the first stream, otherwise
1298 the number of channels in the non-first stream must be same as
1299 the number of channels in the first stream.
1300
1301 It accepts the following parameters:
1302
1303 @table @option
1304 @item dry
1305 Set dry gain. This sets input gain.
1306
1307 @item wet
1308 Set wet gain. This sets final output gain.
1309
1310 @item length
1311 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1312
1313 @item gtype
1314 Enable applying gain measured from power of IR.
1315
1316 Set which approach to use for auto gain measurement.
1317
1318 @table @option
1319 @item none
1320 Do not apply any gain.
1321
1322 @item peak
1323 select peak gain, very conservative approach. This is default value.
1324
1325 @item dc
1326 select DC gain, limited application.
1327
1328 @item gn
1329 select gain to noise approach, this is most popular one.
1330 @end table
1331
1332 @item irgain
1333 Set gain to be applied to IR coefficients before filtering.
1334 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1335
1336 @item irfmt
1337 Set format of IR stream. Can be @code{mono} or @code{input}.
1338 Default is @code{input}.
1339
1340 @item maxir
1341 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1342 Allowed range is 0.1 to 60 seconds.
1343
1344 @item response
1345 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1346 By default it is disabled.
1347
1348 @item channel
1349 Set for which IR channel to display frequency response. By default is first channel
1350 displayed. This option is used only when @var{response} is enabled.
1351
1352 @item size
1353 Set video stream size. This option is used only when @var{response} is enabled.
1354
1355 @item rate
1356 Set video stream frame rate. This option is used only when @var{response} is enabled.
1357
1358 @item minp
1359 Set minimal partition size used for convolution. Default is @var{8192}.
1360 Allowed range is from @var{1} to @var{32768}.
1361 Lower values decreases latency at cost of higher CPU usage.
1362
1363 @item maxp
1364 Set maximal partition size used for convolution. Default is @var{8192}.
1365 Allowed range is from @var{8} to @var{32768}.
1366 Lower values may increase CPU usage.
1367
1368 @item nbirs
1369 Set number of input impulse responses streams which will be switchable at runtime.
1370 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1371
1372 @item ir
1373 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1374 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1375 This option can be changed at runtime via @ref{commands}.
1376 @end table
1377
1378 @subsection Examples
1379
1380 @itemize
1381 @item
1382 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1383 @example
1384 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1385 @end example
1386 @end itemize
1387
1388 @anchor{aformat}
1389 @section aformat
1390
1391 Set output format constraints for the input audio. The framework will
1392 negotiate the most appropriate format to minimize conversions.
1393
1394 It accepts the following parameters:
1395 @table @option
1396
1397 @item sample_fmts, f
1398 A '|'-separated list of requested sample formats.
1399
1400 @item sample_rates, r
1401 A '|'-separated list of requested sample rates.
1402
1403 @item channel_layouts, cl
1404 A '|'-separated list of requested channel layouts.
1405
1406 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1407 for the required syntax.
1408 @end table
1409
1410 If a parameter is omitted, all values are allowed.
1411
1412 Force the output to either unsigned 8-bit or signed 16-bit stereo
1413 @example
1414 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1415 @end example
1416
1417 @section afreqshift
1418 Apply frequency shift to input audio samples.
1419
1420 The filter accepts the following options:
1421
1422 @table @option
1423 @item shift
1424 Specify frequency shift. Allowed range is -INT_MAX to INT_MAX.
1425 Default value is 0.0.
1426
1427 @item level
1428 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
1429 Default value is 1.0.
1430 @end table
1431
1432 @subsection Commands
1433
1434 This filter supports the all above options as @ref{commands}.
1435
1436 @section agate
1437
1438 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1439 processing reduces disturbing noise between useful signals.
1440
1441 Gating is done by detecting the volume below a chosen level @var{threshold}
1442 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1443 floor is set via @var{range}. Because an exact manipulation of the signal
1444 would cause distortion of the waveform the reduction can be levelled over
1445 time. This is done by setting @var{attack} and @var{release}.
1446
1447 @var{attack} determines how long the signal has to fall below the threshold
1448 before any reduction will occur and @var{release} sets the time the signal
1449 has to rise above the threshold to reduce the reduction again.
1450 Shorter signals than the chosen attack time will be left untouched.
1451
1452 @table @option
1453 @item level_in
1454 Set input level before filtering.
1455 Default is 1. Allowed range is from 0.015625 to 64.
1456
1457 @item mode
1458 Set the mode of operation. Can be @code{upward} or @code{downward}.
1459 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1460 will be amplified, expanding dynamic range in upward direction.
1461 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1462
1463 @item range
1464 Set the level of gain reduction when the signal is below the threshold.
1465 Default is 0.06125. Allowed range is from 0 to 1.
1466 Setting this to 0 disables reduction and then filter behaves like expander.
1467
1468 @item threshold
1469 If a signal rises above this level the gain reduction is released.
1470 Default is 0.125. Allowed range is from 0 to 1.
1471
1472 @item ratio
1473 Set a ratio by which the signal is reduced.
1474 Default is 2. Allowed range is from 1 to 9000.
1475
1476 @item attack
1477 Amount of milliseconds the signal has to rise above the threshold before gain
1478 reduction stops.
1479 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1480
1481 @item release
1482 Amount of milliseconds the signal has to fall below the threshold before the
1483 reduction is increased again. Default is 250 milliseconds.
1484 Allowed range is from 0.01 to 9000.
1485
1486 @item makeup
1487 Set amount of amplification of signal after processing.
1488 Default is 1. Allowed range is from 1 to 64.
1489
1490 @item knee
1491 Curve the sharp knee around the threshold to enter gain reduction more softly.
1492 Default is 2.828427125. Allowed range is from 1 to 8.
1493
1494 @item detection
1495 Choose if exact signal should be taken for detection or an RMS like one.
1496 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1497
1498 @item link
1499 Choose if the average level between all channels or the louder channel affects
1500 the reduction.
1501 Default is @code{average}. Can be @code{average} or @code{maximum}.
1502 @end table
1503
1504 @subsection Commands
1505
1506 This filter supports the all above options as @ref{commands}.
1507
1508 @section aiir
1509
1510 Apply an arbitrary Infinite Impulse Response filter.
1511
1512 It accepts the following parameters:
1513
1514 @table @option
1515 @item zeros, z
1516 Set B/numerator/zeros/reflection coefficients.
1517
1518 @item poles, p
1519 Set A/denominator/poles/ladder coefficients.
1520
1521 @item gains, k
1522 Set channels gains.
1523
1524 @item dry_gain
1525 Set input gain.
1526
1527 @item wet_gain
1528 Set output gain.
1529
1530 @item format, f
1531 Set coefficients format.
1532
1533 @table @samp
1534 @item ll
1535 lattice-ladder function
1536 @item sf
1537 analog transfer function
1538 @item tf
1539 digital transfer function
1540 @item zp
1541 Z-plane zeros/poles, cartesian (default)
1542 @item pr
1543 Z-plane zeros/poles, polar radians
1544 @item pd
1545 Z-plane zeros/poles, polar degrees
1546 @item sp
1547 S-plane zeros/poles
1548 @end table
1549
1550 @item process, r
1551 Set type of processing.
1552
1553 @table @samp
1554 @item d
1555 direct processing
1556 @item s
1557 serial processing
1558 @item p
1559 parallel processing
1560 @end table
1561
1562 @item precision, e
1563 Set filtering precision.
1564
1565 @table @samp
1566 @item dbl
1567 double-precision floating-point (default)
1568 @item flt
1569 single-precision floating-point
1570 @item i32
1571 32-bit integers
1572 @item i16
1573 16-bit integers
1574 @end table
1575
1576 @item normalize, n
1577 Normalize filter coefficients, by default is enabled.
1578 Enabling it will normalize magnitude response at DC to 0dB.
1579
1580 @item mix
1581 How much to use filtered signal in output. Default is 1.
1582 Range is between 0 and 1.
1583
1584 @item response
1585 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1586 By default it is disabled.
1587
1588 @item channel
1589 Set for which IR channel to display frequency response. By default is first channel
1590 displayed. This option is used only when @var{response} is enabled.
1591
1592 @item size
1593 Set video stream size. This option is used only when @var{response} is enabled.
1594 @end table
1595
1596 Coefficients in @code{tf} and @code{sf} format are separated by spaces and are in ascending
1597 order.
1598
1599 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1600 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1601 imaginary unit.
1602
1603 Different coefficients and gains can be provided for every channel, in such case
1604 use '|' to separate coefficients or gains. Last provided coefficients will be
1605 used for all remaining channels.
1606
1607 @subsection Examples
1608
1609 @itemize
1610 @item
1611 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1612 @example
1613 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
1614 @end example
1615
1616 @item
1617 Same as above but in @code{zp} format:
1618 @example
1619 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
1620 @end example
1621
1622 @item
1623 Apply 3-rd order analog normalized Butterworth low-pass filter, using analog transfer function format:
1624 @example
1625 aiir=z=1.3057 0 0 0:p=1.3057 2.3892 2.1860 1:f=sf:r=d
1626 @end example
1627 @end itemize
1628
1629 @section alimiter
1630
1631 The limiter prevents an input signal from rising over a desired threshold.
1632 This limiter uses lookahead technology to prevent your signal from distorting.
1633 It means that there is a small delay after the signal is processed. Keep in mind
1634 that the delay it produces is the attack time you set.
1635
1636 The filter accepts the following options:
1637
1638 @table @option
1639 @item level_in
1640 Set input gain. Default is 1.
1641
1642 @item level_out
1643 Set output gain. Default is 1.
1644
1645 @item limit
1646 Don't let signals above this level pass the limiter. Default is 1.
1647
1648 @item attack
1649 The limiter will reach its attenuation level in this amount of time in
1650 milliseconds. Default is 5 milliseconds.
1651
1652 @item release
1653 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1654 Default is 50 milliseconds.
1655
1656 @item asc
1657 When gain reduction is always needed ASC takes care of releasing to an
1658 average reduction level rather than reaching a reduction of 0 in the release
1659 time.
1660
1661 @item asc_level
1662 Select how much the release time is affected by ASC, 0 means nearly no changes
1663 in release time while 1 produces higher release times.
1664
1665 @item level
1666 Auto level output signal. Default is enabled.
1667 This normalizes audio back to 0dB if enabled.
1668 @end table
1669
1670 Depending on picked setting it is recommended to upsample input 2x or 4x times
1671 with @ref{aresample} before applying this filter.
1672
1673 @section allpass
1674
1675 Apply a two-pole all-pass filter with central frequency (in Hz)
1676 @var{frequency}, and filter-width @var{width}.
1677 An all-pass filter changes the audio's frequency to phase relationship
1678 without changing its frequency to amplitude relationship.
1679
1680 The filter accepts the following options:
1681
1682 @table @option
1683 @item frequency, f
1684 Set frequency in Hz.
1685
1686 @item width_type, t
1687 Set method to specify band-width of filter.
1688 @table @option
1689 @item h
1690 Hz
1691 @item q
1692 Q-Factor
1693 @item o
1694 octave
1695 @item s
1696 slope
1697 @item k
1698 kHz
1699 @end table
1700
1701 @item width, w
1702 Specify the band-width of a filter in width_type units.
1703
1704 @item mix, m
1705 How much to use filtered signal in output. Default is 1.
1706 Range is between 0 and 1.
1707
1708 @item channels, c
1709 Specify which channels to filter, by default all available are filtered.
1710
1711 @item normalize, n
1712 Normalize biquad coefficients, by default is disabled.
1713 Enabling it will normalize magnitude response at DC to 0dB.
1714
1715 @item order, o
1716 Set the filter order, can be 1 or 2. Default is 2.
1717
1718 @item transform, a
1719 Set transform type of IIR filter.
1720 @table @option
1721 @item di
1722 @item dii
1723 @item tdii
1724 @item latt
1725 @end table
1726
1727 @item precision, r
1728 Set precison of filtering.
1729 @table @option
1730 @item auto
1731 Pick automatic sample format depending on surround filters.
1732 @item s16
1733 Always use signed 16-bit.
1734 @item s32
1735 Always use signed 32-bit.
1736 @item f32
1737 Always use float 32-bit.
1738 @item f64
1739 Always use float 64-bit.
1740 @end table
1741 @end table
1742
1743 @subsection Commands
1744
1745 This filter supports the following commands:
1746 @table @option
1747 @item frequency, f
1748 Change allpass frequency.
1749 Syntax for the command is : "@var{frequency}"
1750
1751 @item width_type, t
1752 Change allpass width_type.
1753 Syntax for the command is : "@var{width_type}"
1754
1755 @item width, w
1756 Change allpass width.
1757 Syntax for the command is : "@var{width}"
1758
1759 @item mix, m
1760 Change allpass mix.
1761 Syntax for the command is : "@var{mix}"
1762 @end table
1763
1764 @section aloop
1765
1766 Loop audio samples.
1767
1768 The filter accepts the following options:
1769
1770 @table @option
1771 @item loop
1772 Set the number of loops. Setting this value to -1 will result in infinite loops.
1773 Default is 0.
1774
1775 @item size
1776 Set maximal number of samples. Default is 0.
1777
1778 @item start
1779 Set first sample of loop. Default is 0.
1780 @end table
1781
1782 @anchor{amerge}
1783 @section amerge
1784
1785 Merge two or more audio streams into a single multi-channel stream.
1786
1787 The filter accepts the following options:
1788
1789 @table @option
1790
1791 @item inputs
1792 Set the number of inputs. Default is 2.
1793
1794 @end table
1795
1796 If the channel layouts of the inputs are disjoint, and therefore compatible,
1797 the channel layout of the output will be set accordingly and the channels
1798 will be reordered as necessary. If the channel layouts of the inputs are not
1799 disjoint, the output will have all the channels of the first input then all
1800 the channels of the second input, in that order, and the channel layout of
1801 the output will be the default value corresponding to the total number of
1802 channels.
1803
1804 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1805 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1806 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1807 first input, b1 is the first channel of the second input).
1808
1809 On the other hand, if both input are in stereo, the output channels will be
1810 in the default order: a1, a2, b1, b2, and the channel layout will be
1811 arbitrarily set to 4.0, which may or may not be the expected value.
1812
1813 All inputs must have the same sample rate, and format.
1814
1815 If inputs do not have the same duration, the output will stop with the
1816 shortest.
1817
1818 @subsection Examples
1819
1820 @itemize
1821 @item
1822 Merge two mono files into a stereo stream:
1823 @example
1824 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1825 @end example
1826
1827 @item
1828 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1829 @example
1830 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
1831 @end example
1832 @end itemize
1833
1834 @section amix
1835
1836 Mixes multiple audio inputs into a single output.
1837
1838 Note that this filter only supports float samples (the @var{amerge}
1839 and @var{pan} audio filters support many formats). If the @var{amix}
1840 input has integer samples then @ref{aresample} will be automatically
1841 inserted to perform the conversion to float samples.
1842
1843 For example
1844 @example
1845 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1846 @end example
1847 will mix 3 input audio streams to a single output with the same duration as the
1848 first input and a dropout transition time of 3 seconds.
1849
1850 It accepts the following parameters:
1851 @table @option
1852
1853 @item inputs
1854 The number of inputs. If unspecified, it defaults to 2.
1855
1856 @item duration
1857 How to determine the end-of-stream.
1858 @table @option
1859
1860 @item longest
1861 The duration of the longest input. (default)
1862
1863 @item shortest
1864 The duration of the shortest input.
1865
1866 @item first
1867 The duration of the first input.
1868
1869 @end table
1870
1871 @item dropout_transition
1872 The transition time, in seconds, for volume renormalization when an input
1873 stream ends. The default value is 2 seconds.
1874
1875 @item weights
1876 Specify weight of each input audio stream as sequence.
1877 Each weight is separated by space. By default all inputs have same weight.
1878 @end table
1879
1880 @subsection Commands
1881
1882 This filter supports the following commands:
1883 @table @option
1884 @item weights
1885 Syntax is same as option with same name.
1886 @end table
1887
1888 @section amultiply
1889
1890 Multiply first audio stream with second audio stream and store result
1891 in output audio stream. Multiplication is done by multiplying each
1892 sample from first stream with sample at same position from second stream.
1893
1894 With this element-wise multiplication one can create amplitude fades and
1895 amplitude modulations.
1896
1897 @section anequalizer
1898
1899 High-order parametric multiband equalizer for each channel.
1900
1901 It accepts the following parameters:
1902 @table @option
1903 @item params
1904
1905 This option string is in format:
1906 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1907 Each equalizer band is separated by '|'.
1908
1909 @table @option
1910 @item chn
1911 Set channel number to which equalization will be applied.
1912 If input doesn't have that channel the entry is ignored.
1913
1914 @item f
1915 Set central frequency for band.
1916 If input doesn't have that frequency the entry is ignored.
1917
1918 @item w
1919 Set band width in Hertz.
1920
1921 @item g
1922 Set band gain in dB.
1923
1924 @item t
1925 Set filter type for band, optional, can be:
1926
1927 @table @samp
1928 @item 0
1929 Butterworth, this is default.
1930
1931 @item 1
1932 Chebyshev type 1.
1933
1934 @item 2
1935 Chebyshev type 2.
1936 @end table
1937 @end table
1938
1939 @item curves
1940 With this option activated frequency response of anequalizer is displayed
1941 in video stream.
1942
1943 @item size
1944 Set video stream size. Only useful if curves option is activated.
1945
1946 @item mgain
1947 Set max gain that will be displayed. Only useful if curves option is activated.
1948 Setting this to a reasonable value makes it possible to display gain which is derived from
1949 neighbour bands which are too close to each other and thus produce higher gain
1950 when both are activated.
1951
1952 @item fscale
1953 Set frequency scale used to draw frequency response in video output.
1954 Can be linear or logarithmic. Default is logarithmic.
1955
1956 @item colors
1957 Set color for each channel curve which is going to be displayed in video stream.
1958 This is list of color names separated by space or by '|'.
1959 Unrecognised or missing colors will be replaced by white color.
1960 @end table
1961
1962 @subsection Examples
1963
1964 @itemize
1965 @item
1966 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1967 for first 2 channels using Chebyshev type 1 filter:
1968 @example
1969 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1970 @end example
1971 @end itemize
1972
1973 @subsection Commands
1974
1975 This filter supports the following commands:
1976 @table @option
1977 @item change
1978 Alter existing filter parameters.
1979 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1980
1981 @var{fN} is existing filter number, starting from 0, if no such filter is available
1982 error is returned.
1983 @var{freq} set new frequency parameter.
1984 @var{width} set new width parameter in Hertz.
1985 @var{gain} set new gain parameter in dB.
1986
1987 Full filter invocation with asendcmd may look like this:
1988 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1989 @end table
1990
1991 @section anlmdn
1992
1993 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1994
1995 Each sample is adjusted by looking for other samples with similar contexts. This
1996 context similarity is defined by comparing their surrounding patches of size
1997 @option{p}. Patches are searched in an area of @option{r} around the sample.
1998
1999 The filter accepts the following options:
2000
2001 @table @option
2002 @item s
2003 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
2004
2005 @item p
2006 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
2007 Default value is 2 milliseconds.
2008
2009 @item r
2010 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
2011 Default value is 6 milliseconds.
2012
2013 @item o
2014 Set the output mode.
2015
2016 It accepts the following values:
2017 @table @option
2018 @item i
2019 Pass input unchanged.
2020
2021 @item o
2022 Pass noise filtered out.
2023
2024 @item n
2025 Pass only noise.
2026
2027 Default value is @var{o}.
2028 @end table
2029
2030 @item m
2031 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
2032 @end table
2033
2034 @subsection Commands
2035
2036 This filter supports the all above options as @ref{commands}.
2037
2038 @section anlms
2039 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
2040
2041 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
2042 relate to producing the least mean square of the error signal (difference between the desired,
2043 2nd input audio stream and the actual signal, the 1st input audio stream).
2044
2045 A description of the accepted options follows.
2046
2047 @table @option
2048 @item order
2049 Set filter order.
2050
2051 @item mu
2052 Set filter mu.
2053
2054 @item eps
2055 Set the filter eps.
2056
2057 @item leakage
2058 Set the filter leakage.
2059
2060 @item out_mode
2061 It accepts the following values:
2062 @table @option
2063 @item i
2064 Pass the 1st input.
2065
2066 @item d
2067 Pass the 2nd input.
2068
2069 @item o
2070 Pass filtered samples.
2071
2072 @item n
2073 Pass difference between desired and filtered samples.
2074
2075 Default value is @var{o}.
2076 @end table
2077 @end table
2078
2079 @subsection Examples
2080
2081 @itemize
2082 @item
2083 One of many usages of this filter is noise reduction, input audio is filtered
2084 with same samples that are delayed by fixed amount, one such example for stereo audio is:
2085 @example
2086 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
2087 @end example
2088 @end itemize
2089
2090 @subsection Commands
2091
2092 This filter supports the same commands as options, excluding option @code{order}.
2093
2094 @section anull
2095
2096 Pass the audio source unchanged to the output.
2097
2098 @section apad
2099
2100 Pad the end of an audio stream with silence.
2101
2102 This can be used together with @command{ffmpeg} @option{-shortest} to
2103 extend audio streams to the same length as the video stream.
2104
2105 A description of the accepted options follows.
2106
2107 @table @option
2108 @item packet_size
2109 Set silence packet size. Default value is 4096.
2110
2111 @item pad_len
2112 Set the number of samples of silence to add to the end. After the
2113 value is reached, the stream is terminated. This option is mutually
2114 exclusive with @option{whole_len}.
2115
2116 @item whole_len
2117 Set the minimum total number of samples in the output audio stream. If
2118 the value is longer than the input audio length, silence is added to
2119 the end, until the value is reached. This option is mutually exclusive
2120 with @option{pad_len}.
2121
2122 @item pad_dur
2123 Specify the duration of samples of silence to add. See
2124 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2125 for the accepted syntax. Used only if set to non-zero value.
2126
2127 @item whole_dur
2128 Specify the minimum total duration in the output audio stream. See
2129 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2130 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
2131 the input audio length, silence is added to the end, until the value is reached.
2132 This option is mutually exclusive with @option{pad_dur}
2133 @end table
2134
2135 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
2136 nor @option{whole_dur} option is set, the filter will add silence to the end of
2137 the input stream indefinitely.
2138
2139 @subsection Examples
2140
2141 @itemize
2142 @item
2143 Add 1024 samples of silence to the end of the input:
2144 @example
2145 apad=pad_len=1024
2146 @end example
2147
2148 @item
2149 Make sure the audio output will contain at least 10000 samples, pad
2150 the input with silence if required:
2151 @example
2152 apad=whole_len=10000
2153 @end example
2154
2155 @item
2156 Use @command{ffmpeg} to pad the audio input with silence, so that the
2157 video stream will always result the shortest and will be converted
2158 until the end in the output file when using the @option{shortest}
2159 option:
2160 @example
2161 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
2162 @end example
2163 @end itemize
2164
2165 @section aphaser
2166 Add a phasing effect to the input audio.
2167
2168 A phaser filter creates series of peaks and troughs in the frequency spectrum.
2169 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
2170
2171 A description of the accepted parameters follows.
2172
2173 @table @option
2174 @item in_gain
2175 Set input gain. Default is 0.4.
2176
2177 @item out_gain
2178 Set output gain. Default is 0.74
2179
2180 @item delay
2181 Set delay in milliseconds. Default is 3.0.
2182
2183 @item decay
2184 Set decay. Default is 0.4.
2185
2186 @item speed
2187 Set modulation speed in Hz. Default is 0.5.
2188
2189 @item type
2190 Set modulation type. Default is triangular.
2191
2192 It accepts the following values:
2193 @table @samp
2194 @item triangular, t
2195 @item sinusoidal, s
2196 @end table
2197 @end table
2198
2199 @section aphaseshift
2200 Apply phase shift to input audio samples.
2201
2202 The filter accepts the following options:
2203
2204 @table @option
2205 @item shift
2206 Specify phase shift. Allowed range is from -1.0 to 1.0.
2207 Default value is 0.0.
2208
2209 @item level
2210 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
2211 Default value is 1.0.
2212 @end table
2213
2214 @subsection Commands
2215
2216 This filter supports the all above options as @ref{commands}.
2217
2218 @section apulsator
2219
2220 Audio pulsator is something between an autopanner and a tremolo.
2221 But it can produce funny stereo effects as well. Pulsator changes the volume
2222 of the left and right channel based on a LFO (low frequency oscillator) with
2223 different waveforms and shifted phases.
2224 This filter have the ability to define an offset between left and right
2225 channel. An offset of 0 means that both LFO shapes match each other.
2226 The left and right channel are altered equally - a conventional tremolo.
2227 An offset of 50% means that the shape of the right channel is exactly shifted
2228 in phase (or moved backwards about half of the frequency) - pulsator acts as
2229 an autopanner. At 1 both curves match again. Every setting in between moves the
2230 phase shift gapless between all stages and produces some "bypassing" sounds with
2231 sine and triangle waveforms. The more you set the offset near 1 (starting from
2232 the 0.5) the faster the signal passes from the left to the right speaker.
2233
2234 The filter accepts the following options:
2235
2236 @table @option
2237 @item level_in
2238 Set input gain. By default it is 1. Range is [0.015625 - 64].
2239
2240 @item level_out
2241 Set output gain. By default it is 1. Range is [0.015625 - 64].
2242
2243 @item mode
2244 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2245 sawup or sawdown. Default is sine.
2246
2247 @item amount
2248 Set modulation. Define how much of original signal is affected by the LFO.
2249
2250 @item offset_l
2251 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2252
2253 @item offset_r
2254 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2255
2256 @item width
2257 Set pulse width. Default is 1. Allowed range is [0 - 2].
2258
2259 @item timing
2260 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2261
2262 @item bpm
2263 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2264 is set to bpm.
2265
2266 @item ms
2267 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2268 is set to ms.
2269
2270 @item hz
2271 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2272 if timing is set to hz.
2273 @end table
2274
2275 @anchor{aresample}
2276 @section aresample
2277
2278 Resample the input audio to the specified parameters, using the
2279 libswresample library. If none are specified then the filter will
2280 automatically convert between its input and output.
2281
2282 This filter is also able to stretch/squeeze the audio data to make it match
2283 the timestamps or to inject silence / cut out audio to make it match the
2284 timestamps, do a combination of both or do neither.
2285
2286 The filter accepts the syntax
2287 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2288 expresses a sample rate and @var{resampler_options} is a list of
2289 @var{key}=@var{value} pairs, separated by ":". See the
2290 @ref{Resampler Options,,"Resampler Options" section in the
2291 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2292 for the complete list of supported options.
2293
2294 @subsection Examples
2295
2296 @itemize
2297 @item
2298 Resample the input audio to 44100Hz:
2299 @example
2300 aresample=44100
2301 @end example
2302
2303 @item
2304 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2305 samples per second compensation:
2306 @example
2307 aresample=async=1000
2308 @end example
2309 @end itemize
2310
2311 @section areverse
2312
2313 Reverse an audio clip.
2314
2315 Warning: This filter requires memory to buffer the entire clip, so trimming
2316 is suggested.
2317
2318 @subsection Examples
2319
2320 @itemize
2321 @item
2322 Take the first 5 seconds of a clip, and reverse it.
2323 @example
2324 atrim=end=5,areverse
2325 @end example
2326 @end itemize
2327
2328 @section arnndn
2329
2330 Reduce noise from speech using Recurrent Neural Networks.
2331
2332 This filter accepts the following options:
2333
2334 @table @option
2335 @item model, m
2336 Set train model file to load. This option is always required.
2337
2338 @item mix
2339 Set how much to mix filtered samples into final output.
2340 Allowed range is from -1 to 1. Default value is 1.
2341 Negative values are special, they set how much to keep filtered noise
2342 in the final filter output. Set this option to -1 to hear actual
2343 noise removed from input signal.
2344 @end table
2345
2346 @section asetnsamples
2347
2348 Set the number of samples per each output audio frame.
2349
2350 The last output packet may contain a different number of samples, as
2351 the filter will flush all the remaining samples when the input audio
2352 signals its end.
2353
2354 The filter accepts the following options:
2355
2356 @table @option
2357
2358 @item nb_out_samples, n
2359 Set the number of frames per each output audio frame. The number is
2360 intended as the number of samples @emph{per each channel}.
2361 Default value is 1024.
2362
2363 @item pad, p
2364 If set to 1, the filter will pad the last audio frame with zeroes, so
2365 that the last frame will contain the same number of samples as the
2366 previous ones. Default value is 1.
2367 @end table
2368
2369 For example, to set the number of per-frame samples to 1234 and
2370 disable padding for the last frame, use:
2371 @example
2372 asetnsamples=n=1234:p=0
2373 @end example
2374
2375 @section asetrate
2376
2377 Set the sample rate without altering the PCM data.
2378 This will result in a change of speed and pitch.
2379
2380 The filter accepts the following options:
2381
2382 @table @option
2383 @item sample_rate, r
2384 Set the output sample rate. Default is 44100 Hz.
2385 @end table
2386
2387 @section ashowinfo
2388
2389 Show a line containing various information for each input audio frame.
2390 The input audio is not modified.
2391
2392 The shown line contains a sequence of key/value pairs of the form
2393 @var{key}:@var{value}.
2394
2395 The following values are shown in the output:
2396
2397 @table @option
2398 @item n
2399 The (sequential) number of the input frame, starting from 0.
2400
2401 @item pts
2402 The presentation timestamp of the input frame, in time base units; the time base
2403 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2404
2405 @item pts_time
2406 The presentation timestamp of the input frame in seconds.
2407
2408 @item pos
2409 position of the frame in the input stream, -1 if this information in
2410 unavailable and/or meaningless (for example in case of synthetic audio)
2411
2412 @item fmt
2413 The sample format.
2414
2415 @item chlayout
2416 The channel layout.
2417
2418 @item rate
2419 The sample rate for the audio frame.
2420
2421 @item nb_samples
2422 The number of samples (per channel) in the frame.
2423
2424 @item checksum
2425 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2426 audio, the data is treated as if all the planes were concatenated.
2427
2428 @item plane_checksums
2429 A list of Adler-32 checksums for each data plane.
2430 @end table
2431
2432 @section asoftclip
2433 Apply audio soft clipping.
2434
2435 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2436 along a smooth curve, rather than the abrupt shape of hard-clipping.
2437
2438 This filter accepts the following options:
2439
2440 @table @option
2441 @item type
2442 Set type of soft-clipping.
2443
2444 It accepts the following values:
2445 @table @option
2446 @item hard
2447 @item tanh
2448 @item atan
2449 @item cubic
2450 @item exp
2451 @item alg
2452 @item quintic
2453 @item sin
2454 @item erf
2455 @end table
2456
2457 @item threshold
2458 Set threshold from where to start clipping. Default value is 0dB or 1.
2459
2460 @item output
2461 Set gain applied to output. Default value is 0dB or 1.
2462
2463 @item param
2464 Set additional parameter which controls sigmoid function.
2465
2466 @item oversample
2467 Set oversampling factor.
2468 @end table
2469
2470 @subsection Commands
2471
2472 This filter supports the all above options as @ref{commands}.
2473
2474 @section asr
2475 Automatic Speech Recognition
2476
2477 This filter uses PocketSphinx for speech recognition. To enable
2478 compilation of this filter, you need to configure FFmpeg with
2479 @code{--enable-pocketsphinx}.
2480
2481 It accepts the following options:
2482
2483 @table @option
2484 @item rate
2485 Set sampling rate of input audio. Defaults is @code{16000}.
2486 This need to match speech models, otherwise one will get poor results.
2487
2488 @item hmm
2489 Set dictionary containing acoustic model files.
2490
2491 @item dict
2492 Set pronunciation dictionary.
2493
2494 @item lm
2495 Set language model file.
2496
2497 @item lmctl
2498 Set language model set.
2499
2500 @item lmname
2501 Set which language model to use.
2502
2503 @item logfn
2504 Set output for log messages.
2505 @end table
2506
2507 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2508
2509 @anchor{astats}
2510 @section astats
2511
2512 Display time domain statistical information about the audio channels.
2513 Statistics are calculated and displayed for each audio channel and,
2514 where applicable, an overall figure is also given.
2515
2516 It accepts the following option:
2517 @table @option
2518 @item length
2519 Short window length in seconds, used for peak and trough RMS measurement.
2520 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2521
2522 @item metadata
2523
2524 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2525 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2526 disabled.
2527
2528 Available keys for each channel are:
2529 DC_offset
2530 Min_level
2531 Max_level
2532 Min_difference
2533 Max_difference
2534 Mean_difference
2535 RMS_difference
2536 Peak_level
2537 RMS_peak
2538 RMS_trough
2539 Crest_factor
2540 Flat_factor
2541 Peak_count
2542 Noise_floor
2543 Noise_floor_count
2544 Bit_depth
2545 Dynamic_range
2546 Zero_crossings
2547 Zero_crossings_rate
2548 Number_of_NaNs
2549 Number_of_Infs
2550 Number_of_denormals
2551
2552 and for Overall:
2553 DC_offset
2554 Min_level
2555 Max_level
2556 Min_difference
2557 Max_difference
2558 Mean_difference
2559 RMS_difference
2560 Peak_level
2561 RMS_level
2562 RMS_peak
2563 RMS_trough
2564 Flat_factor
2565 Peak_count
2566 Noise_floor
2567 Noise_floor_count
2568 Bit_depth
2569 Number_of_samples
2570 Number_of_NaNs
2571 Number_of_Infs
2572 Number_of_denormals
2573
2574 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2575 this @code{lavfi.astats.Overall.Peak_count}.
2576
2577 For description what each key means read below.
2578
2579 @item reset
2580 Set number of frame after which stats are going to be recalculated.
2581 Default is disabled.
2582
2583 @item measure_perchannel
2584 Select the entries which need to be measured per channel. The metadata keys can
2585 be used as flags, default is @option{all} which measures everything.
2586 @option{none} disables all per channel measurement.
2587
2588 @item measure_overall
2589 Select the entries which need to be measured overall. The metadata keys can
2590 be used as flags, default is @option{all} which measures everything.
2591 @option{none} disables all overall measurement.
2592
2593 @end table
2594
2595 A description of each shown parameter follows:
2596
2597 @table @option
2598 @item DC offset
2599 Mean amplitude displacement from zero.
2600
2601 @item Min level
2602 Minimal sample level.
2603
2604 @item Max level
2605 Maximal sample level.
2606
2607 @item Min difference
2608 Minimal difference between two consecutive samples.
2609
2610 @item Max difference
2611 Maximal difference between two consecutive samples.
2612
2613 @item Mean difference
2614 Mean difference between two consecutive samples.
2615 The average of each difference between two consecutive samples.
2616
2617 @item RMS difference
2618 Root Mean Square difference between two consecutive samples.
2619
2620 @item Peak level dB
2621 @item RMS level dB
2622 Standard peak and RMS level measured in dBFS.
2623
2624 @item RMS peak dB
2625 @item RMS trough dB
2626 Peak and trough values for RMS level measured over a short window.
2627
2628 @item Crest factor
2629 Standard ratio of peak to RMS level (note: not in dB).
2630
2631 @item Flat factor
2632 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2633 (i.e. either @var{Min level} or @var{Max level}).
2634
2635 @item Peak count
2636 Number of occasions (not the number of samples) that the signal attained either
2637 @var{Min level} or @var{Max level}.
2638
2639 @item Noise floor dB
2640 Minimum local peak measured in dBFS over a short window.
2641
2642 @item Noise floor count
2643 Number of occasions (not the number of samples) that the signal attained
2644 @var{Noise floor}.
2645
2646 @item Bit depth
2647 Overall bit depth of audio. Number of bits used for each sample.
2648
2649 @item Dynamic range
2650 Measured dynamic range of audio in dB.
2651
2652 @item Zero crossings
2653 Number of points where the waveform crosses the zero level axis.
2654
2655 @item Zero crossings rate
2656 Rate of Zero crossings and number of audio samples.
2657 @end table
2658
2659 @section asubboost
2660 Boost subwoofer frequencies.
2661
2662 The filter accepts the following options:
2663
2664 @table @option
2665 @item dry
2666 Set dry gain, how much of original signal is kept. Allowed range is from 0 to 1.
2667 Default value is 0.7.
2668
2669 @item wet
2670 Set wet gain, how much of filtered signal is kept. Allowed range is from 0 to 1.
2671 Default value is 0.7.
2672
2673 @item decay
2674 Set delay line decay gain value. Allowed range is from 0 to 1.
2675 Default value is 0.7.
2676
2677 @item feedback
2678 Set delay line feedback gain value. Allowed range is from 0 to 1.
2679 Default value is 0.9.
2680
2681 @item cutoff
2682 Set cutoff frequency in Hertz. Allowed range is 50 to 900.
2683 Default value is 100.
2684
2685 @item slope
2686 Set slope amount for cutoff frequency. Allowed range is 0.0001 to 1.
2687 Default value is 0.5.
2688
2689 @item delay
2690 Set delay. Allowed range is from 1 to 100.
2691 Default value is 20.
2692 @end table
2693
2694 @subsection Commands
2695
2696 This filter supports the all above options as @ref{commands}.
2697
2698 @section asubcut
2699 Cut subwoofer frequencies.
2700
2701 This filter allows to set custom, steeper
2702 roll off than highpass filter, and thus is able to more attenuate
2703 frequency content in stop-band.
2704
2705 The filter accepts the following options:
2706
2707 @table @option
2708 @item cutoff
2709 Set cutoff frequency in Hertz. Allowed range is 2 to 200.
2710 Default value is 20.
2711
2712 @item order
2713 Set filter order. Available values are from 3 to 20.
2714 Default value is 10.
2715
2716 @item level
2717 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2718 @end table
2719
2720 @subsection Commands
2721
2722 This filter supports the all above options as @ref{commands}.
2723
2724 @section asupercut
2725 Cut super frequencies.
2726
2727 The filter accepts the following options:
2728
2729 @table @option
2730 @item cutoff
2731 Set cutoff frequency in Hertz. Allowed range is 20000 to 192000.
2732 Default value is 20000.
2733
2734 @item order
2735 Set filter order. Available values are from 3 to 20.
2736 Default value is 10.
2737
2738 @item level
2739 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2740 @end table
2741
2742 @subsection Commands
2743
2744 This filter supports the all above options as @ref{commands}.
2745
2746 @section asuperpass
2747 Apply high order Butterworth band-pass filter.
2748
2749 The filter accepts the following options:
2750
2751 @table @option
2752 @item centerf
2753 Set center frequency in Hertz. Allowed range is 2 to 999999.
2754 Default value is 1000.
2755
2756 @item order
2757 Set filter order. Available values are from 4 to 20.
2758 Default value is 4.
2759
2760 @item qfactor
2761 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2762
2763 @item level
2764 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2765 @end table
2766
2767 @subsection Commands
2768
2769 This filter supports the all above options as @ref{commands}.
2770
2771 @section asuperstop
2772 Apply high order Butterworth band-stop filter.
2773
2774 The filter accepts the following options:
2775
2776 @table @option
2777 @item centerf
2778 Set center frequency in Hertz. Allowed range is 2 to 999999.
2779 Default value is 1000.
2780
2781 @item order
2782 Set filter order. Available values are from 4 to 20.
2783 Default value is 4.
2784
2785 @item qfactor
2786 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2787
2788 @item level
2789 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2790 @end table
2791
2792 @subsection Commands
2793
2794 This filter supports the all above options as @ref{commands}.
2795
2796 @section atempo
2797
2798 Adjust audio tempo.
2799
2800 The filter accepts exactly one parameter, the audio tempo. If not
2801 specified then the filter will assume nominal 1.0 tempo. Tempo must
2802 be in the [0.5, 100.0] range.
2803
2804 Note that tempo greater than 2 will skip some samples rather than
2805 blend them in.  If for any reason this is a concern it is always
2806 possible to daisy-chain several instances of atempo to achieve the
2807 desired product tempo.
2808
2809 @subsection Examples
2810
2811 @itemize
2812 @item
2813 Slow down audio to 80% tempo:
2814 @example
2815 atempo=0.8
2816 @end example
2817
2818 @item
2819 To speed up audio to 300% tempo:
2820 @example
2821 atempo=3
2822 @end example
2823
2824 @item
2825 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2826 @example
2827 atempo=sqrt(3),atempo=sqrt(3)
2828 @end example
2829 @end itemize
2830
2831 @subsection Commands
2832
2833 This filter supports the following commands:
2834 @table @option
2835 @item tempo
2836 Change filter tempo scale factor.
2837 Syntax for the command is : "@var{tempo}"
2838 @end table
2839
2840 @section atrim
2841
2842 Trim the input so that the output contains one continuous subpart of the input.
2843
2844 It accepts the following parameters:
2845 @table @option
2846 @item start
2847 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2848 sample with the timestamp @var{start} will be the first sample in the output.
2849
2850 @item end
2851 Specify time of the first audio sample that will be dropped, i.e. the
2852 audio sample immediately preceding the one with the timestamp @var{end} will be
2853 the last sample in the output.
2854
2855 @item start_pts
2856 Same as @var{start}, except this option sets the start timestamp in samples
2857 instead of seconds.
2858
2859 @item end_pts
2860 Same as @var{end}, except this option sets the end timestamp in samples instead
2861 of seconds.
2862
2863 @item duration
2864 The maximum duration of the output in seconds.
2865
2866 @item start_sample
2867 The number of the first sample that should be output.
2868
2869 @item end_sample
2870 The number of the first sample that should be dropped.
2871 @end table
2872
2873 @option{start}, @option{end}, and @option{duration} are expressed as time
2874 duration specifications; see
2875 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2876
2877 Note that the first two sets of the start/end options and the @option{duration}
2878 option look at the frame timestamp, while the _sample options simply count the
2879 samples that pass through the filter. So start/end_pts and start/end_sample will
2880 give different results when the timestamps are wrong, inexact or do not start at
2881 zero. Also note that this filter does not modify the timestamps. If you wish
2882 to have the output timestamps start at zero, insert the asetpts filter after the
2883 atrim filter.
2884
2885 If multiple start or end options are set, this filter tries to be greedy and
2886 keep all samples that match at least one of the specified constraints. To keep
2887 only the part that matches all the constraints at once, chain multiple atrim
2888 filters.
2889
2890 The defaults are such that all the input is kept. So it is possible to set e.g.
2891 just the end values to keep everything before the specified time.
2892
2893 Examples:
2894 @itemize
2895 @item
2896 Drop everything except the second minute of input:
2897 @example
2898 ffmpeg -i INPUT -af atrim=60:120
2899 @end example
2900
2901 @item
2902 Keep only the first 1000 samples:
2903 @example
2904 ffmpeg -i INPUT -af atrim=end_sample=1000
2905 @end example
2906
2907 @end itemize
2908
2909 @section axcorrelate
2910 Calculate normalized cross-correlation between two input audio streams.
2911
2912 Resulted samples are always between -1 and 1 inclusive.
2913 If result is 1 it means two input samples are highly correlated in that selected segment.
2914 Result 0 means they are not correlated at all.
2915 If result is -1 it means two input samples are out of phase, which means they cancel each
2916 other.
2917
2918 The filter accepts the following options:
2919
2920 @table @option
2921 @item size
2922 Set size of segment over which cross-correlation is calculated.
2923 Default is 256. Allowed range is from 2 to 131072.
2924
2925 @item algo
2926 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2927 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2928 are always zero and thus need much less calculations to make.
2929 This is generally not true, but is valid for typical audio streams.
2930 @end table
2931
2932 @subsection Examples
2933
2934 @itemize
2935 @item
2936 Calculate correlation between channels in stereo audio stream:
2937 @example
2938 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2939 @end example
2940 @end itemize
2941
2942 @section bandpass
2943
2944 Apply a two-pole Butterworth band-pass filter with central
2945 frequency @var{frequency}, and (3dB-point) band-width width.
2946 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2947 instead of the default: constant 0dB peak gain.
2948 The filter roll off at 6dB per octave (20dB per decade).
2949
2950 The filter accepts the following options:
2951
2952 @table @option
2953 @item frequency, f
2954 Set the filter's central frequency. Default is @code{3000}.
2955
2956 @item csg
2957 Constant skirt gain if set to 1. Defaults to 0.
2958
2959 @item width_type, t
2960 Set method to specify band-width of filter.
2961 @table @option
2962 @item h
2963 Hz
2964 @item q
2965 Q-Factor
2966 @item o
2967 octave
2968 @item s
2969 slope
2970 @item k
2971 kHz
2972 @end table
2973
2974 @item width, w
2975 Specify the band-width of a filter in width_type units.
2976
2977 @item mix, m
2978 How much to use filtered signal in output. Default is 1.
2979 Range is between 0 and 1.
2980
2981 @item channels, c
2982 Specify which channels to filter, by default all available are filtered.
2983
2984 @item normalize, n
2985 Normalize biquad coefficients, by default is disabled.
2986 Enabling it will normalize magnitude response at DC to 0dB.
2987
2988 @item transform, a
2989 Set transform type of IIR filter.
2990 @table @option
2991 @item di
2992 @item dii
2993 @item tdii
2994 @item latt
2995 @end table
2996
2997 @item precision, r
2998 Set precison of filtering.
2999 @table @option
3000 @item auto
3001 Pick automatic sample format depending on surround filters.
3002 @item s16
3003 Always use signed 16-bit.
3004 @item s32
3005 Always use signed 32-bit.
3006 @item f32
3007 Always use float 32-bit.
3008 @item f64
3009 Always use float 64-bit.
3010 @end table
3011 @end table
3012
3013 @subsection Commands
3014
3015 This filter supports the following commands:
3016 @table @option
3017 @item frequency, f
3018 Change bandpass frequency.
3019 Syntax for the command is : "@var{frequency}"
3020
3021 @item width_type, t
3022 Change bandpass width_type.
3023 Syntax for the command is : "@var{width_type}"
3024
3025 @item width, w
3026 Change bandpass width.
3027 Syntax for the command is : "@var{width}"
3028
3029 @item mix, m
3030 Change bandpass mix.
3031 Syntax for the command is : "@var{mix}"
3032 @end table
3033
3034 @section bandreject
3035
3036 Apply a two-pole Butterworth band-reject filter with central
3037 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
3038 The filter roll off at 6dB per octave (20dB per decade).
3039
3040 The filter accepts the following options:
3041
3042 @table @option
3043 @item frequency, f
3044 Set the filter's central frequency. Default is @code{3000}.
3045
3046 @item width_type, t
3047 Set method to specify band-width of filter.
3048 @table @option
3049 @item h
3050 Hz
3051 @item q
3052 Q-Factor
3053 @item o
3054 octave
3055 @item s
3056 slope
3057 @item k
3058 kHz
3059 @end table
3060
3061 @item width, w
3062 Specify the band-width of a filter in width_type units.
3063
3064 @item mix, m
3065 How much to use filtered signal in output. Default is 1.
3066 Range is between 0 and 1.
3067
3068 @item channels, c
3069 Specify which channels to filter, by default all available are filtered.
3070
3071 @item normalize, n
3072 Normalize biquad coefficients, by default is disabled.
3073 Enabling it will normalize magnitude response at DC to 0dB.
3074
3075 @item transform, a
3076 Set transform type of IIR filter.
3077 @table @option
3078 @item di
3079 @item dii
3080 @item tdii
3081 @item latt
3082 @end table
3083
3084 @item precision, r
3085 Set precison of filtering.
3086 @table @option
3087 @item auto
3088 Pick automatic sample format depending on surround filters.
3089 @item s16
3090 Always use signed 16-bit.
3091 @item s32
3092 Always use signed 32-bit.
3093 @item f32
3094 Always use float 32-bit.
3095 @item f64
3096 Always use float 64-bit.
3097 @end table
3098 @end table
3099
3100 @subsection Commands
3101
3102 This filter supports the following commands:
3103 @table @option
3104 @item frequency, f
3105 Change bandreject frequency.
3106 Syntax for the command is : "@var{frequency}"
3107
3108 @item width_type, t
3109 Change bandreject width_type.
3110 Syntax for the command is : "@var{width_type}"
3111
3112 @item width, w
3113 Change bandreject width.
3114 Syntax for the command is : "@var{width}"
3115
3116 @item mix, m
3117 Change bandreject mix.
3118 Syntax for the command is : "@var{mix}"
3119 @end table
3120
3121 @section bass, lowshelf
3122
3123 Boost or cut the bass (lower) frequencies of the audio using a two-pole
3124 shelving filter with a response similar to that of a standard
3125 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3126
3127 The filter accepts the following options:
3128
3129 @table @option
3130 @item gain, g
3131 Give the gain at 0 Hz. Its useful range is about -20
3132 (for a large cut) to +20 (for a large boost).
3133 Beware of clipping when using a positive gain.
3134
3135 @item frequency, f
3136 Set the filter's central frequency and so can be used
3137 to extend or reduce the frequency range to be boosted or cut.
3138 The default value is @code{100} Hz.
3139
3140 @item width_type, t
3141 Set method to specify band-width of filter.
3142 @table @option
3143 @item h
3144 Hz
3145 @item q
3146 Q-Factor
3147 @item o
3148 octave
3149 @item s
3150 slope
3151 @item k
3152 kHz
3153 @end table
3154
3155 @item width, w
3156 Determine how steep is the filter's shelf transition.
3157
3158 @item poles, p
3159 Set number of poles. Default is 2.
3160
3161 @item mix, m
3162 How much to use filtered signal in output. Default is 1.
3163 Range is between 0 and 1.
3164
3165 @item channels, c
3166 Specify which channels to filter, by default all available are filtered.
3167
3168 @item normalize, n
3169 Normalize biquad coefficients, by default is disabled.
3170 Enabling it will normalize magnitude response at DC to 0dB.
3171
3172 @item transform, a
3173 Set transform type of IIR filter.
3174 @table @option
3175 @item di
3176 @item dii
3177 @item tdii
3178 @item latt
3179 @end table
3180
3181 @item precision, r
3182 Set precison of filtering.
3183 @table @option
3184 @item auto
3185 Pick automatic sample format depending on surround filters.
3186 @item s16
3187 Always use signed 16-bit.
3188 @item s32
3189 Always use signed 32-bit.
3190 @item f32
3191 Always use float 32-bit.
3192 @item f64
3193 Always use float 64-bit.
3194 @end table
3195 @end table
3196
3197 @subsection Commands
3198
3199 This filter supports the following commands:
3200 @table @option
3201 @item frequency, f
3202 Change bass frequency.
3203 Syntax for the command is : "@var{frequency}"
3204
3205 @item width_type, t
3206 Change bass width_type.
3207 Syntax for the command is : "@var{width_type}"
3208
3209 @item width, w
3210 Change bass width.
3211 Syntax for the command is : "@var{width}"
3212
3213 @item gain, g
3214 Change bass gain.
3215 Syntax for the command is : "@var{gain}"
3216
3217 @item mix, m
3218 Change bass mix.
3219 Syntax for the command is : "@var{mix}"
3220 @end table
3221
3222 @section biquad
3223
3224 Apply a biquad IIR filter with the given coefficients.
3225 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
3226 are the numerator and denominator coefficients respectively.
3227 and @var{channels}, @var{c} specify which channels to filter, by default all
3228 available are filtered.
3229
3230 @subsection Commands
3231
3232 This filter supports the following commands:
3233 @table @option
3234 @item a0
3235 @item a1
3236 @item a2
3237 @item b0
3238 @item b1
3239 @item b2
3240 Change biquad parameter.
3241 Syntax for the command is : "@var{value}"
3242
3243 @item mix, m
3244 How much to use filtered signal in output. Default is 1.
3245 Range is between 0 and 1.
3246
3247 @item channels, c
3248 Specify which channels to filter, by default all available are filtered.
3249
3250 @item normalize, n
3251 Normalize biquad coefficients, by default is disabled.
3252 Enabling it will normalize magnitude response at DC to 0dB.
3253
3254 @item transform, a
3255 Set transform type of IIR filter.
3256 @table @option
3257 @item di
3258 @item dii
3259 @item tdii
3260 @item latt
3261 @end table
3262
3263 @item precision, r
3264 Set precison of filtering.
3265 @table @option
3266 @item auto
3267 Pick automatic sample format depending on surround filters.
3268 @item s16
3269 Always use signed 16-bit.
3270 @item s32
3271 Always use signed 32-bit.
3272 @item f32
3273 Always use float 32-bit.
3274 @item f64
3275 Always use float 64-bit.
3276 @end table
3277 @end table
3278
3279 @section bs2b
3280 Bauer stereo to binaural transformation, which improves headphone listening of
3281 stereo audio records.
3282
3283 To enable compilation of this filter you need to configure FFmpeg with
3284 @code{--enable-libbs2b}.
3285
3286 It accepts the following parameters:
3287 @table @option
3288
3289 @item profile
3290 Pre-defined crossfeed level.
3291 @table @option
3292
3293 @item default
3294 Default level (fcut=700, feed=50).
3295
3296 @item cmoy
3297 Chu Moy circuit (fcut=700, feed=60).
3298
3299 @item jmeier
3300 Jan Meier circuit (fcut=650, feed=95).
3301
3302 @end table
3303
3304 @item fcut
3305 Cut frequency (in Hz).
3306
3307 @item feed
3308 Feed level (in Hz).
3309
3310 @end table
3311
3312 @section channelmap
3313
3314 Remap input channels to new locations.
3315
3316 It accepts the following parameters:
3317 @table @option
3318 @item map
3319 Map channels from input to output. The argument is a '|'-separated list of
3320 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
3321 @var{in_channel} form. @var{in_channel} can be either the name of the input
3322 channel (e.g. FL for front left) or its index in the input channel layout.
3323 @var{out_channel} is the name of the output channel or its index in the output
3324 channel layout. If @var{out_channel} is not given then it is implicitly an
3325 index, starting with zero and increasing by one for each mapping.
3326
3327 @item channel_layout
3328 The channel layout of the output stream.
3329 @end table
3330
3331 If no mapping is present, the filter will implicitly map input channels to
3332 output channels, preserving indices.
3333
3334 @subsection Examples
3335
3336 @itemize
3337 @item
3338 For example, assuming a 5.1+downmix input MOV file,
3339 @example
3340 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
3341 @end example
3342 will create an output WAV file tagged as stereo from the downmix channels of
3343 the input.
3344
3345 @item
3346 To fix a 5.1 WAV improperly encoded in AAC's native channel order
3347 @example
3348 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
3349 @end example
3350 @end itemize
3351
3352 @section channelsplit
3353
3354 Split each channel from an input audio stream into a separate output stream.
3355
3356 It accepts the following parameters:
3357 @table @option
3358 @item channel_layout
3359 The channel layout of the input stream. The default is "stereo".
3360 @item channels
3361 A channel layout describing the channels to be extracted as separate output streams
3362 or "all" to extract each input channel as a separate stream. The default is "all".
3363
3364 Choosing channels not present in channel layout in the input will result in an error.
3365 @end table
3366
3367 @subsection Examples
3368
3369 @itemize
3370 @item
3371 For example, assuming a stereo input MP3 file,
3372 @example
3373 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
3374 @end example
3375 will create an output Matroska file with two audio streams, one containing only
3376 the left channel and the other the right channel.
3377
3378 @item
3379 Split a 5.1 WAV file into per-channel files:
3380 @example
3381 ffmpeg -i in.wav -filter_complex
3382 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
3383 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
3384 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
3385 side_right.wav
3386 @end example
3387
3388 @item
3389 Extract only LFE from a 5.1 WAV file:
3390 @example
3391 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
3392 -map '[LFE]' lfe.wav
3393 @end example
3394 @end itemize
3395
3396 @section chorus
3397 Add a chorus effect to the audio.
3398
3399 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
3400
3401 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
3402 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
3403 The modulation depth defines the range the modulated delay is played before or after
3404 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
3405 sound tuned around the original one, like in a chorus where some vocals are slightly
3406 off key.
3407
3408 It accepts the following parameters:
3409 @table @option
3410 @item in_gain
3411 Set input gain. Default is 0.4.
3412
3413 @item out_gain
3414 Set output gain. Default is 0.4.
3415
3416 @item delays
3417 Set delays. A typical delay is around 40ms to 60ms.
3418
3419 @item decays
3420 Set decays.
3421
3422 @item speeds
3423 Set speeds.
3424
3425 @item depths
3426 Set depths.
3427 @end table
3428
3429 @subsection Examples
3430
3431 @itemize
3432 @item
3433 A single delay:
3434 @example
3435 chorus=0.7:0.9:55:0.4:0.25:2
3436 @end example
3437
3438 @item
3439 Two delays:
3440 @example
3441 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
3442 @end example
3443
3444 @item
3445 Fuller sounding chorus with three delays:
3446 @example
3447 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
3448 @end example
3449 @end itemize
3450
3451 @section compand
3452 Compress or expand the audio's dynamic range.
3453
3454 It accepts the following parameters:
3455
3456 @table @option
3457
3458 @item attacks
3459 @item decays
3460 A list of times in seconds for each channel over which the instantaneous level
3461 of the input signal is averaged to determine its volume. @var{attacks} refers to
3462 increase of volume and @var{decays} refers to decrease of volume. For most
3463 situations, the attack time (response to the audio getting louder) should be
3464 shorter than the decay time, because the human ear is more sensitive to sudden
3465 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3466 a typical value for decay is 0.8 seconds.
3467 If specified number of attacks & decays is lower than number of channels, the last
3468 set attack/decay will be used for all remaining channels.
3469
3470 @item points
3471 A list of points for the transfer function, specified in dB relative to the
3472 maximum possible signal amplitude. Each key points list must be defined using
3473 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3474 @code{x0/y0 x1/y1 x2/y2 ....}
3475
3476 The input values must be in strictly increasing order but the transfer function
3477 does not have to be monotonically rising. The point @code{0/0} is assumed but
3478 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3479 function are @code{-70/-70|-60/-20|1/0}.
3480
3481 @item soft-knee
3482 Set the curve radius in dB for all joints. It defaults to 0.01.
3483
3484 @item gain
3485 Set the additional gain in dB to be applied at all points on the transfer
3486 function. This allows for easy adjustment of the overall gain.
3487 It defaults to 0.
3488
3489 @item volume
3490 Set an initial volume, in dB, to be assumed for each channel when filtering
3491 starts. This permits the user to supply a nominal level initially, so that, for
3492 example, a very large gain is not applied to initial signal levels before the
3493 companding has begun to operate. A typical value for audio which is initially
3494 quiet is -90 dB. It defaults to 0.
3495
3496 @item delay
3497 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3498 delayed before being fed to the volume adjuster. Specifying a delay
3499 approximately equal to the attack/decay times allows the filter to effectively
3500 operate in predictive rather than reactive mode. It defaults to 0.
3501
3502 @end table
3503
3504 @subsection Examples
3505
3506 @itemize
3507 @item
3508 Make music with both quiet and loud passages suitable for listening to in a
3509 noisy environment:
3510 @example
3511 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3512 @end example
3513
3514 Another example for audio with whisper and explosion parts:
3515 @example
3516 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3517 @end example
3518
3519 @item
3520 A noise gate for when the noise is at a lower level than the signal:
3521 @example
3522 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3523 @end example
3524
3525 @item
3526 Here is another noise gate, this time for when the noise is at a higher level
3527 than the signal (making it, in some ways, similar to squelch):
3528 @example
3529 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3530 @end example
3531
3532 @item
3533 2:1 compression starting at -6dB:
3534 @example
3535 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3536 @end example
3537
3538 @item
3539 2:1 compression starting at -9dB:
3540 @example
3541 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3542 @end example
3543
3544 @item
3545 2:1 compression starting at -12dB:
3546 @example
3547 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3548 @end example
3549
3550 @item
3551 2:1 compression starting at -18dB:
3552 @example
3553 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3554 @end example
3555
3556 @item
3557 3:1 compression starting at -15dB:
3558 @example
3559 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3560 @end example
3561
3562 @item
3563 Compressor/Gate:
3564 @example
3565 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3566 @end example
3567
3568 @item
3569 Expander:
3570 @example
3571 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
3572 @end example
3573
3574 @item
3575 Hard limiter at -6dB:
3576 @example
3577 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3578 @end example
3579
3580 @item
3581 Hard limiter at -12dB:
3582 @example
3583 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3584 @end example
3585
3586 @item
3587 Hard noise gate at -35 dB:
3588 @example
3589 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3590 @end example
3591
3592 @item
3593 Soft limiter:
3594 @example
3595 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3596 @end example
3597 @end itemize
3598
3599 @section compensationdelay
3600
3601 Compensation Delay Line is a metric based delay to compensate differing
3602 positions of microphones or speakers.
3603
3604 For example, you have recorded guitar with two microphones placed in
3605 different locations. Because the front of sound wave has fixed speed in
3606 normal conditions, the phasing of microphones can vary and depends on
3607 their location and interposition. The best sound mix can be achieved when
3608 these microphones are in phase (synchronized). Note that a distance of
3609 ~30 cm between microphones makes one microphone capture the signal in
3610 antiphase to the other microphone. That makes the final mix sound moody.
3611 This filter helps to solve phasing problems by adding different delays
3612 to each microphone track and make them synchronized.
3613
3614 The best result can be reached when you take one track as base and
3615 synchronize other tracks one by one with it.
3616 Remember that synchronization/delay tolerance depends on sample rate, too.
3617 Higher sample rates will give more tolerance.
3618
3619 The filter accepts the following parameters:
3620
3621 @table @option
3622 @item mm
3623 Set millimeters distance. This is compensation distance for fine tuning.
3624 Default is 0.
3625
3626 @item cm
3627 Set cm distance. This is compensation distance for tightening distance setup.
3628 Default is 0.
3629
3630 @item m
3631 Set meters distance. This is compensation distance for hard distance setup.
3632 Default is 0.
3633
3634 @item dry
3635 Set dry amount. Amount of unprocessed (dry) signal.
3636 Default is 0.
3637
3638 @item wet
3639 Set wet amount. Amount of processed (wet) signal.
3640 Default is 1.
3641
3642 @item temp
3643 Set temperature in degrees Celsius. This is the temperature of the environment.
3644 Default is 20.
3645 @end table
3646
3647 @section crossfeed
3648 Apply headphone crossfeed filter.
3649
3650 Crossfeed is the process of blending the left and right channels of stereo
3651 audio recording.
3652 It is mainly used to reduce extreme stereo separation of low frequencies.
3653
3654 The intent is to produce more speaker like sound to the listener.
3655
3656 The filter accepts the following options:
3657
3658 @table @option
3659 @item strength
3660 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3661 This sets gain of low shelf filter for side part of stereo image.
3662 Default is -6dB. Max allowed is -30db when strength is set to 1.
3663
3664 @item range
3665 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3666 This sets cut off frequency of low shelf filter. Default is cut off near
3667 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3668
3669 @item slope
3670 Set curve slope of low shelf filter. Default is 0.5.
3671 Allowed range is from 0.01 to 1.
3672
3673 @item level_in
3674 Set input gain. Default is 0.9.
3675
3676 @item level_out
3677 Set output gain. Default is 1.
3678 @end table
3679
3680 @subsection Commands
3681
3682 This filter supports the all above options as @ref{commands}.
3683
3684 @section crystalizer
3685 Simple algorithm for audio noise sharpening.
3686
3687 This filter linearly increases differences betweeen each audio sample.
3688
3689 The filter accepts the following options:
3690
3691 @table @option
3692 @item i
3693 Sets the intensity of effect (default: 2.0). Must be in range between -10.0 to 0
3694 (unchanged sound) to 10.0 (maximum effect).
3695 To inverse filtering use negative value.
3696
3697 @item c
3698 Enable clipping. By default is enabled.
3699 @end table
3700
3701 @subsection Commands
3702
3703 This filter supports the all above options as @ref{commands}.
3704
3705 @section dcshift
3706 Apply a DC shift to the audio.
3707
3708 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3709 in the recording chain) from the audio. The effect of a DC offset is reduced
3710 headroom and hence volume. The @ref{astats} filter can be used to determine if
3711 a signal has a DC offset.
3712
3713 @table @option
3714 @item shift
3715 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3716 the audio.
3717
3718 @item limitergain
3719 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3720 used to prevent clipping.
3721 @end table
3722
3723 @section deesser
3724
3725 Apply de-essing to the audio samples.
3726
3727 @table @option
3728 @item i
3729 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3730 Default is 0.
3731
3732 @item m
3733 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3734 Default is 0.5.
3735
3736 @item f
3737 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3738 Default is 0.5.
3739
3740 @item s
3741 Set the output mode.
3742
3743 It accepts the following values:
3744 @table @option
3745 @item i
3746 Pass input unchanged.
3747
3748 @item o
3749 Pass ess filtered out.
3750
3751 @item e
3752 Pass only ess.
3753
3754 Default value is @var{o}.
3755 @end table
3756
3757 @end table
3758
3759 @section drmeter
3760 Measure audio dynamic range.
3761
3762 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3763 is found in transition material. And anything less that 8 have very poor dynamics
3764 and is very compressed.
3765
3766 The filter accepts the following options:
3767
3768 @table @option
3769 @item length
3770 Set window length in seconds used to split audio into segments of equal length.
3771 Default is 3 seconds.
3772 @end table
3773
3774 @section dynaudnorm
3775 Dynamic Audio Normalizer.
3776
3777 This filter applies a certain amount of gain to the input audio in order
3778 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3779 contrast to more "simple" normalization algorithms, the Dynamic Audio
3780 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3781 This allows for applying extra gain to the "quiet" sections of the audio
3782 while avoiding distortions or clipping the "loud" sections. In other words:
3783 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3784 sections, in the sense that the volume of each section is brought to the
3785 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3786 this goal *without* applying "dynamic range compressing". It will retain 100%
3787 of the dynamic range *within* each section of the audio file.
3788
3789 @table @option
3790 @item framelen, f
3791 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3792 Default is 500 milliseconds.
3793 The Dynamic Audio Normalizer processes the input audio in small chunks,
3794 referred to as frames. This is required, because a peak magnitude has no
3795 meaning for just a single sample value. Instead, we need to determine the
3796 peak magnitude for a contiguous sequence of sample values. While a "standard"
3797 normalizer would simply use the peak magnitude of the complete file, the
3798 Dynamic Audio Normalizer determines the peak magnitude individually for each
3799 frame. The length of a frame is specified in milliseconds. By default, the
3800 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3801 been found to give good results with most files.
3802 Note that the exact frame length, in number of samples, will be determined
3803 automatically, based on the sampling rate of the individual input audio file.
3804
3805 @item gausssize, g
3806 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3807 number. Default is 31.
3808 Probably the most important parameter of the Dynamic Audio Normalizer is the
3809 @code{window size} of the Gaussian smoothing filter. The filter's window size
3810 is specified in frames, centered around the current frame. For the sake of
3811 simplicity, this must be an odd number. Consequently, the default value of 31
3812 takes into account the current frame, as well as the 15 preceding frames and
3813 the 15 subsequent frames. Using a larger window results in a stronger
3814 smoothing effect and thus in less gain variation, i.e. slower gain
3815 adaptation. Conversely, using a smaller window results in a weaker smoothing
3816 effect and thus in more gain variation, i.e. faster gain adaptation.
3817 In other words, the more you increase this value, the more the Dynamic Audio
3818 Normalizer will behave like a "traditional" normalization filter. On the
3819 contrary, the more you decrease this value, the more the Dynamic Audio
3820 Normalizer will behave like a dynamic range compressor.
3821
3822 @item peak, p
3823 Set the target peak value. This specifies the highest permissible magnitude
3824 level for the normalized audio input. This filter will try to approach the
3825 target peak magnitude as closely as possible, but at the same time it also
3826 makes sure that the normalized signal will never exceed the peak magnitude.
3827 A frame's maximum local gain factor is imposed directly by the target peak
3828 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3829 It is not recommended to go above this value.
3830
3831 @item maxgain, m
3832 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3833 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3834 factor for each input frame, i.e. the maximum gain factor that does not
3835 result in clipping or distortion. The maximum gain factor is determined by
3836 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3837 additionally bounds the frame's maximum gain factor by a predetermined
3838 (global) maximum gain factor. This is done in order to avoid excessive gain
3839 factors in "silent" or almost silent frames. By default, the maximum gain
3840 factor is 10.0, For most inputs the default value should be sufficient and
3841 it usually is not recommended to increase this value. Though, for input
3842 with an extremely low overall volume level, it may be necessary to allow even
3843 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3844 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3845 Instead, a "sigmoid" threshold function will be applied. This way, the
3846 gain factors will smoothly approach the threshold value, but never exceed that
3847 value.
3848
3849 @item targetrms, r
3850 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3851 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3852 This means that the maximum local gain factor for each frame is defined
3853 (only) by the frame's highest magnitude sample. This way, the samples can
3854 be amplified as much as possible without exceeding the maximum signal
3855 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3856 Normalizer can also take into account the frame's root mean square,
3857 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3858 determine the power of a time-varying signal. It is therefore considered
3859 that the RMS is a better approximation of the "perceived loudness" than
3860 just looking at the signal's peak magnitude. Consequently, by adjusting all
3861 frames to a constant RMS value, a uniform "perceived loudness" can be
3862 established. If a target RMS value has been specified, a frame's local gain
3863 factor is defined as the factor that would result in exactly that RMS value.
3864 Note, however, that the maximum local gain factor is still restricted by the
3865 frame's highest magnitude sample, in order to prevent clipping.
3866
3867 @item coupling, n
3868 Enable channels coupling. By default is enabled.
3869 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3870 amount. This means the same gain factor will be applied to all channels, i.e.
3871 the maximum possible gain factor is determined by the "loudest" channel.
3872 However, in some recordings, it may happen that the volume of the different
3873 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3874 In this case, this option can be used to disable the channel coupling. This way,
3875 the gain factor will be determined independently for each channel, depending
3876 only on the individual channel's highest magnitude sample. This allows for
3877 harmonizing the volume of the different channels.
3878
3879 @item correctdc, c
3880 Enable DC bias correction. By default is disabled.
3881 An audio signal (in the time domain) is a sequence of sample values.
3882 In the Dynamic Audio Normalizer these sample values are represented in the
3883 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3884 audio signal, or "waveform", should be centered around the zero point.
3885 That means if we calculate the mean value of all samples in a file, or in a
3886 single frame, then the result should be 0.0 or at least very close to that
3887 value. If, however, there is a significant deviation of the mean value from
3888 0.0, in either positive or negative direction, this is referred to as a
3889 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3890 Audio Normalizer provides optional DC bias correction.
3891 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3892 the mean value, or "DC correction" offset, of each input frame and subtract
3893 that value from all of the frame's sample values which ensures those samples
3894 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3895 boundaries, the DC correction offset values will be interpolated smoothly
3896 between neighbouring frames.
3897
3898 @item altboundary, b
3899 Enable alternative boundary mode. By default is disabled.
3900 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3901 around each frame. This includes the preceding frames as well as the
3902 subsequent frames. However, for the "boundary" frames, located at the very
3903 beginning and at the very end of the audio file, not all neighbouring
3904 frames are available. In particular, for the first few frames in the audio
3905 file, the preceding frames are not known. And, similarly, for the last few
3906 frames in the audio file, the subsequent frames are not known. Thus, the
3907 question arises which gain factors should be assumed for the missing frames
3908 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3909 to deal with this situation. The default boundary mode assumes a gain factor
3910 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3911 "fade out" at the beginning and at the end of the input, respectively.
3912
3913 @item compress, s
3914 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3915 By default, the Dynamic Audio Normalizer does not apply "traditional"
3916 compression. This means that signal peaks will not be pruned and thus the
3917 full dynamic range will be retained within each local neighbourhood. However,
3918 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3919 normalization algorithm with a more "traditional" compression.
3920 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3921 (thresholding) function. If (and only if) the compression feature is enabled,
3922 all input frames will be processed by a soft knee thresholding function prior
3923 to the actual normalization process. Put simply, the thresholding function is
3924 going to prune all samples whose magnitude exceeds a certain threshold value.
3925 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3926 value. Instead, the threshold value will be adjusted for each individual
3927 frame.
3928 In general, smaller parameters result in stronger compression, and vice versa.
3929 Values below 3.0 are not recommended, because audible distortion may appear.
3930
3931 @item threshold, t
3932 Set the target threshold value. This specifies the lowest permissible
3933 magnitude level for the audio input which will be normalized.
3934 If input frame volume is above this value frame will be normalized.
3935 Otherwise frame may not be normalized at all. The default value is set
3936 to 0, which means all input frames will be normalized.
3937 This option is mostly useful if digital noise is not wanted to be amplified.
3938 @end table
3939
3940 @subsection Commands
3941
3942 This filter supports the all above options as @ref{commands}.
3943
3944 @section earwax
3945
3946 Make audio easier to listen to on headphones.
3947
3948 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3949 so that when listened to on headphones the stereo image is moved from
3950 inside your head (standard for headphones) to outside and in front of
3951 the listener (standard for speakers).
3952
3953 Ported from SoX.
3954
3955 @section equalizer
3956
3957 Apply a two-pole peaking equalisation (EQ) filter. With this
3958 filter, the signal-level at and around a selected frequency can
3959 be increased or decreased, whilst (unlike bandpass and bandreject
3960 filters) that at all other frequencies is unchanged.
3961
3962 In order to produce complex equalisation curves, this filter can
3963 be given several times, each with a different central frequency.
3964
3965 The filter accepts the following options:
3966
3967 @table @option
3968 @item frequency, f
3969 Set the filter's central frequency in Hz.
3970
3971 @item width_type, t
3972 Set method to specify band-width of filter.
3973 @table @option
3974 @item h
3975 Hz
3976 @item q
3977 Q-Factor
3978 @item o
3979 octave
3980 @item s
3981 slope
3982 @item k
3983 kHz
3984 @end table
3985
3986 @item width, w
3987 Specify the band-width of a filter in width_type units.
3988
3989 @item gain, g
3990 Set the required gain or attenuation in dB.
3991 Beware of clipping when using a positive gain.
3992
3993 @item mix, m
3994 How much to use filtered signal in output. Default is 1.
3995 Range is between 0 and 1.
3996
3997 @item channels, c
3998 Specify which channels to filter, by default all available are filtered.
3999
4000 @item normalize, n
4001 Normalize biquad coefficients, by default is disabled.
4002 Enabling it will normalize magnitude response at DC to 0dB.
4003
4004 @item transform, a
4005 Set transform type of IIR filter.
4006 @table @option
4007 @item di
4008 @item dii
4009 @item tdii
4010 @item latt
4011 @end table
4012
4013 @item precision, r
4014 Set precison of filtering.
4015 @table @option
4016 @item auto
4017 Pick automatic sample format depending on surround filters.
4018 @item s16
4019 Always use signed 16-bit.
4020 @item s32
4021 Always use signed 32-bit.
4022 @item f32
4023 Always use float 32-bit.
4024 @item f64
4025 Always use float 64-bit.
4026 @end table
4027 @end table
4028
4029 @subsection Examples
4030 @itemize
4031 @item
4032 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
4033 @example
4034 equalizer=f=1000:t=h:width=200:g=-10
4035 @end example
4036
4037 @item
4038 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
4039 @example
4040 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
4041 @end example
4042 @end itemize
4043
4044 @subsection Commands
4045
4046 This filter supports the following commands:
4047 @table @option
4048 @item frequency, f
4049 Change equalizer frequency.
4050 Syntax for the command is : "@var{frequency}"
4051
4052 @item width_type, t
4053 Change equalizer width_type.
4054 Syntax for the command is : "@var{width_type}"
4055
4056 @item width, w
4057 Change equalizer width.
4058 Syntax for the command is : "@var{width}"
4059
4060 @item gain, g
4061 Change equalizer gain.
4062 Syntax for the command is : "@var{gain}"
4063
4064 @item mix, m
4065 Change equalizer mix.
4066 Syntax for the command is : "@var{mix}"
4067 @end table
4068
4069 @section extrastereo
4070
4071 Linearly increases the difference between left and right channels which
4072 adds some sort of "live" effect to playback.
4073
4074 The filter accepts the following options:
4075
4076 @table @option
4077 @item m
4078 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
4079 (average of both channels), with 1.0 sound will be unchanged, with
4080 -1.0 left and right channels will be swapped.
4081
4082 @item c
4083 Enable clipping. By default is enabled.
4084 @end table
4085
4086 @subsection Commands
4087
4088 This filter supports the all above options as @ref{commands}.
4089
4090 @section firequalizer
4091 Apply FIR Equalization using arbitrary frequency response.
4092
4093 The filter accepts the following option:
4094
4095 @table @option
4096 @item gain
4097 Set gain curve equation (in dB). The expression can contain variables:
4098 @table @option
4099 @item f
4100 the evaluated frequency
4101 @item sr
4102 sample rate
4103 @item ch
4104 channel number, set to 0 when multichannels evaluation is disabled
4105 @item chid
4106 channel id, see libavutil/channel_layout.h, set to the first channel id when
4107 multichannels evaluation is disabled
4108 @item chs
4109 number of channels
4110 @item chlayout
4111 channel_layout, see libavutil/channel_layout.h
4112
4113 @end table
4114 and functions:
4115 @table @option
4116 @item gain_interpolate(f)
4117 interpolate gain on frequency f based on gain_entry
4118 @item cubic_interpolate(f)
4119 same as gain_interpolate, but smoother
4120 @end table
4121 This option is also available as command. Default is @code{gain_interpolate(f)}.
4122
4123 @item gain_entry
4124 Set gain entry for gain_interpolate function. The expression can
4125 contain functions:
4126 @table @option
4127 @item entry(f, g)
4128 store gain entry at frequency f with value g
4129 @end table
4130 This option is also available as command.
4131
4132 @item delay
4133 Set filter delay in seconds. Higher value means more accurate.
4134 Default is @code{0.01}.
4135
4136 @item accuracy
4137 Set filter accuracy in Hz. Lower value means more accurate.
4138 Default is @code{5}.
4139
4140 @item wfunc
4141 Set window function. Acceptable values are:
4142 @table @option
4143 @item rectangular
4144 rectangular window, useful when gain curve is already smooth
4145 @item hann
4146 hann window (default)
4147 @item hamming
4148 hamming window
4149 @item blackman
4150 blackman window
4151 @item nuttall3
4152 3-terms continuous 1st derivative nuttall window
4153 @item mnuttall3
4154 minimum 3-terms discontinuous nuttall window
4155 @item nuttall
4156 4-terms continuous 1st derivative nuttall window
4157 @item bnuttall
4158 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
4159 @item bharris
4160 blackman-harris window
4161 @item tukey
4162 tukey window
4163 @end table
4164
4165 @item fixed
4166 If enabled, use fixed number of audio samples. This improves speed when
4167 filtering with large delay. Default is disabled.
4168
4169 @item multi
4170 Enable multichannels evaluation on gain. Default is disabled.
4171
4172 @item zero_phase
4173 Enable zero phase mode by subtracting timestamp to compensate delay.
4174 Default is disabled.
4175
4176 @item scale
4177 Set scale used by gain. Acceptable values are:
4178 @table @option
4179 @item linlin
4180 linear frequency, linear gain
4181 @item linlog
4182 linear frequency, logarithmic (in dB) gain (default)
4183 @item loglin
4184 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
4185 @item loglog
4186 logarithmic frequency, logarithmic gain
4187 @end table
4188
4189 @item dumpfile
4190 Set file for dumping, suitable for gnuplot.
4191
4192 @item dumpscale
4193 Set scale for dumpfile. Acceptable values are same with scale option.
4194 Default is linlog.
4195
4196 @item fft2
4197 Enable 2-channel convolution using complex FFT. This improves speed significantly.
4198 Default is disabled.
4199
4200 @item min_phase
4201 Enable minimum phase impulse response. Default is disabled.
4202 @end table
4203
4204 @subsection Examples
4205 @itemize
4206 @item
4207 lowpass at 1000 Hz:
4208 @example
4209 firequalizer=gain='if(lt(f,1000), 0, -INF)'
4210 @end example
4211 @item
4212 lowpass at 1000 Hz with gain_entry:
4213 @example
4214 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
4215 @end example
4216 @item
4217 custom equalization:
4218 @example
4219 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
4220 @end example
4221 @item
4222 higher delay with zero phase to compensate delay:
4223 @example
4224 firequalizer=delay=0.1:fixed=on:zero_phase=on
4225 @end example
4226 @item
4227 lowpass on left channel, highpass on right channel:
4228 @example
4229 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
4230 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
4231 @end example
4232 @end itemize
4233
4234 @section flanger
4235 Apply a flanging effect to the audio.
4236
4237 The filter accepts the following options:
4238
4239 @table @option
4240 @item delay
4241 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
4242
4243 @item depth
4244 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
4245
4246 @item regen
4247 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
4248 Default value is 0.
4249
4250 @item width
4251 Set percentage of delayed signal mixed with original. Range from 0 to 100.
4252 Default value is 71.
4253
4254 @item speed
4255 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
4256
4257 @item shape
4258 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
4259 Default value is @var{sinusoidal}.
4260
4261 @item phase
4262 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
4263 Default value is 25.
4264
4265 @item interp
4266 Set delay-line interpolation, @var{linear} or @var{quadratic}.
4267 Default is @var{linear}.
4268 @end table
4269
4270 @section haas
4271 Apply Haas effect to audio.
4272
4273 Note that this makes most sense to apply on mono signals.
4274 With this filter applied to mono signals it give some directionality and
4275 stretches its stereo image.
4276
4277 The filter accepts the following options:
4278
4279 @table @option
4280 @item level_in
4281 Set input level. By default is @var{1}, or 0dB
4282
4283 @item level_out
4284 Set output level. By default is @var{1}, or 0dB.
4285
4286 @item side_gain
4287 Set gain applied to side part of signal. By default is @var{1}.
4288
4289 @item middle_source
4290 Set kind of middle source. Can be one of the following:
4291
4292 @table @samp
4293 @item left
4294 Pick left channel.
4295
4296 @item right
4297 Pick right channel.
4298
4299 @item mid
4300 Pick middle part signal of stereo image.
4301
4302 @item side
4303 Pick side part signal of stereo image.
4304 @end table
4305
4306 @item middle_phase
4307 Change middle phase. By default is disabled.
4308
4309 @item left_delay
4310 Set left channel delay. By default is @var{2.05} milliseconds.
4311
4312 @item left_balance
4313 Set left channel balance. By default is @var{-1}.
4314
4315 @item left_gain
4316 Set left channel gain. By default is @var{1}.
4317
4318 @item left_phase
4319 Change left phase. By default is disabled.
4320
4321 @item right_delay
4322 Set right channel delay. By defaults is @var{2.12} milliseconds.
4323
4324 @item right_balance
4325 Set right channel balance. By default is @var{1}.
4326
4327 @item right_gain
4328 Set right channel gain. By default is @var{1}.
4329
4330 @item right_phase
4331 Change right phase. By default is enabled.
4332 @end table
4333
4334 @section hdcd
4335
4336 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
4337 embedded HDCD codes is expanded into a 20-bit PCM stream.
4338
4339 The filter supports the Peak Extend and Low-level Gain Adjustment features
4340 of HDCD, and detects the Transient Filter flag.
4341
4342 @example
4343 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
4344 @end example
4345
4346 When using the filter with wav, note the default encoding for wav is 16-bit,
4347 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
4348 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
4349 @example
4350 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
4351 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
4352 @end example
4353
4354 The filter accepts the following options:
4355
4356 @table @option
4357 @item disable_autoconvert
4358 Disable any automatic format conversion or resampling in the filter graph.
4359
4360 @item process_stereo
4361 Process the stereo channels together. If target_gain does not match between
4362 channels, consider it invalid and use the last valid target_gain.
4363
4364 @item cdt_ms
4365 Set the code detect timer period in ms.
4366
4367 @item force_pe
4368 Always extend peaks above -3dBFS even if PE isn't signaled.
4369
4370 @item analyze_mode
4371 Replace audio with a solid tone and adjust the amplitude to signal some
4372 specific aspect of the decoding process. The output file can be loaded in
4373 an audio editor alongside the original to aid analysis.
4374
4375 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
4376
4377 Modes are:
4378 @table @samp
4379 @item 0, off
4380 Disabled
4381 @item 1, lle
4382 Gain adjustment level at each sample
4383 @item 2, pe
4384 Samples where peak extend occurs
4385 @item 3, cdt
4386 Samples where the code detect timer is active
4387 @item 4, tgm
4388 Samples where the target gain does not match between channels
4389 @end table
4390 @end table
4391
4392 @section headphone
4393
4394 Apply head-related transfer functions (HRTFs) to create virtual
4395 loudspeakers around the user for binaural listening via headphones.
4396 The HRIRs are provided via additional streams, for each channel
4397 one stereo input stream is needed.
4398
4399 The filter accepts the following options:
4400
4401 @table @option
4402 @item map
4403 Set mapping of input streams for convolution.
4404 The argument is a '|'-separated list of channel names in order as they
4405 are given as additional stream inputs for filter.
4406 This also specify number of input streams. Number of input streams
4407 must be not less than number of channels in first stream plus one.
4408
4409 @item gain
4410 Set gain applied to audio. Value is in dB. Default is 0.
4411
4412 @item type
4413 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4414 processing audio in time domain which is slow.
4415 @var{freq} is processing audio in frequency domain which is fast.
4416 Default is @var{freq}.
4417
4418 @item lfe
4419 Set custom gain for LFE channels. Value is in dB. Default is 0.
4420
4421 @item size
4422 Set size of frame in number of samples which will be processed at once.
4423 Default value is @var{1024}. Allowed range is from 1024 to 96000.
4424
4425 @item hrir
4426 Set format of hrir stream.
4427 Default value is @var{stereo}. Alternative value is @var{multich}.
4428 If value is set to @var{stereo}, number of additional streams should
4429 be greater or equal to number of input channels in first input stream.
4430 Also each additional stream should have stereo number of channels.
4431 If value is set to @var{multich}, number of additional streams should
4432 be exactly one. Also number of input channels of additional stream
4433 should be equal or greater than twice number of channels of first input
4434 stream.
4435 @end table
4436
4437 @subsection Examples
4438
4439 @itemize
4440 @item
4441 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4442 each amovie filter use stereo file with IR coefficients as input.
4443 The files give coefficients for each position of virtual loudspeaker:
4444 @example
4445 ffmpeg -i input.wav
4446 -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"
4447 output.wav
4448 @end example
4449
4450 @item
4451 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4452 but now in @var{multich} @var{hrir} format.
4453 @example
4454 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"
4455 output.wav
4456 @end example
4457 @end itemize
4458
4459 @section highpass
4460
4461 Apply a high-pass filter with 3dB point frequency.
4462 The filter can be either single-pole, or double-pole (the default).
4463 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4464
4465 The filter accepts the following options:
4466
4467 @table @option
4468 @item frequency, f
4469 Set frequency in Hz. Default is 3000.
4470
4471 @item poles, p
4472 Set number of poles. Default is 2.
4473
4474 @item width_type, t
4475 Set method to specify band-width of filter.
4476 @table @option
4477 @item h
4478 Hz
4479 @item q
4480 Q-Factor
4481 @item o
4482 octave
4483 @item s
4484 slope
4485 @item k
4486 kHz
4487 @end table
4488
4489 @item width, w
4490 Specify the band-width of a filter in width_type units.
4491 Applies only to double-pole filter.
4492 The default is 0.707q and gives a Butterworth response.
4493
4494 @item mix, m
4495 How much to use filtered signal in output. Default is 1.
4496 Range is between 0 and 1.
4497
4498 @item channels, c
4499 Specify which channels to filter, by default all available are filtered.
4500
4501 @item normalize, n
4502 Normalize biquad coefficients, by default is disabled.
4503 Enabling it will normalize magnitude response at DC to 0dB.
4504
4505 @item transform, a
4506 Set transform type of IIR filter.
4507 @table @option
4508 @item di
4509 @item dii
4510 @item tdii
4511 @item latt
4512 @end table
4513
4514 @item precision, r
4515 Set precison of filtering.
4516 @table @option
4517 @item auto
4518 Pick automatic sample format depending on surround filters.
4519 @item s16
4520 Always use signed 16-bit.
4521 @item s32
4522 Always use signed 32-bit.
4523 @item f32
4524 Always use float 32-bit.
4525 @item f64
4526 Always use float 64-bit.
4527 @end table
4528 @end table
4529
4530 @subsection Commands
4531
4532 This filter supports the following commands:
4533 @table @option
4534 @item frequency, f
4535 Change highpass frequency.
4536 Syntax for the command is : "@var{frequency}"
4537
4538 @item width_type, t
4539 Change highpass width_type.
4540 Syntax for the command is : "@var{width_type}"
4541
4542 @item width, w
4543 Change highpass width.
4544 Syntax for the command is : "@var{width}"
4545
4546 @item mix, m
4547 Change highpass mix.
4548 Syntax for the command is : "@var{mix}"
4549 @end table
4550
4551 @section join
4552
4553 Join multiple input streams into one multi-channel stream.
4554
4555 It accepts the following parameters:
4556 @table @option
4557
4558 @item inputs
4559 The number of input streams. It defaults to 2.
4560
4561 @item channel_layout
4562 The desired output channel layout. It defaults to stereo.
4563
4564 @item map
4565 Map channels from inputs to output. The argument is a '|'-separated list of
4566 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4567 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4568 can be either the name of the input channel (e.g. FL for front left) or its
4569 index in the specified input stream. @var{out_channel} is the name of the output
4570 channel.
4571 @end table
4572
4573 The filter will attempt to guess the mappings when they are not specified
4574 explicitly. It does so by first trying to find an unused matching input channel
4575 and if that fails it picks the first unused input channel.
4576
4577 Join 3 inputs (with properly set channel layouts):
4578 @example
4579 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4580 @end example
4581
4582 Build a 5.1 output from 6 single-channel streams:
4583 @example
4584 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4585 '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'
4586 out
4587 @end example
4588
4589 @section ladspa
4590
4591 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4592
4593 To enable compilation of this filter you need to configure FFmpeg with
4594 @code{--enable-ladspa}.
4595
4596 @table @option
4597 @item file, f
4598 Specifies the name of LADSPA plugin library to load. If the environment
4599 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4600 each one of the directories specified by the colon separated list in
4601 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4602 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4603 @file{/usr/lib/ladspa/}.
4604
4605 @item plugin, p
4606 Specifies the plugin within the library. Some libraries contain only
4607 one plugin, but others contain many of them. If this is not set filter
4608 will list all available plugins within the specified library.
4609
4610 @item controls, c
4611 Set the '|' separated list of controls which are zero or more floating point
4612 values that determine the behavior of the loaded plugin (for example delay,
4613 threshold or gain).
4614 Controls need to be defined using the following syntax:
4615 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4616 @var{valuei} is the value set on the @var{i}-th control.
4617 Alternatively they can be also defined using the following syntax:
4618 @var{value0}|@var{value1}|@var{value2}|..., where
4619 @var{valuei} is the value set on the @var{i}-th control.
4620 If @option{controls} is set to @code{help}, all available controls and
4621 their valid ranges are printed.
4622
4623 @item sample_rate, s
4624 Specify the sample rate, default to 44100. Only used if plugin have
4625 zero inputs.
4626
4627 @item nb_samples, n
4628 Set the number of samples per channel per each output frame, default
4629 is 1024. Only used if plugin have zero inputs.
4630
4631 @item duration, d
4632 Set the minimum duration of the sourced audio. See
4633 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4634 for the accepted syntax.
4635 Note that the resulting duration may be greater than the specified duration,
4636 as the generated audio is always cut at the end of a complete frame.
4637 If not specified, or the expressed duration is negative, the audio is
4638 supposed to be generated forever.
4639 Only used if plugin have zero inputs.
4640
4641 @item latency, l
4642 Enable latency compensation, by default is disabled.
4643 Only used if plugin have inputs.
4644 @end table
4645
4646 @subsection Examples
4647
4648 @itemize
4649 @item
4650 List all available plugins within amp (LADSPA example plugin) library:
4651 @example
4652 ladspa=file=amp
4653 @end example
4654
4655 @item
4656 List all available controls and their valid ranges for @code{vcf_notch}
4657 plugin from @code{VCF} library:
4658 @example
4659 ladspa=f=vcf:p=vcf_notch:c=help
4660 @end example
4661
4662 @item
4663 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4664 plugin library:
4665 @example
4666 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4667 @end example
4668
4669 @item
4670 Add reverberation to the audio using TAP-plugins
4671 (Tom's Audio Processing plugins):
4672 @example
4673 ladspa=file=tap_reverb:tap_reverb
4674 @end example
4675
4676 @item
4677 Generate white noise, with 0.2 amplitude:
4678 @example
4679 ladspa=file=cmt:noise_source_white:c=c0=.2
4680 @end example
4681
4682 @item
4683 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4684 @code{C* Audio Plugin Suite} (CAPS) library:
4685 @example
4686 ladspa=file=caps:Click:c=c1=20'
4687 @end example
4688
4689 @item
4690 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4691 @example
4692 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4693 @end example
4694
4695 @item
4696 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4697 @code{SWH Plugins} collection:
4698 @example
4699 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4700 @end example
4701
4702 @item
4703 Attenuate low frequencies using Multiband EQ from Steve Harris
4704 @code{SWH Plugins} collection:
4705 @example
4706 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4707 @end example
4708
4709 @item
4710 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4711 (CAPS) library:
4712 @example
4713 ladspa=caps:Narrower
4714 @end example
4715
4716 @item
4717 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4718 @example
4719 ladspa=caps:White:.2
4720 @end example
4721
4722 @item
4723 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4724 @example
4725 ladspa=caps:Fractal:c=c1=1
4726 @end example
4727
4728 @item
4729 Dynamic volume normalization using @code{VLevel} plugin:
4730 @example
4731 ladspa=vlevel-ladspa:vlevel_mono
4732 @end example
4733 @end itemize
4734
4735 @subsection Commands
4736
4737 This filter supports the following commands:
4738 @table @option
4739 @item cN
4740 Modify the @var{N}-th control value.
4741
4742 If the specified value is not valid, it is ignored and prior one is kept.
4743 @end table
4744
4745 @section loudnorm
4746
4747 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4748 Support for both single pass (livestreams, files) and double pass (files) modes.
4749 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4750 detect true peaks, the audio stream will be upsampled to 192 kHz.
4751 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4752
4753 The filter accepts the following options:
4754
4755 @table @option
4756 @item I, i
4757 Set integrated loudness target.
4758 Range is -70.0 - -5.0. Default value is -24.0.
4759
4760 @item LRA, lra
4761 Set loudness range target.
4762 Range is 1.0 - 20.0. Default value is 7.0.
4763
4764 @item TP, tp
4765 Set maximum true peak.
4766 Range is -9.0 - +0.0. Default value is -2.0.
4767
4768 @item measured_I, measured_i
4769 Measured IL of input file.
4770 Range is -99.0 - +0.0.
4771
4772 @item measured_LRA, measured_lra
4773 Measured LRA of input file.
4774 Range is  0.0 - 99.0.
4775
4776 @item measured_TP, measured_tp
4777 Measured true peak of input file.
4778 Range is  -99.0 - +99.0.
4779
4780 @item measured_thresh
4781 Measured threshold of input file.
4782 Range is -99.0 - +0.0.
4783
4784 @item offset
4785 Set offset gain. Gain is applied before the true-peak limiter.
4786 Range is  -99.0 - +99.0. Default is +0.0.
4787
4788 @item linear
4789 Normalize by linearly scaling the source audio.
4790 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4791 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4792 be lower than source LRA and the change in integrated loudness shouldn't
4793 result in a true peak which exceeds the target TP. If any of these
4794 conditions aren't met, normalization mode will revert to @var{dynamic}.
4795 Options are @code{true} or @code{false}. Default is @code{true}.
4796
4797 @item dual_mono
4798 Treat mono input files as "dual-mono". If a mono file is intended for playback
4799 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4800 If set to @code{true}, this option will compensate for this effect.
4801 Multi-channel input files are not affected by this option.
4802 Options are true or false. Default is false.
4803
4804 @item print_format
4805 Set print format for stats. Options are summary, json, or none.
4806 Default value is none.
4807 @end table
4808
4809 @section lowpass
4810
4811 Apply a low-pass filter with 3dB point frequency.
4812 The filter can be either single-pole or double-pole (the default).
4813 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4814
4815 The filter accepts the following options:
4816
4817 @table @option
4818 @item frequency, f
4819 Set frequency in Hz. Default is 500.
4820
4821 @item poles, p
4822 Set number of poles. Default is 2.
4823
4824 @item width_type, t
4825 Set method to specify band-width of filter.
4826 @table @option
4827 @item h
4828 Hz
4829 @item q
4830 Q-Factor
4831 @item o
4832 octave
4833 @item s
4834 slope
4835 @item k
4836 kHz
4837 @end table
4838
4839 @item width, w
4840 Specify the band-width of a filter in width_type units.
4841 Applies only to double-pole filter.
4842 The default is 0.707q and gives a Butterworth response.
4843
4844 @item mix, m
4845 How much to use filtered signal in output. Default is 1.
4846 Range is between 0 and 1.
4847
4848 @item channels, c
4849 Specify which channels to filter, by default all available are filtered.
4850
4851 @item normalize, n
4852 Normalize biquad coefficients, by default is disabled.
4853 Enabling it will normalize magnitude response at DC to 0dB.
4854
4855 @item transform, a
4856 Set transform type of IIR filter.
4857 @table @option
4858 @item di
4859 @item dii
4860 @item tdii
4861 @item latt
4862 @end table
4863
4864 @item precision, r
4865 Set precison of filtering.
4866 @table @option
4867 @item auto
4868 Pick automatic sample format depending on surround filters.
4869 @item s16
4870 Always use signed 16-bit.
4871 @item s32
4872 Always use signed 32-bit.
4873 @item f32
4874 Always use float 32-bit.
4875 @item f64
4876 Always use float 64-bit.
4877 @end table
4878 @end table
4879
4880 @subsection Examples
4881 @itemize
4882 @item
4883 Lowpass only LFE channel, it LFE is not present it does nothing:
4884 @example
4885 lowpass=c=LFE
4886 @end example
4887 @end itemize
4888
4889 @subsection Commands
4890
4891 This filter supports the following commands:
4892 @table @option
4893 @item frequency, f
4894 Change lowpass frequency.
4895 Syntax for the command is : "@var{frequency}"
4896
4897 @item width_type, t
4898 Change lowpass width_type.
4899 Syntax for the command is : "@var{width_type}"
4900
4901 @item width, w
4902 Change lowpass width.
4903 Syntax for the command is : "@var{width}"
4904
4905 @item mix, m
4906 Change lowpass mix.
4907 Syntax for the command is : "@var{mix}"
4908 @end table
4909
4910 @section lv2
4911
4912 Load a LV2 (LADSPA Version 2) plugin.
4913
4914 To enable compilation of this filter you need to configure FFmpeg with
4915 @code{--enable-lv2}.
4916
4917 @table @option
4918 @item plugin, p
4919 Specifies the plugin URI. You may need to escape ':'.
4920
4921 @item controls, c
4922 Set the '|' separated list of controls which are zero or more floating point
4923 values that determine the behavior of the loaded plugin (for example delay,
4924 threshold or gain).
4925 If @option{controls} is set to @code{help}, all available controls and
4926 their valid ranges are printed.
4927
4928 @item sample_rate, s
4929 Specify the sample rate, default to 44100. Only used if plugin have
4930 zero inputs.
4931
4932 @item nb_samples, n
4933 Set the number of samples per channel per each output frame, default
4934 is 1024. Only used if plugin have zero inputs.
4935
4936 @item duration, d
4937 Set the minimum duration of the sourced audio. See
4938 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4939 for the accepted syntax.
4940 Note that the resulting duration may be greater than the specified duration,
4941 as the generated audio is always cut at the end of a complete frame.
4942 If not specified, or the expressed duration is negative, the audio is
4943 supposed to be generated forever.
4944 Only used if plugin have zero inputs.
4945 @end table
4946
4947 @subsection Examples
4948
4949 @itemize
4950 @item
4951 Apply bass enhancer plugin from Calf:
4952 @example
4953 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4954 @end example
4955
4956 @item
4957 Apply vinyl plugin from Calf:
4958 @example
4959 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4960 @end example
4961
4962 @item
4963 Apply bit crusher plugin from ArtyFX:
4964 @example
4965 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4966 @end example
4967 @end itemize
4968
4969 @section mcompand
4970 Multiband Compress or expand the audio's dynamic range.
4971
4972 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4973 This is akin to the crossover of a loudspeaker, and results in flat frequency
4974 response when absent compander action.
4975
4976 It accepts the following parameters:
4977
4978 @table @option
4979 @item args
4980 This option syntax is:
4981 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4982 For explanation of each item refer to compand filter documentation.
4983 @end table
4984
4985 @anchor{pan}
4986 @section pan
4987
4988 Mix channels with specific gain levels. The filter accepts the output
4989 channel layout followed by a set of channels definitions.
4990
4991 This filter is also designed to efficiently remap the channels of an audio
4992 stream.
4993
4994 The filter accepts parameters of the form:
4995 "@var{l}|@var{outdef}|@var{outdef}|..."
4996
4997 @table @option
4998 @item l
4999 output channel layout or number of channels
5000
5001 @item outdef
5002 output channel specification, of the form:
5003 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
5004
5005 @item out_name
5006 output channel to define, either a channel name (FL, FR, etc.) or a channel
5007 number (c0, c1, etc.)
5008
5009 @item gain
5010 multiplicative coefficient for the channel, 1 leaving the volume unchanged
5011
5012 @item in_name
5013 input channel to use, see out_name for details; it is not possible to mix
5014 named and numbered input channels
5015 @end table
5016
5017 If the `=' in a channel specification is replaced by `<', then the gains for
5018 that specification will be renormalized so that the total is 1, thus
5019 avoiding clipping noise.
5020
5021 @subsection Mixing examples
5022
5023 For example, if you want to down-mix from stereo to mono, but with a bigger
5024 factor for the left channel:
5025 @example
5026 pan=1c|c0=0.9*c0+0.1*c1
5027 @end example
5028
5029 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
5030 7-channels surround:
5031 @example
5032 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
5033 @end example
5034
5035 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
5036 that should be preferred (see "-ac" option) unless you have very specific
5037 needs.
5038
5039 @subsection Remapping examples
5040
5041 The channel remapping will be effective if, and only if:
5042
5043 @itemize
5044 @item gain coefficients are zeroes or ones,
5045 @item only one input per channel output,
5046 @end itemize
5047
5048 If all these conditions are satisfied, the filter will notify the user ("Pure
5049 channel mapping detected"), and use an optimized and lossless method to do the
5050 remapping.
5051
5052 For example, if you have a 5.1 source and want a stereo audio stream by
5053 dropping the extra channels:
5054 @example
5055 pan="stereo| c0=FL | c1=FR"
5056 @end example
5057
5058 Given the same source, you can also switch front left and front right channels
5059 and keep the input channel layout:
5060 @example
5061 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
5062 @end example
5063
5064 If the input is a stereo audio stream, you can mute the front left channel (and
5065 still keep the stereo channel layout) with:
5066 @example
5067 pan="stereo|c1=c1"
5068 @end example
5069
5070 Still with a stereo audio stream input, you can copy the right channel in both
5071 front left and right:
5072 @example
5073 pan="stereo| c0=FR | c1=FR"
5074 @end example
5075
5076 @section replaygain
5077
5078 ReplayGain scanner filter. This filter takes an audio stream as an input and
5079 outputs it unchanged.
5080 At end of filtering it displays @code{track_gain} and @code{track_peak}.
5081
5082 @section resample
5083
5084 Convert the audio sample format, sample rate and channel layout. It is
5085 not meant to be used directly.
5086
5087 @section rubberband
5088 Apply time-stretching and pitch-shifting with librubberband.
5089
5090 To enable compilation of this filter, you need to configure FFmpeg with
5091 @code{--enable-librubberband}.
5092
5093 The filter accepts the following options:
5094
5095 @table @option
5096 @item tempo
5097 Set tempo scale factor.
5098
5099 @item pitch
5100 Set pitch scale factor.
5101
5102 @item transients
5103 Set transients detector.
5104 Possible values are:
5105 @table @var
5106 @item crisp
5107 @item mixed
5108 @item smooth
5109 @end table
5110
5111 @item detector
5112 Set detector.
5113 Possible values are:
5114 @table @var
5115 @item compound
5116 @item percussive
5117 @item soft
5118 @end table
5119
5120 @item phase
5121 Set phase.
5122 Possible values are:
5123 @table @var
5124 @item laminar
5125 @item independent
5126 @end table
5127
5128 @item window
5129 Set processing window size.
5130 Possible values are:
5131 @table @var
5132 @item standard
5133 @item short
5134 @item long
5135 @end table
5136
5137 @item smoothing
5138 Set smoothing.
5139 Possible values are:
5140 @table @var
5141 @item off
5142 @item on
5143 @end table
5144
5145 @item formant
5146 Enable formant preservation when shift pitching.
5147 Possible values are:
5148 @table @var
5149 @item shifted
5150 @item preserved
5151 @end table
5152
5153 @item pitchq
5154 Set pitch quality.
5155 Possible values are:
5156 @table @var
5157 @item quality
5158 @item speed
5159 @item consistency
5160 @end table
5161
5162 @item channels
5163 Set channels.
5164 Possible values are:
5165 @table @var
5166 @item apart
5167 @item together
5168 @end table
5169 @end table
5170
5171 @subsection Commands
5172
5173 This filter supports the following commands:
5174 @table @option
5175 @item tempo
5176 Change filter tempo scale factor.
5177 Syntax for the command is : "@var{tempo}"
5178
5179 @item pitch
5180 Change filter pitch scale factor.
5181 Syntax for the command is : "@var{pitch}"
5182 @end table
5183
5184 @section sidechaincompress
5185
5186 This filter acts like normal compressor but has the ability to compress
5187 detected signal using second input signal.
5188 It needs two input streams and returns one output stream.
5189 First input stream will be processed depending on second stream signal.
5190 The filtered signal then can be filtered with other filters in later stages of
5191 processing. See @ref{pan} and @ref{amerge} filter.
5192
5193 The filter accepts the following options:
5194
5195 @table @option
5196 @item level_in
5197 Set input gain. Default is 1. Range is between 0.015625 and 64.
5198
5199 @item mode
5200 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
5201 Default is @code{downward}.
5202
5203 @item threshold
5204 If a signal of second stream raises above this level it will affect the gain
5205 reduction of first stream.
5206 By default is 0.125. Range is between 0.00097563 and 1.
5207
5208 @item ratio
5209 Set a ratio about which the signal is reduced. 1:2 means that if the level
5210 raised 4dB above the threshold, it will be only 2dB above after the reduction.
5211 Default is 2. Range is between 1 and 20.
5212
5213 @item attack
5214 Amount of milliseconds the signal has to rise above the threshold before gain
5215 reduction starts. Default is 20. Range is between 0.01 and 2000.
5216
5217 @item release
5218 Amount of milliseconds the signal has to fall below the threshold before
5219 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
5220
5221 @item makeup
5222 Set the amount by how much signal will be amplified after processing.
5223 Default is 1. Range is from 1 to 64.
5224
5225 @item knee
5226 Curve the sharp knee around the threshold to enter gain reduction more softly.
5227 Default is 2.82843. Range is between 1 and 8.
5228
5229 @item link
5230 Choose if the @code{average} level between all channels of side-chain stream
5231 or the louder(@code{maximum}) channel of side-chain stream affects the
5232 reduction. Default is @code{average}.
5233
5234 @item detection
5235 Should the exact signal be taken in case of @code{peak} or an RMS one in case
5236 of @code{rms}. Default is @code{rms} which is mainly smoother.
5237
5238 @item level_sc
5239 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
5240
5241 @item mix
5242 How much to use compressed signal in output. Default is 1.
5243 Range is between 0 and 1.
5244 @end table
5245
5246 @subsection Commands
5247
5248 This filter supports the all above options as @ref{commands}.
5249
5250 @subsection Examples
5251
5252 @itemize
5253 @item
5254 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
5255 depending on the signal of 2nd input and later compressed signal to be
5256 merged with 2nd input:
5257 @example
5258 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
5259 @end example
5260 @end itemize
5261
5262 @section sidechaingate
5263
5264 A sidechain gate acts like a normal (wideband) gate but has the ability to
5265 filter the detected signal before sending it to the gain reduction stage.
5266 Normally a gate uses the full range signal to detect a level above the
5267 threshold.
5268 For example: If you cut all lower frequencies from your sidechain signal
5269 the gate will decrease the volume of your track only if not enough highs
5270 appear. With this technique you are able to reduce the resonation of a
5271 natural drum or remove "rumbling" of muted strokes from a heavily distorted
5272 guitar.
5273 It needs two input streams and returns one output stream.
5274 First input stream will be processed depending on second stream signal.
5275
5276 The filter accepts the following options:
5277
5278 @table @option
5279 @item level_in
5280 Set input level before filtering.
5281 Default is 1. Allowed range is from 0.015625 to 64.
5282
5283 @item mode
5284 Set the mode of operation. Can be @code{upward} or @code{downward}.
5285 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
5286 will be amplified, expanding dynamic range in upward direction.
5287 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
5288
5289 @item range
5290 Set the level of gain reduction when the signal is below the threshold.
5291 Default is 0.06125. Allowed range is from 0 to 1.
5292 Setting this to 0 disables reduction and then filter behaves like expander.
5293
5294 @item threshold
5295 If a signal rises above this level the gain reduction is released.
5296 Default is 0.125. Allowed range is from 0 to 1.
5297
5298 @item ratio
5299 Set a ratio about which the signal is reduced.
5300 Default is 2. Allowed range is from 1 to 9000.
5301
5302 @item attack
5303 Amount of milliseconds the signal has to rise above the threshold before gain
5304 reduction stops.
5305 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
5306
5307 @item release
5308 Amount of milliseconds the signal has to fall below the threshold before the
5309 reduction is increased again. Default is 250 milliseconds.
5310 Allowed range is from 0.01 to 9000.
5311
5312 @item makeup
5313 Set amount of amplification of signal after processing.
5314 Default is 1. Allowed range is from 1 to 64.
5315
5316 @item knee
5317 Curve the sharp knee around the threshold to enter gain reduction more softly.
5318 Default is 2.828427125. Allowed range is from 1 to 8.
5319
5320 @item detection
5321 Choose if exact signal should be taken for detection or an RMS like one.
5322 Default is rms. Can be peak or rms.
5323
5324 @item link
5325 Choose if the average level between all channels or the louder channel affects
5326 the reduction.
5327 Default is average. Can be average or maximum.
5328
5329 @item level_sc
5330 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
5331 @end table
5332
5333 @subsection Commands
5334
5335 This filter supports the all above options as @ref{commands}.
5336
5337 @section silencedetect
5338
5339 Detect silence in an audio stream.
5340
5341 This filter logs a message when it detects that the input audio volume is less
5342 or equal to a noise tolerance value for a duration greater or equal to the
5343 minimum detected noise duration.
5344
5345 The printed times and duration are expressed in seconds. The
5346 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
5347 is set on the first frame whose timestamp equals or exceeds the detection
5348 duration and it contains the timestamp of the first frame of the silence.
5349
5350 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
5351 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
5352 keys are set on the first frame after the silence. If @option{mono} is
5353 enabled, and each channel is evaluated separately, the @code{.X}
5354 suffixed keys are used, and @code{X} corresponds to the channel number.
5355
5356 The filter accepts the following options:
5357
5358 @table @option
5359 @item noise, n
5360 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
5361 specified value) or amplitude ratio. Default is -60dB, or 0.001.
5362
5363 @item duration, d
5364 Set silence duration until notification (default is 2 seconds). See
5365 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5366 for the accepted syntax.
5367
5368 @item mono, m
5369 Process each channel separately, instead of combined. By default is disabled.
5370 @end table
5371
5372 @subsection Examples
5373
5374 @itemize
5375 @item
5376 Detect 5 seconds of silence with -50dB noise tolerance:
5377 @example
5378 silencedetect=n=-50dB:d=5
5379 @end example
5380
5381 @item
5382 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
5383 tolerance in @file{silence.mp3}:
5384 @example
5385 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
5386 @end example
5387 @end itemize
5388
5389 @section silenceremove
5390
5391 Remove silence from the beginning, middle or end of the audio.
5392
5393 The filter accepts the following options:
5394
5395 @table @option
5396 @item start_periods
5397 This value is used to indicate if audio should be trimmed at beginning of
5398 the audio. A value of zero indicates no silence should be trimmed from the
5399 beginning. When specifying a non-zero value, it trims audio up until it
5400 finds non-silence. Normally, when trimming silence from beginning of audio
5401 the @var{start_periods} will be @code{1} but it can be increased to higher
5402 values to trim all audio up to specific count of non-silence periods.
5403 Default value is @code{0}.
5404
5405 @item start_duration
5406 Specify the amount of time that non-silence must be detected before it stops
5407 trimming audio. By increasing the duration, bursts of noises can be treated
5408 as silence and trimmed off. Default value is @code{0}.
5409
5410 @item start_threshold
5411 This indicates what sample value should be treated as silence. For digital
5412 audio, a value of @code{0} may be fine but for audio recorded from analog,
5413 you may wish to increase the value to account for background noise.
5414 Can be specified in dB (in case "dB" is appended to the specified value)
5415 or amplitude ratio. Default value is @code{0}.
5416
5417 @item start_silence
5418 Specify max duration of silence at beginning that will be kept after
5419 trimming. Default is 0, which is equal to trimming all samples detected
5420 as silence.
5421
5422 @item start_mode
5423 Specify mode of detection of silence end in start of multi-channel audio.
5424 Can be @var{any} or @var{all}. Default is @var{any}.
5425 With @var{any}, any sample that is detected as non-silence will cause
5426 stopped trimming of silence.
5427 With @var{all}, only if all channels are detected as non-silence will cause
5428 stopped trimming of silence.
5429
5430 @item stop_periods
5431 Set the count for trimming silence from the end of audio.
5432 To remove silence from the middle of a file, specify a @var{stop_periods}
5433 that is negative. This value is then treated as a positive value and is
5434 used to indicate the effect should restart processing as specified by
5435 @var{start_periods}, making it suitable for removing periods of silence
5436 in the middle of the audio.
5437 Default value is @code{0}.
5438
5439 @item stop_duration
5440 Specify a duration of silence that must exist before audio is not copied any
5441 more. By specifying a higher duration, silence that is wanted can be left in
5442 the audio.
5443 Default value is @code{0}.
5444
5445 @item stop_threshold
5446 This is the same as @option{start_threshold} but for trimming silence from
5447 the end of audio.
5448 Can be specified in dB (in case "dB" is appended to the specified value)
5449 or amplitude ratio. Default value is @code{0}.
5450
5451 @item stop_silence
5452 Specify max duration of silence at end that will be kept after
5453 trimming. Default is 0, which is equal to trimming all samples detected
5454 as silence.
5455
5456 @item stop_mode
5457 Specify mode of detection of silence start in end of multi-channel audio.
5458 Can be @var{any} or @var{all}. Default is @var{any}.
5459 With @var{any}, any sample that is detected as non-silence will cause
5460 stopped trimming of silence.
5461 With @var{all}, only if all channels are detected as non-silence will cause
5462 stopped trimming of silence.
5463
5464 @item detection
5465 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
5466 and works better with digital silence which is exactly 0.
5467 Default value is @code{rms}.
5468
5469 @item window
5470 Set duration in number of seconds used to calculate size of window in number
5471 of samples for detecting silence.
5472 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
5473 @end table
5474
5475 @subsection Examples
5476
5477 @itemize
5478 @item
5479 The following example shows how this filter can be used to start a recording
5480 that does not contain the delay at the start which usually occurs between
5481 pressing the record button and the start of the performance:
5482 @example
5483 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
5484 @end example
5485
5486 @item
5487 Trim all silence encountered from beginning to end where there is more than 1
5488 second of silence in audio:
5489 @example
5490 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
5491 @end example
5492
5493 @item
5494 Trim all digital silence samples, using peak detection, from beginning to end
5495 where there is more than 0 samples of digital silence in audio and digital
5496 silence is detected in all channels at same positions in stream:
5497 @example
5498 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
5499 @end example
5500 @end itemize
5501
5502 @section sofalizer
5503
5504 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
5505 loudspeakers around the user for binaural listening via headphones (audio
5506 formats up to 9 channels supported).
5507 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
5508 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
5509 Austrian Academy of Sciences.
5510
5511 To enable compilation of this filter you need to configure FFmpeg with
5512 @code{--enable-libmysofa}.
5513
5514 The filter accepts the following options:
5515
5516 @table @option
5517 @item sofa
5518 Set the SOFA file used for rendering.
5519
5520 @item gain
5521 Set gain applied to audio. Value is in dB. Default is 0.
5522
5523 @item rotation
5524 Set rotation of virtual loudspeakers in deg. Default is 0.
5525
5526 @item elevation
5527 Set elevation of virtual speakers in deg. Default is 0.
5528
5529 @item radius
5530 Set distance in meters between loudspeakers and the listener with near-field
5531 HRTFs. Default is 1.
5532
5533 @item type
5534 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
5535 processing audio in time domain which is slow.
5536 @var{freq} is processing audio in frequency domain which is fast.
5537 Default is @var{freq}.
5538
5539 @item speakers
5540 Set custom positions of virtual loudspeakers. Syntax for this option is:
5541 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5542 Each virtual loudspeaker is described with short channel name following with
5543 azimuth and elevation in degrees.
5544 Each virtual loudspeaker description is separated by '|'.
5545 For example to override front left and front right channel positions use:
5546 'speakers=FL 45 15|FR 345 15'.
5547 Descriptions with unrecognised channel names are ignored.
5548
5549 @item lfegain
5550 Set custom gain for LFE channels. Value is in dB. Default is 0.
5551
5552 @item framesize
5553 Set custom frame size in number of samples. Default is 1024.
5554 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5555 is set to @var{freq}.
5556
5557 @item normalize
5558 Should all IRs be normalized upon importing SOFA file.
5559 By default is enabled.
5560
5561 @item interpolate
5562 Should nearest IRs be interpolated with neighbor IRs if exact position
5563 does not match. By default is disabled.
5564
5565 @item minphase
5566 Minphase all IRs upon loading of SOFA file. By default is disabled.
5567
5568 @item anglestep
5569 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5570
5571 @item radstep
5572 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5573 @end table
5574
5575 @subsection Examples
5576
5577 @itemize
5578 @item
5579 Using ClubFritz6 sofa file:
5580 @example
5581 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5582 @end example
5583
5584 @item
5585 Using ClubFritz12 sofa file and bigger radius with small rotation:
5586 @example
5587 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5588 @end example
5589
5590 @item
5591 Similar as above but with custom speaker positions for front left, front right, back left and back right
5592 and also with custom gain:
5593 @example
5594 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5595 @end example
5596 @end itemize
5597
5598 @section speechnorm
5599 Speech Normalizer.
5600
5601 This filter expands or compresses each half-cycle of audio samples
5602 (local set of samples all above or all below zero and between two nearest zero crossings) depending
5603 on threshold value, so audio reaches target peak value under conditions controlled by below options.
5604
5605 The filter accepts the following options:
5606
5607 @table @option
5608 @item peak, p
5609 Set the expansion target peak value. This specifies the highest allowed absolute amplitude
5610 level for the normalized audio input. Default value is 0.95. Allowed range is from 0.0 to 1.0.
5611
5612 @item expansion, e
5613 Set the maximum expansion factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5614 This option controls maximum local half-cycle of samples expansion. The maximum expansion
5615 would be such that local peak value reaches target peak value but never to surpass it and that
5616 ratio between new and previous peak value does not surpass this option value.
5617
5618 @item compression, c
5619 Set the maximum compression factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5620 This option controls maximum local half-cycle of samples compression. This option is used
5621 only if @option{threshold} option is set to value greater than 0.0, then in such cases
5622 when local peak is lower or same as value set by @option{threshold} all samples belonging to
5623 that peak's half-cycle will be compressed by current compression factor.
5624
5625 @item threshold, t
5626 Set the threshold value. Default value is 0.0. Allowed range is from 0.0 to 1.0.
5627 This option specifies which half-cycles of samples will be compressed and which will be expanded.
5628 Any half-cycle samples with their local peak value below or same as this option value will be
5629 compressed by current compression factor, otherwise, if greater than threshold value they will be
5630 expanded with expansion factor so that it could reach peak target value but never surpass it.
5631
5632 @item raise, r
5633 Set the expansion raising amount per each half-cycle of samples. Default value is 0.001.
5634 Allowed range is from 0.0 to 1.0. This controls how fast expansion factor is raised per
5635 each new half-cycle until it reaches @option{expansion} value.
5636 Setting this options too high may lead to distortions.
5637
5638 @item fall, f
5639 Set the compression raising amount per each half-cycle of samples. Default value is 0.001.
5640 Allowed range is from 0.0 to 1.0. This controls how fast compression factor is raised per
5641 each new half-cycle until it reaches @option{compression} value.
5642
5643 @item channels, h
5644 Specify which channels to filter, by default all available channels are filtered.
5645
5646 @item invert, i
5647 Enable inverted filtering, by default is disabled. This inverts interpretation of @option{threshold}
5648 option. When enabled any half-cycle of samples with their local peak value below or same as
5649 @option{threshold} option will be expanded otherwise it will be compressed.
5650
5651 @item link, l
5652 Link channels when calculating gain applied to each filtered channel sample, by default is disabled.
5653 When disabled each filtered channel gain calculation is independent, otherwise when this option
5654 is enabled the minimum of all possible gains for each filtered channel is used.
5655 @end table
5656
5657 @subsection Commands
5658
5659 This filter supports the all above options as @ref{commands}.
5660
5661 @section stereotools
5662
5663 This filter has some handy utilities to manage stereo signals, for converting
5664 M/S stereo recordings to L/R signal while having control over the parameters
5665 or spreading the stereo image of master track.
5666
5667 The filter accepts the following options:
5668
5669 @table @option
5670 @item level_in
5671 Set input level before filtering for both channels. Defaults is 1.
5672 Allowed range is from 0.015625 to 64.
5673
5674 @item level_out
5675 Set output level after filtering for both channels. Defaults is 1.
5676 Allowed range is from 0.015625 to 64.
5677
5678 @item balance_in
5679 Set input balance between both channels. Default is 0.
5680 Allowed range is from -1 to 1.
5681
5682 @item balance_out
5683 Set output balance between both channels. Default is 0.
5684 Allowed range is from -1 to 1.
5685
5686 @item softclip
5687 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5688 clipping. Disabled by default.
5689
5690 @item mutel
5691 Mute the left channel. Disabled by default.
5692
5693 @item muter
5694 Mute the right channel. Disabled by default.
5695
5696 @item phasel
5697 Change the phase of the left channel. Disabled by default.
5698
5699 @item phaser
5700 Change the phase of the right channel. Disabled by default.
5701
5702 @item mode
5703 Set stereo mode. Available values are:
5704
5705 @table @samp
5706 @item lr>lr
5707 Left/Right to Left/Right, this is default.
5708
5709 @item lr>ms
5710 Left/Right to Mid/Side.
5711
5712 @item ms>lr
5713 Mid/Side to Left/Right.
5714
5715 @item lr>ll
5716 Left/Right to Left/Left.
5717
5718 @item lr>rr
5719 Left/Right to Right/Right.
5720
5721 @item lr>l+r
5722 Left/Right to Left + Right.
5723
5724 @item lr>rl
5725 Left/Right to Right/Left.
5726
5727 @item ms>ll
5728 Mid/Side to Left/Left.
5729
5730 @item ms>rr
5731 Mid/Side to Right/Right.
5732
5733 @item ms>rl
5734 Mid/Side to Right/Left.
5735
5736 @item lr>l-r
5737 Left/Right to Left - Right.
5738 @end table
5739
5740 @item slev
5741 Set level of side signal. Default is 1.
5742 Allowed range is from 0.015625 to 64.
5743
5744 @item sbal
5745 Set balance of side signal. Default is 0.
5746 Allowed range is from -1 to 1.
5747
5748 @item mlev
5749 Set level of the middle signal. Default is 1.
5750 Allowed range is from 0.015625 to 64.
5751
5752 @item mpan
5753 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5754
5755 @item base
5756 Set stereo base between mono and inversed channels. Default is 0.
5757 Allowed range is from -1 to 1.
5758
5759 @item delay
5760 Set delay in milliseconds how much to delay left from right channel and
5761 vice versa. Default is 0. Allowed range is from -20 to 20.
5762
5763 @item sclevel
5764 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5765
5766 @item phase
5767 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5768
5769 @item bmode_in, bmode_out
5770 Set balance mode for balance_in/balance_out option.
5771
5772 Can be one of the following:
5773
5774 @table @samp
5775 @item balance
5776 Classic balance mode. Attenuate one channel at time.
5777 Gain is raised up to 1.
5778
5779 @item amplitude
5780 Similar as classic mode above but gain is raised up to 2.
5781
5782 @item power
5783 Equal power distribution, from -6dB to +6dB range.
5784 @end table
5785 @end table
5786
5787 @subsection Commands
5788
5789 This filter supports the all above options as @ref{commands}.
5790
5791 @subsection Examples
5792
5793 @itemize
5794 @item
5795 Apply karaoke like effect:
5796 @example
5797 stereotools=mlev=0.015625
5798 @end example
5799
5800 @item
5801 Convert M/S signal to L/R:
5802 @example
5803 "stereotools=mode=ms>lr"
5804 @end example
5805 @end itemize
5806
5807 @section stereowiden
5808
5809 This filter enhance the stereo effect by suppressing signal common to both
5810 channels and by delaying the signal of left into right and vice versa,
5811 thereby widening the stereo effect.
5812
5813 The filter accepts the following options:
5814
5815 @table @option
5816 @item delay
5817 Time in milliseconds of the delay of left signal into right and vice versa.
5818 Default is 20 milliseconds.
5819
5820 @item feedback
5821 Amount of gain in delayed signal into right and vice versa. Gives a delay
5822 effect of left signal in right output and vice versa which gives widening
5823 effect. Default is 0.3.
5824
5825 @item crossfeed
5826 Cross feed of left into right with inverted phase. This helps in suppressing
5827 the mono. If the value is 1 it will cancel all the signal common to both
5828 channels. Default is 0.3.
5829
5830 @item drymix
5831 Set level of input signal of original channel. Default is 0.8.
5832 @end table
5833
5834 @subsection Commands
5835
5836 This filter supports the all above options except @code{delay} as @ref{commands}.
5837
5838 @section superequalizer
5839 Apply 18 band equalizer.
5840
5841 The filter accepts the following options:
5842 @table @option
5843 @item 1b
5844 Set 65Hz band gain.
5845 @item 2b
5846 Set 92Hz band gain.
5847 @item 3b
5848 Set 131Hz band gain.
5849 @item 4b
5850 Set 185Hz band gain.
5851 @item 5b
5852 Set 262Hz band gain.
5853 @item 6b
5854 Set 370Hz band gain.
5855 @item 7b
5856 Set 523Hz band gain.
5857 @item 8b
5858 Set 740Hz band gain.
5859 @item 9b
5860 Set 1047Hz band gain.
5861 @item 10b
5862 Set 1480Hz band gain.
5863 @item 11b
5864 Set 2093Hz band gain.
5865 @item 12b
5866 Set 2960Hz band gain.
5867 @item 13b
5868 Set 4186Hz band gain.
5869 @item 14b
5870 Set 5920Hz band gain.
5871 @item 15b
5872 Set 8372Hz band gain.
5873 @item 16b
5874 Set 11840Hz band gain.
5875 @item 17b
5876 Set 16744Hz band gain.
5877 @item 18b
5878 Set 20000Hz band gain.
5879 @end table
5880
5881 @section surround
5882 Apply audio surround upmix filter.
5883
5884 This filter allows to produce multichannel output from audio stream.
5885
5886 The filter accepts the following options:
5887
5888 @table @option
5889 @item chl_out
5890 Set output channel layout. By default, this is @var{5.1}.
5891
5892 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5893 for the required syntax.
5894
5895 @item chl_in
5896 Set input channel layout. By default, this is @var{stereo}.
5897
5898 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5899 for the required syntax.
5900
5901 @item level_in
5902 Set input volume level. By default, this is @var{1}.
5903
5904 @item level_out
5905 Set output volume level. By default, this is @var{1}.
5906
5907 @item lfe
5908 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5909
5910 @item lfe_low
5911 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5912
5913 @item lfe_high
5914 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5915
5916 @item lfe_mode
5917 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5918 In @var{add} mode, LFE channel is created from input audio and added to output.
5919 In @var{sub} mode, LFE channel is created from input audio and added to output but
5920 also all non-LFE output channels are subtracted with output LFE channel.
5921
5922 @item angle
5923 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5924 Default is @var{90}.
5925
5926 @item fc_in
5927 Set front center input volume. By default, this is @var{1}.
5928
5929 @item fc_out
5930 Set front center output volume. By default, this is @var{1}.
5931
5932 @item fl_in
5933 Set front left input volume. By default, this is @var{1}.
5934
5935 @item fl_out
5936 Set front left output volume. By default, this is @var{1}.
5937
5938 @item fr_in
5939 Set front right input volume. By default, this is @var{1}.
5940
5941 @item fr_out
5942 Set front right output volume. By default, this is @var{1}.
5943
5944 @item sl_in
5945 Set side left input volume. By default, this is @var{1}.
5946
5947 @item sl_out
5948 Set side left output volume. By default, this is @var{1}.
5949
5950 @item sr_in
5951 Set side right input volume. By default, this is @var{1}.
5952
5953 @item sr_out
5954 Set side right output volume. By default, this is @var{1}.
5955
5956 @item bl_in
5957 Set back left input volume. By default, this is @var{1}.
5958
5959 @item bl_out
5960 Set back left output volume. By default, this is @var{1}.
5961
5962 @item br_in
5963 Set back right input volume. By default, this is @var{1}.
5964
5965 @item br_out
5966 Set back right output volume. By default, this is @var{1}.
5967
5968 @item bc_in
5969 Set back center input volume. By default, this is @var{1}.
5970
5971 @item bc_out
5972 Set back center output volume. By default, this is @var{1}.
5973
5974 @item lfe_in
5975 Set LFE input volume. By default, this is @var{1}.
5976
5977 @item lfe_out
5978 Set LFE output volume. By default, this is @var{1}.
5979
5980 @item allx
5981 Set spread usage of stereo image across X axis for all channels.
5982
5983 @item ally
5984 Set spread usage of stereo image across Y axis for all channels.
5985
5986 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5987 Set spread usage of stereo image across X axis for each channel.
5988
5989 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5990 Set spread usage of stereo image across Y axis for each channel.
5991
5992 @item win_size
5993 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5994
5995 @item win_func
5996 Set window function.
5997
5998 It accepts the following values:
5999 @table @samp
6000 @item rect
6001 @item bartlett
6002 @item hann, hanning
6003 @item hamming
6004 @item blackman
6005 @item welch
6006 @item flattop
6007 @item bharris
6008 @item bnuttall
6009 @item bhann
6010 @item sine
6011 @item nuttall
6012 @item lanczos
6013 @item gauss
6014 @item tukey
6015 @item dolph
6016 @item cauchy
6017 @item parzen
6018 @item poisson
6019 @item bohman
6020 @end table
6021 Default is @code{hann}.
6022
6023 @item overlap
6024 Set window overlap. If set to 1, the recommended overlap for selected
6025 window function will be picked. Default is @code{0.5}.
6026 @end table
6027
6028 @section treble, highshelf
6029
6030 Boost or cut treble (upper) frequencies of the audio using a two-pole
6031 shelving filter with a response similar to that of a standard
6032 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
6033
6034 The filter accepts the following options:
6035
6036 @table @option
6037 @item gain, g
6038 Give the gain at whichever is the lower of ~22 kHz and the
6039 Nyquist frequency. Its useful range is about -20 (for a large cut)
6040 to +20 (for a large boost). Beware of clipping when using a positive gain.
6041
6042 @item frequency, f
6043 Set the filter's central frequency and so can be used
6044 to extend or reduce the frequency range to be boosted or cut.
6045 The default value is @code{3000} Hz.
6046
6047 @item width_type, t
6048 Set method to specify band-width of filter.
6049 @table @option
6050 @item h
6051 Hz
6052 @item q
6053 Q-Factor
6054 @item o
6055 octave
6056 @item s
6057 slope
6058 @item k
6059 kHz
6060 @end table
6061
6062 @item width, w
6063 Determine how steep is the filter's shelf transition.
6064
6065 @item poles, p
6066 Set number of poles. Default is 2.
6067
6068 @item mix, m
6069 How much to use filtered signal in output. Default is 1.
6070 Range is between 0 and 1.
6071
6072 @item channels, c
6073 Specify which channels to filter, by default all available are filtered.
6074
6075 @item normalize, n
6076 Normalize biquad coefficients, by default is disabled.
6077 Enabling it will normalize magnitude response at DC to 0dB.
6078
6079 @item transform, a
6080 Set transform type of IIR filter.
6081 @table @option
6082 @item di
6083 @item dii
6084 @item tdii
6085 @item latt
6086 @end table
6087
6088 @item precision, r
6089 Set precison of filtering.
6090 @table @option
6091 @item auto
6092 Pick automatic sample format depending on surround filters.
6093 @item s16
6094 Always use signed 16-bit.
6095 @item s32
6096 Always use signed 32-bit.
6097 @item f32
6098 Always use float 32-bit.
6099 @item f64
6100 Always use float 64-bit.
6101 @end table
6102 @end table
6103
6104 @subsection Commands
6105
6106 This filter supports the following commands:
6107 @table @option
6108 @item frequency, f
6109 Change treble frequency.
6110 Syntax for the command is : "@var{frequency}"
6111
6112 @item width_type, t
6113 Change treble width_type.
6114 Syntax for the command is : "@var{width_type}"
6115
6116 @item width, w
6117 Change treble width.
6118 Syntax for the command is : "@var{width}"
6119
6120 @item gain, g
6121 Change treble gain.
6122 Syntax for the command is : "@var{gain}"
6123
6124 @item mix, m
6125 Change treble mix.
6126 Syntax for the command is : "@var{mix}"
6127 @end table
6128
6129 @section tremolo
6130
6131 Sinusoidal amplitude modulation.
6132
6133 The filter accepts the following options:
6134
6135 @table @option
6136 @item f
6137 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
6138 (20 Hz or lower) will result in a tremolo effect.
6139 This filter may also be used as a ring modulator by specifying
6140 a modulation frequency higher than 20 Hz.
6141 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6142
6143 @item d
6144 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6145 Default value is 0.5.
6146 @end table
6147
6148 @section vibrato
6149
6150 Sinusoidal phase modulation.
6151
6152 The filter accepts the following options:
6153
6154 @table @option
6155 @item f
6156 Modulation frequency in Hertz.
6157 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6158
6159 @item d
6160 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6161 Default value is 0.5.
6162 @end table
6163
6164 @section volume
6165
6166 Adjust the input audio volume.
6167
6168 It accepts the following parameters:
6169 @table @option
6170
6171 @item volume
6172 Set audio volume expression.
6173
6174 Output values are clipped to the maximum value.
6175
6176 The output audio volume is given by the relation:
6177 @example
6178 @var{output_volume} = @var{volume} * @var{input_volume}
6179 @end example
6180
6181 The default value for @var{volume} is "1.0".
6182
6183 @item precision
6184 This parameter represents the mathematical precision.
6185
6186 It determines which input sample formats will be allowed, which affects the
6187 precision of the volume scaling.
6188
6189 @table @option
6190 @item fixed
6191 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
6192 @item float
6193 32-bit floating-point; this limits input sample format to FLT. (default)
6194 @item double
6195 64-bit floating-point; this limits input sample format to DBL.
6196 @end table
6197
6198 @item replaygain
6199 Choose the behaviour on encountering ReplayGain side data in input frames.
6200
6201 @table @option
6202 @item drop
6203 Remove ReplayGain side data, ignoring its contents (the default).
6204
6205 @item ignore
6206 Ignore ReplayGain side data, but leave it in the frame.
6207
6208 @item track
6209 Prefer the track gain, if present.
6210
6211 @item album
6212 Prefer the album gain, if present.
6213 @end table
6214
6215 @item replaygain_preamp
6216 Pre-amplification gain in dB to apply to the selected replaygain gain.
6217
6218 Default value for @var{replaygain_preamp} is 0.0.
6219
6220 @item replaygain_noclip
6221 Prevent clipping by limiting the gain applied.
6222
6223 Default value for @var{replaygain_noclip} is 1.
6224
6225 @item eval
6226 Set when the volume expression is evaluated.
6227
6228 It accepts the following values:
6229 @table @samp
6230 @item once
6231 only evaluate expression once during the filter initialization, or
6232 when the @samp{volume} command is sent
6233
6234 @item frame
6235 evaluate expression for each incoming frame
6236 @end table
6237
6238 Default value is @samp{once}.
6239 @end table
6240
6241 The volume expression can contain the following parameters.
6242
6243 @table @option
6244 @item n
6245 frame number (starting at zero)
6246 @item nb_channels
6247 number of channels
6248 @item nb_consumed_samples
6249 number of samples consumed by the filter
6250 @item nb_samples
6251 number of samples in the current frame
6252 @item pos
6253 original frame position in the file
6254 @item pts
6255 frame PTS
6256 @item sample_rate
6257 sample rate
6258 @item startpts
6259 PTS at start of stream
6260 @item startt
6261 time at start of stream
6262 @item t
6263 frame time
6264 @item tb
6265 timestamp timebase
6266 @item volume
6267 last set volume value
6268 @end table
6269
6270 Note that when @option{eval} is set to @samp{once} only the
6271 @var{sample_rate} and @var{tb} variables are available, all other
6272 variables will evaluate to NAN.
6273
6274 @subsection Commands
6275
6276 This filter supports the following commands:
6277 @table @option
6278 @item volume
6279 Modify the volume expression.
6280 The command accepts the same syntax of the corresponding option.
6281
6282 If the specified expression is not valid, it is kept at its current
6283 value.
6284 @end table
6285
6286 @subsection Examples
6287
6288 @itemize
6289 @item
6290 Halve the input audio volume:
6291 @example
6292 volume=volume=0.5
6293 volume=volume=1/2
6294 volume=volume=-6.0206dB
6295 @end example
6296
6297 In all the above example the named key for @option{volume} can be
6298 omitted, for example like in:
6299 @example
6300 volume=0.5
6301 @end example
6302
6303 @item
6304 Increase input audio power by 6 decibels using fixed-point precision:
6305 @example
6306 volume=volume=6dB:precision=fixed
6307 @end example
6308
6309 @item
6310 Fade volume after time 10 with an annihilation period of 5 seconds:
6311 @example
6312 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
6313 @end example
6314 @end itemize
6315
6316 @section volumedetect
6317
6318 Detect the volume of the input video.
6319
6320 The filter has no parameters. The input is not modified. Statistics about
6321 the volume will be printed in the log when the input stream end is reached.
6322
6323 In particular it will show the mean volume (root mean square), maximum
6324 volume (on a per-sample basis), and the beginning of a histogram of the
6325 registered volume values (from the maximum value to a cumulated 1/1000 of
6326 the samples).
6327
6328 All volumes are in decibels relative to the maximum PCM value.
6329
6330 @subsection Examples
6331
6332 Here is an excerpt of the output:
6333 @example
6334 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
6335 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
6336 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
6337 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
6338 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
6339 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
6340 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
6341 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
6342 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
6343 @end example
6344
6345 It means that:
6346 @itemize
6347 @item
6348 The mean square energy is approximately -27 dB, or 10^-2.7.
6349 @item
6350 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
6351 @item
6352 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
6353 @end itemize
6354
6355 In other words, raising the volume by +4 dB does not cause any clipping,
6356 raising it by +5 dB causes clipping for 6 samples, etc.
6357
6358 @c man end AUDIO FILTERS
6359
6360 @chapter Audio Sources
6361 @c man begin AUDIO SOURCES
6362
6363 Below is a description of the currently available audio sources.
6364
6365 @section abuffer
6366
6367 Buffer audio frames, and make them available to the filter chain.
6368
6369 This source is mainly intended for a programmatic use, in particular
6370 through the interface defined in @file{libavfilter/buffersrc.h}.
6371
6372 It accepts the following parameters:
6373 @table @option
6374
6375 @item time_base
6376 The timebase which will be used for timestamps of submitted frames. It must be
6377 either a floating-point number or in @var{numerator}/@var{denominator} form.
6378
6379 @item sample_rate
6380 The sample rate of the incoming audio buffers.
6381
6382 @item sample_fmt
6383 The sample format of the incoming audio buffers.
6384 Either a sample format name or its corresponding integer representation from
6385 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
6386
6387 @item channel_layout
6388 The channel layout of the incoming audio buffers.
6389 Either a channel layout name from channel_layout_map in
6390 @file{libavutil/channel_layout.c} or its corresponding integer representation
6391 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
6392
6393 @item channels
6394 The number of channels of the incoming audio buffers.
6395 If both @var{channels} and @var{channel_layout} are specified, then they
6396 must be consistent.
6397
6398 @end table
6399
6400 @subsection Examples
6401
6402 @example
6403 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
6404 @end example
6405
6406 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
6407 Since the sample format with name "s16p" corresponds to the number
6408 6 and the "stereo" channel layout corresponds to the value 0x3, this is
6409 equivalent to:
6410 @example
6411 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
6412 @end example
6413
6414 @section aevalsrc
6415
6416 Generate an audio signal specified by an expression.
6417
6418 This source accepts in input one or more expressions (one for each
6419 channel), which are evaluated and used to generate a corresponding
6420 audio signal.
6421
6422 This source accepts the following options:
6423
6424 @table @option
6425 @item exprs
6426 Set the '|'-separated expressions list for each separate channel. In case the
6427 @option{channel_layout} option is not specified, the selected channel layout
6428 depends on the number of provided expressions. Otherwise the last
6429 specified expression is applied to the remaining output channels.
6430
6431 @item channel_layout, c
6432 Set the channel layout. The number of channels in the specified layout
6433 must be equal to the number of specified expressions.
6434
6435 @item duration, d
6436 Set the minimum duration of the sourced audio. See
6437 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6438 for the accepted syntax.
6439 Note that the resulting duration may be greater than the specified
6440 duration, as the generated audio is always cut at the end of a
6441 complete frame.
6442
6443 If not specified, or the expressed duration is negative, the audio is
6444 supposed to be generated forever.
6445
6446 @item nb_samples, n
6447 Set the number of samples per channel per each output frame,
6448 default to 1024.
6449
6450 @item sample_rate, s
6451 Specify the sample rate, default to 44100.
6452 @end table
6453
6454 Each expression in @var{exprs} can contain the following constants:
6455
6456 @table @option
6457 @item n
6458 number of the evaluated sample, starting from 0
6459
6460 @item t
6461 time of the evaluated sample expressed in seconds, starting from 0
6462
6463 @item s
6464 sample rate
6465
6466 @end table
6467
6468 @subsection Examples
6469
6470 @itemize
6471 @item
6472 Generate silence:
6473 @example
6474 aevalsrc=0
6475 @end example
6476
6477 @item
6478 Generate a sin signal with frequency of 440 Hz, set sample rate to
6479 8000 Hz:
6480 @example
6481 aevalsrc="sin(440*2*PI*t):s=8000"
6482 @end example
6483
6484 @item
6485 Generate a two channels signal, specify the channel layout (Front
6486 Center + Back Center) explicitly:
6487 @example
6488 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
6489 @end example
6490
6491 @item
6492 Generate white noise:
6493 @example
6494 aevalsrc="-2+random(0)"
6495 @end example
6496
6497 @item
6498 Generate an amplitude modulated signal:
6499 @example
6500 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
6501 @end example
6502
6503 @item
6504 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
6505 @example
6506 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
6507 @end example
6508
6509 @end itemize
6510
6511 @section afirsrc
6512
6513 Generate a FIR coefficients using frequency sampling method.
6514
6515 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6516
6517 The filter accepts the following options:
6518
6519 @table @option
6520 @item taps, t
6521 Set number of filter coefficents in output audio stream.
6522 Default value is 1025.
6523
6524 @item frequency, f
6525 Set frequency points from where magnitude and phase are set.
6526 This must be in non decreasing order, and first element must be 0, while last element
6527 must be 1. Elements are separated by white spaces.
6528
6529 @item magnitude, m
6530 Set magnitude value for every frequency point set by @option{frequency}.
6531 Number of values must be same as number of frequency points.
6532 Values are separated by white spaces.
6533
6534 @item phase, p
6535 Set phase value for every frequency point set by @option{frequency}.
6536 Number of values must be same as number of frequency points.
6537 Values are separated by white spaces.
6538
6539 @item sample_rate, r
6540 Set sample rate, default is 44100.
6541
6542 @item nb_samples, n
6543 Set number of samples per each frame. Default is 1024.
6544
6545 @item win_func, w
6546 Set window function. Default is blackman.
6547 @end table
6548
6549 @section anullsrc
6550
6551 The null audio source, return unprocessed audio frames. It is mainly useful
6552 as a template and to be employed in analysis / debugging tools, or as
6553 the source for filters which ignore the input data (for example the sox
6554 synth filter).
6555
6556 This source accepts the following options:
6557
6558 @table @option
6559
6560 @item channel_layout, cl
6561
6562 Specifies the channel layout, and can be either an integer or a string
6563 representing a channel layout. The default value of @var{channel_layout}
6564 is "stereo".
6565
6566 Check the channel_layout_map definition in
6567 @file{libavutil/channel_layout.c} for the mapping between strings and
6568 channel layout values.
6569
6570 @item sample_rate, r
6571 Specifies the sample rate, and defaults to 44100.
6572
6573 @item nb_samples, n
6574 Set the number of samples per requested frames.
6575
6576 @item duration, d
6577 Set the duration of the sourced audio. See
6578 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6579 for the accepted syntax.
6580
6581 If not specified, or the expressed duration is negative, the audio is
6582 supposed to be generated forever.
6583 @end table
6584
6585 @subsection Examples
6586
6587 @itemize
6588 @item
6589 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
6590 @example
6591 anullsrc=r=48000:cl=4
6592 @end example
6593
6594 @item
6595 Do the same operation with a more obvious syntax:
6596 @example
6597 anullsrc=r=48000:cl=mono
6598 @end example
6599 @end itemize
6600
6601 All the parameters need to be explicitly defined.
6602
6603 @section flite
6604
6605 Synthesize a voice utterance using the libflite library.
6606
6607 To enable compilation of this filter you need to configure FFmpeg with
6608 @code{--enable-libflite}.
6609
6610 Note that versions of the flite library prior to 2.0 are not thread-safe.
6611
6612 The filter accepts the following options:
6613
6614 @table @option
6615
6616 @item list_voices
6617 If set to 1, list the names of the available voices and exit
6618 immediately. Default value is 0.
6619
6620 @item nb_samples, n
6621 Set the maximum number of samples per frame. Default value is 512.
6622
6623 @item textfile
6624 Set the filename containing the text to speak.
6625
6626 @item text
6627 Set the text to speak.
6628
6629 @item voice, v
6630 Set the voice to use for the speech synthesis. Default value is
6631 @code{kal}. See also the @var{list_voices} option.
6632 @end table
6633
6634 @subsection Examples
6635
6636 @itemize
6637 @item
6638 Read from file @file{speech.txt}, and synthesize the text using the
6639 standard flite voice:
6640 @example
6641 flite=textfile=speech.txt
6642 @end example
6643
6644 @item
6645 Read the specified text selecting the @code{slt} voice:
6646 @example
6647 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6648 @end example
6649
6650 @item
6651 Input text to ffmpeg:
6652 @example
6653 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6654 @end example
6655
6656 @item
6657 Make @file{ffplay} speak the specified text, using @code{flite} and
6658 the @code{lavfi} device:
6659 @example
6660 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6661 @end example
6662 @end itemize
6663
6664 For more information about libflite, check:
6665 @url{http://www.festvox.org/flite/}
6666
6667 @section anoisesrc
6668
6669 Generate a noise audio signal.
6670
6671 The filter accepts the following options:
6672
6673 @table @option
6674 @item sample_rate, r
6675 Specify the sample rate. Default value is 48000 Hz.
6676
6677 @item amplitude, a
6678 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6679 is 1.0.
6680
6681 @item duration, d
6682 Specify the duration of the generated audio stream. Not specifying this option
6683 results in noise with an infinite length.
6684
6685 @item color, colour, c
6686 Specify the color of noise. Available noise colors are white, pink, brown,
6687 blue, violet and velvet. Default color is white.
6688
6689 @item seed, s
6690 Specify a value used to seed the PRNG.
6691
6692 @item nb_samples, n
6693 Set the number of samples per each output frame, default is 1024.
6694 @end table
6695
6696 @subsection Examples
6697
6698 @itemize
6699
6700 @item
6701 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6702 @example
6703 anoisesrc=d=60:c=pink:r=44100:a=0.5
6704 @end example
6705 @end itemize
6706
6707 @section hilbert
6708
6709 Generate odd-tap Hilbert transform FIR coefficients.
6710
6711 The resulting stream can be used with @ref{afir} filter for phase-shifting
6712 the signal by 90 degrees.
6713
6714 This is used in many matrix coding schemes and for analytic signal generation.
6715 The process is often written as a multiplication by i (or j), the imaginary unit.
6716
6717 The filter accepts the following options:
6718
6719 @table @option
6720
6721 @item sample_rate, s
6722 Set sample rate, default is 44100.
6723
6724 @item taps, t
6725 Set length of FIR filter, default is 22051.
6726
6727 @item nb_samples, n
6728 Set number of samples per each frame.
6729
6730 @item win_func, w
6731 Set window function to be used when generating FIR coefficients.
6732 @end table
6733
6734 @section sinc
6735
6736 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6737
6738 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6739
6740 The filter accepts the following options:
6741
6742 @table @option
6743 @item sample_rate, r
6744 Set sample rate, default is 44100.
6745
6746 @item nb_samples, n
6747 Set number of samples per each frame. Default is 1024.
6748
6749 @item hp
6750 Set high-pass frequency. Default is 0.
6751
6752 @item lp
6753 Set low-pass frequency. Default is 0.
6754 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6755 is higher than 0 then filter will create band-pass filter coefficients,
6756 otherwise band-reject filter coefficients.
6757
6758 @item phase
6759 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6760
6761 @item beta
6762 Set Kaiser window beta.
6763
6764 @item att
6765 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6766
6767 @item round
6768 Enable rounding, by default is disabled.
6769
6770 @item hptaps
6771 Set number of taps for high-pass filter.
6772
6773 @item lptaps
6774 Set number of taps for low-pass filter.
6775 @end table
6776
6777 @section sine
6778
6779 Generate an audio signal made of a sine wave with amplitude 1/8.
6780
6781 The audio signal is bit-exact.
6782
6783 The filter accepts the following options:
6784
6785 @table @option
6786
6787 @item frequency, f
6788 Set the carrier frequency. Default is 440 Hz.
6789
6790 @item beep_factor, b
6791 Enable a periodic beep every second with frequency @var{beep_factor} times
6792 the carrier frequency. Default is 0, meaning the beep is disabled.
6793
6794 @item sample_rate, r
6795 Specify the sample rate, default is 44100.
6796
6797 @item duration, d
6798 Specify the duration of the generated audio stream.
6799
6800 @item samples_per_frame
6801 Set the number of samples per output frame.
6802
6803 The expression can contain the following constants:
6804
6805 @table @option
6806 @item n
6807 The (sequential) number of the output audio frame, starting from 0.
6808
6809 @item pts
6810 The PTS (Presentation TimeStamp) of the output audio frame,
6811 expressed in @var{TB} units.
6812
6813 @item t
6814 The PTS of the output audio frame, expressed in seconds.
6815
6816 @item TB
6817 The timebase of the output audio frames.
6818 @end table
6819
6820 Default is @code{1024}.
6821 @end table
6822
6823 @subsection Examples
6824
6825 @itemize
6826
6827 @item
6828 Generate a simple 440 Hz sine wave:
6829 @example
6830 sine
6831 @end example
6832
6833 @item
6834 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6835 @example
6836 sine=220:4:d=5
6837 sine=f=220:b=4:d=5
6838 sine=frequency=220:beep_factor=4:duration=5
6839 @end example
6840
6841 @item
6842 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6843 pattern:
6844 @example
6845 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6846 @end example
6847 @end itemize
6848
6849 @c man end AUDIO SOURCES
6850
6851 @chapter Audio Sinks
6852 @c man begin AUDIO SINKS
6853
6854 Below is a description of the currently available audio sinks.
6855
6856 @section abuffersink
6857
6858 Buffer audio frames, and make them available to the end of filter chain.
6859
6860 This sink is mainly intended for programmatic use, in particular
6861 through the interface defined in @file{libavfilter/buffersink.h}
6862 or the options system.
6863
6864 It accepts a pointer to an AVABufferSinkContext structure, which
6865 defines the incoming buffers' formats, to be passed as the opaque
6866 parameter to @code{avfilter_init_filter} for initialization.
6867 @section anullsink
6868
6869 Null audio sink; do absolutely nothing with the input audio. It is
6870 mainly useful as a template and for use in analysis / debugging
6871 tools.
6872
6873 @c man end AUDIO SINKS
6874
6875 @chapter Video Filters
6876 @c man begin VIDEO FILTERS
6877
6878 When you configure your FFmpeg build, you can disable any of the
6879 existing filters using @code{--disable-filters}.
6880 The configure output will show the video filters included in your
6881 build.
6882
6883 Below is a description of the currently available video filters.
6884
6885 @section addroi
6886
6887 Mark a region of interest in a video frame.
6888
6889 The frame data is passed through unchanged, but metadata is attached
6890 to the frame indicating regions of interest which can affect the
6891 behaviour of later encoding.  Multiple regions can be marked by
6892 applying the filter multiple times.
6893
6894 @table @option
6895 @item x
6896 Region distance in pixels from the left edge of the frame.
6897 @item y
6898 Region distance in pixels from the top edge of the frame.
6899 @item w
6900 Region width in pixels.
6901 @item h
6902 Region height in pixels.
6903
6904 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6905 and may contain the following variables:
6906 @table @option
6907 @item iw
6908 Width of the input frame.
6909 @item ih
6910 Height of the input frame.
6911 @end table
6912
6913 @item qoffset
6914 Quantisation offset to apply within the region.
6915
6916 This must be a real value in the range -1 to +1.  A value of zero
6917 indicates no quality change.  A negative value asks for better quality
6918 (less quantisation), while a positive value asks for worse quality
6919 (greater quantisation).
6920
6921 The range is calibrated so that the extreme values indicate the
6922 largest possible offset - if the rest of the frame is encoded with the
6923 worst possible quality, an offset of -1 indicates that this region
6924 should be encoded with the best possible quality anyway.  Intermediate
6925 values are then interpolated in some codec-dependent way.
6926
6927 For example, in 10-bit H.264 the quantisation parameter varies between
6928 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6929 this region should be encoded with a QP around one-tenth of the full
6930 range better than the rest of the frame.  So, if most of the frame
6931 were to be encoded with a QP of around 30, this region would get a QP
6932 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6933 An extreme value of -1 would indicate that this region should be
6934 encoded with the best possible quality regardless of the treatment of
6935 the rest of the frame - that is, should be encoded at a QP of -12.
6936 @item clear
6937 If set to true, remove any existing regions of interest marked on the
6938 frame before adding the new one.
6939 @end table
6940
6941 @subsection Examples
6942
6943 @itemize
6944 @item
6945 Mark the centre quarter of the frame as interesting.
6946 @example
6947 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6948 @end example
6949 @item
6950 Mark the 100-pixel-wide region on the left edge of the frame as very
6951 uninteresting (to be encoded at much lower quality than the rest of
6952 the frame).
6953 @example
6954 addroi=0:0:100:ih:+1/5
6955 @end example
6956 @end itemize
6957
6958 @section alphaextract
6959
6960 Extract the alpha component from the input as a grayscale video. This
6961 is especially useful with the @var{alphamerge} filter.
6962
6963 @section alphamerge
6964
6965 Add or replace the alpha component of the primary input with the
6966 grayscale value of a second input. This is intended for use with
6967 @var{alphaextract} to allow the transmission or storage of frame
6968 sequences that have alpha in a format that doesn't support an alpha
6969 channel.
6970
6971 For example, to reconstruct full frames from a normal YUV-encoded video
6972 and a separate video created with @var{alphaextract}, you might use:
6973 @example
6974 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6975 @end example
6976
6977 @section amplify
6978
6979 Amplify differences between current pixel and pixels of adjacent frames in
6980 same pixel location.
6981
6982 This filter accepts the following options:
6983
6984 @table @option
6985 @item radius
6986 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6987 For example radius of 3 will instruct filter to calculate average of 7 frames.
6988
6989 @item factor
6990 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6991
6992 @item threshold
6993 Set threshold for difference amplification. Any difference greater or equal to
6994 this value will not alter source pixel. Default is 10.
6995 Allowed range is from 0 to 65535.
6996
6997 @item tolerance
6998 Set tolerance for difference amplification. Any difference lower to
6999 this value will not alter source pixel. Default is 0.
7000 Allowed range is from 0 to 65535.
7001
7002 @item low
7003 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7004 This option controls maximum possible value that will decrease source pixel value.
7005
7006 @item high
7007 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7008 This option controls maximum possible value that will increase source pixel value.
7009
7010 @item planes
7011 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
7012 @end table
7013
7014 @subsection Commands
7015
7016 This filter supports the following @ref{commands} that corresponds to option of same name:
7017 @table @option
7018 @item factor
7019 @item threshold
7020 @item tolerance
7021 @item low
7022 @item high
7023 @item planes
7024 @end table
7025
7026 @section ass
7027
7028 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
7029 and libavformat to work. On the other hand, it is limited to ASS (Advanced
7030 Substation Alpha) subtitles files.
7031
7032 This filter accepts the following option in addition to the common options from
7033 the @ref{subtitles} filter:
7034
7035 @table @option
7036 @item shaping
7037 Set the shaping engine
7038
7039 Available values are:
7040 @table @samp
7041 @item auto
7042 The default libass shaping engine, which is the best available.
7043 @item simple
7044 Fast, font-agnostic shaper that can do only substitutions
7045 @item complex
7046 Slower shaper using OpenType for substitutions and positioning
7047 @end table
7048
7049 The default is @code{auto}.
7050 @end table
7051
7052 @section atadenoise
7053 Apply an Adaptive Temporal Averaging Denoiser to the video input.
7054
7055 The filter accepts the following options:
7056
7057 @table @option
7058 @item 0a
7059 Set threshold A for 1st plane. Default is 0.02.
7060 Valid range is 0 to 0.3.
7061
7062 @item 0b
7063 Set threshold B for 1st plane. Default is 0.04.
7064 Valid range is 0 to 5.
7065
7066 @item 1a
7067 Set threshold A for 2nd plane. Default is 0.02.
7068 Valid range is 0 to 0.3.
7069
7070 @item 1b
7071 Set threshold B for 2nd plane. Default is 0.04.
7072 Valid range is 0 to 5.
7073
7074 @item 2a
7075 Set threshold A for 3rd plane. Default is 0.02.
7076 Valid range is 0 to 0.3.
7077
7078 @item 2b
7079 Set threshold B for 3rd plane. Default is 0.04.
7080 Valid range is 0 to 5.
7081
7082 Threshold A is designed to react on abrupt changes in the input signal and
7083 threshold B is designed to react on continuous changes in the input signal.
7084
7085 @item s
7086 Set number of frames filter will use for averaging. Default is 9. Must be odd
7087 number in range [5, 129].
7088
7089 @item p
7090 Set what planes of frame filter will use for averaging. Default is all.
7091
7092 @item a
7093 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
7094 Alternatively can be set to @code{s} serial.
7095
7096 Parallel can be faster then serial, while other way around is never true.
7097 Parallel will abort early on first change being greater then thresholds, while serial
7098 will continue processing other side of frames if they are equal or below thresholds.
7099
7100 @item 0s
7101 @item 1s
7102 @item 2s
7103 Set sigma for 1st plane, 2nd plane or 3rd plane. Default is 32767.
7104 Valid range is from 0 to 32767.
7105 This options controls weight for each pixel in radius defined by size.
7106 Default value means every pixel have same weight.
7107 Setting this option to 0 effectively disables filtering.
7108 @end table
7109
7110 @subsection Commands
7111 This filter supports same @ref{commands} as options except option @code{s}.
7112 The command accepts the same syntax of the corresponding option.
7113
7114 @section avgblur
7115
7116 Apply average blur filter.
7117
7118 The filter accepts the following options:
7119
7120 @table @option
7121 @item sizeX
7122 Set horizontal radius size.
7123
7124 @item planes
7125 Set which planes to filter. By default all planes are filtered.
7126
7127 @item sizeY
7128 Set vertical radius size, if zero it will be same as @code{sizeX}.
7129 Default is @code{0}.
7130 @end table
7131
7132 @subsection Commands
7133 This filter supports same commands as options.
7134 The command accepts the same syntax of the corresponding option.
7135
7136 If the specified expression is not valid, it is kept at its current
7137 value.
7138
7139 @section bbox
7140
7141 Compute the bounding box for the non-black pixels in the input frame
7142 luminance plane.
7143
7144 This filter computes the bounding box containing all the pixels with a
7145 luminance value greater than the minimum allowed value.
7146 The parameters describing the bounding box are printed on the filter
7147 log.
7148
7149 The filter accepts the following option:
7150
7151 @table @option
7152 @item min_val
7153 Set the minimal luminance value. Default is @code{16}.
7154 @end table
7155
7156 @subsection Commands
7157
7158 This filter supports the all above options as @ref{commands}.
7159
7160 @section bilateral
7161 Apply bilateral filter, spatial smoothing while preserving edges.
7162
7163 The filter accepts the following options:
7164 @table @option
7165 @item sigmaS
7166 Set sigma of gaussian function to calculate spatial weight.
7167 Allowed range is 0 to 512. Default is 0.1.
7168
7169 @item sigmaR
7170 Set sigma of gaussian function to calculate range weight.
7171 Allowed range is 0 to 1. Default is 0.1.
7172
7173 @item planes
7174 Set planes to filter. Default is first only.
7175 @end table
7176
7177 @subsection Commands
7178
7179 This filter supports the all above options as @ref{commands}.
7180
7181 @section bitplanenoise
7182
7183 Show and measure bit plane noise.
7184
7185 The filter accepts the following options:
7186
7187 @table @option
7188 @item bitplane
7189 Set which plane to analyze. Default is @code{1}.
7190
7191 @item filter
7192 Filter out noisy pixels from @code{bitplane} set above.
7193 Default is disabled.
7194 @end table
7195
7196 @section blackdetect
7197
7198 Detect video intervals that are (almost) completely black. Can be
7199 useful to detect chapter transitions, commercials, or invalid
7200 recordings.
7201
7202 The filter outputs its detection analysis to both the log as well as
7203 frame metadata. If a black segment of at least the specified minimum
7204 duration is found, a line with the start and end timestamps as well
7205 as duration is printed to the log with level @code{info}. In addition,
7206 a log line with level @code{debug} is printed per frame showing the
7207 black amount detected for that frame.
7208
7209 The filter also attaches metadata to the first frame of a black
7210 segment with key @code{lavfi.black_start} and to the first frame
7211 after the black segment ends with key @code{lavfi.black_end}. The
7212 value is the frame's timestamp. This metadata is added regardless
7213 of the minimum duration specified.
7214
7215 The filter accepts the following options:
7216
7217 @table @option
7218 @item black_min_duration, d
7219 Set the minimum detected black duration expressed in seconds. It must
7220 be a non-negative floating point number.
7221
7222 Default value is 2.0.
7223
7224 @item picture_black_ratio_th, pic_th
7225 Set the threshold for considering a picture "black".
7226 Express the minimum value for the ratio:
7227 @example
7228 @var{nb_black_pixels} / @var{nb_pixels}
7229 @end example
7230
7231 for which a picture is considered black.
7232 Default value is 0.98.
7233
7234 @item pixel_black_th, pix_th
7235 Set the threshold for considering a pixel "black".
7236
7237 The threshold expresses the maximum pixel luminance value for which a
7238 pixel is considered "black". The provided value is scaled according to
7239 the following equation:
7240 @example
7241 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
7242 @end example
7243
7244 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
7245 the input video format, the range is [0-255] for YUV full-range
7246 formats and [16-235] for YUV non full-range formats.
7247
7248 Default value is 0.10.
7249 @end table
7250
7251 The following example sets the maximum pixel threshold to the minimum
7252 value, and detects only black intervals of 2 or more seconds:
7253 @example
7254 blackdetect=d=2:pix_th=0.00
7255 @end example
7256
7257 @section blackframe
7258
7259 Detect frames that are (almost) completely black. Can be useful to
7260 detect chapter transitions or commercials. Output lines consist of
7261 the frame number of the detected frame, the percentage of blackness,
7262 the position in the file if known or -1 and the timestamp in seconds.
7263
7264 In order to display the output lines, you need to set the loglevel at
7265 least to the AV_LOG_INFO value.
7266
7267 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
7268 The value represents the percentage of pixels in the picture that
7269 are below the threshold value.
7270
7271 It accepts the following parameters:
7272
7273 @table @option
7274
7275 @item amount
7276 The percentage of the pixels that have to be below the threshold; it defaults to
7277 @code{98}.
7278
7279 @item threshold, thresh
7280 The threshold below which a pixel value is considered black; it defaults to
7281 @code{32}.
7282
7283 @end table
7284
7285 @anchor{blend}
7286 @section blend
7287
7288 Blend two video frames into each other.
7289
7290 The @code{blend} filter takes two input streams and outputs one
7291 stream, the first input is the "top" layer and second input is
7292 "bottom" layer.  By default, the output terminates when the longest input terminates.
7293
7294 The @code{tblend} (time blend) filter takes two consecutive frames
7295 from one single stream, and outputs the result obtained by blending
7296 the new frame on top of the old frame.
7297
7298 A description of the accepted options follows.
7299
7300 @table @option
7301 @item c0_mode
7302 @item c1_mode
7303 @item c2_mode
7304 @item c3_mode
7305 @item all_mode
7306 Set blend mode for specific pixel component or all pixel components in case
7307 of @var{all_mode}. Default value is @code{normal}.
7308
7309 Available values for component modes are:
7310 @table @samp
7311 @item addition
7312 @item grainmerge
7313 @item and
7314 @item average
7315 @item burn
7316 @item darken
7317 @item difference
7318 @item grainextract
7319 @item divide
7320 @item dodge
7321 @item freeze
7322 @item exclusion
7323 @item extremity
7324 @item glow
7325 @item hardlight
7326 @item hardmix
7327 @item heat
7328 @item lighten
7329 @item linearlight
7330 @item multiply
7331 @item multiply128
7332 @item negation
7333 @item normal
7334 @item or
7335 @item overlay
7336 @item phoenix
7337 @item pinlight
7338 @item reflect
7339 @item screen
7340 @item softlight
7341 @item subtract
7342 @item vividlight
7343 @item xor
7344 @end table
7345
7346 @item c0_opacity
7347 @item c1_opacity
7348 @item c2_opacity
7349 @item c3_opacity
7350 @item all_opacity
7351 Set blend opacity for specific pixel component or all pixel components in case
7352 of @var{all_opacity}. Only used in combination with pixel component blend modes.
7353
7354 @item c0_expr
7355 @item c1_expr
7356 @item c2_expr
7357 @item c3_expr
7358 @item all_expr
7359 Set blend expression for specific pixel component or all pixel components in case
7360 of @var{all_expr}. Note that related mode options will be ignored if those are set.
7361
7362 The expressions can use the following variables:
7363
7364 @table @option
7365 @item N
7366 The sequential number of the filtered frame, starting from @code{0}.
7367
7368 @item X
7369 @item Y
7370 the coordinates of the current sample
7371
7372 @item W
7373 @item H
7374 the width and height of currently filtered plane
7375
7376 @item SW
7377 @item SH
7378 Width and height scale for the plane being filtered. It is the
7379 ratio between the dimensions of the current plane to the luma plane,
7380 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
7381 the luma plane and @code{0.5,0.5} for the chroma planes.
7382
7383 @item T
7384 Time of the current frame, expressed in seconds.
7385
7386 @item TOP, A
7387 Value of pixel component at current location for first video frame (top layer).
7388
7389 @item BOTTOM, B
7390 Value of pixel component at current location for second video frame (bottom layer).
7391 @end table
7392 @end table
7393
7394 The @code{blend} filter also supports the @ref{framesync} options.
7395
7396 @subsection Examples
7397
7398 @itemize
7399 @item
7400 Apply transition from bottom layer to top layer in first 10 seconds:
7401 @example
7402 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
7403 @end example
7404
7405 @item
7406 Apply linear horizontal transition from top layer to bottom layer:
7407 @example
7408 blend=all_expr='A*(X/W)+B*(1-X/W)'
7409 @end example
7410
7411 @item
7412 Apply 1x1 checkerboard effect:
7413 @example
7414 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
7415 @end example
7416
7417 @item
7418 Apply uncover left effect:
7419 @example
7420 blend=all_expr='if(gte(N*SW+X,W),A,B)'
7421 @end example
7422
7423 @item
7424 Apply uncover down effect:
7425 @example
7426 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
7427 @end example
7428
7429 @item
7430 Apply uncover up-left effect:
7431 @example
7432 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
7433 @end example
7434
7435 @item
7436 Split diagonally video and shows top and bottom layer on each side:
7437 @example
7438 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
7439 @end example
7440
7441 @item
7442 Display differences between the current and the previous frame:
7443 @example
7444 tblend=all_mode=grainextract
7445 @end example
7446 @end itemize
7447
7448 @section bm3d
7449
7450 Denoise frames using Block-Matching 3D algorithm.
7451
7452 The filter accepts the following options.
7453
7454 @table @option
7455 @item sigma
7456 Set denoising strength. Default value is 1.
7457 Allowed range is from 0 to 999.9.
7458 The denoising algorithm is very sensitive to sigma, so adjust it
7459 according to the source.
7460
7461 @item block
7462 Set local patch size. This sets dimensions in 2D.
7463
7464 @item bstep
7465 Set sliding step for processing blocks. Default value is 4.
7466 Allowed range is from 1 to 64.
7467 Smaller values allows processing more reference blocks and is slower.
7468
7469 @item group
7470 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
7471 When set to 1, no block matching is done. Larger values allows more blocks
7472 in single group.
7473 Allowed range is from 1 to 256.
7474
7475 @item range
7476 Set radius for search block matching. Default is 9.
7477 Allowed range is from 1 to INT32_MAX.
7478
7479 @item mstep
7480 Set step between two search locations for block matching. Default is 1.
7481 Allowed range is from 1 to 64. Smaller is slower.
7482
7483 @item thmse
7484 Set threshold of mean square error for block matching. Valid range is 0 to
7485 INT32_MAX.
7486
7487 @item hdthr
7488 Set thresholding parameter for hard thresholding in 3D transformed domain.
7489 Larger values results in stronger hard-thresholding filtering in frequency
7490 domain.
7491
7492 @item estim
7493 Set filtering estimation mode. Can be @code{basic} or @code{final}.
7494 Default is @code{basic}.
7495
7496 @item ref
7497 If enabled, filter will use 2nd stream for block matching.
7498 Default is disabled for @code{basic} value of @var{estim} option,
7499 and always enabled if value of @var{estim} is @code{final}.
7500
7501 @item planes
7502 Set planes to filter. Default is all available except alpha.
7503 @end table
7504
7505 @subsection Examples
7506
7507 @itemize
7508 @item
7509 Basic filtering with bm3d:
7510 @example
7511 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
7512 @end example
7513
7514 @item
7515 Same as above, but filtering only luma:
7516 @example
7517 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
7518 @end example
7519
7520 @item
7521 Same as above, but with both estimation modes:
7522 @example
7523 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
7524 @end example
7525
7526 @item
7527 Same as above, but prefilter with @ref{nlmeans} filter instead:
7528 @example
7529 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
7530 @end example
7531 @end itemize
7532
7533 @section boxblur
7534
7535 Apply a boxblur algorithm to the input video.
7536
7537 It accepts the following parameters:
7538
7539 @table @option
7540
7541 @item luma_radius, lr
7542 @item luma_power, lp
7543 @item chroma_radius, cr
7544 @item chroma_power, cp
7545 @item alpha_radius, ar
7546 @item alpha_power, ap
7547
7548 @end table
7549
7550 A description of the accepted options follows.
7551
7552 @table @option
7553 @item luma_radius, lr
7554 @item chroma_radius, cr
7555 @item alpha_radius, ar
7556 Set an expression for the box radius in pixels used for blurring the
7557 corresponding input plane.
7558
7559 The radius value must be a non-negative number, and must not be
7560 greater than the value of the expression @code{min(w,h)/2} for the
7561 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
7562 planes.
7563
7564 Default value for @option{luma_radius} is "2". If not specified,
7565 @option{chroma_radius} and @option{alpha_radius} default to the
7566 corresponding value set for @option{luma_radius}.
7567
7568 The expressions can contain the following constants:
7569 @table @option
7570 @item w
7571 @item h
7572 The input width and height in pixels.
7573
7574 @item cw
7575 @item ch
7576 The input chroma image width and height in pixels.
7577
7578 @item hsub
7579 @item vsub
7580 The horizontal and vertical chroma subsample values. For example, for the
7581 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
7582 @end table
7583
7584 @item luma_power, lp
7585 @item chroma_power, cp
7586 @item alpha_power, ap
7587 Specify how many times the boxblur filter is applied to the
7588 corresponding plane.
7589
7590 Default value for @option{luma_power} is 2. If not specified,
7591 @option{chroma_power} and @option{alpha_power} default to the
7592 corresponding value set for @option{luma_power}.
7593
7594 A value of 0 will disable the effect.
7595 @end table
7596
7597 @subsection Examples
7598
7599 @itemize
7600 @item
7601 Apply a boxblur filter with the luma, chroma, and alpha radii
7602 set to 2:
7603 @example
7604 boxblur=luma_radius=2:luma_power=1
7605 boxblur=2:1
7606 @end example
7607
7608 @item
7609 Set the luma radius to 2, and alpha and chroma radius to 0:
7610 @example
7611 boxblur=2:1:cr=0:ar=0
7612 @end example
7613
7614 @item
7615 Set the luma and chroma radii to a fraction of the video dimension:
7616 @example
7617 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
7618 @end example
7619 @end itemize
7620
7621 @section bwdif
7622
7623 Deinterlace the input video ("bwdif" stands for "Bob Weaver
7624 Deinterlacing Filter").
7625
7626 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
7627 interpolation algorithms.
7628 It accepts the following parameters:
7629
7630 @table @option
7631 @item mode
7632 The interlacing mode to adopt. It accepts one of the following values:
7633
7634 @table @option
7635 @item 0, send_frame
7636 Output one frame for each frame.
7637 @item 1, send_field
7638 Output one frame for each field.
7639 @end table
7640
7641 The default value is @code{send_field}.
7642
7643 @item parity
7644 The picture field parity assumed for the input interlaced video. It accepts one
7645 of the following values:
7646
7647 @table @option
7648 @item 0, tff
7649 Assume the top field is first.
7650 @item 1, bff
7651 Assume the bottom field is first.
7652 @item -1, auto
7653 Enable automatic detection of field parity.
7654 @end table
7655
7656 The default value is @code{auto}.
7657 If the interlacing is unknown or the decoder does not export this information,
7658 top field first will be assumed.
7659
7660 @item deint
7661 Specify which frames to deinterlace. Accepts one of the following
7662 values:
7663
7664 @table @option
7665 @item 0, all
7666 Deinterlace all frames.
7667 @item 1, interlaced
7668 Only deinterlace frames marked as interlaced.
7669 @end table
7670
7671 The default value is @code{all}.
7672 @end table
7673
7674 @section cas
7675
7676 Apply Contrast Adaptive Sharpen filter to video stream.
7677
7678 The filter accepts the following options:
7679
7680 @table @option
7681 @item strength
7682 Set the sharpening strength. Default value is 0.
7683
7684 @item planes
7685 Set planes to filter. Default value is to filter all
7686 planes except alpha plane.
7687 @end table
7688
7689 @subsection Commands
7690 This filter supports same @ref{commands} as options.
7691
7692 @section chromahold
7693 Remove all color information for all colors except for certain one.
7694
7695 The filter accepts the following options:
7696
7697 @table @option
7698 @item color
7699 The color which will not be replaced with neutral chroma.
7700
7701 @item similarity
7702 Similarity percentage with the above color.
7703 0.01 matches only the exact key color, while 1.0 matches everything.
7704
7705 @item blend
7706 Blend percentage.
7707 0.0 makes pixels either fully gray, or not gray at all.
7708 Higher values result in more preserved color.
7709
7710 @item yuv
7711 Signals that the color passed is already in YUV instead of RGB.
7712
7713 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7714 This can be used to pass exact YUV values as hexadecimal numbers.
7715 @end table
7716
7717 @subsection Commands
7718 This filter supports same @ref{commands} as options.
7719 The command accepts the same syntax of the corresponding option.
7720
7721 If the specified expression is not valid, it is kept at its current
7722 value.
7723
7724 @section chromakey
7725 YUV colorspace color/chroma keying.
7726
7727 The filter accepts the following options:
7728
7729 @table @option
7730 @item color
7731 The color which will be replaced with transparency.
7732
7733 @item similarity
7734 Similarity percentage with the key color.
7735
7736 0.01 matches only the exact key color, while 1.0 matches everything.
7737
7738 @item blend
7739 Blend percentage.
7740
7741 0.0 makes pixels either fully transparent, or not transparent at all.
7742
7743 Higher values result in semi-transparent pixels, with a higher transparency
7744 the more similar the pixels color is to the key color.
7745
7746 @item yuv
7747 Signals that the color passed is already in YUV instead of RGB.
7748
7749 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7750 This can be used to pass exact YUV values as hexadecimal numbers.
7751 @end table
7752
7753 @subsection Commands
7754 This filter supports same @ref{commands} as options.
7755 The command accepts the same syntax of the corresponding option.
7756
7757 If the specified expression is not valid, it is kept at its current
7758 value.
7759
7760 @subsection Examples
7761
7762 @itemize
7763 @item
7764 Make every green pixel in the input image transparent:
7765 @example
7766 ffmpeg -i input.png -vf chromakey=green out.png
7767 @end example
7768
7769 @item
7770 Overlay a greenscreen-video on top of a static black background.
7771 @example
7772 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
7773 @end example
7774 @end itemize
7775
7776 @section chromanr
7777 Reduce chrominance noise.
7778
7779 The filter accepts the following options:
7780
7781 @table @option
7782 @item thres
7783 Set threshold for averaging chrominance values.
7784 Sum of absolute difference of Y, U and V pixel components of current
7785 pixel and neighbour pixels lower than this threshold will be used in
7786 averaging. Luma component is left unchanged and is copied to output.
7787 Default value is 30. Allowed range is from 1 to 200.
7788
7789 @item sizew
7790 Set horizontal radius of rectangle used for averaging.
7791 Allowed range is from 1 to 100. Default value is 5.
7792
7793 @item sizeh
7794 Set vertical radius of rectangle used for averaging.
7795 Allowed range is from 1 to 100. Default value is 5.
7796
7797 @item stepw
7798 Set horizontal step when averaging. Default value is 1.
7799 Allowed range is from 1 to 50.
7800 Mostly useful to speed-up filtering.
7801
7802 @item steph
7803 Set vertical step when averaging. Default value is 1.
7804 Allowed range is from 1 to 50.
7805 Mostly useful to speed-up filtering.
7806
7807 @item threy
7808 Set Y threshold for averaging chrominance values.
7809 Set finer control for max allowed difference between Y components
7810 of current pixel and neigbour pixels.
7811 Default value is 200. Allowed range is from 1 to 200.
7812
7813 @item threu
7814 Set U threshold for averaging chrominance values.
7815 Set finer control for max allowed difference between U components
7816 of current pixel and neigbour pixels.
7817 Default value is 200. Allowed range is from 1 to 200.
7818
7819 @item threv
7820 Set V threshold for averaging chrominance values.
7821 Set finer control for max allowed difference between V components
7822 of current pixel and neigbour pixels.
7823 Default value is 200. Allowed range is from 1 to 200.
7824 @end table
7825
7826 @subsection Commands
7827 This filter supports same @ref{commands} as options.
7828 The command accepts the same syntax of the corresponding option.
7829
7830 @section chromashift
7831 Shift chroma pixels horizontally and/or vertically.
7832
7833 The filter accepts the following options:
7834 @table @option
7835 @item cbh
7836 Set amount to shift chroma-blue horizontally.
7837 @item cbv
7838 Set amount to shift chroma-blue vertically.
7839 @item crh
7840 Set amount to shift chroma-red horizontally.
7841 @item crv
7842 Set amount to shift chroma-red vertically.
7843 @item edge
7844 Set edge mode, can be @var{smear}, default, or @var{warp}.
7845 @end table
7846
7847 @subsection Commands
7848
7849 This filter supports the all above options as @ref{commands}.
7850
7851 @section ciescope
7852
7853 Display CIE color diagram with pixels overlaid onto it.
7854
7855 The filter accepts the following options:
7856
7857 @table @option
7858 @item system
7859 Set color system.
7860
7861 @table @samp
7862 @item ntsc, 470m
7863 @item ebu, 470bg
7864 @item smpte
7865 @item 240m
7866 @item apple
7867 @item widergb
7868 @item cie1931
7869 @item rec709, hdtv
7870 @item uhdtv, rec2020
7871 @item dcip3
7872 @end table
7873
7874 @item cie
7875 Set CIE system.
7876
7877 @table @samp
7878 @item xyy
7879 @item ucs
7880 @item luv
7881 @end table
7882
7883 @item gamuts
7884 Set what gamuts to draw.
7885
7886 See @code{system} option for available values.
7887
7888 @item size, s
7889 Set ciescope size, by default set to 512.
7890
7891 @item intensity, i
7892 Set intensity used to map input pixel values to CIE diagram.
7893
7894 @item contrast
7895 Set contrast used to draw tongue colors that are out of active color system gamut.
7896
7897 @item corrgamma
7898 Correct gamma displayed on scope, by default enabled.
7899
7900 @item showwhite
7901 Show white point on CIE diagram, by default disabled.
7902
7903 @item gamma
7904 Set input gamma. Used only with XYZ input color space.
7905 @end table
7906
7907 @section codecview
7908
7909 Visualize information exported by some codecs.
7910
7911 Some codecs can export information through frames using side-data or other
7912 means. For example, some MPEG based codecs export motion vectors through the
7913 @var{export_mvs} flag in the codec @option{flags2} option.
7914
7915 The filter accepts the following option:
7916
7917 @table @option
7918 @item mv
7919 Set motion vectors to visualize.
7920
7921 Available flags for @var{mv} are:
7922
7923 @table @samp
7924 @item pf
7925 forward predicted MVs of P-frames
7926 @item bf
7927 forward predicted MVs of B-frames
7928 @item bb
7929 backward predicted MVs of B-frames
7930 @end table
7931
7932 @item qp
7933 Display quantization parameters using the chroma planes.
7934
7935 @item mv_type, mvt
7936 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7937
7938 Available flags for @var{mv_type} are:
7939
7940 @table @samp
7941 @item fp
7942 forward predicted MVs
7943 @item bp
7944 backward predicted MVs
7945 @end table
7946
7947 @item frame_type, ft
7948 Set frame type to visualize motion vectors of.
7949
7950 Available flags for @var{frame_type} are:
7951
7952 @table @samp
7953 @item if
7954 intra-coded frames (I-frames)
7955 @item pf
7956 predicted frames (P-frames)
7957 @item bf
7958 bi-directionally predicted frames (B-frames)
7959 @end table
7960 @end table
7961
7962 @subsection Examples
7963
7964 @itemize
7965 @item
7966 Visualize forward predicted MVs of all frames using @command{ffplay}:
7967 @example
7968 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7969 @end example
7970
7971 @item
7972 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7973 @example
7974 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7975 @end example
7976 @end itemize
7977
7978 @section colorbalance
7979 Modify intensity of primary colors (red, green and blue) of input frames.
7980
7981 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7982 regions for the red-cyan, green-magenta or blue-yellow balance.
7983
7984 A positive adjustment value shifts the balance towards the primary color, a negative
7985 value towards the complementary color.
7986
7987 The filter accepts the following options:
7988
7989 @table @option
7990 @item rs
7991 @item gs
7992 @item bs
7993 Adjust red, green and blue shadows (darkest pixels).
7994
7995 @item rm
7996 @item gm
7997 @item bm
7998 Adjust red, green and blue midtones (medium pixels).
7999
8000 @item rh
8001 @item gh
8002 @item bh
8003 Adjust red, green and blue highlights (brightest pixels).
8004
8005 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8006
8007 @item pl
8008 Preserve lightness when changing color balance. Default is disabled.
8009 @end table
8010
8011 @subsection Examples
8012
8013 @itemize
8014 @item
8015 Add red color cast to shadows:
8016 @example
8017 colorbalance=rs=.3
8018 @end example
8019 @end itemize
8020
8021 @subsection Commands
8022
8023 This filter supports the all above options as @ref{commands}.
8024
8025 @section colorchannelmixer
8026
8027 Adjust video input frames by re-mixing color channels.
8028
8029 This filter modifies a color channel by adding the values associated to
8030 the other channels of the same pixels. For example if the value to
8031 modify is red, the output value will be:
8032 @example
8033 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
8034 @end example
8035
8036 The filter accepts the following options:
8037
8038 @table @option
8039 @item rr
8040 @item rg
8041 @item rb
8042 @item ra
8043 Adjust contribution of input red, green, blue and alpha channels for output red channel.
8044 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
8045
8046 @item gr
8047 @item gg
8048 @item gb
8049 @item ga
8050 Adjust contribution of input red, green, blue and alpha channels for output green channel.
8051 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
8052
8053 @item br
8054 @item bg
8055 @item bb
8056 @item ba
8057 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
8058 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
8059
8060 @item ar
8061 @item ag
8062 @item ab
8063 @item aa
8064 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
8065 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
8066
8067 Allowed ranges for options are @code{[-2.0, 2.0]}.
8068
8069 @item pl
8070 Preserve lightness when changing colors. Default is disabled.
8071 @end table
8072
8073 @subsection Examples
8074
8075 @itemize
8076 @item
8077 Convert source to grayscale:
8078 @example
8079 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
8080 @end example
8081 @item
8082 Simulate sepia tones:
8083 @example
8084 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
8085 @end example
8086 @end itemize
8087
8088 @subsection Commands
8089
8090 This filter supports the all above options as @ref{commands}.
8091
8092 @section colorkey
8093 RGB colorspace color keying.
8094
8095 The filter accepts the following options:
8096
8097 @table @option
8098 @item color
8099 The color which will be replaced with transparency.
8100
8101 @item similarity
8102 Similarity percentage with the key color.
8103
8104 0.01 matches only the exact key color, while 1.0 matches everything.
8105
8106 @item blend
8107 Blend percentage.
8108
8109 0.0 makes pixels either fully transparent, or not transparent at all.
8110
8111 Higher values result in semi-transparent pixels, with a higher transparency
8112 the more similar the pixels color is to the key color.
8113 @end table
8114
8115 @subsection Examples
8116
8117 @itemize
8118 @item
8119 Make every green pixel in the input image transparent:
8120 @example
8121 ffmpeg -i input.png -vf colorkey=green out.png
8122 @end example
8123
8124 @item
8125 Overlay a greenscreen-video on top of a static background image.
8126 @example
8127 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
8128 @end example
8129 @end itemize
8130
8131 @subsection Commands
8132 This filter supports same @ref{commands} as options.
8133 The command accepts the same syntax of the corresponding option.
8134
8135 If the specified expression is not valid, it is kept at its current
8136 value.
8137
8138 @section colorhold
8139 Remove all color information for all RGB colors except for certain one.
8140
8141 The filter accepts the following options:
8142
8143 @table @option
8144 @item color
8145 The color which will not be replaced with neutral gray.
8146
8147 @item similarity
8148 Similarity percentage with the above color.
8149 0.01 matches only the exact key color, while 1.0 matches everything.
8150
8151 @item blend
8152 Blend percentage. 0.0 makes pixels fully gray.
8153 Higher values result in more preserved color.
8154 @end table
8155
8156 @subsection Commands
8157 This filter supports same @ref{commands} as options.
8158 The command accepts the same syntax of the corresponding option.
8159
8160 If the specified expression is not valid, it is kept at its current
8161 value.
8162
8163 @section colorlevels
8164
8165 Adjust video input frames using levels.
8166
8167 The filter accepts the following options:
8168
8169 @table @option
8170 @item rimin
8171 @item gimin
8172 @item bimin
8173 @item aimin
8174 Adjust red, green, blue and alpha input black point.
8175 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8176
8177 @item rimax
8178 @item gimax
8179 @item bimax
8180 @item aimax
8181 Adjust red, green, blue and alpha input white point.
8182 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
8183
8184 Input levels are used to lighten highlights (bright tones), darken shadows
8185 (dark tones), change the balance of bright and dark tones.
8186
8187 @item romin
8188 @item gomin
8189 @item bomin
8190 @item aomin
8191 Adjust red, green, blue and alpha output black point.
8192 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
8193
8194 @item romax
8195 @item gomax
8196 @item bomax
8197 @item aomax
8198 Adjust red, green, blue and alpha output white point.
8199 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
8200
8201 Output levels allows manual selection of a constrained output level range.
8202 @end table
8203
8204 @subsection Examples
8205
8206 @itemize
8207 @item
8208 Make video output darker:
8209 @example
8210 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
8211 @end example
8212
8213 @item
8214 Increase contrast:
8215 @example
8216 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
8217 @end example
8218
8219 @item
8220 Make video output lighter:
8221 @example
8222 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
8223 @end example
8224
8225 @item
8226 Increase brightness:
8227 @example
8228 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
8229 @end example
8230 @end itemize
8231
8232 @subsection Commands
8233
8234 This filter supports the all above options as @ref{commands}.
8235
8236 @section colormatrix
8237
8238 Convert color matrix.
8239
8240 The filter accepts the following options:
8241
8242 @table @option
8243 @item src
8244 @item dst
8245 Specify the source and destination color matrix. Both values must be
8246 specified.
8247
8248 The accepted values are:
8249 @table @samp
8250 @item bt709
8251 BT.709
8252
8253 @item fcc
8254 FCC
8255
8256 @item bt601
8257 BT.601
8258
8259 @item bt470
8260 BT.470
8261
8262 @item bt470bg
8263 BT.470BG
8264
8265 @item smpte170m
8266 SMPTE-170M
8267
8268 @item smpte240m
8269 SMPTE-240M
8270
8271 @item bt2020
8272 BT.2020
8273 @end table
8274 @end table
8275
8276 For example to convert from BT.601 to SMPTE-240M, use the command:
8277 @example
8278 colormatrix=bt601:smpte240m
8279 @end example
8280
8281 @section colorspace
8282
8283 Convert colorspace, transfer characteristics or color primaries.
8284 Input video needs to have an even size.
8285
8286 The filter accepts the following options:
8287
8288 @table @option
8289 @anchor{all}
8290 @item all
8291 Specify all color properties at once.
8292
8293 The accepted values are:
8294 @table @samp
8295 @item bt470m
8296 BT.470M
8297
8298 @item bt470bg
8299 BT.470BG
8300
8301 @item bt601-6-525
8302 BT.601-6 525
8303
8304 @item bt601-6-625
8305 BT.601-6 625
8306
8307 @item bt709
8308 BT.709
8309
8310 @item smpte170m
8311 SMPTE-170M
8312
8313 @item smpte240m
8314 SMPTE-240M
8315
8316 @item bt2020
8317 BT.2020
8318
8319 @end table
8320
8321 @anchor{space}
8322 @item space
8323 Specify output colorspace.
8324
8325 The accepted values are:
8326 @table @samp
8327 @item bt709
8328 BT.709
8329
8330 @item fcc
8331 FCC
8332
8333 @item bt470bg
8334 BT.470BG or BT.601-6 625
8335
8336 @item smpte170m
8337 SMPTE-170M or BT.601-6 525
8338
8339 @item smpte240m
8340 SMPTE-240M
8341
8342 @item ycgco
8343 YCgCo
8344
8345 @item bt2020ncl
8346 BT.2020 with non-constant luminance
8347
8348 @end table
8349
8350 @anchor{trc}
8351 @item trc
8352 Specify output transfer characteristics.
8353
8354 The accepted values are:
8355 @table @samp
8356 @item bt709
8357 BT.709
8358
8359 @item bt470m
8360 BT.470M
8361
8362 @item bt470bg
8363 BT.470BG
8364
8365 @item gamma22
8366 Constant gamma of 2.2
8367
8368 @item gamma28
8369 Constant gamma of 2.8
8370
8371 @item smpte170m
8372 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8373
8374 @item smpte240m
8375 SMPTE-240M
8376
8377 @item srgb
8378 SRGB
8379
8380 @item iec61966-2-1
8381 iec61966-2-1
8382
8383 @item iec61966-2-4
8384 iec61966-2-4
8385
8386 @item xvycc
8387 xvycc
8388
8389 @item bt2020-10
8390 BT.2020 for 10-bits content
8391
8392 @item bt2020-12
8393 BT.2020 for 12-bits content
8394
8395 @end table
8396
8397 @anchor{primaries}
8398 @item primaries
8399 Specify output color primaries.
8400
8401 The accepted values are:
8402 @table @samp
8403 @item bt709
8404 BT.709
8405
8406 @item bt470m
8407 BT.470M
8408
8409 @item bt470bg
8410 BT.470BG or BT.601-6 625
8411
8412 @item smpte170m
8413 SMPTE-170M or BT.601-6 525
8414
8415 @item smpte240m
8416 SMPTE-240M
8417
8418 @item film
8419 film
8420
8421 @item smpte431
8422 SMPTE-431
8423
8424 @item smpte432
8425 SMPTE-432
8426
8427 @item bt2020
8428 BT.2020
8429
8430 @item jedec-p22
8431 JEDEC P22 phosphors
8432
8433 @end table
8434
8435 @anchor{range}
8436 @item range
8437 Specify output color range.
8438
8439 The accepted values are:
8440 @table @samp
8441 @item tv
8442 TV (restricted) range
8443
8444 @item mpeg
8445 MPEG (restricted) range
8446
8447 @item pc
8448 PC (full) range
8449
8450 @item jpeg
8451 JPEG (full) range
8452
8453 @end table
8454
8455 @item format
8456 Specify output color format.
8457
8458 The accepted values are:
8459 @table @samp
8460 @item yuv420p
8461 YUV 4:2:0 planar 8-bits
8462
8463 @item yuv420p10
8464 YUV 4:2:0 planar 10-bits
8465
8466 @item yuv420p12
8467 YUV 4:2:0 planar 12-bits
8468
8469 @item yuv422p
8470 YUV 4:2:2 planar 8-bits
8471
8472 @item yuv422p10
8473 YUV 4:2:2 planar 10-bits
8474
8475 @item yuv422p12
8476 YUV 4:2:2 planar 12-bits
8477
8478 @item yuv444p
8479 YUV 4:4:4 planar 8-bits
8480
8481 @item yuv444p10
8482 YUV 4:4:4 planar 10-bits
8483
8484 @item yuv444p12
8485 YUV 4:4:4 planar 12-bits
8486
8487 @end table
8488
8489 @item fast
8490 Do a fast conversion, which skips gamma/primary correction. This will take
8491 significantly less CPU, but will be mathematically incorrect. To get output
8492 compatible with that produced by the colormatrix filter, use fast=1.
8493
8494 @item dither
8495 Specify dithering mode.
8496
8497 The accepted values are:
8498 @table @samp
8499 @item none
8500 No dithering
8501
8502 @item fsb
8503 Floyd-Steinberg dithering
8504 @end table
8505
8506 @item wpadapt
8507 Whitepoint adaptation mode.
8508
8509 The accepted values are:
8510 @table @samp
8511 @item bradford
8512 Bradford whitepoint adaptation
8513
8514 @item vonkries
8515 von Kries whitepoint adaptation
8516
8517 @item identity
8518 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8519 @end table
8520
8521 @item iall
8522 Override all input properties at once. Same accepted values as @ref{all}.
8523
8524 @item ispace
8525 Override input colorspace. Same accepted values as @ref{space}.
8526
8527 @item iprimaries
8528 Override input color primaries. Same accepted values as @ref{primaries}.
8529
8530 @item itrc
8531 Override input transfer characteristics. Same accepted values as @ref{trc}.
8532
8533 @item irange
8534 Override input color range. Same accepted values as @ref{range}.
8535
8536 @end table
8537
8538 The filter converts the transfer characteristics, color space and color
8539 primaries to the specified user values. The output value, if not specified,
8540 is set to a default value based on the "all" property. If that property is
8541 also not specified, the filter will log an error. The output color range and
8542 format default to the same value as the input color range and format. The
8543 input transfer characteristics, color space, color primaries and color range
8544 should be set on the input data. If any of these are missing, the filter will
8545 log an error and no conversion will take place.
8546
8547 For example to convert the input to SMPTE-240M, use the command:
8548 @example
8549 colorspace=smpte240m
8550 @end example
8551
8552 @section convolution
8553
8554 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8555
8556 The filter accepts the following options:
8557
8558 @table @option
8559 @item 0m
8560 @item 1m
8561 @item 2m
8562 @item 3m
8563 Set matrix for each plane.
8564 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8565 and from 1 to 49 odd number of signed integers in @var{row} mode.
8566
8567 @item 0rdiv
8568 @item 1rdiv
8569 @item 2rdiv
8570 @item 3rdiv
8571 Set multiplier for calculated value for each plane.
8572 If unset or 0, it will be sum of all matrix elements.
8573
8574 @item 0bias
8575 @item 1bias
8576 @item 2bias
8577 @item 3bias
8578 Set bias for each plane. This value is added to the result of the multiplication.
8579 Useful for making the overall image brighter or darker. Default is 0.0.
8580
8581 @item 0mode
8582 @item 1mode
8583 @item 2mode
8584 @item 3mode
8585 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8586 Default is @var{square}.
8587 @end table
8588
8589 @subsection Commands
8590
8591 This filter supports the all above options as @ref{commands}.
8592
8593 @subsection Examples
8594
8595 @itemize
8596 @item
8597 Apply sharpen:
8598 @example
8599 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"
8600 @end example
8601
8602 @item
8603 Apply blur:
8604 @example
8605 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"
8606 @end example
8607
8608 @item
8609 Apply edge enhance:
8610 @example
8611 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"
8612 @end example
8613
8614 @item
8615 Apply edge detect:
8616 @example
8617 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"
8618 @end example
8619
8620 @item
8621 Apply laplacian edge detector which includes diagonals:
8622 @example
8623 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"
8624 @end example
8625
8626 @item
8627 Apply emboss:
8628 @example
8629 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"
8630 @end example
8631 @end itemize
8632
8633 @section convolve
8634
8635 Apply 2D convolution of video stream in frequency domain using second stream
8636 as impulse.
8637
8638 The filter accepts the following options:
8639
8640 @table @option
8641 @item planes
8642 Set which planes to process.
8643
8644 @item impulse
8645 Set which impulse video frames will be processed, can be @var{first}
8646 or @var{all}. Default is @var{all}.
8647 @end table
8648
8649 The @code{convolve} filter also supports the @ref{framesync} options.
8650
8651 @section copy
8652
8653 Copy the input video source unchanged to the output. This is mainly useful for
8654 testing purposes.
8655
8656 @anchor{coreimage}
8657 @section coreimage
8658 Video filtering on GPU using Apple's CoreImage API on OSX.
8659
8660 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8661 processed by video hardware. However, software-based OpenGL implementations
8662 exist which means there is no guarantee for hardware processing. It depends on
8663 the respective OSX.
8664
8665 There are many filters and image generators provided by Apple that come with a
8666 large variety of options. The filter has to be referenced by its name along
8667 with its options.
8668
8669 The coreimage filter accepts the following options:
8670 @table @option
8671 @item list_filters
8672 List all available filters and generators along with all their respective
8673 options as well as possible minimum and maximum values along with the default
8674 values.
8675 @example
8676 list_filters=true
8677 @end example
8678
8679 @item filter
8680 Specify all filters by their respective name and options.
8681 Use @var{list_filters} to determine all valid filter names and options.
8682 Numerical options are specified by a float value and are automatically clamped
8683 to their respective value range.  Vector and color options have to be specified
8684 by a list of space separated float values. Character escaping has to be done.
8685 A special option name @code{default} is available to use default options for a
8686 filter.
8687
8688 It is required to specify either @code{default} or at least one of the filter options.
8689 All omitted options are used with their default values.
8690 The syntax of the filter string is as follows:
8691 @example
8692 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8693 @end example
8694
8695 @item output_rect
8696 Specify a rectangle where the output of the filter chain is copied into the
8697 input image. It is given by a list of space separated float values:
8698 @example
8699 output_rect=x\ y\ width\ height
8700 @end example
8701 If not given, the output rectangle equals the dimensions of the input image.
8702 The output rectangle is automatically cropped at the borders of the input
8703 image. Negative values are valid for each component.
8704 @example
8705 output_rect=25\ 25\ 100\ 100
8706 @end example
8707 @end table
8708
8709 Several filters can be chained for successive processing without GPU-HOST
8710 transfers allowing for fast processing of complex filter chains.
8711 Currently, only filters with zero (generators) or exactly one (filters) input
8712 image and one output image are supported. Also, transition filters are not yet
8713 usable as intended.
8714
8715 Some filters generate output images with additional padding depending on the
8716 respective filter kernel. The padding is automatically removed to ensure the
8717 filter output has the same size as the input image.
8718
8719 For image generators, the size of the output image is determined by the
8720 previous output image of the filter chain or the input image of the whole
8721 filterchain, respectively. The generators do not use the pixel information of
8722 this image to generate their output. However, the generated output is
8723 blended onto this image, resulting in partial or complete coverage of the
8724 output image.
8725
8726 The @ref{coreimagesrc} video source can be used for generating input images
8727 which are directly fed into the filter chain. By using it, providing input
8728 images by another video source or an input video is not required.
8729
8730 @subsection Examples
8731
8732 @itemize
8733
8734 @item
8735 List all filters available:
8736 @example
8737 coreimage=list_filters=true
8738 @end example
8739
8740 @item
8741 Use the CIBoxBlur filter with default options to blur an image:
8742 @example
8743 coreimage=filter=CIBoxBlur@@default
8744 @end example
8745
8746 @item
8747 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8748 its center at 100x100 and a radius of 50 pixels:
8749 @example
8750 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8751 @end example
8752
8753 @item
8754 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8755 given as complete and escaped command-line for Apple's standard bash shell:
8756 @example
8757 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8758 @end example
8759 @end itemize
8760
8761 @section cover_rect
8762
8763 Cover a rectangular object
8764
8765 It accepts the following options:
8766
8767 @table @option
8768 @item cover
8769 Filepath of the optional cover image, needs to be in yuv420.
8770
8771 @item mode
8772 Set covering mode.
8773
8774 It accepts the following values:
8775 @table @samp
8776 @item cover
8777 cover it by the supplied image
8778 @item blur
8779 cover it by interpolating the surrounding pixels
8780 @end table
8781
8782 Default value is @var{blur}.
8783 @end table
8784
8785 @subsection Examples
8786
8787 @itemize
8788 @item
8789 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8790 @example
8791 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8792 @end example
8793 @end itemize
8794
8795 @section crop
8796
8797 Crop the input video to given dimensions.
8798
8799 It accepts the following parameters:
8800
8801 @table @option
8802 @item w, out_w
8803 The width of the output video. It defaults to @code{iw}.
8804 This expression is evaluated only once during the filter
8805 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8806
8807 @item h, out_h
8808 The height of the output video. It defaults to @code{ih}.
8809 This expression is evaluated only once during the filter
8810 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8811
8812 @item x
8813 The horizontal position, in the input video, of the left edge of the output
8814 video. It defaults to @code{(in_w-out_w)/2}.
8815 This expression is evaluated per-frame.
8816
8817 @item y
8818 The vertical position, in the input video, of the top edge of the output video.
8819 It defaults to @code{(in_h-out_h)/2}.
8820 This expression is evaluated per-frame.
8821
8822 @item keep_aspect
8823 If set to 1 will force the output display aspect ratio
8824 to be the same of the input, by changing the output sample aspect
8825 ratio. It defaults to 0.
8826
8827 @item exact
8828 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8829 width/height/x/y as specified and will not be rounded to nearest smaller value.
8830 It defaults to 0.
8831 @end table
8832
8833 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8834 expressions containing the following constants:
8835
8836 @table @option
8837 @item x
8838 @item y
8839 The computed values for @var{x} and @var{y}. They are evaluated for
8840 each new frame.
8841
8842 @item in_w
8843 @item in_h
8844 The input width and height.
8845
8846 @item iw
8847 @item ih
8848 These are the same as @var{in_w} and @var{in_h}.
8849
8850 @item out_w
8851 @item out_h
8852 The output (cropped) width and height.
8853
8854 @item ow
8855 @item oh
8856 These are the same as @var{out_w} and @var{out_h}.
8857
8858 @item a
8859 same as @var{iw} / @var{ih}
8860
8861 @item sar
8862 input sample aspect ratio
8863
8864 @item dar
8865 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8866
8867 @item hsub
8868 @item vsub
8869 horizontal and vertical chroma subsample values. For example for the
8870 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8871
8872 @item n
8873 The number of the input frame, starting from 0.
8874
8875 @item pos
8876 the position in the file of the input frame, NAN if unknown
8877
8878 @item t
8879 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8880
8881 @end table
8882
8883 The expression for @var{out_w} may depend on the value of @var{out_h},
8884 and the expression for @var{out_h} may depend on @var{out_w}, but they
8885 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8886 evaluated after @var{out_w} and @var{out_h}.
8887
8888 The @var{x} and @var{y} parameters specify the expressions for the
8889 position of the top-left corner of the output (non-cropped) area. They
8890 are evaluated for each frame. If the evaluated value is not valid, it
8891 is approximated to the nearest valid value.
8892
8893 The expression for @var{x} may depend on @var{y}, and the expression
8894 for @var{y} may depend on @var{x}.
8895
8896 @subsection Examples
8897
8898 @itemize
8899 @item
8900 Crop area with size 100x100 at position (12,34).
8901 @example
8902 crop=100:100:12:34
8903 @end example
8904
8905 Using named options, the example above becomes:
8906 @example
8907 crop=w=100:h=100:x=12:y=34
8908 @end example
8909
8910 @item
8911 Crop the central input area with size 100x100:
8912 @example
8913 crop=100:100
8914 @end example
8915
8916 @item
8917 Crop the central input area with size 2/3 of the input video:
8918 @example
8919 crop=2/3*in_w:2/3*in_h
8920 @end example
8921
8922 @item
8923 Crop the input video central square:
8924 @example
8925 crop=out_w=in_h
8926 crop=in_h
8927 @end example
8928
8929 @item
8930 Delimit the rectangle with the top-left corner placed at position
8931 100:100 and the right-bottom corner corresponding to the right-bottom
8932 corner of the input image.
8933 @example
8934 crop=in_w-100:in_h-100:100:100
8935 @end example
8936
8937 @item
8938 Crop 10 pixels from the left and right borders, and 20 pixels from
8939 the top and bottom borders
8940 @example
8941 crop=in_w-2*10:in_h-2*20
8942 @end example
8943
8944 @item
8945 Keep only the bottom right quarter of the input image:
8946 @example
8947 crop=in_w/2:in_h/2:in_w/2:in_h/2
8948 @end example
8949
8950 @item
8951 Crop height for getting Greek harmony:
8952 @example
8953 crop=in_w:1/PHI*in_w
8954 @end example
8955
8956 @item
8957 Apply trembling effect:
8958 @example
8959 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)
8960 @end example
8961
8962 @item
8963 Apply erratic camera effect depending on timestamp:
8964 @example
8965 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)"
8966 @end example
8967
8968 @item
8969 Set x depending on the value of y:
8970 @example
8971 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8972 @end example
8973 @end itemize
8974
8975 @subsection Commands
8976
8977 This filter supports the following commands:
8978 @table @option
8979 @item w, out_w
8980 @item h, out_h
8981 @item x
8982 @item y
8983 Set width/height of the output video and the horizontal/vertical position
8984 in the input video.
8985 The command accepts the same syntax of the corresponding option.
8986
8987 If the specified expression is not valid, it is kept at its current
8988 value.
8989 @end table
8990
8991 @section cropdetect
8992
8993 Auto-detect the crop size.
8994
8995 It calculates the necessary cropping parameters and prints the
8996 recommended parameters via the logging system. The detected dimensions
8997 correspond to the non-black area of the input video.
8998
8999 It accepts the following parameters:
9000
9001 @table @option
9002
9003 @item limit
9004 Set higher black value threshold, which can be optionally specified
9005 from nothing (0) to everything (255 for 8-bit based formats). An intensity
9006 value greater to the set value is considered non-black. It defaults to 24.
9007 You can also specify a value between 0.0 and 1.0 which will be scaled depending
9008 on the bitdepth of the pixel format.
9009
9010 @item round
9011 The value which the width/height should be divisible by. It defaults to
9012 16. The offset is automatically adjusted to center the video. Use 2 to
9013 get only even dimensions (needed for 4:2:2 video). 16 is best when
9014 encoding to most video codecs.
9015
9016 @item skip
9017 Set the number of initial frames for which evaluation is skipped.
9018 Default is 2. Range is 0 to INT_MAX.
9019
9020 @item reset_count, reset
9021 Set the counter that determines after how many frames cropdetect will
9022 reset the previously detected largest video area and start over to
9023 detect the current optimal crop area. Default value is 0.
9024
9025 This can be useful when channel logos distort the video area. 0
9026 indicates 'never reset', and returns the largest area encountered during
9027 playback.
9028 @end table
9029
9030 @anchor{cue}
9031 @section cue
9032
9033 Delay video filtering until a given wallclock timestamp. The filter first
9034 passes on @option{preroll} amount of frames, then it buffers at most
9035 @option{buffer} amount of frames and waits for the cue. After reaching the cue
9036 it forwards the buffered frames and also any subsequent frames coming in its
9037 input.
9038
9039 The filter can be used synchronize the output of multiple ffmpeg processes for
9040 realtime output devices like decklink. By putting the delay in the filtering
9041 chain and pre-buffering frames the process can pass on data to output almost
9042 immediately after the target wallclock timestamp is reached.
9043
9044 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
9045 some use cases.
9046
9047 @table @option
9048
9049 @item cue
9050 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
9051
9052 @item preroll
9053 The duration of content to pass on as preroll expressed in seconds. Default is 0.
9054
9055 @item buffer
9056 The maximum duration of content to buffer before waiting for the cue expressed
9057 in seconds. Default is 0.
9058
9059 @end table
9060
9061 @anchor{curves}
9062 @section curves
9063
9064 Apply color adjustments using curves.
9065
9066 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
9067 component (red, green and blue) has its values defined by @var{N} key points
9068 tied from each other using a smooth curve. The x-axis represents the pixel
9069 values from the input frame, and the y-axis the new pixel values to be set for
9070 the output frame.
9071
9072 By default, a component curve is defined by the two points @var{(0;0)} and
9073 @var{(1;1)}. This creates a straight line where each original pixel value is
9074 "adjusted" to its own value, which means no change to the image.
9075
9076 The filter allows you to redefine these two points and add some more. A new
9077 curve (using a natural cubic spline interpolation) will be define to pass
9078 smoothly through all these new coordinates. The new defined points needs to be
9079 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
9080 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
9081 the vector spaces, the values will be clipped accordingly.
9082
9083 The filter accepts the following options:
9084
9085 @table @option
9086 @item preset
9087 Select one of the available color presets. This option can be used in addition
9088 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
9089 options takes priority on the preset values.
9090 Available presets are:
9091 @table @samp
9092 @item none
9093 @item color_negative
9094 @item cross_process
9095 @item darker
9096 @item increase_contrast
9097 @item lighter
9098 @item linear_contrast
9099 @item medium_contrast
9100 @item negative
9101 @item strong_contrast
9102 @item vintage
9103 @end table
9104 Default is @code{none}.
9105 @item master, m
9106 Set the master key points. These points will define a second pass mapping. It
9107 is sometimes called a "luminance" or "value" mapping. It can be used with
9108 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
9109 post-processing LUT.
9110 @item red, r
9111 Set the key points for the red component.
9112 @item green, g
9113 Set the key points for the green component.
9114 @item blue, b
9115 Set the key points for the blue component.
9116 @item all
9117 Set the key points for all components (not including master).
9118 Can be used in addition to the other key points component
9119 options. In this case, the unset component(s) will fallback on this
9120 @option{all} setting.
9121 @item psfile
9122 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
9123 @item plot
9124 Save Gnuplot script of the curves in specified file.
9125 @end table
9126
9127 To avoid some filtergraph syntax conflicts, each key points list need to be
9128 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
9129
9130 @subsection Examples
9131
9132 @itemize
9133 @item
9134 Increase slightly the middle level of blue:
9135 @example
9136 curves=blue='0/0 0.5/0.58 1/1'
9137 @end example
9138
9139 @item
9140 Vintage effect:
9141 @example
9142 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'
9143 @end example
9144 Here we obtain the following coordinates for each components:
9145 @table @var
9146 @item red
9147 @code{(0;0.11) (0.42;0.51) (1;0.95)}
9148 @item green
9149 @code{(0;0) (0.50;0.48) (1;1)}
9150 @item blue
9151 @code{(0;0.22) (0.49;0.44) (1;0.80)}
9152 @end table
9153
9154 @item
9155 The previous example can also be achieved with the associated built-in preset:
9156 @example
9157 curves=preset=vintage
9158 @end example
9159
9160 @item
9161 Or simply:
9162 @example
9163 curves=vintage
9164 @end example
9165
9166 @item
9167 Use a Photoshop preset and redefine the points of the green component:
9168 @example
9169 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
9170 @end example
9171
9172 @item
9173 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
9174 and @command{gnuplot}:
9175 @example
9176 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
9177 gnuplot -p /tmp/curves.plt
9178 @end example
9179 @end itemize
9180
9181 @section datascope
9182
9183 Video data analysis filter.
9184
9185 This filter shows hexadecimal pixel values of part of video.
9186
9187 The filter accepts the following options:
9188
9189 @table @option
9190 @item size, s
9191 Set output video size.
9192
9193 @item x
9194 Set x offset from where to pick pixels.
9195
9196 @item y
9197 Set y offset from where to pick pixels.
9198
9199 @item mode
9200 Set scope mode, can be one of the following:
9201 @table @samp
9202 @item mono
9203 Draw hexadecimal pixel values with white color on black background.
9204
9205 @item color
9206 Draw hexadecimal pixel values with input video pixel color on black
9207 background.
9208
9209 @item color2
9210 Draw hexadecimal pixel values on color background picked from input video,
9211 the text color is picked in such way so its always visible.
9212 @end table
9213
9214 @item axis
9215 Draw rows and columns numbers on left and top of video.
9216
9217 @item opacity
9218 Set background opacity.
9219
9220 @item format
9221 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
9222
9223 @item components
9224 Set pixel components to display. By default all pixel components are displayed.
9225 @end table
9226
9227 @section dblur
9228 Apply Directional blur filter.
9229
9230 The filter accepts the following options:
9231
9232 @table @option
9233 @item angle
9234 Set angle of directional blur. Default is @code{45}.
9235
9236 @item radius
9237 Set radius of directional blur. Default is @code{5}.
9238
9239 @item planes
9240 Set which planes to filter. By default all planes are filtered.
9241 @end table
9242
9243 @subsection Commands
9244 This filter supports same @ref{commands} as options.
9245 The command accepts the same syntax of the corresponding option.
9246
9247 If the specified expression is not valid, it is kept at its current
9248 value.
9249
9250 @section dctdnoiz
9251
9252 Denoise frames using 2D DCT (frequency domain filtering).
9253
9254 This filter is not designed for real time.
9255
9256 The filter accepts the following options:
9257
9258 @table @option
9259 @item sigma, s
9260 Set the noise sigma constant.
9261
9262 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
9263 coefficient (absolute value) below this threshold with be dropped.
9264
9265 If you need a more advanced filtering, see @option{expr}.
9266
9267 Default is @code{0}.
9268
9269 @item overlap
9270 Set number overlapping pixels for each block. Since the filter can be slow, you
9271 may want to reduce this value, at the cost of a less effective filter and the
9272 risk of various artefacts.
9273
9274 If the overlapping value doesn't permit processing the whole input width or
9275 height, a warning will be displayed and according borders won't be denoised.
9276
9277 Default value is @var{blocksize}-1, which is the best possible setting.
9278
9279 @item expr, e
9280 Set the coefficient factor expression.
9281
9282 For each coefficient of a DCT block, this expression will be evaluated as a
9283 multiplier value for the coefficient.
9284
9285 If this is option is set, the @option{sigma} option will be ignored.
9286
9287 The absolute value of the coefficient can be accessed through the @var{c}
9288 variable.
9289
9290 @item n
9291 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
9292 @var{blocksize}, which is the width and height of the processed blocks.
9293
9294 The default value is @var{3} (8x8) and can be raised to @var{4} for a
9295 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
9296 on the speed processing. Also, a larger block size does not necessarily means a
9297 better de-noising.
9298 @end table
9299
9300 @subsection Examples
9301
9302 Apply a denoise with a @option{sigma} of @code{4.5}:
9303 @example
9304 dctdnoiz=4.5
9305 @end example
9306
9307 The same operation can be achieved using the expression system:
9308 @example
9309 dctdnoiz=e='gte(c, 4.5*3)'
9310 @end example
9311
9312 Violent denoise using a block size of @code{16x16}:
9313 @example
9314 dctdnoiz=15:n=4
9315 @end example
9316
9317 @section deband
9318
9319 Remove banding artifacts from input video.
9320 It works by replacing banded pixels with average value of referenced pixels.
9321
9322 The filter accepts the following options:
9323
9324 @table @option
9325 @item 1thr
9326 @item 2thr
9327 @item 3thr
9328 @item 4thr
9329 Set banding detection threshold for each plane. Default is 0.02.
9330 Valid range is 0.00003 to 0.5.
9331 If difference between current pixel and reference pixel is less than threshold,
9332 it will be considered as banded.
9333
9334 @item range, r
9335 Banding detection range in pixels. Default is 16. If positive, random number
9336 in range 0 to set value will be used. If negative, exact absolute value
9337 will be used.
9338 The range defines square of four pixels around current pixel.
9339
9340 @item direction, d
9341 Set direction in radians from which four pixel will be compared. If positive,
9342 random direction from 0 to set direction will be picked. If negative, exact of
9343 absolute value will be picked. For example direction 0, -PI or -2*PI radians
9344 will pick only pixels on same row and -PI/2 will pick only pixels on same
9345 column.
9346
9347 @item blur, b
9348 If enabled, current pixel is compared with average value of all four
9349 surrounding pixels. The default is enabled. If disabled current pixel is
9350 compared with all four surrounding pixels. The pixel is considered banded
9351 if only all four differences with surrounding pixels are less than threshold.
9352
9353 @item coupling, c
9354 If enabled, current pixel is changed if and only if all pixel components are banded,
9355 e.g. banding detection threshold is triggered for all color components.
9356 The default is disabled.
9357 @end table
9358
9359 @section deblock
9360
9361 Remove blocking artifacts from input video.
9362
9363 The filter accepts the following options:
9364
9365 @table @option
9366 @item filter
9367 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9368 This controls what kind of deblocking is applied.
9369
9370 @item block
9371 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9372
9373 @item alpha
9374 @item beta
9375 @item gamma
9376 @item delta
9377 Set blocking detection thresholds. Allowed range is 0 to 1.
9378 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9379 Using higher threshold gives more deblocking strength.
9380 Setting @var{alpha} controls threshold detection at exact edge of block.
9381 Remaining options controls threshold detection near the edge. Each one for
9382 below/above or left/right. Setting any of those to @var{0} disables
9383 deblocking.
9384
9385 @item planes
9386 Set planes to filter. Default is to filter all available planes.
9387 @end table
9388
9389 @subsection Examples
9390
9391 @itemize
9392 @item
9393 Deblock using weak filter and block size of 4 pixels.
9394 @example
9395 deblock=filter=weak:block=4
9396 @end example
9397
9398 @item
9399 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9400 deblocking more edges.
9401 @example
9402 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9403 @end example
9404
9405 @item
9406 Similar as above, but filter only first plane.
9407 @example
9408 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9409 @end example
9410
9411 @item
9412 Similar as above, but filter only second and third plane.
9413 @example
9414 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9415 @end example
9416 @end itemize
9417
9418 @anchor{decimate}
9419 @section decimate
9420
9421 Drop duplicated frames at regular intervals.
9422
9423 The filter accepts the following options:
9424
9425 @table @option
9426 @item cycle
9427 Set the number of frames from which one will be dropped. Setting this to
9428 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9429 Default is @code{5}.
9430
9431 @item dupthresh
9432 Set the threshold for duplicate detection. If the difference metric for a frame
9433 is less than or equal to this value, then it is declared as duplicate. Default
9434 is @code{1.1}
9435
9436 @item scthresh
9437 Set scene change threshold. Default is @code{15}.
9438
9439 @item blockx
9440 @item blocky
9441 Set the size of the x and y-axis blocks used during metric calculations.
9442 Larger blocks give better noise suppression, but also give worse detection of
9443 small movements. Must be a power of two. Default is @code{32}.
9444
9445 @item ppsrc
9446 Mark main input as a pre-processed input and activate clean source input
9447 stream. This allows the input to be pre-processed with various filters to help
9448 the metrics calculation while keeping the frame selection lossless. When set to
9449 @code{1}, the first stream is for the pre-processed input, and the second
9450 stream is the clean source from where the kept frames are chosen. Default is
9451 @code{0}.
9452
9453 @item chroma
9454 Set whether or not chroma is considered in the metric calculations. Default is
9455 @code{1}.
9456 @end table
9457
9458 @section deconvolve
9459
9460 Apply 2D deconvolution of video stream in frequency domain using second stream
9461 as impulse.
9462
9463 The filter accepts the following options:
9464
9465 @table @option
9466 @item planes
9467 Set which planes to process.
9468
9469 @item impulse
9470 Set which impulse video frames will be processed, can be @var{first}
9471 or @var{all}. Default is @var{all}.
9472
9473 @item noise
9474 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9475 and height are not same and not power of 2 or if stream prior to convolving
9476 had noise.
9477 @end table
9478
9479 The @code{deconvolve} filter also supports the @ref{framesync} options.
9480
9481 @section dedot
9482
9483 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9484
9485 It accepts the following options:
9486
9487 @table @option
9488 @item m
9489 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9490 @var{rainbows} for cross-color reduction.
9491
9492 @item lt
9493 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9494
9495 @item tl
9496 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9497
9498 @item tc
9499 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9500
9501 @item ct
9502 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9503 @end table
9504
9505 @section deflate
9506
9507 Apply deflate effect to the video.
9508
9509 This filter replaces the pixel by the local(3x3) average by taking into account
9510 only values lower than the pixel.
9511
9512 It accepts the following options:
9513
9514 @table @option
9515 @item threshold0
9516 @item threshold1
9517 @item threshold2
9518 @item threshold3
9519 Limit the maximum change for each plane, default is 65535.
9520 If 0, plane will remain unchanged.
9521 @end table
9522
9523 @subsection Commands
9524
9525 This filter supports the all above options as @ref{commands}.
9526
9527 @section deflicker
9528
9529 Remove temporal frame luminance variations.
9530
9531 It accepts the following options:
9532
9533 @table @option
9534 @item size, s
9535 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9536
9537 @item mode, m
9538 Set averaging mode to smooth temporal luminance variations.
9539
9540 Available values are:
9541 @table @samp
9542 @item am
9543 Arithmetic mean
9544
9545 @item gm
9546 Geometric mean
9547
9548 @item hm
9549 Harmonic mean
9550
9551 @item qm
9552 Quadratic mean
9553
9554 @item cm
9555 Cubic mean
9556
9557 @item pm
9558 Power mean
9559
9560 @item median
9561 Median
9562 @end table
9563
9564 @item bypass
9565 Do not actually modify frame. Useful when one only wants metadata.
9566 @end table
9567
9568 @section dejudder
9569
9570 Remove judder produced by partially interlaced telecined content.
9571
9572 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9573 source was partially telecined content then the output of @code{pullup,dejudder}
9574 will have a variable frame rate. May change the recorded frame rate of the
9575 container. Aside from that change, this filter will not affect constant frame
9576 rate video.
9577
9578 The option available in this filter is:
9579 @table @option
9580
9581 @item cycle
9582 Specify the length of the window over which the judder repeats.
9583
9584 Accepts any integer greater than 1. Useful values are:
9585 @table @samp
9586
9587 @item 4
9588 If the original was telecined from 24 to 30 fps (Film to NTSC).
9589
9590 @item 5
9591 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9592
9593 @item 20
9594 If a mixture of the two.
9595 @end table
9596
9597 The default is @samp{4}.
9598 @end table
9599
9600 @section delogo
9601
9602 Suppress a TV station logo by a simple interpolation of the surrounding
9603 pixels. Just set a rectangle covering the logo and watch it disappear
9604 (and sometimes something even uglier appear - your mileage may vary).
9605
9606 It accepts the following parameters:
9607 @table @option
9608
9609 @item x
9610 @item y
9611 Specify the top left corner coordinates of the logo. They must be
9612 specified.
9613
9614 @item w
9615 @item h
9616 Specify the width and height of the logo to clear. They must be
9617 specified.
9618
9619 @item band, t
9620 Specify the thickness of the fuzzy edge of the rectangle (added to
9621 @var{w} and @var{h}). The default value is 1. This option is
9622 deprecated, setting higher values should no longer be necessary and
9623 is not recommended.
9624
9625 @item show
9626 When set to 1, a green rectangle is drawn on the screen to simplify
9627 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9628 The default value is 0.
9629
9630 The rectangle is drawn on the outermost pixels which will be (partly)
9631 replaced with interpolated values. The values of the next pixels
9632 immediately outside this rectangle in each direction will be used to
9633 compute the interpolated pixel values inside the rectangle.
9634
9635 @end table
9636
9637 @subsection Examples
9638
9639 @itemize
9640 @item
9641 Set a rectangle covering the area with top left corner coordinates 0,0
9642 and size 100x77, and a band of size 10:
9643 @example
9644 delogo=x=0:y=0:w=100:h=77:band=10
9645 @end example
9646
9647 @end itemize
9648
9649 @anchor{derain}
9650 @section derain
9651
9652 Remove the rain in the input image/video by applying the derain methods based on
9653 convolutional neural networks. Supported models:
9654
9655 @itemize
9656 @item
9657 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9658 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9659 @end itemize
9660
9661 Training as well as model generation scripts are provided in
9662 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9663
9664 Native model files (.model) can be generated from TensorFlow model
9665 files (.pb) by using tools/python/convert.py
9666
9667 The filter accepts the following options:
9668
9669 @table @option
9670 @item filter_type
9671 Specify which filter to use. This option accepts the following values:
9672
9673 @table @samp
9674 @item derain
9675 Derain filter. To conduct derain filter, you need to use a derain model.
9676
9677 @item dehaze
9678 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9679 @end table
9680 Default value is @samp{derain}.
9681
9682 @item dnn_backend
9683 Specify which DNN backend to use for model loading and execution. This option accepts
9684 the following values:
9685
9686 @table @samp
9687 @item native
9688 Native implementation of DNN loading and execution.
9689
9690 @item tensorflow
9691 TensorFlow backend. To enable this backend you
9692 need to install the TensorFlow for C library (see
9693 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9694 @code{--enable-libtensorflow}
9695 @end table
9696 Default value is @samp{native}.
9697
9698 @item model
9699 Set path to model file specifying network architecture and its parameters.
9700 Note that different backends use different file formats. TensorFlow and native
9701 backend can load files for only its format.
9702 @end table
9703
9704 It can also be finished with @ref{dnn_processing} filter.
9705
9706 @section deshake
9707
9708 Attempt to fix small changes in horizontal and/or vertical shift. This
9709 filter helps remove camera shake from hand-holding a camera, bumping a
9710 tripod, moving on a vehicle, etc.
9711
9712 The filter accepts the following options:
9713
9714 @table @option
9715
9716 @item x
9717 @item y
9718 @item w
9719 @item h
9720 Specify a rectangular area where to limit the search for motion
9721 vectors.
9722 If desired the search for motion vectors can be limited to a
9723 rectangular area of the frame defined by its top left corner, width
9724 and height. These parameters have the same meaning as the drawbox
9725 filter which can be used to visualise the position of the bounding
9726 box.
9727
9728 This is useful when simultaneous movement of subjects within the frame
9729 might be confused for camera motion by the motion vector search.
9730
9731 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9732 then the full frame is used. This allows later options to be set
9733 without specifying the bounding box for the motion vector search.
9734
9735 Default - search the whole frame.
9736
9737 @item rx
9738 @item ry
9739 Specify the maximum extent of movement in x and y directions in the
9740 range 0-64 pixels. Default 16.
9741
9742 @item edge
9743 Specify how to generate pixels to fill blanks at the edge of the
9744 frame. Available values are:
9745 @table @samp
9746 @item blank, 0
9747 Fill zeroes at blank locations
9748 @item original, 1
9749 Original image at blank locations
9750 @item clamp, 2
9751 Extruded edge value at blank locations
9752 @item mirror, 3
9753 Mirrored edge at blank locations
9754 @end table
9755 Default value is @samp{mirror}.
9756
9757 @item blocksize
9758 Specify the blocksize to use for motion search. Range 4-128 pixels,
9759 default 8.
9760
9761 @item contrast
9762 Specify the contrast threshold for blocks. Only blocks with more than
9763 the specified contrast (difference between darkest and lightest
9764 pixels) will be considered. Range 1-255, default 125.
9765
9766 @item search
9767 Specify the search strategy. Available values are:
9768 @table @samp
9769 @item exhaustive, 0
9770 Set exhaustive search
9771 @item less, 1
9772 Set less exhaustive search.
9773 @end table
9774 Default value is @samp{exhaustive}.
9775
9776 @item filename
9777 If set then a detailed log of the motion search is written to the
9778 specified file.
9779
9780 @end table
9781
9782 @section despill
9783
9784 Remove unwanted contamination of foreground colors, caused by reflected color of
9785 greenscreen or bluescreen.
9786
9787 This filter accepts the following options:
9788
9789 @table @option
9790 @item type
9791 Set what type of despill to use.
9792
9793 @item mix
9794 Set how spillmap will be generated.
9795
9796 @item expand
9797 Set how much to get rid of still remaining spill.
9798
9799 @item red
9800 Controls amount of red in spill area.
9801
9802 @item green
9803 Controls amount of green in spill area.
9804 Should be -1 for greenscreen.
9805
9806 @item blue
9807 Controls amount of blue in spill area.
9808 Should be -1 for bluescreen.
9809
9810 @item brightness
9811 Controls brightness of spill area, preserving colors.
9812
9813 @item alpha
9814 Modify alpha from generated spillmap.
9815 @end table
9816
9817 @subsection Commands
9818
9819 This filter supports the all above options as @ref{commands}.
9820
9821 @section detelecine
9822
9823 Apply an exact inverse of the telecine operation. It requires a predefined
9824 pattern specified using the pattern option which must be the same as that passed
9825 to the telecine filter.
9826
9827 This filter accepts the following options:
9828
9829 @table @option
9830 @item first_field
9831 @table @samp
9832 @item top, t
9833 top field first
9834 @item bottom, b
9835 bottom field first
9836 The default value is @code{top}.
9837 @end table
9838
9839 @item pattern
9840 A string of numbers representing the pulldown pattern you wish to apply.
9841 The default value is @code{23}.
9842
9843 @item start_frame
9844 A number representing position of the first frame with respect to the telecine
9845 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9846 @end table
9847
9848 @section dilation
9849
9850 Apply dilation effect to the video.
9851
9852 This filter replaces the pixel by the local(3x3) maximum.
9853
9854 It accepts the following options:
9855
9856 @table @option
9857 @item threshold0
9858 @item threshold1
9859 @item threshold2
9860 @item threshold3
9861 Limit the maximum change for each plane, default is 65535.
9862 If 0, plane will remain unchanged.
9863
9864 @item coordinates
9865 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9866 pixels are used.
9867
9868 Flags to local 3x3 coordinates maps like this:
9869
9870     1 2 3
9871     4   5
9872     6 7 8
9873 @end table
9874
9875 @subsection Commands
9876
9877 This filter supports the all above options as @ref{commands}.
9878
9879 @section displace
9880
9881 Displace pixels as indicated by second and third input stream.
9882
9883 It takes three input streams and outputs one stream, the first input is the
9884 source, and second and third input are displacement maps.
9885
9886 The second input specifies how much to displace pixels along the
9887 x-axis, while the third input specifies how much to displace pixels
9888 along the y-axis.
9889 If one of displacement map streams terminates, last frame from that
9890 displacement map will be used.
9891
9892 Note that once generated, displacements maps can be reused over and over again.
9893
9894 A description of the accepted options follows.
9895
9896 @table @option
9897 @item edge
9898 Set displace behavior for pixels that are out of range.
9899
9900 Available values are:
9901 @table @samp
9902 @item blank
9903 Missing pixels are replaced by black pixels.
9904
9905 @item smear
9906 Adjacent pixels will spread out to replace missing pixels.
9907
9908 @item wrap
9909 Out of range pixels are wrapped so they point to pixels of other side.
9910
9911 @item mirror
9912 Out of range pixels will be replaced with mirrored pixels.
9913 @end table
9914 Default is @samp{smear}.
9915
9916 @end table
9917
9918 @subsection Examples
9919
9920 @itemize
9921 @item
9922 Add ripple effect to rgb input of video size hd720:
9923 @example
9924 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
9925 @end example
9926
9927 @item
9928 Add wave effect to rgb input of video size hd720:
9929 @example
9930 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
9931 @end example
9932 @end itemize
9933
9934 @anchor{dnn_processing}
9935 @section dnn_processing
9936
9937 Do image processing with deep neural networks. It works together with another filter
9938 which converts the pixel format of the Frame to what the dnn network requires.
9939
9940 The filter accepts the following options:
9941
9942 @table @option
9943 @item dnn_backend
9944 Specify which DNN backend to use for model loading and execution. This option accepts
9945 the following values:
9946
9947 @table @samp
9948 @item native
9949 Native implementation of DNN loading and execution.
9950
9951 @item tensorflow
9952 TensorFlow backend. To enable this backend you
9953 need to install the TensorFlow for C library (see
9954 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9955 @code{--enable-libtensorflow}
9956
9957 @item openvino
9958 OpenVINO backend. To enable this backend you
9959 need to build and install the OpenVINO for C library (see
9960 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
9961 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
9962 be needed if the header files and libraries are not installed into system path)
9963
9964 @end table
9965
9966 Default value is @samp{native}.
9967
9968 @item model
9969 Set path to model file specifying network architecture and its parameters.
9970 Note that different backends use different file formats. TensorFlow, OpenVINO and native
9971 backend can load files for only its format.
9972
9973 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9974
9975 @item input
9976 Set the input name of the dnn network.
9977
9978 @item output
9979 Set the output name of the dnn network.
9980
9981 @item async
9982 use DNN async execution if set (default: set),
9983 roll back to sync execution if the backend does not support async.
9984
9985 @end table
9986
9987 @subsection Examples
9988
9989 @itemize
9990 @item
9991 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
9992 @example
9993 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
9994 @end example
9995
9996 @item
9997 Halve the pixel value of the frame with format gray32f:
9998 @example
9999 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
10000 @end example
10001
10002 @item
10003 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
10004 @example
10005 ./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
10006 @end example
10007
10008 @item
10009 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
10010 @example
10011 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
10012 @end example
10013
10014 @end itemize
10015
10016 @section drawbox
10017
10018 Draw a colored box on the input image.
10019
10020 It accepts the following parameters:
10021
10022 @table @option
10023 @item x
10024 @item y
10025 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
10026
10027 @item width, w
10028 @item height, h
10029 The expressions which specify the width and height of the box; if 0 they are interpreted as
10030 the input width and height. It defaults to 0.
10031
10032 @item color, c
10033 Specify the color of the box to write. For the general syntax of this option,
10034 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10035 value @code{invert} is used, the box edge color is the same as the
10036 video with inverted luma.
10037
10038 @item thickness, t
10039 The expression which sets the thickness of the box edge.
10040 A value of @code{fill} will create a filled box. Default value is @code{3}.
10041
10042 See below for the list of accepted constants.
10043
10044 @item replace
10045 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
10046 will overwrite the video's color and alpha pixels.
10047 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
10048 @end table
10049
10050 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10051 following constants:
10052
10053 @table @option
10054 @item dar
10055 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10056
10057 @item hsub
10058 @item vsub
10059 horizontal and vertical chroma subsample values. For example for the
10060 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10061
10062 @item in_h, ih
10063 @item in_w, iw
10064 The input width and height.
10065
10066 @item sar
10067 The input sample aspect ratio.
10068
10069 @item x
10070 @item y
10071 The x and y offset coordinates where the box is drawn.
10072
10073 @item w
10074 @item h
10075 The width and height of the drawn box.
10076
10077 @item t
10078 The thickness of the drawn box.
10079
10080 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10081 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10082
10083 @end table
10084
10085 @subsection Examples
10086
10087 @itemize
10088 @item
10089 Draw a black box around the edge of the input image:
10090 @example
10091 drawbox
10092 @end example
10093
10094 @item
10095 Draw a box with color red and an opacity of 50%:
10096 @example
10097 drawbox=10:20:200:60:red@@0.5
10098 @end example
10099
10100 The previous example can be specified as:
10101 @example
10102 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
10103 @end example
10104
10105 @item
10106 Fill the box with pink color:
10107 @example
10108 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
10109 @end example
10110
10111 @item
10112 Draw a 2-pixel red 2.40:1 mask:
10113 @example
10114 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
10115 @end example
10116 @end itemize
10117
10118 @subsection Commands
10119 This filter supports same commands as options.
10120 The command accepts the same syntax of the corresponding option.
10121
10122 If the specified expression is not valid, it is kept at its current
10123 value.
10124
10125 @anchor{drawgraph}
10126 @section drawgraph
10127 Draw a graph using input video metadata.
10128
10129 It accepts the following parameters:
10130
10131 @table @option
10132 @item m1
10133 Set 1st frame metadata key from which metadata values will be used to draw a graph.
10134
10135 @item fg1
10136 Set 1st foreground color expression.
10137
10138 @item m2
10139 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
10140
10141 @item fg2
10142 Set 2nd foreground color expression.
10143
10144 @item m3
10145 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
10146
10147 @item fg3
10148 Set 3rd foreground color expression.
10149
10150 @item m4
10151 Set 4th frame metadata key from which metadata values will be used to draw a graph.
10152
10153 @item fg4
10154 Set 4th foreground color expression.
10155
10156 @item min
10157 Set minimal value of metadata value.
10158
10159 @item max
10160 Set maximal value of metadata value.
10161
10162 @item bg
10163 Set graph background color. Default is white.
10164
10165 @item mode
10166 Set graph mode.
10167
10168 Available values for mode is:
10169 @table @samp
10170 @item bar
10171 @item dot
10172 @item line
10173 @end table
10174
10175 Default is @code{line}.
10176
10177 @item slide
10178 Set slide mode.
10179
10180 Available values for slide is:
10181 @table @samp
10182 @item frame
10183 Draw new frame when right border is reached.
10184
10185 @item replace
10186 Replace old columns with new ones.
10187
10188 @item scroll
10189 Scroll from right to left.
10190
10191 @item rscroll
10192 Scroll from left to right.
10193
10194 @item picture
10195 Draw single picture.
10196 @end table
10197
10198 Default is @code{frame}.
10199
10200 @item size
10201 Set size of graph video. For the syntax of this option, check the
10202 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10203 The default value is @code{900x256}.
10204
10205 @item rate, r
10206 Set the output frame rate. Default value is @code{25}.
10207
10208 The foreground color expressions can use the following variables:
10209 @table @option
10210 @item MIN
10211 Minimal value of metadata value.
10212
10213 @item MAX
10214 Maximal value of metadata value.
10215
10216 @item VAL
10217 Current metadata key value.
10218 @end table
10219
10220 The color is defined as 0xAABBGGRR.
10221 @end table
10222
10223 Example using metadata from @ref{signalstats} filter:
10224 @example
10225 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
10226 @end example
10227
10228 Example using metadata from @ref{ebur128} filter:
10229 @example
10230 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
10231 @end example
10232
10233 @section drawgrid
10234
10235 Draw a grid on the input image.
10236
10237 It accepts the following parameters:
10238
10239 @table @option
10240 @item x
10241 @item y
10242 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
10243
10244 @item width, w
10245 @item height, h
10246 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
10247 input width and height, respectively, minus @code{thickness}, so image gets
10248 framed. Default to 0.
10249
10250 @item color, c
10251 Specify the color of the grid. For the general syntax of this option,
10252 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10253 value @code{invert} is used, the grid color is the same as the
10254 video with inverted luma.
10255
10256 @item thickness, t
10257 The expression which sets the thickness of the grid line. Default value is @code{1}.
10258
10259 See below for the list of accepted constants.
10260
10261 @item replace
10262 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
10263 will overwrite the video's color and alpha pixels.
10264 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
10265 @end table
10266
10267 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10268 following constants:
10269
10270 @table @option
10271 @item dar
10272 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10273
10274 @item hsub
10275 @item vsub
10276 horizontal and vertical chroma subsample values. For example for the
10277 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10278
10279 @item in_h, ih
10280 @item in_w, iw
10281 The input grid cell width and height.
10282
10283 @item sar
10284 The input sample aspect ratio.
10285
10286 @item x
10287 @item y
10288 The x and y coordinates of some point of grid intersection (meant to configure offset).
10289
10290 @item w
10291 @item h
10292 The width and height of the drawn cell.
10293
10294 @item t
10295 The thickness of the drawn cell.
10296
10297 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10298 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10299
10300 @end table
10301
10302 @subsection Examples
10303
10304 @itemize
10305 @item
10306 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
10307 @example
10308 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
10309 @end example
10310
10311 @item
10312 Draw a white 3x3 grid with an opacity of 50%:
10313 @example
10314 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
10315 @end example
10316 @end itemize
10317
10318 @subsection Commands
10319 This filter supports same commands as options.
10320 The command accepts the same syntax of the corresponding option.
10321
10322 If the specified expression is not valid, it is kept at its current
10323 value.
10324
10325 @anchor{drawtext}
10326 @section drawtext
10327
10328 Draw a text string or text from a specified file on top of a video, using the
10329 libfreetype library.
10330
10331 To enable compilation of this filter, you need to configure FFmpeg with
10332 @code{--enable-libfreetype}.
10333 To enable default font fallback and the @var{font} option you need to
10334 configure FFmpeg with @code{--enable-libfontconfig}.
10335 To enable the @var{text_shaping} option, you need to configure FFmpeg with
10336 @code{--enable-libfribidi}.
10337
10338 @subsection Syntax
10339
10340 It accepts the following parameters:
10341
10342 @table @option
10343
10344 @item box
10345 Used to draw a box around text using the background color.
10346 The value must be either 1 (enable) or 0 (disable).
10347 The default value of @var{box} is 0.
10348
10349 @item boxborderw
10350 Set the width of the border to be drawn around the box using @var{boxcolor}.
10351 The default value of @var{boxborderw} is 0.
10352
10353 @item boxcolor
10354 The color to be used for drawing box around text. For the syntax of this
10355 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10356
10357 The default value of @var{boxcolor} is "white".
10358
10359 @item line_spacing
10360 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10361 The default value of @var{line_spacing} is 0.
10362
10363 @item borderw
10364 Set the width of the border to be drawn around the text using @var{bordercolor}.
10365 The default value of @var{borderw} is 0.
10366
10367 @item bordercolor
10368 Set the color to be used for drawing border around text. For the syntax of this
10369 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10370
10371 The default value of @var{bordercolor} is "black".
10372
10373 @item expansion
10374 Select how the @var{text} is expanded. Can be either @code{none},
10375 @code{strftime} (deprecated) or
10376 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10377 below for details.
10378
10379 @item basetime
10380 Set a start time for the count. Value is in microseconds. Only applied
10381 in the deprecated strftime expansion mode. To emulate in normal expansion
10382 mode use the @code{pts} function, supplying the start time (in seconds)
10383 as the second argument.
10384
10385 @item fix_bounds
10386 If true, check and fix text coords to avoid clipping.
10387
10388 @item fontcolor
10389 The color to be used for drawing fonts. For the syntax of this option, check
10390 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10391
10392 The default value of @var{fontcolor} is "black".
10393
10394 @item fontcolor_expr
10395 String which is expanded the same way as @var{text} to obtain dynamic
10396 @var{fontcolor} value. By default this option has empty value and is not
10397 processed. When this option is set, it overrides @var{fontcolor} option.
10398
10399 @item font
10400 The font family to be used for drawing text. By default Sans.
10401
10402 @item fontfile
10403 The font file to be used for drawing text. The path must be included.
10404 This parameter is mandatory if the fontconfig support is disabled.
10405
10406 @item alpha
10407 Draw the text applying alpha blending. The value can
10408 be a number between 0.0 and 1.0.
10409 The expression accepts the same variables @var{x, y} as well.
10410 The default value is 1.
10411 Please see @var{fontcolor_expr}.
10412
10413 @item fontsize
10414 The font size to be used for drawing text.
10415 The default value of @var{fontsize} is 16.
10416
10417 @item text_shaping
10418 If set to 1, attempt to shape the text (for example, reverse the order of
10419 right-to-left text and join Arabic characters) before drawing it.
10420 Otherwise, just draw the text exactly as given.
10421 By default 1 (if supported).
10422
10423 @item ft_load_flags
10424 The flags to be used for loading the fonts.
10425
10426 The flags map the corresponding flags supported by libfreetype, and are
10427 a combination of the following values:
10428 @table @var
10429 @item default
10430 @item no_scale
10431 @item no_hinting
10432 @item render
10433 @item no_bitmap
10434 @item vertical_layout
10435 @item force_autohint
10436 @item crop_bitmap
10437 @item pedantic
10438 @item ignore_global_advance_width
10439 @item no_recurse
10440 @item ignore_transform
10441 @item monochrome
10442 @item linear_design
10443 @item no_autohint
10444 @end table
10445
10446 Default value is "default".
10447
10448 For more information consult the documentation for the FT_LOAD_*
10449 libfreetype flags.
10450
10451 @item shadowcolor
10452 The color to be used for drawing a shadow behind the drawn text. For the
10453 syntax of this option, check the @ref{color syntax,,"Color" section in the
10454 ffmpeg-utils manual,ffmpeg-utils}.
10455
10456 The default value of @var{shadowcolor} is "black".
10457
10458 @item shadowx
10459 @item shadowy
10460 The x and y offsets for the text shadow position with respect to the
10461 position of the text. They can be either positive or negative
10462 values. The default value for both is "0".
10463
10464 @item start_number
10465 The starting frame number for the n/frame_num variable. The default value
10466 is "0".
10467
10468 @item tabsize
10469 The size in number of spaces to use for rendering the tab.
10470 Default value is 4.
10471
10472 @item timecode
10473 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10474 format. It can be used with or without text parameter. @var{timecode_rate}
10475 option must be specified.
10476
10477 @item timecode_rate, rate, r
10478 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10479 integer. Minimum value is "1".
10480 Drop-frame timecode is supported for frame rates 30 & 60.
10481
10482 @item tc24hmax
10483 If set to 1, the output of the timecode option will wrap around at 24 hours.
10484 Default is 0 (disabled).
10485
10486 @item text
10487 The text string to be drawn. The text must be a sequence of UTF-8
10488 encoded characters.
10489 This parameter is mandatory if no file is specified with the parameter
10490 @var{textfile}.
10491
10492 @item textfile
10493 A text file containing text to be drawn. The text must be a sequence
10494 of UTF-8 encoded characters.
10495
10496 This parameter is mandatory if no text string is specified with the
10497 parameter @var{text}.
10498
10499 If both @var{text} and @var{textfile} are specified, an error is thrown.
10500
10501 @item reload
10502 If set to 1, the @var{textfile} will be reloaded before each frame.
10503 Be sure to update it atomically, or it may be read partially, or even fail.
10504
10505 @item x
10506 @item y
10507 The expressions which specify the offsets where text will be drawn
10508 within the video frame. They are relative to the top/left border of the
10509 output image.
10510
10511 The default value of @var{x} and @var{y} is "0".
10512
10513 See below for the list of accepted constants and functions.
10514 @end table
10515
10516 The parameters for @var{x} and @var{y} are expressions containing the
10517 following constants and functions:
10518
10519 @table @option
10520 @item dar
10521 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10522
10523 @item hsub
10524 @item vsub
10525 horizontal and vertical chroma subsample values. For example for the
10526 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10527
10528 @item line_h, lh
10529 the height of each text line
10530
10531 @item main_h, h, H
10532 the input height
10533
10534 @item main_w, w, W
10535 the input width
10536
10537 @item max_glyph_a, ascent
10538 the maximum distance from the baseline to the highest/upper grid
10539 coordinate used to place a glyph outline point, for all the rendered
10540 glyphs.
10541 It is a positive value, due to the grid's orientation with the Y axis
10542 upwards.
10543
10544 @item max_glyph_d, descent
10545 the maximum distance from the baseline to the lowest grid coordinate
10546 used to place a glyph outline point, for all the rendered glyphs.
10547 This is a negative value, due to the grid's orientation, with the Y axis
10548 upwards.
10549
10550 @item max_glyph_h
10551 maximum glyph height, that is the maximum height for all the glyphs
10552 contained in the rendered text, it is equivalent to @var{ascent} -
10553 @var{descent}.
10554
10555 @item max_glyph_w
10556 maximum glyph width, that is the maximum width for all the glyphs
10557 contained in the rendered text
10558
10559 @item n
10560 the number of input frame, starting from 0
10561
10562 @item rand(min, max)
10563 return a random number included between @var{min} and @var{max}
10564
10565 @item sar
10566 The input sample aspect ratio.
10567
10568 @item t
10569 timestamp expressed in seconds, NAN if the input timestamp is unknown
10570
10571 @item text_h, th
10572 the height of the rendered text
10573
10574 @item text_w, tw
10575 the width of the rendered text
10576
10577 @item x
10578 @item y
10579 the x and y offset coordinates where the text is drawn.
10580
10581 These parameters allow the @var{x} and @var{y} expressions to refer
10582 to each other, so you can for example specify @code{y=x/dar}.
10583
10584 @item pict_type
10585 A one character description of the current frame's picture type.
10586
10587 @item pkt_pos
10588 The current packet's position in the input file or stream
10589 (in bytes, from the start of the input). A value of -1 indicates
10590 this info is not available.
10591
10592 @item pkt_duration
10593 The current packet's duration, in seconds.
10594
10595 @item pkt_size
10596 The current packet's size (in bytes).
10597 @end table
10598
10599 @anchor{drawtext_expansion}
10600 @subsection Text expansion
10601
10602 If @option{expansion} is set to @code{strftime},
10603 the filter recognizes strftime() sequences in the provided text and
10604 expands them accordingly. Check the documentation of strftime(). This
10605 feature is deprecated.
10606
10607 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10608
10609 If @option{expansion} is set to @code{normal} (which is the default),
10610 the following expansion mechanism is used.
10611
10612 The backslash character @samp{\}, followed by any character, always expands to
10613 the second character.
10614
10615 Sequences of the form @code{%@{...@}} are expanded. The text between the
10616 braces is a function name, possibly followed by arguments separated by ':'.
10617 If the arguments contain special characters or delimiters (':' or '@}'),
10618 they should be escaped.
10619
10620 Note that they probably must also be escaped as the value for the
10621 @option{text} option in the filter argument string and as the filter
10622 argument in the filtergraph description, and possibly also for the shell,
10623 that makes up to four levels of escaping; using a text file avoids these
10624 problems.
10625
10626 The following functions are available:
10627
10628 @table @command
10629
10630 @item expr, e
10631 The expression evaluation result.
10632
10633 It must take one argument specifying the expression to be evaluated,
10634 which accepts the same constants and functions as the @var{x} and
10635 @var{y} values. Note that not all constants should be used, for
10636 example the text size is not known when evaluating the expression, so
10637 the constants @var{text_w} and @var{text_h} will have an undefined
10638 value.
10639
10640 @item expr_int_format, eif
10641 Evaluate the expression's value and output as formatted integer.
10642
10643 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10644 The second argument specifies the output format. Allowed values are @samp{x},
10645 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10646 @code{printf} function.
10647 The third parameter is optional and sets the number of positions taken by the output.
10648 It can be used to add padding with zeros from the left.
10649
10650 @item gmtime
10651 The time at which the filter is running, expressed in UTC.
10652 It can accept an argument: a strftime() format string.
10653
10654 @item localtime
10655 The time at which the filter is running, expressed in the local time zone.
10656 It can accept an argument: a strftime() format string.
10657
10658 @item metadata
10659 Frame metadata. Takes one or two arguments.
10660
10661 The first argument is mandatory and specifies the metadata key.
10662
10663 The second argument is optional and specifies a default value, used when the
10664 metadata key is not found or empty.
10665
10666 Available metadata can be identified by inspecting entries
10667 starting with TAG included within each frame section
10668 printed by running @code{ffprobe -show_frames}.
10669
10670 String metadata generated in filters leading to
10671 the drawtext filter are also available.
10672
10673 @item n, frame_num
10674 The frame number, starting from 0.
10675
10676 @item pict_type
10677 A one character description of the current picture type.
10678
10679 @item pts
10680 The timestamp of the current frame.
10681 It can take up to three arguments.
10682
10683 The first argument is the format of the timestamp; it defaults to @code{flt}
10684 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10685 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10686 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10687 @code{localtime} stands for the timestamp of the frame formatted as
10688 local time zone time.
10689
10690 The second argument is an offset added to the timestamp.
10691
10692 If the format is set to @code{hms}, a third argument @code{24HH} may be
10693 supplied to present the hour part of the formatted timestamp in 24h format
10694 (00-23).
10695
10696 If the format is set to @code{localtime} or @code{gmtime},
10697 a third argument may be supplied: a strftime() format string.
10698 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10699 @end table
10700
10701 @subsection Commands
10702
10703 This filter supports altering parameters via commands:
10704 @table @option
10705 @item reinit
10706 Alter existing filter parameters.
10707
10708 Syntax for the argument is the same as for filter invocation, e.g.
10709
10710 @example
10711 fontsize=56:fontcolor=green:text='Hello World'
10712 @end example
10713
10714 Full filter invocation with sendcmd would look like this:
10715
10716 @example
10717 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10718 @end example
10719 @end table
10720
10721 If the entire argument can't be parsed or applied as valid values then the filter will
10722 continue with its existing parameters.
10723
10724 @subsection Examples
10725
10726 @itemize
10727 @item
10728 Draw "Test Text" with font FreeSerif, using the default values for the
10729 optional parameters.
10730
10731 @example
10732 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10733 @end example
10734
10735 @item
10736 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10737 and y=50 (counting from the top-left corner of the screen), text is
10738 yellow with a red box around it. Both the text and the box have an
10739 opacity of 20%.
10740
10741 @example
10742 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10743           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10744 @end example
10745
10746 Note that the double quotes are not necessary if spaces are not used
10747 within the parameter list.
10748
10749 @item
10750 Show the text at the center of the video frame:
10751 @example
10752 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10753 @end example
10754
10755 @item
10756 Show the text at a random position, switching to a new position every 30 seconds:
10757 @example
10758 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)"
10759 @end example
10760
10761 @item
10762 Show a text line sliding from right to left in the last row of the video
10763 frame. The file @file{LONG_LINE} is assumed to contain a single line
10764 with no newlines.
10765 @example
10766 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10767 @end example
10768
10769 @item
10770 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10771 @example
10772 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10773 @end example
10774
10775 @item
10776 Draw a single green letter "g", at the center of the input video.
10777 The glyph baseline is placed at half screen height.
10778 @example
10779 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10780 @end example
10781
10782 @item
10783 Show text for 1 second every 3 seconds:
10784 @example
10785 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10786 @end example
10787
10788 @item
10789 Use fontconfig to set the font. Note that the colons need to be escaped.
10790 @example
10791 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10792 @end example
10793
10794 @item
10795 Draw "Test Text" with font size dependent on height of the video.
10796 @example
10797 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
10798 @end example
10799
10800 @item
10801 Print the date of a real-time encoding (see strftime(3)):
10802 @example
10803 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10804 @end example
10805
10806 @item
10807 Show text fading in and out (appearing/disappearing):
10808 @example
10809 #!/bin/sh
10810 DS=1.0 # display start
10811 DE=10.0 # display end
10812 FID=1.5 # fade in duration
10813 FOD=5 # fade out duration
10814 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 @}"
10815 @end example
10816
10817 @item
10818 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10819 and the @option{fontsize} value are included in the @option{y} offset.
10820 @example
10821 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10822 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10823 @end example
10824
10825 @item
10826 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10827 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10828 must have option @option{-export_path_metadata 1} for the special metadata fields
10829 to be available for filters.
10830 @example
10831 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10832 @end example
10833
10834 @end itemize
10835
10836 For more information about libfreetype, check:
10837 @url{http://www.freetype.org/}.
10838
10839 For more information about fontconfig, check:
10840 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10841
10842 For more information about libfribidi, check:
10843 @url{http://fribidi.org/}.
10844
10845 @section edgedetect
10846
10847 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10848
10849 The filter accepts the following options:
10850
10851 @table @option
10852 @item low
10853 @item high
10854 Set low and high threshold values used by the Canny thresholding
10855 algorithm.
10856
10857 The high threshold selects the "strong" edge pixels, which are then
10858 connected through 8-connectivity with the "weak" edge pixels selected
10859 by the low threshold.
10860
10861 @var{low} and @var{high} threshold values must be chosen in the range
10862 [0,1], and @var{low} should be lesser or equal to @var{high}.
10863
10864 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10865 is @code{50/255}.
10866
10867 @item mode
10868 Define the drawing mode.
10869
10870 @table @samp
10871 @item wires
10872 Draw white/gray wires on black background.
10873
10874 @item colormix
10875 Mix the colors to create a paint/cartoon effect.
10876
10877 @item canny
10878 Apply Canny edge detector on all selected planes.
10879 @end table
10880 Default value is @var{wires}.
10881
10882 @item planes
10883 Select planes for filtering. By default all available planes are filtered.
10884 @end table
10885
10886 @subsection Examples
10887
10888 @itemize
10889 @item
10890 Standard edge detection with custom values for the hysteresis thresholding:
10891 @example
10892 edgedetect=low=0.1:high=0.4
10893 @end example
10894
10895 @item
10896 Painting effect without thresholding:
10897 @example
10898 edgedetect=mode=colormix:high=0
10899 @end example
10900 @end itemize
10901
10902 @section elbg
10903
10904 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10905
10906 For each input image, the filter will compute the optimal mapping from
10907 the input to the output given the codebook length, that is the number
10908 of distinct output colors.
10909
10910 This filter accepts the following options.
10911
10912 @table @option
10913 @item codebook_length, l
10914 Set codebook length. The value must be a positive integer, and
10915 represents the number of distinct output colors. Default value is 256.
10916
10917 @item nb_steps, n
10918 Set the maximum number of iterations to apply for computing the optimal
10919 mapping. The higher the value the better the result and the higher the
10920 computation time. Default value is 1.
10921
10922 @item seed, s
10923 Set a random seed, must be an integer included between 0 and
10924 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10925 will try to use a good random seed on a best effort basis.
10926
10927 @item pal8
10928 Set pal8 output pixel format. This option does not work with codebook
10929 length greater than 256.
10930 @end table
10931
10932 @section entropy
10933
10934 Measure graylevel entropy in histogram of color channels of video frames.
10935
10936 It accepts the following parameters:
10937
10938 @table @option
10939 @item mode
10940 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10941
10942 @var{diff} mode measures entropy of histogram delta values, absolute differences
10943 between neighbour histogram values.
10944 @end table
10945
10946 @section eq
10947 Set brightness, contrast, saturation and approximate gamma adjustment.
10948
10949 The filter accepts the following options:
10950
10951 @table @option
10952 @item contrast
10953 Set the contrast expression. The value must be a float value in range
10954 @code{-1000.0} to @code{1000.0}. The default value is "1".
10955
10956 @item brightness
10957 Set the brightness expression. The value must be a float value in
10958 range @code{-1.0} to @code{1.0}. The default value is "0".
10959
10960 @item saturation
10961 Set the saturation expression. The value must be a float in
10962 range @code{0.0} to @code{3.0}. The default value is "1".
10963
10964 @item gamma
10965 Set the gamma expression. The value must be a float in range
10966 @code{0.1} to @code{10.0}.  The default value is "1".
10967
10968 @item gamma_r
10969 Set the gamma expression for red. The value must be a float in
10970 range @code{0.1} to @code{10.0}. The default value is "1".
10971
10972 @item gamma_g
10973 Set the gamma expression for green. The value must be a float in range
10974 @code{0.1} to @code{10.0}. The default value is "1".
10975
10976 @item gamma_b
10977 Set the gamma expression for blue. The value must be a float in range
10978 @code{0.1} to @code{10.0}. The default value is "1".
10979
10980 @item gamma_weight
10981 Set the gamma weight expression. It can be used to reduce the effect
10982 of a high gamma value on bright image areas, e.g. keep them from
10983 getting overamplified and just plain white. The value must be a float
10984 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10985 gamma correction all the way down while @code{1.0} leaves it at its
10986 full strength. Default is "1".
10987
10988 @item eval
10989 Set when the expressions for brightness, contrast, saturation and
10990 gamma expressions are evaluated.
10991
10992 It accepts the following values:
10993 @table @samp
10994 @item init
10995 only evaluate expressions once during the filter initialization or
10996 when a command is processed
10997
10998 @item frame
10999 evaluate expressions for each incoming frame
11000 @end table
11001
11002 Default value is @samp{init}.
11003 @end table
11004
11005 The expressions accept the following parameters:
11006 @table @option
11007 @item n
11008 frame count of the input frame starting from 0
11009
11010 @item pos
11011 byte position of the corresponding packet in the input file, NAN if
11012 unspecified
11013
11014 @item r
11015 frame rate of the input video, NAN if the input frame rate is unknown
11016
11017 @item t
11018 timestamp expressed in seconds, NAN if the input timestamp is unknown
11019 @end table
11020
11021 @subsection Commands
11022 The filter supports the following commands:
11023
11024 @table @option
11025 @item contrast
11026 Set the contrast expression.
11027
11028 @item brightness
11029 Set the brightness expression.
11030
11031 @item saturation
11032 Set the saturation expression.
11033
11034 @item gamma
11035 Set the gamma expression.
11036
11037 @item gamma_r
11038 Set the gamma_r expression.
11039
11040 @item gamma_g
11041 Set gamma_g expression.
11042
11043 @item gamma_b
11044 Set gamma_b expression.
11045
11046 @item gamma_weight
11047 Set gamma_weight expression.
11048
11049 The command accepts the same syntax of the corresponding option.
11050
11051 If the specified expression is not valid, it is kept at its current
11052 value.
11053
11054 @end table
11055
11056 @section erosion
11057
11058 Apply erosion effect to the video.
11059
11060 This filter replaces the pixel by the local(3x3) minimum.
11061
11062 It accepts the following options:
11063
11064 @table @option
11065 @item threshold0
11066 @item threshold1
11067 @item threshold2
11068 @item threshold3
11069 Limit the maximum change for each plane, default is 65535.
11070 If 0, plane will remain unchanged.
11071
11072 @item coordinates
11073 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
11074 pixels are used.
11075
11076 Flags to local 3x3 coordinates maps like this:
11077
11078     1 2 3
11079     4   5
11080     6 7 8
11081 @end table
11082
11083 @subsection Commands
11084
11085 This filter supports the all above options as @ref{commands}.
11086
11087 @section estdif
11088
11089 Deinterlace the input video ("estdif" stands for "Edge Slope
11090 Tracing Deinterlacing Filter").
11091
11092 Spatial only filter that uses edge slope tracing algorithm
11093 to interpolate missing lines.
11094 It accepts the following parameters:
11095
11096 @table @option
11097 @item mode
11098 The interlacing mode to adopt. It accepts one of the following values:
11099
11100 @table @option
11101 @item frame
11102 Output one frame for each frame.
11103 @item field
11104 Output one frame for each field.
11105 @end table
11106
11107 The default value is @code{field}.
11108
11109 @item parity
11110 The picture field parity assumed for the input interlaced video. It accepts one
11111 of the following values:
11112
11113 @table @option
11114 @item tff
11115 Assume the top field is first.
11116 @item bff
11117 Assume the bottom field is first.
11118 @item auto
11119 Enable automatic detection of field parity.
11120 @end table
11121
11122 The default value is @code{auto}.
11123 If the interlacing is unknown or the decoder does not export this information,
11124 top field first will be assumed.
11125
11126 @item deint
11127 Specify which frames to deinterlace. Accepts one of the following
11128 values:
11129
11130 @table @option
11131 @item all
11132 Deinterlace all frames.
11133 @item interlaced
11134 Only deinterlace frames marked as interlaced.
11135 @end table
11136
11137 The default value is @code{all}.
11138
11139 @item rslope
11140 Specify the search radius for edge slope tracing. Default value is 1.
11141 Allowed range is from 1 to 15.
11142
11143 @item redge
11144 Specify the search radius for best edge matching. Default value is 2.
11145 Allowed range is from 0 to 15.
11146
11147 @item interp
11148 Specify the interpolation used. Default is 4-point interpolation. It accepts one
11149 of the following values:
11150
11151 @table @option
11152 @item 2p
11153 Two-point interpolation.
11154 @item 4p
11155 Four-point interpolation.
11156 @item 6p
11157 Six-point interpolation.
11158 @end table
11159 @end table
11160
11161 @subsection Commands
11162 This filter supports same @ref{commands} as options.
11163
11164 @section extractplanes
11165
11166 Extract color channel components from input video stream into
11167 separate grayscale video streams.
11168
11169 The filter accepts the following option:
11170
11171 @table @option
11172 @item planes
11173 Set plane(s) to extract.
11174
11175 Available values for planes are:
11176 @table @samp
11177 @item y
11178 @item u
11179 @item v
11180 @item a
11181 @item r
11182 @item g
11183 @item b
11184 @end table
11185
11186 Choosing planes not available in the input will result in an error.
11187 That means you cannot select @code{r}, @code{g}, @code{b} planes
11188 with @code{y}, @code{u}, @code{v} planes at same time.
11189 @end table
11190
11191 @subsection Examples
11192
11193 @itemize
11194 @item
11195 Extract luma, u and v color channel component from input video frame
11196 into 3 grayscale outputs:
11197 @example
11198 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
11199 @end example
11200 @end itemize
11201
11202 @section fade
11203
11204 Apply a fade-in/out effect to the input video.
11205
11206 It accepts the following parameters:
11207
11208 @table @option
11209 @item type, t
11210 The effect type can be either "in" for a fade-in, or "out" for a fade-out
11211 effect.
11212 Default is @code{in}.
11213
11214 @item start_frame, s
11215 Specify the number of the frame to start applying the fade
11216 effect at. Default is 0.
11217
11218 @item nb_frames, n
11219 The number of frames that the fade effect lasts. At the end of the
11220 fade-in effect, the output video will have the same intensity as the input video.
11221 At the end of the fade-out transition, the output video will be filled with the
11222 selected @option{color}.
11223 Default is 25.
11224
11225 @item alpha
11226 If set to 1, fade only alpha channel, if one exists on the input.
11227 Default value is 0.
11228
11229 @item start_time, st
11230 Specify the timestamp (in seconds) of the frame to start to apply the fade
11231 effect. If both start_frame and start_time are specified, the fade will start at
11232 whichever comes last.  Default is 0.
11233
11234 @item duration, d
11235 The number of seconds for which the fade effect has to last. At the end of the
11236 fade-in effect the output video will have the same intensity as the input video,
11237 at the end of the fade-out transition the output video will be filled with the
11238 selected @option{color}.
11239 If both duration and nb_frames are specified, duration is used. Default is 0
11240 (nb_frames is used by default).
11241
11242 @item color, c
11243 Specify the color of the fade. Default is "black".
11244 @end table
11245
11246 @subsection Examples
11247
11248 @itemize
11249 @item
11250 Fade in the first 30 frames of video:
11251 @example
11252 fade=in:0:30
11253 @end example
11254
11255 The command above is equivalent to:
11256 @example
11257 fade=t=in:s=0:n=30
11258 @end example
11259
11260 @item
11261 Fade out the last 45 frames of a 200-frame video:
11262 @example
11263 fade=out:155:45
11264 fade=type=out:start_frame=155:nb_frames=45
11265 @end example
11266
11267 @item
11268 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
11269 @example
11270 fade=in:0:25, fade=out:975:25
11271 @end example
11272
11273 @item
11274 Make the first 5 frames yellow, then fade in from frame 5-24:
11275 @example
11276 fade=in:5:20:color=yellow
11277 @end example
11278
11279 @item
11280 Fade in alpha over first 25 frames of video:
11281 @example
11282 fade=in:0:25:alpha=1
11283 @end example
11284
11285 @item
11286 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
11287 @example
11288 fade=t=in:st=5.5:d=0.5
11289 @end example
11290
11291 @end itemize
11292
11293 @section fftdnoiz
11294 Denoise frames using 3D FFT (frequency domain filtering).
11295
11296 The filter accepts the following options:
11297
11298 @table @option
11299 @item sigma
11300 Set the noise sigma constant. This sets denoising strength.
11301 Default value is 1. Allowed range is from 0 to 30.
11302 Using very high sigma with low overlap may give blocking artifacts.
11303
11304 @item amount
11305 Set amount of denoising. By default all detected noise is reduced.
11306 Default value is 1. Allowed range is from 0 to 1.
11307
11308 @item block
11309 Set size of block, Default is 4, can be 3, 4, 5 or 6.
11310 Actual size of block in pixels is 2 to power of @var{block}, so by default
11311 block size in pixels is 2^4 which is 16.
11312
11313 @item overlap
11314 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
11315
11316 @item prev
11317 Set number of previous frames to use for denoising. By default is set to 0.
11318
11319 @item next
11320 Set number of next frames to to use for denoising. By default is set to 0.
11321
11322 @item planes
11323 Set planes which will be filtered, by default are all available filtered
11324 except alpha.
11325 @end table
11326
11327 @section fftfilt
11328 Apply arbitrary expressions to samples in frequency domain
11329
11330 @table @option
11331 @item dc_Y
11332 Adjust the dc value (gain) of the luma plane of the image. The filter
11333 accepts an integer value in range @code{0} to @code{1000}. The default
11334 value is set to @code{0}.
11335
11336 @item dc_U
11337 Adjust the dc value (gain) of the 1st chroma plane of the image. The
11338 filter accepts an integer value in range @code{0} to @code{1000}. The
11339 default value is set to @code{0}.
11340
11341 @item dc_V
11342 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
11343 filter accepts an integer value in range @code{0} to @code{1000}. The
11344 default value is set to @code{0}.
11345
11346 @item weight_Y
11347 Set the frequency domain weight expression for the luma plane.
11348
11349 @item weight_U
11350 Set the frequency domain weight expression for the 1st chroma plane.
11351
11352 @item weight_V
11353 Set the frequency domain weight expression for the 2nd chroma plane.
11354
11355 @item eval
11356 Set when the expressions are evaluated.
11357
11358 It accepts the following values:
11359 @table @samp
11360 @item init
11361 Only evaluate expressions once during the filter initialization.
11362
11363 @item frame
11364 Evaluate expressions for each incoming frame.
11365 @end table
11366
11367 Default value is @samp{init}.
11368
11369 The filter accepts the following variables:
11370 @item X
11371 @item Y
11372 The coordinates of the current sample.
11373
11374 @item W
11375 @item H
11376 The width and height of the image.
11377
11378 @item N
11379 The number of input frame, starting from 0.
11380 @end table
11381
11382 @subsection Examples
11383
11384 @itemize
11385 @item
11386 High-pass:
11387 @example
11388 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
11389 @end example
11390
11391 @item
11392 Low-pass:
11393 @example
11394 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
11395 @end example
11396
11397 @item
11398 Sharpen:
11399 @example
11400 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
11401 @end example
11402
11403 @item
11404 Blur:
11405 @example
11406 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
11407 @end example
11408
11409 @end itemize
11410
11411 @section field
11412
11413 Extract a single field from an interlaced image using stride
11414 arithmetic to avoid wasting CPU time. The output frames are marked as
11415 non-interlaced.
11416
11417 The filter accepts the following options:
11418
11419 @table @option
11420 @item type
11421 Specify whether to extract the top (if the value is @code{0} or
11422 @code{top}) or the bottom field (if the value is @code{1} or
11423 @code{bottom}).
11424 @end table
11425
11426 @section fieldhint
11427
11428 Create new frames by copying the top and bottom fields from surrounding frames
11429 supplied as numbers by the hint file.
11430
11431 @table @option
11432 @item hint
11433 Set file containing hints: absolute/relative frame numbers.
11434
11435 There must be one line for each frame in a clip. Each line must contain two
11436 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11437 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11438 is current frame number for @code{absolute} mode or out of [-1, 1] range
11439 for @code{relative} mode. First number tells from which frame to pick up top
11440 field and second number tells from which frame to pick up bottom field.
11441
11442 If optionally followed by @code{+} output frame will be marked as interlaced,
11443 else if followed by @code{-} output frame will be marked as progressive, else
11444 it will be marked same as input frame.
11445 If optionally followed by @code{t} output frame will use only top field, or in
11446 case of @code{b} it will use only bottom field.
11447 If line starts with @code{#} or @code{;} that line is skipped.
11448
11449 @item mode
11450 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11451 @end table
11452
11453 Example of first several lines of @code{hint} file for @code{relative} mode:
11454 @example
11455 0,0 - # first frame
11456 1,0 - # second frame, use third's frame top field and second's frame bottom field
11457 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11458 1,0 -
11459 0,0 -
11460 0,0 -
11461 1,0 -
11462 1,0 -
11463 1,0 -
11464 0,0 -
11465 0,0 -
11466 1,0 -
11467 1,0 -
11468 1,0 -
11469 0,0 -
11470 @end example
11471
11472 @section fieldmatch
11473
11474 Field matching filter for inverse telecine. It is meant to reconstruct the
11475 progressive frames from a telecined stream. The filter does not drop duplicated
11476 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11477 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11478
11479 The separation of the field matching and the decimation is notably motivated by
11480 the possibility of inserting a de-interlacing filter fallback between the two.
11481 If the source has mixed telecined and real interlaced content,
11482 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11483 But these remaining combed frames will be marked as interlaced, and thus can be
11484 de-interlaced by a later filter such as @ref{yadif} before decimation.
11485
11486 In addition to the various configuration options, @code{fieldmatch} can take an
11487 optional second stream, activated through the @option{ppsrc} option. If
11488 enabled, the frames reconstruction will be based on the fields and frames from
11489 this second stream. This allows the first input to be pre-processed in order to
11490 help the various algorithms of the filter, while keeping the output lossless
11491 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11492 or brightness/contrast adjustments can help.
11493
11494 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11495 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11496 which @code{fieldmatch} is based on. While the semantic and usage are very
11497 close, some behaviour and options names can differ.
11498
11499 The @ref{decimate} filter currently only works for constant frame rate input.
11500 If your input has mixed telecined (30fps) and progressive content with a lower
11501 framerate like 24fps use the following filterchain to produce the necessary cfr
11502 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11503
11504 The filter accepts the following options:
11505
11506 @table @option
11507 @item order
11508 Specify the assumed field order of the input stream. Available values are:
11509
11510 @table @samp
11511 @item auto
11512 Auto detect parity (use FFmpeg's internal parity value).
11513 @item bff
11514 Assume bottom field first.
11515 @item tff
11516 Assume top field first.
11517 @end table
11518
11519 Note that it is sometimes recommended not to trust the parity announced by the
11520 stream.
11521
11522 Default value is @var{auto}.
11523
11524 @item mode
11525 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11526 sense that it won't risk creating jerkiness due to duplicate frames when
11527 possible, but if there are bad edits or blended fields it will end up
11528 outputting combed frames when a good match might actually exist. On the other
11529 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11530 but will almost always find a good frame if there is one. The other values are
11531 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11532 jerkiness and creating duplicate frames versus finding good matches in sections
11533 with bad edits, orphaned fields, blended fields, etc.
11534
11535 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11536
11537 Available values are:
11538
11539 @table @samp
11540 @item pc
11541 2-way matching (p/c)
11542 @item pc_n
11543 2-way matching, and trying 3rd match if still combed (p/c + n)
11544 @item pc_u
11545 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11546 @item pc_n_ub
11547 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11548 still combed (p/c + n + u/b)
11549 @item pcn
11550 3-way matching (p/c/n)
11551 @item pcn_ub
11552 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11553 detected as combed (p/c/n + u/b)
11554 @end table
11555
11556 The parenthesis at the end indicate the matches that would be used for that
11557 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11558 @var{top}).
11559
11560 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11561 the slowest.
11562
11563 Default value is @var{pc_n}.
11564
11565 @item ppsrc
11566 Mark the main input stream as a pre-processed input, and enable the secondary
11567 input stream as the clean source to pick the fields from. See the filter
11568 introduction for more details. It is similar to the @option{clip2} feature from
11569 VFM/TFM.
11570
11571 Default value is @code{0} (disabled).
11572
11573 @item field
11574 Set the field to match from. It is recommended to set this to the same value as
11575 @option{order} unless you experience matching failures with that setting. In
11576 certain circumstances changing the field that is used to match from can have a
11577 large impact on matching performance. Available values are:
11578
11579 @table @samp
11580 @item auto
11581 Automatic (same value as @option{order}).
11582 @item bottom
11583 Match from the bottom field.
11584 @item top
11585 Match from the top field.
11586 @end table
11587
11588 Default value is @var{auto}.
11589
11590 @item mchroma
11591 Set whether or not chroma is included during the match comparisons. In most
11592 cases it is recommended to leave this enabled. You should set this to @code{0}
11593 only if your clip has bad chroma problems such as heavy rainbowing or other
11594 artifacts. Setting this to @code{0} could also be used to speed things up at
11595 the cost of some accuracy.
11596
11597 Default value is @code{1}.
11598
11599 @item y0
11600 @item y1
11601 These define an exclusion band which excludes the lines between @option{y0} and
11602 @option{y1} from being included in the field matching decision. An exclusion
11603 band can be used to ignore subtitles, a logo, or other things that may
11604 interfere with the matching. @option{y0} sets the starting scan line and
11605 @option{y1} sets the ending line; all lines in between @option{y0} and
11606 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11607 @option{y0} and @option{y1} to the same value will disable the feature.
11608 @option{y0} and @option{y1} defaults to @code{0}.
11609
11610 @item scthresh
11611 Set the scene change detection threshold as a percentage of maximum change on
11612 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11613 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11614 @option{scthresh} is @code{[0.0, 100.0]}.
11615
11616 Default value is @code{12.0}.
11617
11618 @item combmatch
11619 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11620 account the combed scores of matches when deciding what match to use as the
11621 final match. Available values are:
11622
11623 @table @samp
11624 @item none
11625 No final matching based on combed scores.
11626 @item sc
11627 Combed scores are only used when a scene change is detected.
11628 @item full
11629 Use combed scores all the time.
11630 @end table
11631
11632 Default is @var{sc}.
11633
11634 @item combdbg
11635 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11636 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11637 Available values are:
11638
11639 @table @samp
11640 @item none
11641 No forced calculation.
11642 @item pcn
11643 Force p/c/n calculations.
11644 @item pcnub
11645 Force p/c/n/u/b calculations.
11646 @end table
11647
11648 Default value is @var{none}.
11649
11650 @item cthresh
11651 This is the area combing threshold used for combed frame detection. This
11652 essentially controls how "strong" or "visible" combing must be to be detected.
11653 Larger values mean combing must be more visible and smaller values mean combing
11654 can be less visible or strong and still be detected. Valid settings are from
11655 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11656 be detected as combed). This is basically a pixel difference value. A good
11657 range is @code{[8, 12]}.
11658
11659 Default value is @code{9}.
11660
11661 @item chroma
11662 Sets whether or not chroma is considered in the combed frame decision.  Only
11663 disable this if your source has chroma problems (rainbowing, etc.) that are
11664 causing problems for the combed frame detection with chroma enabled. Actually,
11665 using @option{chroma}=@var{0} is usually more reliable, except for the case
11666 where there is chroma only combing in the source.
11667
11668 Default value is @code{0}.
11669
11670 @item blockx
11671 @item blocky
11672 Respectively set the x-axis and y-axis size of the window used during combed
11673 frame detection. This has to do with the size of the area in which
11674 @option{combpel} pixels are required to be detected as combed for a frame to be
11675 declared combed. See the @option{combpel} parameter description for more info.
11676 Possible values are any number that is a power of 2 starting at 4 and going up
11677 to 512.
11678
11679 Default value is @code{16}.
11680
11681 @item combpel
11682 The number of combed pixels inside any of the @option{blocky} by
11683 @option{blockx} size blocks on the frame for the frame to be detected as
11684 combed. While @option{cthresh} controls how "visible" the combing must be, this
11685 setting controls "how much" combing there must be in any localized area (a
11686 window defined by the @option{blockx} and @option{blocky} settings) on the
11687 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11688 which point no frames will ever be detected as combed). This setting is known
11689 as @option{MI} in TFM/VFM vocabulary.
11690
11691 Default value is @code{80}.
11692 @end table
11693
11694 @anchor{p/c/n/u/b meaning}
11695 @subsection p/c/n/u/b meaning
11696
11697 @subsubsection p/c/n
11698
11699 We assume the following telecined stream:
11700
11701 @example
11702 Top fields:     1 2 2 3 4
11703 Bottom fields:  1 2 3 4 4
11704 @end example
11705
11706 The numbers correspond to the progressive frame the fields relate to. Here, the
11707 first two frames are progressive, the 3rd and 4th are combed, and so on.
11708
11709 When @code{fieldmatch} is configured to run a matching from bottom
11710 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11711
11712 @example
11713 Input stream:
11714                 T     1 2 2 3 4
11715                 B     1 2 3 4 4   <-- matching reference
11716
11717 Matches:              c c n n c
11718
11719 Output stream:
11720                 T     1 2 3 4 4
11721                 B     1 2 3 4 4
11722 @end example
11723
11724 As a result of the field matching, we can see that some frames get duplicated.
11725 To perform a complete inverse telecine, you need to rely on a decimation filter
11726 after this operation. See for instance the @ref{decimate} filter.
11727
11728 The same operation now matching from top fields (@option{field}=@var{top})
11729 looks like this:
11730
11731 @example
11732 Input stream:
11733                 T     1 2 2 3 4   <-- matching reference
11734                 B     1 2 3 4 4
11735
11736 Matches:              c c p p c
11737
11738 Output stream:
11739                 T     1 2 2 3 4
11740                 B     1 2 2 3 4
11741 @end example
11742
11743 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
11744 basically, they refer to the frame and field of the opposite parity:
11745
11746 @itemize
11747 @item @var{p} matches the field of the opposite parity in the previous frame
11748 @item @var{c} matches the field of the opposite parity in the current frame
11749 @item @var{n} matches the field of the opposite parity in the next frame
11750 @end itemize
11751
11752 @subsubsection u/b
11753
11754 The @var{u} and @var{b} matching are a bit special in the sense that they match
11755 from the opposite parity flag. In the following examples, we assume that we are
11756 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
11757 'x' is placed above and below each matched fields.
11758
11759 With bottom matching (@option{field}=@var{bottom}):
11760 @example
11761 Match:           c         p           n          b          u
11762
11763                  x       x               x        x          x
11764   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11765   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11766                  x         x           x        x              x
11767
11768 Output frames:
11769                  2          1          2          2          2
11770                  2          2          2          1          3
11771 @end example
11772
11773 With top matching (@option{field}=@var{top}):
11774 @example
11775 Match:           c         p           n          b          u
11776
11777                  x         x           x        x              x
11778   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11779   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11780                  x       x               x        x          x
11781
11782 Output frames:
11783                  2          2          2          1          2
11784                  2          1          3          2          2
11785 @end example
11786
11787 @subsection Examples
11788
11789 Simple IVTC of a top field first telecined stream:
11790 @example
11791 fieldmatch=order=tff:combmatch=none, decimate
11792 @end example
11793
11794 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
11795 @example
11796 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
11797 @end example
11798
11799 @section fieldorder
11800
11801 Transform the field order of the input video.
11802
11803 It accepts the following parameters:
11804
11805 @table @option
11806
11807 @item order
11808 The output field order. Valid values are @var{tff} for top field first or @var{bff}
11809 for bottom field first.
11810 @end table
11811
11812 The default value is @samp{tff}.
11813
11814 The transformation is done by shifting the picture content up or down
11815 by one line, and filling the remaining line with appropriate picture content.
11816 This method is consistent with most broadcast field order converters.
11817
11818 If the input video is not flagged as being interlaced, or it is already
11819 flagged as being of the required output field order, then this filter does
11820 not alter the incoming video.
11821
11822 It is very useful when converting to or from PAL DV material,
11823 which is bottom field first.
11824
11825 For example:
11826 @example
11827 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
11828 @end example
11829
11830 @section fifo, afifo
11831
11832 Buffer input images and send them when they are requested.
11833
11834 It is mainly useful when auto-inserted by the libavfilter
11835 framework.
11836
11837 It does not take parameters.
11838
11839 @section fillborders
11840
11841 Fill borders of the input video, without changing video stream dimensions.
11842 Sometimes video can have garbage at the four edges and you may not want to
11843 crop video input to keep size multiple of some number.
11844
11845 This filter accepts the following options:
11846
11847 @table @option
11848 @item left
11849 Number of pixels to fill from left border.
11850
11851 @item right
11852 Number of pixels to fill from right border.
11853
11854 @item top
11855 Number of pixels to fill from top border.
11856
11857 @item bottom
11858 Number of pixels to fill from bottom border.
11859
11860 @item mode
11861 Set fill mode.
11862
11863 It accepts the following values:
11864 @table @samp
11865 @item smear
11866 fill pixels using outermost pixels
11867
11868 @item mirror
11869 fill pixels using mirroring (half sample symmetric)
11870
11871 @item fixed
11872 fill pixels with constant value
11873
11874 @item reflect
11875 fill pixels using reflecting (whole sample symmetric)
11876
11877 @item wrap
11878 fill pixels using wrapping
11879
11880 @item fade
11881 fade pixels to constant value
11882 @end table
11883
11884 Default is @var{smear}.
11885
11886 @item color
11887 Set color for pixels in fixed or fade mode. Default is @var{black}.
11888 @end table
11889
11890 @subsection Commands
11891 This filter supports same @ref{commands} as options.
11892 The command accepts the same syntax of the corresponding option.
11893
11894 If the specified expression is not valid, it is kept at its current
11895 value.
11896
11897 @section find_rect
11898
11899 Find a rectangular object
11900
11901 It accepts the following options:
11902
11903 @table @option
11904 @item object
11905 Filepath of the object image, needs to be in gray8.
11906
11907 @item threshold
11908 Detection threshold, default is 0.5.
11909
11910 @item mipmaps
11911 Number of mipmaps, default is 3.
11912
11913 @item xmin, ymin, xmax, ymax
11914 Specifies the rectangle in which to search.
11915 @end table
11916
11917 @subsection Examples
11918
11919 @itemize
11920 @item
11921 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11922 @example
11923 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11924 @end example
11925 @end itemize
11926
11927 @section floodfill
11928
11929 Flood area with values of same pixel components with another values.
11930
11931 It accepts the following options:
11932 @table @option
11933 @item x
11934 Set pixel x coordinate.
11935
11936 @item y
11937 Set pixel y coordinate.
11938
11939 @item s0
11940 Set source #0 component value.
11941
11942 @item s1
11943 Set source #1 component value.
11944
11945 @item s2
11946 Set source #2 component value.
11947
11948 @item s3
11949 Set source #3 component value.
11950
11951 @item d0
11952 Set destination #0 component value.
11953
11954 @item d1
11955 Set destination #1 component value.
11956
11957 @item d2
11958 Set destination #2 component value.
11959
11960 @item d3
11961 Set destination #3 component value.
11962 @end table
11963
11964 @anchor{format}
11965 @section format
11966
11967 Convert the input video to one of the specified pixel formats.
11968 Libavfilter will try to pick one that is suitable as input to
11969 the next filter.
11970
11971 It accepts the following parameters:
11972 @table @option
11973
11974 @item pix_fmts
11975 A '|'-separated list of pixel format names, such as
11976 "pix_fmts=yuv420p|monow|rgb24".
11977
11978 @end table
11979
11980 @subsection Examples
11981
11982 @itemize
11983 @item
11984 Convert the input video to the @var{yuv420p} format
11985 @example
11986 format=pix_fmts=yuv420p
11987 @end example
11988
11989 Convert the input video to any of the formats in the list
11990 @example
11991 format=pix_fmts=yuv420p|yuv444p|yuv410p
11992 @end example
11993 @end itemize
11994
11995 @anchor{fps}
11996 @section fps
11997
11998 Convert the video to specified constant frame rate by duplicating or dropping
11999 frames as necessary.
12000
12001 It accepts the following parameters:
12002 @table @option
12003
12004 @item fps
12005 The desired output frame rate. The default is @code{25}.
12006
12007 @item start_time
12008 Assume the first PTS should be the given value, in seconds. This allows for
12009 padding/trimming at the start of stream. By default, no assumption is made
12010 about the first frame's expected PTS, so no padding or trimming is done.
12011 For example, this could be set to 0 to pad the beginning with duplicates of
12012 the first frame if a video stream starts after the audio stream or to trim any
12013 frames with a negative PTS.
12014
12015 @item round
12016 Timestamp (PTS) rounding method.
12017
12018 Possible values are:
12019 @table @option
12020 @item zero
12021 round towards 0
12022 @item inf
12023 round away from 0
12024 @item down
12025 round towards -infinity
12026 @item up
12027 round towards +infinity
12028 @item near
12029 round to nearest
12030 @end table
12031 The default is @code{near}.
12032
12033 @item eof_action
12034 Action performed when reading the last frame.
12035
12036 Possible values are:
12037 @table @option
12038 @item round
12039 Use same timestamp rounding method as used for other frames.
12040 @item pass
12041 Pass through last frame if input duration has not been reached yet.
12042 @end table
12043 The default is @code{round}.
12044
12045 @end table
12046
12047 Alternatively, the options can be specified as a flat string:
12048 @var{fps}[:@var{start_time}[:@var{round}]].
12049
12050 See also the @ref{setpts} filter.
12051
12052 @subsection Examples
12053
12054 @itemize
12055 @item
12056 A typical usage in order to set the fps to 25:
12057 @example
12058 fps=fps=25
12059 @end example
12060
12061 @item
12062 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
12063 @example
12064 fps=fps=film:round=near
12065 @end example
12066 @end itemize
12067
12068 @section framepack
12069
12070 Pack two different video streams into a stereoscopic video, setting proper
12071 metadata on supported codecs. The two views should have the same size and
12072 framerate and processing will stop when the shorter video ends. Please note
12073 that you may conveniently adjust view properties with the @ref{scale} and
12074 @ref{fps} filters.
12075
12076 It accepts the following parameters:
12077 @table @option
12078
12079 @item format
12080 The desired packing format. Supported values are:
12081
12082 @table @option
12083
12084 @item sbs
12085 The views are next to each other (default).
12086
12087 @item tab
12088 The views are on top of each other.
12089
12090 @item lines
12091 The views are packed by line.
12092
12093 @item columns
12094 The views are packed by column.
12095
12096 @item frameseq
12097 The views are temporally interleaved.
12098
12099 @end table
12100
12101 @end table
12102
12103 Some examples:
12104
12105 @example
12106 # Convert left and right views into a frame-sequential video
12107 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
12108
12109 # Convert views into a side-by-side video with the same output resolution as the input
12110 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
12111 @end example
12112
12113 @section framerate
12114
12115 Change the frame rate by interpolating new video output frames from the source
12116 frames.
12117
12118 This filter is not designed to function correctly with interlaced media. If
12119 you wish to change the frame rate of interlaced media then you are required
12120 to deinterlace before this filter and re-interlace after this filter.
12121
12122 A description of the accepted options follows.
12123
12124 @table @option
12125 @item fps
12126 Specify the output frames per second. This option can also be specified
12127 as a value alone. The default is @code{50}.
12128
12129 @item interp_start
12130 Specify the start of a range where the output frame will be created as a
12131 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12132 the default is @code{15}.
12133
12134 @item interp_end
12135 Specify the end of a range where the output frame will be created as a
12136 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12137 the default is @code{240}.
12138
12139 @item scene
12140 Specify the level at which a scene change is detected as a value between
12141 0 and 100 to indicate a new scene; a low value reflects a low
12142 probability for the current frame to introduce a new scene, while a higher
12143 value means the current frame is more likely to be one.
12144 The default is @code{8.2}.
12145
12146 @item flags
12147 Specify flags influencing the filter process.
12148
12149 Available value for @var{flags} is:
12150
12151 @table @option
12152 @item scene_change_detect, scd
12153 Enable scene change detection using the value of the option @var{scene}.
12154 This flag is enabled by default.
12155 @end table
12156 @end table
12157
12158 @section framestep
12159
12160 Select one frame every N-th frame.
12161
12162 This filter accepts the following option:
12163 @table @option
12164 @item step
12165 Select frame after every @code{step} frames.
12166 Allowed values are positive integers higher than 0. Default value is @code{1}.
12167 @end table
12168
12169 @section freezedetect
12170
12171 Detect frozen video.
12172
12173 This filter logs a message and sets frame metadata when it detects that the
12174 input video has no significant change in content during a specified duration.
12175 Video freeze detection calculates the mean average absolute difference of all
12176 the components of video frames and compares it to a noise floor.
12177
12178 The printed times and duration are expressed in seconds. The
12179 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
12180 whose timestamp equals or exceeds the detection duration and it contains the
12181 timestamp of the first frame of the freeze. The
12182 @code{lavfi.freezedetect.freeze_duration} and
12183 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
12184 after the freeze.
12185
12186 The filter accepts the following options:
12187
12188 @table @option
12189 @item noise, n
12190 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
12191 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
12192 0.001.
12193
12194 @item duration, d
12195 Set freeze duration until notification (default is 2 seconds).
12196 @end table
12197
12198 @section freezeframes
12199
12200 Freeze video frames.
12201
12202 This filter freezes video frames using frame from 2nd input.
12203
12204 The filter accepts the following options:
12205
12206 @table @option
12207 @item first
12208 Set number of first frame from which to start freeze.
12209
12210 @item last
12211 Set number of last frame from which to end freeze.
12212
12213 @item replace
12214 Set number of frame from 2nd input which will be used instead of replaced frames.
12215 @end table
12216
12217 @anchor{frei0r}
12218 @section frei0r
12219
12220 Apply a frei0r effect to the input video.
12221
12222 To enable the compilation of this filter, you need to install the frei0r
12223 header and configure FFmpeg with @code{--enable-frei0r}.
12224
12225 It accepts the following parameters:
12226
12227 @table @option
12228
12229 @item filter_name
12230 The name of the frei0r effect to load. If the environment variable
12231 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
12232 directories specified by the colon-separated list in @env{FREI0R_PATH}.
12233 Otherwise, the standard frei0r paths are searched, in this order:
12234 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
12235 @file{/usr/lib/frei0r-1/}.
12236
12237 @item filter_params
12238 A '|'-separated list of parameters to pass to the frei0r effect.
12239
12240 @end table
12241
12242 A frei0r effect parameter can be a boolean (its value is either
12243 "y" or "n"), a double, a color (specified as
12244 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
12245 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
12246 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
12247 a position (specified as @var{X}/@var{Y}, where
12248 @var{X} and @var{Y} are floating point numbers) and/or a string.
12249
12250 The number and types of parameters depend on the loaded effect. If an
12251 effect parameter is not specified, the default value is set.
12252
12253 @subsection Examples
12254
12255 @itemize
12256 @item
12257 Apply the distort0r effect, setting the first two double parameters:
12258 @example
12259 frei0r=filter_name=distort0r:filter_params=0.5|0.01
12260 @end example
12261
12262 @item
12263 Apply the colordistance effect, taking a color as the first parameter:
12264 @example
12265 frei0r=colordistance:0.2/0.3/0.4
12266 frei0r=colordistance:violet
12267 frei0r=colordistance:0x112233
12268 @end example
12269
12270 @item
12271 Apply the perspective effect, specifying the top left and top right image
12272 positions:
12273 @example
12274 frei0r=perspective:0.2/0.2|0.8/0.2
12275 @end example
12276 @end itemize
12277
12278 For more information, see
12279 @url{http://frei0r.dyne.org}
12280
12281 @subsection Commands
12282
12283 This filter supports the @option{filter_params} option as @ref{commands}.
12284
12285 @section fspp
12286
12287 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
12288
12289 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
12290 processing filter, one of them is performed once per block, not per pixel.
12291 This allows for much higher speed.
12292
12293 The filter accepts the following options:
12294
12295 @table @option
12296 @item quality
12297 Set quality. This option defines the number of levels for averaging. It accepts
12298 an integer in the range 4-5. Default value is @code{4}.
12299
12300 @item qp
12301 Force a constant quantization parameter. It accepts an integer in range 0-63.
12302 If not set, the filter will use the QP from the video stream (if available).
12303
12304 @item strength
12305 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
12306 more details but also more artifacts, while higher values make the image smoother
12307 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
12308
12309 @item use_bframe_qp
12310 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12311 option may cause flicker since the B-Frames have often larger QP. Default is
12312 @code{0} (not enabled).
12313
12314 @end table
12315
12316 @section gblur
12317
12318 Apply Gaussian blur filter.
12319
12320 The filter accepts the following options:
12321
12322 @table @option
12323 @item sigma
12324 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
12325
12326 @item steps
12327 Set number of steps for Gaussian approximation. Default is @code{1}.
12328
12329 @item planes
12330 Set which planes to filter. By default all planes are filtered.
12331
12332 @item sigmaV
12333 Set vertical sigma, if negative it will be same as @code{sigma}.
12334 Default is @code{-1}.
12335 @end table
12336
12337 @subsection Commands
12338 This filter supports same commands as options.
12339 The command accepts the same syntax of the corresponding option.
12340
12341 If the specified expression is not valid, it is kept at its current
12342 value.
12343
12344 @section geq
12345
12346 Apply generic equation to each pixel.
12347
12348 The filter accepts the following options:
12349
12350 @table @option
12351 @item lum_expr, lum
12352 Set the luminance expression.
12353 @item cb_expr, cb
12354 Set the chrominance blue expression.
12355 @item cr_expr, cr
12356 Set the chrominance red expression.
12357 @item alpha_expr, a
12358 Set the alpha expression.
12359 @item red_expr, r
12360 Set the red expression.
12361 @item green_expr, g
12362 Set the green expression.
12363 @item blue_expr, b
12364 Set the blue expression.
12365 @end table
12366
12367 The colorspace is selected according to the specified options. If one
12368 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
12369 options is specified, the filter will automatically select a YCbCr
12370 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
12371 @option{blue_expr} options is specified, it will select an RGB
12372 colorspace.
12373
12374 If one of the chrominance expression is not defined, it falls back on the other
12375 one. If no alpha expression is specified it will evaluate to opaque value.
12376 If none of chrominance expressions are specified, they will evaluate
12377 to the luminance expression.
12378
12379 The expressions can use the following variables and functions:
12380
12381 @table @option
12382 @item N
12383 The sequential number of the filtered frame, starting from @code{0}.
12384
12385 @item X
12386 @item Y
12387 The coordinates of the current sample.
12388
12389 @item W
12390 @item H
12391 The width and height of the image.
12392
12393 @item SW
12394 @item SH
12395 Width and height scale depending on the currently filtered plane. It is the
12396 ratio between the corresponding luma plane number of pixels and the current
12397 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
12398 @code{0.5,0.5} for chroma planes.
12399
12400 @item T
12401 Time of the current frame, expressed in seconds.
12402
12403 @item p(x, y)
12404 Return the value of the pixel at location (@var{x},@var{y}) of the current
12405 plane.
12406
12407 @item lum(x, y)
12408 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
12409 plane.
12410
12411 @item cb(x, y)
12412 Return the value of the pixel at location (@var{x},@var{y}) of the
12413 blue-difference chroma plane. Return 0 if there is no such plane.
12414
12415 @item cr(x, y)
12416 Return the value of the pixel at location (@var{x},@var{y}) of the
12417 red-difference chroma plane. Return 0 if there is no such plane.
12418
12419 @item r(x, y)
12420 @item g(x, y)
12421 @item b(x, y)
12422 Return the value of the pixel at location (@var{x},@var{y}) of the
12423 red/green/blue component. Return 0 if there is no such component.
12424
12425 @item alpha(x, y)
12426 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
12427 plane. Return 0 if there is no such plane.
12428
12429 @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)
12430 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
12431 sums of samples within a rectangle. See the functions without the sum postfix.
12432
12433 @item interpolation
12434 Set one of interpolation methods:
12435 @table @option
12436 @item nearest, n
12437 @item bilinear, b
12438 @end table
12439 Default is bilinear.
12440 @end table
12441
12442 For functions, if @var{x} and @var{y} are outside the area, the value will be
12443 automatically clipped to the closer edge.
12444
12445 Please note that this filter can use multiple threads in which case each slice
12446 will have its own expression state. If you want to use only a single expression
12447 state because your expressions depend on previous state then you should limit
12448 the number of filter threads to 1.
12449
12450 @subsection Examples
12451
12452 @itemize
12453 @item
12454 Flip the image horizontally:
12455 @example
12456 geq=p(W-X\,Y)
12457 @end example
12458
12459 @item
12460 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12461 wavelength of 100 pixels:
12462 @example
12463 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12464 @end example
12465
12466 @item
12467 Generate a fancy enigmatic moving light:
12468 @example
12469 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
12470 @end example
12471
12472 @item
12473 Generate a quick emboss effect:
12474 @example
12475 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12476 @end example
12477
12478 @item
12479 Modify RGB components depending on pixel position:
12480 @example
12481 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12482 @end example
12483
12484 @item
12485 Create a radial gradient that is the same size as the input (also see
12486 the @ref{vignette} filter):
12487 @example
12488 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12489 @end example
12490 @end itemize
12491
12492 @section gradfun
12493
12494 Fix the banding artifacts that are sometimes introduced into nearly flat
12495 regions by truncation to 8-bit color depth.
12496 Interpolate the gradients that should go where the bands are, and
12497 dither them.
12498
12499 It is designed for playback only.  Do not use it prior to
12500 lossy compression, because compression tends to lose the dither and
12501 bring back the bands.
12502
12503 It accepts the following parameters:
12504
12505 @table @option
12506
12507 @item strength
12508 The maximum amount by which the filter will change any one pixel. This is also
12509 the threshold for detecting nearly flat regions. Acceptable values range from
12510 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12511 valid range.
12512
12513 @item radius
12514 The neighborhood to fit the gradient to. A larger radius makes for smoother
12515 gradients, but also prevents the filter from modifying the pixels near detailed
12516 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12517 values will be clipped to the valid range.
12518
12519 @end table
12520
12521 Alternatively, the options can be specified as a flat string:
12522 @var{strength}[:@var{radius}]
12523
12524 @subsection Examples
12525
12526 @itemize
12527 @item
12528 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12529 @example
12530 gradfun=3.5:8
12531 @end example
12532
12533 @item
12534 Specify radius, omitting the strength (which will fall-back to the default
12535 value):
12536 @example
12537 gradfun=radius=8
12538 @end example
12539
12540 @end itemize
12541
12542 @anchor{graphmonitor}
12543 @section graphmonitor
12544 Show various filtergraph stats.
12545
12546 With this filter one can debug complete filtergraph.
12547 Especially issues with links filling with queued frames.
12548
12549 The filter accepts the following options:
12550
12551 @table @option
12552 @item size, s
12553 Set video output size. Default is @var{hd720}.
12554
12555 @item opacity, o
12556 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12557
12558 @item mode, m
12559 Set output mode, can be @var{fulll} or @var{compact}.
12560 In @var{compact} mode only filters with some queued frames have displayed stats.
12561
12562 @item flags, f
12563 Set flags which enable which stats are shown in video.
12564
12565 Available values for flags are:
12566 @table @samp
12567 @item queue
12568 Display number of queued frames in each link.
12569
12570 @item frame_count_in
12571 Display number of frames taken from filter.
12572
12573 @item frame_count_out
12574 Display number of frames given out from filter.
12575
12576 @item pts
12577 Display current filtered frame pts.
12578
12579 @item time
12580 Display current filtered frame time.
12581
12582 @item timebase
12583 Display time base for filter link.
12584
12585 @item format
12586 Display used format for filter link.
12587
12588 @item size
12589 Display video size or number of audio channels in case of audio used by filter link.
12590
12591 @item rate
12592 Display video frame rate or sample rate in case of audio used by filter link.
12593
12594 @item eof
12595 Display link output status.
12596 @end table
12597
12598 @item rate, r
12599 Set upper limit for video rate of output stream, Default value is @var{25}.
12600 This guarantee that output video frame rate will not be higher than this value.
12601 @end table
12602
12603 @section greyedge
12604 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12605 and corrects the scene colors accordingly.
12606
12607 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12608
12609 The filter accepts the following options:
12610
12611 @table @option
12612 @item difford
12613 The order of differentiation to be applied on the scene. Must be chosen in the range
12614 [0,2] and default value is 1.
12615
12616 @item minknorm
12617 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12618 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12619 max value instead of calculating Minkowski distance.
12620
12621 @item sigma
12622 The standard deviation of Gaussian blur to be applied on the scene. Must be
12623 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12624 can't be equal to 0 if @var{difford} is greater than 0.
12625 @end table
12626
12627 @subsection Examples
12628 @itemize
12629
12630 @item
12631 Grey Edge:
12632 @example
12633 greyedge=difford=1:minknorm=5:sigma=2
12634 @end example
12635
12636 @item
12637 Max Edge:
12638 @example
12639 greyedge=difford=1:minknorm=0:sigma=2
12640 @end example
12641
12642 @end itemize
12643
12644 @anchor{haldclut}
12645 @section haldclut
12646
12647 Apply a Hald CLUT to a video stream.
12648
12649 First input is the video stream to process, and second one is the Hald CLUT.
12650 The Hald CLUT input can be a simple picture or a complete video stream.
12651
12652 The filter accepts the following options:
12653
12654 @table @option
12655 @item shortest
12656 Force termination when the shortest input terminates. Default is @code{0}.
12657 @item repeatlast
12658 Continue applying the last CLUT after the end of the stream. A value of
12659 @code{0} disable the filter after the last frame of the CLUT is reached.
12660 Default is @code{1}.
12661 @end table
12662
12663 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12664 filters share the same internals).
12665
12666 This filter also supports the @ref{framesync} options.
12667
12668 More information about the Hald CLUT can be found on Eskil Steenberg's website
12669 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12670
12671 @subsection Workflow examples
12672
12673 @subsubsection Hald CLUT video stream
12674
12675 Generate an identity Hald CLUT stream altered with various effects:
12676 @example
12677 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
12678 @end example
12679
12680 Note: make sure you use a lossless codec.
12681
12682 Then use it with @code{haldclut} to apply it on some random stream:
12683 @example
12684 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12685 @end example
12686
12687 The Hald CLUT will be applied to the 10 first seconds (duration of
12688 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12689 to the remaining frames of the @code{mandelbrot} stream.
12690
12691 @subsubsection Hald CLUT with preview
12692
12693 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12694 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12695 biggest possible square starting at the top left of the picture. The remaining
12696 padding pixels (bottom or right) will be ignored. This area can be used to add
12697 a preview of the Hald CLUT.
12698
12699 Typically, the following generated Hald CLUT will be supported by the
12700 @code{haldclut} filter:
12701
12702 @example
12703 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12704    pad=iw+320 [padded_clut];
12705    smptebars=s=320x256, split [a][b];
12706    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12707    [main][b] overlay=W-320" -frames:v 1 clut.png
12708 @end example
12709
12710 It contains the original and a preview of the effect of the CLUT: SMPTE color
12711 bars are displayed on the right-top, and below the same color bars processed by
12712 the color changes.
12713
12714 Then, the effect of this Hald CLUT can be visualized with:
12715 @example
12716 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12717 @end example
12718
12719 @section hflip
12720
12721 Flip the input video horizontally.
12722
12723 For example, to horizontally flip the input video with @command{ffmpeg}:
12724 @example
12725 ffmpeg -i in.avi -vf "hflip" out.avi
12726 @end example
12727
12728 @section histeq
12729 This filter applies a global color histogram equalization on a
12730 per-frame basis.
12731
12732 It can be used to correct video that has a compressed range of pixel
12733 intensities.  The filter redistributes the pixel intensities to
12734 equalize their distribution across the intensity range. It may be
12735 viewed as an "automatically adjusting contrast filter". This filter is
12736 useful only for correcting degraded or poorly captured source
12737 video.
12738
12739 The filter accepts the following options:
12740
12741 @table @option
12742 @item strength
12743 Determine the amount of equalization to be applied.  As the strength
12744 is reduced, the distribution of pixel intensities more-and-more
12745 approaches that of the input frame. The value must be a float number
12746 in the range [0,1] and defaults to 0.200.
12747
12748 @item intensity
12749 Set the maximum intensity that can generated and scale the output
12750 values appropriately.  The strength should be set as desired and then
12751 the intensity can be limited if needed to avoid washing-out. The value
12752 must be a float number in the range [0,1] and defaults to 0.210.
12753
12754 @item antibanding
12755 Set the antibanding level. If enabled the filter will randomly vary
12756 the luminance of output pixels by a small amount to avoid banding of
12757 the histogram. Possible values are @code{none}, @code{weak} or
12758 @code{strong}. It defaults to @code{none}.
12759 @end table
12760
12761 @anchor{histogram}
12762 @section histogram
12763
12764 Compute and draw a color distribution histogram for the input video.
12765
12766 The computed histogram is a representation of the color component
12767 distribution in an image.
12768
12769 Standard histogram displays the color components distribution in an image.
12770 Displays color graph for each color component. Shows distribution of
12771 the Y, U, V, A or R, G, B components, depending on input format, in the
12772 current frame. Below each graph a color component scale meter is shown.
12773
12774 The filter accepts the following options:
12775
12776 @table @option
12777 @item level_height
12778 Set height of level. Default value is @code{200}.
12779 Allowed range is [50, 2048].
12780
12781 @item scale_height
12782 Set height of color scale. Default value is @code{12}.
12783 Allowed range is [0, 40].
12784
12785 @item display_mode
12786 Set display mode.
12787 It accepts the following values:
12788 @table @samp
12789 @item stack
12790 Per color component graphs are placed below each other.
12791
12792 @item parade
12793 Per color component graphs are placed side by side.
12794
12795 @item overlay
12796 Presents information identical to that in the @code{parade}, except
12797 that the graphs representing color components are superimposed directly
12798 over one another.
12799 @end table
12800 Default is @code{stack}.
12801
12802 @item levels_mode
12803 Set mode. Can be either @code{linear}, or @code{logarithmic}.
12804 Default is @code{linear}.
12805
12806 @item components
12807 Set what color components to display.
12808 Default is @code{7}.
12809
12810 @item fgopacity
12811 Set foreground opacity. Default is @code{0.7}.
12812
12813 @item bgopacity
12814 Set background opacity. Default is @code{0.5}.
12815 @end table
12816
12817 @subsection Examples
12818
12819 @itemize
12820
12821 @item
12822 Calculate and draw histogram:
12823 @example
12824 ffplay -i input -vf histogram
12825 @end example
12826
12827 @end itemize
12828
12829 @anchor{hqdn3d}
12830 @section hqdn3d
12831
12832 This is a high precision/quality 3d denoise filter. It aims to reduce
12833 image noise, producing smooth images and making still images really
12834 still. It should enhance compressibility.
12835
12836 It accepts the following optional parameters:
12837
12838 @table @option
12839 @item luma_spatial
12840 A non-negative floating point number which specifies spatial luma strength.
12841 It defaults to 4.0.
12842
12843 @item chroma_spatial
12844 A non-negative floating point number which specifies spatial chroma strength.
12845 It defaults to 3.0*@var{luma_spatial}/4.0.
12846
12847 @item luma_tmp
12848 A floating point number which specifies luma temporal strength. It defaults to
12849 6.0*@var{luma_spatial}/4.0.
12850
12851 @item chroma_tmp
12852 A floating point number which specifies chroma temporal strength. It defaults to
12853 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
12854 @end table
12855
12856 @subsection Commands
12857 This filter supports same @ref{commands} as options.
12858 The command accepts the same syntax of the corresponding option.
12859
12860 If the specified expression is not valid, it is kept at its current
12861 value.
12862
12863 @anchor{hwdownload}
12864 @section hwdownload
12865
12866 Download hardware frames to system memory.
12867
12868 The input must be in hardware frames, and the output a non-hardware format.
12869 Not all formats will be supported on the output - it may be necessary to insert
12870 an additional @option{format} filter immediately following in the graph to get
12871 the output in a supported format.
12872
12873 @section hwmap
12874
12875 Map hardware frames to system memory or to another device.
12876
12877 This filter has several different modes of operation; which one is used depends
12878 on the input and output formats:
12879 @itemize
12880 @item
12881 Hardware frame input, normal frame output
12882
12883 Map the input frames to system memory and pass them to the output.  If the
12884 original hardware frame is later required (for example, after overlaying
12885 something else on part of it), the @option{hwmap} filter can be used again
12886 in the next mode to retrieve it.
12887 @item
12888 Normal frame input, hardware frame output
12889
12890 If the input is actually a software-mapped hardware frame, then unmap it -
12891 that is, return the original hardware frame.
12892
12893 Otherwise, a device must be provided.  Create new hardware surfaces on that
12894 device for the output, then map them back to the software format at the input
12895 and give those frames to the preceding filter.  This will then act like the
12896 @option{hwupload} filter, but may be able to avoid an additional copy when
12897 the input is already in a compatible format.
12898 @item
12899 Hardware frame input and output
12900
12901 A device must be supplied for the output, either directly or with the
12902 @option{derive_device} option.  The input and output devices must be of
12903 different types and compatible - the exact meaning of this is
12904 system-dependent, but typically it means that they must refer to the same
12905 underlying hardware context (for example, refer to the same graphics card).
12906
12907 If the input frames were originally created on the output device, then unmap
12908 to retrieve the original frames.
12909
12910 Otherwise, map the frames to the output device - create new hardware frames
12911 on the output corresponding to the frames on the input.
12912 @end itemize
12913
12914 The following additional parameters are accepted:
12915
12916 @table @option
12917 @item mode
12918 Set the frame mapping mode.  Some combination of:
12919 @table @var
12920 @item read
12921 The mapped frame should be readable.
12922 @item write
12923 The mapped frame should be writeable.
12924 @item overwrite
12925 The mapping will always overwrite the entire frame.
12926
12927 This may improve performance in some cases, as the original contents of the
12928 frame need not be loaded.
12929 @item direct
12930 The mapping must not involve any copying.
12931
12932 Indirect mappings to copies of frames are created in some cases where either
12933 direct mapping is not possible or it would have unexpected properties.
12934 Setting this flag ensures that the mapping is direct and will fail if that is
12935 not possible.
12936 @end table
12937 Defaults to @var{read+write} if not specified.
12938
12939 @item derive_device @var{type}
12940 Rather than using the device supplied at initialisation, instead derive a new
12941 device of type @var{type} from the device the input frames exist on.
12942
12943 @item reverse
12944 In a hardware to hardware mapping, map in reverse - create frames in the sink
12945 and map them back to the source.  This may be necessary in some cases where
12946 a mapping in one direction is required but only the opposite direction is
12947 supported by the devices being used.
12948
12949 This option is dangerous - it may break the preceding filter in undefined
12950 ways if there are any additional constraints on that filter's output.
12951 Do not use it without fully understanding the implications of its use.
12952 @end table
12953
12954 @anchor{hwupload}
12955 @section hwupload
12956
12957 Upload system memory frames to hardware surfaces.
12958
12959 The device to upload to must be supplied when the filter is initialised.  If
12960 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12961 option or with the @option{derive_device} option.  The input and output devices
12962 must be of different types and compatible - the exact meaning of this is
12963 system-dependent, but typically it means that they must refer to the same
12964 underlying hardware context (for example, refer to the same graphics card).
12965
12966 The following additional parameters are accepted:
12967
12968 @table @option
12969 @item derive_device @var{type}
12970 Rather than using the device supplied at initialisation, instead derive a new
12971 device of type @var{type} from the device the input frames exist on.
12972 @end table
12973
12974 @anchor{hwupload_cuda}
12975 @section hwupload_cuda
12976
12977 Upload system memory frames to a CUDA device.
12978
12979 It accepts the following optional parameters:
12980
12981 @table @option
12982 @item device
12983 The number of the CUDA device to use
12984 @end table
12985
12986 @section hqx
12987
12988 Apply a high-quality magnification filter designed for pixel art. This filter
12989 was originally created by Maxim Stepin.
12990
12991 It accepts the following option:
12992
12993 @table @option
12994 @item n
12995 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
12996 @code{hq3x} and @code{4} for @code{hq4x}.
12997 Default is @code{3}.
12998 @end table
12999
13000 @section hstack
13001 Stack input videos horizontally.
13002
13003 All streams must be of same pixel format and of same height.
13004
13005 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13006 to create same output.
13007
13008 The filter accepts the following option:
13009
13010 @table @option
13011 @item inputs
13012 Set number of input streams. Default is 2.
13013
13014 @item shortest
13015 If set to 1, force the output to terminate when the shortest input
13016 terminates. Default value is 0.
13017 @end table
13018
13019 @section hue
13020
13021 Modify the hue and/or the saturation of the input.
13022
13023 It accepts the following parameters:
13024
13025 @table @option
13026 @item h
13027 Specify the hue angle as a number of degrees. It accepts an expression,
13028 and defaults to "0".
13029
13030 @item s
13031 Specify the saturation in the [-10,10] range. It accepts an expression and
13032 defaults to "1".
13033
13034 @item H
13035 Specify the hue angle as a number of radians. It accepts an
13036 expression, and defaults to "0".
13037
13038 @item b
13039 Specify the brightness in the [-10,10] range. It accepts an expression and
13040 defaults to "0".
13041 @end table
13042
13043 @option{h} and @option{H} are mutually exclusive, and can't be
13044 specified at the same time.
13045
13046 The @option{b}, @option{h}, @option{H} and @option{s} option values are
13047 expressions containing the following constants:
13048
13049 @table @option
13050 @item n
13051 frame count of the input frame starting from 0
13052
13053 @item pts
13054 presentation timestamp of the input frame expressed in time base units
13055
13056 @item r
13057 frame rate of the input video, NAN if the input frame rate is unknown
13058
13059 @item t
13060 timestamp expressed in seconds, NAN if the input timestamp is unknown
13061
13062 @item tb
13063 time base of the input video
13064 @end table
13065
13066 @subsection Examples
13067
13068 @itemize
13069 @item
13070 Set the hue to 90 degrees and the saturation to 1.0:
13071 @example
13072 hue=h=90:s=1
13073 @end example
13074
13075 @item
13076 Same command but expressing the hue in radians:
13077 @example
13078 hue=H=PI/2:s=1
13079 @end example
13080
13081 @item
13082 Rotate hue and make the saturation swing between 0
13083 and 2 over a period of 1 second:
13084 @example
13085 hue="H=2*PI*t: s=sin(2*PI*t)+1"
13086 @end example
13087
13088 @item
13089 Apply a 3 seconds saturation fade-in effect starting at 0:
13090 @example
13091 hue="s=min(t/3\,1)"
13092 @end example
13093
13094 The general fade-in expression can be written as:
13095 @example
13096 hue="s=min(0\, max((t-START)/DURATION\, 1))"
13097 @end example
13098
13099 @item
13100 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
13101 @example
13102 hue="s=max(0\, min(1\, (8-t)/3))"
13103 @end example
13104
13105 The general fade-out expression can be written as:
13106 @example
13107 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
13108 @end example
13109
13110 @end itemize
13111
13112 @subsection Commands
13113
13114 This filter supports the following commands:
13115 @table @option
13116 @item b
13117 @item s
13118 @item h
13119 @item H
13120 Modify the hue and/or the saturation and/or brightness of the input video.
13121 The command accepts the same syntax of the corresponding option.
13122
13123 If the specified expression is not valid, it is kept at its current
13124 value.
13125 @end table
13126
13127 @section hysteresis
13128
13129 Grow first stream into second stream by connecting components.
13130 This makes it possible to build more robust edge masks.
13131
13132 This filter accepts the following options:
13133
13134 @table @option
13135 @item planes
13136 Set which planes will be processed as bitmap, unprocessed planes will be
13137 copied from first stream.
13138 By default value 0xf, all planes will be processed.
13139
13140 @item threshold
13141 Set threshold which is used in filtering. If pixel component value is higher than
13142 this value filter algorithm for connecting components is activated.
13143 By default value is 0.
13144 @end table
13145
13146 The @code{hysteresis} filter also supports the @ref{framesync} options.
13147
13148 @section idet
13149
13150 Detect video interlacing type.
13151
13152 This filter tries to detect if the input frames are interlaced, progressive,
13153 top or bottom field first. It will also try to detect fields that are
13154 repeated between adjacent frames (a sign of telecine).
13155
13156 Single frame detection considers only immediately adjacent frames when classifying each frame.
13157 Multiple frame detection incorporates the classification history of previous frames.
13158
13159 The filter will log these metadata values:
13160
13161 @table @option
13162 @item single.current_frame
13163 Detected type of current frame using single-frame detection. One of:
13164 ``tff'' (top field first), ``bff'' (bottom field first),
13165 ``progressive'', or ``undetermined''
13166
13167 @item single.tff
13168 Cumulative number of frames detected as top field first using single-frame detection.
13169
13170 @item multiple.tff
13171 Cumulative number of frames detected as top field first using multiple-frame detection.
13172
13173 @item single.bff
13174 Cumulative number of frames detected as bottom field first using single-frame detection.
13175
13176 @item multiple.current_frame
13177 Detected type of current frame using multiple-frame detection. One of:
13178 ``tff'' (top field first), ``bff'' (bottom field first),
13179 ``progressive'', or ``undetermined''
13180
13181 @item multiple.bff
13182 Cumulative number of frames detected as bottom field first using multiple-frame detection.
13183
13184 @item single.progressive
13185 Cumulative number of frames detected as progressive using single-frame detection.
13186
13187 @item multiple.progressive
13188 Cumulative number of frames detected as progressive using multiple-frame detection.
13189
13190 @item single.undetermined
13191 Cumulative number of frames that could not be classified using single-frame detection.
13192
13193 @item multiple.undetermined
13194 Cumulative number of frames that could not be classified using multiple-frame detection.
13195
13196 @item repeated.current_frame
13197 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
13198
13199 @item repeated.neither
13200 Cumulative number of frames with no repeated field.
13201
13202 @item repeated.top
13203 Cumulative number of frames with the top field repeated from the previous frame's top field.
13204
13205 @item repeated.bottom
13206 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
13207 @end table
13208
13209 The filter accepts the following options:
13210
13211 @table @option
13212 @item intl_thres
13213 Set interlacing threshold.
13214 @item prog_thres
13215 Set progressive threshold.
13216 @item rep_thres
13217 Threshold for repeated field detection.
13218 @item half_life
13219 Number of frames after which a given frame's contribution to the
13220 statistics is halved (i.e., it contributes only 0.5 to its
13221 classification). The default of 0 means that all frames seen are given
13222 full weight of 1.0 forever.
13223 @item analyze_interlaced_flag
13224 When this is not 0 then idet will use the specified number of frames to determine
13225 if the interlaced flag is accurate, it will not count undetermined frames.
13226 If the flag is found to be accurate it will be used without any further
13227 computations, if it is found to be inaccurate it will be cleared without any
13228 further computations. This allows inserting the idet filter as a low computational
13229 method to clean up the interlaced flag
13230 @end table
13231
13232 @section il
13233
13234 Deinterleave or interleave fields.
13235
13236 This filter allows one to process interlaced images fields without
13237 deinterlacing them. Deinterleaving splits the input frame into 2
13238 fields (so called half pictures). Odd lines are moved to the top
13239 half of the output image, even lines to the bottom half.
13240 You can process (filter) them independently and then re-interleave them.
13241
13242 The filter accepts the following options:
13243
13244 @table @option
13245 @item luma_mode, l
13246 @item chroma_mode, c
13247 @item alpha_mode, a
13248 Available values for @var{luma_mode}, @var{chroma_mode} and
13249 @var{alpha_mode} are:
13250
13251 @table @samp
13252 @item none
13253 Do nothing.
13254
13255 @item deinterleave, d
13256 Deinterleave fields, placing one above the other.
13257
13258 @item interleave, i
13259 Interleave fields. Reverse the effect of deinterleaving.
13260 @end table
13261 Default value is @code{none}.
13262
13263 @item luma_swap, ls
13264 @item chroma_swap, cs
13265 @item alpha_swap, as
13266 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
13267 @end table
13268
13269 @subsection Commands
13270
13271 This filter supports the all above options as @ref{commands}.
13272
13273 @section inflate
13274
13275 Apply inflate effect to the video.
13276
13277 This filter replaces the pixel by the local(3x3) average by taking into account
13278 only values higher than the pixel.
13279
13280 It accepts the following options:
13281
13282 @table @option
13283 @item threshold0
13284 @item threshold1
13285 @item threshold2
13286 @item threshold3
13287 Limit the maximum change for each plane, default is 65535.
13288 If 0, plane will remain unchanged.
13289 @end table
13290
13291 @subsection Commands
13292
13293 This filter supports the all above options as @ref{commands}.
13294
13295 @section interlace
13296
13297 Simple interlacing filter from progressive contents. This interleaves upper (or
13298 lower) lines from odd frames with lower (or upper) lines from even frames,
13299 halving the frame rate and preserving image height.
13300
13301 @example
13302    Original        Original             New Frame
13303    Frame 'j'      Frame 'j+1'             (tff)
13304   ==========      ===========       ==================
13305     Line 0  -------------------->    Frame 'j' Line 0
13306     Line 1          Line 1  ---->   Frame 'j+1' Line 1
13307     Line 2 --------------------->    Frame 'j' Line 2
13308     Line 3          Line 3  ---->   Frame 'j+1' Line 3
13309      ...             ...                   ...
13310 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
13311 @end example
13312
13313 It accepts the following optional parameters:
13314
13315 @table @option
13316 @item scan
13317 This determines whether the interlaced frame is taken from the even
13318 (tff - default) or odd (bff) lines of the progressive frame.
13319
13320 @item lowpass
13321 Vertical lowpass filter to avoid twitter interlacing and
13322 reduce moire patterns.
13323
13324 @table @samp
13325 @item 0, off
13326 Disable vertical lowpass filter
13327
13328 @item 1, linear
13329 Enable linear filter (default)
13330
13331 @item 2, complex
13332 Enable complex filter. This will slightly less reduce twitter and moire
13333 but better retain detail and subjective sharpness impression.
13334
13335 @end table
13336 @end table
13337
13338 @section kerndeint
13339
13340 Deinterlace input video by applying Donald Graft's adaptive kernel
13341 deinterling. Work on interlaced parts of a video to produce
13342 progressive frames.
13343
13344 The description of the accepted parameters follows.
13345
13346 @table @option
13347 @item thresh
13348 Set the threshold which affects the filter's tolerance when
13349 determining if a pixel line must be processed. It must be an integer
13350 in the range [0,255] and defaults to 10. A value of 0 will result in
13351 applying the process on every pixels.
13352
13353 @item map
13354 Paint pixels exceeding the threshold value to white if set to 1.
13355 Default is 0.
13356
13357 @item order
13358 Set the fields order. Swap fields if set to 1, leave fields alone if
13359 0. Default is 0.
13360
13361 @item sharp
13362 Enable additional sharpening if set to 1. Default is 0.
13363
13364 @item twoway
13365 Enable twoway sharpening if set to 1. Default is 0.
13366 @end table
13367
13368 @subsection Examples
13369
13370 @itemize
13371 @item
13372 Apply default values:
13373 @example
13374 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
13375 @end example
13376
13377 @item
13378 Enable additional sharpening:
13379 @example
13380 kerndeint=sharp=1
13381 @end example
13382
13383 @item
13384 Paint processed pixels in white:
13385 @example
13386 kerndeint=map=1
13387 @end example
13388 @end itemize
13389
13390 @section lagfun
13391
13392 Slowly update darker pixels.
13393
13394 This filter makes short flashes of light appear longer.
13395 This filter accepts the following options:
13396
13397 @table @option
13398 @item decay
13399 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
13400
13401 @item planes
13402 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
13403 @end table
13404
13405 @section lenscorrection
13406
13407 Correct radial lens distortion
13408
13409 This filter can be used to correct for radial distortion as can result from the use
13410 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
13411 one can use tools available for example as part of opencv or simply trial-and-error.
13412 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
13413 and extract the k1 and k2 coefficients from the resulting matrix.
13414
13415 Note that effectively the same filter is available in the open-source tools Krita and
13416 Digikam from the KDE project.
13417
13418 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
13419 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
13420 brightness distribution, so you may want to use both filters together in certain
13421 cases, though you will have to take care of ordering, i.e. whether vignetting should
13422 be applied before or after lens correction.
13423
13424 @subsection Options
13425
13426 The filter accepts the following options:
13427
13428 @table @option
13429 @item cx
13430 Relative x-coordinate of the focal point of the image, and thereby the center of the
13431 distortion. This value has a range [0,1] and is expressed as fractions of the image
13432 width. Default is 0.5.
13433 @item cy
13434 Relative y-coordinate of the focal point of the image, and thereby the center of the
13435 distortion. This value has a range [0,1] and is expressed as fractions of the image
13436 height. Default is 0.5.
13437 @item k1
13438 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
13439 no correction. Default is 0.
13440 @item k2
13441 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13442 0 means no correction. Default is 0.
13443 @item i
13444 Set interpolation type. Can be @code{nearest} or @code{bilinear}.
13445 Default is @code{nearest}.
13446 @end table
13447
13448 The formula that generates the correction is:
13449
13450 @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)
13451
13452 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13453 distances from the focal point in the source and target images, respectively.
13454
13455 @section lensfun
13456
13457 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13458
13459 The @code{lensfun} filter requires the camera make, camera model, and lens model
13460 to apply the lens correction. The filter will load the lensfun database and
13461 query it to find the corresponding camera and lens entries in the database. As
13462 long as these entries can be found with the given options, the filter can
13463 perform corrections on frames. Note that incomplete strings will result in the
13464 filter choosing the best match with the given options, and the filter will
13465 output the chosen camera and lens models (logged with level "info"). You must
13466 provide the make, camera model, and lens model as they are required.
13467
13468 The filter accepts the following options:
13469
13470 @table @option
13471 @item make
13472 The make of the camera (for example, "Canon"). This option is required.
13473
13474 @item model
13475 The model of the camera (for example, "Canon EOS 100D"). This option is
13476 required.
13477
13478 @item lens_model
13479 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13480 option is required.
13481
13482 @item mode
13483 The type of correction to apply. The following values are valid options:
13484
13485 @table @samp
13486 @item vignetting
13487 Enables fixing lens vignetting.
13488
13489 @item geometry
13490 Enables fixing lens geometry. This is the default.
13491
13492 @item subpixel
13493 Enables fixing chromatic aberrations.
13494
13495 @item vig_geo
13496 Enables fixing lens vignetting and lens geometry.
13497
13498 @item vig_subpixel
13499 Enables fixing lens vignetting and chromatic aberrations.
13500
13501 @item distortion
13502 Enables fixing both lens geometry and chromatic aberrations.
13503
13504 @item all
13505 Enables all possible corrections.
13506
13507 @end table
13508 @item focal_length
13509 The focal length of the image/video (zoom; expected constant for video). For
13510 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13511 range should be chosen when using that lens. Default 18.
13512
13513 @item aperture
13514 The aperture of the image/video (expected constant for video). Note that
13515 aperture is only used for vignetting correction. Default 3.5.
13516
13517 @item focus_distance
13518 The focus distance of the image/video (expected constant for video). Note that
13519 focus distance is only used for vignetting and only slightly affects the
13520 vignetting correction process. If unknown, leave it at the default value (which
13521 is 1000).
13522
13523 @item scale
13524 The scale factor which is applied after transformation. After correction the
13525 video is no longer necessarily rectangular. This parameter controls how much of
13526 the resulting image is visible. The value 0 means that a value will be chosen
13527 automatically such that there is little or no unmapped area in the output
13528 image. 1.0 means that no additional scaling is done. Lower values may result
13529 in more of the corrected image being visible, while higher values may avoid
13530 unmapped areas in the output.
13531
13532 @item target_geometry
13533 The target geometry of the output image/video. The following values are valid
13534 options:
13535
13536 @table @samp
13537 @item rectilinear (default)
13538 @item fisheye
13539 @item panoramic
13540 @item equirectangular
13541 @item fisheye_orthographic
13542 @item fisheye_stereographic
13543 @item fisheye_equisolid
13544 @item fisheye_thoby
13545 @end table
13546 @item reverse
13547 Apply the reverse of image correction (instead of correcting distortion, apply
13548 it).
13549
13550 @item interpolation
13551 The type of interpolation used when correcting distortion. The following values
13552 are valid options:
13553
13554 @table @samp
13555 @item nearest
13556 @item linear (default)
13557 @item lanczos
13558 @end table
13559 @end table
13560
13561 @subsection Examples
13562
13563 @itemize
13564 @item
13565 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13566 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13567 aperture of "8.0".
13568
13569 @example
13570 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
13571 @end example
13572
13573 @item
13574 Apply the same as before, but only for the first 5 seconds of video.
13575
13576 @example
13577 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
13578 @end example
13579
13580 @end itemize
13581
13582 @section libvmaf
13583
13584 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13585 score between two input videos.
13586
13587 The obtained VMAF score is printed through the logging system.
13588
13589 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13590 After installing the library it can be enabled using:
13591 @code{./configure --enable-libvmaf}.
13592 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13593
13594 The filter has following options:
13595
13596 @table @option
13597 @item model_path
13598 Set the model path which is to be used for SVM.
13599 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13600
13601 @item log_path
13602 Set the file path to be used to store logs.
13603
13604 @item log_fmt
13605 Set the format of the log file (csv, json or xml).
13606
13607 @item enable_transform
13608 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13609 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13610 Default value: @code{false}
13611
13612 @item phone_model
13613 Invokes the phone model which will generate VMAF scores higher than in the
13614 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13615 Default value: @code{false}
13616
13617 @item psnr
13618 Enables computing psnr along with vmaf.
13619 Default value: @code{false}
13620
13621 @item ssim
13622 Enables computing ssim along with vmaf.
13623 Default value: @code{false}
13624
13625 @item ms_ssim
13626 Enables computing ms_ssim along with vmaf.
13627 Default value: @code{false}
13628
13629 @item pool
13630 Set the pool method to be used for computing vmaf.
13631 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13632
13633 @item n_threads
13634 Set number of threads to be used when computing vmaf.
13635 Default value: @code{0}, which makes use of all available logical processors.
13636
13637 @item n_subsample
13638 Set interval for frame subsampling used when computing vmaf.
13639 Default value: @code{1}
13640
13641 @item enable_conf_interval
13642 Enables confidence interval.
13643 Default value: @code{false}
13644 @end table
13645
13646 This filter also supports the @ref{framesync} options.
13647
13648 @subsection Examples
13649 @itemize
13650 @item
13651 On the below examples the input file @file{main.mpg} being processed is
13652 compared with the reference file @file{ref.mpg}.
13653
13654 @example
13655 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13656 @end example
13657
13658 @item
13659 Example with options:
13660 @example
13661 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13662 @end example
13663
13664 @item
13665 Example with options and different containers:
13666 @example
13667 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 -
13668 @end example
13669 @end itemize
13670
13671 @section limiter
13672
13673 Limits the pixel components values to the specified range [min, max].
13674
13675 The filter accepts the following options:
13676
13677 @table @option
13678 @item min
13679 Lower bound. Defaults to the lowest allowed value for the input.
13680
13681 @item max
13682 Upper bound. Defaults to the highest allowed value for the input.
13683
13684 @item planes
13685 Specify which planes will be processed. Defaults to all available.
13686 @end table
13687
13688 @subsection Commands
13689
13690 This filter supports the all above options as @ref{commands}.
13691
13692 @section loop
13693
13694 Loop video frames.
13695
13696 The filter accepts the following options:
13697
13698 @table @option
13699 @item loop
13700 Set the number of loops. Setting this value to -1 will result in infinite loops.
13701 Default is 0.
13702
13703 @item size
13704 Set maximal size in number of frames. Default is 0.
13705
13706 @item start
13707 Set first frame of loop. Default is 0.
13708 @end table
13709
13710 @subsection Examples
13711
13712 @itemize
13713 @item
13714 Loop single first frame infinitely:
13715 @example
13716 loop=loop=-1:size=1:start=0
13717 @end example
13718
13719 @item
13720 Loop single first frame 10 times:
13721 @example
13722 loop=loop=10:size=1:start=0
13723 @end example
13724
13725 @item
13726 Loop 10 first frames 5 times:
13727 @example
13728 loop=loop=5:size=10:start=0
13729 @end example
13730 @end itemize
13731
13732 @section lut1d
13733
13734 Apply a 1D LUT to an input video.
13735
13736 The filter accepts the following options:
13737
13738 @table @option
13739 @item file
13740 Set the 1D LUT file name.
13741
13742 Currently supported formats:
13743 @table @samp
13744 @item cube
13745 Iridas
13746 @item csp
13747 cineSpace
13748 @end table
13749
13750 @item interp
13751 Select interpolation mode.
13752
13753 Available values are:
13754
13755 @table @samp
13756 @item nearest
13757 Use values from the nearest defined point.
13758 @item linear
13759 Interpolate values using the linear interpolation.
13760 @item cosine
13761 Interpolate values using the cosine interpolation.
13762 @item cubic
13763 Interpolate values using the cubic interpolation.
13764 @item spline
13765 Interpolate values using the spline interpolation.
13766 @end table
13767 @end table
13768
13769 @anchor{lut3d}
13770 @section lut3d
13771
13772 Apply a 3D LUT to an input video.
13773
13774 The filter accepts the following options:
13775
13776 @table @option
13777 @item file
13778 Set the 3D LUT file name.
13779
13780 Currently supported formats:
13781 @table @samp
13782 @item 3dl
13783 AfterEffects
13784 @item cube
13785 Iridas
13786 @item dat
13787 DaVinci
13788 @item m3d
13789 Pandora
13790 @item csp
13791 cineSpace
13792 @end table
13793 @item interp
13794 Select interpolation mode.
13795
13796 Available values are:
13797
13798 @table @samp
13799 @item nearest
13800 Use values from the nearest defined point.
13801 @item trilinear
13802 Interpolate values using the 8 points defining a cube.
13803 @item tetrahedral
13804 Interpolate values using a tetrahedron.
13805 @end table
13806 @end table
13807
13808 @section lumakey
13809
13810 Turn certain luma values into transparency.
13811
13812 The filter accepts the following options:
13813
13814 @table @option
13815 @item threshold
13816 Set the luma which will be used as base for transparency.
13817 Default value is @code{0}.
13818
13819 @item tolerance
13820 Set the range of luma values to be keyed out.
13821 Default value is @code{0.01}.
13822
13823 @item softness
13824 Set the range of softness. Default value is @code{0}.
13825 Use this to control gradual transition from zero to full transparency.
13826 @end table
13827
13828 @subsection Commands
13829 This filter supports same @ref{commands} as options.
13830 The command accepts the same syntax of the corresponding option.
13831
13832 If the specified expression is not valid, it is kept at its current
13833 value.
13834
13835 @section lut, lutrgb, lutyuv
13836
13837 Compute a look-up table for binding each pixel component input value
13838 to an output value, and apply it to the input video.
13839
13840 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
13841 to an RGB input video.
13842
13843 These filters accept the following parameters:
13844 @table @option
13845 @item c0
13846 set first pixel component expression
13847 @item c1
13848 set second pixel component expression
13849 @item c2
13850 set third pixel component expression
13851 @item c3
13852 set fourth pixel component expression, corresponds to the alpha component
13853
13854 @item r
13855 set red component expression
13856 @item g
13857 set green component expression
13858 @item b
13859 set blue component expression
13860 @item a
13861 alpha component expression
13862
13863 @item y
13864 set Y/luminance component expression
13865 @item u
13866 set U/Cb component expression
13867 @item v
13868 set V/Cr component expression
13869 @end table
13870
13871 Each of them specifies the expression to use for computing the lookup table for
13872 the corresponding pixel component values.
13873
13874 The exact component associated to each of the @var{c*} options depends on the
13875 format in input.
13876
13877 The @var{lut} filter requires either YUV or RGB pixel formats in input,
13878 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
13879
13880 The expressions can contain the following constants and functions:
13881
13882 @table @option
13883 @item w
13884 @item h
13885 The input width and height.
13886
13887 @item val
13888 The input value for the pixel component.
13889
13890 @item clipval
13891 The input value, clipped to the @var{minval}-@var{maxval} range.
13892
13893 @item maxval
13894 The maximum value for the pixel component.
13895
13896 @item minval
13897 The minimum value for the pixel component.
13898
13899 @item negval
13900 The negated value for the pixel component value, clipped to the
13901 @var{minval}-@var{maxval} range; it corresponds to the expression
13902 "maxval-clipval+minval".
13903
13904 @item clip(val)
13905 The computed value in @var{val}, clipped to the
13906 @var{minval}-@var{maxval} range.
13907
13908 @item gammaval(gamma)
13909 The computed gamma correction value of the pixel component value,
13910 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13911 expression
13912 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13913
13914 @end table
13915
13916 All expressions default to "val".
13917
13918 @subsection Examples
13919
13920 @itemize
13921 @item
13922 Negate input video:
13923 @example
13924 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13925 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13926 @end example
13927
13928 The above is the same as:
13929 @example
13930 lutrgb="r=negval:g=negval:b=negval"
13931 lutyuv="y=negval:u=negval:v=negval"
13932 @end example
13933
13934 @item
13935 Negate luminance:
13936 @example
13937 lutyuv=y=negval
13938 @end example
13939
13940 @item
13941 Remove chroma components, turning the video into a graytone image:
13942 @example
13943 lutyuv="u=128:v=128"
13944 @end example
13945
13946 @item
13947 Apply a luma burning effect:
13948 @example
13949 lutyuv="y=2*val"
13950 @end example
13951
13952 @item
13953 Remove green and blue components:
13954 @example
13955 lutrgb="g=0:b=0"
13956 @end example
13957
13958 @item
13959 Set a constant alpha channel value on input:
13960 @example
13961 format=rgba,lutrgb=a="maxval-minval/2"
13962 @end example
13963
13964 @item
13965 Correct luminance gamma by a factor of 0.5:
13966 @example
13967 lutyuv=y=gammaval(0.5)
13968 @end example
13969
13970 @item
13971 Discard least significant bits of luma:
13972 @example
13973 lutyuv=y='bitand(val, 128+64+32)'
13974 @end example
13975
13976 @item
13977 Technicolor like effect:
13978 @example
13979 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
13980 @end example
13981 @end itemize
13982
13983 @section lut2, tlut2
13984
13985 The @code{lut2} filter takes two input streams and outputs one
13986 stream.
13987
13988 The @code{tlut2} (time lut2) filter takes two consecutive frames
13989 from one single stream.
13990
13991 This filter accepts the following parameters:
13992 @table @option
13993 @item c0
13994 set first pixel component expression
13995 @item c1
13996 set second pixel component expression
13997 @item c2
13998 set third pixel component expression
13999 @item c3
14000 set fourth pixel component expression, corresponds to the alpha component
14001
14002 @item d
14003 set output bit depth, only available for @code{lut2} filter. By default is 0,
14004 which means bit depth is automatically picked from first input format.
14005 @end table
14006
14007 The @code{lut2} filter also supports the @ref{framesync} options.
14008
14009 Each of them specifies the expression to use for computing the lookup table for
14010 the corresponding pixel component values.
14011
14012 The exact component associated to each of the @var{c*} options depends on the
14013 format in inputs.
14014
14015 The expressions can contain the following constants:
14016
14017 @table @option
14018 @item w
14019 @item h
14020 The input width and height.
14021
14022 @item x
14023 The first input value for the pixel component.
14024
14025 @item y
14026 The second input value for the pixel component.
14027
14028 @item bdx
14029 The first input video bit depth.
14030
14031 @item bdy
14032 The second input video bit depth.
14033 @end table
14034
14035 All expressions default to "x".
14036
14037 @subsection Examples
14038
14039 @itemize
14040 @item
14041 Highlight differences between two RGB video streams:
14042 @example
14043 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)'
14044 @end example
14045
14046 @item
14047 Highlight differences between two YUV video streams:
14048 @example
14049 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)'
14050 @end example
14051
14052 @item
14053 Show max difference between two video streams:
14054 @example
14055 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)))'
14056 @end example
14057 @end itemize
14058
14059 @section maskedclamp
14060
14061 Clamp the first input stream with the second input and third input stream.
14062
14063 Returns the value of first stream to be between second input
14064 stream - @code{undershoot} and third input stream + @code{overshoot}.
14065
14066 This filter accepts the following options:
14067 @table @option
14068 @item undershoot
14069 Default value is @code{0}.
14070
14071 @item overshoot
14072 Default value is @code{0}.
14073
14074 @item planes
14075 Set which planes will be processed as bitmap, unprocessed planes will be
14076 copied from first stream.
14077 By default value 0xf, all planes will be processed.
14078 @end table
14079
14080 @subsection Commands
14081
14082 This filter supports the all above options as @ref{commands}.
14083
14084 @section maskedmax
14085
14086 Merge the second and third input stream into output stream using absolute differences
14087 between second input stream and first input stream and absolute difference between
14088 third input stream and first input stream. The picked value will be from second input
14089 stream if second absolute difference is greater than first one or from third input stream
14090 otherwise.
14091
14092 This filter accepts the following options:
14093 @table @option
14094 @item planes
14095 Set which planes will be processed as bitmap, unprocessed planes will be
14096 copied from first stream.
14097 By default value 0xf, all planes will be processed.
14098 @end table
14099
14100 @subsection Commands
14101
14102 This filter supports the all above options as @ref{commands}.
14103
14104 @section maskedmerge
14105
14106 Merge the first input stream with the second input stream using per pixel
14107 weights in the third input stream.
14108
14109 A value of 0 in the third stream pixel component means that pixel component
14110 from first stream is returned unchanged, while maximum value (eg. 255 for
14111 8-bit videos) means that pixel component from second stream is returned
14112 unchanged. Intermediate values define the amount of merging between both
14113 input stream's pixel components.
14114
14115 This filter accepts the following options:
14116 @table @option
14117 @item planes
14118 Set which planes will be processed as bitmap, unprocessed planes will be
14119 copied from first stream.
14120 By default value 0xf, all planes will be processed.
14121 @end table
14122
14123 @subsection Commands
14124
14125 This filter supports the all above options as @ref{commands}.
14126
14127 @section maskedmin
14128
14129 Merge the second and third input stream into output stream using absolute differences
14130 between second input stream and first input stream and absolute difference between
14131 third input stream and first input stream. The picked value will be from second input
14132 stream if second absolute difference is less than first one or from third input stream
14133 otherwise.
14134
14135 This filter accepts the following options:
14136 @table @option
14137 @item planes
14138 Set which planes will be processed as bitmap, unprocessed planes will be
14139 copied from first stream.
14140 By default value 0xf, all planes will be processed.
14141 @end table
14142
14143 @subsection Commands
14144
14145 This filter supports the all above options as @ref{commands}.
14146
14147 @section maskedthreshold
14148 Pick pixels comparing absolute difference of two video streams with fixed
14149 threshold.
14150
14151 If absolute difference between pixel component of first and second video
14152 stream is equal or lower than user supplied threshold than pixel component
14153 from first video stream is picked, otherwise pixel component from second
14154 video stream is picked.
14155
14156 This filter accepts the following options:
14157 @table @option
14158 @item threshold
14159 Set threshold used when picking pixels from absolute difference from two input
14160 video streams.
14161
14162 @item planes
14163 Set which planes will be processed as bitmap, unprocessed planes will be
14164 copied from second stream.
14165 By default value 0xf, all planes will be processed.
14166 @end table
14167
14168 @subsection Commands
14169
14170 This filter supports the all above options as @ref{commands}.
14171
14172 @section maskfun
14173 Create mask from input video.
14174
14175 For example it is useful to create motion masks after @code{tblend} filter.
14176
14177 This filter accepts the following options:
14178
14179 @table @option
14180 @item low
14181 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
14182
14183 @item high
14184 Set high threshold. Any pixel component higher than this value will be set to max value
14185 allowed for current pixel format.
14186
14187 @item planes
14188 Set planes to filter, by default all available planes are filtered.
14189
14190 @item fill
14191 Fill all frame pixels with this value.
14192
14193 @item sum
14194 Set max average pixel value for frame. If sum of all pixel components is higher that this
14195 average, output frame will be completely filled with value set by @var{fill} option.
14196 Typically useful for scene changes when used in combination with @code{tblend} filter.
14197 @end table
14198
14199 @section mcdeint
14200
14201 Apply motion-compensation deinterlacing.
14202
14203 It needs one field per frame as input and must thus be used together
14204 with yadif=1/3 or equivalent.
14205
14206 This filter accepts the following options:
14207 @table @option
14208 @item mode
14209 Set the deinterlacing mode.
14210
14211 It accepts one of the following values:
14212 @table @samp
14213 @item fast
14214 @item medium
14215 @item slow
14216 use iterative motion estimation
14217 @item extra_slow
14218 like @samp{slow}, but use multiple reference frames.
14219 @end table
14220 Default value is @samp{fast}.
14221
14222 @item parity
14223 Set the picture field parity assumed for the input video. It must be
14224 one of the following values:
14225
14226 @table @samp
14227 @item 0, tff
14228 assume top field first
14229 @item 1, bff
14230 assume bottom field first
14231 @end table
14232
14233 Default value is @samp{bff}.
14234
14235 @item qp
14236 Set per-block quantization parameter (QP) used by the internal
14237 encoder.
14238
14239 Higher values should result in a smoother motion vector field but less
14240 optimal individual vectors. Default value is 1.
14241 @end table
14242
14243 @section median
14244
14245 Pick median pixel from certain rectangle defined by radius.
14246
14247 This filter accepts the following options:
14248
14249 @table @option
14250 @item radius
14251 Set horizontal radius size. Default value is @code{1}.
14252 Allowed range is integer from 1 to 127.
14253
14254 @item planes
14255 Set which planes to process. Default is @code{15}, which is all available planes.
14256
14257 @item radiusV
14258 Set vertical radius size. Default value is @code{0}.
14259 Allowed range is integer from 0 to 127.
14260 If it is 0, value will be picked from horizontal @code{radius} option.
14261
14262 @item percentile
14263 Set median percentile. Default value is @code{0.5}.
14264 Default value of @code{0.5} will pick always median values, while @code{0} will pick
14265 minimum values, and @code{1} maximum values.
14266 @end table
14267
14268 @subsection Commands
14269 This filter supports same @ref{commands} as options.
14270 The command accepts the same syntax of the corresponding option.
14271
14272 If the specified expression is not valid, it is kept at its current
14273 value.
14274
14275 @section mergeplanes
14276
14277 Merge color channel components from several video streams.
14278
14279 The filter accepts up to 4 input streams, and merge selected input
14280 planes to the output video.
14281
14282 This filter accepts the following options:
14283 @table @option
14284 @item mapping
14285 Set input to output plane mapping. Default is @code{0}.
14286
14287 The mappings is specified as a bitmap. It should be specified as a
14288 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
14289 mapping for the first plane of the output stream. 'A' sets the number of
14290 the input stream to use (from 0 to 3), and 'a' the plane number of the
14291 corresponding input to use (from 0 to 3). The rest of the mappings is
14292 similar, 'Bb' describes the mapping for the output stream second
14293 plane, 'Cc' describes the mapping for the output stream third plane and
14294 'Dd' describes the mapping for the output stream fourth plane.
14295
14296 @item format
14297 Set output pixel format. Default is @code{yuva444p}.
14298 @end table
14299
14300 @subsection Examples
14301
14302 @itemize
14303 @item
14304 Merge three gray video streams of same width and height into single video stream:
14305 @example
14306 [a0][a1][a2]mergeplanes=0x001020:yuv444p
14307 @end example
14308
14309 @item
14310 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
14311 @example
14312 [a0][a1]mergeplanes=0x00010210:yuva444p
14313 @end example
14314
14315 @item
14316 Swap Y and A plane in yuva444p stream:
14317 @example
14318 format=yuva444p,mergeplanes=0x03010200:yuva444p
14319 @end example
14320
14321 @item
14322 Swap U and V plane in yuv420p stream:
14323 @example
14324 format=yuv420p,mergeplanes=0x000201:yuv420p
14325 @end example
14326
14327 @item
14328 Cast a rgb24 clip to yuv444p:
14329 @example
14330 format=rgb24,mergeplanes=0x000102:yuv444p
14331 @end example
14332 @end itemize
14333
14334 @section mestimate
14335
14336 Estimate and export motion vectors using block matching algorithms.
14337 Motion vectors are stored in frame side data to be used by other filters.
14338
14339 This filter accepts the following options:
14340 @table @option
14341 @item method
14342 Specify the motion estimation method. Accepts one of the following values:
14343
14344 @table @samp
14345 @item esa
14346 Exhaustive search algorithm.
14347 @item tss
14348 Three step search algorithm.
14349 @item tdls
14350 Two dimensional logarithmic search algorithm.
14351 @item ntss
14352 New three step search algorithm.
14353 @item fss
14354 Four step search algorithm.
14355 @item ds
14356 Diamond search algorithm.
14357 @item hexbs
14358 Hexagon-based search algorithm.
14359 @item epzs
14360 Enhanced predictive zonal search algorithm.
14361 @item umh
14362 Uneven multi-hexagon search algorithm.
14363 @end table
14364 Default value is @samp{esa}.
14365
14366 @item mb_size
14367 Macroblock size. Default @code{16}.
14368
14369 @item search_param
14370 Search parameter. Default @code{7}.
14371 @end table
14372
14373 @section midequalizer
14374
14375 Apply Midway Image Equalization effect using two video streams.
14376
14377 Midway Image Equalization adjusts a pair of images to have the same
14378 histogram, while maintaining their dynamics as much as possible. It's
14379 useful for e.g. matching exposures from a pair of stereo cameras.
14380
14381 This filter has two inputs and one output, which must be of same pixel format, but
14382 may be of different sizes. The output of filter is first input adjusted with
14383 midway histogram of both inputs.
14384
14385 This filter accepts the following option:
14386
14387 @table @option
14388 @item planes
14389 Set which planes to process. Default is @code{15}, which is all available planes.
14390 @end table
14391
14392 @section minterpolate
14393
14394 Convert the video to specified frame rate using motion interpolation.
14395
14396 This filter accepts the following options:
14397 @table @option
14398 @item fps
14399 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}.
14400
14401 @item mi_mode
14402 Motion interpolation mode. Following values are accepted:
14403 @table @samp
14404 @item dup
14405 Duplicate previous or next frame for interpolating new ones.
14406 @item blend
14407 Blend source frames. Interpolated frame is mean of previous and next frames.
14408 @item mci
14409 Motion compensated interpolation. Following options are effective when this mode is selected:
14410
14411 @table @samp
14412 @item mc_mode
14413 Motion compensation mode. Following values are accepted:
14414 @table @samp
14415 @item obmc
14416 Overlapped block motion compensation.
14417 @item aobmc
14418 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
14419 @end table
14420 Default mode is @samp{obmc}.
14421
14422 @item me_mode
14423 Motion estimation mode. Following values are accepted:
14424 @table @samp
14425 @item bidir
14426 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
14427 @item bilat
14428 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
14429 @end table
14430 Default mode is @samp{bilat}.
14431
14432 @item me
14433 The algorithm to be used for motion estimation. Following values are accepted:
14434 @table @samp
14435 @item esa
14436 Exhaustive search algorithm.
14437 @item tss
14438 Three step search algorithm.
14439 @item tdls
14440 Two dimensional logarithmic search algorithm.
14441 @item ntss
14442 New three step search algorithm.
14443 @item fss
14444 Four step search algorithm.
14445 @item ds
14446 Diamond search algorithm.
14447 @item hexbs
14448 Hexagon-based search algorithm.
14449 @item epzs
14450 Enhanced predictive zonal search algorithm.
14451 @item umh
14452 Uneven multi-hexagon search algorithm.
14453 @end table
14454 Default algorithm is @samp{epzs}.
14455
14456 @item mb_size
14457 Macroblock size. Default @code{16}.
14458
14459 @item search_param
14460 Motion estimation search parameter. Default @code{32}.
14461
14462 @item vsbmc
14463 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).
14464 @end table
14465 @end table
14466
14467 @item scd
14468 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:
14469 @table @samp
14470 @item none
14471 Disable scene change detection.
14472 @item fdiff
14473 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14474 @end table
14475 Default method is @samp{fdiff}.
14476
14477 @item scd_threshold
14478 Scene change detection threshold. Default is @code{10.}.
14479 @end table
14480
14481 @section mix
14482
14483 Mix several video input streams into one video stream.
14484
14485 A description of the accepted options follows.
14486
14487 @table @option
14488 @item nb_inputs
14489 The number of inputs. If unspecified, it defaults to 2.
14490
14491 @item weights
14492 Specify weight of each input video stream as sequence.
14493 Each weight is separated by space. If number of weights
14494 is smaller than number of @var{frames} last specified
14495 weight will be used for all remaining unset weights.
14496
14497 @item scale
14498 Specify scale, if it is set it will be multiplied with sum
14499 of each weight multiplied with pixel values to give final destination
14500 pixel value. By default @var{scale} is auto scaled to sum of weights.
14501
14502 @item duration
14503 Specify how end of stream is determined.
14504 @table @samp
14505 @item longest
14506 The duration of the longest input. (default)
14507
14508 @item shortest
14509 The duration of the shortest input.
14510
14511 @item first
14512 The duration of the first input.
14513 @end table
14514 @end table
14515
14516 @section mpdecimate
14517
14518 Drop frames that do not differ greatly from the previous frame in
14519 order to reduce frame rate.
14520
14521 The main use of this filter is for very-low-bitrate encoding
14522 (e.g. streaming over dialup modem), but it could in theory be used for
14523 fixing movies that were inverse-telecined incorrectly.
14524
14525 A description of the accepted options follows.
14526
14527 @table @option
14528 @item max
14529 Set the maximum number of consecutive frames which can be dropped (if
14530 positive), or the minimum interval between dropped frames (if
14531 negative). If the value is 0, the frame is dropped disregarding the
14532 number of previous sequentially dropped frames.
14533
14534 Default value is 0.
14535
14536 @item hi
14537 @item lo
14538 @item frac
14539 Set the dropping threshold values.
14540
14541 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14542 represent actual pixel value differences, so a threshold of 64
14543 corresponds to 1 unit of difference for each pixel, or the same spread
14544 out differently over the block.
14545
14546 A frame is a candidate for dropping if no 8x8 blocks differ by more
14547 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14548 meaning the whole image) differ by more than a threshold of @option{lo}.
14549
14550 Default value for @option{hi} is 64*12, default value for @option{lo} is
14551 64*5, and default value for @option{frac} is 0.33.
14552 @end table
14553
14554
14555 @section negate
14556
14557 Negate (invert) the input video.
14558
14559 It accepts the following option:
14560
14561 @table @option
14562
14563 @item negate_alpha
14564 With value 1, it negates the alpha component, if present. Default value is 0.
14565 @end table
14566
14567 @anchor{nlmeans}
14568 @section nlmeans
14569
14570 Denoise frames using Non-Local Means algorithm.
14571
14572 Each pixel is adjusted by looking for other pixels with similar contexts. This
14573 context similarity is defined by comparing their surrounding patches of size
14574 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14575 around the pixel.
14576
14577 Note that the research area defines centers for patches, which means some
14578 patches will be made of pixels outside that research area.
14579
14580 The filter accepts the following options.
14581
14582 @table @option
14583 @item s
14584 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
14585
14586 @item p
14587 Set patch size. Default is 7. Must be odd number in range [0, 99].
14588
14589 @item pc
14590 Same as @option{p} but for chroma planes.
14591
14592 The default value is @var{0} and means automatic.
14593
14594 @item r
14595 Set research size. Default is 15. Must be odd number in range [0, 99].
14596
14597 @item rc
14598 Same as @option{r} but for chroma planes.
14599
14600 The default value is @var{0} and means automatic.
14601 @end table
14602
14603 @section nnedi
14604
14605 Deinterlace video using neural network edge directed interpolation.
14606
14607 This filter accepts the following options:
14608
14609 @table @option
14610 @item weights
14611 Mandatory option, without binary file filter can not work.
14612 Currently file can be found here:
14613 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
14614
14615 @item deint
14616 Set which frames to deinterlace, by default it is @code{all}.
14617 Can be @code{all} or @code{interlaced}.
14618
14619 @item field
14620 Set mode of operation.
14621
14622 Can be one of the following:
14623
14624 @table @samp
14625 @item af
14626 Use frame flags, both fields.
14627 @item a
14628 Use frame flags, single field.
14629 @item t
14630 Use top field only.
14631 @item b
14632 Use bottom field only.
14633 @item tf
14634 Use both fields, top first.
14635 @item bf
14636 Use both fields, bottom first.
14637 @end table
14638
14639 @item planes
14640 Set which planes to process, by default filter process all frames.
14641
14642 @item nsize
14643 Set size of local neighborhood around each pixel, used by the predictor neural
14644 network.
14645
14646 Can be one of the following:
14647
14648 @table @samp
14649 @item s8x6
14650 @item s16x6
14651 @item s32x6
14652 @item s48x6
14653 @item s8x4
14654 @item s16x4
14655 @item s32x4
14656 @end table
14657
14658 @item nns
14659 Set the number of neurons in predictor neural network.
14660 Can be one of the following:
14661
14662 @table @samp
14663 @item n16
14664 @item n32
14665 @item n64
14666 @item n128
14667 @item n256
14668 @end table
14669
14670 @item qual
14671 Controls the number of different neural network predictions that are blended
14672 together to compute the final output value. Can be @code{fast}, default or
14673 @code{slow}.
14674
14675 @item etype
14676 Set which set of weights to use in the predictor.
14677 Can be one of the following:
14678
14679 @table @samp
14680 @item a, abs
14681 weights trained to minimize absolute error
14682 @item s, mse
14683 weights trained to minimize squared error
14684 @end table
14685
14686 @item pscrn
14687 Controls whether or not the prescreener neural network is used to decide
14688 which pixels should be processed by the predictor neural network and which
14689 can be handled by simple cubic interpolation.
14690 The prescreener is trained to know whether cubic interpolation will be
14691 sufficient for a pixel or whether it should be predicted by the predictor nn.
14692 The computational complexity of the prescreener nn is much less than that of
14693 the predictor nn. Since most pixels can be handled by cubic interpolation,
14694 using the prescreener generally results in much faster processing.
14695 The prescreener is pretty accurate, so the difference between using it and not
14696 using it is almost always unnoticeable.
14697
14698 Can be one of the following:
14699
14700 @table @samp
14701 @item none
14702 @item original
14703 @item new
14704 @item new2
14705 @item new3
14706 @end table
14707
14708 Default is @code{new}.
14709 @end table
14710
14711 @subsection Commands
14712 This filter supports same @ref{commands} as options, excluding @var{weights} option.
14713
14714 @section noformat
14715
14716 Force libavfilter not to use any of the specified pixel formats for the
14717 input to the next filter.
14718
14719 It accepts the following parameters:
14720 @table @option
14721
14722 @item pix_fmts
14723 A '|'-separated list of pixel format names, such as
14724 pix_fmts=yuv420p|monow|rgb24".
14725
14726 @end table
14727
14728 @subsection Examples
14729
14730 @itemize
14731 @item
14732 Force libavfilter to use a format different from @var{yuv420p} for the
14733 input to the vflip filter:
14734 @example
14735 noformat=pix_fmts=yuv420p,vflip
14736 @end example
14737
14738 @item
14739 Convert the input video to any of the formats not contained in the list:
14740 @example
14741 noformat=yuv420p|yuv444p|yuv410p
14742 @end example
14743 @end itemize
14744
14745 @section noise
14746
14747 Add noise on video input frame.
14748
14749 The filter accepts the following options:
14750
14751 @table @option
14752 @item all_seed
14753 @item c0_seed
14754 @item c1_seed
14755 @item c2_seed
14756 @item c3_seed
14757 Set noise seed for specific pixel component or all pixel components in case
14758 of @var{all_seed}. Default value is @code{123457}.
14759
14760 @item all_strength, alls
14761 @item c0_strength, c0s
14762 @item c1_strength, c1s
14763 @item c2_strength, c2s
14764 @item c3_strength, c3s
14765 Set noise strength for specific pixel component or all pixel components in case
14766 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
14767
14768 @item all_flags, allf
14769 @item c0_flags, c0f
14770 @item c1_flags, c1f
14771 @item c2_flags, c2f
14772 @item c3_flags, c3f
14773 Set pixel component flags or set flags for all components if @var{all_flags}.
14774 Available values for component flags are:
14775 @table @samp
14776 @item a
14777 averaged temporal noise (smoother)
14778 @item p
14779 mix random noise with a (semi)regular pattern
14780 @item t
14781 temporal noise (noise pattern changes between frames)
14782 @item u
14783 uniform noise (gaussian otherwise)
14784 @end table
14785 @end table
14786
14787 @subsection Examples
14788
14789 Add temporal and uniform noise to input video:
14790 @example
14791 noise=alls=20:allf=t+u
14792 @end example
14793
14794 @section normalize
14795
14796 Normalize RGB video (aka histogram stretching, contrast stretching).
14797 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
14798
14799 For each channel of each frame, the filter computes the input range and maps
14800 it linearly to the user-specified output range. The output range defaults
14801 to the full dynamic range from pure black to pure white.
14802
14803 Temporal smoothing can be used on the input range to reduce flickering (rapid
14804 changes in brightness) caused when small dark or bright objects enter or leave
14805 the scene. This is similar to the auto-exposure (automatic gain control) on a
14806 video camera, and, like a video camera, it may cause a period of over- or
14807 under-exposure of the video.
14808
14809 The R,G,B channels can be normalized independently, which may cause some
14810 color shifting, or linked together as a single channel, which prevents
14811 color shifting. Linked normalization preserves hue. Independent normalization
14812 does not, so it can be used to remove some color casts. Independent and linked
14813 normalization can be combined in any ratio.
14814
14815 The normalize filter accepts the following options:
14816
14817 @table @option
14818 @item blackpt
14819 @item whitept
14820 Colors which define the output range. The minimum input value is mapped to
14821 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
14822 The defaults are black and white respectively. Specifying white for
14823 @var{blackpt} and black for @var{whitept} will give color-inverted,
14824 normalized video. Shades of grey can be used to reduce the dynamic range
14825 (contrast). Specifying saturated colors here can create some interesting
14826 effects.
14827
14828 @item smoothing
14829 The number of previous frames to use for temporal smoothing. The input range
14830 of each channel is smoothed using a rolling average over the current frame
14831 and the @var{smoothing} previous frames. The default is 0 (no temporal
14832 smoothing).
14833
14834 @item independence
14835 Controls the ratio of independent (color shifting) channel normalization to
14836 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
14837 independent. Defaults to 1.0 (fully independent).
14838
14839 @item strength
14840 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
14841 expensive no-op. Defaults to 1.0 (full strength).
14842
14843 @end table
14844
14845 @subsection Commands
14846 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
14847 The command accepts the same syntax of the corresponding option.
14848
14849 If the specified expression is not valid, it is kept at its current
14850 value.
14851
14852 @subsection Examples
14853
14854 Stretch video contrast to use the full dynamic range, with no temporal
14855 smoothing; may flicker depending on the source content:
14856 @example
14857 normalize=blackpt=black:whitept=white:smoothing=0
14858 @end example
14859
14860 As above, but with 50 frames of temporal smoothing; flicker should be
14861 reduced, depending on the source content:
14862 @example
14863 normalize=blackpt=black:whitept=white:smoothing=50
14864 @end example
14865
14866 As above, but with hue-preserving linked channel normalization:
14867 @example
14868 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
14869 @end example
14870
14871 As above, but with half strength:
14872 @example
14873 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
14874 @end example
14875
14876 Map the darkest input color to red, the brightest input color to cyan:
14877 @example
14878 normalize=blackpt=red:whitept=cyan
14879 @end example
14880
14881 @section null
14882
14883 Pass the video source unchanged to the output.
14884
14885 @section ocr
14886 Optical Character Recognition
14887
14888 This filter uses Tesseract for optical character recognition. To enable
14889 compilation of this filter, you need to configure FFmpeg with
14890 @code{--enable-libtesseract}.
14891
14892 It accepts the following options:
14893
14894 @table @option
14895 @item datapath
14896 Set datapath to tesseract data. Default is to use whatever was
14897 set at installation.
14898
14899 @item language
14900 Set language, default is "eng".
14901
14902 @item whitelist
14903 Set character whitelist.
14904
14905 @item blacklist
14906 Set character blacklist.
14907 @end table
14908
14909 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
14910 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
14911
14912 @section ocv
14913
14914 Apply a video transform using libopencv.
14915
14916 To enable this filter, install the libopencv library and headers and
14917 configure FFmpeg with @code{--enable-libopencv}.
14918
14919 It accepts the following parameters:
14920
14921 @table @option
14922
14923 @item filter_name
14924 The name of the libopencv filter to apply.
14925
14926 @item filter_params
14927 The parameters to pass to the libopencv filter. If not specified, the default
14928 values are assumed.
14929
14930 @end table
14931
14932 Refer to the official libopencv documentation for more precise
14933 information:
14934 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
14935
14936 Several libopencv filters are supported; see the following subsections.
14937
14938 @anchor{dilate}
14939 @subsection dilate
14940
14941 Dilate an image by using a specific structuring element.
14942 It corresponds to the libopencv function @code{cvDilate}.
14943
14944 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
14945
14946 @var{struct_el} represents a structuring element, and has the syntax:
14947 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
14948
14949 @var{cols} and @var{rows} represent the number of columns and rows of
14950 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
14951 point, and @var{shape} the shape for the structuring element. @var{shape}
14952 must be "rect", "cross", "ellipse", or "custom".
14953
14954 If the value for @var{shape} is "custom", it must be followed by a
14955 string of the form "=@var{filename}". The file with name
14956 @var{filename} is assumed to represent a binary image, with each
14957 printable character corresponding to a bright pixel. When a custom
14958 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
14959 or columns and rows of the read file are assumed instead.
14960
14961 The default value for @var{struct_el} is "3x3+0x0/rect".
14962
14963 @var{nb_iterations} specifies the number of times the transform is
14964 applied to the image, and defaults to 1.
14965
14966 Some examples:
14967 @example
14968 # Use the default values
14969 ocv=dilate
14970
14971 # Dilate using a structuring element with a 5x5 cross, iterating two times
14972 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
14973
14974 # Read the shape from the file diamond.shape, iterating two times.
14975 # The file diamond.shape may contain a pattern of characters like this
14976 #   *
14977 #  ***
14978 # *****
14979 #  ***
14980 #   *
14981 # The specified columns and rows are ignored
14982 # but the anchor point coordinates are not
14983 ocv=dilate:0x0+2x2/custom=diamond.shape|2
14984 @end example
14985
14986 @subsection erode
14987
14988 Erode an image by using a specific structuring element.
14989 It corresponds to the libopencv function @code{cvErode}.
14990
14991 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
14992 with the same syntax and semantics as the @ref{dilate} filter.
14993
14994 @subsection smooth
14995
14996 Smooth the input video.
14997
14998 The filter takes the following parameters:
14999 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
15000
15001 @var{type} is the type of smooth filter to apply, and must be one of
15002 the following values: "blur", "blur_no_scale", "median", "gaussian",
15003 or "bilateral". The default value is "gaussian".
15004
15005 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
15006 depends on the smooth type. @var{param1} and
15007 @var{param2} accept integer positive values or 0. @var{param3} and
15008 @var{param4} accept floating point values.
15009
15010 The default value for @var{param1} is 3. The default value for the
15011 other parameters is 0.
15012
15013 These parameters correspond to the parameters assigned to the
15014 libopencv function @code{cvSmooth}.
15015
15016 @section oscilloscope
15017
15018 2D Video Oscilloscope.
15019
15020 Useful to measure spatial impulse, step responses, chroma delays, etc.
15021
15022 It accepts the following parameters:
15023
15024 @table @option
15025 @item x
15026 Set scope center x position.
15027
15028 @item y
15029 Set scope center y position.
15030
15031 @item s
15032 Set scope size, relative to frame diagonal.
15033
15034 @item t
15035 Set scope tilt/rotation.
15036
15037 @item o
15038 Set trace opacity.
15039
15040 @item tx
15041 Set trace center x position.
15042
15043 @item ty
15044 Set trace center y position.
15045
15046 @item tw
15047 Set trace width, relative to width of frame.
15048
15049 @item th
15050 Set trace height, relative to height of frame.
15051
15052 @item c
15053 Set which components to trace. By default it traces first three components.
15054
15055 @item g
15056 Draw trace grid. By default is enabled.
15057
15058 @item st
15059 Draw some statistics. By default is enabled.
15060
15061 @item sc
15062 Draw scope. By default is enabled.
15063 @end table
15064
15065 @subsection Commands
15066 This filter supports same @ref{commands} as options.
15067 The command accepts the same syntax of the corresponding option.
15068
15069 If the specified expression is not valid, it is kept at its current
15070 value.
15071
15072 @subsection Examples
15073
15074 @itemize
15075 @item
15076 Inspect full first row of video frame.
15077 @example
15078 oscilloscope=x=0.5:y=0:s=1
15079 @end example
15080
15081 @item
15082 Inspect full last row of video frame.
15083 @example
15084 oscilloscope=x=0.5:y=1:s=1
15085 @end example
15086
15087 @item
15088 Inspect full 5th line of video frame of height 1080.
15089 @example
15090 oscilloscope=x=0.5:y=5/1080:s=1
15091 @end example
15092
15093 @item
15094 Inspect full last column of video frame.
15095 @example
15096 oscilloscope=x=1:y=0.5:s=1:t=1
15097 @end example
15098
15099 @end itemize
15100
15101 @anchor{overlay}
15102 @section overlay
15103
15104 Overlay one video on top of another.
15105
15106 It takes two inputs and has one output. The first input is the "main"
15107 video on which the second input is overlaid.
15108
15109 It accepts the following parameters:
15110
15111 A description of the accepted options follows.
15112
15113 @table @option
15114 @item x
15115 @item y
15116 Set the expression for the x and y coordinates of the overlaid video
15117 on the main video. Default value is "0" for both expressions. In case
15118 the expression is invalid, it is set to a huge value (meaning that the
15119 overlay will not be displayed within the output visible area).
15120
15121 @item eof_action
15122 See @ref{framesync}.
15123
15124 @item eval
15125 Set when the expressions for @option{x}, and @option{y} are evaluated.
15126
15127 It accepts the following values:
15128 @table @samp
15129 @item init
15130 only evaluate expressions once during the filter initialization or
15131 when a command is processed
15132
15133 @item frame
15134 evaluate expressions for each incoming frame
15135 @end table
15136
15137 Default value is @samp{frame}.
15138
15139 @item shortest
15140 See @ref{framesync}.
15141
15142 @item format
15143 Set the format for the output video.
15144
15145 It accepts the following values:
15146 @table @samp
15147 @item yuv420
15148 force YUV420 output
15149
15150 @item yuv420p10
15151 force YUV420p10 output
15152
15153 @item yuv422
15154 force YUV422 output
15155
15156 @item yuv422p10
15157 force YUV422p10 output
15158
15159 @item yuv444
15160 force YUV444 output
15161
15162 @item rgb
15163 force packed RGB output
15164
15165 @item gbrp
15166 force planar RGB output
15167
15168 @item auto
15169 automatically pick format
15170 @end table
15171
15172 Default value is @samp{yuv420}.
15173
15174 @item repeatlast
15175 See @ref{framesync}.
15176
15177 @item alpha
15178 Set format of alpha of the overlaid video, it can be @var{straight} or
15179 @var{premultiplied}. Default is @var{straight}.
15180 @end table
15181
15182 The @option{x}, and @option{y} expressions can contain the following
15183 parameters.
15184
15185 @table @option
15186 @item main_w, W
15187 @item main_h, H
15188 The main input width and height.
15189
15190 @item overlay_w, w
15191 @item overlay_h, h
15192 The overlay input width and height.
15193
15194 @item x
15195 @item y
15196 The computed values for @var{x} and @var{y}. They are evaluated for
15197 each new frame.
15198
15199 @item hsub
15200 @item vsub
15201 horizontal and vertical chroma subsample values of the output
15202 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
15203 @var{vsub} is 1.
15204
15205 @item n
15206 the number of input frame, starting from 0
15207
15208 @item pos
15209 the position in the file of the input frame, NAN if unknown
15210
15211 @item t
15212 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
15213
15214 @end table
15215
15216 This filter also supports the @ref{framesync} options.
15217
15218 Note that the @var{n}, @var{pos}, @var{t} variables are available only
15219 when evaluation is done @emph{per frame}, and will evaluate to NAN
15220 when @option{eval} is set to @samp{init}.
15221
15222 Be aware that frames are taken from each input video in timestamp
15223 order, hence, if their initial timestamps differ, it is a good idea
15224 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
15225 have them begin in the same zero timestamp, as the example for
15226 the @var{movie} filter does.
15227
15228 You can chain together more overlays but you should test the
15229 efficiency of such approach.
15230
15231 @subsection Commands
15232
15233 This filter supports the following commands:
15234 @table @option
15235 @item x
15236 @item y
15237 Modify the x and y of the overlay input.
15238 The command accepts the same syntax of the corresponding option.
15239
15240 If the specified expression is not valid, it is kept at its current
15241 value.
15242 @end table
15243
15244 @subsection Examples
15245
15246 @itemize
15247 @item
15248 Draw the overlay at 10 pixels from the bottom right corner of the main
15249 video:
15250 @example
15251 overlay=main_w-overlay_w-10:main_h-overlay_h-10
15252 @end example
15253
15254 Using named options the example above becomes:
15255 @example
15256 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
15257 @end example
15258
15259 @item
15260 Insert a transparent PNG logo in the bottom left corner of the input,
15261 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
15262 @example
15263 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
15264 @end example
15265
15266 @item
15267 Insert 2 different transparent PNG logos (second logo on bottom
15268 right corner) using the @command{ffmpeg} tool:
15269 @example
15270 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
15271 @end example
15272
15273 @item
15274 Add a transparent color layer on top of the main video; @code{WxH}
15275 must specify the size of the main input to the overlay filter:
15276 @example
15277 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
15278 @end example
15279
15280 @item
15281 Play an original video and a filtered version (here with the deshake
15282 filter) side by side using the @command{ffplay} tool:
15283 @example
15284 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
15285 @end example
15286
15287 The above command is the same as:
15288 @example
15289 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
15290 @end example
15291
15292 @item
15293 Make a sliding overlay appearing from the left to the right top part of the
15294 screen starting since time 2:
15295 @example
15296 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
15297 @end example
15298
15299 @item
15300 Compose output by putting two input videos side to side:
15301 @example
15302 ffmpeg -i left.avi -i right.avi -filter_complex "
15303 nullsrc=size=200x100 [background];
15304 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
15305 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
15306 [background][left]       overlay=shortest=1       [background+left];
15307 [background+left][right] overlay=shortest=1:x=100 [left+right]
15308 "
15309 @end example
15310
15311 @item
15312 Mask 10-20 seconds of a video by applying the delogo filter to a section
15313 @example
15314 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
15315 -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]'
15316 masked.avi
15317 @end example
15318
15319 @item
15320 Chain several overlays in cascade:
15321 @example
15322 nullsrc=s=200x200 [bg];
15323 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
15324 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
15325 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
15326 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
15327 [in3] null,       [mid2] overlay=100:100 [out0]
15328 @end example
15329
15330 @end itemize
15331
15332 @anchor{overlay_cuda}
15333 @section overlay_cuda
15334
15335 Overlay one video on top of another.
15336
15337 This is the CUDA variant of the @ref{overlay} filter.
15338 It only accepts CUDA frames. The underlying input pixel formats have to match.
15339
15340 It takes two inputs and has one output. The first input is the "main"
15341 video on which the second input is overlaid.
15342
15343 It accepts the following parameters:
15344
15345 @table @option
15346 @item x
15347 @item y
15348 Set the x and y coordinates of the overlaid video on the main video.
15349 Default value is "0" for both expressions.
15350
15351 @item eof_action
15352 See @ref{framesync}.
15353
15354 @item shortest
15355 See @ref{framesync}.
15356
15357 @item repeatlast
15358 See @ref{framesync}.
15359
15360 @end table
15361
15362 This filter also supports the @ref{framesync} options.
15363
15364 @section owdenoise
15365
15366 Apply Overcomplete Wavelet denoiser.
15367
15368 The filter accepts the following options:
15369
15370 @table @option
15371 @item depth
15372 Set depth.
15373
15374 Larger depth values will denoise lower frequency components more, but
15375 slow down filtering.
15376
15377 Must be an int in the range 8-16, default is @code{8}.
15378
15379 @item luma_strength, ls
15380 Set luma strength.
15381
15382 Must be a double value in the range 0-1000, default is @code{1.0}.
15383
15384 @item chroma_strength, cs
15385 Set chroma strength.
15386
15387 Must be a double value in the range 0-1000, default is @code{1.0}.
15388 @end table
15389
15390 @anchor{pad}
15391 @section pad
15392
15393 Add paddings to the input image, and place the original input at the
15394 provided @var{x}, @var{y} coordinates.
15395
15396 It accepts the following parameters:
15397
15398 @table @option
15399 @item width, w
15400 @item height, h
15401 Specify an expression for the size of the output image with the
15402 paddings added. If the value for @var{width} or @var{height} is 0, the
15403 corresponding input size is used for the output.
15404
15405 The @var{width} expression can reference the value set by the
15406 @var{height} expression, and vice versa.
15407
15408 The default value of @var{width} and @var{height} is 0.
15409
15410 @item x
15411 @item y
15412 Specify the offsets to place the input image at within the padded area,
15413 with respect to the top/left border of the output image.
15414
15415 The @var{x} expression can reference the value set by the @var{y}
15416 expression, and vice versa.
15417
15418 The default value of @var{x} and @var{y} is 0.
15419
15420 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
15421 so the input image is centered on the padded area.
15422
15423 @item color
15424 Specify the color of the padded area. For the syntax of this option,
15425 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15426 manual,ffmpeg-utils}.
15427
15428 The default value of @var{color} is "black".
15429
15430 @item eval
15431 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
15432
15433 It accepts the following values:
15434
15435 @table @samp
15436 @item init
15437 Only evaluate expressions once during the filter initialization or when
15438 a command is processed.
15439
15440 @item frame
15441 Evaluate expressions for each incoming frame.
15442
15443 @end table
15444
15445 Default value is @samp{init}.
15446
15447 @item aspect
15448 Pad to aspect instead to a resolution.
15449
15450 @end table
15451
15452 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
15453 options are expressions containing the following constants:
15454
15455 @table @option
15456 @item in_w
15457 @item in_h
15458 The input video width and height.
15459
15460 @item iw
15461 @item ih
15462 These are the same as @var{in_w} and @var{in_h}.
15463
15464 @item out_w
15465 @item out_h
15466 The output width and height (the size of the padded area), as
15467 specified by the @var{width} and @var{height} expressions.
15468
15469 @item ow
15470 @item oh
15471 These are the same as @var{out_w} and @var{out_h}.
15472
15473 @item x
15474 @item y
15475 The x and y offsets as specified by the @var{x} and @var{y}
15476 expressions, or NAN if not yet specified.
15477
15478 @item a
15479 same as @var{iw} / @var{ih}
15480
15481 @item sar
15482 input sample aspect ratio
15483
15484 @item dar
15485 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15486
15487 @item hsub
15488 @item vsub
15489 The horizontal and vertical chroma subsample values. For example for the
15490 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15491 @end table
15492
15493 @subsection Examples
15494
15495 @itemize
15496 @item
15497 Add paddings with the color "violet" to the input video. The output video
15498 size is 640x480, and the top-left corner of the input video is placed at
15499 column 0, row 40
15500 @example
15501 pad=640:480:0:40:violet
15502 @end example
15503
15504 The example above is equivalent to the following command:
15505 @example
15506 pad=width=640:height=480:x=0:y=40:color=violet
15507 @end example
15508
15509 @item
15510 Pad the input to get an output with dimensions increased by 3/2,
15511 and put the input video at the center of the padded area:
15512 @example
15513 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15514 @end example
15515
15516 @item
15517 Pad the input to get a squared output with size equal to the maximum
15518 value between the input width and height, and put the input video at
15519 the center of the padded area:
15520 @example
15521 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15522 @end example
15523
15524 @item
15525 Pad the input to get a final w/h ratio of 16:9:
15526 @example
15527 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15528 @end example
15529
15530 @item
15531 In case of anamorphic video, in order to set the output display aspect
15532 correctly, it is necessary to use @var{sar} in the expression,
15533 according to the relation:
15534 @example
15535 (ih * X / ih) * sar = output_dar
15536 X = output_dar / sar
15537 @end example
15538
15539 Thus the previous example needs to be modified to:
15540 @example
15541 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15542 @end example
15543
15544 @item
15545 Double the output size and put the input video in the bottom-right
15546 corner of the output padded area:
15547 @example
15548 pad="2*iw:2*ih:ow-iw:oh-ih"
15549 @end example
15550 @end itemize
15551
15552 @anchor{palettegen}
15553 @section palettegen
15554
15555 Generate one palette for a whole video stream.
15556
15557 It accepts the following options:
15558
15559 @table @option
15560 @item max_colors
15561 Set the maximum number of colors to quantize in the palette.
15562 Note: the palette will still contain 256 colors; the unused palette entries
15563 will be black.
15564
15565 @item reserve_transparent
15566 Create a palette of 255 colors maximum and reserve the last one for
15567 transparency. Reserving the transparency color is useful for GIF optimization.
15568 If not set, the maximum of colors in the palette will be 256. You probably want
15569 to disable this option for a standalone image.
15570 Set by default.
15571
15572 @item transparency_color
15573 Set the color that will be used as background for transparency.
15574
15575 @item stats_mode
15576 Set statistics mode.
15577
15578 It accepts the following values:
15579 @table @samp
15580 @item full
15581 Compute full frame histograms.
15582 @item diff
15583 Compute histograms only for the part that differs from previous frame. This
15584 might be relevant to give more importance to the moving part of your input if
15585 the background is static.
15586 @item single
15587 Compute new histogram for each frame.
15588 @end table
15589
15590 Default value is @var{full}.
15591 @end table
15592
15593 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
15594 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
15595 color quantization of the palette. This information is also visible at
15596 @var{info} logging level.
15597
15598 @subsection Examples
15599
15600 @itemize
15601 @item
15602 Generate a representative palette of a given video using @command{ffmpeg}:
15603 @example
15604 ffmpeg -i input.mkv -vf palettegen palette.png
15605 @end example
15606 @end itemize
15607
15608 @section paletteuse
15609
15610 Use a palette to downsample an input video stream.
15611
15612 The filter takes two inputs: one video stream and a palette. The palette must
15613 be a 256 pixels image.
15614
15615 It accepts the following options:
15616
15617 @table @option
15618 @item dither
15619 Select dithering mode. Available algorithms are:
15620 @table @samp
15621 @item bayer
15622 Ordered 8x8 bayer dithering (deterministic)
15623 @item heckbert
15624 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
15625 Note: this dithering is sometimes considered "wrong" and is included as a
15626 reference.
15627 @item floyd_steinberg
15628 Floyd and Steingberg dithering (error diffusion)
15629 @item sierra2
15630 Frankie Sierra dithering v2 (error diffusion)
15631 @item sierra2_4a
15632 Frankie Sierra dithering v2 "Lite" (error diffusion)
15633 @end table
15634
15635 Default is @var{sierra2_4a}.
15636
15637 @item bayer_scale
15638 When @var{bayer} dithering is selected, this option defines the scale of the
15639 pattern (how much the crosshatch pattern is visible). A low value means more
15640 visible pattern for less banding, and higher value means less visible pattern
15641 at the cost of more banding.
15642
15643 The option must be an integer value in the range [0,5]. Default is @var{2}.
15644
15645 @item diff_mode
15646 If set, define the zone to process
15647
15648 @table @samp
15649 @item rectangle
15650 Only the changing rectangle will be reprocessed. This is similar to GIF
15651 cropping/offsetting compression mechanism. This option can be useful for speed
15652 if only a part of the image is changing, and has use cases such as limiting the
15653 scope of the error diffusal @option{dither} to the rectangle that bounds the
15654 moving scene (it leads to more deterministic output if the scene doesn't change
15655 much, and as a result less moving noise and better GIF compression).
15656 @end table
15657
15658 Default is @var{none}.
15659
15660 @item new
15661 Take new palette for each output frame.
15662
15663 @item alpha_threshold
15664 Sets the alpha threshold for transparency. Alpha values above this threshold
15665 will be treated as completely opaque, and values below this threshold will be
15666 treated as completely transparent.
15667
15668 The option must be an integer value in the range [0,255]. Default is @var{128}.
15669 @end table
15670
15671 @subsection Examples
15672
15673 @itemize
15674 @item
15675 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
15676 using @command{ffmpeg}:
15677 @example
15678 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
15679 @end example
15680 @end itemize
15681
15682 @section perspective
15683
15684 Correct perspective of video not recorded perpendicular to the screen.
15685
15686 A description of the accepted parameters follows.
15687
15688 @table @option
15689 @item x0
15690 @item y0
15691 @item x1
15692 @item y1
15693 @item x2
15694 @item y2
15695 @item x3
15696 @item y3
15697 Set coordinates expression for top left, top right, bottom left and bottom right corners.
15698 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
15699 If the @code{sense} option is set to @code{source}, then the specified points will be sent
15700 to the corners of the destination. If the @code{sense} option is set to @code{destination},
15701 then the corners of the source will be sent to the specified coordinates.
15702
15703 The expressions can use the following variables:
15704
15705 @table @option
15706 @item W
15707 @item H
15708 the width and height of video frame.
15709 @item in
15710 Input frame count.
15711 @item on
15712 Output frame count.
15713 @end table
15714
15715 @item interpolation
15716 Set interpolation for perspective correction.
15717
15718 It accepts the following values:
15719 @table @samp
15720 @item linear
15721 @item cubic
15722 @end table
15723
15724 Default value is @samp{linear}.
15725
15726 @item sense
15727 Set interpretation of coordinate options.
15728
15729 It accepts the following values:
15730 @table @samp
15731 @item 0, source
15732
15733 Send point in the source specified by the given coordinates to
15734 the corners of the destination.
15735
15736 @item 1, destination
15737
15738 Send the corners of the source to the point in the destination specified
15739 by the given coordinates.
15740
15741 Default value is @samp{source}.
15742 @end table
15743
15744 @item eval
15745 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
15746
15747 It accepts the following values:
15748 @table @samp
15749 @item init
15750 only evaluate expressions once during the filter initialization or
15751 when a command is processed
15752
15753 @item frame
15754 evaluate expressions for each incoming frame
15755 @end table
15756
15757 Default value is @samp{init}.
15758 @end table
15759
15760 @section phase
15761
15762 Delay interlaced video by one field time so that the field order changes.
15763
15764 The intended use is to fix PAL movies that have been captured with the
15765 opposite field order to the film-to-video transfer.
15766
15767 A description of the accepted parameters follows.
15768
15769 @table @option
15770 @item mode
15771 Set phase mode.
15772
15773 It accepts the following values:
15774 @table @samp
15775 @item t
15776 Capture field order top-first, transfer bottom-first.
15777 Filter will delay the bottom field.
15778
15779 @item b
15780 Capture field order bottom-first, transfer top-first.
15781 Filter will delay the top field.
15782
15783 @item p
15784 Capture and transfer with the same field order. This mode only exists
15785 for the documentation of the other options to refer to, but if you
15786 actually select it, the filter will faithfully do nothing.
15787
15788 @item a
15789 Capture field order determined automatically by field flags, transfer
15790 opposite.
15791 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
15792 basis using field flags. If no field information is available,
15793 then this works just like @samp{u}.
15794
15795 @item u
15796 Capture unknown or varying, transfer opposite.
15797 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
15798 analyzing the images and selecting the alternative that produces best
15799 match between the fields.
15800
15801 @item T
15802 Capture top-first, transfer unknown or varying.
15803 Filter selects among @samp{t} and @samp{p} using image analysis.
15804
15805 @item B
15806 Capture bottom-first, transfer unknown or varying.
15807 Filter selects among @samp{b} and @samp{p} using image analysis.
15808
15809 @item A
15810 Capture determined by field flags, transfer unknown or varying.
15811 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
15812 image analysis. If no field information is available, then this works just
15813 like @samp{U}. This is the default mode.
15814
15815 @item U
15816 Both capture and transfer unknown or varying.
15817 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
15818 @end table
15819 @end table
15820
15821 @subsection Commands
15822
15823 This filter supports the all above options as @ref{commands}.
15824
15825 @section photosensitivity
15826 Reduce various flashes in video, so to help users with epilepsy.
15827
15828 It accepts the following options:
15829 @table @option
15830 @item frames, f
15831 Set how many frames to use when filtering. Default is 30.
15832
15833 @item threshold, t
15834 Set detection threshold factor. Default is 1.
15835 Lower is stricter.
15836
15837 @item skip
15838 Set how many pixels to skip when sampling frames. Default is 1.
15839 Allowed range is from 1 to 1024.
15840
15841 @item bypass
15842 Leave frames unchanged. Default is disabled.
15843 @end table
15844
15845 @section pixdesctest
15846
15847 Pixel format descriptor test filter, mainly useful for internal
15848 testing. The output video should be equal to the input video.
15849
15850 For example:
15851 @example
15852 format=monow, pixdesctest
15853 @end example
15854
15855 can be used to test the monowhite pixel format descriptor definition.
15856
15857 @section pixscope
15858
15859 Display sample values of color channels. Mainly useful for checking color
15860 and levels. Minimum supported resolution is 640x480.
15861
15862 The filters accept the following options:
15863
15864 @table @option
15865 @item x
15866 Set scope X position, relative offset on X axis.
15867
15868 @item y
15869 Set scope Y position, relative offset on Y axis.
15870
15871 @item w
15872 Set scope width.
15873
15874 @item h
15875 Set scope height.
15876
15877 @item o
15878 Set window opacity. This window also holds statistics about pixel area.
15879
15880 @item wx
15881 Set window X position, relative offset on X axis.
15882
15883 @item wy
15884 Set window Y position, relative offset on Y axis.
15885 @end table
15886
15887 @section pp
15888
15889 Enable the specified chain of postprocessing subfilters using libpostproc. This
15890 library should be automatically selected with a GPL build (@code{--enable-gpl}).
15891 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
15892 Each subfilter and some options have a short and a long name that can be used
15893 interchangeably, i.e. dr/dering are the same.
15894
15895 The filters accept the following options:
15896
15897 @table @option
15898 @item subfilters
15899 Set postprocessing subfilters string.
15900 @end table
15901
15902 All subfilters share common options to determine their scope:
15903
15904 @table @option
15905 @item a/autoq
15906 Honor the quality commands for this subfilter.
15907
15908 @item c/chrom
15909 Do chrominance filtering, too (default).
15910
15911 @item y/nochrom
15912 Do luminance filtering only (no chrominance).
15913
15914 @item n/noluma
15915 Do chrominance filtering only (no luminance).
15916 @end table
15917
15918 These options can be appended after the subfilter name, separated by a '|'.
15919
15920 Available subfilters are:
15921
15922 @table @option
15923 @item hb/hdeblock[|difference[|flatness]]
15924 Horizontal deblocking filter
15925 @table @option
15926 @item difference
15927 Difference factor where higher values mean more deblocking (default: @code{32}).
15928 @item flatness
15929 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15930 @end table
15931
15932 @item vb/vdeblock[|difference[|flatness]]
15933 Vertical deblocking filter
15934 @table @option
15935 @item difference
15936 Difference factor where higher values mean more deblocking (default: @code{32}).
15937 @item flatness
15938 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15939 @end table
15940
15941 @item ha/hadeblock[|difference[|flatness]]
15942 Accurate horizontal deblocking filter
15943 @table @option
15944 @item difference
15945 Difference factor where higher values mean more deblocking (default: @code{32}).
15946 @item flatness
15947 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15948 @end table
15949
15950 @item va/vadeblock[|difference[|flatness]]
15951 Accurate vertical deblocking filter
15952 @table @option
15953 @item difference
15954 Difference factor where higher values mean more deblocking (default: @code{32}).
15955 @item flatness
15956 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15957 @end table
15958 @end table
15959
15960 The horizontal and vertical deblocking filters share the difference and
15961 flatness values so you cannot set different horizontal and vertical
15962 thresholds.
15963
15964 @table @option
15965 @item h1/x1hdeblock
15966 Experimental horizontal deblocking filter
15967
15968 @item v1/x1vdeblock
15969 Experimental vertical deblocking filter
15970
15971 @item dr/dering
15972 Deringing filter
15973
15974 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
15975 @table @option
15976 @item threshold1
15977 larger -> stronger filtering
15978 @item threshold2
15979 larger -> stronger filtering
15980 @item threshold3
15981 larger -> stronger filtering
15982 @end table
15983
15984 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15985 @table @option
15986 @item f/fullyrange
15987 Stretch luminance to @code{0-255}.
15988 @end table
15989
15990 @item lb/linblenddeint
15991 Linear blend deinterlacing filter that deinterlaces the given block by
15992 filtering all lines with a @code{(1 2 1)} filter.
15993
15994 @item li/linipoldeint
15995 Linear interpolating deinterlacing filter that deinterlaces the given block by
15996 linearly interpolating every second line.
15997
15998 @item ci/cubicipoldeint
15999 Cubic interpolating deinterlacing filter deinterlaces the given block by
16000 cubically interpolating every second line.
16001
16002 @item md/mediandeint
16003 Median deinterlacing filter that deinterlaces the given block by applying a
16004 median filter to every second line.
16005
16006 @item fd/ffmpegdeint
16007 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
16008 second line with a @code{(-1 4 2 4 -1)} filter.
16009
16010 @item l5/lowpass5
16011 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
16012 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
16013
16014 @item fq/forceQuant[|quantizer]
16015 Overrides the quantizer table from the input with the constant quantizer you
16016 specify.
16017 @table @option
16018 @item quantizer
16019 Quantizer to use
16020 @end table
16021
16022 @item de/default
16023 Default pp filter combination (@code{hb|a,vb|a,dr|a})
16024
16025 @item fa/fast
16026 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
16027
16028 @item ac
16029 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
16030 @end table
16031
16032 @subsection Examples
16033
16034 @itemize
16035 @item
16036 Apply horizontal and vertical deblocking, deringing and automatic
16037 brightness/contrast:
16038 @example
16039 pp=hb/vb/dr/al
16040 @end example
16041
16042 @item
16043 Apply default filters without brightness/contrast correction:
16044 @example
16045 pp=de/-al
16046 @end example
16047
16048 @item
16049 Apply default filters and temporal denoiser:
16050 @example
16051 pp=default/tmpnoise|1|2|3
16052 @end example
16053
16054 @item
16055 Apply deblocking on luminance only, and switch vertical deblocking on or off
16056 automatically depending on available CPU time:
16057 @example
16058 pp=hb|y/vb|a
16059 @end example
16060 @end itemize
16061
16062 @section pp7
16063 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
16064 similar to spp = 6 with 7 point DCT, where only the center sample is
16065 used after IDCT.
16066
16067 The filter accepts the following options:
16068
16069 @table @option
16070 @item qp
16071 Force a constant quantization parameter. It accepts an integer in range
16072 0 to 63. If not set, the filter will use the QP from the video stream
16073 (if available).
16074
16075 @item mode
16076 Set thresholding mode. Available modes are:
16077
16078 @table @samp
16079 @item hard
16080 Set hard thresholding.
16081 @item soft
16082 Set soft thresholding (better de-ringing effect, but likely blurrier).
16083 @item medium
16084 Set medium thresholding (good results, default).
16085 @end table
16086 @end table
16087
16088 @section premultiply
16089 Apply alpha premultiply effect to input video stream using first plane
16090 of second stream as alpha.
16091
16092 Both streams must have same dimensions and same pixel format.
16093
16094 The filter accepts the following option:
16095
16096 @table @option
16097 @item planes
16098 Set which planes will be processed, unprocessed planes will be copied.
16099 By default value 0xf, all planes will be processed.
16100
16101 @item inplace
16102 Do not require 2nd input for processing, instead use alpha plane from input stream.
16103 @end table
16104
16105 @section prewitt
16106 Apply prewitt operator to input video stream.
16107
16108 The filter accepts the following option:
16109
16110 @table @option
16111 @item planes
16112 Set which planes will be processed, unprocessed planes will be copied.
16113 By default value 0xf, all planes will be processed.
16114
16115 @item scale
16116 Set value which will be multiplied with filtered result.
16117
16118 @item delta
16119 Set value which will be added to filtered result.
16120 @end table
16121
16122 @subsection Commands
16123
16124 This filter supports the all above options as @ref{commands}.
16125
16126 @section pseudocolor
16127
16128 Alter frame colors in video with pseudocolors.
16129
16130 This filter accepts the following options:
16131
16132 @table @option
16133 @item c0
16134 set pixel first component expression
16135
16136 @item c1
16137 set pixel second component expression
16138
16139 @item c2
16140 set pixel third component expression
16141
16142 @item c3
16143 set pixel fourth component expression, corresponds to the alpha component
16144
16145 @item i
16146 set component to use as base for altering colors
16147 @end table
16148
16149 Each of them specifies the expression to use for computing the lookup table for
16150 the corresponding pixel component values.
16151
16152 The expressions can contain the following constants and functions:
16153
16154 @table @option
16155 @item w
16156 @item h
16157 The input width and height.
16158
16159 @item val
16160 The input value for the pixel component.
16161
16162 @item ymin, umin, vmin, amin
16163 The minimum allowed component value.
16164
16165 @item ymax, umax, vmax, amax
16166 The maximum allowed component value.
16167 @end table
16168
16169 All expressions default to "val".
16170
16171 @subsection Examples
16172
16173 @itemize
16174 @item
16175 Change too high luma values to gradient:
16176 @example
16177 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'"
16178 @end example
16179 @end itemize
16180
16181 @section psnr
16182
16183 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
16184 Ratio) between two input videos.
16185
16186 This filter takes in input two input videos, the first input is
16187 considered the "main" source and is passed unchanged to the
16188 output. The second input is used as a "reference" video for computing
16189 the PSNR.
16190
16191 Both video inputs must have the same resolution and pixel format for
16192 this filter to work correctly. Also it assumes that both inputs
16193 have the same number of frames, which are compared one by one.
16194
16195 The obtained average PSNR is printed through the logging system.
16196
16197 The filter stores the accumulated MSE (mean squared error) of each
16198 frame, and at the end of the processing it is averaged across all frames
16199 equally, and the following formula is applied to obtain the PSNR:
16200
16201 @example
16202 PSNR = 10*log10(MAX^2/MSE)
16203 @end example
16204
16205 Where MAX is the average of the maximum values of each component of the
16206 image.
16207
16208 The description of the accepted parameters follows.
16209
16210 @table @option
16211 @item stats_file, f
16212 If specified the filter will use the named file to save the PSNR of
16213 each individual frame. When filename equals "-" the data is sent to
16214 standard output.
16215
16216 @item stats_version
16217 Specifies which version of the stats file format to use. Details of
16218 each format are written below.
16219 Default value is 1.
16220
16221 @item stats_add_max
16222 Determines whether the max value is output to the stats log.
16223 Default value is 0.
16224 Requires stats_version >= 2. If this is set and stats_version < 2,
16225 the filter will return an error.
16226 @end table
16227
16228 This filter also supports the @ref{framesync} options.
16229
16230 The file printed if @var{stats_file} is selected, contains a sequence of
16231 key/value pairs of the form @var{key}:@var{value} for each compared
16232 couple of frames.
16233
16234 If a @var{stats_version} greater than 1 is specified, a header line precedes
16235 the list of per-frame-pair stats, with key value pairs following the frame
16236 format with the following parameters:
16237
16238 @table @option
16239 @item psnr_log_version
16240 The version of the log file format. Will match @var{stats_version}.
16241
16242 @item fields
16243 A comma separated list of the per-frame-pair parameters included in
16244 the log.
16245 @end table
16246
16247 A description of each shown per-frame-pair parameter follows:
16248
16249 @table @option
16250 @item n
16251 sequential number of the input frame, starting from 1
16252
16253 @item mse_avg
16254 Mean Square Error pixel-by-pixel average difference of the compared
16255 frames, averaged over all the image components.
16256
16257 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
16258 Mean Square Error pixel-by-pixel average difference of the compared
16259 frames for the component specified by the suffix.
16260
16261 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
16262 Peak Signal to Noise ratio of the compared frames for the component
16263 specified by the suffix.
16264
16265 @item max_avg, max_y, max_u, max_v
16266 Maximum allowed value for each channel, and average over all
16267 channels.
16268 @end table
16269
16270 @subsection Examples
16271 @itemize
16272 @item
16273 For example:
16274 @example
16275 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16276 [main][ref] psnr="stats_file=stats.log" [out]
16277 @end example
16278
16279 On this example the input file being processed is compared with the
16280 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
16281 is stored in @file{stats.log}.
16282
16283 @item
16284 Another example with different containers:
16285 @example
16286 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 -
16287 @end example
16288 @end itemize
16289
16290 @anchor{pullup}
16291 @section pullup
16292
16293 Pulldown reversal (inverse telecine) filter, capable of handling mixed
16294 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
16295 content.
16296
16297 The pullup filter is designed to take advantage of future context in making
16298 its decisions. This filter is stateless in the sense that it does not lock
16299 onto a pattern to follow, but it instead looks forward to the following
16300 fields in order to identify matches and rebuild progressive frames.
16301
16302 To produce content with an even framerate, insert the fps filter after
16303 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
16304 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
16305
16306 The filter accepts the following options:
16307
16308 @table @option
16309 @item jl
16310 @item jr
16311 @item jt
16312 @item jb
16313 These options set the amount of "junk" to ignore at the left, right, top, and
16314 bottom of the image, respectively. Left and right are in units of 8 pixels,
16315 while top and bottom are in units of 2 lines.
16316 The default is 8 pixels on each side.
16317
16318 @item sb
16319 Set the strict breaks. Setting this option to 1 will reduce the chances of
16320 filter generating an occasional mismatched frame, but it may also cause an
16321 excessive number of frames to be dropped during high motion sequences.
16322 Conversely, setting it to -1 will make filter match fields more easily.
16323 This may help processing of video where there is slight blurring between
16324 the fields, but may also cause there to be interlaced frames in the output.
16325 Default value is @code{0}.
16326
16327 @item mp
16328 Set the metric plane to use. It accepts the following values:
16329 @table @samp
16330 @item l
16331 Use luma plane.
16332
16333 @item u
16334 Use chroma blue plane.
16335
16336 @item v
16337 Use chroma red plane.
16338 @end table
16339
16340 This option may be set to use chroma plane instead of the default luma plane
16341 for doing filter's computations. This may improve accuracy on very clean
16342 source material, but more likely will decrease accuracy, especially if there
16343 is chroma noise (rainbow effect) or any grayscale video.
16344 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
16345 load and make pullup usable in realtime on slow machines.
16346 @end table
16347
16348 For best results (without duplicated frames in the output file) it is
16349 necessary to change the output frame rate. For example, to inverse
16350 telecine NTSC input:
16351 @example
16352 ffmpeg -i input -vf pullup -r 24000/1001 ...
16353 @end example
16354
16355 @section qp
16356
16357 Change video quantization parameters (QP).
16358
16359 The filter accepts the following option:
16360
16361 @table @option
16362 @item qp
16363 Set expression for quantization parameter.
16364 @end table
16365
16366 The expression is evaluated through the eval API and can contain, among others,
16367 the following constants:
16368
16369 @table @var
16370 @item known
16371 1 if index is not 129, 0 otherwise.
16372
16373 @item qp
16374 Sequential index starting from -129 to 128.
16375 @end table
16376
16377 @subsection Examples
16378
16379 @itemize
16380 @item
16381 Some equation like:
16382 @example
16383 qp=2+2*sin(PI*qp)
16384 @end example
16385 @end itemize
16386
16387 @section random
16388
16389 Flush video frames from internal cache of frames into a random order.
16390 No frame is discarded.
16391 Inspired by @ref{frei0r} nervous filter.
16392
16393 @table @option
16394 @item frames
16395 Set size in number of frames of internal cache, in range from @code{2} to
16396 @code{512}. Default is @code{30}.
16397
16398 @item seed
16399 Set seed for random number generator, must be an integer included between
16400 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16401 less than @code{0}, the filter will try to use a good random seed on a
16402 best effort basis.
16403 @end table
16404
16405 @section readeia608
16406
16407 Read closed captioning (EIA-608) information from the top lines of a video frame.
16408
16409 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
16410 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
16411 with EIA-608 data (starting from 0). A description of each metadata value follows:
16412
16413 @table @option
16414 @item lavfi.readeia608.X.cc
16415 The two bytes stored as EIA-608 data (printed in hexadecimal).
16416
16417 @item lavfi.readeia608.X.line
16418 The number of the line on which the EIA-608 data was identified and read.
16419 @end table
16420
16421 This filter accepts the following options:
16422
16423 @table @option
16424 @item scan_min
16425 Set the line to start scanning for EIA-608 data. Default is @code{0}.
16426
16427 @item scan_max
16428 Set the line to end scanning for EIA-608 data. Default is @code{29}.
16429
16430 @item spw
16431 Set the ratio of width reserved for sync code detection.
16432 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
16433
16434 @item chp
16435 Enable checking the parity bit. In the event of a parity error, the filter will output
16436 @code{0x00} for that character. Default is false.
16437
16438 @item lp
16439 Lowpass lines prior to further processing. Default is enabled.
16440 @end table
16441
16442 @subsection Commands
16443
16444 This filter supports the all above options as @ref{commands}.
16445
16446 @subsection Examples
16447
16448 @itemize
16449 @item
16450 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
16451 @example
16452 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
16453 @end example
16454 @end itemize
16455
16456 @section readvitc
16457
16458 Read vertical interval timecode (VITC) information from the top lines of a
16459 video frame.
16460
16461 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
16462 timecode value, if a valid timecode has been detected. Further metadata key
16463 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
16464 timecode data has been found or not.
16465
16466 This filter accepts the following options:
16467
16468 @table @option
16469 @item scan_max
16470 Set the maximum number of lines to scan for VITC data. If the value is set to
16471 @code{-1} the full video frame is scanned. Default is @code{45}.
16472
16473 @item thr_b
16474 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
16475 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
16476
16477 @item thr_w
16478 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16479 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16480 @end table
16481
16482 @subsection Examples
16483
16484 @itemize
16485 @item
16486 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16487 draw @code{--:--:--:--} as a placeholder:
16488 @example
16489 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16490 @end example
16491 @end itemize
16492
16493 @section remap
16494
16495 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16496
16497 Destination pixel at position (X, Y) will be picked from source (x, y) position
16498 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16499 value for pixel will be used for destination pixel.
16500
16501 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16502 will have Xmap/Ymap video stream dimensions.
16503 Xmap and Ymap input video streams are 16bit depth, single channel.
16504
16505 @table @option
16506 @item format
16507 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16508 Default is @code{color}.
16509
16510 @item fill
16511 Specify the color of the unmapped pixels. For the syntax of this option,
16512 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16513 manual,ffmpeg-utils}. Default color is @code{black}.
16514 @end table
16515
16516 @section removegrain
16517
16518 The removegrain filter is a spatial denoiser for progressive video.
16519
16520 @table @option
16521 @item m0
16522 Set mode for the first plane.
16523
16524 @item m1
16525 Set mode for the second plane.
16526
16527 @item m2
16528 Set mode for the third plane.
16529
16530 @item m3
16531 Set mode for the fourth plane.
16532 @end table
16533
16534 Range of mode is from 0 to 24. Description of each mode follows:
16535
16536 @table @var
16537 @item 0
16538 Leave input plane unchanged. Default.
16539
16540 @item 1
16541 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16542
16543 @item 2
16544 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16545
16546 @item 3
16547 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16548
16549 @item 4
16550 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
16551 This is equivalent to a median filter.
16552
16553 @item 5
16554 Line-sensitive clipping giving the minimal change.
16555
16556 @item 6
16557 Line-sensitive clipping, intermediate.
16558
16559 @item 7
16560 Line-sensitive clipping, intermediate.
16561
16562 @item 8
16563 Line-sensitive clipping, intermediate.
16564
16565 @item 9
16566 Line-sensitive clipping on a line where the neighbours pixels are the closest.
16567
16568 @item 10
16569 Replaces the target pixel with the closest neighbour.
16570
16571 @item 11
16572 [1 2 1] horizontal and vertical kernel blur.
16573
16574 @item 12
16575 Same as mode 11.
16576
16577 @item 13
16578 Bob mode, interpolates top field from the line where the neighbours
16579 pixels are the closest.
16580
16581 @item 14
16582 Bob mode, interpolates bottom field from the line where the neighbours
16583 pixels are the closest.
16584
16585 @item 15
16586 Bob mode, interpolates top field. Same as 13 but with a more complicated
16587 interpolation formula.
16588
16589 @item 16
16590 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
16591 interpolation formula.
16592
16593 @item 17
16594 Clips the pixel with the minimum and maximum of respectively the maximum and
16595 minimum of each pair of opposite neighbour pixels.
16596
16597 @item 18
16598 Line-sensitive clipping using opposite neighbours whose greatest distance from
16599 the current pixel is minimal.
16600
16601 @item 19
16602 Replaces the pixel with the average of its 8 neighbours.
16603
16604 @item 20
16605 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
16606
16607 @item 21
16608 Clips pixels using the averages of opposite neighbour.
16609
16610 @item 22
16611 Same as mode 21 but simpler and faster.
16612
16613 @item 23
16614 Small edge and halo removal, but reputed useless.
16615
16616 @item 24
16617 Similar as 23.
16618 @end table
16619
16620 @section removelogo
16621
16622 Suppress a TV station logo, using an image file to determine which
16623 pixels comprise the logo. It works by filling in the pixels that
16624 comprise the logo with neighboring pixels.
16625
16626 The filter accepts the following options:
16627
16628 @table @option
16629 @item filename, f
16630 Set the filter bitmap file, which can be any image format supported by
16631 libavformat. The width and height of the image file must match those of the
16632 video stream being processed.
16633 @end table
16634
16635 Pixels in the provided bitmap image with a value of zero are not
16636 considered part of the logo, non-zero pixels are considered part of
16637 the logo. If you use white (255) for the logo and black (0) for the
16638 rest, you will be safe. For making the filter bitmap, it is
16639 recommended to take a screen capture of a black frame with the logo
16640 visible, and then using a threshold filter followed by the erode
16641 filter once or twice.
16642
16643 If needed, little splotches can be fixed manually. Remember that if
16644 logo pixels are not covered, the filter quality will be much
16645 reduced. Marking too many pixels as part of the logo does not hurt as
16646 much, but it will increase the amount of blurring needed to cover over
16647 the image and will destroy more information than necessary, and extra
16648 pixels will slow things down on a large logo.
16649
16650 @section repeatfields
16651
16652 This filter uses the repeat_field flag from the Video ES headers and hard repeats
16653 fields based on its value.
16654
16655 @section reverse
16656
16657 Reverse a video clip.
16658
16659 Warning: This filter requires memory to buffer the entire clip, so trimming
16660 is suggested.
16661
16662 @subsection Examples
16663
16664 @itemize
16665 @item
16666 Take the first 5 seconds of a clip, and reverse it.
16667 @example
16668 trim=end=5,reverse
16669 @end example
16670 @end itemize
16671
16672 @section rgbashift
16673 Shift R/G/B/A pixels horizontally and/or vertically.
16674
16675 The filter accepts the following options:
16676 @table @option
16677 @item rh
16678 Set amount to shift red horizontally.
16679 @item rv
16680 Set amount to shift red vertically.
16681 @item gh
16682 Set amount to shift green horizontally.
16683 @item gv
16684 Set amount to shift green vertically.
16685 @item bh
16686 Set amount to shift blue horizontally.
16687 @item bv
16688 Set amount to shift blue vertically.
16689 @item ah
16690 Set amount to shift alpha horizontally.
16691 @item av
16692 Set amount to shift alpha vertically.
16693 @item edge
16694 Set edge mode, can be @var{smear}, default, or @var{warp}.
16695 @end table
16696
16697 @subsection Commands
16698
16699 This filter supports the all above options as @ref{commands}.
16700
16701 @section roberts
16702 Apply roberts cross operator to input video stream.
16703
16704 The filter accepts the following option:
16705
16706 @table @option
16707 @item planes
16708 Set which planes will be processed, unprocessed planes will be copied.
16709 By default value 0xf, all planes will be processed.
16710
16711 @item scale
16712 Set value which will be multiplied with filtered result.
16713
16714 @item delta
16715 Set value which will be added to filtered result.
16716 @end table
16717
16718 @subsection Commands
16719
16720 This filter supports the all above options as @ref{commands}.
16721
16722 @section rotate
16723
16724 Rotate video by an arbitrary angle expressed in radians.
16725
16726 The filter accepts the following options:
16727
16728 A description of the optional parameters follows.
16729 @table @option
16730 @item angle, a
16731 Set an expression for the angle by which to rotate the input video
16732 clockwise, expressed as a number of radians. A negative value will
16733 result in a counter-clockwise rotation. By default it is set to "0".
16734
16735 This expression is evaluated for each frame.
16736
16737 @item out_w, ow
16738 Set the output width expression, default value is "iw".
16739 This expression is evaluated just once during configuration.
16740
16741 @item out_h, oh
16742 Set the output height expression, default value is "ih".
16743 This expression is evaluated just once during configuration.
16744
16745 @item bilinear
16746 Enable bilinear interpolation if set to 1, a value of 0 disables
16747 it. Default value is 1.
16748
16749 @item fillcolor, c
16750 Set the color used to fill the output area not covered by the rotated
16751 image. For the general syntax of this option, check the
16752 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16753 If the special value "none" is selected then no
16754 background is printed (useful for example if the background is never shown).
16755
16756 Default value is "black".
16757 @end table
16758
16759 The expressions for the angle and the output size can contain the
16760 following constants and functions:
16761
16762 @table @option
16763 @item n
16764 sequential number of the input frame, starting from 0. It is always NAN
16765 before the first frame is filtered.
16766
16767 @item t
16768 time in seconds of the input frame, it is set to 0 when the filter is
16769 configured. It is always NAN before the first frame is filtered.
16770
16771 @item hsub
16772 @item vsub
16773 horizontal and vertical chroma subsample values. For example for the
16774 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16775
16776 @item in_w, iw
16777 @item in_h, ih
16778 the input video width and height
16779
16780 @item out_w, ow
16781 @item out_h, oh
16782 the output width and height, that is the size of the padded area as
16783 specified by the @var{width} and @var{height} expressions
16784
16785 @item rotw(a)
16786 @item roth(a)
16787 the minimal width/height required for completely containing the input
16788 video rotated by @var{a} radians.
16789
16790 These are only available when computing the @option{out_w} and
16791 @option{out_h} expressions.
16792 @end table
16793
16794 @subsection Examples
16795
16796 @itemize
16797 @item
16798 Rotate the input by PI/6 radians clockwise:
16799 @example
16800 rotate=PI/6
16801 @end example
16802
16803 @item
16804 Rotate the input by PI/6 radians counter-clockwise:
16805 @example
16806 rotate=-PI/6
16807 @end example
16808
16809 @item
16810 Rotate the input by 45 degrees clockwise:
16811 @example
16812 rotate=45*PI/180
16813 @end example
16814
16815 @item
16816 Apply a constant rotation with period T, starting from an angle of PI/3:
16817 @example
16818 rotate=PI/3+2*PI*t/T
16819 @end example
16820
16821 @item
16822 Make the input video rotation oscillating with a period of T
16823 seconds and an amplitude of A radians:
16824 @example
16825 rotate=A*sin(2*PI/T*t)
16826 @end example
16827
16828 @item
16829 Rotate the video, output size is chosen so that the whole rotating
16830 input video is always completely contained in the output:
16831 @example
16832 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
16833 @end example
16834
16835 @item
16836 Rotate the video, reduce the output size so that no background is ever
16837 shown:
16838 @example
16839 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
16840 @end example
16841 @end itemize
16842
16843 @subsection Commands
16844
16845 The filter supports the following commands:
16846
16847 @table @option
16848 @item a, angle
16849 Set the angle expression.
16850 The command accepts the same syntax of the corresponding option.
16851
16852 If the specified expression is not valid, it is kept at its current
16853 value.
16854 @end table
16855
16856 @section sab
16857
16858 Apply Shape Adaptive Blur.
16859
16860 The filter accepts the following options:
16861
16862 @table @option
16863 @item luma_radius, lr
16864 Set luma blur filter strength, must be a value in range 0.1-4.0, default
16865 value is 1.0. A greater value will result in a more blurred image, and
16866 in slower processing.
16867
16868 @item luma_pre_filter_radius, lpfr
16869 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
16870 value is 1.0.
16871
16872 @item luma_strength, ls
16873 Set luma maximum difference between pixels to still be considered, must
16874 be a value in the 0.1-100.0 range, default value is 1.0.
16875
16876 @item chroma_radius, cr
16877 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
16878 greater value will result in a more blurred image, and in slower
16879 processing.
16880
16881 @item chroma_pre_filter_radius, cpfr
16882 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
16883
16884 @item chroma_strength, cs
16885 Set chroma maximum difference between pixels to still be considered,
16886 must be a value in the -0.9-100.0 range.
16887 @end table
16888
16889 Each chroma option value, if not explicitly specified, is set to the
16890 corresponding luma option value.
16891
16892 @anchor{scale}
16893 @section scale
16894
16895 Scale (resize) the input video, using the libswscale library.
16896
16897 The scale filter forces the output display aspect ratio to be the same
16898 of the input, by changing the output sample aspect ratio.
16899
16900 If the input image format is different from the format requested by
16901 the next filter, the scale filter will convert the input to the
16902 requested format.
16903
16904 @subsection Options
16905 The filter accepts the following options, or any of the options
16906 supported by the libswscale scaler.
16907
16908 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
16909 the complete list of scaler options.
16910
16911 @table @option
16912 @item width, w
16913 @item height, h
16914 Set the output video dimension expression. Default value is the input
16915 dimension.
16916
16917 If the @var{width} or @var{w} value is 0, the input width is used for
16918 the output. If the @var{height} or @var{h} value is 0, the input height
16919 is used for the output.
16920
16921 If one and only one of the values is -n with n >= 1, the scale filter
16922 will use a value that maintains the aspect ratio of the input image,
16923 calculated from the other specified dimension. After that it will,
16924 however, make sure that the calculated dimension is divisible by n and
16925 adjust the value if necessary.
16926
16927 If both values are -n with n >= 1, the behavior will be identical to
16928 both values being set to 0 as previously detailed.
16929
16930 See below for the list of accepted constants for use in the dimension
16931 expression.
16932
16933 @item eval
16934 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
16935
16936 @table @samp
16937 @item init
16938 Only evaluate expressions once during the filter initialization or when a command is processed.
16939
16940 @item frame
16941 Evaluate expressions for each incoming frame.
16942
16943 @end table
16944
16945 Default value is @samp{init}.
16946
16947
16948 @item interl
16949 Set the interlacing mode. It accepts the following values:
16950
16951 @table @samp
16952 @item 1
16953 Force interlaced aware scaling.
16954
16955 @item 0
16956 Do not apply interlaced scaling.
16957
16958 @item -1
16959 Select interlaced aware scaling depending on whether the source frames
16960 are flagged as interlaced or not.
16961 @end table
16962
16963 Default value is @samp{0}.
16964
16965 @item flags
16966 Set libswscale scaling flags. See
16967 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16968 complete list of values. If not explicitly specified the filter applies
16969 the default flags.
16970
16971
16972 @item param0, param1
16973 Set libswscale input parameters for scaling algorithms that need them. See
16974 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16975 complete documentation. If not explicitly specified the filter applies
16976 empty parameters.
16977
16978
16979
16980 @item size, s
16981 Set the video size. For the syntax of this option, check the
16982 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16983
16984 @item in_color_matrix
16985 @item out_color_matrix
16986 Set in/output YCbCr color space type.
16987
16988 This allows the autodetected value to be overridden as well as allows forcing
16989 a specific value used for the output and encoder.
16990
16991 If not specified, the color space type depends on the pixel format.
16992
16993 Possible values:
16994
16995 @table @samp
16996 @item auto
16997 Choose automatically.
16998
16999 @item bt709
17000 Format conforming to International Telecommunication Union (ITU)
17001 Recommendation BT.709.
17002
17003 @item fcc
17004 Set color space conforming to the United States Federal Communications
17005 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
17006
17007 @item bt601
17008 @item bt470
17009 @item smpte170m
17010 Set color space conforming to:
17011
17012 @itemize
17013 @item
17014 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
17015
17016 @item
17017 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
17018
17019 @item
17020 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
17021
17022 @end itemize
17023
17024 @item smpte240m
17025 Set color space conforming to SMPTE ST 240:1999.
17026
17027 @item bt2020
17028 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
17029 @end table
17030
17031 @item in_range
17032 @item out_range
17033 Set in/output YCbCr sample range.
17034
17035 This allows the autodetected value to be overridden as well as allows forcing
17036 a specific value used for the output and encoder. If not specified, the
17037 range depends on the pixel format. Possible values:
17038
17039 @table @samp
17040 @item auto/unknown
17041 Choose automatically.
17042
17043 @item jpeg/full/pc
17044 Set full range (0-255 in case of 8-bit luma).
17045
17046 @item mpeg/limited/tv
17047 Set "MPEG" range (16-235 in case of 8-bit luma).
17048 @end table
17049
17050 @item force_original_aspect_ratio
17051 Enable decreasing or increasing output video width or height if necessary to
17052 keep the original aspect ratio. Possible values:
17053
17054 @table @samp
17055 @item disable
17056 Scale the video as specified and disable this feature.
17057
17058 @item decrease
17059 The output video dimensions will automatically be decreased if needed.
17060
17061 @item increase
17062 The output video dimensions will automatically be increased if needed.
17063
17064 @end table
17065
17066 One useful instance of this option is that when you know a specific device's
17067 maximum allowed resolution, you can use this to limit the output video to
17068 that, while retaining the aspect ratio. For example, device A allows
17069 1280x720 playback, and your video is 1920x800. Using this option (set it to
17070 decrease) and specifying 1280x720 to the command line makes the output
17071 1280x533.
17072
17073 Please note that this is a different thing than specifying -1 for @option{w}
17074 or @option{h}, you still need to specify the output resolution for this option
17075 to work.
17076
17077 @item force_divisible_by
17078 Ensures that both the output dimensions, width and height, are divisible by the
17079 given integer when used together with @option{force_original_aspect_ratio}. This
17080 works similar to using @code{-n} in the @option{w} and @option{h} options.
17081
17082 This option respects the value set for @option{force_original_aspect_ratio},
17083 increasing or decreasing the resolution accordingly. The video's aspect ratio
17084 may be slightly modified.
17085
17086 This option can be handy if you need to have a video fit within or exceed
17087 a defined resolution using @option{force_original_aspect_ratio} but also have
17088 encoder restrictions on width or height divisibility.
17089
17090 @end table
17091
17092 The values of the @option{w} and @option{h} options are expressions
17093 containing the following constants:
17094
17095 @table @var
17096 @item in_w
17097 @item in_h
17098 The input width and height
17099
17100 @item iw
17101 @item ih
17102 These are the same as @var{in_w} and @var{in_h}.
17103
17104 @item out_w
17105 @item out_h
17106 The output (scaled) width and height
17107
17108 @item ow
17109 @item oh
17110 These are the same as @var{out_w} and @var{out_h}
17111
17112 @item a
17113 The same as @var{iw} / @var{ih}
17114
17115 @item sar
17116 input sample aspect ratio
17117
17118 @item dar
17119 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
17120
17121 @item hsub
17122 @item vsub
17123 horizontal and vertical input chroma subsample values. For example for the
17124 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17125
17126 @item ohsub
17127 @item ovsub
17128 horizontal and vertical output chroma subsample values. For example for the
17129 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17130
17131 @item n
17132 The (sequential) number of the input frame, starting from 0.
17133 Only available with @code{eval=frame}.
17134
17135 @item t
17136 The presentation timestamp of the input frame, expressed as a number of
17137 seconds. Only available with @code{eval=frame}.
17138
17139 @item pos
17140 The position (byte offset) of the frame in the input stream, or NaN if
17141 this information is unavailable and/or meaningless (for example in case of synthetic video).
17142 Only available with @code{eval=frame}.
17143 @end table
17144
17145 @subsection Examples
17146
17147 @itemize
17148 @item
17149 Scale the input video to a size of 200x100
17150 @example
17151 scale=w=200:h=100
17152 @end example
17153
17154 This is equivalent to:
17155 @example
17156 scale=200:100
17157 @end example
17158
17159 or:
17160 @example
17161 scale=200x100
17162 @end example
17163
17164 @item
17165 Specify a size abbreviation for the output size:
17166 @example
17167 scale=qcif
17168 @end example
17169
17170 which can also be written as:
17171 @example
17172 scale=size=qcif
17173 @end example
17174
17175 @item
17176 Scale the input to 2x:
17177 @example
17178 scale=w=2*iw:h=2*ih
17179 @end example
17180
17181 @item
17182 The above is the same as:
17183 @example
17184 scale=2*in_w:2*in_h
17185 @end example
17186
17187 @item
17188 Scale the input to 2x with forced interlaced scaling:
17189 @example
17190 scale=2*iw:2*ih:interl=1
17191 @end example
17192
17193 @item
17194 Scale the input to half size:
17195 @example
17196 scale=w=iw/2:h=ih/2
17197 @end example
17198
17199 @item
17200 Increase the width, and set the height to the same size:
17201 @example
17202 scale=3/2*iw:ow
17203 @end example
17204
17205 @item
17206 Seek Greek harmony:
17207 @example
17208 scale=iw:1/PHI*iw
17209 scale=ih*PHI:ih
17210 @end example
17211
17212 @item
17213 Increase the height, and set the width to 3/2 of the height:
17214 @example
17215 scale=w=3/2*oh:h=3/5*ih
17216 @end example
17217
17218 @item
17219 Increase the size, making the size a multiple of the chroma
17220 subsample values:
17221 @example
17222 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
17223 @end example
17224
17225 @item
17226 Increase the width to a maximum of 500 pixels,
17227 keeping the same aspect ratio as the input:
17228 @example
17229 scale=w='min(500\, iw*3/2):h=-1'
17230 @end example
17231
17232 @item
17233 Make pixels square by combining scale and setsar:
17234 @example
17235 scale='trunc(ih*dar):ih',setsar=1/1
17236 @end example
17237
17238 @item
17239 Make pixels square by combining scale and setsar,
17240 making sure the resulting resolution is even (required by some codecs):
17241 @example
17242 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
17243 @end example
17244 @end itemize
17245
17246 @subsection Commands
17247
17248 This filter supports the following commands:
17249 @table @option
17250 @item width, w
17251 @item height, h
17252 Set the output video dimension expression.
17253 The command accepts the same syntax of the corresponding option.
17254
17255 If the specified expression is not valid, it is kept at its current
17256 value.
17257 @end table
17258
17259 @section scale_npp
17260
17261 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
17262 format conversion on CUDA video frames. Setting the output width and height
17263 works in the same way as for the @var{scale} filter.
17264
17265 The following additional options are accepted:
17266 @table @option
17267 @item format
17268 The pixel format of the output CUDA frames. If set to the string "same" (the
17269 default), the input format will be kept. Note that automatic format negotiation
17270 and conversion is not yet supported for hardware frames
17271
17272 @item interp_algo
17273 The interpolation algorithm used for resizing. One of the following:
17274 @table @option
17275 @item nn
17276 Nearest neighbour.
17277
17278 @item linear
17279 @item cubic
17280 @item cubic2p_bspline
17281 2-parameter cubic (B=1, C=0)
17282
17283 @item cubic2p_catmullrom
17284 2-parameter cubic (B=0, C=1/2)
17285
17286 @item cubic2p_b05c03
17287 2-parameter cubic (B=1/2, C=3/10)
17288
17289 @item super
17290 Supersampling
17291
17292 @item lanczos
17293 @end table
17294
17295 @item force_original_aspect_ratio
17296 Enable decreasing or increasing output video width or height if necessary to
17297 keep the original aspect ratio. Possible values:
17298
17299 @table @samp
17300 @item disable
17301 Scale the video as specified and disable this feature.
17302
17303 @item decrease
17304 The output video dimensions will automatically be decreased if needed.
17305
17306 @item increase
17307 The output video dimensions will automatically be increased if needed.
17308
17309 @end table
17310
17311 One useful instance of this option is that when you know a specific device's
17312 maximum allowed resolution, you can use this to limit the output video to
17313 that, while retaining the aspect ratio. For example, device A allows
17314 1280x720 playback, and your video is 1920x800. Using this option (set it to
17315 decrease) and specifying 1280x720 to the command line makes the output
17316 1280x533.
17317
17318 Please note that this is a different thing than specifying -1 for @option{w}
17319 or @option{h}, you still need to specify the output resolution for this option
17320 to work.
17321
17322 @item force_divisible_by
17323 Ensures that both the output dimensions, width and height, are divisible by the
17324 given integer when used together with @option{force_original_aspect_ratio}. This
17325 works similar to using @code{-n} in the @option{w} and @option{h} options.
17326
17327 This option respects the value set for @option{force_original_aspect_ratio},
17328 increasing or decreasing the resolution accordingly. The video's aspect ratio
17329 may be slightly modified.
17330
17331 This option can be handy if you need to have a video fit within or exceed
17332 a defined resolution using @option{force_original_aspect_ratio} but also have
17333 encoder restrictions on width or height divisibility.
17334
17335 @end table
17336
17337 @section scale2ref
17338
17339 Scale (resize) the input video, based on a reference video.
17340
17341 See the scale filter for available options, scale2ref supports the same but
17342 uses the reference video instead of the main input as basis. scale2ref also
17343 supports the following additional constants for the @option{w} and
17344 @option{h} options:
17345
17346 @table @var
17347 @item main_w
17348 @item main_h
17349 The main input video's width and height
17350
17351 @item main_a
17352 The same as @var{main_w} / @var{main_h}
17353
17354 @item main_sar
17355 The main input video's sample aspect ratio
17356
17357 @item main_dar, mdar
17358 The main input video's display aspect ratio. Calculated from
17359 @code{(main_w / main_h) * main_sar}.
17360
17361 @item main_hsub
17362 @item main_vsub
17363 The main input video's horizontal and vertical chroma subsample values.
17364 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
17365 is 1.
17366
17367 @item main_n
17368 The (sequential) number of the main input frame, starting from 0.
17369 Only available with @code{eval=frame}.
17370
17371 @item main_t
17372 The presentation timestamp of the main input frame, expressed as a number of
17373 seconds. Only available with @code{eval=frame}.
17374
17375 @item main_pos
17376 The position (byte offset) of the frame in the main input stream, or NaN if
17377 this information is unavailable and/or meaningless (for example in case of synthetic video).
17378 Only available with @code{eval=frame}.
17379 @end table
17380
17381 @subsection Examples
17382
17383 @itemize
17384 @item
17385 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
17386 @example
17387 'scale2ref[b][a];[a][b]overlay'
17388 @end example
17389
17390 @item
17391 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
17392 @example
17393 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
17394 @end example
17395 @end itemize
17396
17397 @subsection Commands
17398
17399 This filter supports the following commands:
17400 @table @option
17401 @item width, w
17402 @item height, h
17403 Set the output video dimension expression.
17404 The command accepts the same syntax of the corresponding option.
17405
17406 If the specified expression is not valid, it is kept at its current
17407 value.
17408 @end table
17409
17410 @section scroll
17411 Scroll input video horizontally and/or vertically by constant speed.
17412
17413 The filter accepts the following options:
17414 @table @option
17415 @item horizontal, h
17416 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
17417 Negative values changes scrolling direction.
17418
17419 @item vertical, v
17420 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
17421 Negative values changes scrolling direction.
17422
17423 @item hpos
17424 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
17425
17426 @item vpos
17427 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
17428 @end table
17429
17430 @subsection Commands
17431
17432 This filter supports the following @ref{commands}:
17433 @table @option
17434 @item horizontal, h
17435 Set the horizontal scrolling speed.
17436 @item vertical, v
17437 Set the vertical scrolling speed.
17438 @end table
17439
17440 @anchor{scdet}
17441 @section scdet
17442
17443 Detect video scene change.
17444
17445 This filter sets frame metadata with mafd between frame, the scene score, and
17446 forward the frame to the next filter, so they can use these metadata to detect
17447 scene change or others.
17448
17449 In addition, this filter logs a message and sets frame metadata when it detects
17450 a scene change by @option{threshold}.
17451
17452 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
17453
17454 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
17455 to detect scene change.
17456
17457 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
17458 detect scene change with @option{threshold}.
17459
17460 The filter accepts the following options:
17461
17462 @table @option
17463 @item threshold, t
17464 Set the scene change detection threshold as a percentage of maximum change. Good
17465 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
17466 @code{[0., 100.]}.
17467
17468 Default value is @code{10.}.
17469
17470 @item sc_pass, s
17471 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
17472 You can enable it if you want to get snapshot of scene change frames only.
17473 @end table
17474
17475 @anchor{selectivecolor}
17476 @section selectivecolor
17477
17478 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
17479 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
17480 by the "purity" of the color (that is, how saturated it already is).
17481
17482 This filter is similar to the Adobe Photoshop Selective Color tool.
17483
17484 The filter accepts the following options:
17485
17486 @table @option
17487 @item correction_method
17488 Select color correction method.
17489
17490 Available values are:
17491 @table @samp
17492 @item absolute
17493 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17494 component value).
17495 @item relative
17496 Specified adjustments are relative to the original component value.
17497 @end table
17498 Default is @code{absolute}.
17499 @item reds
17500 Adjustments for red pixels (pixels where the red component is the maximum)
17501 @item yellows
17502 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17503 @item greens
17504 Adjustments for green pixels (pixels where the green component is the maximum)
17505 @item cyans
17506 Adjustments for cyan pixels (pixels where the red component is the minimum)
17507 @item blues
17508 Adjustments for blue pixels (pixels where the blue component is the maximum)
17509 @item magentas
17510 Adjustments for magenta pixels (pixels where the green component is the minimum)
17511 @item whites
17512 Adjustments for white pixels (pixels where all components are greater than 128)
17513 @item neutrals
17514 Adjustments for all pixels except pure black and pure white
17515 @item blacks
17516 Adjustments for black pixels (pixels where all components are lesser than 128)
17517 @item psfile
17518 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17519 @end table
17520
17521 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17522 4 space separated floating point adjustment values in the [-1,1] range,
17523 respectively to adjust the amount of cyan, magenta, yellow and black for the
17524 pixels of its range.
17525
17526 @subsection Examples
17527
17528 @itemize
17529 @item
17530 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17531 increase magenta by 27% in blue areas:
17532 @example
17533 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17534 @end example
17535
17536 @item
17537 Use a Photoshop selective color preset:
17538 @example
17539 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17540 @end example
17541 @end itemize
17542
17543 @anchor{separatefields}
17544 @section separatefields
17545
17546 The @code{separatefields} takes a frame-based video input and splits
17547 each frame into its components fields, producing a new half height clip
17548 with twice the frame rate and twice the frame count.
17549
17550 This filter use field-dominance information in frame to decide which
17551 of each pair of fields to place first in the output.
17552 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
17553
17554 @section setdar, setsar
17555
17556 The @code{setdar} filter sets the Display Aspect Ratio for the filter
17557 output video.
17558
17559 This is done by changing the specified Sample (aka Pixel) Aspect
17560 Ratio, according to the following equation:
17561 @example
17562 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
17563 @end example
17564
17565 Keep in mind that the @code{setdar} filter does not modify the pixel
17566 dimensions of the video frame. Also, the display aspect ratio set by
17567 this filter may be changed by later filters in the filterchain,
17568 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
17569 applied.
17570
17571 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
17572 the filter output video.
17573
17574 Note that as a consequence of the application of this filter, the
17575 output display aspect ratio will change according to the equation
17576 above.
17577
17578 Keep in mind that the sample aspect ratio set by the @code{setsar}
17579 filter may be changed by later filters in the filterchain, e.g. if
17580 another "setsar" or a "setdar" filter is applied.
17581
17582 It accepts the following parameters:
17583
17584 @table @option
17585 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
17586 Set the aspect ratio used by the filter.
17587
17588 The parameter can be a floating point number string, an expression, or
17589 a string of the form @var{num}:@var{den}, where @var{num} and
17590 @var{den} are the numerator and denominator of the aspect ratio. If
17591 the parameter is not specified, it is assumed the value "0".
17592 In case the form "@var{num}:@var{den}" is used, the @code{:} character
17593 should be escaped.
17594
17595 @item max
17596 Set the maximum integer value to use for expressing numerator and
17597 denominator when reducing the expressed aspect ratio to a rational.
17598 Default value is @code{100}.
17599
17600 @end table
17601
17602 The parameter @var{sar} is an expression containing
17603 the following constants:
17604
17605 @table @option
17606 @item E, PI, PHI
17607 These are approximated values for the mathematical constants e
17608 (Euler's number), pi (Greek pi), and phi (the golden ratio).
17609
17610 @item w, h
17611 The input width and height.
17612
17613 @item a
17614 These are the same as @var{w} / @var{h}.
17615
17616 @item sar
17617 The input sample aspect ratio.
17618
17619 @item dar
17620 The input display aspect ratio. It is the same as
17621 (@var{w} / @var{h}) * @var{sar}.
17622
17623 @item hsub, vsub
17624 Horizontal and vertical chroma subsample values. For example, for the
17625 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17626 @end table
17627
17628 @subsection Examples
17629
17630 @itemize
17631
17632 @item
17633 To change the display aspect ratio to 16:9, specify one of the following:
17634 @example
17635 setdar=dar=1.77777
17636 setdar=dar=16/9
17637 @end example
17638
17639 @item
17640 To change the sample aspect ratio to 10:11, specify:
17641 @example
17642 setsar=sar=10/11
17643 @end example
17644
17645 @item
17646 To set a display aspect ratio of 16:9, and specify a maximum integer value of
17647 1000 in the aspect ratio reduction, use the command:
17648 @example
17649 setdar=ratio=16/9:max=1000
17650 @end example
17651
17652 @end itemize
17653
17654 @anchor{setfield}
17655 @section setfield
17656
17657 Force field for the output video frame.
17658
17659 The @code{setfield} filter marks the interlace type field for the
17660 output frames. It does not change the input frame, but only sets the
17661 corresponding property, which affects how the frame is treated by
17662 following filters (e.g. @code{fieldorder} or @code{yadif}).
17663
17664 The filter accepts the following options:
17665
17666 @table @option
17667
17668 @item mode
17669 Available values are:
17670
17671 @table @samp
17672 @item auto
17673 Keep the same field property.
17674
17675 @item bff
17676 Mark the frame as bottom-field-first.
17677
17678 @item tff
17679 Mark the frame as top-field-first.
17680
17681 @item prog
17682 Mark the frame as progressive.
17683 @end table
17684 @end table
17685
17686 @anchor{setparams}
17687 @section setparams
17688
17689 Force frame parameter for the output video frame.
17690
17691 The @code{setparams} filter marks interlace and color range for the
17692 output frames. It does not change the input frame, but only sets the
17693 corresponding property, which affects how the frame is treated by
17694 filters/encoders.
17695
17696 @table @option
17697 @item field_mode
17698 Available values are:
17699
17700 @table @samp
17701 @item auto
17702 Keep the same field property (default).
17703
17704 @item bff
17705 Mark the frame as bottom-field-first.
17706
17707 @item tff
17708 Mark the frame as top-field-first.
17709
17710 @item prog
17711 Mark the frame as progressive.
17712 @end table
17713
17714 @item range
17715 Available values are:
17716
17717 @table @samp
17718 @item auto
17719 Keep the same color range property (default).
17720
17721 @item unspecified, unknown
17722 Mark the frame as unspecified color range.
17723
17724 @item limited, tv, mpeg
17725 Mark the frame as limited range.
17726
17727 @item full, pc, jpeg
17728 Mark the frame as full range.
17729 @end table
17730
17731 @item color_primaries
17732 Set the color primaries.
17733 Available values are:
17734
17735 @table @samp
17736 @item auto
17737 Keep the same color primaries property (default).
17738
17739 @item bt709
17740 @item unknown
17741 @item bt470m
17742 @item bt470bg
17743 @item smpte170m
17744 @item smpte240m
17745 @item film
17746 @item bt2020
17747 @item smpte428
17748 @item smpte431
17749 @item smpte432
17750 @item jedec-p22
17751 @end table
17752
17753 @item color_trc
17754 Set the color transfer.
17755 Available values are:
17756
17757 @table @samp
17758 @item auto
17759 Keep the same color trc property (default).
17760
17761 @item bt709
17762 @item unknown
17763 @item bt470m
17764 @item bt470bg
17765 @item smpte170m
17766 @item smpte240m
17767 @item linear
17768 @item log100
17769 @item log316
17770 @item iec61966-2-4
17771 @item bt1361e
17772 @item iec61966-2-1
17773 @item bt2020-10
17774 @item bt2020-12
17775 @item smpte2084
17776 @item smpte428
17777 @item arib-std-b67
17778 @end table
17779
17780 @item colorspace
17781 Set the colorspace.
17782 Available values are:
17783
17784 @table @samp
17785 @item auto
17786 Keep the same colorspace property (default).
17787
17788 @item gbr
17789 @item bt709
17790 @item unknown
17791 @item fcc
17792 @item bt470bg
17793 @item smpte170m
17794 @item smpte240m
17795 @item ycgco
17796 @item bt2020nc
17797 @item bt2020c
17798 @item smpte2085
17799 @item chroma-derived-nc
17800 @item chroma-derived-c
17801 @item ictcp
17802 @end table
17803 @end table
17804
17805 @section showinfo
17806
17807 Show a line containing various information for each input video frame.
17808 The input video is not modified.
17809
17810 This filter supports the following options:
17811
17812 @table @option
17813 @item checksum
17814 Calculate checksums of each plane. By default enabled.
17815 @end table
17816
17817 The shown line contains a sequence of key/value pairs of the form
17818 @var{key}:@var{value}.
17819
17820 The following values are shown in the output:
17821
17822 @table @option
17823 @item n
17824 The (sequential) number of the input frame, starting from 0.
17825
17826 @item pts
17827 The Presentation TimeStamp of the input frame, expressed as a number of
17828 time base units. The time base unit depends on the filter input pad.
17829
17830 @item pts_time
17831 The Presentation TimeStamp of the input frame, expressed as a number of
17832 seconds.
17833
17834 @item pos
17835 The position of the frame in the input stream, or -1 if this information is
17836 unavailable and/or meaningless (for example in case of synthetic video).
17837
17838 @item fmt
17839 The pixel format name.
17840
17841 @item sar
17842 The sample aspect ratio of the input frame, expressed in the form
17843 @var{num}/@var{den}.
17844
17845 @item s
17846 The size of the input frame. For the syntax of this option, check the
17847 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17848
17849 @item i
17850 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
17851 for bottom field first).
17852
17853 @item iskey
17854 This is 1 if the frame is a key frame, 0 otherwise.
17855
17856 @item type
17857 The picture type of the input frame ("I" for an I-frame, "P" for a
17858 P-frame, "B" for a B-frame, or "?" for an unknown type).
17859 Also refer to the documentation of the @code{AVPictureType} enum and of
17860 the @code{av_get_picture_type_char} function defined in
17861 @file{libavutil/avutil.h}.
17862
17863 @item checksum
17864 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
17865
17866 @item plane_checksum
17867 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
17868 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
17869
17870 @item mean
17871 The mean value of pixels in each plane of the input frame, expressed in the form
17872 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
17873
17874 @item stdev
17875 The standard deviation of pixel values in each plane of the input frame, expressed
17876 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
17877
17878 @end table
17879
17880 @section showpalette
17881
17882 Displays the 256 colors palette of each frame. This filter is only relevant for
17883 @var{pal8} pixel format frames.
17884
17885 It accepts the following option:
17886
17887 @table @option
17888 @item s
17889 Set the size of the box used to represent one palette color entry. Default is
17890 @code{30} (for a @code{30x30} pixel box).
17891 @end table
17892
17893 @section shuffleframes
17894
17895 Reorder and/or duplicate and/or drop video frames.
17896
17897 It accepts the following parameters:
17898
17899 @table @option
17900 @item mapping
17901 Set the destination indexes of input frames.
17902 This is space or '|' separated list of indexes that maps input frames to output
17903 frames. Number of indexes also sets maximal value that each index may have.
17904 '-1' index have special meaning and that is to drop frame.
17905 @end table
17906
17907 The first frame has the index 0. The default is to keep the input unchanged.
17908
17909 @subsection Examples
17910
17911 @itemize
17912 @item
17913 Swap second and third frame of every three frames of the input:
17914 @example
17915 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
17916 @end example
17917
17918 @item
17919 Swap 10th and 1st frame of every ten frames of the input:
17920 @example
17921 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
17922 @end example
17923 @end itemize
17924
17925 @section shufflepixels
17926
17927 Reorder pixels in video frames.
17928
17929 This filter accepts the following options:
17930
17931 @table @option
17932 @item direction, d
17933 Set shuffle direction. Can be forward or inverse direction.
17934 Default direction is forward.
17935
17936 @item mode, m
17937 Set shuffle mode. Can be horizontal, vertical or block mode.
17938
17939 @item width, w
17940 @item height, h
17941 Set shuffle block_size. In case of horizontal shuffle mode only width
17942 part of size is used, and in case of vertical shuffle mode only height
17943 part of size is used.
17944
17945 @item seed, s
17946 Set random seed used with shuffling pixels. Mainly useful to set to be able
17947 to reverse filtering process to get original input.
17948 For example, to reverse forward shuffle you need to use same parameters
17949 and exact same seed and to set direction to inverse.
17950 @end table
17951
17952 @section shuffleplanes
17953
17954 Reorder and/or duplicate video planes.
17955
17956 It accepts the following parameters:
17957
17958 @table @option
17959
17960 @item map0
17961 The index of the input plane to be used as the first output plane.
17962
17963 @item map1
17964 The index of the input plane to be used as the second output plane.
17965
17966 @item map2
17967 The index of the input plane to be used as the third output plane.
17968
17969 @item map3
17970 The index of the input plane to be used as the fourth output plane.
17971
17972 @end table
17973
17974 The first plane has the index 0. The default is to keep the input unchanged.
17975
17976 @subsection Examples
17977
17978 @itemize
17979 @item
17980 Swap the second and third planes of the input:
17981 @example
17982 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
17983 @end example
17984 @end itemize
17985
17986 @anchor{signalstats}
17987 @section signalstats
17988 Evaluate various visual metrics that assist in determining issues associated
17989 with the digitization of analog video media.
17990
17991 By default the filter will log these metadata values:
17992
17993 @table @option
17994 @item YMIN
17995 Display the minimal Y value contained within the input frame. Expressed in
17996 range of [0-255].
17997
17998 @item YLOW
17999 Display the Y value at the 10% percentile within the input frame. Expressed in
18000 range of [0-255].
18001
18002 @item YAVG
18003 Display the average Y value within the input frame. Expressed in range of
18004 [0-255].
18005
18006 @item YHIGH
18007 Display the Y value at the 90% percentile within the input frame. Expressed in
18008 range of [0-255].
18009
18010 @item YMAX
18011 Display the maximum Y value contained within the input frame. Expressed in
18012 range of [0-255].
18013
18014 @item UMIN
18015 Display the minimal U value contained within the input frame. Expressed in
18016 range of [0-255].
18017
18018 @item ULOW
18019 Display the U value at the 10% percentile within the input frame. Expressed in
18020 range of [0-255].
18021
18022 @item UAVG
18023 Display the average U value within the input frame. Expressed in range of
18024 [0-255].
18025
18026 @item UHIGH
18027 Display the U value at the 90% percentile within the input frame. Expressed in
18028 range of [0-255].
18029
18030 @item UMAX
18031 Display the maximum U value contained within the input frame. Expressed in
18032 range of [0-255].
18033
18034 @item VMIN
18035 Display the minimal V value contained within the input frame. Expressed in
18036 range of [0-255].
18037
18038 @item VLOW
18039 Display the V value at the 10% percentile within the input frame. Expressed in
18040 range of [0-255].
18041
18042 @item VAVG
18043 Display the average V value within the input frame. Expressed in range of
18044 [0-255].
18045
18046 @item VHIGH
18047 Display the V value at the 90% percentile within the input frame. Expressed in
18048 range of [0-255].
18049
18050 @item VMAX
18051 Display the maximum V value contained within the input frame. Expressed in
18052 range of [0-255].
18053
18054 @item SATMIN
18055 Display the minimal saturation value contained within the input frame.
18056 Expressed in range of [0-~181.02].
18057
18058 @item SATLOW
18059 Display the saturation value at the 10% percentile within the input frame.
18060 Expressed in range of [0-~181.02].
18061
18062 @item SATAVG
18063 Display the average saturation value within the input frame. Expressed in range
18064 of [0-~181.02].
18065
18066 @item SATHIGH
18067 Display the saturation value at the 90% percentile within the input frame.
18068 Expressed in range of [0-~181.02].
18069
18070 @item SATMAX
18071 Display the maximum saturation value contained within the input frame.
18072 Expressed in range of [0-~181.02].
18073
18074 @item HUEMED
18075 Display the median value for hue within the input frame. Expressed in range of
18076 [0-360].
18077
18078 @item HUEAVG
18079 Display the average value for hue within the input frame. Expressed in range of
18080 [0-360].
18081
18082 @item YDIF
18083 Display the average of sample value difference between all values of the Y
18084 plane in the current frame and corresponding values of the previous input frame.
18085 Expressed in range of [0-255].
18086
18087 @item UDIF
18088 Display the average of sample value difference between all values of the U
18089 plane in the current frame and corresponding values of the previous input frame.
18090 Expressed in range of [0-255].
18091
18092 @item VDIF
18093 Display the average of sample value difference between all values of the V
18094 plane in the current frame and corresponding values of the previous input frame.
18095 Expressed in range of [0-255].
18096
18097 @item YBITDEPTH
18098 Display bit depth of Y plane in current frame.
18099 Expressed in range of [0-16].
18100
18101 @item UBITDEPTH
18102 Display bit depth of U plane in current frame.
18103 Expressed in range of [0-16].
18104
18105 @item VBITDEPTH
18106 Display bit depth of V plane in current frame.
18107 Expressed in range of [0-16].
18108 @end table
18109
18110 The filter accepts the following options:
18111
18112 @table @option
18113 @item stat
18114 @item out
18115
18116 @option{stat} specify an additional form of image analysis.
18117 @option{out} output video with the specified type of pixel highlighted.
18118
18119 Both options accept the following values:
18120
18121 @table @samp
18122 @item tout
18123 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
18124 unlike the neighboring pixels of the same field. Examples of temporal outliers
18125 include the results of video dropouts, head clogs, or tape tracking issues.
18126
18127 @item vrep
18128 Identify @var{vertical line repetition}. Vertical line repetition includes
18129 similar rows of pixels within a frame. In born-digital video vertical line
18130 repetition is common, but this pattern is uncommon in video digitized from an
18131 analog source. When it occurs in video that results from the digitization of an
18132 analog source it can indicate concealment from a dropout compensator.
18133
18134 @item brng
18135 Identify pixels that fall outside of legal broadcast range.
18136 @end table
18137
18138 @item color, c
18139 Set the highlight color for the @option{out} option. The default color is
18140 yellow.
18141 @end table
18142
18143 @subsection Examples
18144
18145 @itemize
18146 @item
18147 Output data of various video metrics:
18148 @example
18149 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
18150 @end example
18151
18152 @item
18153 Output specific data about the minimum and maximum values of the Y plane per frame:
18154 @example
18155 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
18156 @end example
18157
18158 @item
18159 Playback video while highlighting pixels that are outside of broadcast range in red.
18160 @example
18161 ffplay example.mov -vf signalstats="out=brng:color=red"
18162 @end example
18163
18164 @item
18165 Playback video with signalstats metadata drawn over the frame.
18166 @example
18167 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
18168 @end example
18169
18170 The contents of signalstat_drawtext.txt used in the command are:
18171 @example
18172 time %@{pts:hms@}
18173 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
18174 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
18175 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
18176 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
18177
18178 @end example
18179 @end itemize
18180
18181 @anchor{signature}
18182 @section signature
18183
18184 Calculates the MPEG-7 Video Signature. The filter can handle more than one
18185 input. In this case the matching between the inputs can be calculated additionally.
18186 The filter always passes through the first input. The signature of each stream can
18187 be written into a file.
18188
18189 It accepts the following options:
18190
18191 @table @option
18192 @item detectmode
18193 Enable or disable the matching process.
18194
18195 Available values are:
18196
18197 @table @samp
18198 @item off
18199 Disable the calculation of a matching (default).
18200 @item full
18201 Calculate the matching for the whole video and output whether the whole video
18202 matches or only parts.
18203 @item fast
18204 Calculate only until a matching is found or the video ends. Should be faster in
18205 some cases.
18206 @end table
18207
18208 @item nb_inputs
18209 Set the number of inputs. The option value must be a non negative integer.
18210 Default value is 1.
18211
18212 @item filename
18213 Set the path to which the output is written. If there is more than one input,
18214 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
18215 integer), that will be replaced with the input number. If no filename is
18216 specified, no output will be written. This is the default.
18217
18218 @item format
18219 Choose the output format.
18220
18221 Available values are:
18222
18223 @table @samp
18224 @item binary
18225 Use the specified binary representation (default).
18226 @item xml
18227 Use the specified xml representation.
18228 @end table
18229
18230 @item th_d
18231 Set threshold to detect one word as similar. The option value must be an integer
18232 greater than zero. The default value is 9000.
18233
18234 @item th_dc
18235 Set threshold to detect all words as similar. The option value must be an integer
18236 greater than zero. The default value is 60000.
18237
18238 @item th_xh
18239 Set threshold to detect frames as similar. The option value must be an integer
18240 greater than zero. The default value is 116.
18241
18242 @item th_di
18243 Set the minimum length of a sequence in frames to recognize it as matching
18244 sequence. The option value must be a non negative integer value.
18245 The default value is 0.
18246
18247 @item th_it
18248 Set the minimum relation, that matching frames to all frames must have.
18249 The option value must be a double value between 0 and 1. The default value is 0.5.
18250 @end table
18251
18252 @subsection Examples
18253
18254 @itemize
18255 @item
18256 To calculate the signature of an input video and store it in signature.bin:
18257 @example
18258 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
18259 @end example
18260
18261 @item
18262 To detect whether two videos match and store the signatures in XML format in
18263 signature0.xml and signature1.xml:
18264 @example
18265 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 -
18266 @end example
18267
18268 @end itemize
18269
18270 @anchor{smartblur}
18271 @section smartblur
18272
18273 Blur the input video without impacting the outlines.
18274
18275 It accepts the following options:
18276
18277 @table @option
18278 @item luma_radius, lr
18279 Set the luma radius. The option value must be a float number in
18280 the range [0.1,5.0] that specifies the variance of the gaussian filter
18281 used to blur the image (slower if larger). Default value is 1.0.
18282
18283 @item luma_strength, ls
18284 Set the luma strength. The option value must be a float number
18285 in the range [-1.0,1.0] that configures the blurring. A value included
18286 in [0.0,1.0] will blur the image whereas a value included in
18287 [-1.0,0.0] will sharpen the image. Default value is 1.0.
18288
18289 @item luma_threshold, lt
18290 Set the luma threshold used as a coefficient to determine
18291 whether a pixel should be blurred or not. The option value must be an
18292 integer in the range [-30,30]. A value of 0 will filter all the image,
18293 a value included in [0,30] will filter flat areas and a value included
18294 in [-30,0] will filter edges. Default value is 0.
18295
18296 @item chroma_radius, cr
18297 Set the chroma radius. The option value must be a float number in
18298 the range [0.1,5.0] that specifies the variance of the gaussian filter
18299 used to blur the image (slower if larger). Default value is @option{luma_radius}.
18300
18301 @item chroma_strength, cs
18302 Set the chroma strength. The option value must be a float number
18303 in the range [-1.0,1.0] that configures the blurring. A value included
18304 in [0.0,1.0] will blur the image whereas a value included in
18305 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
18306
18307 @item chroma_threshold, ct
18308 Set the chroma threshold used as a coefficient to determine
18309 whether a pixel should be blurred or not. The option value must be an
18310 integer in the range [-30,30]. A value of 0 will filter all the image,
18311 a value included in [0,30] will filter flat areas and a value included
18312 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
18313 @end table
18314
18315 If a chroma option is not explicitly set, the corresponding luma value
18316 is set.
18317
18318 @section sobel
18319 Apply sobel operator to input video stream.
18320
18321 The filter accepts the following option:
18322
18323 @table @option
18324 @item planes
18325 Set which planes will be processed, unprocessed planes will be copied.
18326 By default value 0xf, all planes will be processed.
18327
18328 @item scale
18329 Set value which will be multiplied with filtered result.
18330
18331 @item delta
18332 Set value which will be added to filtered result.
18333 @end table
18334
18335 @subsection Commands
18336
18337 This filter supports the all above options as @ref{commands}.
18338
18339 @anchor{spp}
18340 @section spp
18341
18342 Apply a simple postprocessing filter that compresses and decompresses the image
18343 at several (or - in the case of @option{quality} level @code{6} - all) shifts
18344 and average the results.
18345
18346 The filter accepts the following options:
18347
18348 @table @option
18349 @item quality
18350 Set quality. This option defines the number of levels for averaging. It accepts
18351 an integer in the range 0-6. If set to @code{0}, the filter will have no
18352 effect. A value of @code{6} means the higher quality. For each increment of
18353 that value the speed drops by a factor of approximately 2.  Default value is
18354 @code{3}.
18355
18356 @item qp
18357 Force a constant quantization parameter. If not set, the filter will use the QP
18358 from the video stream (if available).
18359
18360 @item mode
18361 Set thresholding mode. Available modes are:
18362
18363 @table @samp
18364 @item hard
18365 Set hard thresholding (default).
18366 @item soft
18367 Set soft thresholding (better de-ringing effect, but likely blurrier).
18368 @end table
18369
18370 @item use_bframe_qp
18371 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
18372 option may cause flicker since the B-Frames have often larger QP. Default is
18373 @code{0} (not enabled).
18374 @end table
18375
18376 @subsection Commands
18377
18378 This filter supports the following commands:
18379 @table @option
18380 @item quality, level
18381 Set quality level. The value @code{max} can be used to set the maximum level,
18382 currently @code{6}.
18383 @end table
18384
18385 @anchor{sr}
18386 @section sr
18387
18388 Scale the input by applying one of the super-resolution methods based on
18389 convolutional neural networks. Supported models:
18390
18391 @itemize
18392 @item
18393 Super-Resolution Convolutional Neural Network model (SRCNN).
18394 See @url{https://arxiv.org/abs/1501.00092}.
18395
18396 @item
18397 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
18398 See @url{https://arxiv.org/abs/1609.05158}.
18399 @end itemize
18400
18401 Training scripts as well as scripts for model file (.pb) saving can be found at
18402 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
18403 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
18404
18405 Native model files (.model) can be generated from TensorFlow model
18406 files (.pb) by using tools/python/convert.py
18407
18408 The filter accepts the following options:
18409
18410 @table @option
18411 @item dnn_backend
18412 Specify which DNN backend to use for model loading and execution. This option accepts
18413 the following values:
18414
18415 @table @samp
18416 @item native
18417 Native implementation of DNN loading and execution.
18418
18419 @item tensorflow
18420 TensorFlow backend. To enable this backend you
18421 need to install the TensorFlow for C library (see
18422 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
18423 @code{--enable-libtensorflow}
18424 @end table
18425
18426 Default value is @samp{native}.
18427
18428 @item model
18429 Set path to model file specifying network architecture and its parameters.
18430 Note that different backends use different file formats. TensorFlow backend
18431 can load files for both formats, while native backend can load files for only
18432 its format.
18433
18434 @item scale_factor
18435 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
18436 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
18437 input upscaled using bicubic upscaling with proper scale factor.
18438 @end table
18439
18440 This feature can also be finished with @ref{dnn_processing} filter.
18441
18442 @section ssim
18443
18444 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
18445
18446 This filter takes in input two input videos, the first input is
18447 considered the "main" source and is passed unchanged to the
18448 output. The second input is used as a "reference" video for computing
18449 the SSIM.
18450
18451 Both video inputs must have the same resolution and pixel format for
18452 this filter to work correctly. Also it assumes that both inputs
18453 have the same number of frames, which are compared one by one.
18454
18455 The filter stores the calculated SSIM of each frame.
18456
18457 The description of the accepted parameters follows.
18458
18459 @table @option
18460 @item stats_file, f
18461 If specified the filter will use the named file to save the SSIM of
18462 each individual frame. When filename equals "-" the data is sent to
18463 standard output.
18464 @end table
18465
18466 The file printed if @var{stats_file} is selected, contains a sequence of
18467 key/value pairs of the form @var{key}:@var{value} for each compared
18468 couple of frames.
18469
18470 A description of each shown parameter follows:
18471
18472 @table @option
18473 @item n
18474 sequential number of the input frame, starting from 1
18475
18476 @item Y, U, V, R, G, B
18477 SSIM of the compared frames for the component specified by the suffix.
18478
18479 @item All
18480 SSIM of the compared frames for the whole frame.
18481
18482 @item dB
18483 Same as above but in dB representation.
18484 @end table
18485
18486 This filter also supports the @ref{framesync} options.
18487
18488 @subsection Examples
18489 @itemize
18490 @item
18491 For example:
18492 @example
18493 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
18494 [main][ref] ssim="stats_file=stats.log" [out]
18495 @end example
18496
18497 On this example the input file being processed is compared with the
18498 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
18499 is stored in @file{stats.log}.
18500
18501 @item
18502 Another example with both psnr and ssim at same time:
18503 @example
18504 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
18505 @end example
18506
18507 @item
18508 Another example with different containers:
18509 @example
18510 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 -
18511 @end example
18512 @end itemize
18513
18514 @section stereo3d
18515
18516 Convert between different stereoscopic image formats.
18517
18518 The filters accept the following options:
18519
18520 @table @option
18521 @item in
18522 Set stereoscopic image format of input.
18523
18524 Available values for input image formats are:
18525 @table @samp
18526 @item sbsl
18527 side by side parallel (left eye left, right eye right)
18528
18529 @item sbsr
18530 side by side crosseye (right eye left, left eye right)
18531
18532 @item sbs2l
18533 side by side parallel with half width resolution
18534 (left eye left, right eye right)
18535
18536 @item sbs2r
18537 side by side crosseye with half width resolution
18538 (right eye left, left eye right)
18539
18540 @item abl
18541 @item tbl
18542 above-below (left eye above, right eye below)
18543
18544 @item abr
18545 @item tbr
18546 above-below (right eye above, left eye below)
18547
18548 @item ab2l
18549 @item tb2l
18550 above-below with half height resolution
18551 (left eye above, right eye below)
18552
18553 @item ab2r
18554 @item tb2r
18555 above-below with half height resolution
18556 (right eye above, left eye below)
18557
18558 @item al
18559 alternating frames (left eye first, right eye second)
18560
18561 @item ar
18562 alternating frames (right eye first, left eye second)
18563
18564 @item irl
18565 interleaved rows (left eye has top row, right eye starts on next row)
18566
18567 @item irr
18568 interleaved rows (right eye has top row, left eye starts on next row)
18569
18570 @item icl
18571 interleaved columns, left eye first
18572
18573 @item icr
18574 interleaved columns, right eye first
18575
18576 Default value is @samp{sbsl}.
18577 @end table
18578
18579 @item out
18580 Set stereoscopic image format of output.
18581
18582 @table @samp
18583 @item sbsl
18584 side by side parallel (left eye left, right eye right)
18585
18586 @item sbsr
18587 side by side crosseye (right eye left, left eye right)
18588
18589 @item sbs2l
18590 side by side parallel with half width resolution
18591 (left eye left, right eye right)
18592
18593 @item sbs2r
18594 side by side crosseye with half width resolution
18595 (right eye left, left eye right)
18596
18597 @item abl
18598 @item tbl
18599 above-below (left eye above, right eye below)
18600
18601 @item abr
18602 @item tbr
18603 above-below (right eye above, left eye below)
18604
18605 @item ab2l
18606 @item tb2l
18607 above-below with half height resolution
18608 (left eye above, right eye below)
18609
18610 @item ab2r
18611 @item tb2r
18612 above-below with half height resolution
18613 (right eye above, left eye below)
18614
18615 @item al
18616 alternating frames (left eye first, right eye second)
18617
18618 @item ar
18619 alternating frames (right eye first, left eye second)
18620
18621 @item irl
18622 interleaved rows (left eye has top row, right eye starts on next row)
18623
18624 @item irr
18625 interleaved rows (right eye has top row, left eye starts on next row)
18626
18627 @item arbg
18628 anaglyph red/blue gray
18629 (red filter on left eye, blue filter on right eye)
18630
18631 @item argg
18632 anaglyph red/green gray
18633 (red filter on left eye, green filter on right eye)
18634
18635 @item arcg
18636 anaglyph red/cyan gray
18637 (red filter on left eye, cyan filter on right eye)
18638
18639 @item arch
18640 anaglyph red/cyan half colored
18641 (red filter on left eye, cyan filter on right eye)
18642
18643 @item arcc
18644 anaglyph red/cyan color
18645 (red filter on left eye, cyan filter on right eye)
18646
18647 @item arcd
18648 anaglyph red/cyan color optimized with the least squares projection of dubois
18649 (red filter on left eye, cyan filter on right eye)
18650
18651 @item agmg
18652 anaglyph green/magenta gray
18653 (green filter on left eye, magenta filter on right eye)
18654
18655 @item agmh
18656 anaglyph green/magenta half colored
18657 (green filter on left eye, magenta filter on right eye)
18658
18659 @item agmc
18660 anaglyph green/magenta colored
18661 (green filter on left eye, magenta filter on right eye)
18662
18663 @item agmd
18664 anaglyph green/magenta color optimized with the least squares projection of dubois
18665 (green filter on left eye, magenta filter on right eye)
18666
18667 @item aybg
18668 anaglyph yellow/blue gray
18669 (yellow filter on left eye, blue filter on right eye)
18670
18671 @item aybh
18672 anaglyph yellow/blue half colored
18673 (yellow filter on left eye, blue filter on right eye)
18674
18675 @item aybc
18676 anaglyph yellow/blue colored
18677 (yellow filter on left eye, blue filter on right eye)
18678
18679 @item aybd
18680 anaglyph yellow/blue color optimized with the least squares projection of dubois
18681 (yellow filter on left eye, blue filter on right eye)
18682
18683 @item ml
18684 mono output (left eye only)
18685
18686 @item mr
18687 mono output (right eye only)
18688
18689 @item chl
18690 checkerboard, left eye first
18691
18692 @item chr
18693 checkerboard, right eye first
18694
18695 @item icl
18696 interleaved columns, left eye first
18697
18698 @item icr
18699 interleaved columns, right eye first
18700
18701 @item hdmi
18702 HDMI frame pack
18703 @end table
18704
18705 Default value is @samp{arcd}.
18706 @end table
18707
18708 @subsection Examples
18709
18710 @itemize
18711 @item
18712 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
18713 @example
18714 stereo3d=sbsl:aybd
18715 @end example
18716
18717 @item
18718 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
18719 @example
18720 stereo3d=abl:sbsr
18721 @end example
18722 @end itemize
18723
18724 @section streamselect, astreamselect
18725 Select video or audio streams.
18726
18727 The filter accepts the following options:
18728
18729 @table @option
18730 @item inputs
18731 Set number of inputs. Default is 2.
18732
18733 @item map
18734 Set input indexes to remap to outputs.
18735 @end table
18736
18737 @subsection Commands
18738
18739 The @code{streamselect} and @code{astreamselect} filter supports the following
18740 commands:
18741
18742 @table @option
18743 @item map
18744 Set input indexes to remap to outputs.
18745 @end table
18746
18747 @subsection Examples
18748
18749 @itemize
18750 @item
18751 Select first 5 seconds 1st stream and rest of time 2nd stream:
18752 @example
18753 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
18754 @end example
18755
18756 @item
18757 Same as above, but for audio:
18758 @example
18759 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
18760 @end example
18761 @end itemize
18762
18763 @anchor{subtitles}
18764 @section subtitles
18765
18766 Draw subtitles on top of input video using the libass library.
18767
18768 To enable compilation of this filter you need to configure FFmpeg with
18769 @code{--enable-libass}. This filter also requires a build with libavcodec and
18770 libavformat to convert the passed subtitles file to ASS (Advanced Substation
18771 Alpha) subtitles format.
18772
18773 The filter accepts the following options:
18774
18775 @table @option
18776 @item filename, f
18777 Set the filename of the subtitle file to read. It must be specified.
18778
18779 @item original_size
18780 Specify the size of the original video, the video for which the ASS file
18781 was composed. For the syntax of this option, check the
18782 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18783 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
18784 correctly scale the fonts if the aspect ratio has been changed.
18785
18786 @item fontsdir
18787 Set a directory path containing fonts that can be used by the filter.
18788 These fonts will be used in addition to whatever the font provider uses.
18789
18790 @item alpha
18791 Process alpha channel, by default alpha channel is untouched.
18792
18793 @item charenc
18794 Set subtitles input character encoding. @code{subtitles} filter only. Only
18795 useful if not UTF-8.
18796
18797 @item stream_index, si
18798 Set subtitles stream index. @code{subtitles} filter only.
18799
18800 @item force_style
18801 Override default style or script info parameters of the subtitles. It accepts a
18802 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
18803 @end table
18804
18805 If the first key is not specified, it is assumed that the first value
18806 specifies the @option{filename}.
18807
18808 For example, to render the file @file{sub.srt} on top of the input
18809 video, use the command:
18810 @example
18811 subtitles=sub.srt
18812 @end example
18813
18814 which is equivalent to:
18815 @example
18816 subtitles=filename=sub.srt
18817 @end example
18818
18819 To render the default subtitles stream from file @file{video.mkv}, use:
18820 @example
18821 subtitles=video.mkv
18822 @end example
18823
18824 To render the second subtitles stream from that file, use:
18825 @example
18826 subtitles=video.mkv:si=1
18827 @end example
18828
18829 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
18830 @code{DejaVu Serif}, use:
18831 @example
18832 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
18833 @end example
18834
18835 @section super2xsai
18836
18837 Scale the input by 2x and smooth using the Super2xSaI (Scale and
18838 Interpolate) pixel art scaling algorithm.
18839
18840 Useful for enlarging pixel art images without reducing sharpness.
18841
18842 @section swaprect
18843
18844 Swap two rectangular objects in video.
18845
18846 This filter accepts the following options:
18847
18848 @table @option
18849 @item w
18850 Set object width.
18851
18852 @item h
18853 Set object height.
18854
18855 @item x1
18856 Set 1st rect x coordinate.
18857
18858 @item y1
18859 Set 1st rect y coordinate.
18860
18861 @item x2
18862 Set 2nd rect x coordinate.
18863
18864 @item y2
18865 Set 2nd rect y coordinate.
18866
18867 All expressions are evaluated once for each frame.
18868 @end table
18869
18870 The all options are expressions containing the following constants:
18871
18872 @table @option
18873 @item w
18874 @item h
18875 The input width and height.
18876
18877 @item a
18878 same as @var{w} / @var{h}
18879
18880 @item sar
18881 input sample aspect ratio
18882
18883 @item dar
18884 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
18885
18886 @item n
18887 The number of the input frame, starting from 0.
18888
18889 @item t
18890 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
18891
18892 @item pos
18893 the position in the file of the input frame, NAN if unknown
18894 @end table
18895
18896 @section swapuv
18897 Swap U & V plane.
18898
18899 @section tblend
18900 Blend successive video frames.
18901
18902 See @ref{blend}
18903
18904 @section telecine
18905
18906 Apply telecine process to the video.
18907
18908 This filter accepts the following options:
18909
18910 @table @option
18911 @item first_field
18912 @table @samp
18913 @item top, t
18914 top field first
18915 @item bottom, b
18916 bottom field first
18917 The default value is @code{top}.
18918 @end table
18919
18920 @item pattern
18921 A string of numbers representing the pulldown pattern you wish to apply.
18922 The default value is @code{23}.
18923 @end table
18924
18925 @example
18926 Some typical patterns:
18927
18928 NTSC output (30i):
18929 27.5p: 32222
18930 24p: 23 (classic)
18931 24p: 2332 (preferred)
18932 20p: 33
18933 18p: 334
18934 16p: 3444
18935
18936 PAL output (25i):
18937 27.5p: 12222
18938 24p: 222222222223 ("Euro pulldown")
18939 16.67p: 33
18940 16p: 33333334
18941 @end example
18942
18943 @section thistogram
18944
18945 Compute and draw a color distribution histogram for the input video across time.
18946
18947 Unlike @ref{histogram} video filter which only shows histogram of single input frame
18948 at certain time, this filter shows also past histograms of number of frames defined
18949 by @code{width} option.
18950
18951 The computed histogram is a representation of the color component
18952 distribution in an image.
18953
18954 The filter accepts the following options:
18955
18956 @table @option
18957 @item width, w
18958 Set width of single color component output. Default value is @code{0}.
18959 Value of @code{0} means width will be picked from input video.
18960 This also set number of passed histograms to keep.
18961 Allowed range is [0, 8192].
18962
18963 @item display_mode, d
18964 Set display mode.
18965 It accepts the following values:
18966 @table @samp
18967 @item stack
18968 Per color component graphs are placed below each other.
18969
18970 @item parade
18971 Per color component graphs are placed side by side.
18972
18973 @item overlay
18974 Presents information identical to that in the @code{parade}, except
18975 that the graphs representing color components are superimposed directly
18976 over one another.
18977 @end table
18978 Default is @code{stack}.
18979
18980 @item levels_mode, m
18981 Set mode. Can be either @code{linear}, or @code{logarithmic}.
18982 Default is @code{linear}.
18983
18984 @item components, c
18985 Set what color components to display.
18986 Default is @code{7}.
18987
18988 @item bgopacity, b
18989 Set background opacity. Default is @code{0.9}.
18990
18991 @item envelope, e
18992 Show envelope. Default is disabled.
18993
18994 @item ecolor, ec
18995 Set envelope color. Default is @code{gold}.
18996
18997 @item slide
18998 Set slide mode.
18999
19000 Available values for slide is:
19001 @table @samp
19002 @item frame
19003 Draw new frame when right border is reached.
19004
19005 @item replace
19006 Replace old columns with new ones.
19007
19008 @item scroll
19009 Scroll from right to left.
19010
19011 @item rscroll
19012 Scroll from left to right.
19013
19014 @item picture
19015 Draw single picture.
19016 @end table
19017
19018 Default is @code{replace}.
19019 @end table
19020
19021 @section threshold
19022
19023 Apply threshold effect to video stream.
19024
19025 This filter needs four video streams to perform thresholding.
19026 First stream is stream we are filtering.
19027 Second stream is holding threshold values, third stream is holding min values,
19028 and last, fourth stream is holding max values.
19029
19030 The filter accepts the following option:
19031
19032 @table @option
19033 @item planes
19034 Set which planes will be processed, unprocessed planes will be copied.
19035 By default value 0xf, all planes will be processed.
19036 @end table
19037
19038 For example if first stream pixel's component value is less then threshold value
19039 of pixel component from 2nd threshold stream, third stream value will picked,
19040 otherwise fourth stream pixel component value will be picked.
19041
19042 Using color source filter one can perform various types of thresholding:
19043
19044 @subsection Examples
19045
19046 @itemize
19047 @item
19048 Binary threshold, using gray color as threshold:
19049 @example
19050 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
19051 @end example
19052
19053 @item
19054 Inverted binary threshold, using gray color as threshold:
19055 @example
19056 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
19057 @end example
19058
19059 @item
19060 Truncate binary threshold, using gray color as threshold:
19061 @example
19062 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
19063 @end example
19064
19065 @item
19066 Threshold to zero, using gray color as threshold:
19067 @example
19068 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
19069 @end example
19070
19071 @item
19072 Inverted threshold to zero, using gray color as threshold:
19073 @example
19074 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
19075 @end example
19076 @end itemize
19077
19078 @section thumbnail
19079 Select the most representative frame in a given sequence of consecutive frames.
19080
19081 The filter accepts the following options:
19082
19083 @table @option
19084 @item n
19085 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
19086 will pick one of them, and then handle the next batch of @var{n} frames until
19087 the end. Default is @code{100}.
19088 @end table
19089
19090 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
19091 value will result in a higher memory usage, so a high value is not recommended.
19092
19093 @subsection Examples
19094
19095 @itemize
19096 @item
19097 Extract one picture each 50 frames:
19098 @example
19099 thumbnail=50
19100 @end example
19101
19102 @item
19103 Complete example of a thumbnail creation with @command{ffmpeg}:
19104 @example
19105 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
19106 @end example
19107 @end itemize
19108
19109 @anchor{tile}
19110 @section tile
19111
19112 Tile several successive frames together.
19113
19114 The @ref{untile} filter can do the reverse.
19115
19116 The filter accepts the following options:
19117
19118 @table @option
19119
19120 @item layout
19121 Set the grid size (i.e. the number of lines and columns). For the syntax of
19122 this option, check the
19123 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19124
19125 @item nb_frames
19126 Set the maximum number of frames to render in the given area. It must be less
19127 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
19128 the area will be used.
19129
19130 @item margin
19131 Set the outer border margin in pixels.
19132
19133 @item padding
19134 Set the inner border thickness (i.e. the number of pixels between frames). For
19135 more advanced padding options (such as having different values for the edges),
19136 refer to the pad video filter.
19137
19138 @item color
19139 Specify the color of the unused area. For the syntax of this option, check the
19140 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
19141 The default value of @var{color} is "black".
19142
19143 @item overlap
19144 Set the number of frames to overlap when tiling several successive frames together.
19145 The value must be between @code{0} and @var{nb_frames - 1}.
19146
19147 @item init_padding
19148 Set the number of frames to initially be empty before displaying first output frame.
19149 This controls how soon will one get first output frame.
19150 The value must be between @code{0} and @var{nb_frames - 1}.
19151 @end table
19152
19153 @subsection Examples
19154
19155 @itemize
19156 @item
19157 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
19158 @example
19159 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
19160 @end example
19161 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
19162 duplicating each output frame to accommodate the originally detected frame
19163 rate.
19164
19165 @item
19166 Display @code{5} pictures in an area of @code{3x2} frames,
19167 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
19168 mixed flat and named options:
19169 @example
19170 tile=3x2:nb_frames=5:padding=7:margin=2
19171 @end example
19172 @end itemize
19173
19174 @section tinterlace
19175
19176 Perform various types of temporal field interlacing.
19177
19178 Frames are counted starting from 1, so the first input frame is
19179 considered odd.
19180
19181 The filter accepts the following options:
19182
19183 @table @option
19184
19185 @item mode
19186 Specify the mode of the interlacing. This option can also be specified
19187 as a value alone. See below for a list of values for this option.
19188
19189 Available values are:
19190
19191 @table @samp
19192 @item merge, 0
19193 Move odd frames into the upper field, even into the lower field,
19194 generating a double height frame at half frame rate.
19195 @example
19196  ------> time
19197 Input:
19198 Frame 1         Frame 2         Frame 3         Frame 4
19199
19200 11111           22222           33333           44444
19201 11111           22222           33333           44444
19202 11111           22222           33333           44444
19203 11111           22222           33333           44444
19204
19205 Output:
19206 11111                           33333
19207 22222                           44444
19208 11111                           33333
19209 22222                           44444
19210 11111                           33333
19211 22222                           44444
19212 11111                           33333
19213 22222                           44444
19214 @end example
19215
19216 @item drop_even, 1
19217 Only output odd frames, even frames are dropped, generating a frame with
19218 unchanged height at half frame rate.
19219
19220 @example
19221  ------> time
19222 Input:
19223 Frame 1         Frame 2         Frame 3         Frame 4
19224
19225 11111           22222           33333           44444
19226 11111           22222           33333           44444
19227 11111           22222           33333           44444
19228 11111           22222           33333           44444
19229
19230 Output:
19231 11111                           33333
19232 11111                           33333
19233 11111                           33333
19234 11111                           33333
19235 @end example
19236
19237 @item drop_odd, 2
19238 Only output even frames, odd frames are dropped, generating a frame with
19239 unchanged height at half frame rate.
19240
19241 @example
19242  ------> time
19243 Input:
19244 Frame 1         Frame 2         Frame 3         Frame 4
19245
19246 11111           22222           33333           44444
19247 11111           22222           33333           44444
19248 11111           22222           33333           44444
19249 11111           22222           33333           44444
19250
19251 Output:
19252                 22222                           44444
19253                 22222                           44444
19254                 22222                           44444
19255                 22222                           44444
19256 @end example
19257
19258 @item pad, 3
19259 Expand each frame to full height, but pad alternate lines with black,
19260 generating a frame with double height at the same input frame rate.
19261
19262 @example
19263  ------> time
19264 Input:
19265 Frame 1         Frame 2         Frame 3         Frame 4
19266
19267 11111           22222           33333           44444
19268 11111           22222           33333           44444
19269 11111           22222           33333           44444
19270 11111           22222           33333           44444
19271
19272 Output:
19273 11111           .....           33333           .....
19274 .....           22222           .....           44444
19275 11111           .....           33333           .....
19276 .....           22222           .....           44444
19277 11111           .....           33333           .....
19278 .....           22222           .....           44444
19279 11111           .....           33333           .....
19280 .....           22222           .....           44444
19281 @end example
19282
19283
19284 @item interleave_top, 4
19285 Interleave the upper field from odd frames with the lower field from
19286 even frames, generating a frame with unchanged height at half frame rate.
19287
19288 @example
19289  ------> time
19290 Input:
19291 Frame 1         Frame 2         Frame 3         Frame 4
19292
19293 11111<-         22222           33333<-         44444
19294 11111           22222<-         33333           44444<-
19295 11111<-         22222           33333<-         44444
19296 11111           22222<-         33333           44444<-
19297
19298 Output:
19299 11111                           33333
19300 22222                           44444
19301 11111                           33333
19302 22222                           44444
19303 @end example
19304
19305
19306 @item interleave_bottom, 5
19307 Interleave the lower field from odd frames with the upper field from
19308 even frames, generating a frame with unchanged height at half frame rate.
19309
19310 @example
19311  ------> time
19312 Input:
19313 Frame 1         Frame 2         Frame 3         Frame 4
19314
19315 11111           22222<-         33333           44444<-
19316 11111<-         22222           33333<-         44444
19317 11111           22222<-         33333           44444<-
19318 11111<-         22222           33333<-         44444
19319
19320 Output:
19321 22222                           44444
19322 11111                           33333
19323 22222                           44444
19324 11111                           33333
19325 @end example
19326
19327
19328 @item interlacex2, 6
19329 Double frame rate with unchanged height. Frames are inserted each
19330 containing the second temporal field from the previous input frame and
19331 the first temporal field from the next input frame. This mode relies on
19332 the top_field_first flag. Useful for interlaced video displays with no
19333 field synchronisation.
19334
19335 @example
19336  ------> time
19337 Input:
19338 Frame 1         Frame 2         Frame 3         Frame 4
19339
19340 11111           22222           33333           44444
19341  11111           22222           33333           44444
19342 11111           22222           33333           44444
19343  11111           22222           33333           44444
19344
19345 Output:
19346 11111   22222   22222   33333   33333   44444   44444
19347  11111   11111   22222   22222   33333   33333   44444
19348 11111   22222   22222   33333   33333   44444   44444
19349  11111   11111   22222   22222   33333   33333   44444
19350 @end example
19351
19352
19353 @item mergex2, 7
19354 Move odd frames into the upper field, even into the lower field,
19355 generating a double height frame at same frame rate.
19356
19357 @example
19358  ------> time
19359 Input:
19360 Frame 1         Frame 2         Frame 3         Frame 4
19361
19362 11111           22222           33333           44444
19363 11111           22222           33333           44444
19364 11111           22222           33333           44444
19365 11111           22222           33333           44444
19366
19367 Output:
19368 11111           33333           33333           55555
19369 22222           22222           44444           44444
19370 11111           33333           33333           55555
19371 22222           22222           44444           44444
19372 11111           33333           33333           55555
19373 22222           22222           44444           44444
19374 11111           33333           33333           55555
19375 22222           22222           44444           44444
19376 @end example
19377
19378 @end table
19379
19380 Numeric values are deprecated but are accepted for backward
19381 compatibility reasons.
19382
19383 Default mode is @code{merge}.
19384
19385 @item flags
19386 Specify flags influencing the filter process.
19387
19388 Available value for @var{flags} is:
19389
19390 @table @option
19391 @item low_pass_filter, vlpf
19392 Enable linear vertical low-pass filtering in the filter.
19393 Vertical low-pass filtering is required when creating an interlaced
19394 destination from a progressive source which contains high-frequency
19395 vertical detail. Filtering will reduce interlace 'twitter' and Moire
19396 patterning.
19397
19398 @item complex_filter, cvlpf
19399 Enable complex vertical low-pass filtering.
19400 This will slightly less reduce interlace 'twitter' and Moire
19401 patterning but better retain detail and subjective sharpness impression.
19402
19403 @item bypass_il
19404 Bypass already interlaced frames, only adjust the frame rate.
19405 @end table
19406
19407 Vertical low-pass filtering and bypassing already interlaced frames can only be
19408 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
19409
19410 @end table
19411
19412 @section tmedian
19413 Pick median pixels from several successive input video frames.
19414
19415 The filter accepts the following options:
19416
19417 @table @option
19418 @item radius
19419 Set radius of median filter.
19420 Default is 1. Allowed range is from 1 to 127.
19421
19422 @item planes
19423 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19424
19425 @item percentile
19426 Set median percentile. Default value is @code{0.5}.
19427 Default value of @code{0.5} will pick always median values, while @code{0} will pick
19428 minimum values, and @code{1} maximum values.
19429 @end table
19430
19431 @subsection Commands
19432
19433 This filter supports all above options as @ref{commands}, excluding option @code{radius}.
19434
19435 @section tmidequalizer
19436
19437 Apply Temporal Midway Video Equalization effect.
19438
19439 Midway Video Equalization adjusts a sequence of video frames to have the same
19440 histograms, while maintaining their dynamics as much as possible. It's
19441 useful for e.g. matching exposures from a video frames sequence.
19442
19443 This filter accepts the following option:
19444
19445 @table @option
19446 @item radius
19447 Set filtering radius. Default is @code{5}. Allowed range is from 1 to 127.
19448
19449 @item sigma
19450 Set filtering sigma. Default is @code{0.5}. This controls strength of filtering.
19451 Setting this option to 0 effectively does nothing.
19452
19453 @item planes
19454 Set which planes to process. Default is @code{15}, which is all available planes.
19455 @end table
19456
19457 @section tmix
19458
19459 Mix successive video frames.
19460
19461 A description of the accepted options follows.
19462
19463 @table @option
19464 @item frames
19465 The number of successive frames to mix. If unspecified, it defaults to 3.
19466
19467 @item weights
19468 Specify weight of each input video frame.
19469 Each weight is separated by space. If number of weights is smaller than
19470 number of @var{frames} last specified weight will be used for all remaining
19471 unset weights.
19472
19473 @item scale
19474 Specify scale, if it is set it will be multiplied with sum
19475 of each weight multiplied with pixel values to give final destination
19476 pixel value. By default @var{scale} is auto scaled to sum of weights.
19477 @end table
19478
19479 @subsection Examples
19480
19481 @itemize
19482 @item
19483 Average 7 successive frames:
19484 @example
19485 tmix=frames=7:weights="1 1 1 1 1 1 1"
19486 @end example
19487
19488 @item
19489 Apply simple temporal convolution:
19490 @example
19491 tmix=frames=3:weights="-1 3 -1"
19492 @end example
19493
19494 @item
19495 Similar as above but only showing temporal differences:
19496 @example
19497 tmix=frames=3:weights="-1 2 -1":scale=1
19498 @end example
19499 @end itemize
19500
19501 @anchor{tonemap}
19502 @section tonemap
19503 Tone map colors from different dynamic ranges.
19504
19505 This filter expects data in single precision floating point, as it needs to
19506 operate on (and can output) out-of-range values. Another filter, such as
19507 @ref{zscale}, is needed to convert the resulting frame to a usable format.
19508
19509 The tonemapping algorithms implemented only work on linear light, so input
19510 data should be linearized beforehand (and possibly correctly tagged).
19511
19512 @example
19513 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
19514 @end example
19515
19516 @subsection Options
19517 The filter accepts the following options.
19518
19519 @table @option
19520 @item tonemap
19521 Set the tone map algorithm to use.
19522
19523 Possible values are:
19524 @table @var
19525 @item none
19526 Do not apply any tone map, only desaturate overbright pixels.
19527
19528 @item clip
19529 Hard-clip any out-of-range values. Use it for perfect color accuracy for
19530 in-range values, while distorting out-of-range values.
19531
19532 @item linear
19533 Stretch the entire reference gamut to a linear multiple of the display.
19534
19535 @item gamma
19536 Fit a logarithmic transfer between the tone curves.
19537
19538 @item reinhard
19539 Preserve overall image brightness with a simple curve, using nonlinear
19540 contrast, which results in flattening details and degrading color accuracy.
19541
19542 @item hable
19543 Preserve both dark and bright details better than @var{reinhard}, at the cost
19544 of slightly darkening everything. Use it when detail preservation is more
19545 important than color and brightness accuracy.
19546
19547 @item mobius
19548 Smoothly map out-of-range values, while retaining contrast and colors for
19549 in-range material as much as possible. Use it when color accuracy is more
19550 important than detail preservation.
19551 @end table
19552
19553 Default is none.
19554
19555 @item param
19556 Tune the tone mapping algorithm.
19557
19558 This affects the following algorithms:
19559 @table @var
19560 @item none
19561 Ignored.
19562
19563 @item linear
19564 Specifies the scale factor to use while stretching.
19565 Default to 1.0.
19566
19567 @item gamma
19568 Specifies the exponent of the function.
19569 Default to 1.8.
19570
19571 @item clip
19572 Specify an extra linear coefficient to multiply into the signal before clipping.
19573 Default to 1.0.
19574
19575 @item reinhard
19576 Specify the local contrast coefficient at the display peak.
19577 Default to 0.5, which means that in-gamut values will be about half as bright
19578 as when clipping.
19579
19580 @item hable
19581 Ignored.
19582
19583 @item mobius
19584 Specify the transition point from linear to mobius transform. Every value
19585 below this point is guaranteed to be mapped 1:1. The higher the value, the
19586 more accurate the result will be, at the cost of losing bright details.
19587 Default to 0.3, which due to the steep initial slope still preserves in-range
19588 colors fairly accurately.
19589 @end table
19590
19591 @item desat
19592 Apply desaturation for highlights that exceed this level of brightness. The
19593 higher the parameter, the more color information will be preserved. This
19594 setting helps prevent unnaturally blown-out colors for super-highlights, by
19595 (smoothly) turning into white instead. This makes images feel more natural,
19596 at the cost of reducing information about out-of-range colors.
19597
19598 The default of 2.0 is somewhat conservative and will mostly just apply to
19599 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
19600
19601 This option works only if the input frame has a supported color tag.
19602
19603 @item peak
19604 Override signal/nominal/reference peak with this value. Useful when the
19605 embedded peak information in display metadata is not reliable or when tone
19606 mapping from a lower range to a higher range.
19607 @end table
19608
19609 @section tpad
19610
19611 Temporarily pad video frames.
19612
19613 The filter accepts the following options:
19614
19615 @table @option
19616 @item start
19617 Specify number of delay frames before input video stream. Default is 0.
19618
19619 @item stop
19620 Specify number of padding frames after input video stream.
19621 Set to -1 to pad indefinitely. Default is 0.
19622
19623 @item start_mode
19624 Set kind of frames added to beginning of stream.
19625 Can be either @var{add} or @var{clone}.
19626 With @var{add} frames of solid-color are added.
19627 With @var{clone} frames are clones of first frame.
19628 Default is @var{add}.
19629
19630 @item stop_mode
19631 Set kind of frames added to end of stream.
19632 Can be either @var{add} or @var{clone}.
19633 With @var{add} frames of solid-color are added.
19634 With @var{clone} frames are clones of last frame.
19635 Default is @var{add}.
19636
19637 @item start_duration, stop_duration
19638 Specify the duration of the start/stop delay. See
19639 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19640 for the accepted syntax.
19641 These options override @var{start} and @var{stop}. Default is 0.
19642
19643 @item color
19644 Specify the color of the padded area. For the syntax of this option,
19645 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
19646 manual,ffmpeg-utils}.
19647
19648 The default value of @var{color} is "black".
19649 @end table
19650
19651 @anchor{transpose}
19652 @section transpose
19653
19654 Transpose rows with columns in the input video and optionally flip it.
19655
19656 It accepts the following parameters:
19657
19658 @table @option
19659
19660 @item dir
19661 Specify the transposition direction.
19662
19663 Can assume the following values:
19664 @table @samp
19665 @item 0, 4, cclock_flip
19666 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
19667 @example
19668 L.R     L.l
19669 . . ->  . .
19670 l.r     R.r
19671 @end example
19672
19673 @item 1, 5, clock
19674 Rotate by 90 degrees clockwise, that is:
19675 @example
19676 L.R     l.L
19677 . . ->  . .
19678 l.r     r.R
19679 @end example
19680
19681 @item 2, 6, cclock
19682 Rotate by 90 degrees counterclockwise, that is:
19683 @example
19684 L.R     R.r
19685 . . ->  . .
19686 l.r     L.l
19687 @end example
19688
19689 @item 3, 7, clock_flip
19690 Rotate by 90 degrees clockwise and vertically flip, that is:
19691 @example
19692 L.R     r.R
19693 . . ->  . .
19694 l.r     l.L
19695 @end example
19696 @end table
19697
19698 For values between 4-7, the transposition is only done if the input
19699 video geometry is portrait and not landscape. These values are
19700 deprecated, the @code{passthrough} option should be used instead.
19701
19702 Numerical values are deprecated, and should be dropped in favor of
19703 symbolic constants.
19704
19705 @item passthrough
19706 Do not apply the transposition if the input geometry matches the one
19707 specified by the specified value. It accepts the following values:
19708 @table @samp
19709 @item none
19710 Always apply transposition.
19711 @item portrait
19712 Preserve portrait geometry (when @var{height} >= @var{width}).
19713 @item landscape
19714 Preserve landscape geometry (when @var{width} >= @var{height}).
19715 @end table
19716
19717 Default value is @code{none}.
19718 @end table
19719
19720 For example to rotate by 90 degrees clockwise and preserve portrait
19721 layout:
19722 @example
19723 transpose=dir=1:passthrough=portrait
19724 @end example
19725
19726 The command above can also be specified as:
19727 @example
19728 transpose=1:portrait
19729 @end example
19730
19731 @section transpose_npp
19732
19733 Transpose rows with columns in the input video and optionally flip it.
19734 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
19735
19736 It accepts the following parameters:
19737
19738 @table @option
19739
19740 @item dir
19741 Specify the transposition direction.
19742
19743 Can assume the following values:
19744 @table @samp
19745 @item cclock_flip
19746 Rotate by 90 degrees counterclockwise and vertically flip. (default)
19747
19748 @item clock
19749 Rotate by 90 degrees clockwise.
19750
19751 @item cclock
19752 Rotate by 90 degrees counterclockwise.
19753
19754 @item clock_flip
19755 Rotate by 90 degrees clockwise and vertically flip.
19756 @end table
19757
19758 @item passthrough
19759 Do not apply the transposition if the input geometry matches the one
19760 specified by the specified value. It accepts the following values:
19761 @table @samp
19762 @item none
19763 Always apply transposition. (default)
19764 @item portrait
19765 Preserve portrait geometry (when @var{height} >= @var{width}).
19766 @item landscape
19767 Preserve landscape geometry (when @var{width} >= @var{height}).
19768 @end table
19769
19770 @end table
19771
19772 @section trim
19773 Trim the input so that the output contains one continuous subpart of the input.
19774
19775 It accepts the following parameters:
19776 @table @option
19777 @item start
19778 Specify the time of the start of the kept section, i.e. the frame with the
19779 timestamp @var{start} will be the first frame in the output.
19780
19781 @item end
19782 Specify the time of the first frame that will be dropped, i.e. the frame
19783 immediately preceding the one with the timestamp @var{end} will be the last
19784 frame in the output.
19785
19786 @item start_pts
19787 This is the same as @var{start}, except this option sets the start timestamp
19788 in timebase units instead of seconds.
19789
19790 @item end_pts
19791 This is the same as @var{end}, except this option sets the end timestamp
19792 in timebase units instead of seconds.
19793
19794 @item duration
19795 The maximum duration of the output in seconds.
19796
19797 @item start_frame
19798 The number of the first frame that should be passed to the output.
19799
19800 @item end_frame
19801 The number of the first frame that should be dropped.
19802 @end table
19803
19804 @option{start}, @option{end}, and @option{duration} are expressed as time
19805 duration specifications; see
19806 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19807 for the accepted syntax.
19808
19809 Note that the first two sets of the start/end options and the @option{duration}
19810 option look at the frame timestamp, while the _frame variants simply count the
19811 frames that pass through the filter. Also note that this filter does not modify
19812 the timestamps. If you wish for the output timestamps to start at zero, insert a
19813 setpts filter after the trim filter.
19814
19815 If multiple start or end options are set, this filter tries to be greedy and
19816 keep all the frames that match at least one of the specified constraints. To keep
19817 only the part that matches all the constraints at once, chain multiple trim
19818 filters.
19819
19820 The defaults are such that all the input is kept. So it is possible to set e.g.
19821 just the end values to keep everything before the specified time.
19822
19823 Examples:
19824 @itemize
19825 @item
19826 Drop everything except the second minute of input:
19827 @example
19828 ffmpeg -i INPUT -vf trim=60:120
19829 @end example
19830
19831 @item
19832 Keep only the first second:
19833 @example
19834 ffmpeg -i INPUT -vf trim=duration=1
19835 @end example
19836
19837 @end itemize
19838
19839 @section unpremultiply
19840 Apply alpha unpremultiply effect to input video stream using first plane
19841 of second stream as alpha.
19842
19843 Both streams must have same dimensions and same pixel format.
19844
19845 The filter accepts the following option:
19846
19847 @table @option
19848 @item planes
19849 Set which planes will be processed, unprocessed planes will be copied.
19850 By default value 0xf, all planes will be processed.
19851
19852 If the format has 1 or 2 components, then luma is bit 0.
19853 If the format has 3 or 4 components:
19854 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
19855 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
19856 If present, the alpha channel is always the last bit.
19857
19858 @item inplace
19859 Do not require 2nd input for processing, instead use alpha plane from input stream.
19860 @end table
19861
19862 @anchor{unsharp}
19863 @section unsharp
19864
19865 Sharpen or blur the input video.
19866
19867 It accepts the following parameters:
19868
19869 @table @option
19870 @item luma_msize_x, lx
19871 Set the luma matrix horizontal size. It must be an odd integer between
19872 3 and 23. The default value is 5.
19873
19874 @item luma_msize_y, ly
19875 Set the luma matrix vertical size. It must be an odd integer between 3
19876 and 23. The default value is 5.
19877
19878 @item luma_amount, la
19879 Set the luma effect strength. It must be a floating point number, reasonable
19880 values lay between -1.5 and 1.5.
19881
19882 Negative values will blur the input video, while positive values will
19883 sharpen it, a value of zero will disable the effect.
19884
19885 Default value is 1.0.
19886
19887 @item chroma_msize_x, cx
19888 Set the chroma matrix horizontal size. It must be an odd integer
19889 between 3 and 23. The default value is 5.
19890
19891 @item chroma_msize_y, cy
19892 Set the chroma matrix vertical size. It must be an odd integer
19893 between 3 and 23. The default value is 5.
19894
19895 @item chroma_amount, ca
19896 Set the chroma effect strength. It must be a floating point number, reasonable
19897 values lay between -1.5 and 1.5.
19898
19899 Negative values will blur the input video, while positive values will
19900 sharpen it, a value of zero will disable the effect.
19901
19902 Default value is 0.0.
19903
19904 @end table
19905
19906 All parameters are optional and default to the equivalent of the
19907 string '5:5:1.0:5:5:0.0'.
19908
19909 @subsection Examples
19910
19911 @itemize
19912 @item
19913 Apply strong luma sharpen effect:
19914 @example
19915 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
19916 @end example
19917
19918 @item
19919 Apply a strong blur of both luma and chroma parameters:
19920 @example
19921 unsharp=7:7:-2:7:7:-2
19922 @end example
19923 @end itemize
19924
19925 @anchor{untile}
19926 @section untile
19927
19928 Decompose a video made of tiled images into the individual images.
19929
19930 The frame rate of the output video is the frame rate of the input video
19931 multiplied by the number of tiles.
19932
19933 This filter does the reverse of @ref{tile}.
19934
19935 The filter accepts the following options:
19936
19937 @table @option
19938
19939 @item layout
19940 Set the grid size (i.e. the number of lines and columns). For the syntax of
19941 this option, check the
19942 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19943 @end table
19944
19945 @subsection Examples
19946
19947 @itemize
19948 @item
19949 Produce a 1-second video from a still image file made of 25 frames stacked
19950 vertically, like an analogic film reel:
19951 @example
19952 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
19953 @end example
19954 @end itemize
19955
19956 @section uspp
19957
19958 Apply ultra slow/simple postprocessing filter that compresses and decompresses
19959 the image at several (or - in the case of @option{quality} level @code{8} - all)
19960 shifts and average the results.
19961
19962 The way this differs from the behavior of spp is that uspp actually encodes &
19963 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
19964 DCT similar to MJPEG.
19965
19966 The filter accepts the following options:
19967
19968 @table @option
19969 @item quality
19970 Set quality. This option defines the number of levels for averaging. It accepts
19971 an integer in the range 0-8. If set to @code{0}, the filter will have no
19972 effect. A value of @code{8} means the higher quality. For each increment of
19973 that value the speed drops by a factor of approximately 2.  Default value is
19974 @code{3}.
19975
19976 @item qp
19977 Force a constant quantization parameter. If not set, the filter will use the QP
19978 from the video stream (if available).
19979 @end table
19980
19981 @section v360
19982
19983 Convert 360 videos between various formats.
19984
19985 The filter accepts the following options:
19986
19987 @table @option
19988
19989 @item input
19990 @item output
19991 Set format of the input/output video.
19992
19993 Available formats:
19994
19995 @table @samp
19996
19997 @item e
19998 @item equirect
19999 Equirectangular projection.
20000
20001 @item c3x2
20002 @item c6x1
20003 @item c1x6
20004 Cubemap with 3x2/6x1/1x6 layout.
20005
20006 Format specific options:
20007
20008 @table @option
20009 @item in_pad
20010 @item out_pad
20011 Set padding proportion for the input/output cubemap. Values in decimals.
20012
20013 Example values:
20014 @table @samp
20015 @item 0
20016 No padding.
20017 @item 0.01
20018 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)
20019 @end table
20020
20021 Default value is @b{@samp{0}}.
20022 Maximum value is @b{@samp{0.1}}.
20023
20024 @item fin_pad
20025 @item fout_pad
20026 Set fixed padding for the input/output cubemap. Values in pixels.
20027
20028 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
20029
20030 @item in_forder
20031 @item out_forder
20032 Set order of faces for the input/output cubemap. Choose one direction for each position.
20033
20034 Designation of directions:
20035 @table @samp
20036 @item r
20037 right
20038 @item l
20039 left
20040 @item u
20041 up
20042 @item d
20043 down
20044 @item f
20045 forward
20046 @item b
20047 back
20048 @end table
20049
20050 Default value is @b{@samp{rludfb}}.
20051
20052 @item in_frot
20053 @item out_frot
20054 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
20055
20056 Designation of angles:
20057 @table @samp
20058 @item 0
20059 0 degrees clockwise
20060 @item 1
20061 90 degrees clockwise
20062 @item 2
20063 180 degrees clockwise
20064 @item 3
20065 270 degrees clockwise
20066 @end table
20067
20068 Default value is @b{@samp{000000}}.
20069 @end table
20070
20071 @item eac
20072 Equi-Angular Cubemap.
20073
20074 @item flat
20075 @item gnomonic
20076 @item rectilinear
20077 Regular video.
20078
20079 Format specific options:
20080 @table @option
20081 @item h_fov
20082 @item v_fov
20083 @item d_fov
20084 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20085
20086 If diagonal field of view is set it overrides horizontal and vertical field of view.
20087
20088 @item ih_fov
20089 @item iv_fov
20090 @item id_fov
20091 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20092
20093 If diagonal field of view is set it overrides horizontal and vertical field of view.
20094 @end table
20095
20096 @item dfisheye
20097 Dual fisheye.
20098
20099 Format specific options:
20100 @table @option
20101 @item h_fov
20102 @item v_fov
20103 @item d_fov
20104 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20105
20106 If diagonal field of view is set it overrides horizontal and vertical field of view.
20107
20108 @item ih_fov
20109 @item iv_fov
20110 @item id_fov
20111 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20112
20113 If diagonal field of view is set it overrides horizontal and vertical field of view.
20114 @end table
20115
20116 @item barrel
20117 @item fb
20118 @item barrelsplit
20119 Facebook's 360 formats.
20120
20121 @item sg
20122 Stereographic format.
20123
20124 Format specific options:
20125 @table @option
20126 @item h_fov
20127 @item v_fov
20128 @item d_fov
20129 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20130
20131 If diagonal field of view is set it overrides horizontal and vertical field of view.
20132
20133 @item ih_fov
20134 @item iv_fov
20135 @item id_fov
20136 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20137
20138 If diagonal field of view is set it overrides horizontal and vertical field of view.
20139 @end table
20140
20141 @item mercator
20142 Mercator format.
20143
20144 @item ball
20145 Ball format, gives significant distortion toward the back.
20146
20147 @item hammer
20148 Hammer-Aitoff map projection format.
20149
20150 @item sinusoidal
20151 Sinusoidal map projection format.
20152
20153 @item fisheye
20154 Fisheye projection.
20155
20156 Format specific options:
20157 @table @option
20158 @item h_fov
20159 @item v_fov
20160 @item d_fov
20161 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20162
20163 If diagonal field of view is set it overrides horizontal and vertical field of view.
20164
20165 @item ih_fov
20166 @item iv_fov
20167 @item id_fov
20168 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20169
20170 If diagonal field of view is set it overrides horizontal and vertical field of view.
20171 @end table
20172
20173 @item pannini
20174 Pannini projection.
20175
20176 Format specific options:
20177 @table @option
20178 @item h_fov
20179 Set output pannini parameter.
20180
20181 @item ih_fov
20182 Set input pannini parameter.
20183 @end table
20184
20185 @item cylindrical
20186 Cylindrical projection.
20187
20188 Format specific options:
20189 @table @option
20190 @item h_fov
20191 @item v_fov
20192 @item d_fov
20193 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20194
20195 If diagonal field of view is set it overrides horizontal and vertical field of view.
20196
20197 @item ih_fov
20198 @item iv_fov
20199 @item id_fov
20200 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20201
20202 If diagonal field of view is set it overrides horizontal and vertical field of view.
20203 @end table
20204
20205 @item perspective
20206 Perspective projection. @i{(output only)}
20207
20208 Format specific options:
20209 @table @option
20210 @item v_fov
20211 Set perspective parameter.
20212 @end table
20213
20214 @item tetrahedron
20215 Tetrahedron projection.
20216
20217 @item tsp
20218 Truncated square pyramid projection.
20219
20220 @item he
20221 @item hequirect
20222 Half equirectangular projection.
20223
20224 @item equisolid
20225 Equisolid format.
20226
20227 Format specific options:
20228 @table @option
20229 @item h_fov
20230 @item v_fov
20231 @item d_fov
20232 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20233
20234 If diagonal field of view is set it overrides horizontal and vertical field of view.
20235
20236 @item ih_fov
20237 @item iv_fov
20238 @item id_fov
20239 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20240
20241 If diagonal field of view is set it overrides horizontal and vertical field of view.
20242 @end table
20243
20244 @item og
20245 Orthographic format.
20246
20247 Format specific options:
20248 @table @option
20249 @item h_fov
20250 @item v_fov
20251 @item d_fov
20252 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20253
20254 If diagonal field of view is set it overrides horizontal and vertical field of view.
20255
20256 @item ih_fov
20257 @item iv_fov
20258 @item id_fov
20259 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20260
20261 If diagonal field of view is set it overrides horizontal and vertical field of view.
20262 @end table
20263
20264 @item octahedron
20265 Octahedron projection.
20266 @end table
20267
20268 @item interp
20269 Set interpolation method.@*
20270 @i{Note: more complex interpolation methods require much more memory to run.}
20271
20272 Available methods:
20273
20274 @table @samp
20275 @item near
20276 @item nearest
20277 Nearest neighbour.
20278 @item line
20279 @item linear
20280 Bilinear interpolation.
20281 @item lagrange9
20282 Lagrange9 interpolation.
20283 @item cube
20284 @item cubic
20285 Bicubic interpolation.
20286 @item lanc
20287 @item lanczos
20288 Lanczos interpolation.
20289 @item sp16
20290 @item spline16
20291 Spline16 interpolation.
20292 @item gauss
20293 @item gaussian
20294 Gaussian interpolation.
20295 @item mitchell
20296 Mitchell interpolation.
20297 @end table
20298
20299 Default value is @b{@samp{line}}.
20300
20301 @item w
20302 @item h
20303 Set the output video resolution.
20304
20305 Default resolution depends on formats.
20306
20307 @item in_stereo
20308 @item out_stereo
20309 Set the input/output stereo format.
20310
20311 @table @samp
20312 @item 2d
20313 2D mono
20314 @item sbs
20315 Side by side
20316 @item tb
20317 Top bottom
20318 @end table
20319
20320 Default value is @b{@samp{2d}} for input and output format.
20321
20322 @item yaw
20323 @item pitch
20324 @item roll
20325 Set rotation for the output video. Values in degrees.
20326
20327 @item rorder
20328 Set rotation order for the output video. Choose one item for each position.
20329
20330 @table @samp
20331 @item y, Y
20332 yaw
20333 @item p, P
20334 pitch
20335 @item r, R
20336 roll
20337 @end table
20338
20339 Default value is @b{@samp{ypr}}.
20340
20341 @item h_flip
20342 @item v_flip
20343 @item d_flip
20344 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
20345
20346 @item ih_flip
20347 @item iv_flip
20348 Set if input video is flipped horizontally/vertically. Boolean values.
20349
20350 @item in_trans
20351 Set if input video is transposed. Boolean value, by default disabled.
20352
20353 @item out_trans
20354 Set if output video needs to be transposed. Boolean value, by default disabled.
20355
20356 @item alpha_mask
20357 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
20358 @end table
20359
20360 @subsection Examples
20361
20362 @itemize
20363 @item
20364 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
20365 @example
20366 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
20367 @end example
20368 @item
20369 Extract back view of Equi-Angular Cubemap:
20370 @example
20371 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
20372 @end example
20373 @item
20374 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
20375 @example
20376 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
20377 @end example
20378 @end itemize
20379
20380 @subsection Commands
20381
20382 This filter supports subset of above options as @ref{commands}.
20383
20384 @section vaguedenoiser
20385
20386 Apply a wavelet based denoiser.
20387
20388 It transforms each frame from the video input into the wavelet domain,
20389 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
20390 the obtained coefficients. It does an inverse wavelet transform after.
20391 Due to wavelet properties, it should give a nice smoothed result, and
20392 reduced noise, without blurring picture features.
20393
20394 This filter accepts the following options:
20395
20396 @table @option
20397 @item threshold
20398 The filtering strength. The higher, the more filtered the video will be.
20399 Hard thresholding can use a higher threshold than soft thresholding
20400 before the video looks overfiltered. Default value is 2.
20401
20402 @item method
20403 The filtering method the filter will use.
20404
20405 It accepts the following values:
20406 @table @samp
20407 @item hard
20408 All values under the threshold will be zeroed.
20409
20410 @item soft
20411 All values under the threshold will be zeroed. All values above will be
20412 reduced by the threshold.
20413
20414 @item garrote
20415 Scales or nullifies coefficients - intermediary between (more) soft and
20416 (less) hard thresholding.
20417 @end table
20418
20419 Default is garrote.
20420
20421 @item nsteps
20422 Number of times, the wavelet will decompose the picture. Picture can't
20423 be decomposed beyond a particular point (typically, 8 for a 640x480
20424 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
20425
20426 @item percent
20427 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
20428
20429 @item planes
20430 A list of the planes to process. By default all planes are processed.
20431
20432 @item type
20433 The threshold type the filter will use.
20434
20435 It accepts the following values:
20436 @table @samp
20437 @item universal
20438 Threshold used is same for all decompositions.
20439
20440 @item bayes
20441 Threshold used depends also on each decomposition coefficients.
20442 @end table
20443
20444 Default is universal.
20445 @end table
20446
20447 @section vectorscope
20448
20449 Display 2 color component values in the two dimensional graph (which is called
20450 a vectorscope).
20451
20452 This filter accepts the following options:
20453
20454 @table @option
20455 @item mode, m
20456 Set vectorscope mode.
20457
20458 It accepts the following values:
20459 @table @samp
20460 @item gray
20461 @item tint
20462 Gray values are displayed on graph, higher brightness means more pixels have
20463 same component color value on location in graph. This is the default mode.
20464
20465 @item color
20466 Gray values are displayed on graph. Surrounding pixels values which are not
20467 present in video frame are drawn in gradient of 2 color components which are
20468 set by option @code{x} and @code{y}. The 3rd color component is static.
20469
20470 @item color2
20471 Actual color components values present in video frame are displayed on graph.
20472
20473 @item color3
20474 Similar as color2 but higher frequency of same values @code{x} and @code{y}
20475 on graph increases value of another color component, which is luminance by
20476 default values of @code{x} and @code{y}.
20477
20478 @item color4
20479 Actual colors present in video frame are displayed on graph. If two different
20480 colors map to same position on graph then color with higher value of component
20481 not present in graph is picked.
20482
20483 @item color5
20484 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
20485 component picked from radial gradient.
20486 @end table
20487
20488 @item x
20489 Set which color component will be represented on X-axis. Default is @code{1}.
20490
20491 @item y
20492 Set which color component will be represented on Y-axis. Default is @code{2}.
20493
20494 @item intensity, i
20495 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
20496 of color component which represents frequency of (X, Y) location in graph.
20497
20498 @item envelope, e
20499 @table @samp
20500 @item none
20501 No envelope, this is default.
20502
20503 @item instant
20504 Instant envelope, even darkest single pixel will be clearly highlighted.
20505
20506 @item peak
20507 Hold maximum and minimum values presented in graph over time. This way you
20508 can still spot out of range values without constantly looking at vectorscope.
20509
20510 @item peak+instant
20511 Peak and instant envelope combined together.
20512 @end table
20513
20514 @item graticule, g
20515 Set what kind of graticule to draw.
20516 @table @samp
20517 @item none
20518 @item green
20519 @item color
20520 @item invert
20521 @end table
20522
20523 @item opacity, o
20524 Set graticule opacity.
20525
20526 @item flags, f
20527 Set graticule flags.
20528
20529 @table @samp
20530 @item white
20531 Draw graticule for white point.
20532
20533 @item black
20534 Draw graticule for black point.
20535
20536 @item name
20537 Draw color points short names.
20538 @end table
20539
20540 @item bgopacity, b
20541 Set background opacity.
20542
20543 @item lthreshold, l
20544 Set low threshold for color component not represented on X or Y axis.
20545 Values lower than this value will be ignored. Default is 0.
20546 Note this value is multiplied with actual max possible value one pixel component
20547 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
20548 is 0.1 * 255 = 25.
20549
20550 @item hthreshold, h
20551 Set high threshold for color component not represented on X or Y axis.
20552 Values higher than this value will be ignored. Default is 1.
20553 Note this value is multiplied with actual max possible value one pixel component
20554 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
20555 is 0.9 * 255 = 230.
20556
20557 @item colorspace, c
20558 Set what kind of colorspace to use when drawing graticule.
20559 @table @samp
20560 @item auto
20561 @item 601
20562 @item 709
20563 @end table
20564 Default is auto.
20565
20566 @item tint0, t0
20567 @item tint1, t1
20568 Set color tint for gray/tint vectorscope mode. By default both options are zero.
20569 This means no tint, and output will remain gray.
20570 @end table
20571
20572 @anchor{vidstabdetect}
20573 @section vidstabdetect
20574
20575 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
20576 @ref{vidstabtransform} for pass 2.
20577
20578 This filter generates a file with relative translation and rotation
20579 transform information about subsequent frames, which is then used by
20580 the @ref{vidstabtransform} filter.
20581
20582 To enable compilation of this filter you need to configure FFmpeg with
20583 @code{--enable-libvidstab}.
20584
20585 This filter accepts the following options:
20586
20587 @table @option
20588 @item result
20589 Set the path to the file used to write the transforms information.
20590 Default value is @file{transforms.trf}.
20591
20592 @item shakiness
20593 Set how shaky the video is and how quick the camera is. It accepts an
20594 integer in the range 1-10, a value of 1 means little shakiness, a
20595 value of 10 means strong shakiness. Default value is 5.
20596
20597 @item accuracy
20598 Set the accuracy of the detection process. It must be a value in the
20599 range 1-15. A value of 1 means low accuracy, a value of 15 means high
20600 accuracy. Default value is 15.
20601
20602 @item stepsize
20603 Set stepsize of the search process. The region around minimum is
20604 scanned with 1 pixel resolution. Default value is 6.
20605
20606 @item mincontrast
20607 Set minimum contrast. Below this value a local measurement field is
20608 discarded. Must be a floating point value in the range 0-1. Default
20609 value is 0.3.
20610
20611 @item tripod
20612 Set reference frame number for tripod mode.
20613
20614 If enabled, the motion of the frames is compared to a reference frame
20615 in the filtered stream, identified by the specified number. The idea
20616 is to compensate all movements in a more-or-less static scene and keep
20617 the camera view absolutely still.
20618
20619 If set to 0, it is disabled. The frames are counted starting from 1.
20620
20621 @item show
20622 Show fields and transforms in the resulting frames. It accepts an
20623 integer in the range 0-2. Default value is 0, which disables any
20624 visualization.
20625 @end table
20626
20627 @subsection Examples
20628
20629 @itemize
20630 @item
20631 Use default values:
20632 @example
20633 vidstabdetect
20634 @end example
20635
20636 @item
20637 Analyze strongly shaky movie and put the results in file
20638 @file{mytransforms.trf}:
20639 @example
20640 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
20641 @end example
20642
20643 @item
20644 Visualize the result of internal transformations in the resulting
20645 video:
20646 @example
20647 vidstabdetect=show=1
20648 @end example
20649
20650 @item
20651 Analyze a video with medium shakiness using @command{ffmpeg}:
20652 @example
20653 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
20654 @end example
20655 @end itemize
20656
20657 @anchor{vidstabtransform}
20658 @section vidstabtransform
20659
20660 Video stabilization/deshaking: pass 2 of 2,
20661 see @ref{vidstabdetect} for pass 1.
20662
20663 Read a file with transform information for each frame and
20664 apply/compensate them. Together with the @ref{vidstabdetect}
20665 filter this can be used to deshake videos. See also
20666 @url{http://public.hronopik.de/vid.stab}. It is important to also use
20667 the @ref{unsharp} filter, see below.
20668
20669 To enable compilation of this filter you need to configure FFmpeg with
20670 @code{--enable-libvidstab}.
20671
20672 @subsection Options
20673
20674 @table @option
20675 @item input
20676 Set path to the file used to read the transforms. Default value is
20677 @file{transforms.trf}.
20678
20679 @item smoothing
20680 Set the number of frames (value*2 + 1) used for lowpass filtering the
20681 camera movements. Default value is 10.
20682
20683 For example a number of 10 means that 21 frames are used (10 in the
20684 past and 10 in the future) to smoothen the motion in the video. A
20685 larger value leads to a smoother video, but limits the acceleration of
20686 the camera (pan/tilt movements). 0 is a special case where a static
20687 camera is simulated.
20688
20689 @item optalgo
20690 Set the camera path optimization algorithm.
20691
20692 Accepted values are:
20693 @table @samp
20694 @item gauss
20695 gaussian kernel low-pass filter on camera motion (default)
20696 @item avg
20697 averaging on transformations
20698 @end table
20699
20700 @item maxshift
20701 Set maximal number of pixels to translate frames. Default value is -1,
20702 meaning no limit.
20703
20704 @item maxangle
20705 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
20706 value is -1, meaning no limit.
20707
20708 @item crop
20709 Specify how to deal with borders that may be visible due to movement
20710 compensation.
20711
20712 Available values are:
20713 @table @samp
20714 @item keep
20715 keep image information from previous frame (default)
20716 @item black
20717 fill the border black
20718 @end table
20719
20720 @item invert
20721 Invert transforms if set to 1. Default value is 0.
20722
20723 @item relative
20724 Consider transforms as relative to previous frame if set to 1,
20725 absolute if set to 0. Default value is 0.
20726
20727 @item zoom
20728 Set percentage to zoom. A positive value will result in a zoom-in
20729 effect, a negative value in a zoom-out effect. Default value is 0 (no
20730 zoom).
20731
20732 @item optzoom
20733 Set optimal zooming to avoid borders.
20734
20735 Accepted values are:
20736 @table @samp
20737 @item 0
20738 disabled
20739 @item 1
20740 optimal static zoom value is determined (only very strong movements
20741 will lead to visible borders) (default)
20742 @item 2
20743 optimal adaptive zoom value is determined (no borders will be
20744 visible), see @option{zoomspeed}
20745 @end table
20746
20747 Note that the value given at zoom is added to the one calculated here.
20748
20749 @item zoomspeed
20750 Set percent to zoom maximally each frame (enabled when
20751 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
20752 0.25.
20753
20754 @item interpol
20755 Specify type of interpolation.
20756
20757 Available values are:
20758 @table @samp
20759 @item no
20760 no interpolation
20761 @item linear
20762 linear only horizontal
20763 @item bilinear
20764 linear in both directions (default)
20765 @item bicubic
20766 cubic in both directions (slow)
20767 @end table
20768
20769 @item tripod
20770 Enable virtual tripod mode if set to 1, which is equivalent to
20771 @code{relative=0:smoothing=0}. Default value is 0.
20772
20773 Use also @code{tripod} option of @ref{vidstabdetect}.
20774
20775 @item debug
20776 Increase log verbosity if set to 1. Also the detected global motions
20777 are written to the temporary file @file{global_motions.trf}. Default
20778 value is 0.
20779 @end table
20780
20781 @subsection Examples
20782
20783 @itemize
20784 @item
20785 Use @command{ffmpeg} for a typical stabilization with default values:
20786 @example
20787 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
20788 @end example
20789
20790 Note the use of the @ref{unsharp} filter which is always recommended.
20791
20792 @item
20793 Zoom in a bit more and load transform data from a given file:
20794 @example
20795 vidstabtransform=zoom=5:input="mytransforms.trf"
20796 @end example
20797
20798 @item
20799 Smoothen the video even more:
20800 @example
20801 vidstabtransform=smoothing=30
20802 @end example
20803 @end itemize
20804
20805 @section vflip
20806
20807 Flip the input video vertically.
20808
20809 For example, to vertically flip a video with @command{ffmpeg}:
20810 @example
20811 ffmpeg -i in.avi -vf "vflip" out.avi
20812 @end example
20813
20814 @section vfrdet
20815
20816 Detect variable frame rate video.
20817
20818 This filter tries to detect if the input is variable or constant frame rate.
20819
20820 At end it will output number of frames detected as having variable delta pts,
20821 and ones with constant delta pts.
20822 If there was frames with variable delta, than it will also show min, max and
20823 average delta encountered.
20824
20825 @section vibrance
20826
20827 Boost or alter saturation.
20828
20829 The filter accepts the following options:
20830 @table @option
20831 @item intensity
20832 Set strength of boost if positive value or strength of alter if negative value.
20833 Default is 0. Allowed range is from -2 to 2.
20834
20835 @item rbal
20836 Set the red balance. Default is 1. Allowed range is from -10 to 10.
20837
20838 @item gbal
20839 Set the green balance. Default is 1. Allowed range is from -10 to 10.
20840
20841 @item bbal
20842 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
20843
20844 @item rlum
20845 Set the red luma coefficient.
20846
20847 @item glum
20848 Set the green luma coefficient.
20849
20850 @item blum
20851 Set the blue luma coefficient.
20852
20853 @item alternate
20854 If @code{intensity} is negative and this is set to 1, colors will change,
20855 otherwise colors will be less saturated, more towards gray.
20856 @end table
20857
20858 @subsection Commands
20859
20860 This filter supports the all above options as @ref{commands}.
20861
20862 @anchor{vignette}
20863 @section vignette
20864
20865 Make or reverse a natural vignetting effect.
20866
20867 The filter accepts the following options:
20868
20869 @table @option
20870 @item angle, a
20871 Set lens angle expression as a number of radians.
20872
20873 The value is clipped in the @code{[0,PI/2]} range.
20874
20875 Default value: @code{"PI/5"}
20876
20877 @item x0
20878 @item y0
20879 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
20880 by default.
20881
20882 @item mode
20883 Set forward/backward mode.
20884
20885 Available modes are:
20886 @table @samp
20887 @item forward
20888 The larger the distance from the central point, the darker the image becomes.
20889
20890 @item backward
20891 The larger the distance from the central point, the brighter the image becomes.
20892 This can be used to reverse a vignette effect, though there is no automatic
20893 detection to extract the lens @option{angle} and other settings (yet). It can
20894 also be used to create a burning effect.
20895 @end table
20896
20897 Default value is @samp{forward}.
20898
20899 @item eval
20900 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
20901
20902 It accepts the following values:
20903 @table @samp
20904 @item init
20905 Evaluate expressions only once during the filter initialization.
20906
20907 @item frame
20908 Evaluate expressions for each incoming frame. This is way slower than the
20909 @samp{init} mode since it requires all the scalers to be re-computed, but it
20910 allows advanced dynamic expressions.
20911 @end table
20912
20913 Default value is @samp{init}.
20914
20915 @item dither
20916 Set dithering to reduce the circular banding effects. Default is @code{1}
20917 (enabled).
20918
20919 @item aspect
20920 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
20921 Setting this value to the SAR of the input will make a rectangular vignetting
20922 following the dimensions of the video.
20923
20924 Default is @code{1/1}.
20925 @end table
20926
20927 @subsection Expressions
20928
20929 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
20930 following parameters.
20931
20932 @table @option
20933 @item w
20934 @item h
20935 input width and height
20936
20937 @item n
20938 the number of input frame, starting from 0
20939
20940 @item pts
20941 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
20942 @var{TB} units, NAN if undefined
20943
20944 @item r
20945 frame rate of the input video, NAN if the input frame rate is unknown
20946
20947 @item t
20948 the PTS (Presentation TimeStamp) of the filtered video frame,
20949 expressed in seconds, NAN if undefined
20950
20951 @item tb
20952 time base of the input video
20953 @end table
20954
20955
20956 @subsection Examples
20957
20958 @itemize
20959 @item
20960 Apply simple strong vignetting effect:
20961 @example
20962 vignette=PI/4
20963 @end example
20964
20965 @item
20966 Make a flickering vignetting:
20967 @example
20968 vignette='PI/4+random(1)*PI/50':eval=frame
20969 @end example
20970
20971 @end itemize
20972
20973 @section vmafmotion
20974
20975 Obtain the average VMAF motion score of a video.
20976 It is one of the component metrics of VMAF.
20977
20978 The obtained average motion score is printed through the logging system.
20979
20980 The filter accepts the following options:
20981
20982 @table @option
20983 @item stats_file
20984 If specified, the filter will use the named file to save the motion score of
20985 each frame with respect to the previous frame.
20986 When filename equals "-" the data is sent to standard output.
20987 @end table
20988
20989 Example:
20990 @example
20991 ffmpeg -i ref.mpg -vf vmafmotion -f null -
20992 @end example
20993
20994 @section vstack
20995 Stack input videos vertically.
20996
20997 All streams must be of same pixel format and of same width.
20998
20999 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
21000 to create same output.
21001
21002 The filter accepts the following options:
21003
21004 @table @option
21005 @item inputs
21006 Set number of input streams. Default is 2.
21007
21008 @item shortest
21009 If set to 1, force the output to terminate when the shortest input
21010 terminates. Default value is 0.
21011 @end table
21012
21013 @section w3fdif
21014
21015 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
21016 Deinterlacing Filter").
21017
21018 Based on the process described by Martin Weston for BBC R&D, and
21019 implemented based on the de-interlace algorithm written by Jim
21020 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
21021 uses filter coefficients calculated by BBC R&D.
21022
21023 This filter uses field-dominance information in frame to decide which
21024 of each pair of fields to place first in the output.
21025 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
21026
21027 There are two sets of filter coefficients, so called "simple"
21028 and "complex". Which set of filter coefficients is used can
21029 be set by passing an optional parameter:
21030
21031 @table @option
21032 @item filter
21033 Set the interlacing filter coefficients. Accepts one of the following values:
21034
21035 @table @samp
21036 @item simple
21037 Simple filter coefficient set.
21038 @item complex
21039 More-complex filter coefficient set.
21040 @end table
21041 Default value is @samp{complex}.
21042
21043 @item mode
21044 The interlacing mode to adopt. It accepts one of the following values:
21045
21046 @table @option
21047 @item frame
21048 Output one frame for each frame.
21049 @item field
21050 Output one frame for each field.
21051 @end table
21052
21053 The default value is @code{field}.
21054
21055 @item parity
21056 The picture field parity assumed for the input interlaced video. It accepts one
21057 of the following values:
21058
21059 @table @option
21060 @item tff
21061 Assume the top field is first.
21062 @item bff
21063 Assume the bottom field is first.
21064 @item auto
21065 Enable automatic detection of field parity.
21066 @end table
21067
21068 The default value is @code{auto}.
21069 If the interlacing is unknown or the decoder does not export this information,
21070 top field first will be assumed.
21071
21072 @item deint
21073 Specify which frames to deinterlace. Accepts one of the following values:
21074
21075 @table @samp
21076 @item all
21077 Deinterlace all frames,
21078 @item interlaced
21079 Only deinterlace frames marked as interlaced.
21080 @end table
21081
21082 Default value is @samp{all}.
21083 @end table
21084
21085 @subsection Commands
21086 This filter supports same @ref{commands} as options.
21087
21088 @section waveform
21089 Video waveform monitor.
21090
21091 The waveform monitor plots color component intensity. By default luminance
21092 only. Each column of the waveform corresponds to a column of pixels in the
21093 source video.
21094
21095 It accepts the following options:
21096
21097 @table @option
21098 @item mode, m
21099 Can be either @code{row}, or @code{column}. Default is @code{column}.
21100 In row mode, the graph on the left side represents color component value 0 and
21101 the right side represents value = 255. In column mode, the top side represents
21102 color component value = 0 and bottom side represents value = 255.
21103
21104 @item intensity, i
21105 Set intensity. Smaller values are useful to find out how many values of the same
21106 luminance are distributed across input rows/columns.
21107 Default value is @code{0.04}. Allowed range is [0, 1].
21108
21109 @item mirror, r
21110 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
21111 In mirrored mode, higher values will be represented on the left
21112 side for @code{row} mode and at the top for @code{column} mode. Default is
21113 @code{1} (mirrored).
21114
21115 @item display, d
21116 Set display mode.
21117 It accepts the following values:
21118 @table @samp
21119 @item overlay
21120 Presents information identical to that in the @code{parade}, except
21121 that the graphs representing color components are superimposed directly
21122 over one another.
21123
21124 This display mode makes it easier to spot relative differences or similarities
21125 in overlapping areas of the color components that are supposed to be identical,
21126 such as neutral whites, grays, or blacks.
21127
21128 @item stack
21129 Display separate graph for the color components side by side in
21130 @code{row} mode or one below the other in @code{column} mode.
21131
21132 @item parade
21133 Display separate graph for the color components side by side in
21134 @code{column} mode or one below the other in @code{row} mode.
21135
21136 Using this display mode makes it easy to spot color casts in the highlights
21137 and shadows of an image, by comparing the contours of the top and the bottom
21138 graphs of each waveform. Since whites, grays, and blacks are characterized
21139 by exactly equal amounts of red, green, and blue, neutral areas of the picture
21140 should display three waveforms of roughly equal width/height. If not, the
21141 correction is easy to perform by making level adjustments the three waveforms.
21142 @end table
21143 Default is @code{stack}.
21144
21145 @item components, c
21146 Set which color components to display. Default is 1, which means only luminance
21147 or red color component if input is in RGB colorspace. If is set for example to
21148 7 it will display all 3 (if) available color components.
21149
21150 @item envelope, e
21151 @table @samp
21152 @item none
21153 No envelope, this is default.
21154
21155 @item instant
21156 Instant envelope, minimum and maximum values presented in graph will be easily
21157 visible even with small @code{step} value.
21158
21159 @item peak
21160 Hold minimum and maximum values presented in graph across time. This way you
21161 can still spot out of range values without constantly looking at waveforms.
21162
21163 @item peak+instant
21164 Peak and instant envelope combined together.
21165 @end table
21166
21167 @item filter, f
21168 @table @samp
21169 @item lowpass
21170 No filtering, this is default.
21171
21172 @item flat
21173 Luma and chroma combined together.
21174
21175 @item aflat
21176 Similar as above, but shows difference between blue and red chroma.
21177
21178 @item xflat
21179 Similar as above, but use different colors.
21180
21181 @item yflat
21182 Similar as above, but again with different colors.
21183
21184 @item chroma
21185 Displays only chroma.
21186
21187 @item color
21188 Displays actual color value on waveform.
21189
21190 @item acolor
21191 Similar as above, but with luma showing frequency of chroma values.
21192 @end table
21193
21194 @item graticule, g
21195 Set which graticule to display.
21196
21197 @table @samp
21198 @item none
21199 Do not display graticule.
21200
21201 @item green
21202 Display green graticule showing legal broadcast ranges.
21203
21204 @item orange
21205 Display orange graticule showing legal broadcast ranges.
21206
21207 @item invert
21208 Display invert graticule showing legal broadcast ranges.
21209 @end table
21210
21211 @item opacity, o
21212 Set graticule opacity.
21213
21214 @item flags, fl
21215 Set graticule flags.
21216
21217 @table @samp
21218 @item numbers
21219 Draw numbers above lines. By default enabled.
21220
21221 @item dots
21222 Draw dots instead of lines.
21223 @end table
21224
21225 @item scale, s
21226 Set scale used for displaying graticule.
21227
21228 @table @samp
21229 @item digital
21230 @item millivolts
21231 @item ire
21232 @end table
21233 Default is digital.
21234
21235 @item bgopacity, b
21236 Set background opacity.
21237
21238 @item tint0, t0
21239 @item tint1, t1
21240 Set tint for output.
21241 Only used with lowpass filter and when display is not overlay and input
21242 pixel formats are not RGB.
21243 @end table
21244
21245 @section weave, doubleweave
21246
21247 The @code{weave} takes a field-based video input and join
21248 each two sequential fields into single frame, producing a new double
21249 height clip with half the frame rate and half the frame count.
21250
21251 The @code{doubleweave} works same as @code{weave} but without
21252 halving frame rate and frame count.
21253
21254 It accepts the following option:
21255
21256 @table @option
21257 @item first_field
21258 Set first field. Available values are:
21259
21260 @table @samp
21261 @item top, t
21262 Set the frame as top-field-first.
21263
21264 @item bottom, b
21265 Set the frame as bottom-field-first.
21266 @end table
21267 @end table
21268
21269 @subsection Examples
21270
21271 @itemize
21272 @item
21273 Interlace video using @ref{select} and @ref{separatefields} filter:
21274 @example
21275 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
21276 @end example
21277 @end itemize
21278
21279 @section xbr
21280 Apply the xBR high-quality magnification filter which is designed for pixel
21281 art. It follows a set of edge-detection rules, see
21282 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
21283
21284 It accepts the following option:
21285
21286 @table @option
21287 @item n
21288 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
21289 @code{3xBR} and @code{4} for @code{4xBR}.
21290 Default is @code{3}.
21291 @end table
21292
21293 @section xfade
21294
21295 Apply cross fade from one input video stream to another input video stream.
21296 The cross fade is applied for specified duration.
21297
21298 The filter accepts the following options:
21299
21300 @table @option
21301 @item transition
21302 Set one of available transition effects:
21303
21304 @table @samp
21305 @item custom
21306 @item fade
21307 @item wipeleft
21308 @item wiperight
21309 @item wipeup
21310 @item wipedown
21311 @item slideleft
21312 @item slideright
21313 @item slideup
21314 @item slidedown
21315 @item circlecrop
21316 @item rectcrop
21317 @item distance
21318 @item fadeblack
21319 @item fadewhite
21320 @item radial
21321 @item smoothleft
21322 @item smoothright
21323 @item smoothup
21324 @item smoothdown
21325 @item circleopen
21326 @item circleclose
21327 @item vertopen
21328 @item vertclose
21329 @item horzopen
21330 @item horzclose
21331 @item dissolve
21332 @item pixelize
21333 @item diagtl
21334 @item diagtr
21335 @item diagbl
21336 @item diagbr
21337 @item hlslice
21338 @item hrslice
21339 @item vuslice
21340 @item vdslice
21341 @item hblur
21342 @item fadegrays
21343 @item wipetl
21344 @item wipetr
21345 @item wipebl
21346 @item wipebr
21347 @item squeezeh
21348 @item squeezev
21349 @end table
21350 Default transition effect is fade.
21351
21352 @item duration
21353 Set cross fade duration in seconds.
21354 Default duration is 1 second.
21355
21356 @item offset
21357 Set cross fade start relative to first input stream in seconds.
21358 Default offset is 0.
21359
21360 @item expr
21361 Set expression for custom transition effect.
21362
21363 The expressions can use the following variables and functions:
21364
21365 @table @option
21366 @item X
21367 @item Y
21368 The coordinates of the current sample.
21369
21370 @item W
21371 @item H
21372 The width and height of the image.
21373
21374 @item P
21375 Progress of transition effect.
21376
21377 @item PLANE
21378 Currently processed plane.
21379
21380 @item A
21381 Return value of first input at current location and plane.
21382
21383 @item B
21384 Return value of second input at current location and plane.
21385
21386 @item a0(x, y)
21387 @item a1(x, y)
21388 @item a2(x, y)
21389 @item a3(x, y)
21390 Return the value of the pixel at location (@var{x},@var{y}) of the
21391 first/second/third/fourth component of first input.
21392
21393 @item b0(x, y)
21394 @item b1(x, y)
21395 @item b2(x, y)
21396 @item b3(x, y)
21397 Return the value of the pixel at location (@var{x},@var{y}) of the
21398 first/second/third/fourth component of second input.
21399 @end table
21400 @end table
21401
21402 @subsection Examples
21403
21404 @itemize
21405 @item
21406 Cross fade from one input video to another input video, with fade transition and duration of transition
21407 of 2 seconds starting at offset of 5 seconds:
21408 @example
21409 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
21410 @end example
21411 @end itemize
21412
21413 @section xmedian
21414 Pick median pixels from several input videos.
21415
21416 The filter accepts the following options:
21417
21418 @table @option
21419 @item inputs
21420 Set number of inputs.
21421 Default is 3. Allowed range is from 3 to 255.
21422 If number of inputs is even number, than result will be mean value between two median values.
21423
21424 @item planes
21425 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
21426
21427 @item percentile
21428 Set median percentile. Default value is @code{0.5}.
21429 Default value of @code{0.5} will pick always median values, while @code{0} will pick
21430 minimum values, and @code{1} maximum values.
21431 @end table
21432
21433 @subsection Commands
21434
21435 This filter supports all above options as @ref{commands}, excluding option @code{inputs}.
21436
21437 @section xstack
21438 Stack video inputs into custom layout.
21439
21440 All streams must be of same pixel format.
21441
21442 The filter accepts the following options:
21443
21444 @table @option
21445 @item inputs
21446 Set number of input streams. Default is 2.
21447
21448 @item layout
21449 Specify layout of inputs.
21450 This option requires the desired layout configuration to be explicitly set by the user.
21451 This sets position of each video input in output. Each input
21452 is separated by '|'.
21453 The first number represents the column, and the second number represents the row.
21454 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
21455 where X is video input from which to take width or height.
21456 Multiple values can be used when separated by '+'. In such
21457 case values are summed together.
21458
21459 Note that if inputs are of different sizes gaps may appear, as not all of
21460 the output video frame will be filled. Similarly, videos can overlap each
21461 other if their position doesn't leave enough space for the full frame of
21462 adjoining videos.
21463
21464 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
21465 a layout must be set by the user.
21466
21467 @item shortest
21468 If set to 1, force the output to terminate when the shortest input
21469 terminates. Default value is 0.
21470
21471 @item fill
21472 If set to valid color, all unused pixels will be filled with that color.
21473 By default fill is set to none, so it is disabled.
21474 @end table
21475
21476 @subsection Examples
21477
21478 @itemize
21479 @item
21480 Display 4 inputs into 2x2 grid.
21481
21482 Layout:
21483 @example
21484 input1(0, 0)  | input3(w0, 0)
21485 input2(0, h0) | input4(w0, h0)
21486 @end example
21487
21488 @example
21489 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
21490 @end example
21491
21492 Note that if inputs are of different sizes, gaps or overlaps may occur.
21493
21494 @item
21495 Display 4 inputs into 1x4 grid.
21496
21497 Layout:
21498 @example
21499 input1(0, 0)
21500 input2(0, h0)
21501 input3(0, h0+h1)
21502 input4(0, h0+h1+h2)
21503 @end example
21504
21505 @example
21506 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
21507 @end example
21508
21509 Note that if inputs are of different widths, unused space will appear.
21510
21511 @item
21512 Display 9 inputs into 3x3 grid.
21513
21514 Layout:
21515 @example
21516 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
21517 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
21518 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
21519 @end example
21520
21521 @example
21522 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
21523 @end example
21524
21525 Note that if inputs are of different sizes, gaps or overlaps may occur.
21526
21527 @item
21528 Display 16 inputs into 4x4 grid.
21529
21530 Layout:
21531 @example
21532 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
21533 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
21534 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
21535 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
21536 @end example
21537
21538 @example
21539 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|
21540 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
21541 @end example
21542
21543 Note that if inputs are of different sizes, gaps or overlaps may occur.
21544
21545 @end itemize
21546
21547 @anchor{yadif}
21548 @section yadif
21549
21550 Deinterlace the input video ("yadif" means "yet another deinterlacing
21551 filter").
21552
21553 It accepts the following parameters:
21554
21555
21556 @table @option
21557
21558 @item mode
21559 The interlacing mode to adopt. It accepts one of the following values:
21560
21561 @table @option
21562 @item 0, send_frame
21563 Output one frame for each frame.
21564 @item 1, send_field
21565 Output one frame for each field.
21566 @item 2, send_frame_nospatial
21567 Like @code{send_frame}, but it skips the spatial interlacing check.
21568 @item 3, send_field_nospatial
21569 Like @code{send_field}, but it skips the spatial interlacing check.
21570 @end table
21571
21572 The default value is @code{send_frame}.
21573
21574 @item parity
21575 The picture field parity assumed for the input interlaced video. It accepts one
21576 of the following values:
21577
21578 @table @option
21579 @item 0, tff
21580 Assume the top field is first.
21581 @item 1, bff
21582 Assume the bottom field is first.
21583 @item -1, auto
21584 Enable automatic detection of field parity.
21585 @end table
21586
21587 The default value is @code{auto}.
21588 If the interlacing is unknown or the decoder does not export this information,
21589 top field first will be assumed.
21590
21591 @item deint
21592 Specify which frames to deinterlace. Accepts one of the following
21593 values:
21594
21595 @table @option
21596 @item 0, all
21597 Deinterlace all frames.
21598 @item 1, interlaced
21599 Only deinterlace frames marked as interlaced.
21600 @end table
21601
21602 The default value is @code{all}.
21603 @end table
21604
21605 @section yadif_cuda
21606
21607 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
21608 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
21609 and/or nvenc.
21610
21611 It accepts the following parameters:
21612
21613
21614 @table @option
21615
21616 @item mode
21617 The interlacing mode to adopt. It accepts one of the following values:
21618
21619 @table @option
21620 @item 0, send_frame
21621 Output one frame for each frame.
21622 @item 1, send_field
21623 Output one frame for each field.
21624 @item 2, send_frame_nospatial
21625 Like @code{send_frame}, but it skips the spatial interlacing check.
21626 @item 3, send_field_nospatial
21627 Like @code{send_field}, but it skips the spatial interlacing check.
21628 @end table
21629
21630 The default value is @code{send_frame}.
21631
21632 @item parity
21633 The picture field parity assumed for the input interlaced video. It accepts one
21634 of the following values:
21635
21636 @table @option
21637 @item 0, tff
21638 Assume the top field is first.
21639 @item 1, bff
21640 Assume the bottom field is first.
21641 @item -1, auto
21642 Enable automatic detection of field parity.
21643 @end table
21644
21645 The default value is @code{auto}.
21646 If the interlacing is unknown or the decoder does not export this information,
21647 top field first will be assumed.
21648
21649 @item deint
21650 Specify which frames to deinterlace. Accepts one of the following
21651 values:
21652
21653 @table @option
21654 @item 0, all
21655 Deinterlace all frames.
21656 @item 1, interlaced
21657 Only deinterlace frames marked as interlaced.
21658 @end table
21659
21660 The default value is @code{all}.
21661 @end table
21662
21663 @section yaepblur
21664
21665 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
21666 The algorithm is described in
21667 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
21668
21669 It accepts the following parameters:
21670
21671 @table @option
21672 @item radius, r
21673 Set the window radius. Default value is 3.
21674
21675 @item planes, p
21676 Set which planes to filter. Default is only the first plane.
21677
21678 @item sigma, s
21679 Set blur strength. Default value is 128.
21680 @end table
21681
21682 @subsection Commands
21683 This filter supports same @ref{commands} as options.
21684
21685 @section zoompan
21686
21687 Apply Zoom & Pan effect.
21688
21689 This filter accepts the following options:
21690
21691 @table @option
21692 @item zoom, z
21693 Set the zoom expression. Range is 1-10. Default is 1.
21694
21695 @item x
21696 @item y
21697 Set the x and y expression. Default is 0.
21698
21699 @item d
21700 Set the duration expression in number of frames.
21701 This sets for how many number of frames effect will last for
21702 single input image.
21703
21704 @item s
21705 Set the output image size, default is 'hd720'.
21706
21707 @item fps
21708 Set the output frame rate, default is '25'.
21709 @end table
21710
21711 Each expression can contain the following constants:
21712
21713 @table @option
21714 @item in_w, iw
21715 Input width.
21716
21717 @item in_h, ih
21718 Input height.
21719
21720 @item out_w, ow
21721 Output width.
21722
21723 @item out_h, oh
21724 Output height.
21725
21726 @item in
21727 Input frame count.
21728
21729 @item on
21730 Output frame count.
21731
21732 @item in_time, it
21733 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
21734
21735 @item out_time, time, ot
21736 The output timestamp expressed in seconds.
21737
21738 @item x
21739 @item y
21740 Last calculated 'x' and 'y' position from 'x' and 'y' expression
21741 for current input frame.
21742
21743 @item px
21744 @item py
21745 'x' and 'y' of last output frame of previous input frame or 0 when there was
21746 not yet such frame (first input frame).
21747
21748 @item zoom
21749 Last calculated zoom from 'z' expression for current input frame.
21750
21751 @item pzoom
21752 Last calculated zoom of last output frame of previous input frame.
21753
21754 @item duration
21755 Number of output frames for current input frame. Calculated from 'd' expression
21756 for each input frame.
21757
21758 @item pduration
21759 number of output frames created for previous input frame
21760
21761 @item a
21762 Rational number: input width / input height
21763
21764 @item sar
21765 sample aspect ratio
21766
21767 @item dar
21768 display aspect ratio
21769
21770 @end table
21771
21772 @subsection Examples
21773
21774 @itemize
21775 @item
21776 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
21777 @example
21778 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
21779 @end example
21780
21781 @item
21782 Zoom in up to 1.5x and pan always at center of picture:
21783 @example
21784 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21785 @end example
21786
21787 @item
21788 Same as above but without pausing:
21789 @example
21790 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21791 @end example
21792
21793 @item
21794 Zoom in 2x into center of picture only for the first second of the input video:
21795 @example
21796 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21797 @end example
21798
21799 @end itemize
21800
21801 @anchor{zscale}
21802 @section zscale
21803 Scale (resize) the input video, using the z.lib library:
21804 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
21805 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
21806
21807 The zscale filter forces the output display aspect ratio to be the same
21808 as the input, by changing the output sample aspect ratio.
21809
21810 If the input image format is different from the format requested by
21811 the next filter, the zscale filter will convert the input to the
21812 requested format.
21813
21814 @subsection Options
21815 The filter accepts the following options.
21816
21817 @table @option
21818 @item width, w
21819 @item height, h
21820 Set the output video dimension expression. Default value is the input
21821 dimension.
21822
21823 If the @var{width} or @var{w} value is 0, the input width is used for
21824 the output. If the @var{height} or @var{h} value is 0, the input height
21825 is used for the output.
21826
21827 If one and only one of the values is -n with n >= 1, the zscale filter
21828 will use a value that maintains the aspect ratio of the input image,
21829 calculated from the other specified dimension. After that it will,
21830 however, make sure that the calculated dimension is divisible by n and
21831 adjust the value if necessary.
21832
21833 If both values are -n with n >= 1, the behavior will be identical to
21834 both values being set to 0 as previously detailed.
21835
21836 See below for the list of accepted constants for use in the dimension
21837 expression.
21838
21839 @item size, s
21840 Set the video size. For the syntax of this option, check the
21841 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21842
21843 @item dither, d
21844 Set the dither type.
21845
21846 Possible values are:
21847 @table @var
21848 @item none
21849 @item ordered
21850 @item random
21851 @item error_diffusion
21852 @end table
21853
21854 Default is none.
21855
21856 @item filter, f
21857 Set the resize filter type.
21858
21859 Possible values are:
21860 @table @var
21861 @item point
21862 @item bilinear
21863 @item bicubic
21864 @item spline16
21865 @item spline36
21866 @item lanczos
21867 @end table
21868
21869 Default is bilinear.
21870
21871 @item range, r
21872 Set the color range.
21873
21874 Possible values are:
21875 @table @var
21876 @item input
21877 @item limited
21878 @item full
21879 @end table
21880
21881 Default is same as input.
21882
21883 @item primaries, p
21884 Set the color primaries.
21885
21886 Possible values are:
21887 @table @var
21888 @item input
21889 @item 709
21890 @item unspecified
21891 @item 170m
21892 @item 240m
21893 @item 2020
21894 @end table
21895
21896 Default is same as input.
21897
21898 @item transfer, t
21899 Set the transfer characteristics.
21900
21901 Possible values are:
21902 @table @var
21903 @item input
21904 @item 709
21905 @item unspecified
21906 @item 601
21907 @item linear
21908 @item 2020_10
21909 @item 2020_12
21910 @item smpte2084
21911 @item iec61966-2-1
21912 @item arib-std-b67
21913 @end table
21914
21915 Default is same as input.
21916
21917 @item matrix, m
21918 Set the colorspace matrix.
21919
21920 Possible value are:
21921 @table @var
21922 @item input
21923 @item 709
21924 @item unspecified
21925 @item 470bg
21926 @item 170m
21927 @item 2020_ncl
21928 @item 2020_cl
21929 @end table
21930
21931 Default is same as input.
21932
21933 @item rangein, rin
21934 Set the input color range.
21935
21936 Possible values are:
21937 @table @var
21938 @item input
21939 @item limited
21940 @item full
21941 @end table
21942
21943 Default is same as input.
21944
21945 @item primariesin, pin
21946 Set the input color primaries.
21947
21948 Possible values are:
21949 @table @var
21950 @item input
21951 @item 709
21952 @item unspecified
21953 @item 170m
21954 @item 240m
21955 @item 2020
21956 @end table
21957
21958 Default is same as input.
21959
21960 @item transferin, tin
21961 Set the input transfer characteristics.
21962
21963 Possible values are:
21964 @table @var
21965 @item input
21966 @item 709
21967 @item unspecified
21968 @item 601
21969 @item linear
21970 @item 2020_10
21971 @item 2020_12
21972 @end table
21973
21974 Default is same as input.
21975
21976 @item matrixin, min
21977 Set the input colorspace matrix.
21978
21979 Possible value are:
21980 @table @var
21981 @item input
21982 @item 709
21983 @item unspecified
21984 @item 470bg
21985 @item 170m
21986 @item 2020_ncl
21987 @item 2020_cl
21988 @end table
21989
21990 @item chromal, c
21991 Set the output chroma location.
21992
21993 Possible values are:
21994 @table @var
21995 @item input
21996 @item left
21997 @item center
21998 @item topleft
21999 @item top
22000 @item bottomleft
22001 @item bottom
22002 @end table
22003
22004 @item chromalin, cin
22005 Set the input chroma location.
22006
22007 Possible values are:
22008 @table @var
22009 @item input
22010 @item left
22011 @item center
22012 @item topleft
22013 @item top
22014 @item bottomleft
22015 @item bottom
22016 @end table
22017
22018 @item npl
22019 Set the nominal peak luminance.
22020 @end table
22021
22022 The values of the @option{w} and @option{h} options are expressions
22023 containing the following constants:
22024
22025 @table @var
22026 @item in_w
22027 @item in_h
22028 The input width and height
22029
22030 @item iw
22031 @item ih
22032 These are the same as @var{in_w} and @var{in_h}.
22033
22034 @item out_w
22035 @item out_h
22036 The output (scaled) width and height
22037
22038 @item ow
22039 @item oh
22040 These are the same as @var{out_w} and @var{out_h}
22041
22042 @item a
22043 The same as @var{iw} / @var{ih}
22044
22045 @item sar
22046 input sample aspect ratio
22047
22048 @item dar
22049 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
22050
22051 @item hsub
22052 @item vsub
22053 horizontal and vertical input chroma subsample values. For example for the
22054 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22055
22056 @item ohsub
22057 @item ovsub
22058 horizontal and vertical output chroma subsample values. For example for the
22059 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22060 @end table
22061
22062 @subsection Commands
22063
22064 This filter supports the following commands:
22065 @table @option
22066 @item width, w
22067 @item height, h
22068 Set the output video dimension expression.
22069 The command accepts the same syntax of the corresponding option.
22070
22071 If the specified expression is not valid, it is kept at its current
22072 value.
22073 @end table
22074
22075 @c man end VIDEO FILTERS
22076
22077 @chapter OpenCL Video Filters
22078 @c man begin OPENCL VIDEO FILTERS
22079
22080 Below is a description of the currently available OpenCL video filters.
22081
22082 To enable compilation of these filters you need to configure FFmpeg with
22083 @code{--enable-opencl}.
22084
22085 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
22086 @table @option
22087
22088 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
22089 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
22090 given device parameters.
22091
22092 @item -filter_hw_device @var{name}
22093 Pass the hardware device called @var{name} to all filters in any filter graph.
22094
22095 @end table
22096
22097 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
22098
22099 @itemize
22100 @item
22101 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
22102 @example
22103 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
22104 @end example
22105 @end itemize
22106
22107 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.
22108
22109 @section avgblur_opencl
22110
22111 Apply average blur filter.
22112
22113 The filter accepts the following options:
22114
22115 @table @option
22116 @item sizeX
22117 Set horizontal radius size.
22118 Range is @code{[1, 1024]} and default value is @code{1}.
22119
22120 @item planes
22121 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22122
22123 @item sizeY
22124 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
22125 @end table
22126
22127 @subsection Example
22128
22129 @itemize
22130 @item
22131 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.
22132 @example
22133 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
22134 @end example
22135 @end itemize
22136
22137 @section boxblur_opencl
22138
22139 Apply a boxblur algorithm to the input video.
22140
22141 It accepts the following parameters:
22142
22143 @table @option
22144
22145 @item luma_radius, lr
22146 @item luma_power, lp
22147 @item chroma_radius, cr
22148 @item chroma_power, cp
22149 @item alpha_radius, ar
22150 @item alpha_power, ap
22151
22152 @end table
22153
22154 A description of the accepted options follows.
22155
22156 @table @option
22157 @item luma_radius, lr
22158 @item chroma_radius, cr
22159 @item alpha_radius, ar
22160 Set an expression for the box radius in pixels used for blurring the
22161 corresponding input plane.
22162
22163 The radius value must be a non-negative number, and must not be
22164 greater than the value of the expression @code{min(w,h)/2} for the
22165 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
22166 planes.
22167
22168 Default value for @option{luma_radius} is "2". If not specified,
22169 @option{chroma_radius} and @option{alpha_radius} default to the
22170 corresponding value set for @option{luma_radius}.
22171
22172 The expressions can contain the following constants:
22173 @table @option
22174 @item w
22175 @item h
22176 The input width and height in pixels.
22177
22178 @item cw
22179 @item ch
22180 The input chroma image width and height in pixels.
22181
22182 @item hsub
22183 @item vsub
22184 The horizontal and vertical chroma subsample values. For example, for the
22185 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
22186 @end table
22187
22188 @item luma_power, lp
22189 @item chroma_power, cp
22190 @item alpha_power, ap
22191 Specify how many times the boxblur filter is applied to the
22192 corresponding plane.
22193
22194 Default value for @option{luma_power} is 2. If not specified,
22195 @option{chroma_power} and @option{alpha_power} default to the
22196 corresponding value set for @option{luma_power}.
22197
22198 A value of 0 will disable the effect.
22199 @end table
22200
22201 @subsection Examples
22202
22203 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.
22204
22205 @itemize
22206 @item
22207 Apply a boxblur filter with the luma, chroma, and alpha radius
22208 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.
22209 @example
22210 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
22211 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
22212 @end example
22213
22214 @item
22215 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.
22216
22217 For the luma plane, a 2x2 box radius will be run once.
22218
22219 For the chroma plane, a 4x4 box radius will be run 5 times.
22220
22221 For the alpha plane, a 3x3 box radius will be run 7 times.
22222 @example
22223 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
22224 @end example
22225 @end itemize
22226
22227 @section colorkey_opencl
22228 RGB colorspace color keying.
22229
22230 The filter accepts the following options:
22231
22232 @table @option
22233 @item color
22234 The color which will be replaced with transparency.
22235
22236 @item similarity
22237 Similarity percentage with the key color.
22238
22239 0.01 matches only the exact key color, while 1.0 matches everything.
22240
22241 @item blend
22242 Blend percentage.
22243
22244 0.0 makes pixels either fully transparent, or not transparent at all.
22245
22246 Higher values result in semi-transparent pixels, with a higher transparency
22247 the more similar the pixels color is to the key color.
22248 @end table
22249
22250 @subsection Examples
22251
22252 @itemize
22253 @item
22254 Make every semi-green pixel in the input transparent with some slight blending:
22255 @example
22256 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
22257 @end example
22258 @end itemize
22259
22260 @section convolution_opencl
22261
22262 Apply convolution of 3x3, 5x5, 7x7 matrix.
22263
22264 The filter accepts the following options:
22265
22266 @table @option
22267 @item 0m
22268 @item 1m
22269 @item 2m
22270 @item 3m
22271 Set matrix for each plane.
22272 Matrix is sequence of 9, 25 or 49 signed numbers.
22273 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
22274
22275 @item 0rdiv
22276 @item 1rdiv
22277 @item 2rdiv
22278 @item 3rdiv
22279 Set multiplier for calculated value for each plane.
22280 If unset or 0, it will be sum of all matrix elements.
22281 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
22282
22283 @item 0bias
22284 @item 1bias
22285 @item 2bias
22286 @item 3bias
22287 Set bias for each plane. This value is added to the result of the multiplication.
22288 Useful for making the overall image brighter or darker.
22289 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
22290
22291 @end table
22292
22293 @subsection Examples
22294
22295 @itemize
22296 @item
22297 Apply sharpen:
22298 @example
22299 -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
22300 @end example
22301
22302 @item
22303 Apply blur:
22304 @example
22305 -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
22306 @end example
22307
22308 @item
22309 Apply edge enhance:
22310 @example
22311 -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
22312 @end example
22313
22314 @item
22315 Apply edge detect:
22316 @example
22317 -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
22318 @end example
22319
22320 @item
22321 Apply laplacian edge detector which includes diagonals:
22322 @example
22323 -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
22324 @end example
22325
22326 @item
22327 Apply emboss:
22328 @example
22329 -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
22330 @end example
22331 @end itemize
22332
22333 @section erosion_opencl
22334
22335 Apply erosion effect to the video.
22336
22337 This filter replaces the pixel by the local(3x3) minimum.
22338
22339 It accepts the following options:
22340
22341 @table @option
22342 @item threshold0
22343 @item threshold1
22344 @item threshold2
22345 @item threshold3
22346 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22347 If @code{0}, plane will remain unchanged.
22348
22349 @item coordinates
22350 Flag which specifies the pixel to refer to.
22351 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22352
22353 Flags to local 3x3 coordinates region centered on @code{x}:
22354
22355     1 2 3
22356
22357     4 x 5
22358
22359     6 7 8
22360 @end table
22361
22362 @subsection Example
22363
22364 @itemize
22365 @item
22366 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.
22367 @example
22368 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22369 @end example
22370 @end itemize
22371
22372 @section deshake_opencl
22373 Feature-point based video stabilization filter.
22374
22375 The filter accepts the following options:
22376
22377 @table @option
22378 @item tripod
22379 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
22380
22381 @item debug
22382 Whether or not additional debug info should be displayed, both in the processed output and in the console.
22383
22384 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
22385
22386 Viewing point matches in the output video is only supported for RGB input.
22387
22388 Defaults to @code{0}.
22389
22390 @item adaptive_crop
22391 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
22392
22393 Defaults to @code{1}.
22394
22395 @item refine_features
22396 Whether or not feature points should be refined at a sub-pixel level.
22397
22398 This can be turned off for a slight performance gain at the cost of precision.
22399
22400 Defaults to @code{1}.
22401
22402 @item smooth_strength
22403 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
22404
22405 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
22406
22407 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
22408
22409 Defaults to @code{0.0}.
22410
22411 @item smooth_window_multiplier
22412 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
22413
22414 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
22415
22416 Acceptable values range from @code{0.1} to @code{10.0}.
22417
22418 Larger values increase the amount of motion data available for determining how to smooth the camera path,
22419 potentially improving smoothness, but also increase latency and memory usage.
22420
22421 Defaults to @code{2.0}.
22422
22423 @end table
22424
22425 @subsection Examples
22426
22427 @itemize
22428 @item
22429 Stabilize a video with a fixed, medium smoothing strength:
22430 @example
22431 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
22432 @end example
22433
22434 @item
22435 Stabilize a video with debugging (both in console and in rendered video):
22436 @example
22437 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
22438 @end example
22439 @end itemize
22440
22441 @section dilation_opencl
22442
22443 Apply dilation effect to the video.
22444
22445 This filter replaces the pixel by the local(3x3) maximum.
22446
22447 It accepts the following options:
22448
22449 @table @option
22450 @item threshold0
22451 @item threshold1
22452 @item threshold2
22453 @item threshold3
22454 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22455 If @code{0}, plane will remain unchanged.
22456
22457 @item coordinates
22458 Flag which specifies the pixel to refer to.
22459 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22460
22461 Flags to local 3x3 coordinates region centered on @code{x}:
22462
22463     1 2 3
22464
22465     4 x 5
22466
22467     6 7 8
22468 @end table
22469
22470 @subsection Example
22471
22472 @itemize
22473 @item
22474 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.
22475 @example
22476 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22477 @end example
22478 @end itemize
22479
22480 @section nlmeans_opencl
22481
22482 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
22483
22484 @section overlay_opencl
22485
22486 Overlay one video on top of another.
22487
22488 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
22489 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
22490
22491 The filter accepts the following options:
22492
22493 @table @option
22494
22495 @item x
22496 Set the x coordinate of the overlaid video on the main video.
22497 Default value is @code{0}.
22498
22499 @item y
22500 Set the y coordinate of the overlaid video on the main video.
22501 Default value is @code{0}.
22502
22503 @end table
22504
22505 @subsection Examples
22506
22507 @itemize
22508 @item
22509 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
22510 @example
22511 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22512 @end example
22513 @item
22514 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
22515 @example
22516 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22517 @end example
22518
22519 @end itemize
22520
22521 @section pad_opencl
22522
22523 Add paddings to the input image, and place the original input at the
22524 provided @var{x}, @var{y} coordinates.
22525
22526 It accepts the following options:
22527
22528 @table @option
22529 @item width, w
22530 @item height, h
22531 Specify an expression for the size of the output image with the
22532 paddings added. If the value for @var{width} or @var{height} is 0, the
22533 corresponding input size is used for the output.
22534
22535 The @var{width} expression can reference the value set by the
22536 @var{height} expression, and vice versa.
22537
22538 The default value of @var{width} and @var{height} is 0.
22539
22540 @item x
22541 @item y
22542 Specify the offsets to place the input image at within the padded area,
22543 with respect to the top/left border of the output image.
22544
22545 The @var{x} expression can reference the value set by the @var{y}
22546 expression, and vice versa.
22547
22548 The default value of @var{x} and @var{y} is 0.
22549
22550 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
22551 so the input image is centered on the padded area.
22552
22553 @item color
22554 Specify the color of the padded area. For the syntax of this option,
22555 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
22556 manual,ffmpeg-utils}.
22557
22558 @item aspect
22559 Pad to an aspect instead to a resolution.
22560 @end table
22561
22562 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
22563 options are expressions containing the following constants:
22564
22565 @table @option
22566 @item in_w
22567 @item in_h
22568 The input video width and height.
22569
22570 @item iw
22571 @item ih
22572 These are the same as @var{in_w} and @var{in_h}.
22573
22574 @item out_w
22575 @item out_h
22576 The output width and height (the size of the padded area), as
22577 specified by the @var{width} and @var{height} expressions.
22578
22579 @item ow
22580 @item oh
22581 These are the same as @var{out_w} and @var{out_h}.
22582
22583 @item x
22584 @item y
22585 The x and y offsets as specified by the @var{x} and @var{y}
22586 expressions, or NAN if not yet specified.
22587
22588 @item a
22589 same as @var{iw} / @var{ih}
22590
22591 @item sar
22592 input sample aspect ratio
22593
22594 @item dar
22595 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
22596 @end table
22597
22598 @section prewitt_opencl
22599
22600 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
22601
22602 The filter accepts the following option:
22603
22604 @table @option
22605 @item planes
22606 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22607
22608 @item scale
22609 Set value which will be multiplied with filtered result.
22610 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22611
22612 @item delta
22613 Set value which will be added to filtered result.
22614 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22615 @end table
22616
22617 @subsection Example
22618
22619 @itemize
22620 @item
22621 Apply the Prewitt operator with scale set to 2 and delta set to 10.
22622 @example
22623 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
22624 @end example
22625 @end itemize
22626
22627 @anchor{program_opencl}
22628 @section program_opencl
22629
22630 Filter video using an OpenCL program.
22631
22632 @table @option
22633
22634 @item source
22635 OpenCL program source file.
22636
22637 @item kernel
22638 Kernel name in program.
22639
22640 @item inputs
22641 Number of inputs to the filter.  Defaults to 1.
22642
22643 @item size, s
22644 Size of output frames.  Defaults to the same as the first input.
22645
22646 @end table
22647
22648 The @code{program_opencl} filter also supports the @ref{framesync} options.
22649
22650 The program source file must contain a kernel function with the given name,
22651 which will be run once for each plane of the output.  Each run on a plane
22652 gets enqueued as a separate 2D global NDRange with one work-item for each
22653 pixel to be generated.  The global ID offset for each work-item is therefore
22654 the coordinates of a pixel in the destination image.
22655
22656 The kernel function needs to take the following arguments:
22657 @itemize
22658 @item
22659 Destination image, @var{__write_only image2d_t}.
22660
22661 This image will become the output; the kernel should write all of it.
22662 @item
22663 Frame index, @var{unsigned int}.
22664
22665 This is a counter starting from zero and increasing by one for each frame.
22666 @item
22667 Source images, @var{__read_only image2d_t}.
22668
22669 These are the most recent images on each input.  The kernel may read from
22670 them to generate the output, but they can't be written to.
22671 @end itemize
22672
22673 Example programs:
22674
22675 @itemize
22676 @item
22677 Copy the input to the output (output must be the same size as the input).
22678 @verbatim
22679 __kernel void copy(__write_only image2d_t destination,
22680                    unsigned int index,
22681                    __read_only  image2d_t source)
22682 {
22683     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
22684
22685     int2 location = (int2)(get_global_id(0), get_global_id(1));
22686
22687     float4 value = read_imagef(source, sampler, location);
22688
22689     write_imagef(destination, location, value);
22690 }
22691 @end verbatim
22692
22693 @item
22694 Apply a simple transformation, rotating the input by an amount increasing
22695 with the index counter.  Pixel values are linearly interpolated by the
22696 sampler, and the output need not have the same dimensions as the input.
22697 @verbatim
22698 __kernel void rotate_image(__write_only image2d_t dst,
22699                            unsigned int index,
22700                            __read_only  image2d_t src)
22701 {
22702     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22703                                CLK_FILTER_LINEAR);
22704
22705     float angle = (float)index / 100.0f;
22706
22707     float2 dst_dim = convert_float2(get_image_dim(dst));
22708     float2 src_dim = convert_float2(get_image_dim(src));
22709
22710     float2 dst_cen = dst_dim / 2.0f;
22711     float2 src_cen = src_dim / 2.0f;
22712
22713     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
22714
22715     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
22716     float2 src_pos = {
22717         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
22718         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
22719     };
22720     src_pos = src_pos * src_dim / dst_dim;
22721
22722     float2 src_loc = src_pos + src_cen;
22723
22724     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
22725         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
22726         write_imagef(dst, dst_loc, 0.5f);
22727     else
22728         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
22729 }
22730 @end verbatim
22731
22732 @item
22733 Blend two inputs together, with the amount of each input used varying
22734 with the index counter.
22735 @verbatim
22736 __kernel void blend_images(__write_only image2d_t dst,
22737                            unsigned int index,
22738                            __read_only  image2d_t src1,
22739                            __read_only  image2d_t src2)
22740 {
22741     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22742                                CLK_FILTER_LINEAR);
22743
22744     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
22745
22746     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
22747     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
22748     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
22749
22750     float4 val1 = read_imagef(src1, sampler, src1_loc);
22751     float4 val2 = read_imagef(src2, sampler, src2_loc);
22752
22753     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
22754 }
22755 @end verbatim
22756
22757 @end itemize
22758
22759 @section roberts_opencl
22760 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
22761
22762 The filter accepts the following option:
22763
22764 @table @option
22765 @item planes
22766 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22767
22768 @item scale
22769 Set value which will be multiplied with filtered result.
22770 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22771
22772 @item delta
22773 Set value which will be added to filtered result.
22774 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22775 @end table
22776
22777 @subsection Example
22778
22779 @itemize
22780 @item
22781 Apply the Roberts cross operator with scale set to 2 and delta set to 10
22782 @example
22783 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
22784 @end example
22785 @end itemize
22786
22787 @section sobel_opencl
22788
22789 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
22790
22791 The filter accepts the following option:
22792
22793 @table @option
22794 @item planes
22795 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22796
22797 @item scale
22798 Set value which will be multiplied with filtered result.
22799 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22800
22801 @item delta
22802 Set value which will be added to filtered result.
22803 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22804 @end table
22805
22806 @subsection Example
22807
22808 @itemize
22809 @item
22810 Apply sobel operator with scale set to 2 and delta set to 10
22811 @example
22812 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
22813 @end example
22814 @end itemize
22815
22816 @section tonemap_opencl
22817
22818 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
22819
22820 It accepts the following parameters:
22821
22822 @table @option
22823 @item tonemap
22824 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
22825
22826 @item param
22827 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
22828
22829 @item desat
22830 Apply desaturation for highlights that exceed this level of brightness. The
22831 higher the parameter, the more color information will be preserved. This
22832 setting helps prevent unnaturally blown-out colors for super-highlights, by
22833 (smoothly) turning into white instead. This makes images feel more natural,
22834 at the cost of reducing information about out-of-range colors.
22835
22836 The default value is 0.5, and the algorithm here is a little different from
22837 the cpu version tonemap currently. A setting of 0.0 disables this option.
22838
22839 @item threshold
22840 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
22841 is used to detect whether the scene has changed or not. If the distance between
22842 the current frame average brightness and the current running average exceeds
22843 a threshold value, we would re-calculate scene average and peak brightness.
22844 The default value is 0.2.
22845
22846 @item format
22847 Specify the output pixel format.
22848
22849 Currently supported formats are:
22850 @table @var
22851 @item p010
22852 @item nv12
22853 @end table
22854
22855 @item range, r
22856 Set the output color range.
22857
22858 Possible values are:
22859 @table @var
22860 @item tv/mpeg
22861 @item pc/jpeg
22862 @end table
22863
22864 Default is same as input.
22865
22866 @item primaries, p
22867 Set the output color primaries.
22868
22869 Possible values are:
22870 @table @var
22871 @item bt709
22872 @item bt2020
22873 @end table
22874
22875 Default is same as input.
22876
22877 @item transfer, t
22878 Set the output transfer characteristics.
22879
22880 Possible values are:
22881 @table @var
22882 @item bt709
22883 @item bt2020
22884 @end table
22885
22886 Default is bt709.
22887
22888 @item matrix, m
22889 Set the output colorspace matrix.
22890
22891 Possible value are:
22892 @table @var
22893 @item bt709
22894 @item bt2020
22895 @end table
22896
22897 Default is same as input.
22898
22899 @end table
22900
22901 @subsection Example
22902
22903 @itemize
22904 @item
22905 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
22906 @example
22907 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
22908 @end example
22909 @end itemize
22910
22911 @section unsharp_opencl
22912
22913 Sharpen or blur the input video.
22914
22915 It accepts the following parameters:
22916
22917 @table @option
22918 @item luma_msize_x, lx
22919 Set the luma matrix horizontal size.
22920 Range is @code{[1, 23]} and default value is @code{5}.
22921
22922 @item luma_msize_y, ly
22923 Set the luma matrix vertical size.
22924 Range is @code{[1, 23]} and default value is @code{5}.
22925
22926 @item luma_amount, la
22927 Set the luma effect strength.
22928 Range is @code{[-10, 10]} and default value is @code{1.0}.
22929
22930 Negative values will blur the input video, while positive values will
22931 sharpen it, a value of zero will disable the effect.
22932
22933 @item chroma_msize_x, cx
22934 Set the chroma matrix horizontal size.
22935 Range is @code{[1, 23]} and default value is @code{5}.
22936
22937 @item chroma_msize_y, cy
22938 Set the chroma matrix vertical size.
22939 Range is @code{[1, 23]} and default value is @code{5}.
22940
22941 @item chroma_amount, ca
22942 Set the chroma effect strength.
22943 Range is @code{[-10, 10]} and default value is @code{0.0}.
22944
22945 Negative values will blur the input video, while positive values will
22946 sharpen it, a value of zero will disable the effect.
22947
22948 @end table
22949
22950 All parameters are optional and default to the equivalent of the
22951 string '5:5:1.0:5:5:0.0'.
22952
22953 @subsection Examples
22954
22955 @itemize
22956 @item
22957 Apply strong luma sharpen effect:
22958 @example
22959 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
22960 @end example
22961
22962 @item
22963 Apply a strong blur of both luma and chroma parameters:
22964 @example
22965 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
22966 @end example
22967 @end itemize
22968
22969 @section xfade_opencl
22970
22971 Cross fade two videos with custom transition effect by using OpenCL.
22972
22973 It accepts the following options:
22974
22975 @table @option
22976 @item transition
22977 Set one of possible transition effects.
22978
22979 @table @option
22980 @item custom
22981 Select custom transition effect, the actual transition description
22982 will be picked from source and kernel options.
22983
22984 @item fade
22985 @item wipeleft
22986 @item wiperight
22987 @item wipeup
22988 @item wipedown
22989 @item slideleft
22990 @item slideright
22991 @item slideup
22992 @item slidedown
22993
22994 Default transition is fade.
22995 @end table
22996
22997 @item source
22998 OpenCL program source file for custom transition.
22999
23000 @item kernel
23001 Set name of kernel to use for custom transition from program source file.
23002
23003 @item duration
23004 Set duration of video transition.
23005
23006 @item offset
23007 Set time of start of transition relative to first video.
23008 @end table
23009
23010 The program source file must contain a kernel function with the given name,
23011 which will be run once for each plane of the output.  Each run on a plane
23012 gets enqueued as a separate 2D global NDRange with one work-item for each
23013 pixel to be generated.  The global ID offset for each work-item is therefore
23014 the coordinates of a pixel in the destination image.
23015
23016 The kernel function needs to take the following arguments:
23017 @itemize
23018 @item
23019 Destination image, @var{__write_only image2d_t}.
23020
23021 This image will become the output; the kernel should write all of it.
23022
23023 @item
23024 First Source image, @var{__read_only image2d_t}.
23025 Second Source image, @var{__read_only image2d_t}.
23026
23027 These are the most recent images on each input.  The kernel may read from
23028 them to generate the output, but they can't be written to.
23029
23030 @item
23031 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
23032 @end itemize
23033
23034 Example programs:
23035
23036 @itemize
23037 @item
23038 Apply dots curtain transition effect:
23039 @verbatim
23040 __kernel void blend_images(__write_only image2d_t dst,
23041                            __read_only  image2d_t src1,
23042                            __read_only  image2d_t src2,
23043                            float progress)
23044 {
23045     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
23046                                CLK_FILTER_LINEAR);
23047     int2  p = (int2)(get_global_id(0), get_global_id(1));
23048     float2 rp = (float2)(get_global_id(0), get_global_id(1));
23049     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
23050     rp = rp / dim;
23051
23052     float2 dots = (float2)(20.0, 20.0);
23053     float2 center = (float2)(0,0);
23054     float2 unused;
23055
23056     float4 val1 = read_imagef(src1, sampler, p);
23057     float4 val2 = read_imagef(src2, sampler, p);
23058     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
23059
23060     write_imagef(dst, p, next ? val1 : val2);
23061 }
23062 @end verbatim
23063
23064 @end itemize
23065
23066 @c man end OPENCL VIDEO FILTERS
23067
23068 @chapter VAAPI Video Filters
23069 @c man begin VAAPI VIDEO FILTERS
23070
23071 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
23072
23073 To enable compilation of these filters you need to configure FFmpeg with
23074 @code{--enable-vaapi}.
23075
23076 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}
23077
23078 @section tonemap_vaapi
23079
23080 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
23081 It maps the dynamic range of HDR10 content to the SDR content.
23082 It currently only accepts HDR10 as input.
23083
23084 It accepts the following parameters:
23085
23086 @table @option
23087 @item format
23088 Specify the output pixel format.
23089
23090 Currently supported formats are:
23091 @table @var
23092 @item p010
23093 @item nv12
23094 @end table
23095
23096 Default is nv12.
23097
23098 @item primaries, p
23099 Set the output color primaries.
23100
23101 Default is same as input.
23102
23103 @item transfer, t
23104 Set the output transfer characteristics.
23105
23106 Default is bt709.
23107
23108 @item matrix, m
23109 Set the output colorspace matrix.
23110
23111 Default is same as input.
23112
23113 @end table
23114
23115 @subsection Example
23116
23117 @itemize
23118 @item
23119 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
23120 @example
23121 tonemap_vaapi=format=p010:t=bt2020-10
23122 @end example
23123 @end itemize
23124
23125 @c man end VAAPI VIDEO FILTERS
23126
23127 @chapter Video Sources
23128 @c man begin VIDEO SOURCES
23129
23130 Below is a description of the currently available video sources.
23131
23132 @section buffer
23133
23134 Buffer video frames, and make them available to the filter chain.
23135
23136 This source is mainly intended for a programmatic use, in particular
23137 through the interface defined in @file{libavfilter/buffersrc.h}.
23138
23139 It accepts the following parameters:
23140
23141 @table @option
23142
23143 @item video_size
23144 Specify the size (width and height) of the buffered video frames. For the
23145 syntax of this option, check the
23146 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23147
23148 @item width
23149 The input video width.
23150
23151 @item height
23152 The input video height.
23153
23154 @item pix_fmt
23155 A string representing the pixel format of the buffered video frames.
23156 It may be a number corresponding to a pixel format, or a pixel format
23157 name.
23158
23159 @item time_base
23160 Specify the timebase assumed by the timestamps of the buffered frames.
23161
23162 @item frame_rate
23163 Specify the frame rate expected for the video stream.
23164
23165 @item pixel_aspect, sar
23166 The sample (pixel) aspect ratio of the input video.
23167
23168 @item sws_param
23169 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
23170 to the filtergraph description to specify swscale flags for automatically
23171 inserted scalers. See @ref{Filtergraph syntax}.
23172
23173 @item hw_frames_ctx
23174 When using a hardware pixel format, this should be a reference to an
23175 AVHWFramesContext describing input frames.
23176 @end table
23177
23178 For example:
23179 @example
23180 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
23181 @end example
23182
23183 will instruct the source to accept video frames with size 320x240 and
23184 with format "yuv410p", assuming 1/24 as the timestamps timebase and
23185 square pixels (1:1 sample aspect ratio).
23186 Since the pixel format with name "yuv410p" corresponds to the number 6
23187 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
23188 this example corresponds to:
23189 @example
23190 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
23191 @end example
23192
23193 Alternatively, the options can be specified as a flat string, but this
23194 syntax is deprecated:
23195
23196 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
23197
23198 @section cellauto
23199
23200 Create a pattern generated by an elementary cellular automaton.
23201
23202 The initial state of the cellular automaton can be defined through the
23203 @option{filename} and @option{pattern} options. If such options are
23204 not specified an initial state is created randomly.
23205
23206 At each new frame a new row in the video is filled with the result of
23207 the cellular automaton next generation. The behavior when the whole
23208 frame is filled is defined by the @option{scroll} option.
23209
23210 This source accepts the following options:
23211
23212 @table @option
23213 @item filename, f
23214 Read the initial cellular automaton state, i.e. the starting row, from
23215 the specified file.
23216 In the file, each non-whitespace character is considered an alive
23217 cell, a newline will terminate the row, and further characters in the
23218 file will be ignored.
23219
23220 @item pattern, p
23221 Read the initial cellular automaton state, i.e. the starting row, from
23222 the specified string.
23223
23224 Each non-whitespace character in the string is considered an alive
23225 cell, a newline will terminate the row, and further characters in the
23226 string will be ignored.
23227
23228 @item rate, r
23229 Set the video rate, that is the number of frames generated per second.
23230 Default is 25.
23231
23232 @item random_fill_ratio, ratio
23233 Set the random fill ratio for the initial cellular automaton row. It
23234 is a floating point number value ranging from 0 to 1, defaults to
23235 1/PHI.
23236
23237 This option is ignored when a file or a pattern is specified.
23238
23239 @item random_seed, seed
23240 Set the seed for filling randomly the initial row, must be an integer
23241 included between 0 and UINT32_MAX. If not specified, or if explicitly
23242 set to -1, the filter will try to use a good random seed on a best
23243 effort basis.
23244
23245 @item rule
23246 Set the cellular automaton rule, it is a number ranging from 0 to 255.
23247 Default value is 110.
23248
23249 @item size, s
23250 Set the size of the output video. For the syntax of this option, check the
23251 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23252
23253 If @option{filename} or @option{pattern} is specified, the size is set
23254 by default to the width of the specified initial state row, and the
23255 height is set to @var{width} * PHI.
23256
23257 If @option{size} is set, it must contain the width of the specified
23258 pattern string, and the specified pattern will be centered in the
23259 larger row.
23260
23261 If a filename or a pattern string is not specified, the size value
23262 defaults to "320x518" (used for a randomly generated initial state).
23263
23264 @item scroll
23265 If set to 1, scroll the output upward when all the rows in the output
23266 have been already filled. If set to 0, the new generated row will be
23267 written over the top row just after the bottom row is filled.
23268 Defaults to 1.
23269
23270 @item start_full, full
23271 If set to 1, completely fill the output with generated rows before
23272 outputting the first frame.
23273 This is the default behavior, for disabling set the value to 0.
23274
23275 @item stitch
23276 If set to 1, stitch the left and right row edges together.
23277 This is the default behavior, for disabling set the value to 0.
23278 @end table
23279
23280 @subsection Examples
23281
23282 @itemize
23283 @item
23284 Read the initial state from @file{pattern}, and specify an output of
23285 size 200x400.
23286 @example
23287 cellauto=f=pattern:s=200x400
23288 @end example
23289
23290 @item
23291 Generate a random initial row with a width of 200 cells, with a fill
23292 ratio of 2/3:
23293 @example
23294 cellauto=ratio=2/3:s=200x200
23295 @end example
23296
23297 @item
23298 Create a pattern generated by rule 18 starting by a single alive cell
23299 centered on an initial row with width 100:
23300 @example
23301 cellauto=p=@@:s=100x400:full=0:rule=18
23302 @end example
23303
23304 @item
23305 Specify a more elaborated initial pattern:
23306 @example
23307 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
23308 @end example
23309
23310 @end itemize
23311
23312 @anchor{coreimagesrc}
23313 @section coreimagesrc
23314 Video source generated on GPU using Apple's CoreImage API on OSX.
23315
23316 This video source is a specialized version of the @ref{coreimage} video filter.
23317 Use a core image generator at the beginning of the applied filterchain to
23318 generate the content.
23319
23320 The coreimagesrc video source accepts the following options:
23321 @table @option
23322 @item list_generators
23323 List all available generators along with all their respective options as well as
23324 possible minimum and maximum values along with the default values.
23325 @example
23326 list_generators=true
23327 @end example
23328
23329 @item size, s
23330 Specify the size of the sourced video. For the syntax of this option, check the
23331 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23332 The default value is @code{320x240}.
23333
23334 @item rate, r
23335 Specify the frame rate of the sourced video, as the number of frames
23336 generated per second. It has to be a string in the format
23337 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23338 number or a valid video frame rate abbreviation. The default value is
23339 "25".
23340
23341 @item sar
23342 Set the sample aspect ratio of the sourced video.
23343
23344 @item duration, d
23345 Set the duration of the sourced video. See
23346 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23347 for the accepted syntax.
23348
23349 If not specified, or the expressed duration is negative, the video is
23350 supposed to be generated forever.
23351 @end table
23352
23353 Additionally, all options of the @ref{coreimage} video filter are accepted.
23354 A complete filterchain can be used for further processing of the
23355 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
23356 and examples for details.
23357
23358 @subsection Examples
23359
23360 @itemize
23361
23362 @item
23363 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
23364 given as complete and escaped command-line for Apple's standard bash shell:
23365 @example
23366 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
23367 @end example
23368 This example is equivalent to the QRCode example of @ref{coreimage} without the
23369 need for a nullsrc video source.
23370 @end itemize
23371
23372
23373 @section gradients
23374 Generate several gradients.
23375
23376 @table @option
23377 @item size, s
23378 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23379 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23380
23381 @item rate, r
23382 Set frame rate, expressed as number of frames per second. Default
23383 value is "25".
23384
23385 @item c0, c1, c2, c3, c4, c5, c6, c7
23386 Set 8 colors. Default values for colors is to pick random one.
23387
23388 @item x0, y0, y0, y1
23389 Set gradient line source and destination points. If negative or out of range, random ones
23390 are picked.
23391
23392 @item nb_colors, n
23393 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
23394
23395 @item seed
23396 Set seed for picking gradient line points.
23397
23398 @item duration, d
23399 Set the duration of the sourced video. See
23400 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23401 for the accepted syntax.
23402
23403 If not specified, or the expressed duration is negative, the video is
23404 supposed to be generated forever.
23405
23406 @item speed
23407 Set speed of gradients rotation.
23408 @end table
23409
23410
23411 @section mandelbrot
23412
23413 Generate a Mandelbrot set fractal, and progressively zoom towards the
23414 point specified with @var{start_x} and @var{start_y}.
23415
23416 This source accepts the following options:
23417
23418 @table @option
23419
23420 @item end_pts
23421 Set the terminal pts value. Default value is 400.
23422
23423 @item end_scale
23424 Set the terminal scale value.
23425 Must be a floating point value. Default value is 0.3.
23426
23427 @item inner
23428 Set the inner coloring mode, that is the algorithm used to draw the
23429 Mandelbrot fractal internal region.
23430
23431 It shall assume one of the following values:
23432 @table @option
23433 @item black
23434 Set black mode.
23435 @item convergence
23436 Show time until convergence.
23437 @item mincol
23438 Set color based on point closest to the origin of the iterations.
23439 @item period
23440 Set period mode.
23441 @end table
23442
23443 Default value is @var{mincol}.
23444
23445 @item bailout
23446 Set the bailout value. Default value is 10.0.
23447
23448 @item maxiter
23449 Set the maximum of iterations performed by the rendering
23450 algorithm. Default value is 7189.
23451
23452 @item outer
23453 Set outer coloring mode.
23454 It shall assume one of following values:
23455 @table @option
23456 @item iteration_count
23457 Set iteration count mode.
23458 @item normalized_iteration_count
23459 set normalized iteration count mode.
23460 @end table
23461 Default value is @var{normalized_iteration_count}.
23462
23463 @item rate, r
23464 Set frame rate, expressed as number of frames per second. Default
23465 value is "25".
23466
23467 @item size, s
23468 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23469 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23470
23471 @item start_scale
23472 Set the initial scale value. Default value is 3.0.
23473
23474 @item start_x
23475 Set the initial x position. Must be a floating point value between
23476 -100 and 100. Default value is -0.743643887037158704752191506114774.
23477
23478 @item start_y
23479 Set the initial y position. Must be a floating point value between
23480 -100 and 100. Default value is -0.131825904205311970493132056385139.
23481 @end table
23482
23483 @section mptestsrc
23484
23485 Generate various test patterns, as generated by the MPlayer test filter.
23486
23487 The size of the generated video is fixed, and is 256x256.
23488 This source is useful in particular for testing encoding features.
23489
23490 This source accepts the following options:
23491
23492 @table @option
23493
23494 @item rate, r
23495 Specify the frame rate of the sourced video, as the number of frames
23496 generated per second. It has to be a string in the format
23497 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23498 number or a valid video frame rate abbreviation. The default value is
23499 "25".
23500
23501 @item duration, d
23502 Set the duration of the sourced video. See
23503 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23504 for the accepted syntax.
23505
23506 If not specified, or the expressed duration is negative, the video is
23507 supposed to be generated forever.
23508
23509 @item test, t
23510
23511 Set the number or the name of the test to perform. Supported tests are:
23512 @table @option
23513 @item dc_luma
23514 @item dc_chroma
23515 @item freq_luma
23516 @item freq_chroma
23517 @item amp_luma
23518 @item amp_chroma
23519 @item cbp
23520 @item mv
23521 @item ring1
23522 @item ring2
23523 @item all
23524
23525 @item max_frames, m
23526 Set the maximum number of frames generated for each test, default value is 30.
23527
23528 @end table
23529
23530 Default value is "all", which will cycle through the list of all tests.
23531 @end table
23532
23533 Some examples:
23534 @example
23535 mptestsrc=t=dc_luma
23536 @end example
23537
23538 will generate a "dc_luma" test pattern.
23539
23540 @section frei0r_src
23541
23542 Provide a frei0r source.
23543
23544 To enable compilation of this filter you need to install the frei0r
23545 header and configure FFmpeg with @code{--enable-frei0r}.
23546
23547 This source accepts the following parameters:
23548
23549 @table @option
23550
23551 @item size
23552 The size of the video to generate. For the syntax of this option, check the
23553 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23554
23555 @item framerate
23556 The framerate of the generated video. It may be a string of the form
23557 @var{num}/@var{den} or a frame rate abbreviation.
23558
23559 @item filter_name
23560 The name to the frei0r source to load. For more information regarding frei0r and
23561 how to set the parameters, read the @ref{frei0r} section in the video filters
23562 documentation.
23563
23564 @item filter_params
23565 A '|'-separated list of parameters to pass to the frei0r source.
23566
23567 @end table
23568
23569 For example, to generate a frei0r partik0l source with size 200x200
23570 and frame rate 10 which is overlaid on the overlay filter main input:
23571 @example
23572 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
23573 @end example
23574
23575 @section life
23576
23577 Generate a life pattern.
23578
23579 This source is based on a generalization of John Conway's life game.
23580
23581 The sourced input represents a life grid, each pixel represents a cell
23582 which can be in one of two possible states, alive or dead. Every cell
23583 interacts with its eight neighbours, which are the cells that are
23584 horizontally, vertically, or diagonally adjacent.
23585
23586 At each interaction the grid evolves according to the adopted rule,
23587 which specifies the number of neighbor alive cells which will make a
23588 cell stay alive or born. The @option{rule} option allows one to specify
23589 the rule to adopt.
23590
23591 This source accepts the following options:
23592
23593 @table @option
23594 @item filename, f
23595 Set the file from which to read the initial grid state. In the file,
23596 each non-whitespace character is considered an alive cell, and newline
23597 is used to delimit the end of each row.
23598
23599 If this option is not specified, the initial grid is generated
23600 randomly.
23601
23602 @item rate, r
23603 Set the video rate, that is the number of frames generated per second.
23604 Default is 25.
23605
23606 @item random_fill_ratio, ratio
23607 Set the random fill ratio for the initial random grid. It is a
23608 floating point number value ranging from 0 to 1, defaults to 1/PHI.
23609 It is ignored when a file is specified.
23610
23611 @item random_seed, seed
23612 Set the seed for filling the initial random grid, must be an integer
23613 included between 0 and UINT32_MAX. If not specified, or if explicitly
23614 set to -1, the filter will try to use a good random seed on a best
23615 effort basis.
23616
23617 @item rule
23618 Set the life rule.
23619
23620 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
23621 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
23622 @var{NS} specifies the number of alive neighbor cells which make a
23623 live cell stay alive, and @var{NB} the number of alive neighbor cells
23624 which make a dead cell to become alive (i.e. to "born").
23625 "s" and "b" can be used in place of "S" and "B", respectively.
23626
23627 Alternatively a rule can be specified by an 18-bits integer. The 9
23628 high order bits are used to encode the next cell state if it is alive
23629 for each number of neighbor alive cells, the low order bits specify
23630 the rule for "borning" new cells. Higher order bits encode for an
23631 higher number of neighbor cells.
23632 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
23633 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
23634
23635 Default value is "S23/B3", which is the original Conway's game of life
23636 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
23637 cells, and will born a new cell if there are three alive cells around
23638 a dead cell.
23639
23640 @item size, s
23641 Set the size of the output video. For the syntax of this option, check the
23642 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23643
23644 If @option{filename} is specified, the size is set by default to the
23645 same size of the input file. If @option{size} is set, it must contain
23646 the size specified in the input file, and the initial grid defined in
23647 that file is centered in the larger resulting area.
23648
23649 If a filename is not specified, the size value defaults to "320x240"
23650 (used for a randomly generated initial grid).
23651
23652 @item stitch
23653 If set to 1, stitch the left and right grid edges together, and the
23654 top and bottom edges also. Defaults to 1.
23655
23656 @item mold
23657 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
23658 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
23659 value from 0 to 255.
23660
23661 @item life_color
23662 Set the color of living (or new born) cells.
23663
23664 @item death_color
23665 Set the color of dead cells. If @option{mold} is set, this is the first color
23666 used to represent a dead cell.
23667
23668 @item mold_color
23669 Set mold color, for definitely dead and moldy cells.
23670
23671 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
23672 ffmpeg-utils manual,ffmpeg-utils}.
23673 @end table
23674
23675 @subsection Examples
23676
23677 @itemize
23678 @item
23679 Read a grid from @file{pattern}, and center it on a grid of size
23680 300x300 pixels:
23681 @example
23682 life=f=pattern:s=300x300
23683 @end example
23684
23685 @item
23686 Generate a random grid of size 200x200, with a fill ratio of 2/3:
23687 @example
23688 life=ratio=2/3:s=200x200
23689 @end example
23690
23691 @item
23692 Specify a custom rule for evolving a randomly generated grid:
23693 @example
23694 life=rule=S14/B34
23695 @end example
23696
23697 @item
23698 Full example with slow death effect (mold) using @command{ffplay}:
23699 @example
23700 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
23701 @end example
23702 @end itemize
23703
23704 @anchor{allrgb}
23705 @anchor{allyuv}
23706 @anchor{color}
23707 @anchor{haldclutsrc}
23708 @anchor{nullsrc}
23709 @anchor{pal75bars}
23710 @anchor{pal100bars}
23711 @anchor{rgbtestsrc}
23712 @anchor{smptebars}
23713 @anchor{smptehdbars}
23714 @anchor{testsrc}
23715 @anchor{testsrc2}
23716 @anchor{yuvtestsrc}
23717 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
23718
23719 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
23720
23721 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
23722
23723 The @code{color} source provides an uniformly colored input.
23724
23725 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
23726 @ref{haldclut} filter.
23727
23728 The @code{nullsrc} source returns unprocessed video frames. It is
23729 mainly useful to be employed in analysis / debugging tools, or as the
23730 source for filters which ignore the input data.
23731
23732 The @code{pal75bars} source generates a color bars pattern, based on
23733 EBU PAL recommendations with 75% color levels.
23734
23735 The @code{pal100bars} source generates a color bars pattern, based on
23736 EBU PAL recommendations with 100% color levels.
23737
23738 The @code{rgbtestsrc} source generates an RGB test pattern useful for
23739 detecting RGB vs BGR issues. You should see a red, green and blue
23740 stripe from top to bottom.
23741
23742 The @code{smptebars} source generates a color bars pattern, based on
23743 the SMPTE Engineering Guideline EG 1-1990.
23744
23745 The @code{smptehdbars} source generates a color bars pattern, based on
23746 the SMPTE RP 219-2002.
23747
23748 The @code{testsrc} source generates a test video pattern, showing a
23749 color pattern, a scrolling gradient and a timestamp. This is mainly
23750 intended for testing purposes.
23751
23752 The @code{testsrc2} source is similar to testsrc, but supports more
23753 pixel formats instead of just @code{rgb24}. This allows using it as an
23754 input for other tests without requiring a format conversion.
23755
23756 The @code{yuvtestsrc} source generates an YUV test pattern. You should
23757 see a y, cb and cr stripe from top to bottom.
23758
23759 The sources accept the following parameters:
23760
23761 @table @option
23762
23763 @item level
23764 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
23765 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
23766 pixels to be used as identity matrix for 3D lookup tables. Each component is
23767 coded on a @code{1/(N*N)} scale.
23768
23769 @item color, c
23770 Specify the color of the source, only available in the @code{color}
23771 source. For the syntax of this option, check the
23772 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
23773
23774 @item size, s
23775 Specify the size of the sourced video. For the syntax of this option, check the
23776 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23777 The default value is @code{320x240}.
23778
23779 This option is not available with the @code{allrgb}, @code{allyuv}, and
23780 @code{haldclutsrc} filters.
23781
23782 @item rate, r
23783 Specify the frame rate of the sourced video, as the number of frames
23784 generated per second. It has to be a string in the format
23785 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23786 number or a valid video frame rate abbreviation. The default value is
23787 "25".
23788
23789 @item duration, d
23790 Set the duration of the sourced video. See
23791 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23792 for the accepted syntax.
23793
23794 If not specified, or the expressed duration is negative, the video is
23795 supposed to be generated forever.
23796
23797 Since the frame rate is used as time base, all frames including the last one
23798 will have their full duration. If the specified duration is not a multiple
23799 of the frame duration, it will be rounded up.
23800
23801 @item sar
23802 Set the sample aspect ratio of the sourced video.
23803
23804 @item alpha
23805 Specify the alpha (opacity) of the background, only available in the
23806 @code{testsrc2} source. The value must be between 0 (fully transparent) and
23807 255 (fully opaque, the default).
23808
23809 @item decimals, n
23810 Set the number of decimals to show in the timestamp, only available in the
23811 @code{testsrc} source.
23812
23813 The displayed timestamp value will correspond to the original
23814 timestamp value multiplied by the power of 10 of the specified
23815 value. Default value is 0.
23816 @end table
23817
23818 @subsection Examples
23819
23820 @itemize
23821 @item
23822 Generate a video with a duration of 5.3 seconds, with size
23823 176x144 and a frame rate of 10 frames per second:
23824 @example
23825 testsrc=duration=5.3:size=qcif:rate=10
23826 @end example
23827
23828 @item
23829 The following graph description will generate a red source
23830 with an opacity of 0.2, with size "qcif" and a frame rate of 10
23831 frames per second:
23832 @example
23833 color=c=red@@0.2:s=qcif:r=10
23834 @end example
23835
23836 @item
23837 If the input content is to be ignored, @code{nullsrc} can be used. The
23838 following command generates noise in the luminance plane by employing
23839 the @code{geq} filter:
23840 @example
23841 nullsrc=s=256x256, geq=random(1)*255:128:128
23842 @end example
23843 @end itemize
23844
23845 @subsection Commands
23846
23847 The @code{color} source supports the following commands:
23848
23849 @table @option
23850 @item c, color
23851 Set the color of the created image. Accepts the same syntax of the
23852 corresponding @option{color} option.
23853 @end table
23854
23855 @section openclsrc
23856
23857 Generate video using an OpenCL program.
23858
23859 @table @option
23860
23861 @item source
23862 OpenCL program source file.
23863
23864 @item kernel
23865 Kernel name in program.
23866
23867 @item size, s
23868 Size of frames to generate.  This must be set.
23869
23870 @item format
23871 Pixel format to use for the generated frames.  This must be set.
23872
23873 @item rate, r
23874 Number of frames generated every second.  Default value is '25'.
23875
23876 @end table
23877
23878 For details of how the program loading works, see the @ref{program_opencl}
23879 filter.
23880
23881 Example programs:
23882
23883 @itemize
23884 @item
23885 Generate a colour ramp by setting pixel values from the position of the pixel
23886 in the output image.  (Note that this will work with all pixel formats, but
23887 the generated output will not be the same.)
23888 @verbatim
23889 __kernel void ramp(__write_only image2d_t dst,
23890                    unsigned int index)
23891 {
23892     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23893
23894     float4 val;
23895     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
23896
23897     write_imagef(dst, loc, val);
23898 }
23899 @end verbatim
23900
23901 @item
23902 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
23903 @verbatim
23904 __kernel void sierpinski_carpet(__write_only image2d_t dst,
23905                                 unsigned int index)
23906 {
23907     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23908
23909     float4 value = 0.0f;
23910     int x = loc.x + index;
23911     int y = loc.y + index;
23912     while (x > 0 || y > 0) {
23913         if (x % 3 == 1 && y % 3 == 1) {
23914             value = 1.0f;
23915             break;
23916         }
23917         x /= 3;
23918         y /= 3;
23919     }
23920
23921     write_imagef(dst, loc, value);
23922 }
23923 @end verbatim
23924
23925 @end itemize
23926
23927 @section sierpinski
23928
23929 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
23930
23931 This source accepts the following options:
23932
23933 @table @option
23934 @item size, s
23935 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23936 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23937
23938 @item rate, r
23939 Set frame rate, expressed as number of frames per second. Default
23940 value is "25".
23941
23942 @item seed
23943 Set seed which is used for random panning.
23944
23945 @item jump
23946 Set max jump for single pan destination. Allowed range is from 1 to 10000.
23947
23948 @item type
23949 Set fractal type, can be default @code{carpet} or @code{triangle}.
23950 @end table
23951
23952 @c man end VIDEO SOURCES
23953
23954 @chapter Video Sinks
23955 @c man begin VIDEO SINKS
23956
23957 Below is a description of the currently available video sinks.
23958
23959 @section buffersink
23960
23961 Buffer video frames, and make them available to the end of the filter
23962 graph.
23963
23964 This sink is mainly intended for programmatic use, in particular
23965 through the interface defined in @file{libavfilter/buffersink.h}
23966 or the options system.
23967
23968 It accepts a pointer to an AVBufferSinkContext structure, which
23969 defines the incoming buffers' formats, to be passed as the opaque
23970 parameter to @code{avfilter_init_filter} for initialization.
23971
23972 @section nullsink
23973
23974 Null video sink: do absolutely nothing with the input video. It is
23975 mainly useful as a template and for use in analysis / debugging
23976 tools.
23977
23978 @c man end VIDEO SINKS
23979
23980 @chapter Multimedia Filters
23981 @c man begin MULTIMEDIA FILTERS
23982
23983 Below is a description of the currently available multimedia filters.
23984
23985 @section abitscope
23986
23987 Convert input audio to a video output, displaying the audio bit scope.
23988
23989 The filter accepts the following options:
23990
23991 @table @option
23992 @item rate, r
23993 Set frame rate, expressed as number of frames per second. Default
23994 value is "25".
23995
23996 @item size, s
23997 Specify the video size for the output. For the syntax of this option, check the
23998 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23999 Default value is @code{1024x256}.
24000
24001 @item colors
24002 Specify list of colors separated by space or by '|' which will be used to
24003 draw channels. Unrecognized or missing colors will be replaced
24004 by white color.
24005 @end table
24006
24007 @section adrawgraph
24008 Draw a graph using input audio metadata.
24009
24010 See @ref{drawgraph}
24011
24012 @section agraphmonitor
24013
24014 See @ref{graphmonitor}.
24015
24016 @section ahistogram
24017
24018 Convert input audio to a video output, displaying the volume histogram.
24019
24020 The filter accepts the following options:
24021
24022 @table @option
24023 @item dmode
24024 Specify how histogram is calculated.
24025
24026 It accepts the following values:
24027 @table @samp
24028 @item single
24029 Use single histogram for all channels.
24030 @item separate
24031 Use separate histogram for each channel.
24032 @end table
24033 Default is @code{single}.
24034
24035 @item rate, r
24036 Set frame rate, expressed as number of frames per second. Default
24037 value is "25".
24038
24039 @item size, s
24040 Specify the video size for the output. For the syntax of this option, check the
24041 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24042 Default value is @code{hd720}.
24043
24044 @item scale
24045 Set display scale.
24046
24047 It accepts the following values:
24048 @table @samp
24049 @item log
24050 logarithmic
24051 @item sqrt
24052 square root
24053 @item cbrt
24054 cubic root
24055 @item lin
24056 linear
24057 @item rlog
24058 reverse logarithmic
24059 @end table
24060 Default is @code{log}.
24061
24062 @item ascale
24063 Set amplitude scale.
24064
24065 It accepts the following values:
24066 @table @samp
24067 @item log
24068 logarithmic
24069 @item lin
24070 linear
24071 @end table
24072 Default is @code{log}.
24073
24074 @item acount
24075 Set how much frames to accumulate in histogram.
24076 Default is 1. Setting this to -1 accumulates all frames.
24077
24078 @item rheight
24079 Set histogram ratio of window height.
24080
24081 @item slide
24082 Set sonogram sliding.
24083
24084 It accepts the following values:
24085 @table @samp
24086 @item replace
24087 replace old rows with new ones.
24088 @item scroll
24089 scroll from top to bottom.
24090 @end table
24091 Default is @code{replace}.
24092 @end table
24093
24094 @section aphasemeter
24095
24096 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
24097 representing mean phase of current audio frame. A video output can also be produced and is
24098 enabled by default. The audio is passed through as first output.
24099
24100 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
24101 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
24102 and @code{1} means channels are in phase.
24103
24104 The filter accepts the following options, all related to its video output:
24105
24106 @table @option
24107 @item rate, r
24108 Set the output frame rate. Default value is @code{25}.
24109
24110 @item size, s
24111 Set the video size for the output. For the syntax of this option, check the
24112 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24113 Default value is @code{800x400}.
24114
24115 @item rc
24116 @item gc
24117 @item bc
24118 Specify the red, green, blue contrast. Default values are @code{2},
24119 @code{7} and @code{1}.
24120 Allowed range is @code{[0, 255]}.
24121
24122 @item mpc
24123 Set color which will be used for drawing median phase. If color is
24124 @code{none} which is default, no median phase value will be drawn.
24125
24126 @item video
24127 Enable video output. Default is enabled.
24128 @end table
24129
24130 @subsection phasing detection
24131
24132 The filter also detects out of phase and mono sequences in stereo streams.
24133 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
24134
24135 The filter accepts the following options for this detection:
24136
24137 @table @option
24138 @item phasing
24139 Enable mono and out of phase detection. Default is disabled.
24140
24141 @item tolerance, t
24142 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
24143 Allowed range is @code{[0, 1]}.
24144
24145 @item angle, a
24146 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
24147 Allowed range is @code{[90, 180]}.
24148
24149 @item duration, d
24150 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
24151 @end table
24152
24153 @subsection Examples
24154
24155 @itemize
24156 @item
24157 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
24158 @example
24159 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
24160 @end example
24161 @end itemize
24162
24163 @section avectorscope
24164
24165 Convert input audio to a video output, representing the audio vector
24166 scope.
24167
24168 The filter is used to measure the difference between channels of stereo
24169 audio stream. A monaural signal, consisting of identical left and right
24170 signal, results in straight vertical line. Any stereo separation is visible
24171 as a deviation from this line, creating a Lissajous figure.
24172 If the straight (or deviation from it) but horizontal line appears this
24173 indicates that the left and right channels are out of phase.
24174
24175 The filter accepts the following options:
24176
24177 @table @option
24178 @item mode, m
24179 Set the vectorscope mode.
24180
24181 Available values are:
24182 @table @samp
24183 @item lissajous
24184 Lissajous rotated by 45 degrees.
24185
24186 @item lissajous_xy
24187 Same as above but not rotated.
24188
24189 @item polar
24190 Shape resembling half of circle.
24191 @end table
24192
24193 Default value is @samp{lissajous}.
24194
24195 @item size, s
24196 Set the video size for the output. For the syntax of this option, check the
24197 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24198 Default value is @code{400x400}.
24199
24200 @item rate, r
24201 Set the output frame rate. Default value is @code{25}.
24202
24203 @item rc
24204 @item gc
24205 @item bc
24206 @item ac
24207 Specify the red, green, blue and alpha contrast. Default values are @code{40},
24208 @code{160}, @code{80} and @code{255}.
24209 Allowed range is @code{[0, 255]}.
24210
24211 @item rf
24212 @item gf
24213 @item bf
24214 @item af
24215 Specify the red, green, blue and alpha fade. Default values are @code{15},
24216 @code{10}, @code{5} and @code{5}.
24217 Allowed range is @code{[0, 255]}.
24218
24219 @item zoom
24220 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
24221 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
24222
24223 @item draw
24224 Set the vectorscope drawing mode.
24225
24226 Available values are:
24227 @table @samp
24228 @item dot
24229 Draw dot for each sample.
24230
24231 @item line
24232 Draw line between previous and current sample.
24233 @end table
24234
24235 Default value is @samp{dot}.
24236
24237 @item scale
24238 Specify amplitude scale of audio samples.
24239
24240 Available values are:
24241 @table @samp
24242 @item lin
24243 Linear.
24244
24245 @item sqrt
24246 Square root.
24247
24248 @item cbrt
24249 Cubic root.
24250
24251 @item log
24252 Logarithmic.
24253 @end table
24254
24255 @item swap
24256 Swap left channel axis with right channel axis.
24257
24258 @item mirror
24259 Mirror axis.
24260
24261 @table @samp
24262 @item none
24263 No mirror.
24264
24265 @item x
24266 Mirror only x axis.
24267
24268 @item y
24269 Mirror only y axis.
24270
24271 @item xy
24272 Mirror both axis.
24273 @end table
24274
24275 @end table
24276
24277 @subsection Examples
24278
24279 @itemize
24280 @item
24281 Complete example using @command{ffplay}:
24282 @example
24283 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24284              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
24285 @end example
24286 @end itemize
24287
24288 @section bench, abench
24289
24290 Benchmark part of a filtergraph.
24291
24292 The filter accepts the following options:
24293
24294 @table @option
24295 @item action
24296 Start or stop a timer.
24297
24298 Available values are:
24299 @table @samp
24300 @item start
24301 Get the current time, set it as frame metadata (using the key
24302 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
24303
24304 @item stop
24305 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
24306 the input frame metadata to get the time difference. Time difference, average,
24307 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
24308 @code{min}) are then printed. The timestamps are expressed in seconds.
24309 @end table
24310 @end table
24311
24312 @subsection Examples
24313
24314 @itemize
24315 @item
24316 Benchmark @ref{selectivecolor} filter:
24317 @example
24318 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
24319 @end example
24320 @end itemize
24321
24322 @section concat
24323
24324 Concatenate audio and video streams, joining them together one after the
24325 other.
24326
24327 The filter works on segments of synchronized video and audio streams. All
24328 segments must have the same number of streams of each type, and that will
24329 also be the number of streams at output.
24330
24331 The filter accepts the following options:
24332
24333 @table @option
24334
24335 @item n
24336 Set the number of segments. Default is 2.
24337
24338 @item v
24339 Set the number of output video streams, that is also the number of video
24340 streams in each segment. Default is 1.
24341
24342 @item a
24343 Set the number of output audio streams, that is also the number of audio
24344 streams in each segment. Default is 0.
24345
24346 @item unsafe
24347 Activate unsafe mode: do not fail if segments have a different format.
24348
24349 @end table
24350
24351 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
24352 @var{a} audio outputs.
24353
24354 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
24355 segment, in the same order as the outputs, then the inputs for the second
24356 segment, etc.
24357
24358 Related streams do not always have exactly the same duration, for various
24359 reasons including codec frame size or sloppy authoring. For that reason,
24360 related synchronized streams (e.g. a video and its audio track) should be
24361 concatenated at once. The concat filter will use the duration of the longest
24362 stream in each segment (except the last one), and if necessary pad shorter
24363 audio streams with silence.
24364
24365 For this filter to work correctly, all segments must start at timestamp 0.
24366
24367 All corresponding streams must have the same parameters in all segments; the
24368 filtering system will automatically select a common pixel format for video
24369 streams, and a common sample format, sample rate and channel layout for
24370 audio streams, but other settings, such as resolution, must be converted
24371 explicitly by the user.
24372
24373 Different frame rates are acceptable but will result in variable frame rate
24374 at output; be sure to configure the output file to handle it.
24375
24376 @subsection Examples
24377
24378 @itemize
24379 @item
24380 Concatenate an opening, an episode and an ending, all in bilingual version
24381 (video in stream 0, audio in streams 1 and 2):
24382 @example
24383 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
24384   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
24385    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
24386   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
24387 @end example
24388
24389 @item
24390 Concatenate two parts, handling audio and video separately, using the
24391 (a)movie sources, and adjusting the resolution:
24392 @example
24393 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
24394 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
24395 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
24396 @end example
24397 Note that a desync will happen at the stitch if the audio and video streams
24398 do not have exactly the same duration in the first file.
24399
24400 @end itemize
24401
24402 @subsection Commands
24403
24404 This filter supports the following commands:
24405 @table @option
24406 @item next
24407 Close the current segment and step to the next one
24408 @end table
24409
24410 @anchor{ebur128}
24411 @section ebur128
24412
24413 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
24414 level. By default, it logs a message at a frequency of 10Hz with the
24415 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
24416 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
24417
24418 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
24419 sample format is double-precision floating point. The input stream will be converted to
24420 this specification, if needed. Users may need to insert aformat and/or aresample filters
24421 after this filter to obtain the original parameters.
24422
24423 The filter also has a video output (see the @var{video} option) with a real
24424 time graph to observe the loudness evolution. The graphic contains the logged
24425 message mentioned above, so it is not printed anymore when this option is set,
24426 unless the verbose logging is set. The main graphing area contains the
24427 short-term loudness (3 seconds of analysis), and the gauge on the right is for
24428 the momentary loudness (400 milliseconds), but can optionally be configured
24429 to instead display short-term loudness (see @var{gauge}).
24430
24431 The green area marks a  +/- 1LU target range around the target loudness
24432 (-23LUFS by default, unless modified through @var{target}).
24433
24434 More information about the Loudness Recommendation EBU R128 on
24435 @url{http://tech.ebu.ch/loudness}.
24436
24437 The filter accepts the following options:
24438
24439 @table @option
24440
24441 @item video
24442 Activate the video output. The audio stream is passed unchanged whether this
24443 option is set or no. The video stream will be the first output stream if
24444 activated. Default is @code{0}.
24445
24446 @item size
24447 Set the video size. This option is for video only. For the syntax of this
24448 option, check the
24449 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24450 Default and minimum resolution is @code{640x480}.
24451
24452 @item meter
24453 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
24454 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
24455 other integer value between this range is allowed.
24456
24457 @item metadata
24458 Set metadata injection. If set to @code{1}, the audio input will be segmented
24459 into 100ms output frames, each of them containing various loudness information
24460 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
24461
24462 Default is @code{0}.
24463
24464 @item framelog
24465 Force the frame logging level.
24466
24467 Available values are:
24468 @table @samp
24469 @item info
24470 information logging level
24471 @item verbose
24472 verbose logging level
24473 @end table
24474
24475 By default, the logging level is set to @var{info}. If the @option{video} or
24476 the @option{metadata} options are set, it switches to @var{verbose}.
24477
24478 @item peak
24479 Set peak mode(s).
24480
24481 Available modes can be cumulated (the option is a @code{flag} type). Possible
24482 values are:
24483 @table @samp
24484 @item none
24485 Disable any peak mode (default).
24486 @item sample
24487 Enable sample-peak mode.
24488
24489 Simple peak mode looking for the higher sample value. It logs a message
24490 for sample-peak (identified by @code{SPK}).
24491 @item true
24492 Enable true-peak mode.
24493
24494 If enabled, the peak lookup is done on an over-sampled version of the input
24495 stream for better peak accuracy. It logs a message for true-peak.
24496 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
24497 This mode requires a build with @code{libswresample}.
24498 @end table
24499
24500 @item dualmono
24501 Treat mono input files as "dual mono". If a mono file is intended for playback
24502 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
24503 If set to @code{true}, this option will compensate for this effect.
24504 Multi-channel input files are not affected by this option.
24505
24506 @item panlaw
24507 Set a specific pan law to be used for the measurement of dual mono files.
24508 This parameter is optional, and has a default value of -3.01dB.
24509
24510 @item target
24511 Set a specific target level (in LUFS) used as relative zero in the visualization.
24512 This parameter is optional and has a default value of -23LUFS as specified
24513 by EBU R128. However, material published online may prefer a level of -16LUFS
24514 (e.g. for use with podcasts or video platforms).
24515
24516 @item gauge
24517 Set the value displayed by the gauge. Valid values are @code{momentary} and s
24518 @code{shortterm}. By default the momentary value will be used, but in certain
24519 scenarios it may be more useful to observe the short term value instead (e.g.
24520 live mixing).
24521
24522 @item scale
24523 Sets the display scale for the loudness. Valid parameters are @code{absolute}
24524 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
24525 video output, not the summary or continuous log output.
24526 @end table
24527
24528 @subsection Examples
24529
24530 @itemize
24531 @item
24532 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
24533 @example
24534 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
24535 @end example
24536
24537 @item
24538 Run an analysis with @command{ffmpeg}:
24539 @example
24540 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
24541 @end example
24542 @end itemize
24543
24544 @section interleave, ainterleave
24545
24546 Temporally interleave frames from several inputs.
24547
24548 @code{interleave} works with video inputs, @code{ainterleave} with audio.
24549
24550 These filters read frames from several inputs and send the oldest
24551 queued frame to the output.
24552
24553 Input streams must have well defined, monotonically increasing frame
24554 timestamp values.
24555
24556 In order to submit one frame to output, these filters need to enqueue
24557 at least one frame for each input, so they cannot work in case one
24558 input is not yet terminated and will not receive incoming frames.
24559
24560 For example consider the case when one input is a @code{select} filter
24561 which always drops input frames. The @code{interleave} filter will keep
24562 reading from that input, but it will never be able to send new frames
24563 to output until the input sends an end-of-stream signal.
24564
24565 Also, depending on inputs synchronization, the filters will drop
24566 frames in case one input receives more frames than the other ones, and
24567 the queue is already filled.
24568
24569 These filters accept the following options:
24570
24571 @table @option
24572 @item nb_inputs, n
24573 Set the number of different inputs, it is 2 by default.
24574
24575 @item duration
24576 How to determine the end-of-stream.
24577
24578 @table @option
24579 @item longest
24580 The duration of the longest input. (default)
24581
24582 @item shortest
24583 The duration of the shortest input.
24584
24585 @item first
24586 The duration of the first input.
24587 @end table
24588
24589 @end table
24590
24591 @subsection Examples
24592
24593 @itemize
24594 @item
24595 Interleave frames belonging to different streams using @command{ffmpeg}:
24596 @example
24597 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
24598 @end example
24599
24600 @item
24601 Add flickering blur effect:
24602 @example
24603 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
24604 @end example
24605 @end itemize
24606
24607 @section metadata, ametadata
24608
24609 Manipulate frame metadata.
24610
24611 This filter accepts the following options:
24612
24613 @table @option
24614 @item mode
24615 Set mode of operation of the filter.
24616
24617 Can be one of the following:
24618
24619 @table @samp
24620 @item select
24621 If both @code{value} and @code{key} is set, select frames
24622 which have such metadata. If only @code{key} is set, select
24623 every frame that has such key in metadata.
24624
24625 @item add
24626 Add new metadata @code{key} and @code{value}. If key is already available
24627 do nothing.
24628
24629 @item modify
24630 Modify value of already present key.
24631
24632 @item delete
24633 If @code{value} is set, delete only keys that have such value.
24634 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
24635 the frame.
24636
24637 @item print
24638 Print key and its value if metadata was found. If @code{key} is not set print all
24639 metadata values available in frame.
24640 @end table
24641
24642 @item key
24643 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
24644
24645 @item value
24646 Set metadata value which will be used. This option is mandatory for
24647 @code{modify} and @code{add} mode.
24648
24649 @item function
24650 Which function to use when comparing metadata value and @code{value}.
24651
24652 Can be one of following:
24653
24654 @table @samp
24655 @item same_str
24656 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
24657
24658 @item starts_with
24659 Values are interpreted as strings, returns true if metadata value starts with
24660 the @code{value} option string.
24661
24662 @item less
24663 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
24664
24665 @item equal
24666 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
24667
24668 @item greater
24669 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
24670
24671 @item expr
24672 Values are interpreted as floats, returns true if expression from option @code{expr}
24673 evaluates to true.
24674
24675 @item ends_with
24676 Values are interpreted as strings, returns true if metadata value ends with
24677 the @code{value} option string.
24678 @end table
24679
24680 @item expr
24681 Set expression which is used when @code{function} is set to @code{expr}.
24682 The expression is evaluated through the eval API and can contain the following
24683 constants:
24684
24685 @table @option
24686 @item VALUE1
24687 Float representation of @code{value} from metadata key.
24688
24689 @item VALUE2
24690 Float representation of @code{value} as supplied by user in @code{value} option.
24691 @end table
24692
24693 @item file
24694 If specified in @code{print} mode, output is written to the named file. Instead of
24695 plain filename any writable url can be specified. Filename ``-'' is a shorthand
24696 for standard output. If @code{file} option is not set, output is written to the log
24697 with AV_LOG_INFO loglevel.
24698
24699 @item direct
24700 Reduces buffering in print mode when output is written to a URL set using @var{file}.
24701
24702 @end table
24703
24704 @subsection Examples
24705
24706 @itemize
24707 @item
24708 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
24709 between 0 and 1.
24710 @example
24711 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
24712 @end example
24713 @item
24714 Print silencedetect output to file @file{metadata.txt}.
24715 @example
24716 silencedetect,ametadata=mode=print:file=metadata.txt
24717 @end example
24718 @item
24719 Direct all metadata to a pipe with file descriptor 4.
24720 @example
24721 metadata=mode=print:file='pipe\:4'
24722 @end example
24723 @end itemize
24724
24725 @section perms, aperms
24726
24727 Set read/write permissions for the output frames.
24728
24729 These filters are mainly aimed at developers to test direct path in the
24730 following filter in the filtergraph.
24731
24732 The filters accept the following options:
24733
24734 @table @option
24735 @item mode
24736 Select the permissions mode.
24737
24738 It accepts the following values:
24739 @table @samp
24740 @item none
24741 Do nothing. This is the default.
24742 @item ro
24743 Set all the output frames read-only.
24744 @item rw
24745 Set all the output frames directly writable.
24746 @item toggle
24747 Make the frame read-only if writable, and writable if read-only.
24748 @item random
24749 Set each output frame read-only or writable randomly.
24750 @end table
24751
24752 @item seed
24753 Set the seed for the @var{random} mode, must be an integer included between
24754 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
24755 @code{-1}, the filter will try to use a good random seed on a best effort
24756 basis.
24757 @end table
24758
24759 Note: in case of auto-inserted filter between the permission filter and the
24760 following one, the permission might not be received as expected in that
24761 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
24762 perms/aperms filter can avoid this problem.
24763
24764 @section realtime, arealtime
24765
24766 Slow down filtering to match real time approximately.
24767
24768 These filters will pause the filtering for a variable amount of time to
24769 match the output rate with the input timestamps.
24770 They are similar to the @option{re} option to @code{ffmpeg}.
24771
24772 They accept the following options:
24773
24774 @table @option
24775 @item limit
24776 Time limit for the pauses. Any pause longer than that will be considered
24777 a timestamp discontinuity and reset the timer. Default is 2 seconds.
24778 @item speed
24779 Speed factor for processing. The value must be a float larger than zero.
24780 Values larger than 1.0 will result in faster than realtime processing,
24781 smaller will slow processing down. The @var{limit} is automatically adapted
24782 accordingly. Default is 1.0.
24783
24784 A processing speed faster than what is possible without these filters cannot
24785 be achieved.
24786 @end table
24787
24788 @anchor{select}
24789 @section select, aselect
24790
24791 Select frames to pass in output.
24792
24793 This filter accepts the following options:
24794
24795 @table @option
24796
24797 @item expr, e
24798 Set expression, which is evaluated for each input frame.
24799
24800 If the expression is evaluated to zero, the frame is discarded.
24801
24802 If the evaluation result is negative or NaN, the frame is sent to the
24803 first output; otherwise it is sent to the output with index
24804 @code{ceil(val)-1}, assuming that the input index starts from 0.
24805
24806 For example a value of @code{1.2} corresponds to the output with index
24807 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
24808
24809 @item outputs, n
24810 Set the number of outputs. The output to which to send the selected
24811 frame is based on the result of the evaluation. Default value is 1.
24812 @end table
24813
24814 The expression can contain the following constants:
24815
24816 @table @option
24817 @item n
24818 The (sequential) number of the filtered frame, starting from 0.
24819
24820 @item selected_n
24821 The (sequential) number of the selected frame, starting from 0.
24822
24823 @item prev_selected_n
24824 The sequential number of the last selected frame. It's NAN if undefined.
24825
24826 @item TB
24827 The timebase of the input timestamps.
24828
24829 @item pts
24830 The PTS (Presentation TimeStamp) of the filtered video frame,
24831 expressed in @var{TB} units. It's NAN if undefined.
24832
24833 @item t
24834 The PTS of the filtered video frame,
24835 expressed in seconds. It's NAN if undefined.
24836
24837 @item prev_pts
24838 The PTS of the previously filtered video frame. It's NAN if undefined.
24839
24840 @item prev_selected_pts
24841 The PTS of the last previously filtered video frame. It's NAN if undefined.
24842
24843 @item prev_selected_t
24844 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
24845
24846 @item start_pts
24847 The PTS of the first video frame in the video. It's NAN if undefined.
24848
24849 @item start_t
24850 The time of the first video frame in the video. It's NAN if undefined.
24851
24852 @item pict_type @emph{(video only)}
24853 The type of the filtered frame. It can assume one of the following
24854 values:
24855 @table @option
24856 @item I
24857 @item P
24858 @item B
24859 @item S
24860 @item SI
24861 @item SP
24862 @item BI
24863 @end table
24864
24865 @item interlace_type @emph{(video only)}
24866 The frame interlace type. It can assume one of the following values:
24867 @table @option
24868 @item PROGRESSIVE
24869 The frame is progressive (not interlaced).
24870 @item TOPFIRST
24871 The frame is top-field-first.
24872 @item BOTTOMFIRST
24873 The frame is bottom-field-first.
24874 @end table
24875
24876 @item consumed_sample_n @emph{(audio only)}
24877 the number of selected samples before the current frame
24878
24879 @item samples_n @emph{(audio only)}
24880 the number of samples in the current frame
24881
24882 @item sample_rate @emph{(audio only)}
24883 the input sample rate
24884
24885 @item key
24886 This is 1 if the filtered frame is a key-frame, 0 otherwise.
24887
24888 @item pos
24889 the position in the file of the filtered frame, -1 if the information
24890 is not available (e.g. for synthetic video)
24891
24892 @item scene @emph{(video only)}
24893 value between 0 and 1 to indicate a new scene; a low value reflects a low
24894 probability for the current frame to introduce a new scene, while a higher
24895 value means the current frame is more likely to be one (see the example below)
24896
24897 @item concatdec_select
24898 The concat demuxer can select only part of a concat input file by setting an
24899 inpoint and an outpoint, but the output packets may not be entirely contained
24900 in the selected interval. By using this variable, it is possible to skip frames
24901 generated by the concat demuxer which are not exactly contained in the selected
24902 interval.
24903
24904 This works by comparing the frame pts against the @var{lavf.concat.start_time}
24905 and the @var{lavf.concat.duration} packet metadata values which are also
24906 present in the decoded frames.
24907
24908 The @var{concatdec_select} variable is -1 if the frame pts is at least
24909 start_time and either the duration metadata is missing or the frame pts is less
24910 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
24911 missing.
24912
24913 That basically means that an input frame is selected if its pts is within the
24914 interval set by the concat demuxer.
24915
24916 @end table
24917
24918 The default value of the select expression is "1".
24919
24920 @subsection Examples
24921
24922 @itemize
24923 @item
24924 Select all frames in input:
24925 @example
24926 select
24927 @end example
24928
24929 The example above is the same as:
24930 @example
24931 select=1
24932 @end example
24933
24934 @item
24935 Skip all frames:
24936 @example
24937 select=0
24938 @end example
24939
24940 @item
24941 Select only I-frames:
24942 @example
24943 select='eq(pict_type\,I)'
24944 @end example
24945
24946 @item
24947 Select one frame every 100:
24948 @example
24949 select='not(mod(n\,100))'
24950 @end example
24951
24952 @item
24953 Select only frames contained in the 10-20 time interval:
24954 @example
24955 select=between(t\,10\,20)
24956 @end example
24957
24958 @item
24959 Select only I-frames contained in the 10-20 time interval:
24960 @example
24961 select=between(t\,10\,20)*eq(pict_type\,I)
24962 @end example
24963
24964 @item
24965 Select frames with a minimum distance of 10 seconds:
24966 @example
24967 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
24968 @end example
24969
24970 @item
24971 Use aselect to select only audio frames with samples number > 100:
24972 @example
24973 aselect='gt(samples_n\,100)'
24974 @end example
24975
24976 @item
24977 Create a mosaic of the first scenes:
24978 @example
24979 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
24980 @end example
24981
24982 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
24983 choice.
24984
24985 @item
24986 Send even and odd frames to separate outputs, and compose them:
24987 @example
24988 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
24989 @end example
24990
24991 @item
24992 Select useful frames from an ffconcat file which is using inpoints and
24993 outpoints but where the source files are not intra frame only.
24994 @example
24995 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
24996 @end example
24997 @end itemize
24998
24999 @section sendcmd, asendcmd
25000
25001 Send commands to filters in the filtergraph.
25002
25003 These filters read commands to be sent to other filters in the
25004 filtergraph.
25005
25006 @code{sendcmd} must be inserted between two video filters,
25007 @code{asendcmd} must be inserted between two audio filters, but apart
25008 from that they act the same way.
25009
25010 The specification of commands can be provided in the filter arguments
25011 with the @var{commands} option, or in a file specified by the
25012 @var{filename} option.
25013
25014 These filters accept the following options:
25015 @table @option
25016 @item commands, c
25017 Set the commands to be read and sent to the other filters.
25018 @item filename, f
25019 Set the filename of the commands to be read and sent to the other
25020 filters.
25021 @end table
25022
25023 @subsection Commands syntax
25024
25025 A commands description consists of a sequence of interval
25026 specifications, comprising a list of commands to be executed when a
25027 particular event related to that interval occurs. The occurring event
25028 is typically the current frame time entering or leaving a given time
25029 interval.
25030
25031 An interval is specified by the following syntax:
25032 @example
25033 @var{START}[-@var{END}] @var{COMMANDS};
25034 @end example
25035
25036 The time interval is specified by the @var{START} and @var{END} times.
25037 @var{END} is optional and defaults to the maximum time.
25038
25039 The current frame time is considered within the specified interval if
25040 it is included in the interval [@var{START}, @var{END}), that is when
25041 the time is greater or equal to @var{START} and is lesser than
25042 @var{END}.
25043
25044 @var{COMMANDS} consists of a sequence of one or more command
25045 specifications, separated by ",", relating to that interval.  The
25046 syntax of a command specification is given by:
25047 @example
25048 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
25049 @end example
25050
25051 @var{FLAGS} is optional and specifies the type of events relating to
25052 the time interval which enable sending the specified command, and must
25053 be a non-null sequence of identifier flags separated by "+" or "|" and
25054 enclosed between "[" and "]".
25055
25056 The following flags are recognized:
25057 @table @option
25058 @item enter
25059 The command is sent when the current frame timestamp enters the
25060 specified interval. In other words, the command is sent when the
25061 previous frame timestamp was not in the given interval, and the
25062 current is.
25063
25064 @item leave
25065 The command is sent when the current frame timestamp leaves the
25066 specified interval. In other words, the command is sent when the
25067 previous frame timestamp was in the given interval, and the
25068 current is not.
25069
25070 @item expr
25071 The command @var{ARG} is interpreted as expression and result of
25072 expression is passed as @var{ARG}.
25073
25074 The expression is evaluated through the eval API and can contain the following
25075 constants:
25076
25077 @table @option
25078 @item POS
25079 Original position in the file of the frame, or undefined if undefined
25080 for the current frame.
25081
25082 @item PTS
25083 The presentation timestamp in input.
25084
25085 @item N
25086 The count of the input frame for video or audio, starting from 0.
25087
25088 @item T
25089 The time in seconds of the current frame.
25090
25091 @item TS
25092 The start time in seconds of the current command interval.
25093
25094 @item TE
25095 The end time in seconds of the current command interval.
25096
25097 @item TI
25098 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
25099 @end table
25100
25101 @end table
25102
25103 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
25104 assumed.
25105
25106 @var{TARGET} specifies the target of the command, usually the name of
25107 the filter class or a specific filter instance name.
25108
25109 @var{COMMAND} specifies the name of the command for the target filter.
25110
25111 @var{ARG} is optional and specifies the optional list of argument for
25112 the given @var{COMMAND}.
25113
25114 Between one interval specification and another, whitespaces, or
25115 sequences of characters starting with @code{#} until the end of line,
25116 are ignored and can be used to annotate comments.
25117
25118 A simplified BNF description of the commands specification syntax
25119 follows:
25120 @example
25121 @var{COMMAND_FLAG}  ::= "enter" | "leave"
25122 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
25123 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
25124 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
25125 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
25126 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
25127 @end example
25128
25129 @subsection Examples
25130
25131 @itemize
25132 @item
25133 Specify audio tempo change at second 4:
25134 @example
25135 asendcmd=c='4.0 atempo tempo 1.5',atempo
25136 @end example
25137
25138 @item
25139 Target a specific filter instance:
25140 @example
25141 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
25142 @end example
25143
25144 @item
25145 Specify a list of drawtext and hue commands in a file.
25146 @example
25147 # show text in the interval 5-10
25148 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
25149          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
25150
25151 # desaturate the image in the interval 15-20
25152 15.0-20.0 [enter] hue s 0,
25153           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
25154           [leave] hue s 1,
25155           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
25156
25157 # apply an exponential saturation fade-out effect, starting from time 25
25158 25 [enter] hue s exp(25-t)
25159 @end example
25160
25161 A filtergraph allowing to read and process the above command list
25162 stored in a file @file{test.cmd}, can be specified with:
25163 @example
25164 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
25165 @end example
25166 @end itemize
25167
25168 @anchor{setpts}
25169 @section setpts, asetpts
25170
25171 Change the PTS (presentation timestamp) of the input frames.
25172
25173 @code{setpts} works on video frames, @code{asetpts} on audio frames.
25174
25175 This filter accepts the following options:
25176
25177 @table @option
25178
25179 @item expr
25180 The expression which is evaluated for each frame to construct its timestamp.
25181
25182 @end table
25183
25184 The expression is evaluated through the eval API and can contain the following
25185 constants:
25186
25187 @table @option
25188 @item FRAME_RATE, FR
25189 frame rate, only defined for constant frame-rate video
25190
25191 @item PTS
25192 The presentation timestamp in input
25193
25194 @item N
25195 The count of the input frame for video or the number of consumed samples,
25196 not including the current frame for audio, starting from 0.
25197
25198 @item NB_CONSUMED_SAMPLES
25199 The number of consumed samples, not including the current frame (only
25200 audio)
25201
25202 @item NB_SAMPLES, S
25203 The number of samples in the current frame (only audio)
25204
25205 @item SAMPLE_RATE, SR
25206 The audio sample rate.
25207
25208 @item STARTPTS
25209 The PTS of the first frame.
25210
25211 @item STARTT
25212 the time in seconds of the first frame
25213
25214 @item INTERLACED
25215 State whether the current frame is interlaced.
25216
25217 @item T
25218 the time in seconds of the current frame
25219
25220 @item POS
25221 original position in the file of the frame, or undefined if undefined
25222 for the current frame
25223
25224 @item PREV_INPTS
25225 The previous input PTS.
25226
25227 @item PREV_INT
25228 previous input time in seconds
25229
25230 @item PREV_OUTPTS
25231 The previous output PTS.
25232
25233 @item PREV_OUTT
25234 previous output time in seconds
25235
25236 @item RTCTIME
25237 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
25238 instead.
25239
25240 @item RTCSTART
25241 The wallclock (RTC) time at the start of the movie in microseconds.
25242
25243 @item TB
25244 The timebase of the input timestamps.
25245
25246 @end table
25247
25248 @subsection Examples
25249
25250 @itemize
25251 @item
25252 Start counting PTS from zero
25253 @example
25254 setpts=PTS-STARTPTS
25255 @end example
25256
25257 @item
25258 Apply fast motion effect:
25259 @example
25260 setpts=0.5*PTS
25261 @end example
25262
25263 @item
25264 Apply slow motion effect:
25265 @example
25266 setpts=2.0*PTS
25267 @end example
25268
25269 @item
25270 Set fixed rate of 25 frames per second:
25271 @example
25272 setpts=N/(25*TB)
25273 @end example
25274
25275 @item
25276 Set fixed rate 25 fps with some jitter:
25277 @example
25278 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
25279 @end example
25280
25281 @item
25282 Apply an offset of 10 seconds to the input PTS:
25283 @example
25284 setpts=PTS+10/TB
25285 @end example
25286
25287 @item
25288 Generate timestamps from a "live source" and rebase onto the current timebase:
25289 @example
25290 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
25291 @end example
25292
25293 @item
25294 Generate timestamps by counting samples:
25295 @example
25296 asetpts=N/SR/TB
25297 @end example
25298
25299 @end itemize
25300
25301 @section setrange
25302
25303 Force color range for the output video frame.
25304
25305 The @code{setrange} filter marks the color range property for the
25306 output frames. It does not change the input frame, but only sets the
25307 corresponding property, which affects how the frame is treated by
25308 following filters.
25309
25310 The filter accepts the following options:
25311
25312 @table @option
25313
25314 @item range
25315 Available values are:
25316
25317 @table @samp
25318 @item auto
25319 Keep the same color range property.
25320
25321 @item unspecified, unknown
25322 Set the color range as unspecified.
25323
25324 @item limited, tv, mpeg
25325 Set the color range as limited.
25326
25327 @item full, pc, jpeg
25328 Set the color range as full.
25329 @end table
25330 @end table
25331
25332 @section settb, asettb
25333
25334 Set the timebase to use for the output frames timestamps.
25335 It is mainly useful for testing timebase configuration.
25336
25337 It accepts the following parameters:
25338
25339 @table @option
25340
25341 @item expr, tb
25342 The expression which is evaluated into the output timebase.
25343
25344 @end table
25345
25346 The value for @option{tb} is an arithmetic expression representing a
25347 rational. The expression can contain the constants "AVTB" (the default
25348 timebase), "intb" (the input timebase) and "sr" (the sample rate,
25349 audio only). Default value is "intb".
25350
25351 @subsection Examples
25352
25353 @itemize
25354 @item
25355 Set the timebase to 1/25:
25356 @example
25357 settb=expr=1/25
25358 @end example
25359
25360 @item
25361 Set the timebase to 1/10:
25362 @example
25363 settb=expr=0.1
25364 @end example
25365
25366 @item
25367 Set the timebase to 1001/1000:
25368 @example
25369 settb=1+0.001
25370 @end example
25371
25372 @item
25373 Set the timebase to 2*intb:
25374 @example
25375 settb=2*intb
25376 @end example
25377
25378 @item
25379 Set the default timebase value:
25380 @example
25381 settb=AVTB
25382 @end example
25383 @end itemize
25384
25385 @section showcqt
25386 Convert input audio to a video output representing frequency spectrum
25387 logarithmically using Brown-Puckette constant Q transform algorithm with
25388 direct frequency domain coefficient calculation (but the transform itself
25389 is not really constant Q, instead the Q factor is actually variable/clamped),
25390 with musical tone scale, from E0 to D#10.
25391
25392 The filter accepts the following options:
25393
25394 @table @option
25395 @item size, s
25396 Specify the video size for the output. It must be even. For the syntax of this option,
25397 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25398 Default value is @code{1920x1080}.
25399
25400 @item fps, rate, r
25401 Set the output frame rate. Default value is @code{25}.
25402
25403 @item bar_h
25404 Set the bargraph height. It must be even. Default value is @code{-1} which
25405 computes the bargraph height automatically.
25406
25407 @item axis_h
25408 Set the axis height. It must be even. Default value is @code{-1} which computes
25409 the axis height automatically.
25410
25411 @item sono_h
25412 Set the sonogram height. It must be even. Default value is @code{-1} which
25413 computes the sonogram height automatically.
25414
25415 @item fullhd
25416 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
25417 instead. Default value is @code{1}.
25418
25419 @item sono_v, volume
25420 Specify the sonogram volume expression. It can contain variables:
25421 @table @option
25422 @item bar_v
25423 the @var{bar_v} evaluated expression
25424 @item frequency, freq, f
25425 the frequency where it is evaluated
25426 @item timeclamp, tc
25427 the value of @var{timeclamp} option
25428 @end table
25429 and functions:
25430 @table @option
25431 @item a_weighting(f)
25432 A-weighting of equal loudness
25433 @item b_weighting(f)
25434 B-weighting of equal loudness
25435 @item c_weighting(f)
25436 C-weighting of equal loudness.
25437 @end table
25438 Default value is @code{16}.
25439
25440 @item bar_v, volume2
25441 Specify the bargraph volume expression. It can contain variables:
25442 @table @option
25443 @item sono_v
25444 the @var{sono_v} evaluated expression
25445 @item frequency, freq, f
25446 the frequency where it is evaluated
25447 @item timeclamp, tc
25448 the value of @var{timeclamp} option
25449 @end table
25450 and functions:
25451 @table @option
25452 @item a_weighting(f)
25453 A-weighting of equal loudness
25454 @item b_weighting(f)
25455 B-weighting of equal loudness
25456 @item c_weighting(f)
25457 C-weighting of equal loudness.
25458 @end table
25459 Default value is @code{sono_v}.
25460
25461 @item sono_g, gamma
25462 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
25463 higher gamma makes the spectrum having more range. Default value is @code{3}.
25464 Acceptable range is @code{[1, 7]}.
25465
25466 @item bar_g, gamma2
25467 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
25468 @code{[1, 7]}.
25469
25470 @item bar_t
25471 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
25472 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
25473
25474 @item timeclamp, tc
25475 Specify the transform timeclamp. At low frequency, there is trade-off between
25476 accuracy in time domain and frequency domain. If timeclamp is lower,
25477 event in time domain is represented more accurately (such as fast bass drum),
25478 otherwise event in frequency domain is represented more accurately
25479 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
25480
25481 @item attack
25482 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
25483 limits future samples by applying asymmetric windowing in time domain, useful
25484 when low latency is required. Accepted range is @code{[0, 1]}.
25485
25486 @item basefreq
25487 Specify the transform base frequency. Default value is @code{20.01523126408007475},
25488 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
25489
25490 @item endfreq
25491 Specify the transform end frequency. Default value is @code{20495.59681441799654},
25492 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
25493
25494 @item coeffclamp
25495 This option is deprecated and ignored.
25496
25497 @item tlength
25498 Specify the transform length in time domain. Use this option to control accuracy
25499 trade-off between time domain and frequency domain at every frequency sample.
25500 It can contain variables:
25501 @table @option
25502 @item frequency, freq, f
25503 the frequency where it is evaluated
25504 @item timeclamp, tc
25505 the value of @var{timeclamp} option.
25506 @end table
25507 Default value is @code{384*tc/(384+tc*f)}.
25508
25509 @item count
25510 Specify the transform count for every video frame. Default value is @code{6}.
25511 Acceptable range is @code{[1, 30]}.
25512
25513 @item fcount
25514 Specify the transform count for every single pixel. Default value is @code{0},
25515 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
25516
25517 @item fontfile
25518 Specify font file for use with freetype to draw the axis. If not specified,
25519 use embedded font. Note that drawing with font file or embedded font is not
25520 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
25521 option instead.
25522
25523 @item font
25524 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
25525 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
25526 escaping.
25527
25528 @item fontcolor
25529 Specify font color expression. This is arithmetic expression that should return
25530 integer value 0xRRGGBB. It can contain variables:
25531 @table @option
25532 @item frequency, freq, f
25533 the frequency where it is evaluated
25534 @item timeclamp, tc
25535 the value of @var{timeclamp} option
25536 @end table
25537 and functions:
25538 @table @option
25539 @item midi(f)
25540 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
25541 @item r(x), g(x), b(x)
25542 red, green, and blue value of intensity x.
25543 @end table
25544 Default value is @code{st(0, (midi(f)-59.5)/12);
25545 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
25546 r(1-ld(1)) + b(ld(1))}.
25547
25548 @item axisfile
25549 Specify image file to draw the axis. This option override @var{fontfile} and
25550 @var{fontcolor} option.
25551
25552 @item axis, text
25553 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
25554 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
25555 Default value is @code{1}.
25556
25557 @item csp
25558 Set colorspace. The accepted values are:
25559 @table @samp
25560 @item unspecified
25561 Unspecified (default)
25562
25563 @item bt709
25564 BT.709
25565
25566 @item fcc
25567 FCC
25568
25569 @item bt470bg
25570 BT.470BG or BT.601-6 625
25571
25572 @item smpte170m
25573 SMPTE-170M or BT.601-6 525
25574
25575 @item smpte240m
25576 SMPTE-240M
25577
25578 @item bt2020ncl
25579 BT.2020 with non-constant luminance
25580
25581 @end table
25582
25583 @item cscheme
25584 Set spectrogram color scheme. This is list of floating point values with format
25585 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
25586 The default is @code{1|0.5|0|0|0.5|1}.
25587
25588 @end table
25589
25590 @subsection Examples
25591
25592 @itemize
25593 @item
25594 Playing audio while showing the spectrum:
25595 @example
25596 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
25597 @end example
25598
25599 @item
25600 Same as above, but with frame rate 30 fps:
25601 @example
25602 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
25603 @end example
25604
25605 @item
25606 Playing at 1280x720:
25607 @example
25608 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
25609 @end example
25610
25611 @item
25612 Disable sonogram display:
25613 @example
25614 sono_h=0
25615 @end example
25616
25617 @item
25618 A1 and its harmonics: A1, A2, (near)E3, A3:
25619 @example
25620 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),
25621                  asplit[a][out1]; [a] showcqt [out0]'
25622 @end example
25623
25624 @item
25625 Same as above, but with more accuracy in frequency domain:
25626 @example
25627 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),
25628                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
25629 @end example
25630
25631 @item
25632 Custom volume:
25633 @example
25634 bar_v=10:sono_v=bar_v*a_weighting(f)
25635 @end example
25636
25637 @item
25638 Custom gamma, now spectrum is linear to the amplitude.
25639 @example
25640 bar_g=2:sono_g=2
25641 @end example
25642
25643 @item
25644 Custom tlength equation:
25645 @example
25646 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)))'
25647 @end example
25648
25649 @item
25650 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
25651 @example
25652 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
25653 @end example
25654
25655 @item
25656 Custom font using fontconfig:
25657 @example
25658 font='Courier New,Monospace,mono|bold'
25659 @end example
25660
25661 @item
25662 Custom frequency range with custom axis using image file:
25663 @example
25664 axisfile=myaxis.png:basefreq=40:endfreq=10000
25665 @end example
25666 @end itemize
25667
25668 @section showfreqs
25669
25670 Convert input audio to video output representing the audio power spectrum.
25671 Audio amplitude is on Y-axis while frequency is on X-axis.
25672
25673 The filter accepts the following options:
25674
25675 @table @option
25676 @item size, s
25677 Specify size of video. For the syntax of this option, check the
25678 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25679 Default is @code{1024x512}.
25680
25681 @item mode
25682 Set display mode.
25683 This set how each frequency bin will be represented.
25684
25685 It accepts the following values:
25686 @table @samp
25687 @item line
25688 @item bar
25689 @item dot
25690 @end table
25691 Default is @code{bar}.
25692
25693 @item ascale
25694 Set amplitude scale.
25695
25696 It accepts the following values:
25697 @table @samp
25698 @item lin
25699 Linear scale.
25700
25701 @item sqrt
25702 Square root scale.
25703
25704 @item cbrt
25705 Cubic root scale.
25706
25707 @item log
25708 Logarithmic scale.
25709 @end table
25710 Default is @code{log}.
25711
25712 @item fscale
25713 Set frequency scale.
25714
25715 It accepts the following values:
25716 @table @samp
25717 @item lin
25718 Linear scale.
25719
25720 @item log
25721 Logarithmic scale.
25722
25723 @item rlog
25724 Reverse logarithmic scale.
25725 @end table
25726 Default is @code{lin}.
25727
25728 @item win_size
25729 Set window size. Allowed range is from 16 to 65536.
25730
25731 Default is @code{2048}
25732
25733 @item win_func
25734 Set windowing function.
25735
25736 It accepts the following values:
25737 @table @samp
25738 @item rect
25739 @item bartlett
25740 @item hanning
25741 @item hamming
25742 @item blackman
25743 @item welch
25744 @item flattop
25745 @item bharris
25746 @item bnuttall
25747 @item bhann
25748 @item sine
25749 @item nuttall
25750 @item lanczos
25751 @item gauss
25752 @item tukey
25753 @item dolph
25754 @item cauchy
25755 @item parzen
25756 @item poisson
25757 @item bohman
25758 @end table
25759 Default is @code{hanning}.
25760
25761 @item overlap
25762 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25763 which means optimal overlap for selected window function will be picked.
25764
25765 @item averaging
25766 Set time averaging. Setting this to 0 will display current maximal peaks.
25767 Default is @code{1}, which means time averaging is disabled.
25768
25769 @item colors
25770 Specify list of colors separated by space or by '|' which will be used to
25771 draw channel frequencies. Unrecognized or missing colors will be replaced
25772 by white color.
25773
25774 @item cmode
25775 Set channel display mode.
25776
25777 It accepts the following values:
25778 @table @samp
25779 @item combined
25780 @item separate
25781 @end table
25782 Default is @code{combined}.
25783
25784 @item minamp
25785 Set minimum amplitude used in @code{log} amplitude scaler.
25786
25787 @item data
25788 Set data display mode.
25789
25790 It accepts the following values:
25791 @table @samp
25792 @item magnitude
25793 @item phase
25794 @item delay
25795 @end table
25796 Default is @code{magnitude}.
25797 @end table
25798
25799 @section showspatial
25800
25801 Convert stereo input audio to a video output, representing the spatial relationship
25802 between two channels.
25803
25804 The filter accepts the following options:
25805
25806 @table @option
25807 @item size, s
25808 Specify the video size for the output. For the syntax of this option, check the
25809 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25810 Default value is @code{512x512}.
25811
25812 @item win_size
25813 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
25814
25815 @item win_func
25816 Set window function.
25817
25818 It accepts the following values:
25819 @table @samp
25820 @item rect
25821 @item bartlett
25822 @item hann
25823 @item hanning
25824 @item hamming
25825 @item blackman
25826 @item welch
25827 @item flattop
25828 @item bharris
25829 @item bnuttall
25830 @item bhann
25831 @item sine
25832 @item nuttall
25833 @item lanczos
25834 @item gauss
25835 @item tukey
25836 @item dolph
25837 @item cauchy
25838 @item parzen
25839 @item poisson
25840 @item bohman
25841 @end table
25842
25843 Default value is @code{hann}.
25844
25845 @item overlap
25846 Set ratio of overlap window. Default value is @code{0.5}.
25847 When value is @code{1} overlap is set to recommended size for specific
25848 window function currently used.
25849 @end table
25850
25851 @anchor{showspectrum}
25852 @section showspectrum
25853
25854 Convert input audio to a video output, representing the audio frequency
25855 spectrum.
25856
25857 The filter accepts the following options:
25858
25859 @table @option
25860 @item size, s
25861 Specify the video size for the output. For the syntax of this option, check the
25862 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25863 Default value is @code{640x512}.
25864
25865 @item slide
25866 Specify how the spectrum should slide along the window.
25867
25868 It accepts the following values:
25869 @table @samp
25870 @item replace
25871 the samples start again on the left when they reach the right
25872 @item scroll
25873 the samples scroll from right to left
25874 @item fullframe
25875 frames are only produced when the samples reach the right
25876 @item rscroll
25877 the samples scroll from left to right
25878 @end table
25879
25880 Default value is @code{replace}.
25881
25882 @item mode
25883 Specify display mode.
25884
25885 It accepts the following values:
25886 @table @samp
25887 @item combined
25888 all channels are displayed in the same row
25889 @item separate
25890 all channels are displayed in separate rows
25891 @end table
25892
25893 Default value is @samp{combined}.
25894
25895 @item color
25896 Specify display color mode.
25897
25898 It accepts the following values:
25899 @table @samp
25900 @item channel
25901 each channel is displayed in a separate color
25902 @item intensity
25903 each channel is displayed using the same color scheme
25904 @item rainbow
25905 each channel is displayed using the rainbow color scheme
25906 @item moreland
25907 each channel is displayed using the moreland color scheme
25908 @item nebulae
25909 each channel is displayed using the nebulae color scheme
25910 @item fire
25911 each channel is displayed using the fire color scheme
25912 @item fiery
25913 each channel is displayed using the fiery color scheme
25914 @item fruit
25915 each channel is displayed using the fruit color scheme
25916 @item cool
25917 each channel is displayed using the cool color scheme
25918 @item magma
25919 each channel is displayed using the magma color scheme
25920 @item green
25921 each channel is displayed using the green color scheme
25922 @item viridis
25923 each channel is displayed using the viridis color scheme
25924 @item plasma
25925 each channel is displayed using the plasma color scheme
25926 @item cividis
25927 each channel is displayed using the cividis color scheme
25928 @item terrain
25929 each channel is displayed using the terrain color scheme
25930 @end table
25931
25932 Default value is @samp{channel}.
25933
25934 @item scale
25935 Specify scale used for calculating intensity color values.
25936
25937 It accepts the following values:
25938 @table @samp
25939 @item lin
25940 linear
25941 @item sqrt
25942 square root, default
25943 @item cbrt
25944 cubic root
25945 @item log
25946 logarithmic
25947 @item 4thrt
25948 4th root
25949 @item 5thrt
25950 5th root
25951 @end table
25952
25953 Default value is @samp{sqrt}.
25954
25955 @item fscale
25956 Specify frequency scale.
25957
25958 It accepts the following values:
25959 @table @samp
25960 @item lin
25961 linear
25962 @item log
25963 logarithmic
25964 @end table
25965
25966 Default value is @samp{lin}.
25967
25968 @item saturation
25969 Set saturation modifier for displayed colors. Negative values provide
25970 alternative color scheme. @code{0} is no saturation at all.
25971 Saturation must be in [-10.0, 10.0] range.
25972 Default value is @code{1}.
25973
25974 @item win_func
25975 Set window function.
25976
25977 It accepts the following values:
25978 @table @samp
25979 @item rect
25980 @item bartlett
25981 @item hann
25982 @item hanning
25983 @item hamming
25984 @item blackman
25985 @item welch
25986 @item flattop
25987 @item bharris
25988 @item bnuttall
25989 @item bhann
25990 @item sine
25991 @item nuttall
25992 @item lanczos
25993 @item gauss
25994 @item tukey
25995 @item dolph
25996 @item cauchy
25997 @item parzen
25998 @item poisson
25999 @item bohman
26000 @end table
26001
26002 Default value is @code{hann}.
26003
26004 @item orientation
26005 Set orientation of time vs frequency axis. Can be @code{vertical} or
26006 @code{horizontal}. Default is @code{vertical}.
26007
26008 @item overlap
26009 Set ratio of overlap window. Default value is @code{0}.
26010 When value is @code{1} overlap is set to recommended size for specific
26011 window function currently used.
26012
26013 @item gain
26014 Set scale gain for calculating intensity color values.
26015 Default value is @code{1}.
26016
26017 @item data
26018 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
26019
26020 @item rotation
26021 Set color rotation, must be in [-1.0, 1.0] range.
26022 Default value is @code{0}.
26023
26024 @item start
26025 Set start frequency from which to display spectrogram. Default is @code{0}.
26026
26027 @item stop
26028 Set stop frequency to which to display spectrogram. Default is @code{0}.
26029
26030 @item fps
26031 Set upper frame rate limit. Default is @code{auto}, unlimited.
26032
26033 @item legend
26034 Draw time and frequency axes and legends. Default is disabled.
26035 @end table
26036
26037 The usage is very similar to the showwaves filter; see the examples in that
26038 section.
26039
26040 @subsection Examples
26041
26042 @itemize
26043 @item
26044 Large window with logarithmic color scaling:
26045 @example
26046 showspectrum=s=1280x480:scale=log
26047 @end example
26048
26049 @item
26050 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
26051 @example
26052 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
26053              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
26054 @end example
26055 @end itemize
26056
26057 @section showspectrumpic
26058
26059 Convert input audio to a single video frame, representing the audio frequency
26060 spectrum.
26061
26062 The filter accepts the following options:
26063
26064 @table @option
26065 @item size, s
26066 Specify the video size for the output. For the syntax of this option, check the
26067 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26068 Default value is @code{4096x2048}.
26069
26070 @item mode
26071 Specify display mode.
26072
26073 It accepts the following values:
26074 @table @samp
26075 @item combined
26076 all channels are displayed in the same row
26077 @item separate
26078 all channels are displayed in separate rows
26079 @end table
26080 Default value is @samp{combined}.
26081
26082 @item color
26083 Specify display color mode.
26084
26085 It accepts the following values:
26086 @table @samp
26087 @item channel
26088 each channel is displayed in a separate color
26089 @item intensity
26090 each channel is displayed using the same color scheme
26091 @item rainbow
26092 each channel is displayed using the rainbow color scheme
26093 @item moreland
26094 each channel is displayed using the moreland color scheme
26095 @item nebulae
26096 each channel is displayed using the nebulae color scheme
26097 @item fire
26098 each channel is displayed using the fire color scheme
26099 @item fiery
26100 each channel is displayed using the fiery color scheme
26101 @item fruit
26102 each channel is displayed using the fruit color scheme
26103 @item cool
26104 each channel is displayed using the cool color scheme
26105 @item magma
26106 each channel is displayed using the magma color scheme
26107 @item green
26108 each channel is displayed using the green color scheme
26109 @item viridis
26110 each channel is displayed using the viridis color scheme
26111 @item plasma
26112 each channel is displayed using the plasma color scheme
26113 @item cividis
26114 each channel is displayed using the cividis color scheme
26115 @item terrain
26116 each channel is displayed using the terrain color scheme
26117 @end table
26118 Default value is @samp{intensity}.
26119
26120 @item scale
26121 Specify scale used for calculating intensity color values.
26122
26123 It accepts the following values:
26124 @table @samp
26125 @item lin
26126 linear
26127 @item sqrt
26128 square root, default
26129 @item cbrt
26130 cubic root
26131 @item log
26132 logarithmic
26133 @item 4thrt
26134 4th root
26135 @item 5thrt
26136 5th root
26137 @end table
26138 Default value is @samp{log}.
26139
26140 @item fscale
26141 Specify frequency scale.
26142
26143 It accepts the following values:
26144 @table @samp
26145 @item lin
26146 linear
26147 @item log
26148 logarithmic
26149 @end table
26150
26151 Default value is @samp{lin}.
26152
26153 @item saturation
26154 Set saturation modifier for displayed colors. Negative values provide
26155 alternative color scheme. @code{0} is no saturation at all.
26156 Saturation must be in [-10.0, 10.0] range.
26157 Default value is @code{1}.
26158
26159 @item win_func
26160 Set window function.
26161
26162 It accepts the following values:
26163 @table @samp
26164 @item rect
26165 @item bartlett
26166 @item hann
26167 @item hanning
26168 @item hamming
26169 @item blackman
26170 @item welch
26171 @item flattop
26172 @item bharris
26173 @item bnuttall
26174 @item bhann
26175 @item sine
26176 @item nuttall
26177 @item lanczos
26178 @item gauss
26179 @item tukey
26180 @item dolph
26181 @item cauchy
26182 @item parzen
26183 @item poisson
26184 @item bohman
26185 @end table
26186 Default value is @code{hann}.
26187
26188 @item orientation
26189 Set orientation of time vs frequency axis. Can be @code{vertical} or
26190 @code{horizontal}. Default is @code{vertical}.
26191
26192 @item gain
26193 Set scale gain for calculating intensity color values.
26194 Default value is @code{1}.
26195
26196 @item legend
26197 Draw time and frequency axes and legends. Default is enabled.
26198
26199 @item rotation
26200 Set color rotation, must be in [-1.0, 1.0] range.
26201 Default value is @code{0}.
26202
26203 @item start
26204 Set start frequency from which to display spectrogram. Default is @code{0}.
26205
26206 @item stop
26207 Set stop frequency to which to display spectrogram. Default is @code{0}.
26208 @end table
26209
26210 @subsection Examples
26211
26212 @itemize
26213 @item
26214 Extract an audio spectrogram of a whole audio track
26215 in a 1024x1024 picture using @command{ffmpeg}:
26216 @example
26217 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
26218 @end example
26219 @end itemize
26220
26221 @section showvolume
26222
26223 Convert input audio volume to a video output.
26224
26225 The filter accepts the following options:
26226
26227 @table @option
26228 @item rate, r
26229 Set video rate.
26230
26231 @item b
26232 Set border width, allowed range is [0, 5]. Default is 1.
26233
26234 @item w
26235 Set channel width, allowed range is [80, 8192]. Default is 400.
26236
26237 @item h
26238 Set channel height, allowed range is [1, 900]. Default is 20.
26239
26240 @item f
26241 Set fade, allowed range is [0, 1]. Default is 0.95.
26242
26243 @item c
26244 Set volume color expression.
26245
26246 The expression can use the following variables:
26247
26248 @table @option
26249 @item VOLUME
26250 Current max volume of channel in dB.
26251
26252 @item PEAK
26253 Current peak.
26254
26255 @item CHANNEL
26256 Current channel number, starting from 0.
26257 @end table
26258
26259 @item t
26260 If set, displays channel names. Default is enabled.
26261
26262 @item v
26263 If set, displays volume values. Default is enabled.
26264
26265 @item o
26266 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
26267 default is @code{h}.
26268
26269 @item s
26270 Set step size, allowed range is [0, 5]. Default is 0, which means
26271 step is disabled.
26272
26273 @item p
26274 Set background opacity, allowed range is [0, 1]. Default is 0.
26275
26276 @item m
26277 Set metering mode, can be peak: @code{p} or rms: @code{r},
26278 default is @code{p}.
26279
26280 @item ds
26281 Set display scale, can be linear: @code{lin} or log: @code{log},
26282 default is @code{lin}.
26283
26284 @item dm
26285 In second.
26286 If set to > 0., display a line for the max level
26287 in the previous seconds.
26288 default is disabled: @code{0.}
26289
26290 @item dmc
26291 The color of the max line. Use when @code{dm} option is set to > 0.
26292 default is: @code{orange}
26293 @end table
26294
26295 @section showwaves
26296
26297 Convert input audio to a video output, representing the samples waves.
26298
26299 The filter accepts the following options:
26300
26301 @table @option
26302 @item size, s
26303 Specify the video size for the output. For the syntax of this option, check the
26304 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26305 Default value is @code{600x240}.
26306
26307 @item mode
26308 Set display mode.
26309
26310 Available values are:
26311 @table @samp
26312 @item point
26313 Draw a point for each sample.
26314
26315 @item line
26316 Draw a vertical line for each sample.
26317
26318 @item p2p
26319 Draw a point for each sample and a line between them.
26320
26321 @item cline
26322 Draw a centered vertical line for each sample.
26323 @end table
26324
26325 Default value is @code{point}.
26326
26327 @item n
26328 Set the number of samples which are printed on the same column. A
26329 larger value will decrease the frame rate. Must be a positive
26330 integer. This option can be set only if the value for @var{rate}
26331 is not explicitly specified.
26332
26333 @item rate, r
26334 Set the (approximate) output frame rate. This is done by setting the
26335 option @var{n}. Default value is "25".
26336
26337 @item split_channels
26338 Set if channels should be drawn separately or overlap. Default value is 0.
26339
26340 @item colors
26341 Set colors separated by '|' which are going to be used for drawing of each channel.
26342
26343 @item scale
26344 Set amplitude scale.
26345
26346 Available values are:
26347 @table @samp
26348 @item lin
26349 Linear.
26350
26351 @item log
26352 Logarithmic.
26353
26354 @item sqrt
26355 Square root.
26356
26357 @item cbrt
26358 Cubic root.
26359 @end table
26360
26361 Default is linear.
26362
26363 @item draw
26364 Set the draw mode. This is mostly useful to set for high @var{n}.
26365
26366 Available values are:
26367 @table @samp
26368 @item scale
26369 Scale pixel values for each drawn sample.
26370
26371 @item full
26372 Draw every sample directly.
26373 @end table
26374
26375 Default value is @code{scale}.
26376 @end table
26377
26378 @subsection Examples
26379
26380 @itemize
26381 @item
26382 Output the input file audio and the corresponding video representation
26383 at the same time:
26384 @example
26385 amovie=a.mp3,asplit[out0],showwaves[out1]
26386 @end example
26387
26388 @item
26389 Create a synthetic signal and show it with showwaves, forcing a
26390 frame rate of 30 frames per second:
26391 @example
26392 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
26393 @end example
26394 @end itemize
26395
26396 @section showwavespic
26397
26398 Convert input audio to a single video frame, representing the samples waves.
26399
26400 The filter accepts the following options:
26401
26402 @table @option
26403 @item size, s
26404 Specify the video size for the output. For the syntax of this option, check the
26405 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26406 Default value is @code{600x240}.
26407
26408 @item split_channels
26409 Set if channels should be drawn separately or overlap. Default value is 0.
26410
26411 @item colors
26412 Set colors separated by '|' which are going to be used for drawing of each channel.
26413
26414 @item scale
26415 Set amplitude scale.
26416
26417 Available values are:
26418 @table @samp
26419 @item lin
26420 Linear.
26421
26422 @item log
26423 Logarithmic.
26424
26425 @item sqrt
26426 Square root.
26427
26428 @item cbrt
26429 Cubic root.
26430 @end table
26431
26432 Default is linear.
26433
26434 @item draw
26435 Set the draw mode.
26436
26437 Available values are:
26438 @table @samp
26439 @item scale
26440 Scale pixel values for each drawn sample.
26441
26442 @item full
26443 Draw every sample directly.
26444 @end table
26445
26446 Default value is @code{scale}.
26447
26448 @item filter
26449 Set the filter mode.
26450
26451 Available values are:
26452 @table @samp
26453 @item average
26454 Use average samples values for each drawn sample.
26455
26456 @item peak
26457 Use peak samples values for each drawn sample.
26458 @end table
26459
26460 Default value is @code{average}.
26461 @end table
26462
26463 @subsection Examples
26464
26465 @itemize
26466 @item
26467 Extract a channel split representation of the wave form of a whole audio track
26468 in a 1024x800 picture using @command{ffmpeg}:
26469 @example
26470 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
26471 @end example
26472 @end itemize
26473
26474 @section sidedata, asidedata
26475
26476 Delete frame side data, or select frames based on it.
26477
26478 This filter accepts the following options:
26479
26480 @table @option
26481 @item mode
26482 Set mode of operation of the filter.
26483
26484 Can be one of the following:
26485
26486 @table @samp
26487 @item select
26488 Select every frame with side data of @code{type}.
26489
26490 @item delete
26491 Delete side data of @code{type}. If @code{type} is not set, delete all side
26492 data in the frame.
26493
26494 @end table
26495
26496 @item type
26497 Set side data type used with all modes. Must be set for @code{select} mode. For
26498 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
26499 in @file{libavutil/frame.h}. For example, to choose
26500 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
26501
26502 @end table
26503
26504 @section spectrumsynth
26505
26506 Synthesize audio from 2 input video spectrums, first input stream represents
26507 magnitude across time and second represents phase across time.
26508 The filter will transform from frequency domain as displayed in videos back
26509 to time domain as presented in audio output.
26510
26511 This filter is primarily created for reversing processed @ref{showspectrum}
26512 filter outputs, but can synthesize sound from other spectrograms too.
26513 But in such case results are going to be poor if the phase data is not
26514 available, because in such cases phase data need to be recreated, usually
26515 it's just recreated from random noise.
26516 For best results use gray only output (@code{channel} color mode in
26517 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
26518 @code{lin} scale for phase video. To produce phase, for 2nd video, use
26519 @code{data} option. Inputs videos should generally use @code{fullframe}
26520 slide mode as that saves resources needed for decoding video.
26521
26522 The filter accepts the following options:
26523
26524 @table @option
26525 @item sample_rate
26526 Specify sample rate of output audio, the sample rate of audio from which
26527 spectrum was generated may differ.
26528
26529 @item channels
26530 Set number of channels represented in input video spectrums.
26531
26532 @item scale
26533 Set scale which was used when generating magnitude input spectrum.
26534 Can be @code{lin} or @code{log}. Default is @code{log}.
26535
26536 @item slide
26537 Set slide which was used when generating inputs spectrums.
26538 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
26539 Default is @code{fullframe}.
26540
26541 @item win_func
26542 Set window function used for resynthesis.
26543
26544 @item overlap
26545 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
26546 which means optimal overlap for selected window function will be picked.
26547
26548 @item orientation
26549 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
26550 Default is @code{vertical}.
26551 @end table
26552
26553 @subsection Examples
26554
26555 @itemize
26556 @item
26557 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
26558 then resynthesize videos back to audio with spectrumsynth:
26559 @example
26560 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
26561 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
26562 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
26563 @end example
26564 @end itemize
26565
26566 @section split, asplit
26567
26568 Split input into several identical outputs.
26569
26570 @code{asplit} works with audio input, @code{split} with video.
26571
26572 The filter accepts a single parameter which specifies the number of outputs. If
26573 unspecified, it defaults to 2.
26574
26575 @subsection Examples
26576
26577 @itemize
26578 @item
26579 Create two separate outputs from the same input:
26580 @example
26581 [in] split [out0][out1]
26582 @end example
26583
26584 @item
26585 To create 3 or more outputs, you need to specify the number of
26586 outputs, like in:
26587 @example
26588 [in] asplit=3 [out0][out1][out2]
26589 @end example
26590
26591 @item
26592 Create two separate outputs from the same input, one cropped and
26593 one padded:
26594 @example
26595 [in] split [splitout1][splitout2];
26596 [splitout1] crop=100:100:0:0    [cropout];
26597 [splitout2] pad=200:200:100:100 [padout];
26598 @end example
26599
26600 @item
26601 Create 5 copies of the input audio with @command{ffmpeg}:
26602 @example
26603 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
26604 @end example
26605 @end itemize
26606
26607 @section zmq, azmq
26608
26609 Receive commands sent through a libzmq client, and forward them to
26610 filters in the filtergraph.
26611
26612 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
26613 must be inserted between two video filters, @code{azmq} between two
26614 audio filters. Both are capable to send messages to any filter type.
26615
26616 To enable these filters you need to install the libzmq library and
26617 headers and configure FFmpeg with @code{--enable-libzmq}.
26618
26619 For more information about libzmq see:
26620 @url{http://www.zeromq.org/}
26621
26622 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
26623 receives messages sent through a network interface defined by the
26624 @option{bind_address} (or the abbreviation "@option{b}") option.
26625 Default value of this option is @file{tcp://localhost:5555}. You may
26626 want to alter this value to your needs, but do not forget to escape any
26627 ':' signs (see @ref{filtergraph escaping}).
26628
26629 The received message must be in the form:
26630 @example
26631 @var{TARGET} @var{COMMAND} [@var{ARG}]
26632 @end example
26633
26634 @var{TARGET} specifies the target of the command, usually the name of
26635 the filter class or a specific filter instance name. The default
26636 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
26637 but you can override this by using the @samp{filter_name@@id} syntax
26638 (see @ref{Filtergraph syntax}).
26639
26640 @var{COMMAND} specifies the name of the command for the target filter.
26641
26642 @var{ARG} is optional and specifies the optional argument list for the
26643 given @var{COMMAND}.
26644
26645 Upon reception, the message is processed and the corresponding command
26646 is injected into the filtergraph. Depending on the result, the filter
26647 will send a reply to the client, adopting the format:
26648 @example
26649 @var{ERROR_CODE} @var{ERROR_REASON}
26650 @var{MESSAGE}
26651 @end example
26652
26653 @var{MESSAGE} is optional.
26654
26655 @subsection Examples
26656
26657 Look at @file{tools/zmqsend} for an example of a zmq client which can
26658 be used to send commands processed by these filters.
26659
26660 Consider the following filtergraph generated by @command{ffplay}.
26661 In this example the last overlay filter has an instance name. All other
26662 filters will have default instance names.
26663
26664 @example
26665 ffplay -dumpgraph 1 -f lavfi "
26666 color=s=100x100:c=red  [l];
26667 color=s=100x100:c=blue [r];
26668 nullsrc=s=200x100, zmq [bg];
26669 [bg][l]   overlay     [bg+l];
26670 [bg+l][r] overlay@@my=x=100 "
26671 @end example
26672
26673 To change the color of the left side of the video, the following
26674 command can be used:
26675 @example
26676 echo Parsed_color_0 c yellow | tools/zmqsend
26677 @end example
26678
26679 To change the right side:
26680 @example
26681 echo Parsed_color_1 c pink | tools/zmqsend
26682 @end example
26683
26684 To change the position of the right side:
26685 @example
26686 echo overlay@@my x 150 | tools/zmqsend
26687 @end example
26688
26689
26690 @c man end MULTIMEDIA FILTERS
26691
26692 @chapter Multimedia Sources
26693 @c man begin MULTIMEDIA SOURCES
26694
26695 Below is a description of the currently available multimedia sources.
26696
26697 @section amovie
26698
26699 This is the same as @ref{movie} source, except it selects an audio
26700 stream by default.
26701
26702 @anchor{movie}
26703 @section movie
26704
26705 Read audio and/or video stream(s) from a movie container.
26706
26707 It accepts the following parameters:
26708
26709 @table @option
26710 @item filename
26711 The name of the resource to read (not necessarily a file; it can also be a
26712 device or a stream accessed through some protocol).
26713
26714 @item format_name, f
26715 Specifies the format assumed for the movie to read, and can be either
26716 the name of a container or an input device. If not specified, the
26717 format is guessed from @var{movie_name} or by probing.
26718
26719 @item seek_point, sp
26720 Specifies the seek point in seconds. The frames will be output
26721 starting from this seek point. The parameter is evaluated with
26722 @code{av_strtod}, so the numerical value may be suffixed by an IS
26723 postfix. The default value is "0".
26724
26725 @item streams, s
26726 Specifies the streams to read. Several streams can be specified,
26727 separated by "+". The source will then have as many outputs, in the
26728 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
26729 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
26730 respectively the default (best suited) video and audio stream. Default
26731 is "dv", or "da" if the filter is called as "amovie".
26732
26733 @item stream_index, si
26734 Specifies the index of the video stream to read. If the value is -1,
26735 the most suitable video stream will be automatically selected. The default
26736 value is "-1". Deprecated. If the filter is called "amovie", it will select
26737 audio instead of video.
26738
26739 @item loop
26740 Specifies how many times to read the stream in sequence.
26741 If the value is 0, the stream will be looped infinitely.
26742 Default value is "1".
26743
26744 Note that when the movie is looped the source timestamps are not
26745 changed, so it will generate non monotonically increasing timestamps.
26746
26747 @item discontinuity
26748 Specifies the time difference between frames above which the point is
26749 considered a timestamp discontinuity which is removed by adjusting the later
26750 timestamps.
26751 @end table
26752
26753 It allows overlaying a second video on top of the main input of
26754 a filtergraph, as shown in this graph:
26755 @example
26756 input -----------> deltapts0 --> overlay --> output
26757                                     ^
26758                                     |
26759 movie --> scale--> deltapts1 -------+
26760 @end example
26761 @subsection Examples
26762
26763 @itemize
26764 @item
26765 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
26766 on top of the input labelled "in":
26767 @example
26768 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
26769 [in] setpts=PTS-STARTPTS [main];
26770 [main][over] overlay=16:16 [out]
26771 @end example
26772
26773 @item
26774 Read from a video4linux2 device, and overlay it on top of the input
26775 labelled "in":
26776 @example
26777 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
26778 [in] setpts=PTS-STARTPTS [main];
26779 [main][over] overlay=16:16 [out]
26780 @end example
26781
26782 @item
26783 Read the first video stream and the audio stream with id 0x81 from
26784 dvd.vob; the video is connected to the pad named "video" and the audio is
26785 connected to the pad named "audio":
26786 @example
26787 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
26788 @end example
26789 @end itemize
26790
26791 @subsection Commands
26792
26793 Both movie and amovie support the following commands:
26794 @table @option
26795 @item seek
26796 Perform seek using "av_seek_frame".
26797 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
26798 @itemize
26799 @item
26800 @var{stream_index}: If stream_index is -1, a default
26801 stream is selected, and @var{timestamp} is automatically converted
26802 from AV_TIME_BASE units to the stream specific time_base.
26803 @item
26804 @var{timestamp}: Timestamp in AVStream.time_base units
26805 or, if no stream is specified, in AV_TIME_BASE units.
26806 @item
26807 @var{flags}: Flags which select direction and seeking mode.
26808 @end itemize
26809
26810 @item get_duration
26811 Get movie duration in AV_TIME_BASE units.
26812
26813 @end table
26814
26815 @c man end MULTIMEDIA SOURCES