]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/vf_lut3d: add prism 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. Allowed range is from @code{[0.0, 1.0]}.
8071 Default is @code{0.0}, thus disabled.
8072 @end table
8073
8074 @subsection Examples
8075
8076 @itemize
8077 @item
8078 Convert source to grayscale:
8079 @example
8080 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
8081 @end example
8082 @item
8083 Simulate sepia tones:
8084 @example
8085 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
8086 @end example
8087 @end itemize
8088
8089 @subsection Commands
8090
8091 This filter supports the all above options as @ref{commands}.
8092
8093 @section colorkey
8094 RGB colorspace color keying.
8095
8096 The filter accepts the following options:
8097
8098 @table @option
8099 @item color
8100 The color which will be replaced with transparency.
8101
8102 @item similarity
8103 Similarity percentage with the key color.
8104
8105 0.01 matches only the exact key color, while 1.0 matches everything.
8106
8107 @item blend
8108 Blend percentage.
8109
8110 0.0 makes pixels either fully transparent, or not transparent at all.
8111
8112 Higher values result in semi-transparent pixels, with a higher transparency
8113 the more similar the pixels color is to the key color.
8114 @end table
8115
8116 @subsection Examples
8117
8118 @itemize
8119 @item
8120 Make every green pixel in the input image transparent:
8121 @example
8122 ffmpeg -i input.png -vf colorkey=green out.png
8123 @end example
8124
8125 @item
8126 Overlay a greenscreen-video on top of a static background image.
8127 @example
8128 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
8129 @end example
8130 @end itemize
8131
8132 @subsection Commands
8133 This filter supports same @ref{commands} as options.
8134 The command accepts the same syntax of the corresponding option.
8135
8136 If the specified expression is not valid, it is kept at its current
8137 value.
8138
8139 @section colorhold
8140 Remove all color information for all RGB colors except for certain one.
8141
8142 The filter accepts the following options:
8143
8144 @table @option
8145 @item color
8146 The color which will not be replaced with neutral gray.
8147
8148 @item similarity
8149 Similarity percentage with the above color.
8150 0.01 matches only the exact key color, while 1.0 matches everything.
8151
8152 @item blend
8153 Blend percentage. 0.0 makes pixels fully gray.
8154 Higher values result in more preserved color.
8155 @end table
8156
8157 @subsection Commands
8158 This filter supports same @ref{commands} as options.
8159 The command accepts the same syntax of the corresponding option.
8160
8161 If the specified expression is not valid, it is kept at its current
8162 value.
8163
8164 @section colorlevels
8165
8166 Adjust video input frames using levels.
8167
8168 The filter accepts the following options:
8169
8170 @table @option
8171 @item rimin
8172 @item gimin
8173 @item bimin
8174 @item aimin
8175 Adjust red, green, blue and alpha input black point.
8176 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8177
8178 @item rimax
8179 @item gimax
8180 @item bimax
8181 @item aimax
8182 Adjust red, green, blue and alpha input white point.
8183 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
8184
8185 Input levels are used to lighten highlights (bright tones), darken shadows
8186 (dark tones), change the balance of bright and dark tones.
8187
8188 @item romin
8189 @item gomin
8190 @item bomin
8191 @item aomin
8192 Adjust red, green, blue and alpha output black point.
8193 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
8194
8195 @item romax
8196 @item gomax
8197 @item bomax
8198 @item aomax
8199 Adjust red, green, blue and alpha output white point.
8200 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
8201
8202 Output levels allows manual selection of a constrained output level range.
8203 @end table
8204
8205 @subsection Examples
8206
8207 @itemize
8208 @item
8209 Make video output darker:
8210 @example
8211 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
8212 @end example
8213
8214 @item
8215 Increase contrast:
8216 @example
8217 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
8218 @end example
8219
8220 @item
8221 Make video output lighter:
8222 @example
8223 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
8224 @end example
8225
8226 @item
8227 Increase brightness:
8228 @example
8229 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
8230 @end example
8231 @end itemize
8232
8233 @subsection Commands
8234
8235 This filter supports the all above options as @ref{commands}.
8236
8237 @section colormatrix
8238
8239 Convert color matrix.
8240
8241 The filter accepts the following options:
8242
8243 @table @option
8244 @item src
8245 @item dst
8246 Specify the source and destination color matrix. Both values must be
8247 specified.
8248
8249 The accepted values are:
8250 @table @samp
8251 @item bt709
8252 BT.709
8253
8254 @item fcc
8255 FCC
8256
8257 @item bt601
8258 BT.601
8259
8260 @item bt470
8261 BT.470
8262
8263 @item bt470bg
8264 BT.470BG
8265
8266 @item smpte170m
8267 SMPTE-170M
8268
8269 @item smpte240m
8270 SMPTE-240M
8271
8272 @item bt2020
8273 BT.2020
8274 @end table
8275 @end table
8276
8277 For example to convert from BT.601 to SMPTE-240M, use the command:
8278 @example
8279 colormatrix=bt601:smpte240m
8280 @end example
8281
8282 @section colorspace
8283
8284 Convert colorspace, transfer characteristics or color primaries.
8285 Input video needs to have an even size.
8286
8287 The filter accepts the following options:
8288
8289 @table @option
8290 @anchor{all}
8291 @item all
8292 Specify all color properties at once.
8293
8294 The accepted values are:
8295 @table @samp
8296 @item bt470m
8297 BT.470M
8298
8299 @item bt470bg
8300 BT.470BG
8301
8302 @item bt601-6-525
8303 BT.601-6 525
8304
8305 @item bt601-6-625
8306 BT.601-6 625
8307
8308 @item bt709
8309 BT.709
8310
8311 @item smpte170m
8312 SMPTE-170M
8313
8314 @item smpte240m
8315 SMPTE-240M
8316
8317 @item bt2020
8318 BT.2020
8319
8320 @end table
8321
8322 @anchor{space}
8323 @item space
8324 Specify output colorspace.
8325
8326 The accepted values are:
8327 @table @samp
8328 @item bt709
8329 BT.709
8330
8331 @item fcc
8332 FCC
8333
8334 @item bt470bg
8335 BT.470BG or BT.601-6 625
8336
8337 @item smpte170m
8338 SMPTE-170M or BT.601-6 525
8339
8340 @item smpte240m
8341 SMPTE-240M
8342
8343 @item ycgco
8344 YCgCo
8345
8346 @item bt2020ncl
8347 BT.2020 with non-constant luminance
8348
8349 @end table
8350
8351 @anchor{trc}
8352 @item trc
8353 Specify output transfer characteristics.
8354
8355 The accepted values are:
8356 @table @samp
8357 @item bt709
8358 BT.709
8359
8360 @item bt470m
8361 BT.470M
8362
8363 @item bt470bg
8364 BT.470BG
8365
8366 @item gamma22
8367 Constant gamma of 2.2
8368
8369 @item gamma28
8370 Constant gamma of 2.8
8371
8372 @item smpte170m
8373 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8374
8375 @item smpte240m
8376 SMPTE-240M
8377
8378 @item srgb
8379 SRGB
8380
8381 @item iec61966-2-1
8382 iec61966-2-1
8383
8384 @item iec61966-2-4
8385 iec61966-2-4
8386
8387 @item xvycc
8388 xvycc
8389
8390 @item bt2020-10
8391 BT.2020 for 10-bits content
8392
8393 @item bt2020-12
8394 BT.2020 for 12-bits content
8395
8396 @end table
8397
8398 @anchor{primaries}
8399 @item primaries
8400 Specify output color primaries.
8401
8402 The accepted values are:
8403 @table @samp
8404 @item bt709
8405 BT.709
8406
8407 @item bt470m
8408 BT.470M
8409
8410 @item bt470bg
8411 BT.470BG or BT.601-6 625
8412
8413 @item smpte170m
8414 SMPTE-170M or BT.601-6 525
8415
8416 @item smpte240m
8417 SMPTE-240M
8418
8419 @item film
8420 film
8421
8422 @item smpte431
8423 SMPTE-431
8424
8425 @item smpte432
8426 SMPTE-432
8427
8428 @item bt2020
8429 BT.2020
8430
8431 @item jedec-p22
8432 JEDEC P22 phosphors
8433
8434 @end table
8435
8436 @anchor{range}
8437 @item range
8438 Specify output color range.
8439
8440 The accepted values are:
8441 @table @samp
8442 @item tv
8443 TV (restricted) range
8444
8445 @item mpeg
8446 MPEG (restricted) range
8447
8448 @item pc
8449 PC (full) range
8450
8451 @item jpeg
8452 JPEG (full) range
8453
8454 @end table
8455
8456 @item format
8457 Specify output color format.
8458
8459 The accepted values are:
8460 @table @samp
8461 @item yuv420p
8462 YUV 4:2:0 planar 8-bits
8463
8464 @item yuv420p10
8465 YUV 4:2:0 planar 10-bits
8466
8467 @item yuv420p12
8468 YUV 4:2:0 planar 12-bits
8469
8470 @item yuv422p
8471 YUV 4:2:2 planar 8-bits
8472
8473 @item yuv422p10
8474 YUV 4:2:2 planar 10-bits
8475
8476 @item yuv422p12
8477 YUV 4:2:2 planar 12-bits
8478
8479 @item yuv444p
8480 YUV 4:4:4 planar 8-bits
8481
8482 @item yuv444p10
8483 YUV 4:4:4 planar 10-bits
8484
8485 @item yuv444p12
8486 YUV 4:4:4 planar 12-bits
8487
8488 @end table
8489
8490 @item fast
8491 Do a fast conversion, which skips gamma/primary correction. This will take
8492 significantly less CPU, but will be mathematically incorrect. To get output
8493 compatible with that produced by the colormatrix filter, use fast=1.
8494
8495 @item dither
8496 Specify dithering mode.
8497
8498 The accepted values are:
8499 @table @samp
8500 @item none
8501 No dithering
8502
8503 @item fsb
8504 Floyd-Steinberg dithering
8505 @end table
8506
8507 @item wpadapt
8508 Whitepoint adaptation mode.
8509
8510 The accepted values are:
8511 @table @samp
8512 @item bradford
8513 Bradford whitepoint adaptation
8514
8515 @item vonkries
8516 von Kries whitepoint adaptation
8517
8518 @item identity
8519 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8520 @end table
8521
8522 @item iall
8523 Override all input properties at once. Same accepted values as @ref{all}.
8524
8525 @item ispace
8526 Override input colorspace. Same accepted values as @ref{space}.
8527
8528 @item iprimaries
8529 Override input color primaries. Same accepted values as @ref{primaries}.
8530
8531 @item itrc
8532 Override input transfer characteristics. Same accepted values as @ref{trc}.
8533
8534 @item irange
8535 Override input color range. Same accepted values as @ref{range}.
8536
8537 @end table
8538
8539 The filter converts the transfer characteristics, color space and color
8540 primaries to the specified user values. The output value, if not specified,
8541 is set to a default value based on the "all" property. If that property is
8542 also not specified, the filter will log an error. The output color range and
8543 format default to the same value as the input color range and format. The
8544 input transfer characteristics, color space, color primaries and color range
8545 should be set on the input data. If any of these are missing, the filter will
8546 log an error and no conversion will take place.
8547
8548 For example to convert the input to SMPTE-240M, use the command:
8549 @example
8550 colorspace=smpte240m
8551 @end example
8552
8553 @section colortemperature
8554 Adjust color temperature in video to simulate variations in ambient color temperature.
8555
8556 The filter accepts the following options:
8557
8558 @table @option
8559 @item temperature
8560 Set the temperature in Kelvin. Allowed range is from 1000 to 40000.
8561 Default value is 6500 K.
8562
8563 @item mix
8564 Set mixing with filtered output. Allowed range is from 0 to 1.
8565 Default value is 1.
8566
8567 @item pl
8568 Set the amount of preserving lightness. Allowed range is from 0 to 1.
8569 Default value is 0.
8570 @end table
8571
8572 @subsection Commands
8573 This filter supports same @ref{commands} as options.
8574
8575 @section convolution
8576
8577 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8578
8579 The filter accepts the following options:
8580
8581 @table @option
8582 @item 0m
8583 @item 1m
8584 @item 2m
8585 @item 3m
8586 Set matrix for each plane.
8587 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8588 and from 1 to 49 odd number of signed integers in @var{row} mode.
8589
8590 @item 0rdiv
8591 @item 1rdiv
8592 @item 2rdiv
8593 @item 3rdiv
8594 Set multiplier for calculated value for each plane.
8595 If unset or 0, it will be sum of all matrix elements.
8596
8597 @item 0bias
8598 @item 1bias
8599 @item 2bias
8600 @item 3bias
8601 Set bias for each plane. This value is added to the result of the multiplication.
8602 Useful for making the overall image brighter or darker. Default is 0.0.
8603
8604 @item 0mode
8605 @item 1mode
8606 @item 2mode
8607 @item 3mode
8608 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8609 Default is @var{square}.
8610 @end table
8611
8612 @subsection Commands
8613
8614 This filter supports the all above options as @ref{commands}.
8615
8616 @subsection Examples
8617
8618 @itemize
8619 @item
8620 Apply sharpen:
8621 @example
8622 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"
8623 @end example
8624
8625 @item
8626 Apply blur:
8627 @example
8628 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"
8629 @end example
8630
8631 @item
8632 Apply edge enhance:
8633 @example
8634 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"
8635 @end example
8636
8637 @item
8638 Apply edge detect:
8639 @example
8640 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"
8641 @end example
8642
8643 @item
8644 Apply laplacian edge detector which includes diagonals:
8645 @example
8646 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"
8647 @end example
8648
8649 @item
8650 Apply emboss:
8651 @example
8652 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"
8653 @end example
8654 @end itemize
8655
8656 @section convolve
8657
8658 Apply 2D convolution of video stream in frequency domain using second stream
8659 as impulse.
8660
8661 The filter accepts the following options:
8662
8663 @table @option
8664 @item planes
8665 Set which planes to process.
8666
8667 @item impulse
8668 Set which impulse video frames will be processed, can be @var{first}
8669 or @var{all}. Default is @var{all}.
8670 @end table
8671
8672 The @code{convolve} filter also supports the @ref{framesync} options.
8673
8674 @section copy
8675
8676 Copy the input video source unchanged to the output. This is mainly useful for
8677 testing purposes.
8678
8679 @anchor{coreimage}
8680 @section coreimage
8681 Video filtering on GPU using Apple's CoreImage API on OSX.
8682
8683 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8684 processed by video hardware. However, software-based OpenGL implementations
8685 exist which means there is no guarantee for hardware processing. It depends on
8686 the respective OSX.
8687
8688 There are many filters and image generators provided by Apple that come with a
8689 large variety of options. The filter has to be referenced by its name along
8690 with its options.
8691
8692 The coreimage filter accepts the following options:
8693 @table @option
8694 @item list_filters
8695 List all available filters and generators along with all their respective
8696 options as well as possible minimum and maximum values along with the default
8697 values.
8698 @example
8699 list_filters=true
8700 @end example
8701
8702 @item filter
8703 Specify all filters by their respective name and options.
8704 Use @var{list_filters} to determine all valid filter names and options.
8705 Numerical options are specified by a float value and are automatically clamped
8706 to their respective value range.  Vector and color options have to be specified
8707 by a list of space separated float values. Character escaping has to be done.
8708 A special option name @code{default} is available to use default options for a
8709 filter.
8710
8711 It is required to specify either @code{default} or at least one of the filter options.
8712 All omitted options are used with their default values.
8713 The syntax of the filter string is as follows:
8714 @example
8715 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8716 @end example
8717
8718 @item output_rect
8719 Specify a rectangle where the output of the filter chain is copied into the
8720 input image. It is given by a list of space separated float values:
8721 @example
8722 output_rect=x\ y\ width\ height
8723 @end example
8724 If not given, the output rectangle equals the dimensions of the input image.
8725 The output rectangle is automatically cropped at the borders of the input
8726 image. Negative values are valid for each component.
8727 @example
8728 output_rect=25\ 25\ 100\ 100
8729 @end example
8730 @end table
8731
8732 Several filters can be chained for successive processing without GPU-HOST
8733 transfers allowing for fast processing of complex filter chains.
8734 Currently, only filters with zero (generators) or exactly one (filters) input
8735 image and one output image are supported. Also, transition filters are not yet
8736 usable as intended.
8737
8738 Some filters generate output images with additional padding depending on the
8739 respective filter kernel. The padding is automatically removed to ensure the
8740 filter output has the same size as the input image.
8741
8742 For image generators, the size of the output image is determined by the
8743 previous output image of the filter chain or the input image of the whole
8744 filterchain, respectively. The generators do not use the pixel information of
8745 this image to generate their output. However, the generated output is
8746 blended onto this image, resulting in partial or complete coverage of the
8747 output image.
8748
8749 The @ref{coreimagesrc} video source can be used for generating input images
8750 which are directly fed into the filter chain. By using it, providing input
8751 images by another video source or an input video is not required.
8752
8753 @subsection Examples
8754
8755 @itemize
8756
8757 @item
8758 List all filters available:
8759 @example
8760 coreimage=list_filters=true
8761 @end example
8762
8763 @item
8764 Use the CIBoxBlur filter with default options to blur an image:
8765 @example
8766 coreimage=filter=CIBoxBlur@@default
8767 @end example
8768
8769 @item
8770 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8771 its center at 100x100 and a radius of 50 pixels:
8772 @example
8773 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8774 @end example
8775
8776 @item
8777 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8778 given as complete and escaped command-line for Apple's standard bash shell:
8779 @example
8780 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8781 @end example
8782 @end itemize
8783
8784 @section cover_rect
8785
8786 Cover a rectangular object
8787
8788 It accepts the following options:
8789
8790 @table @option
8791 @item cover
8792 Filepath of the optional cover image, needs to be in yuv420.
8793
8794 @item mode
8795 Set covering mode.
8796
8797 It accepts the following values:
8798 @table @samp
8799 @item cover
8800 cover it by the supplied image
8801 @item blur
8802 cover it by interpolating the surrounding pixels
8803 @end table
8804
8805 Default value is @var{blur}.
8806 @end table
8807
8808 @subsection Examples
8809
8810 @itemize
8811 @item
8812 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8813 @example
8814 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8815 @end example
8816 @end itemize
8817
8818 @section crop
8819
8820 Crop the input video to given dimensions.
8821
8822 It accepts the following parameters:
8823
8824 @table @option
8825 @item w, out_w
8826 The width of the output video. It defaults to @code{iw}.
8827 This expression is evaluated only once during the filter
8828 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8829
8830 @item h, out_h
8831 The height of the output video. It defaults to @code{ih}.
8832 This expression is evaluated only once during the filter
8833 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8834
8835 @item x
8836 The horizontal position, in the input video, of the left edge of the output
8837 video. It defaults to @code{(in_w-out_w)/2}.
8838 This expression is evaluated per-frame.
8839
8840 @item y
8841 The vertical position, in the input video, of the top edge of the output video.
8842 It defaults to @code{(in_h-out_h)/2}.
8843 This expression is evaluated per-frame.
8844
8845 @item keep_aspect
8846 If set to 1 will force the output display aspect ratio
8847 to be the same of the input, by changing the output sample aspect
8848 ratio. It defaults to 0.
8849
8850 @item exact
8851 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8852 width/height/x/y as specified and will not be rounded to nearest smaller value.
8853 It defaults to 0.
8854 @end table
8855
8856 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8857 expressions containing the following constants:
8858
8859 @table @option
8860 @item x
8861 @item y
8862 The computed values for @var{x} and @var{y}. They are evaluated for
8863 each new frame.
8864
8865 @item in_w
8866 @item in_h
8867 The input width and height.
8868
8869 @item iw
8870 @item ih
8871 These are the same as @var{in_w} and @var{in_h}.
8872
8873 @item out_w
8874 @item out_h
8875 The output (cropped) width and height.
8876
8877 @item ow
8878 @item oh
8879 These are the same as @var{out_w} and @var{out_h}.
8880
8881 @item a
8882 same as @var{iw} / @var{ih}
8883
8884 @item sar
8885 input sample aspect ratio
8886
8887 @item dar
8888 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8889
8890 @item hsub
8891 @item vsub
8892 horizontal and vertical chroma subsample values. For example for the
8893 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8894
8895 @item n
8896 The number of the input frame, starting from 0.
8897
8898 @item pos
8899 the position in the file of the input frame, NAN if unknown
8900
8901 @item t
8902 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8903
8904 @end table
8905
8906 The expression for @var{out_w} may depend on the value of @var{out_h},
8907 and the expression for @var{out_h} may depend on @var{out_w}, but they
8908 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8909 evaluated after @var{out_w} and @var{out_h}.
8910
8911 The @var{x} and @var{y} parameters specify the expressions for the
8912 position of the top-left corner of the output (non-cropped) area. They
8913 are evaluated for each frame. If the evaluated value is not valid, it
8914 is approximated to the nearest valid value.
8915
8916 The expression for @var{x} may depend on @var{y}, and the expression
8917 for @var{y} may depend on @var{x}.
8918
8919 @subsection Examples
8920
8921 @itemize
8922 @item
8923 Crop area with size 100x100 at position (12,34).
8924 @example
8925 crop=100:100:12:34
8926 @end example
8927
8928 Using named options, the example above becomes:
8929 @example
8930 crop=w=100:h=100:x=12:y=34
8931 @end example
8932
8933 @item
8934 Crop the central input area with size 100x100:
8935 @example
8936 crop=100:100
8937 @end example
8938
8939 @item
8940 Crop the central input area with size 2/3 of the input video:
8941 @example
8942 crop=2/3*in_w:2/3*in_h
8943 @end example
8944
8945 @item
8946 Crop the input video central square:
8947 @example
8948 crop=out_w=in_h
8949 crop=in_h
8950 @end example
8951
8952 @item
8953 Delimit the rectangle with the top-left corner placed at position
8954 100:100 and the right-bottom corner corresponding to the right-bottom
8955 corner of the input image.
8956 @example
8957 crop=in_w-100:in_h-100:100:100
8958 @end example
8959
8960 @item
8961 Crop 10 pixels from the left and right borders, and 20 pixels from
8962 the top and bottom borders
8963 @example
8964 crop=in_w-2*10:in_h-2*20
8965 @end example
8966
8967 @item
8968 Keep only the bottom right quarter of the input image:
8969 @example
8970 crop=in_w/2:in_h/2:in_w/2:in_h/2
8971 @end example
8972
8973 @item
8974 Crop height for getting Greek harmony:
8975 @example
8976 crop=in_w:1/PHI*in_w
8977 @end example
8978
8979 @item
8980 Apply trembling effect:
8981 @example
8982 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)
8983 @end example
8984
8985 @item
8986 Apply erratic camera effect depending on timestamp:
8987 @example
8988 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)"
8989 @end example
8990
8991 @item
8992 Set x depending on the value of y:
8993 @example
8994 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8995 @end example
8996 @end itemize
8997
8998 @subsection Commands
8999
9000 This filter supports the following commands:
9001 @table @option
9002 @item w, out_w
9003 @item h, out_h
9004 @item x
9005 @item y
9006 Set width/height of the output video and the horizontal/vertical position
9007 in the input video.
9008 The command accepts the same syntax of the corresponding option.
9009
9010 If the specified expression is not valid, it is kept at its current
9011 value.
9012 @end table
9013
9014 @section cropdetect
9015
9016 Auto-detect the crop size.
9017
9018 It calculates the necessary cropping parameters and prints the
9019 recommended parameters via the logging system. The detected dimensions
9020 correspond to the non-black area of the input video.
9021
9022 It accepts the following parameters:
9023
9024 @table @option
9025
9026 @item limit
9027 Set higher black value threshold, which can be optionally specified
9028 from nothing (0) to everything (255 for 8-bit based formats). An intensity
9029 value greater to the set value is considered non-black. It defaults to 24.
9030 You can also specify a value between 0.0 and 1.0 which will be scaled depending
9031 on the bitdepth of the pixel format.
9032
9033 @item round
9034 The value which the width/height should be divisible by. It defaults to
9035 16. The offset is automatically adjusted to center the video. Use 2 to
9036 get only even dimensions (needed for 4:2:2 video). 16 is best when
9037 encoding to most video codecs.
9038
9039 @item skip
9040 Set the number of initial frames for which evaluation is skipped.
9041 Default is 2. Range is 0 to INT_MAX.
9042
9043 @item reset_count, reset
9044 Set the counter that determines after how many frames cropdetect will
9045 reset the previously detected largest video area and start over to
9046 detect the current optimal crop area. Default value is 0.
9047
9048 This can be useful when channel logos distort the video area. 0
9049 indicates 'never reset', and returns the largest area encountered during
9050 playback.
9051 @end table
9052
9053 @anchor{cue}
9054 @section cue
9055
9056 Delay video filtering until a given wallclock timestamp. The filter first
9057 passes on @option{preroll} amount of frames, then it buffers at most
9058 @option{buffer} amount of frames and waits for the cue. After reaching the cue
9059 it forwards the buffered frames and also any subsequent frames coming in its
9060 input.
9061
9062 The filter can be used synchronize the output of multiple ffmpeg processes for
9063 realtime output devices like decklink. By putting the delay in the filtering
9064 chain and pre-buffering frames the process can pass on data to output almost
9065 immediately after the target wallclock timestamp is reached.
9066
9067 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
9068 some use cases.
9069
9070 @table @option
9071
9072 @item cue
9073 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
9074
9075 @item preroll
9076 The duration of content to pass on as preroll expressed in seconds. Default is 0.
9077
9078 @item buffer
9079 The maximum duration of content to buffer before waiting for the cue expressed
9080 in seconds. Default is 0.
9081
9082 @end table
9083
9084 @anchor{curves}
9085 @section curves
9086
9087 Apply color adjustments using curves.
9088
9089 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
9090 component (red, green and blue) has its values defined by @var{N} key points
9091 tied from each other using a smooth curve. The x-axis represents the pixel
9092 values from the input frame, and the y-axis the new pixel values to be set for
9093 the output frame.
9094
9095 By default, a component curve is defined by the two points @var{(0;0)} and
9096 @var{(1;1)}. This creates a straight line where each original pixel value is
9097 "adjusted" to its own value, which means no change to the image.
9098
9099 The filter allows you to redefine these two points and add some more. A new
9100 curve (using a natural cubic spline interpolation) will be define to pass
9101 smoothly through all these new coordinates. The new defined points needs to be
9102 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
9103 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
9104 the vector spaces, the values will be clipped accordingly.
9105
9106 The filter accepts the following options:
9107
9108 @table @option
9109 @item preset
9110 Select one of the available color presets. This option can be used in addition
9111 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
9112 options takes priority on the preset values.
9113 Available presets are:
9114 @table @samp
9115 @item none
9116 @item color_negative
9117 @item cross_process
9118 @item darker
9119 @item increase_contrast
9120 @item lighter
9121 @item linear_contrast
9122 @item medium_contrast
9123 @item negative
9124 @item strong_contrast
9125 @item vintage
9126 @end table
9127 Default is @code{none}.
9128 @item master, m
9129 Set the master key points. These points will define a second pass mapping. It
9130 is sometimes called a "luminance" or "value" mapping. It can be used with
9131 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
9132 post-processing LUT.
9133 @item red, r
9134 Set the key points for the red component.
9135 @item green, g
9136 Set the key points for the green component.
9137 @item blue, b
9138 Set the key points for the blue component.
9139 @item all
9140 Set the key points for all components (not including master).
9141 Can be used in addition to the other key points component
9142 options. In this case, the unset component(s) will fallback on this
9143 @option{all} setting.
9144 @item psfile
9145 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
9146 @item plot
9147 Save Gnuplot script of the curves in specified file.
9148 @end table
9149
9150 To avoid some filtergraph syntax conflicts, each key points list need to be
9151 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
9152
9153 @subsection Examples
9154
9155 @itemize
9156 @item
9157 Increase slightly the middle level of blue:
9158 @example
9159 curves=blue='0/0 0.5/0.58 1/1'
9160 @end example
9161
9162 @item
9163 Vintage effect:
9164 @example
9165 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'
9166 @end example
9167 Here we obtain the following coordinates for each components:
9168 @table @var
9169 @item red
9170 @code{(0;0.11) (0.42;0.51) (1;0.95)}
9171 @item green
9172 @code{(0;0) (0.50;0.48) (1;1)}
9173 @item blue
9174 @code{(0;0.22) (0.49;0.44) (1;0.80)}
9175 @end table
9176
9177 @item
9178 The previous example can also be achieved with the associated built-in preset:
9179 @example
9180 curves=preset=vintage
9181 @end example
9182
9183 @item
9184 Or simply:
9185 @example
9186 curves=vintage
9187 @end example
9188
9189 @item
9190 Use a Photoshop preset and redefine the points of the green component:
9191 @example
9192 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
9193 @end example
9194
9195 @item
9196 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
9197 and @command{gnuplot}:
9198 @example
9199 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
9200 gnuplot -p /tmp/curves.plt
9201 @end example
9202 @end itemize
9203
9204 @section datascope
9205
9206 Video data analysis filter.
9207
9208 This filter shows hexadecimal pixel values of part of video.
9209
9210 The filter accepts the following options:
9211
9212 @table @option
9213 @item size, s
9214 Set output video size.
9215
9216 @item x
9217 Set x offset from where to pick pixels.
9218
9219 @item y
9220 Set y offset from where to pick pixels.
9221
9222 @item mode
9223 Set scope mode, can be one of the following:
9224 @table @samp
9225 @item mono
9226 Draw hexadecimal pixel values with white color on black background.
9227
9228 @item color
9229 Draw hexadecimal pixel values with input video pixel color on black
9230 background.
9231
9232 @item color2
9233 Draw hexadecimal pixel values on color background picked from input video,
9234 the text color is picked in such way so its always visible.
9235 @end table
9236
9237 @item axis
9238 Draw rows and columns numbers on left and top of video.
9239
9240 @item opacity
9241 Set background opacity.
9242
9243 @item format
9244 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
9245
9246 @item components
9247 Set pixel components to display. By default all pixel components are displayed.
9248 @end table
9249
9250 @section dblur
9251 Apply Directional blur filter.
9252
9253 The filter accepts the following options:
9254
9255 @table @option
9256 @item angle
9257 Set angle of directional blur. Default is @code{45}.
9258
9259 @item radius
9260 Set radius of directional blur. Default is @code{5}.
9261
9262 @item planes
9263 Set which planes to filter. By default all planes are filtered.
9264 @end table
9265
9266 @subsection Commands
9267 This filter supports same @ref{commands} as options.
9268 The command accepts the same syntax of the corresponding option.
9269
9270 If the specified expression is not valid, it is kept at its current
9271 value.
9272
9273 @section dctdnoiz
9274
9275 Denoise frames using 2D DCT (frequency domain filtering).
9276
9277 This filter is not designed for real time.
9278
9279 The filter accepts the following options:
9280
9281 @table @option
9282 @item sigma, s
9283 Set the noise sigma constant.
9284
9285 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
9286 coefficient (absolute value) below this threshold with be dropped.
9287
9288 If you need a more advanced filtering, see @option{expr}.
9289
9290 Default is @code{0}.
9291
9292 @item overlap
9293 Set number overlapping pixels for each block. Since the filter can be slow, you
9294 may want to reduce this value, at the cost of a less effective filter and the
9295 risk of various artefacts.
9296
9297 If the overlapping value doesn't permit processing the whole input width or
9298 height, a warning will be displayed and according borders won't be denoised.
9299
9300 Default value is @var{blocksize}-1, which is the best possible setting.
9301
9302 @item expr, e
9303 Set the coefficient factor expression.
9304
9305 For each coefficient of a DCT block, this expression will be evaluated as a
9306 multiplier value for the coefficient.
9307
9308 If this is option is set, the @option{sigma} option will be ignored.
9309
9310 The absolute value of the coefficient can be accessed through the @var{c}
9311 variable.
9312
9313 @item n
9314 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
9315 @var{blocksize}, which is the width and height of the processed blocks.
9316
9317 The default value is @var{3} (8x8) and can be raised to @var{4} for a
9318 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
9319 on the speed processing. Also, a larger block size does not necessarily means a
9320 better de-noising.
9321 @end table
9322
9323 @subsection Examples
9324
9325 Apply a denoise with a @option{sigma} of @code{4.5}:
9326 @example
9327 dctdnoiz=4.5
9328 @end example
9329
9330 The same operation can be achieved using the expression system:
9331 @example
9332 dctdnoiz=e='gte(c, 4.5*3)'
9333 @end example
9334
9335 Violent denoise using a block size of @code{16x16}:
9336 @example
9337 dctdnoiz=15:n=4
9338 @end example
9339
9340 @section deband
9341
9342 Remove banding artifacts from input video.
9343 It works by replacing banded pixels with average value of referenced pixels.
9344
9345 The filter accepts the following options:
9346
9347 @table @option
9348 @item 1thr
9349 @item 2thr
9350 @item 3thr
9351 @item 4thr
9352 Set banding detection threshold for each plane. Default is 0.02.
9353 Valid range is 0.00003 to 0.5.
9354 If difference between current pixel and reference pixel is less than threshold,
9355 it will be considered as banded.
9356
9357 @item range, r
9358 Banding detection range in pixels. Default is 16. If positive, random number
9359 in range 0 to set value will be used. If negative, exact absolute value
9360 will be used.
9361 The range defines square of four pixels around current pixel.
9362
9363 @item direction, d
9364 Set direction in radians from which four pixel will be compared. If positive,
9365 random direction from 0 to set direction will be picked. If negative, exact of
9366 absolute value will be picked. For example direction 0, -PI or -2*PI radians
9367 will pick only pixels on same row and -PI/2 will pick only pixels on same
9368 column.
9369
9370 @item blur, b
9371 If enabled, current pixel is compared with average value of all four
9372 surrounding pixels. The default is enabled. If disabled current pixel is
9373 compared with all four surrounding pixels. The pixel is considered banded
9374 if only all four differences with surrounding pixels are less than threshold.
9375
9376 @item coupling, c
9377 If enabled, current pixel is changed if and only if all pixel components are banded,
9378 e.g. banding detection threshold is triggered for all color components.
9379 The default is disabled.
9380 @end table
9381
9382 @section deblock
9383
9384 Remove blocking artifacts from input video.
9385
9386 The filter accepts the following options:
9387
9388 @table @option
9389 @item filter
9390 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9391 This controls what kind of deblocking is applied.
9392
9393 @item block
9394 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9395
9396 @item alpha
9397 @item beta
9398 @item gamma
9399 @item delta
9400 Set blocking detection thresholds. Allowed range is 0 to 1.
9401 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9402 Using higher threshold gives more deblocking strength.
9403 Setting @var{alpha} controls threshold detection at exact edge of block.
9404 Remaining options controls threshold detection near the edge. Each one for
9405 below/above or left/right. Setting any of those to @var{0} disables
9406 deblocking.
9407
9408 @item planes
9409 Set planes to filter. Default is to filter all available planes.
9410 @end table
9411
9412 @subsection Examples
9413
9414 @itemize
9415 @item
9416 Deblock using weak filter and block size of 4 pixels.
9417 @example
9418 deblock=filter=weak:block=4
9419 @end example
9420
9421 @item
9422 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9423 deblocking more edges.
9424 @example
9425 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9426 @end example
9427
9428 @item
9429 Similar as above, but filter only first plane.
9430 @example
9431 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9432 @end example
9433
9434 @item
9435 Similar as above, but filter only second and third plane.
9436 @example
9437 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9438 @end example
9439 @end itemize
9440
9441 @anchor{decimate}
9442 @section decimate
9443
9444 Drop duplicated frames at regular intervals.
9445
9446 The filter accepts the following options:
9447
9448 @table @option
9449 @item cycle
9450 Set the number of frames from which one will be dropped. Setting this to
9451 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9452 Default is @code{5}.
9453
9454 @item dupthresh
9455 Set the threshold for duplicate detection. If the difference metric for a frame
9456 is less than or equal to this value, then it is declared as duplicate. Default
9457 is @code{1.1}
9458
9459 @item scthresh
9460 Set scene change threshold. Default is @code{15}.
9461
9462 @item blockx
9463 @item blocky
9464 Set the size of the x and y-axis blocks used during metric calculations.
9465 Larger blocks give better noise suppression, but also give worse detection of
9466 small movements. Must be a power of two. Default is @code{32}.
9467
9468 @item ppsrc
9469 Mark main input as a pre-processed input and activate clean source input
9470 stream. This allows the input to be pre-processed with various filters to help
9471 the metrics calculation while keeping the frame selection lossless. When set to
9472 @code{1}, the first stream is for the pre-processed input, and the second
9473 stream is the clean source from where the kept frames are chosen. Default is
9474 @code{0}.
9475
9476 @item chroma
9477 Set whether or not chroma is considered in the metric calculations. Default is
9478 @code{1}.
9479 @end table
9480
9481 @section deconvolve
9482
9483 Apply 2D deconvolution of video stream in frequency domain using second stream
9484 as impulse.
9485
9486 The filter accepts the following options:
9487
9488 @table @option
9489 @item planes
9490 Set which planes to process.
9491
9492 @item impulse
9493 Set which impulse video frames will be processed, can be @var{first}
9494 or @var{all}. Default is @var{all}.
9495
9496 @item noise
9497 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9498 and height are not same and not power of 2 or if stream prior to convolving
9499 had noise.
9500 @end table
9501
9502 The @code{deconvolve} filter also supports the @ref{framesync} options.
9503
9504 @section dedot
9505
9506 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9507
9508 It accepts the following options:
9509
9510 @table @option
9511 @item m
9512 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9513 @var{rainbows} for cross-color reduction.
9514
9515 @item lt
9516 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9517
9518 @item tl
9519 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9520
9521 @item tc
9522 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9523
9524 @item ct
9525 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9526 @end table
9527
9528 @section deflate
9529
9530 Apply deflate effect to the video.
9531
9532 This filter replaces the pixel by the local(3x3) average by taking into account
9533 only values lower than the pixel.
9534
9535 It accepts the following options:
9536
9537 @table @option
9538 @item threshold0
9539 @item threshold1
9540 @item threshold2
9541 @item threshold3
9542 Limit the maximum change for each plane, default is 65535.
9543 If 0, plane will remain unchanged.
9544 @end table
9545
9546 @subsection Commands
9547
9548 This filter supports the all above options as @ref{commands}.
9549
9550 @section deflicker
9551
9552 Remove temporal frame luminance variations.
9553
9554 It accepts the following options:
9555
9556 @table @option
9557 @item size, s
9558 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9559
9560 @item mode, m
9561 Set averaging mode to smooth temporal luminance variations.
9562
9563 Available values are:
9564 @table @samp
9565 @item am
9566 Arithmetic mean
9567
9568 @item gm
9569 Geometric mean
9570
9571 @item hm
9572 Harmonic mean
9573
9574 @item qm
9575 Quadratic mean
9576
9577 @item cm
9578 Cubic mean
9579
9580 @item pm
9581 Power mean
9582
9583 @item median
9584 Median
9585 @end table
9586
9587 @item bypass
9588 Do not actually modify frame. Useful when one only wants metadata.
9589 @end table
9590
9591 @section dejudder
9592
9593 Remove judder produced by partially interlaced telecined content.
9594
9595 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9596 source was partially telecined content then the output of @code{pullup,dejudder}
9597 will have a variable frame rate. May change the recorded frame rate of the
9598 container. Aside from that change, this filter will not affect constant frame
9599 rate video.
9600
9601 The option available in this filter is:
9602 @table @option
9603
9604 @item cycle
9605 Specify the length of the window over which the judder repeats.
9606
9607 Accepts any integer greater than 1. Useful values are:
9608 @table @samp
9609
9610 @item 4
9611 If the original was telecined from 24 to 30 fps (Film to NTSC).
9612
9613 @item 5
9614 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9615
9616 @item 20
9617 If a mixture of the two.
9618 @end table
9619
9620 The default is @samp{4}.
9621 @end table
9622
9623 @section delogo
9624
9625 Suppress a TV station logo by a simple interpolation of the surrounding
9626 pixels. Just set a rectangle covering the logo and watch it disappear
9627 (and sometimes something even uglier appear - your mileage may vary).
9628
9629 It accepts the following parameters:
9630 @table @option
9631
9632 @item x
9633 @item y
9634 Specify the top left corner coordinates of the logo. They must be
9635 specified.
9636
9637 @item w
9638 @item h
9639 Specify the width and height of the logo to clear. They must be
9640 specified.
9641
9642 @item band, t
9643 Specify the thickness of the fuzzy edge of the rectangle (added to
9644 @var{w} and @var{h}). The default value is 1. This option is
9645 deprecated, setting higher values should no longer be necessary and
9646 is not recommended.
9647
9648 @item show
9649 When set to 1, a green rectangle is drawn on the screen to simplify
9650 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9651 The default value is 0.
9652
9653 The rectangle is drawn on the outermost pixels which will be (partly)
9654 replaced with interpolated values. The values of the next pixels
9655 immediately outside this rectangle in each direction will be used to
9656 compute the interpolated pixel values inside the rectangle.
9657
9658 @end table
9659
9660 @subsection Examples
9661
9662 @itemize
9663 @item
9664 Set a rectangle covering the area with top left corner coordinates 0,0
9665 and size 100x77, and a band of size 10:
9666 @example
9667 delogo=x=0:y=0:w=100:h=77:band=10
9668 @end example
9669
9670 @end itemize
9671
9672 @anchor{derain}
9673 @section derain
9674
9675 Remove the rain in the input image/video by applying the derain methods based on
9676 convolutional neural networks. Supported models:
9677
9678 @itemize
9679 @item
9680 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9681 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9682 @end itemize
9683
9684 Training as well as model generation scripts are provided in
9685 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9686
9687 Native model files (.model) can be generated from TensorFlow model
9688 files (.pb) by using tools/python/convert.py
9689
9690 The filter accepts the following options:
9691
9692 @table @option
9693 @item filter_type
9694 Specify which filter to use. This option accepts the following values:
9695
9696 @table @samp
9697 @item derain
9698 Derain filter. To conduct derain filter, you need to use a derain model.
9699
9700 @item dehaze
9701 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9702 @end table
9703 Default value is @samp{derain}.
9704
9705 @item dnn_backend
9706 Specify which DNN backend to use for model loading and execution. This option accepts
9707 the following values:
9708
9709 @table @samp
9710 @item native
9711 Native implementation of DNN loading and execution.
9712
9713 @item tensorflow
9714 TensorFlow backend. To enable this backend you
9715 need to install the TensorFlow for C library (see
9716 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9717 @code{--enable-libtensorflow}
9718 @end table
9719 Default value is @samp{native}.
9720
9721 @item model
9722 Set path to model file specifying network architecture and its parameters.
9723 Note that different backends use different file formats. TensorFlow and native
9724 backend can load files for only its format.
9725 @end table
9726
9727 It can also be finished with @ref{dnn_processing} filter.
9728
9729 @section deshake
9730
9731 Attempt to fix small changes in horizontal and/or vertical shift. This
9732 filter helps remove camera shake from hand-holding a camera, bumping a
9733 tripod, moving on a vehicle, etc.
9734
9735 The filter accepts the following options:
9736
9737 @table @option
9738
9739 @item x
9740 @item y
9741 @item w
9742 @item h
9743 Specify a rectangular area where to limit the search for motion
9744 vectors.
9745 If desired the search for motion vectors can be limited to a
9746 rectangular area of the frame defined by its top left corner, width
9747 and height. These parameters have the same meaning as the drawbox
9748 filter which can be used to visualise the position of the bounding
9749 box.
9750
9751 This is useful when simultaneous movement of subjects within the frame
9752 might be confused for camera motion by the motion vector search.
9753
9754 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9755 then the full frame is used. This allows later options to be set
9756 without specifying the bounding box for the motion vector search.
9757
9758 Default - search the whole frame.
9759
9760 @item rx
9761 @item ry
9762 Specify the maximum extent of movement in x and y directions in the
9763 range 0-64 pixels. Default 16.
9764
9765 @item edge
9766 Specify how to generate pixels to fill blanks at the edge of the
9767 frame. Available values are:
9768 @table @samp
9769 @item blank, 0
9770 Fill zeroes at blank locations
9771 @item original, 1
9772 Original image at blank locations
9773 @item clamp, 2
9774 Extruded edge value at blank locations
9775 @item mirror, 3
9776 Mirrored edge at blank locations
9777 @end table
9778 Default value is @samp{mirror}.
9779
9780 @item blocksize
9781 Specify the blocksize to use for motion search. Range 4-128 pixels,
9782 default 8.
9783
9784 @item contrast
9785 Specify the contrast threshold for blocks. Only blocks with more than
9786 the specified contrast (difference between darkest and lightest
9787 pixels) will be considered. Range 1-255, default 125.
9788
9789 @item search
9790 Specify the search strategy. Available values are:
9791 @table @samp
9792 @item exhaustive, 0
9793 Set exhaustive search
9794 @item less, 1
9795 Set less exhaustive search.
9796 @end table
9797 Default value is @samp{exhaustive}.
9798
9799 @item filename
9800 If set then a detailed log of the motion search is written to the
9801 specified file.
9802
9803 @end table
9804
9805 @section despill
9806
9807 Remove unwanted contamination of foreground colors, caused by reflected color of
9808 greenscreen or bluescreen.
9809
9810 This filter accepts the following options:
9811
9812 @table @option
9813 @item type
9814 Set what type of despill to use.
9815
9816 @item mix
9817 Set how spillmap will be generated.
9818
9819 @item expand
9820 Set how much to get rid of still remaining spill.
9821
9822 @item red
9823 Controls amount of red in spill area.
9824
9825 @item green
9826 Controls amount of green in spill area.
9827 Should be -1 for greenscreen.
9828
9829 @item blue
9830 Controls amount of blue in spill area.
9831 Should be -1 for bluescreen.
9832
9833 @item brightness
9834 Controls brightness of spill area, preserving colors.
9835
9836 @item alpha
9837 Modify alpha from generated spillmap.
9838 @end table
9839
9840 @subsection Commands
9841
9842 This filter supports the all above options as @ref{commands}.
9843
9844 @section detelecine
9845
9846 Apply an exact inverse of the telecine operation. It requires a predefined
9847 pattern specified using the pattern option which must be the same as that passed
9848 to the telecine filter.
9849
9850 This filter accepts the following options:
9851
9852 @table @option
9853 @item first_field
9854 @table @samp
9855 @item top, t
9856 top field first
9857 @item bottom, b
9858 bottom field first
9859 The default value is @code{top}.
9860 @end table
9861
9862 @item pattern
9863 A string of numbers representing the pulldown pattern you wish to apply.
9864 The default value is @code{23}.
9865
9866 @item start_frame
9867 A number representing position of the first frame with respect to the telecine
9868 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9869 @end table
9870
9871 @section dilation
9872
9873 Apply dilation effect to the video.
9874
9875 This filter replaces the pixel by the local(3x3) maximum.
9876
9877 It accepts the following options:
9878
9879 @table @option
9880 @item threshold0
9881 @item threshold1
9882 @item threshold2
9883 @item threshold3
9884 Limit the maximum change for each plane, default is 65535.
9885 If 0, plane will remain unchanged.
9886
9887 @item coordinates
9888 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9889 pixels are used.
9890
9891 Flags to local 3x3 coordinates maps like this:
9892
9893     1 2 3
9894     4   5
9895     6 7 8
9896 @end table
9897
9898 @subsection Commands
9899
9900 This filter supports the all above options as @ref{commands}.
9901
9902 @section displace
9903
9904 Displace pixels as indicated by second and third input stream.
9905
9906 It takes three input streams and outputs one stream, the first input is the
9907 source, and second and third input are displacement maps.
9908
9909 The second input specifies how much to displace pixels along the
9910 x-axis, while the third input specifies how much to displace pixels
9911 along the y-axis.
9912 If one of displacement map streams terminates, last frame from that
9913 displacement map will be used.
9914
9915 Note that once generated, displacements maps can be reused over and over again.
9916
9917 A description of the accepted options follows.
9918
9919 @table @option
9920 @item edge
9921 Set displace behavior for pixels that are out of range.
9922
9923 Available values are:
9924 @table @samp
9925 @item blank
9926 Missing pixels are replaced by black pixels.
9927
9928 @item smear
9929 Adjacent pixels will spread out to replace missing pixels.
9930
9931 @item wrap
9932 Out of range pixels are wrapped so they point to pixels of other side.
9933
9934 @item mirror
9935 Out of range pixels will be replaced with mirrored pixels.
9936 @end table
9937 Default is @samp{smear}.
9938
9939 @end table
9940
9941 @subsection Examples
9942
9943 @itemize
9944 @item
9945 Add ripple effect to rgb input of video size hd720:
9946 @example
9947 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
9948 @end example
9949
9950 @item
9951 Add wave effect to rgb input of video size hd720:
9952 @example
9953 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
9954 @end example
9955 @end itemize
9956
9957 @anchor{dnn_processing}
9958 @section dnn_processing
9959
9960 Do image processing with deep neural networks. It works together with another filter
9961 which converts the pixel format of the Frame to what the dnn network requires.
9962
9963 The filter accepts the following options:
9964
9965 @table @option
9966 @item dnn_backend
9967 Specify which DNN backend to use for model loading and execution. This option accepts
9968 the following values:
9969
9970 @table @samp
9971 @item native
9972 Native implementation of DNN loading and execution.
9973
9974 @item tensorflow
9975 TensorFlow backend. To enable this backend you
9976 need to install the TensorFlow for C library (see
9977 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9978 @code{--enable-libtensorflow}
9979
9980 @item openvino
9981 OpenVINO backend. To enable this backend you
9982 need to build and install the OpenVINO for C library (see
9983 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
9984 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
9985 be needed if the header files and libraries are not installed into system path)
9986
9987 @end table
9988
9989 Default value is @samp{native}.
9990
9991 @item model
9992 Set path to model file specifying network architecture and its parameters.
9993 Note that different backends use different file formats. TensorFlow, OpenVINO and native
9994 backend can load files for only its format.
9995
9996 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9997
9998 @item input
9999 Set the input name of the dnn network.
10000
10001 @item output
10002 Set the output name of the dnn network.
10003
10004 @item async
10005 use DNN async execution if set (default: set),
10006 roll back to sync execution if the backend does not support async.
10007
10008 @end table
10009
10010 @subsection Examples
10011
10012 @itemize
10013 @item
10014 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
10015 @example
10016 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
10017 @end example
10018
10019 @item
10020 Halve the pixel value of the frame with format gray32f:
10021 @example
10022 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
10023 @end example
10024
10025 @item
10026 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
10027 @example
10028 ./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
10029 @end example
10030
10031 @item
10032 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
10033 @example
10034 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
10035 @end example
10036
10037 @end itemize
10038
10039 @section drawbox
10040
10041 Draw a colored box on the input image.
10042
10043 It accepts the following parameters:
10044
10045 @table @option
10046 @item x
10047 @item y
10048 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
10049
10050 @item width, w
10051 @item height, h
10052 The expressions which specify the width and height of the box; if 0 they are interpreted as
10053 the input width and height. It defaults to 0.
10054
10055 @item color, c
10056 Specify the color of the box to write. For the general syntax of this option,
10057 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10058 value @code{invert} is used, the box edge color is the same as the
10059 video with inverted luma.
10060
10061 @item thickness, t
10062 The expression which sets the thickness of the box edge.
10063 A value of @code{fill} will create a filled box. Default value is @code{3}.
10064
10065 See below for the list of accepted constants.
10066
10067 @item replace
10068 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
10069 will overwrite the video's color and alpha pixels.
10070 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
10071 @end table
10072
10073 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10074 following constants:
10075
10076 @table @option
10077 @item dar
10078 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10079
10080 @item hsub
10081 @item vsub
10082 horizontal and vertical chroma subsample values. For example for the
10083 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10084
10085 @item in_h, ih
10086 @item in_w, iw
10087 The input width and height.
10088
10089 @item sar
10090 The input sample aspect ratio.
10091
10092 @item x
10093 @item y
10094 The x and y offset coordinates where the box is drawn.
10095
10096 @item w
10097 @item h
10098 The width and height of the drawn box.
10099
10100 @item t
10101 The thickness of the drawn box.
10102
10103 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10104 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10105
10106 @end table
10107
10108 @subsection Examples
10109
10110 @itemize
10111 @item
10112 Draw a black box around the edge of the input image:
10113 @example
10114 drawbox
10115 @end example
10116
10117 @item
10118 Draw a box with color red and an opacity of 50%:
10119 @example
10120 drawbox=10:20:200:60:red@@0.5
10121 @end example
10122
10123 The previous example can be specified as:
10124 @example
10125 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
10126 @end example
10127
10128 @item
10129 Fill the box with pink color:
10130 @example
10131 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
10132 @end example
10133
10134 @item
10135 Draw a 2-pixel red 2.40:1 mask:
10136 @example
10137 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
10138 @end example
10139 @end itemize
10140
10141 @subsection Commands
10142 This filter supports same commands as options.
10143 The command accepts the same syntax of the corresponding option.
10144
10145 If the specified expression is not valid, it is kept at its current
10146 value.
10147
10148 @anchor{drawgraph}
10149 @section drawgraph
10150 Draw a graph using input video metadata.
10151
10152 It accepts the following parameters:
10153
10154 @table @option
10155 @item m1
10156 Set 1st frame metadata key from which metadata values will be used to draw a graph.
10157
10158 @item fg1
10159 Set 1st foreground color expression.
10160
10161 @item m2
10162 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
10163
10164 @item fg2
10165 Set 2nd foreground color expression.
10166
10167 @item m3
10168 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
10169
10170 @item fg3
10171 Set 3rd foreground color expression.
10172
10173 @item m4
10174 Set 4th frame metadata key from which metadata values will be used to draw a graph.
10175
10176 @item fg4
10177 Set 4th foreground color expression.
10178
10179 @item min
10180 Set minimal value of metadata value.
10181
10182 @item max
10183 Set maximal value of metadata value.
10184
10185 @item bg
10186 Set graph background color. Default is white.
10187
10188 @item mode
10189 Set graph mode.
10190
10191 Available values for mode is:
10192 @table @samp
10193 @item bar
10194 @item dot
10195 @item line
10196 @end table
10197
10198 Default is @code{line}.
10199
10200 @item slide
10201 Set slide mode.
10202
10203 Available values for slide is:
10204 @table @samp
10205 @item frame
10206 Draw new frame when right border is reached.
10207
10208 @item replace
10209 Replace old columns with new ones.
10210
10211 @item scroll
10212 Scroll from right to left.
10213
10214 @item rscroll
10215 Scroll from left to right.
10216
10217 @item picture
10218 Draw single picture.
10219 @end table
10220
10221 Default is @code{frame}.
10222
10223 @item size
10224 Set size of graph video. For the syntax of this option, check the
10225 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10226 The default value is @code{900x256}.
10227
10228 @item rate, r
10229 Set the output frame rate. Default value is @code{25}.
10230
10231 The foreground color expressions can use the following variables:
10232 @table @option
10233 @item MIN
10234 Minimal value of metadata value.
10235
10236 @item MAX
10237 Maximal value of metadata value.
10238
10239 @item VAL
10240 Current metadata key value.
10241 @end table
10242
10243 The color is defined as 0xAABBGGRR.
10244 @end table
10245
10246 Example using metadata from @ref{signalstats} filter:
10247 @example
10248 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
10249 @end example
10250
10251 Example using metadata from @ref{ebur128} filter:
10252 @example
10253 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
10254 @end example
10255
10256 @section drawgrid
10257
10258 Draw a grid on the input image.
10259
10260 It accepts the following parameters:
10261
10262 @table @option
10263 @item x
10264 @item y
10265 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
10266
10267 @item width, w
10268 @item height, h
10269 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
10270 input width and height, respectively, minus @code{thickness}, so image gets
10271 framed. Default to 0.
10272
10273 @item color, c
10274 Specify the color of the grid. For the general syntax of this option,
10275 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10276 value @code{invert} is used, the grid color is the same as the
10277 video with inverted luma.
10278
10279 @item thickness, t
10280 The expression which sets the thickness of the grid line. Default value is @code{1}.
10281
10282 See below for the list of accepted constants.
10283
10284 @item replace
10285 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
10286 will overwrite the video's color and alpha pixels.
10287 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
10288 @end table
10289
10290 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10291 following constants:
10292
10293 @table @option
10294 @item dar
10295 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10296
10297 @item hsub
10298 @item vsub
10299 horizontal and vertical chroma subsample values. For example for the
10300 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10301
10302 @item in_h, ih
10303 @item in_w, iw
10304 The input grid cell width and height.
10305
10306 @item sar
10307 The input sample aspect ratio.
10308
10309 @item x
10310 @item y
10311 The x and y coordinates of some point of grid intersection (meant to configure offset).
10312
10313 @item w
10314 @item h
10315 The width and height of the drawn cell.
10316
10317 @item t
10318 The thickness of the drawn cell.
10319
10320 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10321 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10322
10323 @end table
10324
10325 @subsection Examples
10326
10327 @itemize
10328 @item
10329 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
10330 @example
10331 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
10332 @end example
10333
10334 @item
10335 Draw a white 3x3 grid with an opacity of 50%:
10336 @example
10337 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
10338 @end example
10339 @end itemize
10340
10341 @subsection Commands
10342 This filter supports same commands as options.
10343 The command accepts the same syntax of the corresponding option.
10344
10345 If the specified expression is not valid, it is kept at its current
10346 value.
10347
10348 @anchor{drawtext}
10349 @section drawtext
10350
10351 Draw a text string or text from a specified file on top of a video, using the
10352 libfreetype library.
10353
10354 To enable compilation of this filter, you need to configure FFmpeg with
10355 @code{--enable-libfreetype}.
10356 To enable default font fallback and the @var{font} option you need to
10357 configure FFmpeg with @code{--enable-libfontconfig}.
10358 To enable the @var{text_shaping} option, you need to configure FFmpeg with
10359 @code{--enable-libfribidi}.
10360
10361 @subsection Syntax
10362
10363 It accepts the following parameters:
10364
10365 @table @option
10366
10367 @item box
10368 Used to draw a box around text using the background color.
10369 The value must be either 1 (enable) or 0 (disable).
10370 The default value of @var{box} is 0.
10371
10372 @item boxborderw
10373 Set the width of the border to be drawn around the box using @var{boxcolor}.
10374 The default value of @var{boxborderw} is 0.
10375
10376 @item boxcolor
10377 The color to be used for drawing box around text. For the syntax of this
10378 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10379
10380 The default value of @var{boxcolor} is "white".
10381
10382 @item line_spacing
10383 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10384 The default value of @var{line_spacing} is 0.
10385
10386 @item borderw
10387 Set the width of the border to be drawn around the text using @var{bordercolor}.
10388 The default value of @var{borderw} is 0.
10389
10390 @item bordercolor
10391 Set the color to be used for drawing border around text. For the syntax of this
10392 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10393
10394 The default value of @var{bordercolor} is "black".
10395
10396 @item expansion
10397 Select how the @var{text} is expanded. Can be either @code{none},
10398 @code{strftime} (deprecated) or
10399 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10400 below for details.
10401
10402 @item basetime
10403 Set a start time for the count. Value is in microseconds. Only applied
10404 in the deprecated strftime expansion mode. To emulate in normal expansion
10405 mode use the @code{pts} function, supplying the start time (in seconds)
10406 as the second argument.
10407
10408 @item fix_bounds
10409 If true, check and fix text coords to avoid clipping.
10410
10411 @item fontcolor
10412 The color to be used for drawing fonts. For the syntax of this option, check
10413 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10414
10415 The default value of @var{fontcolor} is "black".
10416
10417 @item fontcolor_expr
10418 String which is expanded the same way as @var{text} to obtain dynamic
10419 @var{fontcolor} value. By default this option has empty value and is not
10420 processed. When this option is set, it overrides @var{fontcolor} option.
10421
10422 @item font
10423 The font family to be used for drawing text. By default Sans.
10424
10425 @item fontfile
10426 The font file to be used for drawing text. The path must be included.
10427 This parameter is mandatory if the fontconfig support is disabled.
10428
10429 @item alpha
10430 Draw the text applying alpha blending. The value can
10431 be a number between 0.0 and 1.0.
10432 The expression accepts the same variables @var{x, y} as well.
10433 The default value is 1.
10434 Please see @var{fontcolor_expr}.
10435
10436 @item fontsize
10437 The font size to be used for drawing text.
10438 The default value of @var{fontsize} is 16.
10439
10440 @item text_shaping
10441 If set to 1, attempt to shape the text (for example, reverse the order of
10442 right-to-left text and join Arabic characters) before drawing it.
10443 Otherwise, just draw the text exactly as given.
10444 By default 1 (if supported).
10445
10446 @item ft_load_flags
10447 The flags to be used for loading the fonts.
10448
10449 The flags map the corresponding flags supported by libfreetype, and are
10450 a combination of the following values:
10451 @table @var
10452 @item default
10453 @item no_scale
10454 @item no_hinting
10455 @item render
10456 @item no_bitmap
10457 @item vertical_layout
10458 @item force_autohint
10459 @item crop_bitmap
10460 @item pedantic
10461 @item ignore_global_advance_width
10462 @item no_recurse
10463 @item ignore_transform
10464 @item monochrome
10465 @item linear_design
10466 @item no_autohint
10467 @end table
10468
10469 Default value is "default".
10470
10471 For more information consult the documentation for the FT_LOAD_*
10472 libfreetype flags.
10473
10474 @item shadowcolor
10475 The color to be used for drawing a shadow behind the drawn text. For the
10476 syntax of this option, check the @ref{color syntax,,"Color" section in the
10477 ffmpeg-utils manual,ffmpeg-utils}.
10478
10479 The default value of @var{shadowcolor} is "black".
10480
10481 @item shadowx
10482 @item shadowy
10483 The x and y offsets for the text shadow position with respect to the
10484 position of the text. They can be either positive or negative
10485 values. The default value for both is "0".
10486
10487 @item start_number
10488 The starting frame number for the n/frame_num variable. The default value
10489 is "0".
10490
10491 @item tabsize
10492 The size in number of spaces to use for rendering the tab.
10493 Default value is 4.
10494
10495 @item timecode
10496 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10497 format. It can be used with or without text parameter. @var{timecode_rate}
10498 option must be specified.
10499
10500 @item timecode_rate, rate, r
10501 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10502 integer. Minimum value is "1".
10503 Drop-frame timecode is supported for frame rates 30 & 60.
10504
10505 @item tc24hmax
10506 If set to 1, the output of the timecode option will wrap around at 24 hours.
10507 Default is 0 (disabled).
10508
10509 @item text
10510 The text string to be drawn. The text must be a sequence of UTF-8
10511 encoded characters.
10512 This parameter is mandatory if no file is specified with the parameter
10513 @var{textfile}.
10514
10515 @item textfile
10516 A text file containing text to be drawn. The text must be a sequence
10517 of UTF-8 encoded characters.
10518
10519 This parameter is mandatory if no text string is specified with the
10520 parameter @var{text}.
10521
10522 If both @var{text} and @var{textfile} are specified, an error is thrown.
10523
10524 @item reload
10525 If set to 1, the @var{textfile} will be reloaded before each frame.
10526 Be sure to update it atomically, or it may be read partially, or even fail.
10527
10528 @item x
10529 @item y
10530 The expressions which specify the offsets where text will be drawn
10531 within the video frame. They are relative to the top/left border of the
10532 output image.
10533
10534 The default value of @var{x} and @var{y} is "0".
10535
10536 See below for the list of accepted constants and functions.
10537 @end table
10538
10539 The parameters for @var{x} and @var{y} are expressions containing the
10540 following constants and functions:
10541
10542 @table @option
10543 @item dar
10544 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10545
10546 @item hsub
10547 @item vsub
10548 horizontal and vertical chroma subsample values. For example for the
10549 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10550
10551 @item line_h, lh
10552 the height of each text line
10553
10554 @item main_h, h, H
10555 the input height
10556
10557 @item main_w, w, W
10558 the input width
10559
10560 @item max_glyph_a, ascent
10561 the maximum distance from the baseline to the highest/upper grid
10562 coordinate used to place a glyph outline point, for all the rendered
10563 glyphs.
10564 It is a positive value, due to the grid's orientation with the Y axis
10565 upwards.
10566
10567 @item max_glyph_d, descent
10568 the maximum distance from the baseline to the lowest grid coordinate
10569 used to place a glyph outline point, for all the rendered glyphs.
10570 This is a negative value, due to the grid's orientation, with the Y axis
10571 upwards.
10572
10573 @item max_glyph_h
10574 maximum glyph height, that is the maximum height for all the glyphs
10575 contained in the rendered text, it is equivalent to @var{ascent} -
10576 @var{descent}.
10577
10578 @item max_glyph_w
10579 maximum glyph width, that is the maximum width for all the glyphs
10580 contained in the rendered text
10581
10582 @item n
10583 the number of input frame, starting from 0
10584
10585 @item rand(min, max)
10586 return a random number included between @var{min} and @var{max}
10587
10588 @item sar
10589 The input sample aspect ratio.
10590
10591 @item t
10592 timestamp expressed in seconds, NAN if the input timestamp is unknown
10593
10594 @item text_h, th
10595 the height of the rendered text
10596
10597 @item text_w, tw
10598 the width of the rendered text
10599
10600 @item x
10601 @item y
10602 the x and y offset coordinates where the text is drawn.
10603
10604 These parameters allow the @var{x} and @var{y} expressions to refer
10605 to each other, so you can for example specify @code{y=x/dar}.
10606
10607 @item pict_type
10608 A one character description of the current frame's picture type.
10609
10610 @item pkt_pos
10611 The current packet's position in the input file or stream
10612 (in bytes, from the start of the input). A value of -1 indicates
10613 this info is not available.
10614
10615 @item pkt_duration
10616 The current packet's duration, in seconds.
10617
10618 @item pkt_size
10619 The current packet's size (in bytes).
10620 @end table
10621
10622 @anchor{drawtext_expansion}
10623 @subsection Text expansion
10624
10625 If @option{expansion} is set to @code{strftime},
10626 the filter recognizes strftime() sequences in the provided text and
10627 expands them accordingly. Check the documentation of strftime(). This
10628 feature is deprecated.
10629
10630 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10631
10632 If @option{expansion} is set to @code{normal} (which is the default),
10633 the following expansion mechanism is used.
10634
10635 The backslash character @samp{\}, followed by any character, always expands to
10636 the second character.
10637
10638 Sequences of the form @code{%@{...@}} are expanded. The text between the
10639 braces is a function name, possibly followed by arguments separated by ':'.
10640 If the arguments contain special characters or delimiters (':' or '@}'),
10641 they should be escaped.
10642
10643 Note that they probably must also be escaped as the value for the
10644 @option{text} option in the filter argument string and as the filter
10645 argument in the filtergraph description, and possibly also for the shell,
10646 that makes up to four levels of escaping; using a text file avoids these
10647 problems.
10648
10649 The following functions are available:
10650
10651 @table @command
10652
10653 @item expr, e
10654 The expression evaluation result.
10655
10656 It must take one argument specifying the expression to be evaluated,
10657 which accepts the same constants and functions as the @var{x} and
10658 @var{y} values. Note that not all constants should be used, for
10659 example the text size is not known when evaluating the expression, so
10660 the constants @var{text_w} and @var{text_h} will have an undefined
10661 value.
10662
10663 @item expr_int_format, eif
10664 Evaluate the expression's value and output as formatted integer.
10665
10666 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10667 The second argument specifies the output format. Allowed values are @samp{x},
10668 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10669 @code{printf} function.
10670 The third parameter is optional and sets the number of positions taken by the output.
10671 It can be used to add padding with zeros from the left.
10672
10673 @item gmtime
10674 The time at which the filter is running, expressed in UTC.
10675 It can accept an argument: a strftime() format string.
10676
10677 @item localtime
10678 The time at which the filter is running, expressed in the local time zone.
10679 It can accept an argument: a strftime() format string.
10680
10681 @item metadata
10682 Frame metadata. Takes one or two arguments.
10683
10684 The first argument is mandatory and specifies the metadata key.
10685
10686 The second argument is optional and specifies a default value, used when the
10687 metadata key is not found or empty.
10688
10689 Available metadata can be identified by inspecting entries
10690 starting with TAG included within each frame section
10691 printed by running @code{ffprobe -show_frames}.
10692
10693 String metadata generated in filters leading to
10694 the drawtext filter are also available.
10695
10696 @item n, frame_num
10697 The frame number, starting from 0.
10698
10699 @item pict_type
10700 A one character description of the current picture type.
10701
10702 @item pts
10703 The timestamp of the current frame.
10704 It can take up to three arguments.
10705
10706 The first argument is the format of the timestamp; it defaults to @code{flt}
10707 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10708 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10709 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10710 @code{localtime} stands for the timestamp of the frame formatted as
10711 local time zone time.
10712
10713 The second argument is an offset added to the timestamp.
10714
10715 If the format is set to @code{hms}, a third argument @code{24HH} may be
10716 supplied to present the hour part of the formatted timestamp in 24h format
10717 (00-23).
10718
10719 If the format is set to @code{localtime} or @code{gmtime},
10720 a third argument may be supplied: a strftime() format string.
10721 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10722 @end table
10723
10724 @subsection Commands
10725
10726 This filter supports altering parameters via commands:
10727 @table @option
10728 @item reinit
10729 Alter existing filter parameters.
10730
10731 Syntax for the argument is the same as for filter invocation, e.g.
10732
10733 @example
10734 fontsize=56:fontcolor=green:text='Hello World'
10735 @end example
10736
10737 Full filter invocation with sendcmd would look like this:
10738
10739 @example
10740 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10741 @end example
10742 @end table
10743
10744 If the entire argument can't be parsed or applied as valid values then the filter will
10745 continue with its existing parameters.
10746
10747 @subsection Examples
10748
10749 @itemize
10750 @item
10751 Draw "Test Text" with font FreeSerif, using the default values for the
10752 optional parameters.
10753
10754 @example
10755 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10756 @end example
10757
10758 @item
10759 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10760 and y=50 (counting from the top-left corner of the screen), text is
10761 yellow with a red box around it. Both the text and the box have an
10762 opacity of 20%.
10763
10764 @example
10765 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10766           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10767 @end example
10768
10769 Note that the double quotes are not necessary if spaces are not used
10770 within the parameter list.
10771
10772 @item
10773 Show the text at the center of the video frame:
10774 @example
10775 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10776 @end example
10777
10778 @item
10779 Show the text at a random position, switching to a new position every 30 seconds:
10780 @example
10781 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)"
10782 @end example
10783
10784 @item
10785 Show a text line sliding from right to left in the last row of the video
10786 frame. The file @file{LONG_LINE} is assumed to contain a single line
10787 with no newlines.
10788 @example
10789 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10790 @end example
10791
10792 @item
10793 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10794 @example
10795 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10796 @end example
10797
10798 @item
10799 Draw a single green letter "g", at the center of the input video.
10800 The glyph baseline is placed at half screen height.
10801 @example
10802 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10803 @end example
10804
10805 @item
10806 Show text for 1 second every 3 seconds:
10807 @example
10808 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10809 @end example
10810
10811 @item
10812 Use fontconfig to set the font. Note that the colons need to be escaped.
10813 @example
10814 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10815 @end example
10816
10817 @item
10818 Draw "Test Text" with font size dependent on height of the video.
10819 @example
10820 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
10821 @end example
10822
10823 @item
10824 Print the date of a real-time encoding (see strftime(3)):
10825 @example
10826 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10827 @end example
10828
10829 @item
10830 Show text fading in and out (appearing/disappearing):
10831 @example
10832 #!/bin/sh
10833 DS=1.0 # display start
10834 DE=10.0 # display end
10835 FID=1.5 # fade in duration
10836 FOD=5 # fade out duration
10837 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 @}"
10838 @end example
10839
10840 @item
10841 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10842 and the @option{fontsize} value are included in the @option{y} offset.
10843 @example
10844 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10845 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10846 @end example
10847
10848 @item
10849 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10850 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10851 must have option @option{-export_path_metadata 1} for the special metadata fields
10852 to be available for filters.
10853 @example
10854 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10855 @end example
10856
10857 @end itemize
10858
10859 For more information about libfreetype, check:
10860 @url{http://www.freetype.org/}.
10861
10862 For more information about fontconfig, check:
10863 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10864
10865 For more information about libfribidi, check:
10866 @url{http://fribidi.org/}.
10867
10868 @section edgedetect
10869
10870 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10871
10872 The filter accepts the following options:
10873
10874 @table @option
10875 @item low
10876 @item high
10877 Set low and high threshold values used by the Canny thresholding
10878 algorithm.
10879
10880 The high threshold selects the "strong" edge pixels, which are then
10881 connected through 8-connectivity with the "weak" edge pixels selected
10882 by the low threshold.
10883
10884 @var{low} and @var{high} threshold values must be chosen in the range
10885 [0,1], and @var{low} should be lesser or equal to @var{high}.
10886
10887 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10888 is @code{50/255}.
10889
10890 @item mode
10891 Define the drawing mode.
10892
10893 @table @samp
10894 @item wires
10895 Draw white/gray wires on black background.
10896
10897 @item colormix
10898 Mix the colors to create a paint/cartoon effect.
10899
10900 @item canny
10901 Apply Canny edge detector on all selected planes.
10902 @end table
10903 Default value is @var{wires}.
10904
10905 @item planes
10906 Select planes for filtering. By default all available planes are filtered.
10907 @end table
10908
10909 @subsection Examples
10910
10911 @itemize
10912 @item
10913 Standard edge detection with custom values for the hysteresis thresholding:
10914 @example
10915 edgedetect=low=0.1:high=0.4
10916 @end example
10917
10918 @item
10919 Painting effect without thresholding:
10920 @example
10921 edgedetect=mode=colormix:high=0
10922 @end example
10923 @end itemize
10924
10925 @section elbg
10926
10927 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10928
10929 For each input image, the filter will compute the optimal mapping from
10930 the input to the output given the codebook length, that is the number
10931 of distinct output colors.
10932
10933 This filter accepts the following options.
10934
10935 @table @option
10936 @item codebook_length, l
10937 Set codebook length. The value must be a positive integer, and
10938 represents the number of distinct output colors. Default value is 256.
10939
10940 @item nb_steps, n
10941 Set the maximum number of iterations to apply for computing the optimal
10942 mapping. The higher the value the better the result and the higher the
10943 computation time. Default value is 1.
10944
10945 @item seed, s
10946 Set a random seed, must be an integer included between 0 and
10947 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10948 will try to use a good random seed on a best effort basis.
10949
10950 @item pal8
10951 Set pal8 output pixel format. This option does not work with codebook
10952 length greater than 256.
10953 @end table
10954
10955 @section entropy
10956
10957 Measure graylevel entropy in histogram of color channels of video frames.
10958
10959 It accepts the following parameters:
10960
10961 @table @option
10962 @item mode
10963 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10964
10965 @var{diff} mode measures entropy of histogram delta values, absolute differences
10966 between neighbour histogram values.
10967 @end table
10968
10969 @section epx
10970 Apply the EPX magnification filter which is designed for pixel art.
10971
10972 It accepts the following option:
10973
10974 @table @option
10975 @item n
10976 Set the scaling dimension: @code{2} for @code{2xEPX}, @code{3} for
10977 @code{3xEPX}.
10978 Default is @code{3}.
10979 @end table
10980
10981 @section eq
10982 Set brightness, contrast, saturation and approximate gamma adjustment.
10983
10984 The filter accepts the following options:
10985
10986 @table @option
10987 @item contrast
10988 Set the contrast expression. The value must be a float value in range
10989 @code{-1000.0} to @code{1000.0}. The default value is "1".
10990
10991 @item brightness
10992 Set the brightness expression. The value must be a float value in
10993 range @code{-1.0} to @code{1.0}. The default value is "0".
10994
10995 @item saturation
10996 Set the saturation expression. The value must be a float in
10997 range @code{0.0} to @code{3.0}. The default value is "1".
10998
10999 @item gamma
11000 Set the gamma expression. The value must be a float in range
11001 @code{0.1} to @code{10.0}.  The default value is "1".
11002
11003 @item gamma_r
11004 Set the gamma expression for red. The value must be a float in
11005 range @code{0.1} to @code{10.0}. The default value is "1".
11006
11007 @item gamma_g
11008 Set the gamma expression for green. The value must be a float in range
11009 @code{0.1} to @code{10.0}. The default value is "1".
11010
11011 @item gamma_b
11012 Set the gamma expression for blue. The value must be a float in range
11013 @code{0.1} to @code{10.0}. The default value is "1".
11014
11015 @item gamma_weight
11016 Set the gamma weight expression. It can be used to reduce the effect
11017 of a high gamma value on bright image areas, e.g. keep them from
11018 getting overamplified and just plain white. The value must be a float
11019 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
11020 gamma correction all the way down while @code{1.0} leaves it at its
11021 full strength. Default is "1".
11022
11023 @item eval
11024 Set when the expressions for brightness, contrast, saturation and
11025 gamma expressions are evaluated.
11026
11027 It accepts the following values:
11028 @table @samp
11029 @item init
11030 only evaluate expressions once during the filter initialization or
11031 when a command is processed
11032
11033 @item frame
11034 evaluate expressions for each incoming frame
11035 @end table
11036
11037 Default value is @samp{init}.
11038 @end table
11039
11040 The expressions accept the following parameters:
11041 @table @option
11042 @item n
11043 frame count of the input frame starting from 0
11044
11045 @item pos
11046 byte position of the corresponding packet in the input file, NAN if
11047 unspecified
11048
11049 @item r
11050 frame rate of the input video, NAN if the input frame rate is unknown
11051
11052 @item t
11053 timestamp expressed in seconds, NAN if the input timestamp is unknown
11054 @end table
11055
11056 @subsection Commands
11057 The filter supports the following commands:
11058
11059 @table @option
11060 @item contrast
11061 Set the contrast expression.
11062
11063 @item brightness
11064 Set the brightness expression.
11065
11066 @item saturation
11067 Set the saturation expression.
11068
11069 @item gamma
11070 Set the gamma expression.
11071
11072 @item gamma_r
11073 Set the gamma_r expression.
11074
11075 @item gamma_g
11076 Set gamma_g expression.
11077
11078 @item gamma_b
11079 Set gamma_b expression.
11080
11081 @item gamma_weight
11082 Set gamma_weight expression.
11083
11084 The command accepts the same syntax of the corresponding option.
11085
11086 If the specified expression is not valid, it is kept at its current
11087 value.
11088
11089 @end table
11090
11091 @section erosion
11092
11093 Apply erosion effect to the video.
11094
11095 This filter replaces the pixel by the local(3x3) minimum.
11096
11097 It accepts the following options:
11098
11099 @table @option
11100 @item threshold0
11101 @item threshold1
11102 @item threshold2
11103 @item threshold3
11104 Limit the maximum change for each plane, default is 65535.
11105 If 0, plane will remain unchanged.
11106
11107 @item coordinates
11108 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
11109 pixels are used.
11110
11111 Flags to local 3x3 coordinates maps like this:
11112
11113     1 2 3
11114     4   5
11115     6 7 8
11116 @end table
11117
11118 @subsection Commands
11119
11120 This filter supports the all above options as @ref{commands}.
11121
11122 @section estdif
11123
11124 Deinterlace the input video ("estdif" stands for "Edge Slope
11125 Tracing Deinterlacing Filter").
11126
11127 Spatial only filter that uses edge slope tracing algorithm
11128 to interpolate missing lines.
11129 It accepts the following parameters:
11130
11131 @table @option
11132 @item mode
11133 The interlacing mode to adopt. It accepts one of the following values:
11134
11135 @table @option
11136 @item frame
11137 Output one frame for each frame.
11138 @item field
11139 Output one frame for each field.
11140 @end table
11141
11142 The default value is @code{field}.
11143
11144 @item parity
11145 The picture field parity assumed for the input interlaced video. It accepts one
11146 of the following values:
11147
11148 @table @option
11149 @item tff
11150 Assume the top field is first.
11151 @item bff
11152 Assume the bottom field is first.
11153 @item auto
11154 Enable automatic detection of field parity.
11155 @end table
11156
11157 The default value is @code{auto}.
11158 If the interlacing is unknown or the decoder does not export this information,
11159 top field first will be assumed.
11160
11161 @item deint
11162 Specify which frames to deinterlace. Accepts one of the following
11163 values:
11164
11165 @table @option
11166 @item all
11167 Deinterlace all frames.
11168 @item interlaced
11169 Only deinterlace frames marked as interlaced.
11170 @end table
11171
11172 The default value is @code{all}.
11173
11174 @item rslope
11175 Specify the search radius for edge slope tracing. Default value is 1.
11176 Allowed range is from 1 to 15.
11177
11178 @item redge
11179 Specify the search radius for best edge matching. Default value is 2.
11180 Allowed range is from 0 to 15.
11181
11182 @item interp
11183 Specify the interpolation used. Default is 4-point interpolation. It accepts one
11184 of the following values:
11185
11186 @table @option
11187 @item 2p
11188 Two-point interpolation.
11189 @item 4p
11190 Four-point interpolation.
11191 @item 6p
11192 Six-point interpolation.
11193 @end table
11194 @end table
11195
11196 @subsection Commands
11197 This filter supports same @ref{commands} as options.
11198
11199 @section extractplanes
11200
11201 Extract color channel components from input video stream into
11202 separate grayscale video streams.
11203
11204 The filter accepts the following option:
11205
11206 @table @option
11207 @item planes
11208 Set plane(s) to extract.
11209
11210 Available values for planes are:
11211 @table @samp
11212 @item y
11213 @item u
11214 @item v
11215 @item a
11216 @item r
11217 @item g
11218 @item b
11219 @end table
11220
11221 Choosing planes not available in the input will result in an error.
11222 That means you cannot select @code{r}, @code{g}, @code{b} planes
11223 with @code{y}, @code{u}, @code{v} planes at same time.
11224 @end table
11225
11226 @subsection Examples
11227
11228 @itemize
11229 @item
11230 Extract luma, u and v color channel component from input video frame
11231 into 3 grayscale outputs:
11232 @example
11233 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
11234 @end example
11235 @end itemize
11236
11237 @section fade
11238
11239 Apply a fade-in/out effect to the input video.
11240
11241 It accepts the following parameters:
11242
11243 @table @option
11244 @item type, t
11245 The effect type can be either "in" for a fade-in, or "out" for a fade-out
11246 effect.
11247 Default is @code{in}.
11248
11249 @item start_frame, s
11250 Specify the number of the frame to start applying the fade
11251 effect at. Default is 0.
11252
11253 @item nb_frames, n
11254 The number of frames that the fade effect lasts. At the end of the
11255 fade-in effect, the output video will have the same intensity as the input video.
11256 At the end of the fade-out transition, the output video will be filled with the
11257 selected @option{color}.
11258 Default is 25.
11259
11260 @item alpha
11261 If set to 1, fade only alpha channel, if one exists on the input.
11262 Default value is 0.
11263
11264 @item start_time, st
11265 Specify the timestamp (in seconds) of the frame to start to apply the fade
11266 effect. If both start_frame and start_time are specified, the fade will start at
11267 whichever comes last.  Default is 0.
11268
11269 @item duration, d
11270 The number of seconds for which the fade effect has to last. At the end of the
11271 fade-in effect the output video will have the same intensity as the input video,
11272 at the end of the fade-out transition the output video will be filled with the
11273 selected @option{color}.
11274 If both duration and nb_frames are specified, duration is used. Default is 0
11275 (nb_frames is used by default).
11276
11277 @item color, c
11278 Specify the color of the fade. Default is "black".
11279 @end table
11280
11281 @subsection Examples
11282
11283 @itemize
11284 @item
11285 Fade in the first 30 frames of video:
11286 @example
11287 fade=in:0:30
11288 @end example
11289
11290 The command above is equivalent to:
11291 @example
11292 fade=t=in:s=0:n=30
11293 @end example
11294
11295 @item
11296 Fade out the last 45 frames of a 200-frame video:
11297 @example
11298 fade=out:155:45
11299 fade=type=out:start_frame=155:nb_frames=45
11300 @end example
11301
11302 @item
11303 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
11304 @example
11305 fade=in:0:25, fade=out:975:25
11306 @end example
11307
11308 @item
11309 Make the first 5 frames yellow, then fade in from frame 5-24:
11310 @example
11311 fade=in:5:20:color=yellow
11312 @end example
11313
11314 @item
11315 Fade in alpha over first 25 frames of video:
11316 @example
11317 fade=in:0:25:alpha=1
11318 @end example
11319
11320 @item
11321 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
11322 @example
11323 fade=t=in:st=5.5:d=0.5
11324 @end example
11325
11326 @end itemize
11327
11328 @section fftdnoiz
11329 Denoise frames using 3D FFT (frequency domain filtering).
11330
11331 The filter accepts the following options:
11332
11333 @table @option
11334 @item sigma
11335 Set the noise sigma constant. This sets denoising strength.
11336 Default value is 1. Allowed range is from 0 to 30.
11337 Using very high sigma with low overlap may give blocking artifacts.
11338
11339 @item amount
11340 Set amount of denoising. By default all detected noise is reduced.
11341 Default value is 1. Allowed range is from 0 to 1.
11342
11343 @item block
11344 Set size of block, Default is 4, can be 3, 4, 5 or 6.
11345 Actual size of block in pixels is 2 to power of @var{block}, so by default
11346 block size in pixels is 2^4 which is 16.
11347
11348 @item overlap
11349 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
11350
11351 @item prev
11352 Set number of previous frames to use for denoising. By default is set to 0.
11353
11354 @item next
11355 Set number of next frames to to use for denoising. By default is set to 0.
11356
11357 @item planes
11358 Set planes which will be filtered, by default are all available filtered
11359 except alpha.
11360 @end table
11361
11362 @section fftfilt
11363 Apply arbitrary expressions to samples in frequency domain
11364
11365 @table @option
11366 @item dc_Y
11367 Adjust the dc value (gain) of the luma plane of the image. The filter
11368 accepts an integer value in range @code{0} to @code{1000}. The default
11369 value is set to @code{0}.
11370
11371 @item dc_U
11372 Adjust the dc value (gain) of the 1st chroma plane of the image. The
11373 filter accepts an integer value in range @code{0} to @code{1000}. The
11374 default value is set to @code{0}.
11375
11376 @item dc_V
11377 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
11378 filter accepts an integer value in range @code{0} to @code{1000}. The
11379 default value is set to @code{0}.
11380
11381 @item weight_Y
11382 Set the frequency domain weight expression for the luma plane.
11383
11384 @item weight_U
11385 Set the frequency domain weight expression for the 1st chroma plane.
11386
11387 @item weight_V
11388 Set the frequency domain weight expression for the 2nd chroma plane.
11389
11390 @item eval
11391 Set when the expressions are evaluated.
11392
11393 It accepts the following values:
11394 @table @samp
11395 @item init
11396 Only evaluate expressions once during the filter initialization.
11397
11398 @item frame
11399 Evaluate expressions for each incoming frame.
11400 @end table
11401
11402 Default value is @samp{init}.
11403
11404 The filter accepts the following variables:
11405 @item X
11406 @item Y
11407 The coordinates of the current sample.
11408
11409 @item W
11410 @item H
11411 The width and height of the image.
11412
11413 @item N
11414 The number of input frame, starting from 0.
11415 @end table
11416
11417 @subsection Examples
11418
11419 @itemize
11420 @item
11421 High-pass:
11422 @example
11423 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
11424 @end example
11425
11426 @item
11427 Low-pass:
11428 @example
11429 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
11430 @end example
11431
11432 @item
11433 Sharpen:
11434 @example
11435 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
11436 @end example
11437
11438 @item
11439 Blur:
11440 @example
11441 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
11442 @end example
11443
11444 @end itemize
11445
11446 @section field
11447
11448 Extract a single field from an interlaced image using stride
11449 arithmetic to avoid wasting CPU time. The output frames are marked as
11450 non-interlaced.
11451
11452 The filter accepts the following options:
11453
11454 @table @option
11455 @item type
11456 Specify whether to extract the top (if the value is @code{0} or
11457 @code{top}) or the bottom field (if the value is @code{1} or
11458 @code{bottom}).
11459 @end table
11460
11461 @section fieldhint
11462
11463 Create new frames by copying the top and bottom fields from surrounding frames
11464 supplied as numbers by the hint file.
11465
11466 @table @option
11467 @item hint
11468 Set file containing hints: absolute/relative frame numbers.
11469
11470 There must be one line for each frame in a clip. Each line must contain two
11471 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11472 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11473 is current frame number for @code{absolute} mode or out of [-1, 1] range
11474 for @code{relative} mode. First number tells from which frame to pick up top
11475 field and second number tells from which frame to pick up bottom field.
11476
11477 If optionally followed by @code{+} output frame will be marked as interlaced,
11478 else if followed by @code{-} output frame will be marked as progressive, else
11479 it will be marked same as input frame.
11480 If optionally followed by @code{t} output frame will use only top field, or in
11481 case of @code{b} it will use only bottom field.
11482 If line starts with @code{#} or @code{;} that line is skipped.
11483
11484 @item mode
11485 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11486 @end table
11487
11488 Example of first several lines of @code{hint} file for @code{relative} mode:
11489 @example
11490 0,0 - # first frame
11491 1,0 - # second frame, use third's frame top field and second's frame bottom field
11492 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11493 1,0 -
11494 0,0 -
11495 0,0 -
11496 1,0 -
11497 1,0 -
11498 1,0 -
11499 0,0 -
11500 0,0 -
11501 1,0 -
11502 1,0 -
11503 1,0 -
11504 0,0 -
11505 @end example
11506
11507 @section fieldmatch
11508
11509 Field matching filter for inverse telecine. It is meant to reconstruct the
11510 progressive frames from a telecined stream. The filter does not drop duplicated
11511 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11512 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11513
11514 The separation of the field matching and the decimation is notably motivated by
11515 the possibility of inserting a de-interlacing filter fallback between the two.
11516 If the source has mixed telecined and real interlaced content,
11517 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11518 But these remaining combed frames will be marked as interlaced, and thus can be
11519 de-interlaced by a later filter such as @ref{yadif} before decimation.
11520
11521 In addition to the various configuration options, @code{fieldmatch} can take an
11522 optional second stream, activated through the @option{ppsrc} option. If
11523 enabled, the frames reconstruction will be based on the fields and frames from
11524 this second stream. This allows the first input to be pre-processed in order to
11525 help the various algorithms of the filter, while keeping the output lossless
11526 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11527 or brightness/contrast adjustments can help.
11528
11529 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11530 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11531 which @code{fieldmatch} is based on. While the semantic and usage are very
11532 close, some behaviour and options names can differ.
11533
11534 The @ref{decimate} filter currently only works for constant frame rate input.
11535 If your input has mixed telecined (30fps) and progressive content with a lower
11536 framerate like 24fps use the following filterchain to produce the necessary cfr
11537 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11538
11539 The filter accepts the following options:
11540
11541 @table @option
11542 @item order
11543 Specify the assumed field order of the input stream. Available values are:
11544
11545 @table @samp
11546 @item auto
11547 Auto detect parity (use FFmpeg's internal parity value).
11548 @item bff
11549 Assume bottom field first.
11550 @item tff
11551 Assume top field first.
11552 @end table
11553
11554 Note that it is sometimes recommended not to trust the parity announced by the
11555 stream.
11556
11557 Default value is @var{auto}.
11558
11559 @item mode
11560 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11561 sense that it won't risk creating jerkiness due to duplicate frames when
11562 possible, but if there are bad edits or blended fields it will end up
11563 outputting combed frames when a good match might actually exist. On the other
11564 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11565 but will almost always find a good frame if there is one. The other values are
11566 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11567 jerkiness and creating duplicate frames versus finding good matches in sections
11568 with bad edits, orphaned fields, blended fields, etc.
11569
11570 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11571
11572 Available values are:
11573
11574 @table @samp
11575 @item pc
11576 2-way matching (p/c)
11577 @item pc_n
11578 2-way matching, and trying 3rd match if still combed (p/c + n)
11579 @item pc_u
11580 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11581 @item pc_n_ub
11582 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11583 still combed (p/c + n + u/b)
11584 @item pcn
11585 3-way matching (p/c/n)
11586 @item pcn_ub
11587 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11588 detected as combed (p/c/n + u/b)
11589 @end table
11590
11591 The parenthesis at the end indicate the matches that would be used for that
11592 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11593 @var{top}).
11594
11595 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11596 the slowest.
11597
11598 Default value is @var{pc_n}.
11599
11600 @item ppsrc
11601 Mark the main input stream as a pre-processed input, and enable the secondary
11602 input stream as the clean source to pick the fields from. See the filter
11603 introduction for more details. It is similar to the @option{clip2} feature from
11604 VFM/TFM.
11605
11606 Default value is @code{0} (disabled).
11607
11608 @item field
11609 Set the field to match from. It is recommended to set this to the same value as
11610 @option{order} unless you experience matching failures with that setting. In
11611 certain circumstances changing the field that is used to match from can have a
11612 large impact on matching performance. Available values are:
11613
11614 @table @samp
11615 @item auto
11616 Automatic (same value as @option{order}).
11617 @item bottom
11618 Match from the bottom field.
11619 @item top
11620 Match from the top field.
11621 @end table
11622
11623 Default value is @var{auto}.
11624
11625 @item mchroma
11626 Set whether or not chroma is included during the match comparisons. In most
11627 cases it is recommended to leave this enabled. You should set this to @code{0}
11628 only if your clip has bad chroma problems such as heavy rainbowing or other
11629 artifacts. Setting this to @code{0} could also be used to speed things up at
11630 the cost of some accuracy.
11631
11632 Default value is @code{1}.
11633
11634 @item y0
11635 @item y1
11636 These define an exclusion band which excludes the lines between @option{y0} and
11637 @option{y1} from being included in the field matching decision. An exclusion
11638 band can be used to ignore subtitles, a logo, or other things that may
11639 interfere with the matching. @option{y0} sets the starting scan line and
11640 @option{y1} sets the ending line; all lines in between @option{y0} and
11641 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11642 @option{y0} and @option{y1} to the same value will disable the feature.
11643 @option{y0} and @option{y1} defaults to @code{0}.
11644
11645 @item scthresh
11646 Set the scene change detection threshold as a percentage of maximum change on
11647 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11648 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11649 @option{scthresh} is @code{[0.0, 100.0]}.
11650
11651 Default value is @code{12.0}.
11652
11653 @item combmatch
11654 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11655 account the combed scores of matches when deciding what match to use as the
11656 final match. Available values are:
11657
11658 @table @samp
11659 @item none
11660 No final matching based on combed scores.
11661 @item sc
11662 Combed scores are only used when a scene change is detected.
11663 @item full
11664 Use combed scores all the time.
11665 @end table
11666
11667 Default is @var{sc}.
11668
11669 @item combdbg
11670 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11671 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11672 Available values are:
11673
11674 @table @samp
11675 @item none
11676 No forced calculation.
11677 @item pcn
11678 Force p/c/n calculations.
11679 @item pcnub
11680 Force p/c/n/u/b calculations.
11681 @end table
11682
11683 Default value is @var{none}.
11684
11685 @item cthresh
11686 This is the area combing threshold used for combed frame detection. This
11687 essentially controls how "strong" or "visible" combing must be to be detected.
11688 Larger values mean combing must be more visible and smaller values mean combing
11689 can be less visible or strong and still be detected. Valid settings are from
11690 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11691 be detected as combed). This is basically a pixel difference value. A good
11692 range is @code{[8, 12]}.
11693
11694 Default value is @code{9}.
11695
11696 @item chroma
11697 Sets whether or not chroma is considered in the combed frame decision.  Only
11698 disable this if your source has chroma problems (rainbowing, etc.) that are
11699 causing problems for the combed frame detection with chroma enabled. Actually,
11700 using @option{chroma}=@var{0} is usually more reliable, except for the case
11701 where there is chroma only combing in the source.
11702
11703 Default value is @code{0}.
11704
11705 @item blockx
11706 @item blocky
11707 Respectively set the x-axis and y-axis size of the window used during combed
11708 frame detection. This has to do with the size of the area in which
11709 @option{combpel} pixels are required to be detected as combed for a frame to be
11710 declared combed. See the @option{combpel} parameter description for more info.
11711 Possible values are any number that is a power of 2 starting at 4 and going up
11712 to 512.
11713
11714 Default value is @code{16}.
11715
11716 @item combpel
11717 The number of combed pixels inside any of the @option{blocky} by
11718 @option{blockx} size blocks on the frame for the frame to be detected as
11719 combed. While @option{cthresh} controls how "visible" the combing must be, this
11720 setting controls "how much" combing there must be in any localized area (a
11721 window defined by the @option{blockx} and @option{blocky} settings) on the
11722 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11723 which point no frames will ever be detected as combed). This setting is known
11724 as @option{MI} in TFM/VFM vocabulary.
11725
11726 Default value is @code{80}.
11727 @end table
11728
11729 @anchor{p/c/n/u/b meaning}
11730 @subsection p/c/n/u/b meaning
11731
11732 @subsubsection p/c/n
11733
11734 We assume the following telecined stream:
11735
11736 @example
11737 Top fields:     1 2 2 3 4
11738 Bottom fields:  1 2 3 4 4
11739 @end example
11740
11741 The numbers correspond to the progressive frame the fields relate to. Here, the
11742 first two frames are progressive, the 3rd and 4th are combed, and so on.
11743
11744 When @code{fieldmatch} is configured to run a matching from bottom
11745 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11746
11747 @example
11748 Input stream:
11749                 T     1 2 2 3 4
11750                 B     1 2 3 4 4   <-- matching reference
11751
11752 Matches:              c c n n c
11753
11754 Output stream:
11755                 T     1 2 3 4 4
11756                 B     1 2 3 4 4
11757 @end example
11758
11759 As a result of the field matching, we can see that some frames get duplicated.
11760 To perform a complete inverse telecine, you need to rely on a decimation filter
11761 after this operation. See for instance the @ref{decimate} filter.
11762
11763 The same operation now matching from top fields (@option{field}=@var{top})
11764 looks like this:
11765
11766 @example
11767 Input stream:
11768                 T     1 2 2 3 4   <-- matching reference
11769                 B     1 2 3 4 4
11770
11771 Matches:              c c p p c
11772
11773 Output stream:
11774                 T     1 2 2 3 4
11775                 B     1 2 2 3 4
11776 @end example
11777
11778 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
11779 basically, they refer to the frame and field of the opposite parity:
11780
11781 @itemize
11782 @item @var{p} matches the field of the opposite parity in the previous frame
11783 @item @var{c} matches the field of the opposite parity in the current frame
11784 @item @var{n} matches the field of the opposite parity in the next frame
11785 @end itemize
11786
11787 @subsubsection u/b
11788
11789 The @var{u} and @var{b} matching are a bit special in the sense that they match
11790 from the opposite parity flag. In the following examples, we assume that we are
11791 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
11792 'x' is placed above and below each matched fields.
11793
11794 With bottom matching (@option{field}=@var{bottom}):
11795 @example
11796 Match:           c         p           n          b          u
11797
11798                  x       x               x        x          x
11799   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11800   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11801                  x         x           x        x              x
11802
11803 Output frames:
11804                  2          1          2          2          2
11805                  2          2          2          1          3
11806 @end example
11807
11808 With top matching (@option{field}=@var{top}):
11809 @example
11810 Match:           c         p           n          b          u
11811
11812                  x         x           x        x              x
11813   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11814   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11815                  x       x               x        x          x
11816
11817 Output frames:
11818                  2          2          2          1          2
11819                  2          1          3          2          2
11820 @end example
11821
11822 @subsection Examples
11823
11824 Simple IVTC of a top field first telecined stream:
11825 @example
11826 fieldmatch=order=tff:combmatch=none, decimate
11827 @end example
11828
11829 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
11830 @example
11831 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
11832 @end example
11833
11834 @section fieldorder
11835
11836 Transform the field order of the input video.
11837
11838 It accepts the following parameters:
11839
11840 @table @option
11841
11842 @item order
11843 The output field order. Valid values are @var{tff} for top field first or @var{bff}
11844 for bottom field first.
11845 @end table
11846
11847 The default value is @samp{tff}.
11848
11849 The transformation is done by shifting the picture content up or down
11850 by one line, and filling the remaining line with appropriate picture content.
11851 This method is consistent with most broadcast field order converters.
11852
11853 If the input video is not flagged as being interlaced, or it is already
11854 flagged as being of the required output field order, then this filter does
11855 not alter the incoming video.
11856
11857 It is very useful when converting to or from PAL DV material,
11858 which is bottom field first.
11859
11860 For example:
11861 @example
11862 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
11863 @end example
11864
11865 @section fifo, afifo
11866
11867 Buffer input images and send them when they are requested.
11868
11869 It is mainly useful when auto-inserted by the libavfilter
11870 framework.
11871
11872 It does not take parameters.
11873
11874 @section fillborders
11875
11876 Fill borders of the input video, without changing video stream dimensions.
11877 Sometimes video can have garbage at the four edges and you may not want to
11878 crop video input to keep size multiple of some number.
11879
11880 This filter accepts the following options:
11881
11882 @table @option
11883 @item left
11884 Number of pixels to fill from left border.
11885
11886 @item right
11887 Number of pixels to fill from right border.
11888
11889 @item top
11890 Number of pixels to fill from top border.
11891
11892 @item bottom
11893 Number of pixels to fill from bottom border.
11894
11895 @item mode
11896 Set fill mode.
11897
11898 It accepts the following values:
11899 @table @samp
11900 @item smear
11901 fill pixels using outermost pixels
11902
11903 @item mirror
11904 fill pixels using mirroring (half sample symmetric)
11905
11906 @item fixed
11907 fill pixels with constant value
11908
11909 @item reflect
11910 fill pixels using reflecting (whole sample symmetric)
11911
11912 @item wrap
11913 fill pixels using wrapping
11914
11915 @item fade
11916 fade pixels to constant value
11917 @end table
11918
11919 Default is @var{smear}.
11920
11921 @item color
11922 Set color for pixels in fixed or fade mode. Default is @var{black}.
11923 @end table
11924
11925 @subsection Commands
11926 This filter supports same @ref{commands} as options.
11927 The command accepts the same syntax of the corresponding option.
11928
11929 If the specified expression is not valid, it is kept at its current
11930 value.
11931
11932 @section find_rect
11933
11934 Find a rectangular object
11935
11936 It accepts the following options:
11937
11938 @table @option
11939 @item object
11940 Filepath of the object image, needs to be in gray8.
11941
11942 @item threshold
11943 Detection threshold, default is 0.5.
11944
11945 @item mipmaps
11946 Number of mipmaps, default is 3.
11947
11948 @item xmin, ymin, xmax, ymax
11949 Specifies the rectangle in which to search.
11950 @end table
11951
11952 @subsection Examples
11953
11954 @itemize
11955 @item
11956 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11957 @example
11958 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11959 @end example
11960 @end itemize
11961
11962 @section floodfill
11963
11964 Flood area with values of same pixel components with another values.
11965
11966 It accepts the following options:
11967 @table @option
11968 @item x
11969 Set pixel x coordinate.
11970
11971 @item y
11972 Set pixel y coordinate.
11973
11974 @item s0
11975 Set source #0 component value.
11976
11977 @item s1
11978 Set source #1 component value.
11979
11980 @item s2
11981 Set source #2 component value.
11982
11983 @item s3
11984 Set source #3 component value.
11985
11986 @item d0
11987 Set destination #0 component value.
11988
11989 @item d1
11990 Set destination #1 component value.
11991
11992 @item d2
11993 Set destination #2 component value.
11994
11995 @item d3
11996 Set destination #3 component value.
11997 @end table
11998
11999 @anchor{format}
12000 @section format
12001
12002 Convert the input video to one of the specified pixel formats.
12003 Libavfilter will try to pick one that is suitable as input to
12004 the next filter.
12005
12006 It accepts the following parameters:
12007 @table @option
12008
12009 @item pix_fmts
12010 A '|'-separated list of pixel format names, such as
12011 "pix_fmts=yuv420p|monow|rgb24".
12012
12013 @end table
12014
12015 @subsection Examples
12016
12017 @itemize
12018 @item
12019 Convert the input video to the @var{yuv420p} format
12020 @example
12021 format=pix_fmts=yuv420p
12022 @end example
12023
12024 Convert the input video to any of the formats in the list
12025 @example
12026 format=pix_fmts=yuv420p|yuv444p|yuv410p
12027 @end example
12028 @end itemize
12029
12030 @anchor{fps}
12031 @section fps
12032
12033 Convert the video to specified constant frame rate by duplicating or dropping
12034 frames as necessary.
12035
12036 It accepts the following parameters:
12037 @table @option
12038
12039 @item fps
12040 The desired output frame rate. The default is @code{25}.
12041
12042 @item start_time
12043 Assume the first PTS should be the given value, in seconds. This allows for
12044 padding/trimming at the start of stream. By default, no assumption is made
12045 about the first frame's expected PTS, so no padding or trimming is done.
12046 For example, this could be set to 0 to pad the beginning with duplicates of
12047 the first frame if a video stream starts after the audio stream or to trim any
12048 frames with a negative PTS.
12049
12050 @item round
12051 Timestamp (PTS) rounding method.
12052
12053 Possible values are:
12054 @table @option
12055 @item zero
12056 round towards 0
12057 @item inf
12058 round away from 0
12059 @item down
12060 round towards -infinity
12061 @item up
12062 round towards +infinity
12063 @item near
12064 round to nearest
12065 @end table
12066 The default is @code{near}.
12067
12068 @item eof_action
12069 Action performed when reading the last frame.
12070
12071 Possible values are:
12072 @table @option
12073 @item round
12074 Use same timestamp rounding method as used for other frames.
12075 @item pass
12076 Pass through last frame if input duration has not been reached yet.
12077 @end table
12078 The default is @code{round}.
12079
12080 @end table
12081
12082 Alternatively, the options can be specified as a flat string:
12083 @var{fps}[:@var{start_time}[:@var{round}]].
12084
12085 See also the @ref{setpts} filter.
12086
12087 @subsection Examples
12088
12089 @itemize
12090 @item
12091 A typical usage in order to set the fps to 25:
12092 @example
12093 fps=fps=25
12094 @end example
12095
12096 @item
12097 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
12098 @example
12099 fps=fps=film:round=near
12100 @end example
12101 @end itemize
12102
12103 @section framepack
12104
12105 Pack two different video streams into a stereoscopic video, setting proper
12106 metadata on supported codecs. The two views should have the same size and
12107 framerate and processing will stop when the shorter video ends. Please note
12108 that you may conveniently adjust view properties with the @ref{scale} and
12109 @ref{fps} filters.
12110
12111 It accepts the following parameters:
12112 @table @option
12113
12114 @item format
12115 The desired packing format. Supported values are:
12116
12117 @table @option
12118
12119 @item sbs
12120 The views are next to each other (default).
12121
12122 @item tab
12123 The views are on top of each other.
12124
12125 @item lines
12126 The views are packed by line.
12127
12128 @item columns
12129 The views are packed by column.
12130
12131 @item frameseq
12132 The views are temporally interleaved.
12133
12134 @end table
12135
12136 @end table
12137
12138 Some examples:
12139
12140 @example
12141 # Convert left and right views into a frame-sequential video
12142 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
12143
12144 # Convert views into a side-by-side video with the same output resolution as the input
12145 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
12146 @end example
12147
12148 @section framerate
12149
12150 Change the frame rate by interpolating new video output frames from the source
12151 frames.
12152
12153 This filter is not designed to function correctly with interlaced media. If
12154 you wish to change the frame rate of interlaced media then you are required
12155 to deinterlace before this filter and re-interlace after this filter.
12156
12157 A description of the accepted options follows.
12158
12159 @table @option
12160 @item fps
12161 Specify the output frames per second. This option can also be specified
12162 as a value alone. The default is @code{50}.
12163
12164 @item interp_start
12165 Specify the start of a range where the output frame will be created as a
12166 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12167 the default is @code{15}.
12168
12169 @item interp_end
12170 Specify the end of a range where the output frame will be created as a
12171 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12172 the default is @code{240}.
12173
12174 @item scene
12175 Specify the level at which a scene change is detected as a value between
12176 0 and 100 to indicate a new scene; a low value reflects a low
12177 probability for the current frame to introduce a new scene, while a higher
12178 value means the current frame is more likely to be one.
12179 The default is @code{8.2}.
12180
12181 @item flags
12182 Specify flags influencing the filter process.
12183
12184 Available value for @var{flags} is:
12185
12186 @table @option
12187 @item scene_change_detect, scd
12188 Enable scene change detection using the value of the option @var{scene}.
12189 This flag is enabled by default.
12190 @end table
12191 @end table
12192
12193 @section framestep
12194
12195 Select one frame every N-th frame.
12196
12197 This filter accepts the following option:
12198 @table @option
12199 @item step
12200 Select frame after every @code{step} frames.
12201 Allowed values are positive integers higher than 0. Default value is @code{1}.
12202 @end table
12203
12204 @section freezedetect
12205
12206 Detect frozen video.
12207
12208 This filter logs a message and sets frame metadata when it detects that the
12209 input video has no significant change in content during a specified duration.
12210 Video freeze detection calculates the mean average absolute difference of all
12211 the components of video frames and compares it to a noise floor.
12212
12213 The printed times and duration are expressed in seconds. The
12214 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
12215 whose timestamp equals or exceeds the detection duration and it contains the
12216 timestamp of the first frame of the freeze. The
12217 @code{lavfi.freezedetect.freeze_duration} and
12218 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
12219 after the freeze.
12220
12221 The filter accepts the following options:
12222
12223 @table @option
12224 @item noise, n
12225 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
12226 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
12227 0.001.
12228
12229 @item duration, d
12230 Set freeze duration until notification (default is 2 seconds).
12231 @end table
12232
12233 @section freezeframes
12234
12235 Freeze video frames.
12236
12237 This filter freezes video frames using frame from 2nd input.
12238
12239 The filter accepts the following options:
12240
12241 @table @option
12242 @item first
12243 Set number of first frame from which to start freeze.
12244
12245 @item last
12246 Set number of last frame from which to end freeze.
12247
12248 @item replace
12249 Set number of frame from 2nd input which will be used instead of replaced frames.
12250 @end table
12251
12252 @anchor{frei0r}
12253 @section frei0r
12254
12255 Apply a frei0r effect to the input video.
12256
12257 To enable the compilation of this filter, you need to install the frei0r
12258 header and configure FFmpeg with @code{--enable-frei0r}.
12259
12260 It accepts the following parameters:
12261
12262 @table @option
12263
12264 @item filter_name
12265 The name of the frei0r effect to load. If the environment variable
12266 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
12267 directories specified by the colon-separated list in @env{FREI0R_PATH}.
12268 Otherwise, the standard frei0r paths are searched, in this order:
12269 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
12270 @file{/usr/lib/frei0r-1/}.
12271
12272 @item filter_params
12273 A '|'-separated list of parameters to pass to the frei0r effect.
12274
12275 @end table
12276
12277 A frei0r effect parameter can be a boolean (its value is either
12278 "y" or "n"), a double, a color (specified as
12279 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
12280 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
12281 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
12282 a position (specified as @var{X}/@var{Y}, where
12283 @var{X} and @var{Y} are floating point numbers) and/or a string.
12284
12285 The number and types of parameters depend on the loaded effect. If an
12286 effect parameter is not specified, the default value is set.
12287
12288 @subsection Examples
12289
12290 @itemize
12291 @item
12292 Apply the distort0r effect, setting the first two double parameters:
12293 @example
12294 frei0r=filter_name=distort0r:filter_params=0.5|0.01
12295 @end example
12296
12297 @item
12298 Apply the colordistance effect, taking a color as the first parameter:
12299 @example
12300 frei0r=colordistance:0.2/0.3/0.4
12301 frei0r=colordistance:violet
12302 frei0r=colordistance:0x112233
12303 @end example
12304
12305 @item
12306 Apply the perspective effect, specifying the top left and top right image
12307 positions:
12308 @example
12309 frei0r=perspective:0.2/0.2|0.8/0.2
12310 @end example
12311 @end itemize
12312
12313 For more information, see
12314 @url{http://frei0r.dyne.org}
12315
12316 @subsection Commands
12317
12318 This filter supports the @option{filter_params} option as @ref{commands}.
12319
12320 @section fspp
12321
12322 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
12323
12324 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
12325 processing filter, one of them is performed once per block, not per pixel.
12326 This allows for much higher speed.
12327
12328 The filter accepts the following options:
12329
12330 @table @option
12331 @item quality
12332 Set quality. This option defines the number of levels for averaging. It accepts
12333 an integer in the range 4-5. Default value is @code{4}.
12334
12335 @item qp
12336 Force a constant quantization parameter. It accepts an integer in range 0-63.
12337 If not set, the filter will use the QP from the video stream (if available).
12338
12339 @item strength
12340 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
12341 more details but also more artifacts, while higher values make the image smoother
12342 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
12343
12344 @item use_bframe_qp
12345 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12346 option may cause flicker since the B-Frames have often larger QP. Default is
12347 @code{0} (not enabled).
12348
12349 @end table
12350
12351 @section gblur
12352
12353 Apply Gaussian blur filter.
12354
12355 The filter accepts the following options:
12356
12357 @table @option
12358 @item sigma
12359 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
12360
12361 @item steps
12362 Set number of steps for Gaussian approximation. Default is @code{1}.
12363
12364 @item planes
12365 Set which planes to filter. By default all planes are filtered.
12366
12367 @item sigmaV
12368 Set vertical sigma, if negative it will be same as @code{sigma}.
12369 Default is @code{-1}.
12370 @end table
12371
12372 @subsection Commands
12373 This filter supports same commands as options.
12374 The command accepts the same syntax of the corresponding option.
12375
12376 If the specified expression is not valid, it is kept at its current
12377 value.
12378
12379 @section geq
12380
12381 Apply generic equation to each pixel.
12382
12383 The filter accepts the following options:
12384
12385 @table @option
12386 @item lum_expr, lum
12387 Set the luminance expression.
12388 @item cb_expr, cb
12389 Set the chrominance blue expression.
12390 @item cr_expr, cr
12391 Set the chrominance red expression.
12392 @item alpha_expr, a
12393 Set the alpha expression.
12394 @item red_expr, r
12395 Set the red expression.
12396 @item green_expr, g
12397 Set the green expression.
12398 @item blue_expr, b
12399 Set the blue expression.
12400 @end table
12401
12402 The colorspace is selected according to the specified options. If one
12403 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
12404 options is specified, the filter will automatically select a YCbCr
12405 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
12406 @option{blue_expr} options is specified, it will select an RGB
12407 colorspace.
12408
12409 If one of the chrominance expression is not defined, it falls back on the other
12410 one. If no alpha expression is specified it will evaluate to opaque value.
12411 If none of chrominance expressions are specified, they will evaluate
12412 to the luminance expression.
12413
12414 The expressions can use the following variables and functions:
12415
12416 @table @option
12417 @item N
12418 The sequential number of the filtered frame, starting from @code{0}.
12419
12420 @item X
12421 @item Y
12422 The coordinates of the current sample.
12423
12424 @item W
12425 @item H
12426 The width and height of the image.
12427
12428 @item SW
12429 @item SH
12430 Width and height scale depending on the currently filtered plane. It is the
12431 ratio between the corresponding luma plane number of pixels and the current
12432 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
12433 @code{0.5,0.5} for chroma planes.
12434
12435 @item T
12436 Time of the current frame, expressed in seconds.
12437
12438 @item p(x, y)
12439 Return the value of the pixel at location (@var{x},@var{y}) of the current
12440 plane.
12441
12442 @item lum(x, y)
12443 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
12444 plane.
12445
12446 @item cb(x, y)
12447 Return the value of the pixel at location (@var{x},@var{y}) of the
12448 blue-difference chroma plane. Return 0 if there is no such plane.
12449
12450 @item cr(x, y)
12451 Return the value of the pixel at location (@var{x},@var{y}) of the
12452 red-difference chroma plane. Return 0 if there is no such plane.
12453
12454 @item r(x, y)
12455 @item g(x, y)
12456 @item b(x, y)
12457 Return the value of the pixel at location (@var{x},@var{y}) of the
12458 red/green/blue component. Return 0 if there is no such component.
12459
12460 @item alpha(x, y)
12461 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
12462 plane. Return 0 if there is no such plane.
12463
12464 @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)
12465 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
12466 sums of samples within a rectangle. See the functions without the sum postfix.
12467
12468 @item interpolation
12469 Set one of interpolation methods:
12470 @table @option
12471 @item nearest, n
12472 @item bilinear, b
12473 @end table
12474 Default is bilinear.
12475 @end table
12476
12477 For functions, if @var{x} and @var{y} are outside the area, the value will be
12478 automatically clipped to the closer edge.
12479
12480 Please note that this filter can use multiple threads in which case each slice
12481 will have its own expression state. If you want to use only a single expression
12482 state because your expressions depend on previous state then you should limit
12483 the number of filter threads to 1.
12484
12485 @subsection Examples
12486
12487 @itemize
12488 @item
12489 Flip the image horizontally:
12490 @example
12491 geq=p(W-X\,Y)
12492 @end example
12493
12494 @item
12495 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12496 wavelength of 100 pixels:
12497 @example
12498 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12499 @end example
12500
12501 @item
12502 Generate a fancy enigmatic moving light:
12503 @example
12504 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
12505 @end example
12506
12507 @item
12508 Generate a quick emboss effect:
12509 @example
12510 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12511 @end example
12512
12513 @item
12514 Modify RGB components depending on pixel position:
12515 @example
12516 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12517 @end example
12518
12519 @item
12520 Create a radial gradient that is the same size as the input (also see
12521 the @ref{vignette} filter):
12522 @example
12523 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12524 @end example
12525 @end itemize
12526
12527 @section gradfun
12528
12529 Fix the banding artifacts that are sometimes introduced into nearly flat
12530 regions by truncation to 8-bit color depth.
12531 Interpolate the gradients that should go where the bands are, and
12532 dither them.
12533
12534 It is designed for playback only.  Do not use it prior to
12535 lossy compression, because compression tends to lose the dither and
12536 bring back the bands.
12537
12538 It accepts the following parameters:
12539
12540 @table @option
12541
12542 @item strength
12543 The maximum amount by which the filter will change any one pixel. This is also
12544 the threshold for detecting nearly flat regions. Acceptable values range from
12545 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12546 valid range.
12547
12548 @item radius
12549 The neighborhood to fit the gradient to. A larger radius makes for smoother
12550 gradients, but also prevents the filter from modifying the pixels near detailed
12551 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12552 values will be clipped to the valid range.
12553
12554 @end table
12555
12556 Alternatively, the options can be specified as a flat string:
12557 @var{strength}[:@var{radius}]
12558
12559 @subsection Examples
12560
12561 @itemize
12562 @item
12563 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12564 @example
12565 gradfun=3.5:8
12566 @end example
12567
12568 @item
12569 Specify radius, omitting the strength (which will fall-back to the default
12570 value):
12571 @example
12572 gradfun=radius=8
12573 @end example
12574
12575 @end itemize
12576
12577 @anchor{graphmonitor}
12578 @section graphmonitor
12579 Show various filtergraph stats.
12580
12581 With this filter one can debug complete filtergraph.
12582 Especially issues with links filling with queued frames.
12583
12584 The filter accepts the following options:
12585
12586 @table @option
12587 @item size, s
12588 Set video output size. Default is @var{hd720}.
12589
12590 @item opacity, o
12591 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12592
12593 @item mode, m
12594 Set output mode, can be @var{fulll} or @var{compact}.
12595 In @var{compact} mode only filters with some queued frames have displayed stats.
12596
12597 @item flags, f
12598 Set flags which enable which stats are shown in video.
12599
12600 Available values for flags are:
12601 @table @samp
12602 @item queue
12603 Display number of queued frames in each link.
12604
12605 @item frame_count_in
12606 Display number of frames taken from filter.
12607
12608 @item frame_count_out
12609 Display number of frames given out from filter.
12610
12611 @item pts
12612 Display current filtered frame pts.
12613
12614 @item time
12615 Display current filtered frame time.
12616
12617 @item timebase
12618 Display time base for filter link.
12619
12620 @item format
12621 Display used format for filter link.
12622
12623 @item size
12624 Display video size or number of audio channels in case of audio used by filter link.
12625
12626 @item rate
12627 Display video frame rate or sample rate in case of audio used by filter link.
12628
12629 @item eof
12630 Display link output status.
12631 @end table
12632
12633 @item rate, r
12634 Set upper limit for video rate of output stream, Default value is @var{25}.
12635 This guarantee that output video frame rate will not be higher than this value.
12636 @end table
12637
12638 @section greyedge
12639 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12640 and corrects the scene colors accordingly.
12641
12642 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12643
12644 The filter accepts the following options:
12645
12646 @table @option
12647 @item difford
12648 The order of differentiation to be applied on the scene. Must be chosen in the range
12649 [0,2] and default value is 1.
12650
12651 @item minknorm
12652 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12653 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12654 max value instead of calculating Minkowski distance.
12655
12656 @item sigma
12657 The standard deviation of Gaussian blur to be applied on the scene. Must be
12658 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12659 can't be equal to 0 if @var{difford} is greater than 0.
12660 @end table
12661
12662 @subsection Examples
12663 @itemize
12664
12665 @item
12666 Grey Edge:
12667 @example
12668 greyedge=difford=1:minknorm=5:sigma=2
12669 @end example
12670
12671 @item
12672 Max Edge:
12673 @example
12674 greyedge=difford=1:minknorm=0:sigma=2
12675 @end example
12676
12677 @end itemize
12678
12679 @anchor{haldclut}
12680 @section haldclut
12681
12682 Apply a Hald CLUT to a video stream.
12683
12684 First input is the video stream to process, and second one is the Hald CLUT.
12685 The Hald CLUT input can be a simple picture or a complete video stream.
12686
12687 The filter accepts the following options:
12688
12689 @table @option
12690 @item shortest
12691 Force termination when the shortest input terminates. Default is @code{0}.
12692 @item repeatlast
12693 Continue applying the last CLUT after the end of the stream. A value of
12694 @code{0} disable the filter after the last frame of the CLUT is reached.
12695 Default is @code{1}.
12696 @end table
12697
12698 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12699 filters share the same internals).
12700
12701 This filter also supports the @ref{framesync} options.
12702
12703 More information about the Hald CLUT can be found on Eskil Steenberg's website
12704 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12705
12706 @subsection Workflow examples
12707
12708 @subsubsection Hald CLUT video stream
12709
12710 Generate an identity Hald CLUT stream altered with various effects:
12711 @example
12712 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
12713 @end example
12714
12715 Note: make sure you use a lossless codec.
12716
12717 Then use it with @code{haldclut} to apply it on some random stream:
12718 @example
12719 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12720 @end example
12721
12722 The Hald CLUT will be applied to the 10 first seconds (duration of
12723 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12724 to the remaining frames of the @code{mandelbrot} stream.
12725
12726 @subsubsection Hald CLUT with preview
12727
12728 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12729 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12730 biggest possible square starting at the top left of the picture. The remaining
12731 padding pixels (bottom or right) will be ignored. This area can be used to add
12732 a preview of the Hald CLUT.
12733
12734 Typically, the following generated Hald CLUT will be supported by the
12735 @code{haldclut} filter:
12736
12737 @example
12738 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12739    pad=iw+320 [padded_clut];
12740    smptebars=s=320x256, split [a][b];
12741    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12742    [main][b] overlay=W-320" -frames:v 1 clut.png
12743 @end example
12744
12745 It contains the original and a preview of the effect of the CLUT: SMPTE color
12746 bars are displayed on the right-top, and below the same color bars processed by
12747 the color changes.
12748
12749 Then, the effect of this Hald CLUT can be visualized with:
12750 @example
12751 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12752 @end example
12753
12754 @section hflip
12755
12756 Flip the input video horizontally.
12757
12758 For example, to horizontally flip the input video with @command{ffmpeg}:
12759 @example
12760 ffmpeg -i in.avi -vf "hflip" out.avi
12761 @end example
12762
12763 @section histeq
12764 This filter applies a global color histogram equalization on a
12765 per-frame basis.
12766
12767 It can be used to correct video that has a compressed range of pixel
12768 intensities.  The filter redistributes the pixel intensities to
12769 equalize their distribution across the intensity range. It may be
12770 viewed as an "automatically adjusting contrast filter". This filter is
12771 useful only for correcting degraded or poorly captured source
12772 video.
12773
12774 The filter accepts the following options:
12775
12776 @table @option
12777 @item strength
12778 Determine the amount of equalization to be applied.  As the strength
12779 is reduced, the distribution of pixel intensities more-and-more
12780 approaches that of the input frame. The value must be a float number
12781 in the range [0,1] and defaults to 0.200.
12782
12783 @item intensity
12784 Set the maximum intensity that can generated and scale the output
12785 values appropriately.  The strength should be set as desired and then
12786 the intensity can be limited if needed to avoid washing-out. The value
12787 must be a float number in the range [0,1] and defaults to 0.210.
12788
12789 @item antibanding
12790 Set the antibanding level. If enabled the filter will randomly vary
12791 the luminance of output pixels by a small amount to avoid banding of
12792 the histogram. Possible values are @code{none}, @code{weak} or
12793 @code{strong}. It defaults to @code{none}.
12794 @end table
12795
12796 @anchor{histogram}
12797 @section histogram
12798
12799 Compute and draw a color distribution histogram for the input video.
12800
12801 The computed histogram is a representation of the color component
12802 distribution in an image.
12803
12804 Standard histogram displays the color components distribution in an image.
12805 Displays color graph for each color component. Shows distribution of
12806 the Y, U, V, A or R, G, B components, depending on input format, in the
12807 current frame. Below each graph a color component scale meter is shown.
12808
12809 The filter accepts the following options:
12810
12811 @table @option
12812 @item level_height
12813 Set height of level. Default value is @code{200}.
12814 Allowed range is [50, 2048].
12815
12816 @item scale_height
12817 Set height of color scale. Default value is @code{12}.
12818 Allowed range is [0, 40].
12819
12820 @item display_mode
12821 Set display mode.
12822 It accepts the following values:
12823 @table @samp
12824 @item stack
12825 Per color component graphs are placed below each other.
12826
12827 @item parade
12828 Per color component graphs are placed side by side.
12829
12830 @item overlay
12831 Presents information identical to that in the @code{parade}, except
12832 that the graphs representing color components are superimposed directly
12833 over one another.
12834 @end table
12835 Default is @code{stack}.
12836
12837 @item levels_mode
12838 Set mode. Can be either @code{linear}, or @code{logarithmic}.
12839 Default is @code{linear}.
12840
12841 @item components
12842 Set what color components to display.
12843 Default is @code{7}.
12844
12845 @item fgopacity
12846 Set foreground opacity. Default is @code{0.7}.
12847
12848 @item bgopacity
12849 Set background opacity. Default is @code{0.5}.
12850 @end table
12851
12852 @subsection Examples
12853
12854 @itemize
12855
12856 @item
12857 Calculate and draw histogram:
12858 @example
12859 ffplay -i input -vf histogram
12860 @end example
12861
12862 @end itemize
12863
12864 @anchor{hqdn3d}
12865 @section hqdn3d
12866
12867 This is a high precision/quality 3d denoise filter. It aims to reduce
12868 image noise, producing smooth images and making still images really
12869 still. It should enhance compressibility.
12870
12871 It accepts the following optional parameters:
12872
12873 @table @option
12874 @item luma_spatial
12875 A non-negative floating point number which specifies spatial luma strength.
12876 It defaults to 4.0.
12877
12878 @item chroma_spatial
12879 A non-negative floating point number which specifies spatial chroma strength.
12880 It defaults to 3.0*@var{luma_spatial}/4.0.
12881
12882 @item luma_tmp
12883 A floating point number which specifies luma temporal strength. It defaults to
12884 6.0*@var{luma_spatial}/4.0.
12885
12886 @item chroma_tmp
12887 A floating point number which specifies chroma temporal strength. It defaults to
12888 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
12889 @end table
12890
12891 @subsection Commands
12892 This filter supports same @ref{commands} as options.
12893 The command accepts the same syntax of the corresponding option.
12894
12895 If the specified expression is not valid, it is kept at its current
12896 value.
12897
12898 @anchor{hwdownload}
12899 @section hwdownload
12900
12901 Download hardware frames to system memory.
12902
12903 The input must be in hardware frames, and the output a non-hardware format.
12904 Not all formats will be supported on the output - it may be necessary to insert
12905 an additional @option{format} filter immediately following in the graph to get
12906 the output in a supported format.
12907
12908 @section hwmap
12909
12910 Map hardware frames to system memory or to another device.
12911
12912 This filter has several different modes of operation; which one is used depends
12913 on the input and output formats:
12914 @itemize
12915 @item
12916 Hardware frame input, normal frame output
12917
12918 Map the input frames to system memory and pass them to the output.  If the
12919 original hardware frame is later required (for example, after overlaying
12920 something else on part of it), the @option{hwmap} filter can be used again
12921 in the next mode to retrieve it.
12922 @item
12923 Normal frame input, hardware frame output
12924
12925 If the input is actually a software-mapped hardware frame, then unmap it -
12926 that is, return the original hardware frame.
12927
12928 Otherwise, a device must be provided.  Create new hardware surfaces on that
12929 device for the output, then map them back to the software format at the input
12930 and give those frames to the preceding filter.  This will then act like the
12931 @option{hwupload} filter, but may be able to avoid an additional copy when
12932 the input is already in a compatible format.
12933 @item
12934 Hardware frame input and output
12935
12936 A device must be supplied for the output, either directly or with the
12937 @option{derive_device} option.  The input and output devices must be of
12938 different types and compatible - the exact meaning of this is
12939 system-dependent, but typically it means that they must refer to the same
12940 underlying hardware context (for example, refer to the same graphics card).
12941
12942 If the input frames were originally created on the output device, then unmap
12943 to retrieve the original frames.
12944
12945 Otherwise, map the frames to the output device - create new hardware frames
12946 on the output corresponding to the frames on the input.
12947 @end itemize
12948
12949 The following additional parameters are accepted:
12950
12951 @table @option
12952 @item mode
12953 Set the frame mapping mode.  Some combination of:
12954 @table @var
12955 @item read
12956 The mapped frame should be readable.
12957 @item write
12958 The mapped frame should be writeable.
12959 @item overwrite
12960 The mapping will always overwrite the entire frame.
12961
12962 This may improve performance in some cases, as the original contents of the
12963 frame need not be loaded.
12964 @item direct
12965 The mapping must not involve any copying.
12966
12967 Indirect mappings to copies of frames are created in some cases where either
12968 direct mapping is not possible or it would have unexpected properties.
12969 Setting this flag ensures that the mapping is direct and will fail if that is
12970 not possible.
12971 @end table
12972 Defaults to @var{read+write} if not specified.
12973
12974 @item derive_device @var{type}
12975 Rather than using the device supplied at initialisation, instead derive a new
12976 device of type @var{type} from the device the input frames exist on.
12977
12978 @item reverse
12979 In a hardware to hardware mapping, map in reverse - create frames in the sink
12980 and map them back to the source.  This may be necessary in some cases where
12981 a mapping in one direction is required but only the opposite direction is
12982 supported by the devices being used.
12983
12984 This option is dangerous - it may break the preceding filter in undefined
12985 ways if there are any additional constraints on that filter's output.
12986 Do not use it without fully understanding the implications of its use.
12987 @end table
12988
12989 @anchor{hwupload}
12990 @section hwupload
12991
12992 Upload system memory frames to hardware surfaces.
12993
12994 The device to upload to must be supplied when the filter is initialised.  If
12995 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12996 option or with the @option{derive_device} option.  The input and output devices
12997 must be of different types and compatible - the exact meaning of this is
12998 system-dependent, but typically it means that they must refer to the same
12999 underlying hardware context (for example, refer to the same graphics card).
13000
13001 The following additional parameters are accepted:
13002
13003 @table @option
13004 @item derive_device @var{type}
13005 Rather than using the device supplied at initialisation, instead derive a new
13006 device of type @var{type} from the device the input frames exist on.
13007 @end table
13008
13009 @anchor{hwupload_cuda}
13010 @section hwupload_cuda
13011
13012 Upload system memory frames to a CUDA device.
13013
13014 It accepts the following optional parameters:
13015
13016 @table @option
13017 @item device
13018 The number of the CUDA device to use
13019 @end table
13020
13021 @section hqx
13022
13023 Apply a high-quality magnification filter designed for pixel art. This filter
13024 was originally created by Maxim Stepin.
13025
13026 It accepts the following option:
13027
13028 @table @option
13029 @item n
13030 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
13031 @code{hq3x} and @code{4} for @code{hq4x}.
13032 Default is @code{3}.
13033 @end table
13034
13035 @section hstack
13036 Stack input videos horizontally.
13037
13038 All streams must be of same pixel format and of same height.
13039
13040 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13041 to create same output.
13042
13043 The filter accepts the following option:
13044
13045 @table @option
13046 @item inputs
13047 Set number of input streams. Default is 2.
13048
13049 @item shortest
13050 If set to 1, force the output to terminate when the shortest input
13051 terminates. Default value is 0.
13052 @end table
13053
13054 @section hue
13055
13056 Modify the hue and/or the saturation of the input.
13057
13058 It accepts the following parameters:
13059
13060 @table @option
13061 @item h
13062 Specify the hue angle as a number of degrees. It accepts an expression,
13063 and defaults to "0".
13064
13065 @item s
13066 Specify the saturation in the [-10,10] range. It accepts an expression and
13067 defaults to "1".
13068
13069 @item H
13070 Specify the hue angle as a number of radians. It accepts an
13071 expression, and defaults to "0".
13072
13073 @item b
13074 Specify the brightness in the [-10,10] range. It accepts an expression and
13075 defaults to "0".
13076 @end table
13077
13078 @option{h} and @option{H} are mutually exclusive, and can't be
13079 specified at the same time.
13080
13081 The @option{b}, @option{h}, @option{H} and @option{s} option values are
13082 expressions containing the following constants:
13083
13084 @table @option
13085 @item n
13086 frame count of the input frame starting from 0
13087
13088 @item pts
13089 presentation timestamp of the input frame expressed in time base units
13090
13091 @item r
13092 frame rate of the input video, NAN if the input frame rate is unknown
13093
13094 @item t
13095 timestamp expressed in seconds, NAN if the input timestamp is unknown
13096
13097 @item tb
13098 time base of the input video
13099 @end table
13100
13101 @subsection Examples
13102
13103 @itemize
13104 @item
13105 Set the hue to 90 degrees and the saturation to 1.0:
13106 @example
13107 hue=h=90:s=1
13108 @end example
13109
13110 @item
13111 Same command but expressing the hue in radians:
13112 @example
13113 hue=H=PI/2:s=1
13114 @end example
13115
13116 @item
13117 Rotate hue and make the saturation swing between 0
13118 and 2 over a period of 1 second:
13119 @example
13120 hue="H=2*PI*t: s=sin(2*PI*t)+1"
13121 @end example
13122
13123 @item
13124 Apply a 3 seconds saturation fade-in effect starting at 0:
13125 @example
13126 hue="s=min(t/3\,1)"
13127 @end example
13128
13129 The general fade-in expression can be written as:
13130 @example
13131 hue="s=min(0\, max((t-START)/DURATION\, 1))"
13132 @end example
13133
13134 @item
13135 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
13136 @example
13137 hue="s=max(0\, min(1\, (8-t)/3))"
13138 @end example
13139
13140 The general fade-out expression can be written as:
13141 @example
13142 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
13143 @end example
13144
13145 @end itemize
13146
13147 @subsection Commands
13148
13149 This filter supports the following commands:
13150 @table @option
13151 @item b
13152 @item s
13153 @item h
13154 @item H
13155 Modify the hue and/or the saturation and/or brightness of the input video.
13156 The command accepts the same syntax of the corresponding option.
13157
13158 If the specified expression is not valid, it is kept at its current
13159 value.
13160 @end table
13161
13162 @section hysteresis
13163
13164 Grow first stream into second stream by connecting components.
13165 This makes it possible to build more robust edge masks.
13166
13167 This filter accepts the following options:
13168
13169 @table @option
13170 @item planes
13171 Set which planes will be processed as bitmap, unprocessed planes will be
13172 copied from first stream.
13173 By default value 0xf, all planes will be processed.
13174
13175 @item threshold
13176 Set threshold which is used in filtering. If pixel component value is higher than
13177 this value filter algorithm for connecting components is activated.
13178 By default value is 0.
13179 @end table
13180
13181 The @code{hysteresis} filter also supports the @ref{framesync} options.
13182
13183 @section idet
13184
13185 Detect video interlacing type.
13186
13187 This filter tries to detect if the input frames are interlaced, progressive,
13188 top or bottom field first. It will also try to detect fields that are
13189 repeated between adjacent frames (a sign of telecine).
13190
13191 Single frame detection considers only immediately adjacent frames when classifying each frame.
13192 Multiple frame detection incorporates the classification history of previous frames.
13193
13194 The filter will log these metadata values:
13195
13196 @table @option
13197 @item single.current_frame
13198 Detected type of current frame using single-frame detection. One of:
13199 ``tff'' (top field first), ``bff'' (bottom field first),
13200 ``progressive'', or ``undetermined''
13201
13202 @item single.tff
13203 Cumulative number of frames detected as top field first using single-frame detection.
13204
13205 @item multiple.tff
13206 Cumulative number of frames detected as top field first using multiple-frame detection.
13207
13208 @item single.bff
13209 Cumulative number of frames detected as bottom field first using single-frame detection.
13210
13211 @item multiple.current_frame
13212 Detected type of current frame using multiple-frame detection. One of:
13213 ``tff'' (top field first), ``bff'' (bottom field first),
13214 ``progressive'', or ``undetermined''
13215
13216 @item multiple.bff
13217 Cumulative number of frames detected as bottom field first using multiple-frame detection.
13218
13219 @item single.progressive
13220 Cumulative number of frames detected as progressive using single-frame detection.
13221
13222 @item multiple.progressive
13223 Cumulative number of frames detected as progressive using multiple-frame detection.
13224
13225 @item single.undetermined
13226 Cumulative number of frames that could not be classified using single-frame detection.
13227
13228 @item multiple.undetermined
13229 Cumulative number of frames that could not be classified using multiple-frame detection.
13230
13231 @item repeated.current_frame
13232 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
13233
13234 @item repeated.neither
13235 Cumulative number of frames with no repeated field.
13236
13237 @item repeated.top
13238 Cumulative number of frames with the top field repeated from the previous frame's top field.
13239
13240 @item repeated.bottom
13241 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
13242 @end table
13243
13244 The filter accepts the following options:
13245
13246 @table @option
13247 @item intl_thres
13248 Set interlacing threshold.
13249 @item prog_thres
13250 Set progressive threshold.
13251 @item rep_thres
13252 Threshold for repeated field detection.
13253 @item half_life
13254 Number of frames after which a given frame's contribution to the
13255 statistics is halved (i.e., it contributes only 0.5 to its
13256 classification). The default of 0 means that all frames seen are given
13257 full weight of 1.0 forever.
13258 @item analyze_interlaced_flag
13259 When this is not 0 then idet will use the specified number of frames to determine
13260 if the interlaced flag is accurate, it will not count undetermined frames.
13261 If the flag is found to be accurate it will be used without any further
13262 computations, if it is found to be inaccurate it will be cleared without any
13263 further computations. This allows inserting the idet filter as a low computational
13264 method to clean up the interlaced flag
13265 @end table
13266
13267 @section il
13268
13269 Deinterleave or interleave fields.
13270
13271 This filter allows one to process interlaced images fields without
13272 deinterlacing them. Deinterleaving splits the input frame into 2
13273 fields (so called half pictures). Odd lines are moved to the top
13274 half of the output image, even lines to the bottom half.
13275 You can process (filter) them independently and then re-interleave them.
13276
13277 The filter accepts the following options:
13278
13279 @table @option
13280 @item luma_mode, l
13281 @item chroma_mode, c
13282 @item alpha_mode, a
13283 Available values for @var{luma_mode}, @var{chroma_mode} and
13284 @var{alpha_mode} are:
13285
13286 @table @samp
13287 @item none
13288 Do nothing.
13289
13290 @item deinterleave, d
13291 Deinterleave fields, placing one above the other.
13292
13293 @item interleave, i
13294 Interleave fields. Reverse the effect of deinterleaving.
13295 @end table
13296 Default value is @code{none}.
13297
13298 @item luma_swap, ls
13299 @item chroma_swap, cs
13300 @item alpha_swap, as
13301 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
13302 @end table
13303
13304 @subsection Commands
13305
13306 This filter supports the all above options as @ref{commands}.
13307
13308 @section inflate
13309
13310 Apply inflate effect to the video.
13311
13312 This filter replaces the pixel by the local(3x3) average by taking into account
13313 only values higher than the pixel.
13314
13315 It accepts the following options:
13316
13317 @table @option
13318 @item threshold0
13319 @item threshold1
13320 @item threshold2
13321 @item threshold3
13322 Limit the maximum change for each plane, default is 65535.
13323 If 0, plane will remain unchanged.
13324 @end table
13325
13326 @subsection Commands
13327
13328 This filter supports the all above options as @ref{commands}.
13329
13330 @section interlace
13331
13332 Simple interlacing filter from progressive contents. This interleaves upper (or
13333 lower) lines from odd frames with lower (or upper) lines from even frames,
13334 halving the frame rate and preserving image height.
13335
13336 @example
13337    Original        Original             New Frame
13338    Frame 'j'      Frame 'j+1'             (tff)
13339   ==========      ===========       ==================
13340     Line 0  -------------------->    Frame 'j' Line 0
13341     Line 1          Line 1  ---->   Frame 'j+1' Line 1
13342     Line 2 --------------------->    Frame 'j' Line 2
13343     Line 3          Line 3  ---->   Frame 'j+1' Line 3
13344      ...             ...                   ...
13345 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
13346 @end example
13347
13348 It accepts the following optional parameters:
13349
13350 @table @option
13351 @item scan
13352 This determines whether the interlaced frame is taken from the even
13353 (tff - default) or odd (bff) lines of the progressive frame.
13354
13355 @item lowpass
13356 Vertical lowpass filter to avoid twitter interlacing and
13357 reduce moire patterns.
13358
13359 @table @samp
13360 @item 0, off
13361 Disable vertical lowpass filter
13362
13363 @item 1, linear
13364 Enable linear filter (default)
13365
13366 @item 2, complex
13367 Enable complex filter. This will slightly less reduce twitter and moire
13368 but better retain detail and subjective sharpness impression.
13369
13370 @end table
13371 @end table
13372
13373 @section kerndeint
13374
13375 Deinterlace input video by applying Donald Graft's adaptive kernel
13376 deinterling. Work on interlaced parts of a video to produce
13377 progressive frames.
13378
13379 The description of the accepted parameters follows.
13380
13381 @table @option
13382 @item thresh
13383 Set the threshold which affects the filter's tolerance when
13384 determining if a pixel line must be processed. It must be an integer
13385 in the range [0,255] and defaults to 10. A value of 0 will result in
13386 applying the process on every pixels.
13387
13388 @item map
13389 Paint pixels exceeding the threshold value to white if set to 1.
13390 Default is 0.
13391
13392 @item order
13393 Set the fields order. Swap fields if set to 1, leave fields alone if
13394 0. Default is 0.
13395
13396 @item sharp
13397 Enable additional sharpening if set to 1. Default is 0.
13398
13399 @item twoway
13400 Enable twoway sharpening if set to 1. Default is 0.
13401 @end table
13402
13403 @subsection Examples
13404
13405 @itemize
13406 @item
13407 Apply default values:
13408 @example
13409 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
13410 @end example
13411
13412 @item
13413 Enable additional sharpening:
13414 @example
13415 kerndeint=sharp=1
13416 @end example
13417
13418 @item
13419 Paint processed pixels in white:
13420 @example
13421 kerndeint=map=1
13422 @end example
13423 @end itemize
13424
13425 @section kirsch
13426 Apply kirsch operator to input video stream.
13427
13428 The filter accepts the following option:
13429
13430 @table @option
13431 @item planes
13432 Set which planes will be processed, unprocessed planes will be copied.
13433 By default value 0xf, all planes will be processed.
13434
13435 @item scale
13436 Set value which will be multiplied with filtered result.
13437
13438 @item delta
13439 Set value which will be added to filtered result.
13440 @end table
13441
13442 @subsection Commands
13443
13444 This filter supports the all above options as @ref{commands}.
13445
13446 @section lagfun
13447
13448 Slowly update darker pixels.
13449
13450 This filter makes short flashes of light appear longer.
13451 This filter accepts the following options:
13452
13453 @table @option
13454 @item decay
13455 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
13456
13457 @item planes
13458 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
13459 @end table
13460
13461 @section lenscorrection
13462
13463 Correct radial lens distortion
13464
13465 This filter can be used to correct for radial distortion as can result from the use
13466 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
13467 one can use tools available for example as part of opencv or simply trial-and-error.
13468 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
13469 and extract the k1 and k2 coefficients from the resulting matrix.
13470
13471 Note that effectively the same filter is available in the open-source tools Krita and
13472 Digikam from the KDE project.
13473
13474 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
13475 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
13476 brightness distribution, so you may want to use both filters together in certain
13477 cases, though you will have to take care of ordering, i.e. whether vignetting should
13478 be applied before or after lens correction.
13479
13480 @subsection Options
13481
13482 The filter accepts the following options:
13483
13484 @table @option
13485 @item cx
13486 Relative x-coordinate of the focal point of the image, and thereby the center of the
13487 distortion. This value has a range [0,1] and is expressed as fractions of the image
13488 width. Default is 0.5.
13489 @item cy
13490 Relative y-coordinate of the focal point of the image, and thereby the center of the
13491 distortion. This value has a range [0,1] and is expressed as fractions of the image
13492 height. Default is 0.5.
13493 @item k1
13494 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
13495 no correction. Default is 0.
13496 @item k2
13497 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13498 0 means no correction. Default is 0.
13499 @item i
13500 Set interpolation type. Can be @code{nearest} or @code{bilinear}.
13501 Default is @code{nearest}.
13502 @item fc
13503 Specify the color of the unmapped pixels. For the syntax of this option,
13504 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
13505 manual,ffmpeg-utils}. Default color is @code{black@@0}.
13506 @end table
13507
13508 The formula that generates the correction is:
13509
13510 @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)
13511
13512 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13513 distances from the focal point in the source and target images, respectively.
13514
13515 @subsection Commands
13516
13517 This filter supports the all above options as @ref{commands}.
13518
13519 @section lensfun
13520
13521 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13522
13523 The @code{lensfun} filter requires the camera make, camera model, and lens model
13524 to apply the lens correction. The filter will load the lensfun database and
13525 query it to find the corresponding camera and lens entries in the database. As
13526 long as these entries can be found with the given options, the filter can
13527 perform corrections on frames. Note that incomplete strings will result in the
13528 filter choosing the best match with the given options, and the filter will
13529 output the chosen camera and lens models (logged with level "info"). You must
13530 provide the make, camera model, and lens model as they are required.
13531
13532 The filter accepts the following options:
13533
13534 @table @option
13535 @item make
13536 The make of the camera (for example, "Canon"). This option is required.
13537
13538 @item model
13539 The model of the camera (for example, "Canon EOS 100D"). This option is
13540 required.
13541
13542 @item lens_model
13543 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13544 option is required.
13545
13546 @item mode
13547 The type of correction to apply. The following values are valid options:
13548
13549 @table @samp
13550 @item vignetting
13551 Enables fixing lens vignetting.
13552
13553 @item geometry
13554 Enables fixing lens geometry. This is the default.
13555
13556 @item subpixel
13557 Enables fixing chromatic aberrations.
13558
13559 @item vig_geo
13560 Enables fixing lens vignetting and lens geometry.
13561
13562 @item vig_subpixel
13563 Enables fixing lens vignetting and chromatic aberrations.
13564
13565 @item distortion
13566 Enables fixing both lens geometry and chromatic aberrations.
13567
13568 @item all
13569 Enables all possible corrections.
13570
13571 @end table
13572 @item focal_length
13573 The focal length of the image/video (zoom; expected constant for video). For
13574 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13575 range should be chosen when using that lens. Default 18.
13576
13577 @item aperture
13578 The aperture of the image/video (expected constant for video). Note that
13579 aperture is only used for vignetting correction. Default 3.5.
13580
13581 @item focus_distance
13582 The focus distance of the image/video (expected constant for video). Note that
13583 focus distance is only used for vignetting and only slightly affects the
13584 vignetting correction process. If unknown, leave it at the default value (which
13585 is 1000).
13586
13587 @item scale
13588 The scale factor which is applied after transformation. After correction the
13589 video is no longer necessarily rectangular. This parameter controls how much of
13590 the resulting image is visible. The value 0 means that a value will be chosen
13591 automatically such that there is little or no unmapped area in the output
13592 image. 1.0 means that no additional scaling is done. Lower values may result
13593 in more of the corrected image being visible, while higher values may avoid
13594 unmapped areas in the output.
13595
13596 @item target_geometry
13597 The target geometry of the output image/video. The following values are valid
13598 options:
13599
13600 @table @samp
13601 @item rectilinear (default)
13602 @item fisheye
13603 @item panoramic
13604 @item equirectangular
13605 @item fisheye_orthographic
13606 @item fisheye_stereographic
13607 @item fisheye_equisolid
13608 @item fisheye_thoby
13609 @end table
13610 @item reverse
13611 Apply the reverse of image correction (instead of correcting distortion, apply
13612 it).
13613
13614 @item interpolation
13615 The type of interpolation used when correcting distortion. The following values
13616 are valid options:
13617
13618 @table @samp
13619 @item nearest
13620 @item linear (default)
13621 @item lanczos
13622 @end table
13623 @end table
13624
13625 @subsection Examples
13626
13627 @itemize
13628 @item
13629 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13630 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13631 aperture of "8.0".
13632
13633 @example
13634 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
13635 @end example
13636
13637 @item
13638 Apply the same as before, but only for the first 5 seconds of video.
13639
13640 @example
13641 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
13642 @end example
13643
13644 @end itemize
13645
13646 @section libvmaf
13647
13648 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13649 score between two input videos.
13650
13651 The obtained VMAF score is printed through the logging system.
13652
13653 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13654 After installing the library it can be enabled using:
13655 @code{./configure --enable-libvmaf}.
13656 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13657
13658 The filter has following options:
13659
13660 @table @option
13661 @item model_path
13662 Set the model path which is to be used for SVM.
13663 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13664
13665 @item log_path
13666 Set the file path to be used to store logs.
13667
13668 @item log_fmt
13669 Set the format of the log file (csv, json or xml).
13670
13671 @item enable_transform
13672 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13673 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13674 Default value: @code{false}
13675
13676 @item phone_model
13677 Invokes the phone model which will generate VMAF scores higher than in the
13678 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13679 Default value: @code{false}
13680
13681 @item psnr
13682 Enables computing psnr along with vmaf.
13683 Default value: @code{false}
13684
13685 @item ssim
13686 Enables computing ssim along with vmaf.
13687 Default value: @code{false}
13688
13689 @item ms_ssim
13690 Enables computing ms_ssim along with vmaf.
13691 Default value: @code{false}
13692
13693 @item pool
13694 Set the pool method to be used for computing vmaf.
13695 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13696
13697 @item n_threads
13698 Set number of threads to be used when computing vmaf.
13699 Default value: @code{0}, which makes use of all available logical processors.
13700
13701 @item n_subsample
13702 Set interval for frame subsampling used when computing vmaf.
13703 Default value: @code{1}
13704
13705 @item enable_conf_interval
13706 Enables confidence interval.
13707 Default value: @code{false}
13708 @end table
13709
13710 This filter also supports the @ref{framesync} options.
13711
13712 @subsection Examples
13713 @itemize
13714 @item
13715 On the below examples the input file @file{main.mpg} being processed is
13716 compared with the reference file @file{ref.mpg}.
13717
13718 @example
13719 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13720 @end example
13721
13722 @item
13723 Example with options:
13724 @example
13725 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13726 @end example
13727
13728 @item
13729 Example with options and different containers:
13730 @example
13731 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 -
13732 @end example
13733 @end itemize
13734
13735 @section limiter
13736
13737 Limits the pixel components values to the specified range [min, max].
13738
13739 The filter accepts the following options:
13740
13741 @table @option
13742 @item min
13743 Lower bound. Defaults to the lowest allowed value for the input.
13744
13745 @item max
13746 Upper bound. Defaults to the highest allowed value for the input.
13747
13748 @item planes
13749 Specify which planes will be processed. Defaults to all available.
13750 @end table
13751
13752 @subsection Commands
13753
13754 This filter supports the all above options as @ref{commands}.
13755
13756 @section loop
13757
13758 Loop video frames.
13759
13760 The filter accepts the following options:
13761
13762 @table @option
13763 @item loop
13764 Set the number of loops. Setting this value to -1 will result in infinite loops.
13765 Default is 0.
13766
13767 @item size
13768 Set maximal size in number of frames. Default is 0.
13769
13770 @item start
13771 Set first frame of loop. Default is 0.
13772 @end table
13773
13774 @subsection Examples
13775
13776 @itemize
13777 @item
13778 Loop single first frame infinitely:
13779 @example
13780 loop=loop=-1:size=1:start=0
13781 @end example
13782
13783 @item
13784 Loop single first frame 10 times:
13785 @example
13786 loop=loop=10:size=1:start=0
13787 @end example
13788
13789 @item
13790 Loop 10 first frames 5 times:
13791 @example
13792 loop=loop=5:size=10:start=0
13793 @end example
13794 @end itemize
13795
13796 @section lut1d
13797
13798 Apply a 1D LUT to an input video.
13799
13800 The filter accepts the following options:
13801
13802 @table @option
13803 @item file
13804 Set the 1D LUT file name.
13805
13806 Currently supported formats:
13807 @table @samp
13808 @item cube
13809 Iridas
13810 @item csp
13811 cineSpace
13812 @end table
13813
13814 @item interp
13815 Select interpolation mode.
13816
13817 Available values are:
13818
13819 @table @samp
13820 @item nearest
13821 Use values from the nearest defined point.
13822 @item linear
13823 Interpolate values using the linear interpolation.
13824 @item cosine
13825 Interpolate values using the cosine interpolation.
13826 @item cubic
13827 Interpolate values using the cubic interpolation.
13828 @item spline
13829 Interpolate values using the spline interpolation.
13830 @end table
13831 @end table
13832
13833 @anchor{lut3d}
13834 @section lut3d
13835
13836 Apply a 3D LUT to an input video.
13837
13838 The filter accepts the following options:
13839
13840 @table @option
13841 @item file
13842 Set the 3D LUT file name.
13843
13844 Currently supported formats:
13845 @table @samp
13846 @item 3dl
13847 AfterEffects
13848 @item cube
13849 Iridas
13850 @item dat
13851 DaVinci
13852 @item m3d
13853 Pandora
13854 @item csp
13855 cineSpace
13856 @end table
13857 @item interp
13858 Select interpolation mode.
13859
13860 Available values are:
13861
13862 @table @samp
13863 @item nearest
13864 Use values from the nearest defined point.
13865 @item trilinear
13866 Interpolate values using the 8 points defining a cube.
13867 @item tetrahedral
13868 Interpolate values using a tetrahedron.
13869 @item pyramid
13870 Interpolate values using a pyramid.
13871 @item prism
13872 Interpolate values using a prism.
13873 @end table
13874 @end table
13875
13876 @section lumakey
13877
13878 Turn certain luma values into transparency.
13879
13880 The filter accepts the following options:
13881
13882 @table @option
13883 @item threshold
13884 Set the luma which will be used as base for transparency.
13885 Default value is @code{0}.
13886
13887 @item tolerance
13888 Set the range of luma values to be keyed out.
13889 Default value is @code{0.01}.
13890
13891 @item softness
13892 Set the range of softness. Default value is @code{0}.
13893 Use this to control gradual transition from zero to full transparency.
13894 @end table
13895
13896 @subsection Commands
13897 This filter supports same @ref{commands} as options.
13898 The command accepts the same syntax of the corresponding option.
13899
13900 If the specified expression is not valid, it is kept at its current
13901 value.
13902
13903 @section lut, lutrgb, lutyuv
13904
13905 Compute a look-up table for binding each pixel component input value
13906 to an output value, and apply it to the input video.
13907
13908 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
13909 to an RGB input video.
13910
13911 These filters accept the following parameters:
13912 @table @option
13913 @item c0
13914 set first pixel component expression
13915 @item c1
13916 set second pixel component expression
13917 @item c2
13918 set third pixel component expression
13919 @item c3
13920 set fourth pixel component expression, corresponds to the alpha component
13921
13922 @item r
13923 set red component expression
13924 @item g
13925 set green component expression
13926 @item b
13927 set blue component expression
13928 @item a
13929 alpha component expression
13930
13931 @item y
13932 set Y/luminance component expression
13933 @item u
13934 set U/Cb component expression
13935 @item v
13936 set V/Cr component expression
13937 @end table
13938
13939 Each of them specifies the expression to use for computing the lookup table for
13940 the corresponding pixel component values.
13941
13942 The exact component associated to each of the @var{c*} options depends on the
13943 format in input.
13944
13945 The @var{lut} filter requires either YUV or RGB pixel formats in input,
13946 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
13947
13948 The expressions can contain the following constants and functions:
13949
13950 @table @option
13951 @item w
13952 @item h
13953 The input width and height.
13954
13955 @item val
13956 The input value for the pixel component.
13957
13958 @item clipval
13959 The input value, clipped to the @var{minval}-@var{maxval} range.
13960
13961 @item maxval
13962 The maximum value for the pixel component.
13963
13964 @item minval
13965 The minimum value for the pixel component.
13966
13967 @item negval
13968 The negated value for the pixel component value, clipped to the
13969 @var{minval}-@var{maxval} range; it corresponds to the expression
13970 "maxval-clipval+minval".
13971
13972 @item clip(val)
13973 The computed value in @var{val}, clipped to the
13974 @var{minval}-@var{maxval} range.
13975
13976 @item gammaval(gamma)
13977 The computed gamma correction value of the pixel component value,
13978 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13979 expression
13980 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13981
13982 @end table
13983
13984 All expressions default to "val".
13985
13986 @subsection Examples
13987
13988 @itemize
13989 @item
13990 Negate input video:
13991 @example
13992 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13993 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13994 @end example
13995
13996 The above is the same as:
13997 @example
13998 lutrgb="r=negval:g=negval:b=negval"
13999 lutyuv="y=negval:u=negval:v=negval"
14000 @end example
14001
14002 @item
14003 Negate luminance:
14004 @example
14005 lutyuv=y=negval
14006 @end example
14007
14008 @item
14009 Remove chroma components, turning the video into a graytone image:
14010 @example
14011 lutyuv="u=128:v=128"
14012 @end example
14013
14014 @item
14015 Apply a luma burning effect:
14016 @example
14017 lutyuv="y=2*val"
14018 @end example
14019
14020 @item
14021 Remove green and blue components:
14022 @example
14023 lutrgb="g=0:b=0"
14024 @end example
14025
14026 @item
14027 Set a constant alpha channel value on input:
14028 @example
14029 format=rgba,lutrgb=a="maxval-minval/2"
14030 @end example
14031
14032 @item
14033 Correct luminance gamma by a factor of 0.5:
14034 @example
14035 lutyuv=y=gammaval(0.5)
14036 @end example
14037
14038 @item
14039 Discard least significant bits of luma:
14040 @example
14041 lutyuv=y='bitand(val, 128+64+32)'
14042 @end example
14043
14044 @item
14045 Technicolor like effect:
14046 @example
14047 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
14048 @end example
14049 @end itemize
14050
14051 @section lut2, tlut2
14052
14053 The @code{lut2} filter takes two input streams and outputs one
14054 stream.
14055
14056 The @code{tlut2} (time lut2) filter takes two consecutive frames
14057 from one single stream.
14058
14059 This filter accepts the following parameters:
14060 @table @option
14061 @item c0
14062 set first pixel component expression
14063 @item c1
14064 set second pixel component expression
14065 @item c2
14066 set third pixel component expression
14067 @item c3
14068 set fourth pixel component expression, corresponds to the alpha component
14069
14070 @item d
14071 set output bit depth, only available for @code{lut2} filter. By default is 0,
14072 which means bit depth is automatically picked from first input format.
14073 @end table
14074
14075 The @code{lut2} filter also supports the @ref{framesync} options.
14076
14077 Each of them specifies the expression to use for computing the lookup table for
14078 the corresponding pixel component values.
14079
14080 The exact component associated to each of the @var{c*} options depends on the
14081 format in inputs.
14082
14083 The expressions can contain the following constants:
14084
14085 @table @option
14086 @item w
14087 @item h
14088 The input width and height.
14089
14090 @item x
14091 The first input value for the pixel component.
14092
14093 @item y
14094 The second input value for the pixel component.
14095
14096 @item bdx
14097 The first input video bit depth.
14098
14099 @item bdy
14100 The second input video bit depth.
14101 @end table
14102
14103 All expressions default to "x".
14104
14105 @subsection Examples
14106
14107 @itemize
14108 @item
14109 Highlight differences between two RGB video streams:
14110 @example
14111 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)'
14112 @end example
14113
14114 @item
14115 Highlight differences between two YUV video streams:
14116 @example
14117 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)'
14118 @end example
14119
14120 @item
14121 Show max difference between two video streams:
14122 @example
14123 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)))'
14124 @end example
14125 @end itemize
14126
14127 @section maskedclamp
14128
14129 Clamp the first input stream with the second input and third input stream.
14130
14131 Returns the value of first stream to be between second input
14132 stream - @code{undershoot} and third input stream + @code{overshoot}.
14133
14134 This filter accepts the following options:
14135 @table @option
14136 @item undershoot
14137 Default value is @code{0}.
14138
14139 @item overshoot
14140 Default value is @code{0}.
14141
14142 @item planes
14143 Set which planes will be processed as bitmap, unprocessed planes will be
14144 copied from first stream.
14145 By default value 0xf, all planes will be processed.
14146 @end table
14147
14148 @subsection Commands
14149
14150 This filter supports the all above options as @ref{commands}.
14151
14152 @section maskedmax
14153
14154 Merge the second and third input stream into output stream using absolute differences
14155 between second input stream and first input stream and absolute difference between
14156 third input stream and first input stream. The picked value will be from second input
14157 stream if second absolute difference is greater than first one or from third input stream
14158 otherwise.
14159
14160 This filter accepts the following options:
14161 @table @option
14162 @item planes
14163 Set which planes will be processed as bitmap, unprocessed planes will be
14164 copied from first 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 maskedmerge
14173
14174 Merge the first input stream with the second input stream using per pixel
14175 weights in the third input stream.
14176
14177 A value of 0 in the third stream pixel component means that pixel component
14178 from first stream is returned unchanged, while maximum value (eg. 255 for
14179 8-bit videos) means that pixel component from second stream is returned
14180 unchanged. Intermediate values define the amount of merging between both
14181 input stream's pixel components.
14182
14183 This filter accepts the following options:
14184 @table @option
14185 @item planes
14186 Set which planes will be processed as bitmap, unprocessed planes will be
14187 copied from first stream.
14188 By default value 0xf, all planes will be processed.
14189 @end table
14190
14191 @subsection Commands
14192
14193 This filter supports the all above options as @ref{commands}.
14194
14195 @section maskedmin
14196
14197 Merge the second and third input stream into output stream using absolute differences
14198 between second input stream and first input stream and absolute difference between
14199 third input stream and first input stream. The picked value will be from second input
14200 stream if second absolute difference is less than first one or from third input stream
14201 otherwise.
14202
14203 This filter accepts the following options:
14204 @table @option
14205 @item planes
14206 Set which planes will be processed as bitmap, unprocessed planes will be
14207 copied from first stream.
14208 By default value 0xf, all planes will be processed.
14209 @end table
14210
14211 @subsection Commands
14212
14213 This filter supports the all above options as @ref{commands}.
14214
14215 @section maskedthreshold
14216 Pick pixels comparing absolute difference of two video streams with fixed
14217 threshold.
14218
14219 If absolute difference between pixel component of first and second video
14220 stream is equal or lower than user supplied threshold than pixel component
14221 from first video stream is picked, otherwise pixel component from second
14222 video stream is picked.
14223
14224 This filter accepts the following options:
14225 @table @option
14226 @item threshold
14227 Set threshold used when picking pixels from absolute difference from two input
14228 video streams.
14229
14230 @item planes
14231 Set which planes will be processed as bitmap, unprocessed planes will be
14232 copied from second stream.
14233 By default value 0xf, all planes will be processed.
14234 @end table
14235
14236 @subsection Commands
14237
14238 This filter supports the all above options as @ref{commands}.
14239
14240 @section maskfun
14241 Create mask from input video.
14242
14243 For example it is useful to create motion masks after @code{tblend} filter.
14244
14245 This filter accepts the following options:
14246
14247 @table @option
14248 @item low
14249 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
14250
14251 @item high
14252 Set high threshold. Any pixel component higher than this value will be set to max value
14253 allowed for current pixel format.
14254
14255 @item planes
14256 Set planes to filter, by default all available planes are filtered.
14257
14258 @item fill
14259 Fill all frame pixels with this value.
14260
14261 @item sum
14262 Set max average pixel value for frame. If sum of all pixel components is higher that this
14263 average, output frame will be completely filled with value set by @var{fill} option.
14264 Typically useful for scene changes when used in combination with @code{tblend} filter.
14265 @end table
14266
14267 @section mcdeint
14268
14269 Apply motion-compensation deinterlacing.
14270
14271 It needs one field per frame as input and must thus be used together
14272 with yadif=1/3 or equivalent.
14273
14274 This filter accepts the following options:
14275 @table @option
14276 @item mode
14277 Set the deinterlacing mode.
14278
14279 It accepts one of the following values:
14280 @table @samp
14281 @item fast
14282 @item medium
14283 @item slow
14284 use iterative motion estimation
14285 @item extra_slow
14286 like @samp{slow}, but use multiple reference frames.
14287 @end table
14288 Default value is @samp{fast}.
14289
14290 @item parity
14291 Set the picture field parity assumed for the input video. It must be
14292 one of the following values:
14293
14294 @table @samp
14295 @item 0, tff
14296 assume top field first
14297 @item 1, bff
14298 assume bottom field first
14299 @end table
14300
14301 Default value is @samp{bff}.
14302
14303 @item qp
14304 Set per-block quantization parameter (QP) used by the internal
14305 encoder.
14306
14307 Higher values should result in a smoother motion vector field but less
14308 optimal individual vectors. Default value is 1.
14309 @end table
14310
14311 @section median
14312
14313 Pick median pixel from certain rectangle defined by radius.
14314
14315 This filter accepts the following options:
14316
14317 @table @option
14318 @item radius
14319 Set horizontal radius size. Default value is @code{1}.
14320 Allowed range is integer from 1 to 127.
14321
14322 @item planes
14323 Set which planes to process. Default is @code{15}, which is all available planes.
14324
14325 @item radiusV
14326 Set vertical radius size. Default value is @code{0}.
14327 Allowed range is integer from 0 to 127.
14328 If it is 0, value will be picked from horizontal @code{radius} option.
14329
14330 @item percentile
14331 Set median percentile. Default value is @code{0.5}.
14332 Default value of @code{0.5} will pick always median values, while @code{0} will pick
14333 minimum values, and @code{1} maximum values.
14334 @end table
14335
14336 @subsection Commands
14337 This filter supports same @ref{commands} as options.
14338 The command accepts the same syntax of the corresponding option.
14339
14340 If the specified expression is not valid, it is kept at its current
14341 value.
14342
14343 @section mergeplanes
14344
14345 Merge color channel components from several video streams.
14346
14347 The filter accepts up to 4 input streams, and merge selected input
14348 planes to the output video.
14349
14350 This filter accepts the following options:
14351 @table @option
14352 @item mapping
14353 Set input to output plane mapping. Default is @code{0}.
14354
14355 The mappings is specified as a bitmap. It should be specified as a
14356 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
14357 mapping for the first plane of the output stream. 'A' sets the number of
14358 the input stream to use (from 0 to 3), and 'a' the plane number of the
14359 corresponding input to use (from 0 to 3). The rest of the mappings is
14360 similar, 'Bb' describes the mapping for the output stream second
14361 plane, 'Cc' describes the mapping for the output stream third plane and
14362 'Dd' describes the mapping for the output stream fourth plane.
14363
14364 @item format
14365 Set output pixel format. Default is @code{yuva444p}.
14366 @end table
14367
14368 @subsection Examples
14369
14370 @itemize
14371 @item
14372 Merge three gray video streams of same width and height into single video stream:
14373 @example
14374 [a0][a1][a2]mergeplanes=0x001020:yuv444p
14375 @end example
14376
14377 @item
14378 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
14379 @example
14380 [a0][a1]mergeplanes=0x00010210:yuva444p
14381 @end example
14382
14383 @item
14384 Swap Y and A plane in yuva444p stream:
14385 @example
14386 format=yuva444p,mergeplanes=0x03010200:yuva444p
14387 @end example
14388
14389 @item
14390 Swap U and V plane in yuv420p stream:
14391 @example
14392 format=yuv420p,mergeplanes=0x000201:yuv420p
14393 @end example
14394
14395 @item
14396 Cast a rgb24 clip to yuv444p:
14397 @example
14398 format=rgb24,mergeplanes=0x000102:yuv444p
14399 @end example
14400 @end itemize
14401
14402 @section mestimate
14403
14404 Estimate and export motion vectors using block matching algorithms.
14405 Motion vectors are stored in frame side data to be used by other filters.
14406
14407 This filter accepts the following options:
14408 @table @option
14409 @item method
14410 Specify the motion estimation method. Accepts one of the following values:
14411
14412 @table @samp
14413 @item esa
14414 Exhaustive search algorithm.
14415 @item tss
14416 Three step search algorithm.
14417 @item tdls
14418 Two dimensional logarithmic search algorithm.
14419 @item ntss
14420 New three step search algorithm.
14421 @item fss
14422 Four step search algorithm.
14423 @item ds
14424 Diamond search algorithm.
14425 @item hexbs
14426 Hexagon-based search algorithm.
14427 @item epzs
14428 Enhanced predictive zonal search algorithm.
14429 @item umh
14430 Uneven multi-hexagon search algorithm.
14431 @end table
14432 Default value is @samp{esa}.
14433
14434 @item mb_size
14435 Macroblock size. Default @code{16}.
14436
14437 @item search_param
14438 Search parameter. Default @code{7}.
14439 @end table
14440
14441 @section midequalizer
14442
14443 Apply Midway Image Equalization effect using two video streams.
14444
14445 Midway Image Equalization adjusts a pair of images to have the same
14446 histogram, while maintaining their dynamics as much as possible. It's
14447 useful for e.g. matching exposures from a pair of stereo cameras.
14448
14449 This filter has two inputs and one output, which must be of same pixel format, but
14450 may be of different sizes. The output of filter is first input adjusted with
14451 midway histogram of both inputs.
14452
14453 This filter accepts the following option:
14454
14455 @table @option
14456 @item planes
14457 Set which planes to process. Default is @code{15}, which is all available planes.
14458 @end table
14459
14460 @section minterpolate
14461
14462 Convert the video to specified frame rate using motion interpolation.
14463
14464 This filter accepts the following options:
14465 @table @option
14466 @item fps
14467 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}.
14468
14469 @item mi_mode
14470 Motion interpolation mode. Following values are accepted:
14471 @table @samp
14472 @item dup
14473 Duplicate previous or next frame for interpolating new ones.
14474 @item blend
14475 Blend source frames. Interpolated frame is mean of previous and next frames.
14476 @item mci
14477 Motion compensated interpolation. Following options are effective when this mode is selected:
14478
14479 @table @samp
14480 @item mc_mode
14481 Motion compensation mode. Following values are accepted:
14482 @table @samp
14483 @item obmc
14484 Overlapped block motion compensation.
14485 @item aobmc
14486 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
14487 @end table
14488 Default mode is @samp{obmc}.
14489
14490 @item me_mode
14491 Motion estimation mode. Following values are accepted:
14492 @table @samp
14493 @item bidir
14494 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
14495 @item bilat
14496 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
14497 @end table
14498 Default mode is @samp{bilat}.
14499
14500 @item me
14501 The algorithm to be used for motion estimation. Following values are accepted:
14502 @table @samp
14503 @item esa
14504 Exhaustive search algorithm.
14505 @item tss
14506 Three step search algorithm.
14507 @item tdls
14508 Two dimensional logarithmic search algorithm.
14509 @item ntss
14510 New three step search algorithm.
14511 @item fss
14512 Four step search algorithm.
14513 @item ds
14514 Diamond search algorithm.
14515 @item hexbs
14516 Hexagon-based search algorithm.
14517 @item epzs
14518 Enhanced predictive zonal search algorithm.
14519 @item umh
14520 Uneven multi-hexagon search algorithm.
14521 @end table
14522 Default algorithm is @samp{epzs}.
14523
14524 @item mb_size
14525 Macroblock size. Default @code{16}.
14526
14527 @item search_param
14528 Motion estimation search parameter. Default @code{32}.
14529
14530 @item vsbmc
14531 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).
14532 @end table
14533 @end table
14534
14535 @item scd
14536 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:
14537 @table @samp
14538 @item none
14539 Disable scene change detection.
14540 @item fdiff
14541 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14542 @end table
14543 Default method is @samp{fdiff}.
14544
14545 @item scd_threshold
14546 Scene change detection threshold. Default is @code{10.}.
14547 @end table
14548
14549 @section mix
14550
14551 Mix several video input streams into one video stream.
14552
14553 A description of the accepted options follows.
14554
14555 @table @option
14556 @item nb_inputs
14557 The number of inputs. If unspecified, it defaults to 2.
14558
14559 @item weights
14560 Specify weight of each input video stream as sequence.
14561 Each weight is separated by space. If number of weights
14562 is smaller than number of @var{frames} last specified
14563 weight will be used for all remaining unset weights.
14564
14565 @item scale
14566 Specify scale, if it is set it will be multiplied with sum
14567 of each weight multiplied with pixel values to give final destination
14568 pixel value. By default @var{scale} is auto scaled to sum of weights.
14569
14570 @item duration
14571 Specify how end of stream is determined.
14572 @table @samp
14573 @item longest
14574 The duration of the longest input. (default)
14575
14576 @item shortest
14577 The duration of the shortest input.
14578
14579 @item first
14580 The duration of the first input.
14581 @end table
14582 @end table
14583
14584 @section mpdecimate
14585
14586 Drop frames that do not differ greatly from the previous frame in
14587 order to reduce frame rate.
14588
14589 The main use of this filter is for very-low-bitrate encoding
14590 (e.g. streaming over dialup modem), but it could in theory be used for
14591 fixing movies that were inverse-telecined incorrectly.
14592
14593 A description of the accepted options follows.
14594
14595 @table @option
14596 @item max
14597 Set the maximum number of consecutive frames which can be dropped (if
14598 positive), or the minimum interval between dropped frames (if
14599 negative). If the value is 0, the frame is dropped disregarding the
14600 number of previous sequentially dropped frames.
14601
14602 Default value is 0.
14603
14604 @item hi
14605 @item lo
14606 @item frac
14607 Set the dropping threshold values.
14608
14609 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14610 represent actual pixel value differences, so a threshold of 64
14611 corresponds to 1 unit of difference for each pixel, or the same spread
14612 out differently over the block.
14613
14614 A frame is a candidate for dropping if no 8x8 blocks differ by more
14615 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14616 meaning the whole image) differ by more than a threshold of @option{lo}.
14617
14618 Default value for @option{hi} is 64*12, default value for @option{lo} is
14619 64*5, and default value for @option{frac} is 0.33.
14620 @end table
14621
14622
14623 @section negate
14624
14625 Negate (invert) the input video.
14626
14627 It accepts the following option:
14628
14629 @table @option
14630
14631 @item negate_alpha
14632 With value 1, it negates the alpha component, if present. Default value is 0.
14633 @end table
14634
14635 @anchor{nlmeans}
14636 @section nlmeans
14637
14638 Denoise frames using Non-Local Means algorithm.
14639
14640 Each pixel is adjusted by looking for other pixels with similar contexts. This
14641 context similarity is defined by comparing their surrounding patches of size
14642 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14643 around the pixel.
14644
14645 Note that the research area defines centers for patches, which means some
14646 patches will be made of pixels outside that research area.
14647
14648 The filter accepts the following options.
14649
14650 @table @option
14651 @item s
14652 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
14653
14654 @item p
14655 Set patch size. Default is 7. Must be odd number in range [0, 99].
14656
14657 @item pc
14658 Same as @option{p} but for chroma planes.
14659
14660 The default value is @var{0} and means automatic.
14661
14662 @item r
14663 Set research size. Default is 15. Must be odd number in range [0, 99].
14664
14665 @item rc
14666 Same as @option{r} but for chroma planes.
14667
14668 The default value is @var{0} and means automatic.
14669 @end table
14670
14671 @section nnedi
14672
14673 Deinterlace video using neural network edge directed interpolation.
14674
14675 This filter accepts the following options:
14676
14677 @table @option
14678 @item weights
14679 Mandatory option, without binary file filter can not work.
14680 Currently file can be found here:
14681 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
14682
14683 @item deint
14684 Set which frames to deinterlace, by default it is @code{all}.
14685 Can be @code{all} or @code{interlaced}.
14686
14687 @item field
14688 Set mode of operation.
14689
14690 Can be one of the following:
14691
14692 @table @samp
14693 @item af
14694 Use frame flags, both fields.
14695 @item a
14696 Use frame flags, single field.
14697 @item t
14698 Use top field only.
14699 @item b
14700 Use bottom field only.
14701 @item tf
14702 Use both fields, top first.
14703 @item bf
14704 Use both fields, bottom first.
14705 @end table
14706
14707 @item planes
14708 Set which planes to process, by default filter process all frames.
14709
14710 @item nsize
14711 Set size of local neighborhood around each pixel, used by the predictor neural
14712 network.
14713
14714 Can be one of the following:
14715
14716 @table @samp
14717 @item s8x6
14718 @item s16x6
14719 @item s32x6
14720 @item s48x6
14721 @item s8x4
14722 @item s16x4
14723 @item s32x4
14724 @end table
14725
14726 @item nns
14727 Set the number of neurons in predictor neural network.
14728 Can be one of the following:
14729
14730 @table @samp
14731 @item n16
14732 @item n32
14733 @item n64
14734 @item n128
14735 @item n256
14736 @end table
14737
14738 @item qual
14739 Controls the number of different neural network predictions that are blended
14740 together to compute the final output value. Can be @code{fast}, default or
14741 @code{slow}.
14742
14743 @item etype
14744 Set which set of weights to use in the predictor.
14745 Can be one of the following:
14746
14747 @table @samp
14748 @item a, abs
14749 weights trained to minimize absolute error
14750 @item s, mse
14751 weights trained to minimize squared error
14752 @end table
14753
14754 @item pscrn
14755 Controls whether or not the prescreener neural network is used to decide
14756 which pixels should be processed by the predictor neural network and which
14757 can be handled by simple cubic interpolation.
14758 The prescreener is trained to know whether cubic interpolation will be
14759 sufficient for a pixel or whether it should be predicted by the predictor nn.
14760 The computational complexity of the prescreener nn is much less than that of
14761 the predictor nn. Since most pixels can be handled by cubic interpolation,
14762 using the prescreener generally results in much faster processing.
14763 The prescreener is pretty accurate, so the difference between using it and not
14764 using it is almost always unnoticeable.
14765
14766 Can be one of the following:
14767
14768 @table @samp
14769 @item none
14770 @item original
14771 @item new
14772 @item new2
14773 @item new3
14774 @end table
14775
14776 Default is @code{new}.
14777 @end table
14778
14779 @subsection Commands
14780 This filter supports same @ref{commands} as options, excluding @var{weights} option.
14781
14782 @section noformat
14783
14784 Force libavfilter not to use any of the specified pixel formats for the
14785 input to the next filter.
14786
14787 It accepts the following parameters:
14788 @table @option
14789
14790 @item pix_fmts
14791 A '|'-separated list of pixel format names, such as
14792 pix_fmts=yuv420p|monow|rgb24".
14793
14794 @end table
14795
14796 @subsection Examples
14797
14798 @itemize
14799 @item
14800 Force libavfilter to use a format different from @var{yuv420p} for the
14801 input to the vflip filter:
14802 @example
14803 noformat=pix_fmts=yuv420p,vflip
14804 @end example
14805
14806 @item
14807 Convert the input video to any of the formats not contained in the list:
14808 @example
14809 noformat=yuv420p|yuv444p|yuv410p
14810 @end example
14811 @end itemize
14812
14813 @section noise
14814
14815 Add noise on video input frame.
14816
14817 The filter accepts the following options:
14818
14819 @table @option
14820 @item all_seed
14821 @item c0_seed
14822 @item c1_seed
14823 @item c2_seed
14824 @item c3_seed
14825 Set noise seed for specific pixel component or all pixel components in case
14826 of @var{all_seed}. Default value is @code{123457}.
14827
14828 @item all_strength, alls
14829 @item c0_strength, c0s
14830 @item c1_strength, c1s
14831 @item c2_strength, c2s
14832 @item c3_strength, c3s
14833 Set noise strength for specific pixel component or all pixel components in case
14834 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
14835
14836 @item all_flags, allf
14837 @item c0_flags, c0f
14838 @item c1_flags, c1f
14839 @item c2_flags, c2f
14840 @item c3_flags, c3f
14841 Set pixel component flags or set flags for all components if @var{all_flags}.
14842 Available values for component flags are:
14843 @table @samp
14844 @item a
14845 averaged temporal noise (smoother)
14846 @item p
14847 mix random noise with a (semi)regular pattern
14848 @item t
14849 temporal noise (noise pattern changes between frames)
14850 @item u
14851 uniform noise (gaussian otherwise)
14852 @end table
14853 @end table
14854
14855 @subsection Examples
14856
14857 Add temporal and uniform noise to input video:
14858 @example
14859 noise=alls=20:allf=t+u
14860 @end example
14861
14862 @section normalize
14863
14864 Normalize RGB video (aka histogram stretching, contrast stretching).
14865 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
14866
14867 For each channel of each frame, the filter computes the input range and maps
14868 it linearly to the user-specified output range. The output range defaults
14869 to the full dynamic range from pure black to pure white.
14870
14871 Temporal smoothing can be used on the input range to reduce flickering (rapid
14872 changes in brightness) caused when small dark or bright objects enter or leave
14873 the scene. This is similar to the auto-exposure (automatic gain control) on a
14874 video camera, and, like a video camera, it may cause a period of over- or
14875 under-exposure of the video.
14876
14877 The R,G,B channels can be normalized independently, which may cause some
14878 color shifting, or linked together as a single channel, which prevents
14879 color shifting. Linked normalization preserves hue. Independent normalization
14880 does not, so it can be used to remove some color casts. Independent and linked
14881 normalization can be combined in any ratio.
14882
14883 The normalize filter accepts the following options:
14884
14885 @table @option
14886 @item blackpt
14887 @item whitept
14888 Colors which define the output range. The minimum input value is mapped to
14889 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
14890 The defaults are black and white respectively. Specifying white for
14891 @var{blackpt} and black for @var{whitept} will give color-inverted,
14892 normalized video. Shades of grey can be used to reduce the dynamic range
14893 (contrast). Specifying saturated colors here can create some interesting
14894 effects.
14895
14896 @item smoothing
14897 The number of previous frames to use for temporal smoothing. The input range
14898 of each channel is smoothed using a rolling average over the current frame
14899 and the @var{smoothing} previous frames. The default is 0 (no temporal
14900 smoothing).
14901
14902 @item independence
14903 Controls the ratio of independent (color shifting) channel normalization to
14904 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
14905 independent. Defaults to 1.0 (fully independent).
14906
14907 @item strength
14908 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
14909 expensive no-op. Defaults to 1.0 (full strength).
14910
14911 @end table
14912
14913 @subsection Commands
14914 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
14915 The command accepts the same syntax of the corresponding option.
14916
14917 If the specified expression is not valid, it is kept at its current
14918 value.
14919
14920 @subsection Examples
14921
14922 Stretch video contrast to use the full dynamic range, with no temporal
14923 smoothing; may flicker depending on the source content:
14924 @example
14925 normalize=blackpt=black:whitept=white:smoothing=0
14926 @end example
14927
14928 As above, but with 50 frames of temporal smoothing; flicker should be
14929 reduced, depending on the source content:
14930 @example
14931 normalize=blackpt=black:whitept=white:smoothing=50
14932 @end example
14933
14934 As above, but with hue-preserving linked channel normalization:
14935 @example
14936 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
14937 @end example
14938
14939 As above, but with half strength:
14940 @example
14941 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
14942 @end example
14943
14944 Map the darkest input color to red, the brightest input color to cyan:
14945 @example
14946 normalize=blackpt=red:whitept=cyan
14947 @end example
14948
14949 @section null
14950
14951 Pass the video source unchanged to the output.
14952
14953 @section ocr
14954 Optical Character Recognition
14955
14956 This filter uses Tesseract for optical character recognition. To enable
14957 compilation of this filter, you need to configure FFmpeg with
14958 @code{--enable-libtesseract}.
14959
14960 It accepts the following options:
14961
14962 @table @option
14963 @item datapath
14964 Set datapath to tesseract data. Default is to use whatever was
14965 set at installation.
14966
14967 @item language
14968 Set language, default is "eng".
14969
14970 @item whitelist
14971 Set character whitelist.
14972
14973 @item blacklist
14974 Set character blacklist.
14975 @end table
14976
14977 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
14978 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
14979
14980 @section ocv
14981
14982 Apply a video transform using libopencv.
14983
14984 To enable this filter, install the libopencv library and headers and
14985 configure FFmpeg with @code{--enable-libopencv}.
14986
14987 It accepts the following parameters:
14988
14989 @table @option
14990
14991 @item filter_name
14992 The name of the libopencv filter to apply.
14993
14994 @item filter_params
14995 The parameters to pass to the libopencv filter. If not specified, the default
14996 values are assumed.
14997
14998 @end table
14999
15000 Refer to the official libopencv documentation for more precise
15001 information:
15002 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
15003
15004 Several libopencv filters are supported; see the following subsections.
15005
15006 @anchor{dilate}
15007 @subsection dilate
15008
15009 Dilate an image by using a specific structuring element.
15010 It corresponds to the libopencv function @code{cvDilate}.
15011
15012 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
15013
15014 @var{struct_el} represents a structuring element, and has the syntax:
15015 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
15016
15017 @var{cols} and @var{rows} represent the number of columns and rows of
15018 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
15019 point, and @var{shape} the shape for the structuring element. @var{shape}
15020 must be "rect", "cross", "ellipse", or "custom".
15021
15022 If the value for @var{shape} is "custom", it must be followed by a
15023 string of the form "=@var{filename}". The file with name
15024 @var{filename} is assumed to represent a binary image, with each
15025 printable character corresponding to a bright pixel. When a custom
15026 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
15027 or columns and rows of the read file are assumed instead.
15028
15029 The default value for @var{struct_el} is "3x3+0x0/rect".
15030
15031 @var{nb_iterations} specifies the number of times the transform is
15032 applied to the image, and defaults to 1.
15033
15034 Some examples:
15035 @example
15036 # Use the default values
15037 ocv=dilate
15038
15039 # Dilate using a structuring element with a 5x5 cross, iterating two times
15040 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
15041
15042 # Read the shape from the file diamond.shape, iterating two times.
15043 # The file diamond.shape may contain a pattern of characters like this
15044 #   *
15045 #  ***
15046 # *****
15047 #  ***
15048 #   *
15049 # The specified columns and rows are ignored
15050 # but the anchor point coordinates are not
15051 ocv=dilate:0x0+2x2/custom=diamond.shape|2
15052 @end example
15053
15054 @subsection erode
15055
15056 Erode an image by using a specific structuring element.
15057 It corresponds to the libopencv function @code{cvErode}.
15058
15059 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
15060 with the same syntax and semantics as the @ref{dilate} filter.
15061
15062 @subsection smooth
15063
15064 Smooth the input video.
15065
15066 The filter takes the following parameters:
15067 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
15068
15069 @var{type} is the type of smooth filter to apply, and must be one of
15070 the following values: "blur", "blur_no_scale", "median", "gaussian",
15071 or "bilateral". The default value is "gaussian".
15072
15073 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
15074 depends on the smooth type. @var{param1} and
15075 @var{param2} accept integer positive values or 0. @var{param3} and
15076 @var{param4} accept floating point values.
15077
15078 The default value for @var{param1} is 3. The default value for the
15079 other parameters is 0.
15080
15081 These parameters correspond to the parameters assigned to the
15082 libopencv function @code{cvSmooth}.
15083
15084 @section oscilloscope
15085
15086 2D Video Oscilloscope.
15087
15088 Useful to measure spatial impulse, step responses, chroma delays, etc.
15089
15090 It accepts the following parameters:
15091
15092 @table @option
15093 @item x
15094 Set scope center x position.
15095
15096 @item y
15097 Set scope center y position.
15098
15099 @item s
15100 Set scope size, relative to frame diagonal.
15101
15102 @item t
15103 Set scope tilt/rotation.
15104
15105 @item o
15106 Set trace opacity.
15107
15108 @item tx
15109 Set trace center x position.
15110
15111 @item ty
15112 Set trace center y position.
15113
15114 @item tw
15115 Set trace width, relative to width of frame.
15116
15117 @item th
15118 Set trace height, relative to height of frame.
15119
15120 @item c
15121 Set which components to trace. By default it traces first three components.
15122
15123 @item g
15124 Draw trace grid. By default is enabled.
15125
15126 @item st
15127 Draw some statistics. By default is enabled.
15128
15129 @item sc
15130 Draw scope. By default is enabled.
15131 @end table
15132
15133 @subsection Commands
15134 This filter supports same @ref{commands} as options.
15135 The command accepts the same syntax of the corresponding option.
15136
15137 If the specified expression is not valid, it is kept at its current
15138 value.
15139
15140 @subsection Examples
15141
15142 @itemize
15143 @item
15144 Inspect full first row of video frame.
15145 @example
15146 oscilloscope=x=0.5:y=0:s=1
15147 @end example
15148
15149 @item
15150 Inspect full last row of video frame.
15151 @example
15152 oscilloscope=x=0.5:y=1:s=1
15153 @end example
15154
15155 @item
15156 Inspect full 5th line of video frame of height 1080.
15157 @example
15158 oscilloscope=x=0.5:y=5/1080:s=1
15159 @end example
15160
15161 @item
15162 Inspect full last column of video frame.
15163 @example
15164 oscilloscope=x=1:y=0.5:s=1:t=1
15165 @end example
15166
15167 @end itemize
15168
15169 @anchor{overlay}
15170 @section overlay
15171
15172 Overlay one video on top of another.
15173
15174 It takes two inputs and has one output. The first input is the "main"
15175 video on which the second input is overlaid.
15176
15177 It accepts the following parameters:
15178
15179 A description of the accepted options follows.
15180
15181 @table @option
15182 @item x
15183 @item y
15184 Set the expression for the x and y coordinates of the overlaid video
15185 on the main video. Default value is "0" for both expressions. In case
15186 the expression is invalid, it is set to a huge value (meaning that the
15187 overlay will not be displayed within the output visible area).
15188
15189 @item eof_action
15190 See @ref{framesync}.
15191
15192 @item eval
15193 Set when the expressions for @option{x}, and @option{y} are evaluated.
15194
15195 It accepts the following values:
15196 @table @samp
15197 @item init
15198 only evaluate expressions once during the filter initialization or
15199 when a command is processed
15200
15201 @item frame
15202 evaluate expressions for each incoming frame
15203 @end table
15204
15205 Default value is @samp{frame}.
15206
15207 @item shortest
15208 See @ref{framesync}.
15209
15210 @item format
15211 Set the format for the output video.
15212
15213 It accepts the following values:
15214 @table @samp
15215 @item yuv420
15216 force YUV420 output
15217
15218 @item yuv420p10
15219 force YUV420p10 output
15220
15221 @item yuv422
15222 force YUV422 output
15223
15224 @item yuv422p10
15225 force YUV422p10 output
15226
15227 @item yuv444
15228 force YUV444 output
15229
15230 @item rgb
15231 force packed RGB output
15232
15233 @item gbrp
15234 force planar RGB output
15235
15236 @item auto
15237 automatically pick format
15238 @end table
15239
15240 Default value is @samp{yuv420}.
15241
15242 @item repeatlast
15243 See @ref{framesync}.
15244
15245 @item alpha
15246 Set format of alpha of the overlaid video, it can be @var{straight} or
15247 @var{premultiplied}. Default is @var{straight}.
15248 @end table
15249
15250 The @option{x}, and @option{y} expressions can contain the following
15251 parameters.
15252
15253 @table @option
15254 @item main_w, W
15255 @item main_h, H
15256 The main input width and height.
15257
15258 @item overlay_w, w
15259 @item overlay_h, h
15260 The overlay input width and height.
15261
15262 @item x
15263 @item y
15264 The computed values for @var{x} and @var{y}. They are evaluated for
15265 each new frame.
15266
15267 @item hsub
15268 @item vsub
15269 horizontal and vertical chroma subsample values of the output
15270 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
15271 @var{vsub} is 1.
15272
15273 @item n
15274 the number of input frame, starting from 0
15275
15276 @item pos
15277 the position in the file of the input frame, NAN if unknown
15278
15279 @item t
15280 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
15281
15282 @end table
15283
15284 This filter also supports the @ref{framesync} options.
15285
15286 Note that the @var{n}, @var{pos}, @var{t} variables are available only
15287 when evaluation is done @emph{per frame}, and will evaluate to NAN
15288 when @option{eval} is set to @samp{init}.
15289
15290 Be aware that frames are taken from each input video in timestamp
15291 order, hence, if their initial timestamps differ, it is a good idea
15292 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
15293 have them begin in the same zero timestamp, as the example for
15294 the @var{movie} filter does.
15295
15296 You can chain together more overlays but you should test the
15297 efficiency of such approach.
15298
15299 @subsection Commands
15300
15301 This filter supports the following commands:
15302 @table @option
15303 @item x
15304 @item y
15305 Modify the x and y of the overlay input.
15306 The command accepts the same syntax of the corresponding option.
15307
15308 If the specified expression is not valid, it is kept at its current
15309 value.
15310 @end table
15311
15312 @subsection Examples
15313
15314 @itemize
15315 @item
15316 Draw the overlay at 10 pixels from the bottom right corner of the main
15317 video:
15318 @example
15319 overlay=main_w-overlay_w-10:main_h-overlay_h-10
15320 @end example
15321
15322 Using named options the example above becomes:
15323 @example
15324 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
15325 @end example
15326
15327 @item
15328 Insert a transparent PNG logo in the bottom left corner of the input,
15329 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
15330 @example
15331 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
15332 @end example
15333
15334 @item
15335 Insert 2 different transparent PNG logos (second logo on bottom
15336 right corner) using the @command{ffmpeg} tool:
15337 @example
15338 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
15339 @end example
15340
15341 @item
15342 Add a transparent color layer on top of the main video; @code{WxH}
15343 must specify the size of the main input to the overlay filter:
15344 @example
15345 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
15346 @end example
15347
15348 @item
15349 Play an original video and a filtered version (here with the deshake
15350 filter) side by side using the @command{ffplay} tool:
15351 @example
15352 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
15353 @end example
15354
15355 The above command is the same as:
15356 @example
15357 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
15358 @end example
15359
15360 @item
15361 Make a sliding overlay appearing from the left to the right top part of the
15362 screen starting since time 2:
15363 @example
15364 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
15365 @end example
15366
15367 @item
15368 Compose output by putting two input videos side to side:
15369 @example
15370 ffmpeg -i left.avi -i right.avi -filter_complex "
15371 nullsrc=size=200x100 [background];
15372 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
15373 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
15374 [background][left]       overlay=shortest=1       [background+left];
15375 [background+left][right] overlay=shortest=1:x=100 [left+right]
15376 "
15377 @end example
15378
15379 @item
15380 Mask 10-20 seconds of a video by applying the delogo filter to a section
15381 @example
15382 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
15383 -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]'
15384 masked.avi
15385 @end example
15386
15387 @item
15388 Chain several overlays in cascade:
15389 @example
15390 nullsrc=s=200x200 [bg];
15391 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
15392 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
15393 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
15394 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
15395 [in3] null,       [mid2] overlay=100:100 [out0]
15396 @end example
15397
15398 @end itemize
15399
15400 @anchor{overlay_cuda}
15401 @section overlay_cuda
15402
15403 Overlay one video on top of another.
15404
15405 This is the CUDA variant of the @ref{overlay} filter.
15406 It only accepts CUDA frames. The underlying input pixel formats have to match.
15407
15408 It takes two inputs and has one output. The first input is the "main"
15409 video on which the second input is overlaid.
15410
15411 It accepts the following parameters:
15412
15413 @table @option
15414 @item x
15415 @item y
15416 Set the x and y coordinates of the overlaid video on the main video.
15417 Default value is "0" for both expressions.
15418
15419 @item eof_action
15420 See @ref{framesync}.
15421
15422 @item shortest
15423 See @ref{framesync}.
15424
15425 @item repeatlast
15426 See @ref{framesync}.
15427
15428 @end table
15429
15430 This filter also supports the @ref{framesync} options.
15431
15432 @section owdenoise
15433
15434 Apply Overcomplete Wavelet denoiser.
15435
15436 The filter accepts the following options:
15437
15438 @table @option
15439 @item depth
15440 Set depth.
15441
15442 Larger depth values will denoise lower frequency components more, but
15443 slow down filtering.
15444
15445 Must be an int in the range 8-16, default is @code{8}.
15446
15447 @item luma_strength, ls
15448 Set luma strength.
15449
15450 Must be a double value in the range 0-1000, default is @code{1.0}.
15451
15452 @item chroma_strength, cs
15453 Set chroma strength.
15454
15455 Must be a double value in the range 0-1000, default is @code{1.0}.
15456 @end table
15457
15458 @anchor{pad}
15459 @section pad
15460
15461 Add paddings to the input image, and place the original input at the
15462 provided @var{x}, @var{y} coordinates.
15463
15464 It accepts the following parameters:
15465
15466 @table @option
15467 @item width, w
15468 @item height, h
15469 Specify an expression for the size of the output image with the
15470 paddings added. If the value for @var{width} or @var{height} is 0, the
15471 corresponding input size is used for the output.
15472
15473 The @var{width} expression can reference the value set by the
15474 @var{height} expression, and vice versa.
15475
15476 The default value of @var{width} and @var{height} is 0.
15477
15478 @item x
15479 @item y
15480 Specify the offsets to place the input image at within the padded area,
15481 with respect to the top/left border of the output image.
15482
15483 The @var{x} expression can reference the value set by the @var{y}
15484 expression, and vice versa.
15485
15486 The default value of @var{x} and @var{y} is 0.
15487
15488 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
15489 so the input image is centered on the padded area.
15490
15491 @item color
15492 Specify the color of the padded area. For the syntax of this option,
15493 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15494 manual,ffmpeg-utils}.
15495
15496 The default value of @var{color} is "black".
15497
15498 @item eval
15499 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
15500
15501 It accepts the following values:
15502
15503 @table @samp
15504 @item init
15505 Only evaluate expressions once during the filter initialization or when
15506 a command is processed.
15507
15508 @item frame
15509 Evaluate expressions for each incoming frame.
15510
15511 @end table
15512
15513 Default value is @samp{init}.
15514
15515 @item aspect
15516 Pad to aspect instead to a resolution.
15517
15518 @end table
15519
15520 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
15521 options are expressions containing the following constants:
15522
15523 @table @option
15524 @item in_w
15525 @item in_h
15526 The input video width and height.
15527
15528 @item iw
15529 @item ih
15530 These are the same as @var{in_w} and @var{in_h}.
15531
15532 @item out_w
15533 @item out_h
15534 The output width and height (the size of the padded area), as
15535 specified by the @var{width} and @var{height} expressions.
15536
15537 @item ow
15538 @item oh
15539 These are the same as @var{out_w} and @var{out_h}.
15540
15541 @item x
15542 @item y
15543 The x and y offsets as specified by the @var{x} and @var{y}
15544 expressions, or NAN if not yet specified.
15545
15546 @item a
15547 same as @var{iw} / @var{ih}
15548
15549 @item sar
15550 input sample aspect ratio
15551
15552 @item dar
15553 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15554
15555 @item hsub
15556 @item vsub
15557 The horizontal and vertical chroma subsample values. For example for the
15558 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15559 @end table
15560
15561 @subsection Examples
15562
15563 @itemize
15564 @item
15565 Add paddings with the color "violet" to the input video. The output video
15566 size is 640x480, and the top-left corner of the input video is placed at
15567 column 0, row 40
15568 @example
15569 pad=640:480:0:40:violet
15570 @end example
15571
15572 The example above is equivalent to the following command:
15573 @example
15574 pad=width=640:height=480:x=0:y=40:color=violet
15575 @end example
15576
15577 @item
15578 Pad the input to get an output with dimensions increased by 3/2,
15579 and put the input video at the center of the padded area:
15580 @example
15581 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15582 @end example
15583
15584 @item
15585 Pad the input to get a squared output with size equal to the maximum
15586 value between the input width and height, and put the input video at
15587 the center of the padded area:
15588 @example
15589 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15590 @end example
15591
15592 @item
15593 Pad the input to get a final w/h ratio of 16:9:
15594 @example
15595 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15596 @end example
15597
15598 @item
15599 In case of anamorphic video, in order to set the output display aspect
15600 correctly, it is necessary to use @var{sar} in the expression,
15601 according to the relation:
15602 @example
15603 (ih * X / ih) * sar = output_dar
15604 X = output_dar / sar
15605 @end example
15606
15607 Thus the previous example needs to be modified to:
15608 @example
15609 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15610 @end example
15611
15612 @item
15613 Double the output size and put the input video in the bottom-right
15614 corner of the output padded area:
15615 @example
15616 pad="2*iw:2*ih:ow-iw:oh-ih"
15617 @end example
15618 @end itemize
15619
15620 @anchor{palettegen}
15621 @section palettegen
15622
15623 Generate one palette for a whole video stream.
15624
15625 It accepts the following options:
15626
15627 @table @option
15628 @item max_colors
15629 Set the maximum number of colors to quantize in the palette.
15630 Note: the palette will still contain 256 colors; the unused palette entries
15631 will be black.
15632
15633 @item reserve_transparent
15634 Create a palette of 255 colors maximum and reserve the last one for
15635 transparency. Reserving the transparency color is useful for GIF optimization.
15636 If not set, the maximum of colors in the palette will be 256. You probably want
15637 to disable this option for a standalone image.
15638 Set by default.
15639
15640 @item transparency_color
15641 Set the color that will be used as background for transparency.
15642
15643 @item stats_mode
15644 Set statistics mode.
15645
15646 It accepts the following values:
15647 @table @samp
15648 @item full
15649 Compute full frame histograms.
15650 @item diff
15651 Compute histograms only for the part that differs from previous frame. This
15652 might be relevant to give more importance to the moving part of your input if
15653 the background is static.
15654 @item single
15655 Compute new histogram for each frame.
15656 @end table
15657
15658 Default value is @var{full}.
15659 @end table
15660
15661 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
15662 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
15663 color quantization of the palette. This information is also visible at
15664 @var{info} logging level.
15665
15666 @subsection Examples
15667
15668 @itemize
15669 @item
15670 Generate a representative palette of a given video using @command{ffmpeg}:
15671 @example
15672 ffmpeg -i input.mkv -vf palettegen palette.png
15673 @end example
15674 @end itemize
15675
15676 @section paletteuse
15677
15678 Use a palette to downsample an input video stream.
15679
15680 The filter takes two inputs: one video stream and a palette. The palette must
15681 be a 256 pixels image.
15682
15683 It accepts the following options:
15684
15685 @table @option
15686 @item dither
15687 Select dithering mode. Available algorithms are:
15688 @table @samp
15689 @item bayer
15690 Ordered 8x8 bayer dithering (deterministic)
15691 @item heckbert
15692 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
15693 Note: this dithering is sometimes considered "wrong" and is included as a
15694 reference.
15695 @item floyd_steinberg
15696 Floyd and Steingberg dithering (error diffusion)
15697 @item sierra2
15698 Frankie Sierra dithering v2 (error diffusion)
15699 @item sierra2_4a
15700 Frankie Sierra dithering v2 "Lite" (error diffusion)
15701 @end table
15702
15703 Default is @var{sierra2_4a}.
15704
15705 @item bayer_scale
15706 When @var{bayer} dithering is selected, this option defines the scale of the
15707 pattern (how much the crosshatch pattern is visible). A low value means more
15708 visible pattern for less banding, and higher value means less visible pattern
15709 at the cost of more banding.
15710
15711 The option must be an integer value in the range [0,5]. Default is @var{2}.
15712
15713 @item diff_mode
15714 If set, define the zone to process
15715
15716 @table @samp
15717 @item rectangle
15718 Only the changing rectangle will be reprocessed. This is similar to GIF
15719 cropping/offsetting compression mechanism. This option can be useful for speed
15720 if only a part of the image is changing, and has use cases such as limiting the
15721 scope of the error diffusal @option{dither} to the rectangle that bounds the
15722 moving scene (it leads to more deterministic output if the scene doesn't change
15723 much, and as a result less moving noise and better GIF compression).
15724 @end table
15725
15726 Default is @var{none}.
15727
15728 @item new
15729 Take new palette for each output frame.
15730
15731 @item alpha_threshold
15732 Sets the alpha threshold for transparency. Alpha values above this threshold
15733 will be treated as completely opaque, and values below this threshold will be
15734 treated as completely transparent.
15735
15736 The option must be an integer value in the range [0,255]. Default is @var{128}.
15737 @end table
15738
15739 @subsection Examples
15740
15741 @itemize
15742 @item
15743 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
15744 using @command{ffmpeg}:
15745 @example
15746 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
15747 @end example
15748 @end itemize
15749
15750 @section perspective
15751
15752 Correct perspective of video not recorded perpendicular to the screen.
15753
15754 A description of the accepted parameters follows.
15755
15756 @table @option
15757 @item x0
15758 @item y0
15759 @item x1
15760 @item y1
15761 @item x2
15762 @item y2
15763 @item x3
15764 @item y3
15765 Set coordinates expression for top left, top right, bottom left and bottom right corners.
15766 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
15767 If the @code{sense} option is set to @code{source}, then the specified points will be sent
15768 to the corners of the destination. If the @code{sense} option is set to @code{destination},
15769 then the corners of the source will be sent to the specified coordinates.
15770
15771 The expressions can use the following variables:
15772
15773 @table @option
15774 @item W
15775 @item H
15776 the width and height of video frame.
15777 @item in
15778 Input frame count.
15779 @item on
15780 Output frame count.
15781 @end table
15782
15783 @item interpolation
15784 Set interpolation for perspective correction.
15785
15786 It accepts the following values:
15787 @table @samp
15788 @item linear
15789 @item cubic
15790 @end table
15791
15792 Default value is @samp{linear}.
15793
15794 @item sense
15795 Set interpretation of coordinate options.
15796
15797 It accepts the following values:
15798 @table @samp
15799 @item 0, source
15800
15801 Send point in the source specified by the given coordinates to
15802 the corners of the destination.
15803
15804 @item 1, destination
15805
15806 Send the corners of the source to the point in the destination specified
15807 by the given coordinates.
15808
15809 Default value is @samp{source}.
15810 @end table
15811
15812 @item eval
15813 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
15814
15815 It accepts the following values:
15816 @table @samp
15817 @item init
15818 only evaluate expressions once during the filter initialization or
15819 when a command is processed
15820
15821 @item frame
15822 evaluate expressions for each incoming frame
15823 @end table
15824
15825 Default value is @samp{init}.
15826 @end table
15827
15828 @section phase
15829
15830 Delay interlaced video by one field time so that the field order changes.
15831
15832 The intended use is to fix PAL movies that have been captured with the
15833 opposite field order to the film-to-video transfer.
15834
15835 A description of the accepted parameters follows.
15836
15837 @table @option
15838 @item mode
15839 Set phase mode.
15840
15841 It accepts the following values:
15842 @table @samp
15843 @item t
15844 Capture field order top-first, transfer bottom-first.
15845 Filter will delay the bottom field.
15846
15847 @item b
15848 Capture field order bottom-first, transfer top-first.
15849 Filter will delay the top field.
15850
15851 @item p
15852 Capture and transfer with the same field order. This mode only exists
15853 for the documentation of the other options to refer to, but if you
15854 actually select it, the filter will faithfully do nothing.
15855
15856 @item a
15857 Capture field order determined automatically by field flags, transfer
15858 opposite.
15859 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
15860 basis using field flags. If no field information is available,
15861 then this works just like @samp{u}.
15862
15863 @item u
15864 Capture unknown or varying, transfer opposite.
15865 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
15866 analyzing the images and selecting the alternative that produces best
15867 match between the fields.
15868
15869 @item T
15870 Capture top-first, transfer unknown or varying.
15871 Filter selects among @samp{t} and @samp{p} using image analysis.
15872
15873 @item B
15874 Capture bottom-first, transfer unknown or varying.
15875 Filter selects among @samp{b} and @samp{p} using image analysis.
15876
15877 @item A
15878 Capture determined by field flags, transfer unknown or varying.
15879 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
15880 image analysis. If no field information is available, then this works just
15881 like @samp{U}. This is the default mode.
15882
15883 @item U
15884 Both capture and transfer unknown or varying.
15885 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
15886 @end table
15887 @end table
15888
15889 @subsection Commands
15890
15891 This filter supports the all above options as @ref{commands}.
15892
15893 @section photosensitivity
15894 Reduce various flashes in video, so to help users with epilepsy.
15895
15896 It accepts the following options:
15897 @table @option
15898 @item frames, f
15899 Set how many frames to use when filtering. Default is 30.
15900
15901 @item threshold, t
15902 Set detection threshold factor. Default is 1.
15903 Lower is stricter.
15904
15905 @item skip
15906 Set how many pixels to skip when sampling frames. Default is 1.
15907 Allowed range is from 1 to 1024.
15908
15909 @item bypass
15910 Leave frames unchanged. Default is disabled.
15911 @end table
15912
15913 @section pixdesctest
15914
15915 Pixel format descriptor test filter, mainly useful for internal
15916 testing. The output video should be equal to the input video.
15917
15918 For example:
15919 @example
15920 format=monow, pixdesctest
15921 @end example
15922
15923 can be used to test the monowhite pixel format descriptor definition.
15924
15925 @section pixscope
15926
15927 Display sample values of color channels. Mainly useful for checking color
15928 and levels. Minimum supported resolution is 640x480.
15929
15930 The filters accept the following options:
15931
15932 @table @option
15933 @item x
15934 Set scope X position, relative offset on X axis.
15935
15936 @item y
15937 Set scope Y position, relative offset on Y axis.
15938
15939 @item w
15940 Set scope width.
15941
15942 @item h
15943 Set scope height.
15944
15945 @item o
15946 Set window opacity. This window also holds statistics about pixel area.
15947
15948 @item wx
15949 Set window X position, relative offset on X axis.
15950
15951 @item wy
15952 Set window Y position, relative offset on Y axis.
15953 @end table
15954
15955 @section pp
15956
15957 Enable the specified chain of postprocessing subfilters using libpostproc. This
15958 library should be automatically selected with a GPL build (@code{--enable-gpl}).
15959 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
15960 Each subfilter and some options have a short and a long name that can be used
15961 interchangeably, i.e. dr/dering are the same.
15962
15963 The filters accept the following options:
15964
15965 @table @option
15966 @item subfilters
15967 Set postprocessing subfilters string.
15968 @end table
15969
15970 All subfilters share common options to determine their scope:
15971
15972 @table @option
15973 @item a/autoq
15974 Honor the quality commands for this subfilter.
15975
15976 @item c/chrom
15977 Do chrominance filtering, too (default).
15978
15979 @item y/nochrom
15980 Do luminance filtering only (no chrominance).
15981
15982 @item n/noluma
15983 Do chrominance filtering only (no luminance).
15984 @end table
15985
15986 These options can be appended after the subfilter name, separated by a '|'.
15987
15988 Available subfilters are:
15989
15990 @table @option
15991 @item hb/hdeblock[|difference[|flatness]]
15992 Horizontal deblocking filter
15993 @table @option
15994 @item difference
15995 Difference factor where higher values mean more deblocking (default: @code{32}).
15996 @item flatness
15997 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15998 @end table
15999
16000 @item vb/vdeblock[|difference[|flatness]]
16001 Vertical deblocking filter
16002 @table @option
16003 @item difference
16004 Difference factor where higher values mean more deblocking (default: @code{32}).
16005 @item flatness
16006 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16007 @end table
16008
16009 @item ha/hadeblock[|difference[|flatness]]
16010 Accurate horizontal deblocking filter
16011 @table @option
16012 @item difference
16013 Difference factor where higher values mean more deblocking (default: @code{32}).
16014 @item flatness
16015 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16016 @end table
16017
16018 @item va/vadeblock[|difference[|flatness]]
16019 Accurate vertical deblocking filter
16020 @table @option
16021 @item difference
16022 Difference factor where higher values mean more deblocking (default: @code{32}).
16023 @item flatness
16024 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16025 @end table
16026 @end table
16027
16028 The horizontal and vertical deblocking filters share the difference and
16029 flatness values so you cannot set different horizontal and vertical
16030 thresholds.
16031
16032 @table @option
16033 @item h1/x1hdeblock
16034 Experimental horizontal deblocking filter
16035
16036 @item v1/x1vdeblock
16037 Experimental vertical deblocking filter
16038
16039 @item dr/dering
16040 Deringing filter
16041
16042 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
16043 @table @option
16044 @item threshold1
16045 larger -> stronger filtering
16046 @item threshold2
16047 larger -> stronger filtering
16048 @item threshold3
16049 larger -> stronger filtering
16050 @end table
16051
16052 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
16053 @table @option
16054 @item f/fullyrange
16055 Stretch luminance to @code{0-255}.
16056 @end table
16057
16058 @item lb/linblenddeint
16059 Linear blend deinterlacing filter that deinterlaces the given block by
16060 filtering all lines with a @code{(1 2 1)} filter.
16061
16062 @item li/linipoldeint
16063 Linear interpolating deinterlacing filter that deinterlaces the given block by
16064 linearly interpolating every second line.
16065
16066 @item ci/cubicipoldeint
16067 Cubic interpolating deinterlacing filter deinterlaces the given block by
16068 cubically interpolating every second line.
16069
16070 @item md/mediandeint
16071 Median deinterlacing filter that deinterlaces the given block by applying a
16072 median filter to every second line.
16073
16074 @item fd/ffmpegdeint
16075 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
16076 second line with a @code{(-1 4 2 4 -1)} filter.
16077
16078 @item l5/lowpass5
16079 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
16080 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
16081
16082 @item fq/forceQuant[|quantizer]
16083 Overrides the quantizer table from the input with the constant quantizer you
16084 specify.
16085 @table @option
16086 @item quantizer
16087 Quantizer to use
16088 @end table
16089
16090 @item de/default
16091 Default pp filter combination (@code{hb|a,vb|a,dr|a})
16092
16093 @item fa/fast
16094 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
16095
16096 @item ac
16097 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
16098 @end table
16099
16100 @subsection Examples
16101
16102 @itemize
16103 @item
16104 Apply horizontal and vertical deblocking, deringing and automatic
16105 brightness/contrast:
16106 @example
16107 pp=hb/vb/dr/al
16108 @end example
16109
16110 @item
16111 Apply default filters without brightness/contrast correction:
16112 @example
16113 pp=de/-al
16114 @end example
16115
16116 @item
16117 Apply default filters and temporal denoiser:
16118 @example
16119 pp=default/tmpnoise|1|2|3
16120 @end example
16121
16122 @item
16123 Apply deblocking on luminance only, and switch vertical deblocking on or off
16124 automatically depending on available CPU time:
16125 @example
16126 pp=hb|y/vb|a
16127 @end example
16128 @end itemize
16129
16130 @section pp7
16131 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
16132 similar to spp = 6 with 7 point DCT, where only the center sample is
16133 used after IDCT.
16134
16135 The filter accepts the following options:
16136
16137 @table @option
16138 @item qp
16139 Force a constant quantization parameter. It accepts an integer in range
16140 0 to 63. If not set, the filter will use the QP from the video stream
16141 (if available).
16142
16143 @item mode
16144 Set thresholding mode. Available modes are:
16145
16146 @table @samp
16147 @item hard
16148 Set hard thresholding.
16149 @item soft
16150 Set soft thresholding (better de-ringing effect, but likely blurrier).
16151 @item medium
16152 Set medium thresholding (good results, default).
16153 @end table
16154 @end table
16155
16156 @section premultiply
16157 Apply alpha premultiply effect to input video stream using first plane
16158 of second stream as alpha.
16159
16160 Both streams must have same dimensions and same pixel format.
16161
16162 The filter accepts the following option:
16163
16164 @table @option
16165 @item planes
16166 Set which planes will be processed, unprocessed planes will be copied.
16167 By default value 0xf, all planes will be processed.
16168
16169 @item inplace
16170 Do not require 2nd input for processing, instead use alpha plane from input stream.
16171 @end table
16172
16173 @section prewitt
16174 Apply prewitt operator to input video stream.
16175
16176 The filter accepts the following option:
16177
16178 @table @option
16179 @item planes
16180 Set which planes will be processed, unprocessed planes will be copied.
16181 By default value 0xf, all planes will be processed.
16182
16183 @item scale
16184 Set value which will be multiplied with filtered result.
16185
16186 @item delta
16187 Set value which will be added to filtered result.
16188 @end table
16189
16190 @subsection Commands
16191
16192 This filter supports the all above options as @ref{commands}.
16193
16194 @section pseudocolor
16195
16196 Alter frame colors in video with pseudocolors.
16197
16198 This filter accepts the following options:
16199
16200 @table @option
16201 @item c0
16202 set pixel first component expression
16203
16204 @item c1
16205 set pixel second component expression
16206
16207 @item c2
16208 set pixel third component expression
16209
16210 @item c3
16211 set pixel fourth component expression, corresponds to the alpha component
16212
16213 @item i
16214 set component to use as base for altering colors
16215
16216 @item p
16217 Pick one of built-in LUTs. By default is set to none.
16218
16219 Available LUTs:
16220 @table @samp
16221 @item magma
16222 @item inferno
16223 @item plasma
16224 @item viridis
16225 @item turbo
16226 @item cividis
16227 @end table
16228
16229 @end table
16230
16231 Each of them specifies the expression to use for computing the lookup table for
16232 the corresponding pixel component values.
16233
16234 The expressions can contain the following constants and functions:
16235
16236 @table @option
16237 @item w
16238 @item h
16239 The input width and height.
16240
16241 @item val
16242 The input value for the pixel component.
16243
16244 @item ymin, umin, vmin, amin
16245 The minimum allowed component value.
16246
16247 @item ymax, umax, vmax, amax
16248 The maximum allowed component value.
16249 @end table
16250
16251 All expressions default to "val".
16252
16253 @subsection Commands
16254
16255 This filter supports the all above options as @ref{commands}.
16256
16257 @subsection Examples
16258
16259 @itemize
16260 @item
16261 Change too high luma values to gradient:
16262 @example
16263 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'"
16264 @end example
16265 @end itemize
16266
16267 @section psnr
16268
16269 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
16270 Ratio) between two input videos.
16271
16272 This filter takes in input two input videos, the first input is
16273 considered the "main" source and is passed unchanged to the
16274 output. The second input is used as a "reference" video for computing
16275 the PSNR.
16276
16277 Both video inputs must have the same resolution and pixel format for
16278 this filter to work correctly. Also it assumes that both inputs
16279 have the same number of frames, which are compared one by one.
16280
16281 The obtained average PSNR is printed through the logging system.
16282
16283 The filter stores the accumulated MSE (mean squared error) of each
16284 frame, and at the end of the processing it is averaged across all frames
16285 equally, and the following formula is applied to obtain the PSNR:
16286
16287 @example
16288 PSNR = 10*log10(MAX^2/MSE)
16289 @end example
16290
16291 Where MAX is the average of the maximum values of each component of the
16292 image.
16293
16294 The description of the accepted parameters follows.
16295
16296 @table @option
16297 @item stats_file, f
16298 If specified the filter will use the named file to save the PSNR of
16299 each individual frame. When filename equals "-" the data is sent to
16300 standard output.
16301
16302 @item stats_version
16303 Specifies which version of the stats file format to use. Details of
16304 each format are written below.
16305 Default value is 1.
16306
16307 @item stats_add_max
16308 Determines whether the max value is output to the stats log.
16309 Default value is 0.
16310 Requires stats_version >= 2. If this is set and stats_version < 2,
16311 the filter will return an error.
16312 @end table
16313
16314 This filter also supports the @ref{framesync} options.
16315
16316 The file printed if @var{stats_file} is selected, contains a sequence of
16317 key/value pairs of the form @var{key}:@var{value} for each compared
16318 couple of frames.
16319
16320 If a @var{stats_version} greater than 1 is specified, a header line precedes
16321 the list of per-frame-pair stats, with key value pairs following the frame
16322 format with the following parameters:
16323
16324 @table @option
16325 @item psnr_log_version
16326 The version of the log file format. Will match @var{stats_version}.
16327
16328 @item fields
16329 A comma separated list of the per-frame-pair parameters included in
16330 the log.
16331 @end table
16332
16333 A description of each shown per-frame-pair parameter follows:
16334
16335 @table @option
16336 @item n
16337 sequential number of the input frame, starting from 1
16338
16339 @item mse_avg
16340 Mean Square Error pixel-by-pixel average difference of the compared
16341 frames, averaged over all the image components.
16342
16343 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
16344 Mean Square Error pixel-by-pixel average difference of the compared
16345 frames for the component specified by the suffix.
16346
16347 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
16348 Peak Signal to Noise ratio of the compared frames for the component
16349 specified by the suffix.
16350
16351 @item max_avg, max_y, max_u, max_v
16352 Maximum allowed value for each channel, and average over all
16353 channels.
16354 @end table
16355
16356 @subsection Examples
16357 @itemize
16358 @item
16359 For example:
16360 @example
16361 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16362 [main][ref] psnr="stats_file=stats.log" [out]
16363 @end example
16364
16365 On this example the input file being processed is compared with the
16366 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
16367 is stored in @file{stats.log}.
16368
16369 @item
16370 Another example with different containers:
16371 @example
16372 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 -
16373 @end example
16374 @end itemize
16375
16376 @anchor{pullup}
16377 @section pullup
16378
16379 Pulldown reversal (inverse telecine) filter, capable of handling mixed
16380 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
16381 content.
16382
16383 The pullup filter is designed to take advantage of future context in making
16384 its decisions. This filter is stateless in the sense that it does not lock
16385 onto a pattern to follow, but it instead looks forward to the following
16386 fields in order to identify matches and rebuild progressive frames.
16387
16388 To produce content with an even framerate, insert the fps filter after
16389 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
16390 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
16391
16392 The filter accepts the following options:
16393
16394 @table @option
16395 @item jl
16396 @item jr
16397 @item jt
16398 @item jb
16399 These options set the amount of "junk" to ignore at the left, right, top, and
16400 bottom of the image, respectively. Left and right are in units of 8 pixels,
16401 while top and bottom are in units of 2 lines.
16402 The default is 8 pixels on each side.
16403
16404 @item sb
16405 Set the strict breaks. Setting this option to 1 will reduce the chances of
16406 filter generating an occasional mismatched frame, but it may also cause an
16407 excessive number of frames to be dropped during high motion sequences.
16408 Conversely, setting it to -1 will make filter match fields more easily.
16409 This may help processing of video where there is slight blurring between
16410 the fields, but may also cause there to be interlaced frames in the output.
16411 Default value is @code{0}.
16412
16413 @item mp
16414 Set the metric plane to use. It accepts the following values:
16415 @table @samp
16416 @item l
16417 Use luma plane.
16418
16419 @item u
16420 Use chroma blue plane.
16421
16422 @item v
16423 Use chroma red plane.
16424 @end table
16425
16426 This option may be set to use chroma plane instead of the default luma plane
16427 for doing filter's computations. This may improve accuracy on very clean
16428 source material, but more likely will decrease accuracy, especially if there
16429 is chroma noise (rainbow effect) or any grayscale video.
16430 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
16431 load and make pullup usable in realtime on slow machines.
16432 @end table
16433
16434 For best results (without duplicated frames in the output file) it is
16435 necessary to change the output frame rate. For example, to inverse
16436 telecine NTSC input:
16437 @example
16438 ffmpeg -i input -vf pullup -r 24000/1001 ...
16439 @end example
16440
16441 @section qp
16442
16443 Change video quantization parameters (QP).
16444
16445 The filter accepts the following option:
16446
16447 @table @option
16448 @item qp
16449 Set expression for quantization parameter.
16450 @end table
16451
16452 The expression is evaluated through the eval API and can contain, among others,
16453 the following constants:
16454
16455 @table @var
16456 @item known
16457 1 if index is not 129, 0 otherwise.
16458
16459 @item qp
16460 Sequential index starting from -129 to 128.
16461 @end table
16462
16463 @subsection Examples
16464
16465 @itemize
16466 @item
16467 Some equation like:
16468 @example
16469 qp=2+2*sin(PI*qp)
16470 @end example
16471 @end itemize
16472
16473 @section random
16474
16475 Flush video frames from internal cache of frames into a random order.
16476 No frame is discarded.
16477 Inspired by @ref{frei0r} nervous filter.
16478
16479 @table @option
16480 @item frames
16481 Set size in number of frames of internal cache, in range from @code{2} to
16482 @code{512}. Default is @code{30}.
16483
16484 @item seed
16485 Set seed for random number generator, must be an integer included between
16486 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16487 less than @code{0}, the filter will try to use a good random seed on a
16488 best effort basis.
16489 @end table
16490
16491 @section readeia608
16492
16493 Read closed captioning (EIA-608) information from the top lines of a video frame.
16494
16495 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
16496 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
16497 with EIA-608 data (starting from 0). A description of each metadata value follows:
16498
16499 @table @option
16500 @item lavfi.readeia608.X.cc
16501 The two bytes stored as EIA-608 data (printed in hexadecimal).
16502
16503 @item lavfi.readeia608.X.line
16504 The number of the line on which the EIA-608 data was identified and read.
16505 @end table
16506
16507 This filter accepts the following options:
16508
16509 @table @option
16510 @item scan_min
16511 Set the line to start scanning for EIA-608 data. Default is @code{0}.
16512
16513 @item scan_max
16514 Set the line to end scanning for EIA-608 data. Default is @code{29}.
16515
16516 @item spw
16517 Set the ratio of width reserved for sync code detection.
16518 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
16519
16520 @item chp
16521 Enable checking the parity bit. In the event of a parity error, the filter will output
16522 @code{0x00} for that character. Default is false.
16523
16524 @item lp
16525 Lowpass lines prior to further processing. Default is enabled.
16526 @end table
16527
16528 @subsection Commands
16529
16530 This filter supports the all above options as @ref{commands}.
16531
16532 @subsection Examples
16533
16534 @itemize
16535 @item
16536 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
16537 @example
16538 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
16539 @end example
16540 @end itemize
16541
16542 @section readvitc
16543
16544 Read vertical interval timecode (VITC) information from the top lines of a
16545 video frame.
16546
16547 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
16548 timecode value, if a valid timecode has been detected. Further metadata key
16549 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
16550 timecode data has been found or not.
16551
16552 This filter accepts the following options:
16553
16554 @table @option
16555 @item scan_max
16556 Set the maximum number of lines to scan for VITC data. If the value is set to
16557 @code{-1} the full video frame is scanned. Default is @code{45}.
16558
16559 @item thr_b
16560 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
16561 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
16562
16563 @item thr_w
16564 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16565 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16566 @end table
16567
16568 @subsection Examples
16569
16570 @itemize
16571 @item
16572 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16573 draw @code{--:--:--:--} as a placeholder:
16574 @example
16575 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16576 @end example
16577 @end itemize
16578
16579 @section remap
16580
16581 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16582
16583 Destination pixel at position (X, Y) will be picked from source (x, y) position
16584 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16585 value for pixel will be used for destination pixel.
16586
16587 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16588 will have Xmap/Ymap video stream dimensions.
16589 Xmap and Ymap input video streams are 16bit depth, single channel.
16590
16591 @table @option
16592 @item format
16593 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16594 Default is @code{color}.
16595
16596 @item fill
16597 Specify the color of the unmapped pixels. For the syntax of this option,
16598 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16599 manual,ffmpeg-utils}. Default color is @code{black}.
16600 @end table
16601
16602 @section removegrain
16603
16604 The removegrain filter is a spatial denoiser for progressive video.
16605
16606 @table @option
16607 @item m0
16608 Set mode for the first plane.
16609
16610 @item m1
16611 Set mode for the second plane.
16612
16613 @item m2
16614 Set mode for the third plane.
16615
16616 @item m3
16617 Set mode for the fourth plane.
16618 @end table
16619
16620 Range of mode is from 0 to 24. Description of each mode follows:
16621
16622 @table @var
16623 @item 0
16624 Leave input plane unchanged. Default.
16625
16626 @item 1
16627 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16628
16629 @item 2
16630 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16631
16632 @item 3
16633 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16634
16635 @item 4
16636 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
16637 This is equivalent to a median filter.
16638
16639 @item 5
16640 Line-sensitive clipping giving the minimal change.
16641
16642 @item 6
16643 Line-sensitive clipping, intermediate.
16644
16645 @item 7
16646 Line-sensitive clipping, intermediate.
16647
16648 @item 8
16649 Line-sensitive clipping, intermediate.
16650
16651 @item 9
16652 Line-sensitive clipping on a line where the neighbours pixels are the closest.
16653
16654 @item 10
16655 Replaces the target pixel with the closest neighbour.
16656
16657 @item 11
16658 [1 2 1] horizontal and vertical kernel blur.
16659
16660 @item 12
16661 Same as mode 11.
16662
16663 @item 13
16664 Bob mode, interpolates top field from the line where the neighbours
16665 pixels are the closest.
16666
16667 @item 14
16668 Bob mode, interpolates bottom field from the line where the neighbours
16669 pixels are the closest.
16670
16671 @item 15
16672 Bob mode, interpolates top field. Same as 13 but with a more complicated
16673 interpolation formula.
16674
16675 @item 16
16676 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
16677 interpolation formula.
16678
16679 @item 17
16680 Clips the pixel with the minimum and maximum of respectively the maximum and
16681 minimum of each pair of opposite neighbour pixels.
16682
16683 @item 18
16684 Line-sensitive clipping using opposite neighbours whose greatest distance from
16685 the current pixel is minimal.
16686
16687 @item 19
16688 Replaces the pixel with the average of its 8 neighbours.
16689
16690 @item 20
16691 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
16692
16693 @item 21
16694 Clips pixels using the averages of opposite neighbour.
16695
16696 @item 22
16697 Same as mode 21 but simpler and faster.
16698
16699 @item 23
16700 Small edge and halo removal, but reputed useless.
16701
16702 @item 24
16703 Similar as 23.
16704 @end table
16705
16706 @section removelogo
16707
16708 Suppress a TV station logo, using an image file to determine which
16709 pixels comprise the logo. It works by filling in the pixels that
16710 comprise the logo with neighboring pixels.
16711
16712 The filter accepts the following options:
16713
16714 @table @option
16715 @item filename, f
16716 Set the filter bitmap file, which can be any image format supported by
16717 libavformat. The width and height of the image file must match those of the
16718 video stream being processed.
16719 @end table
16720
16721 Pixels in the provided bitmap image with a value of zero are not
16722 considered part of the logo, non-zero pixels are considered part of
16723 the logo. If you use white (255) for the logo and black (0) for the
16724 rest, you will be safe. For making the filter bitmap, it is
16725 recommended to take a screen capture of a black frame with the logo
16726 visible, and then using a threshold filter followed by the erode
16727 filter once or twice.
16728
16729 If needed, little splotches can be fixed manually. Remember that if
16730 logo pixels are not covered, the filter quality will be much
16731 reduced. Marking too many pixels as part of the logo does not hurt as
16732 much, but it will increase the amount of blurring needed to cover over
16733 the image and will destroy more information than necessary, and extra
16734 pixels will slow things down on a large logo.
16735
16736 @section repeatfields
16737
16738 This filter uses the repeat_field flag from the Video ES headers and hard repeats
16739 fields based on its value.
16740
16741 @section reverse
16742
16743 Reverse a video clip.
16744
16745 Warning: This filter requires memory to buffer the entire clip, so trimming
16746 is suggested.
16747
16748 @subsection Examples
16749
16750 @itemize
16751 @item
16752 Take the first 5 seconds of a clip, and reverse it.
16753 @example
16754 trim=end=5,reverse
16755 @end example
16756 @end itemize
16757
16758 @section rgbashift
16759 Shift R/G/B/A pixels horizontally and/or vertically.
16760
16761 The filter accepts the following options:
16762 @table @option
16763 @item rh
16764 Set amount to shift red horizontally.
16765 @item rv
16766 Set amount to shift red vertically.
16767 @item gh
16768 Set amount to shift green horizontally.
16769 @item gv
16770 Set amount to shift green vertically.
16771 @item bh
16772 Set amount to shift blue horizontally.
16773 @item bv
16774 Set amount to shift blue vertically.
16775 @item ah
16776 Set amount to shift alpha horizontally.
16777 @item av
16778 Set amount to shift alpha vertically.
16779 @item edge
16780 Set edge mode, can be @var{smear}, default, or @var{warp}.
16781 @end table
16782
16783 @subsection Commands
16784
16785 This filter supports the all above options as @ref{commands}.
16786
16787 @section roberts
16788 Apply roberts cross operator to input video stream.
16789
16790 The filter accepts the following option:
16791
16792 @table @option
16793 @item planes
16794 Set which planes will be processed, unprocessed planes will be copied.
16795 By default value 0xf, all planes will be processed.
16796
16797 @item scale
16798 Set value which will be multiplied with filtered result.
16799
16800 @item delta
16801 Set value which will be added to filtered result.
16802 @end table
16803
16804 @subsection Commands
16805
16806 This filter supports the all above options as @ref{commands}.
16807
16808 @section rotate
16809
16810 Rotate video by an arbitrary angle expressed in radians.
16811
16812 The filter accepts the following options:
16813
16814 A description of the optional parameters follows.
16815 @table @option
16816 @item angle, a
16817 Set an expression for the angle by which to rotate the input video
16818 clockwise, expressed as a number of radians. A negative value will
16819 result in a counter-clockwise rotation. By default it is set to "0".
16820
16821 This expression is evaluated for each frame.
16822
16823 @item out_w, ow
16824 Set the output width expression, default value is "iw".
16825 This expression is evaluated just once during configuration.
16826
16827 @item out_h, oh
16828 Set the output height expression, default value is "ih".
16829 This expression is evaluated just once during configuration.
16830
16831 @item bilinear
16832 Enable bilinear interpolation if set to 1, a value of 0 disables
16833 it. Default value is 1.
16834
16835 @item fillcolor, c
16836 Set the color used to fill the output area not covered by the rotated
16837 image. For the general syntax of this option, check the
16838 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16839 If the special value "none" is selected then no
16840 background is printed (useful for example if the background is never shown).
16841
16842 Default value is "black".
16843 @end table
16844
16845 The expressions for the angle and the output size can contain the
16846 following constants and functions:
16847
16848 @table @option
16849 @item n
16850 sequential number of the input frame, starting from 0. It is always NAN
16851 before the first frame is filtered.
16852
16853 @item t
16854 time in seconds of the input frame, it is set to 0 when the filter is
16855 configured. It is always NAN before the first frame is filtered.
16856
16857 @item hsub
16858 @item vsub
16859 horizontal and vertical chroma subsample values. For example for the
16860 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16861
16862 @item in_w, iw
16863 @item in_h, ih
16864 the input video width and height
16865
16866 @item out_w, ow
16867 @item out_h, oh
16868 the output width and height, that is the size of the padded area as
16869 specified by the @var{width} and @var{height} expressions
16870
16871 @item rotw(a)
16872 @item roth(a)
16873 the minimal width/height required for completely containing the input
16874 video rotated by @var{a} radians.
16875
16876 These are only available when computing the @option{out_w} and
16877 @option{out_h} expressions.
16878 @end table
16879
16880 @subsection Examples
16881
16882 @itemize
16883 @item
16884 Rotate the input by PI/6 radians clockwise:
16885 @example
16886 rotate=PI/6
16887 @end example
16888
16889 @item
16890 Rotate the input by PI/6 radians counter-clockwise:
16891 @example
16892 rotate=-PI/6
16893 @end example
16894
16895 @item
16896 Rotate the input by 45 degrees clockwise:
16897 @example
16898 rotate=45*PI/180
16899 @end example
16900
16901 @item
16902 Apply a constant rotation with period T, starting from an angle of PI/3:
16903 @example
16904 rotate=PI/3+2*PI*t/T
16905 @end example
16906
16907 @item
16908 Make the input video rotation oscillating with a period of T
16909 seconds and an amplitude of A radians:
16910 @example
16911 rotate=A*sin(2*PI/T*t)
16912 @end example
16913
16914 @item
16915 Rotate the video, output size is chosen so that the whole rotating
16916 input video is always completely contained in the output:
16917 @example
16918 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
16919 @end example
16920
16921 @item
16922 Rotate the video, reduce the output size so that no background is ever
16923 shown:
16924 @example
16925 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
16926 @end example
16927 @end itemize
16928
16929 @subsection Commands
16930
16931 The filter supports the following commands:
16932
16933 @table @option
16934 @item a, angle
16935 Set the angle expression.
16936 The command accepts the same syntax of the corresponding option.
16937
16938 If the specified expression is not valid, it is kept at its current
16939 value.
16940 @end table
16941
16942 @section sab
16943
16944 Apply Shape Adaptive Blur.
16945
16946 The filter accepts the following options:
16947
16948 @table @option
16949 @item luma_radius, lr
16950 Set luma blur filter strength, must be a value in range 0.1-4.0, default
16951 value is 1.0. A greater value will result in a more blurred image, and
16952 in slower processing.
16953
16954 @item luma_pre_filter_radius, lpfr
16955 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
16956 value is 1.0.
16957
16958 @item luma_strength, ls
16959 Set luma maximum difference between pixels to still be considered, must
16960 be a value in the 0.1-100.0 range, default value is 1.0.
16961
16962 @item chroma_radius, cr
16963 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
16964 greater value will result in a more blurred image, and in slower
16965 processing.
16966
16967 @item chroma_pre_filter_radius, cpfr
16968 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
16969
16970 @item chroma_strength, cs
16971 Set chroma maximum difference between pixels to still be considered,
16972 must be a value in the -0.9-100.0 range.
16973 @end table
16974
16975 Each chroma option value, if not explicitly specified, is set to the
16976 corresponding luma option value.
16977
16978 @anchor{scale}
16979 @section scale
16980
16981 Scale (resize) the input video, using the libswscale library.
16982
16983 The scale filter forces the output display aspect ratio to be the same
16984 of the input, by changing the output sample aspect ratio.
16985
16986 If the input image format is different from the format requested by
16987 the next filter, the scale filter will convert the input to the
16988 requested format.
16989
16990 @subsection Options
16991 The filter accepts the following options, or any of the options
16992 supported by the libswscale scaler.
16993
16994 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
16995 the complete list of scaler options.
16996
16997 @table @option
16998 @item width, w
16999 @item height, h
17000 Set the output video dimension expression. Default value is the input
17001 dimension.
17002
17003 If the @var{width} or @var{w} value is 0, the input width is used for
17004 the output. If the @var{height} or @var{h} value is 0, the input height
17005 is used for the output.
17006
17007 If one and only one of the values is -n with n >= 1, the scale filter
17008 will use a value that maintains the aspect ratio of the input image,
17009 calculated from the other specified dimension. After that it will,
17010 however, make sure that the calculated dimension is divisible by n and
17011 adjust the value if necessary.
17012
17013 If both values are -n with n >= 1, the behavior will be identical to
17014 both values being set to 0 as previously detailed.
17015
17016 See below for the list of accepted constants for use in the dimension
17017 expression.
17018
17019 @item eval
17020 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
17021
17022 @table @samp
17023 @item init
17024 Only evaluate expressions once during the filter initialization or when a command is processed.
17025
17026 @item frame
17027 Evaluate expressions for each incoming frame.
17028
17029 @end table
17030
17031 Default value is @samp{init}.
17032
17033
17034 @item interl
17035 Set the interlacing mode. It accepts the following values:
17036
17037 @table @samp
17038 @item 1
17039 Force interlaced aware scaling.
17040
17041 @item 0
17042 Do not apply interlaced scaling.
17043
17044 @item -1
17045 Select interlaced aware scaling depending on whether the source frames
17046 are flagged as interlaced or not.
17047 @end table
17048
17049 Default value is @samp{0}.
17050
17051 @item flags
17052 Set libswscale scaling flags. See
17053 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
17054 complete list of values. If not explicitly specified the filter applies
17055 the default flags.
17056
17057
17058 @item param0, param1
17059 Set libswscale input parameters for scaling algorithms that need them. See
17060 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
17061 complete documentation. If not explicitly specified the filter applies
17062 empty parameters.
17063
17064
17065
17066 @item size, s
17067 Set the video size. For the syntax of this option, check the
17068 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17069
17070 @item in_color_matrix
17071 @item out_color_matrix
17072 Set in/output YCbCr color space type.
17073
17074 This allows the autodetected value to be overridden as well as allows forcing
17075 a specific value used for the output and encoder.
17076
17077 If not specified, the color space type depends on the pixel format.
17078
17079 Possible values:
17080
17081 @table @samp
17082 @item auto
17083 Choose automatically.
17084
17085 @item bt709
17086 Format conforming to International Telecommunication Union (ITU)
17087 Recommendation BT.709.
17088
17089 @item fcc
17090 Set color space conforming to the United States Federal Communications
17091 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
17092
17093 @item bt601
17094 @item bt470
17095 @item smpte170m
17096 Set color space conforming to:
17097
17098 @itemize
17099 @item
17100 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
17101
17102 @item
17103 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
17104
17105 @item
17106 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
17107
17108 @end itemize
17109
17110 @item smpte240m
17111 Set color space conforming to SMPTE ST 240:1999.
17112
17113 @item bt2020
17114 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
17115 @end table
17116
17117 @item in_range
17118 @item out_range
17119 Set in/output YCbCr sample range.
17120
17121 This allows the autodetected value to be overridden as well as allows forcing
17122 a specific value used for the output and encoder. If not specified, the
17123 range depends on the pixel format. Possible values:
17124
17125 @table @samp
17126 @item auto/unknown
17127 Choose automatically.
17128
17129 @item jpeg/full/pc
17130 Set full range (0-255 in case of 8-bit luma).
17131
17132 @item mpeg/limited/tv
17133 Set "MPEG" range (16-235 in case of 8-bit luma).
17134 @end table
17135
17136 @item force_original_aspect_ratio
17137 Enable decreasing or increasing output video width or height if necessary to
17138 keep the original aspect ratio. Possible values:
17139
17140 @table @samp
17141 @item disable
17142 Scale the video as specified and disable this feature.
17143
17144 @item decrease
17145 The output video dimensions will automatically be decreased if needed.
17146
17147 @item increase
17148 The output video dimensions will automatically be increased if needed.
17149
17150 @end table
17151
17152 One useful instance of this option is that when you know a specific device's
17153 maximum allowed resolution, you can use this to limit the output video to
17154 that, while retaining the aspect ratio. For example, device A allows
17155 1280x720 playback, and your video is 1920x800. Using this option (set it to
17156 decrease) and specifying 1280x720 to the command line makes the output
17157 1280x533.
17158
17159 Please note that this is a different thing than specifying -1 for @option{w}
17160 or @option{h}, you still need to specify the output resolution for this option
17161 to work.
17162
17163 @item force_divisible_by
17164 Ensures that both the output dimensions, width and height, are divisible by the
17165 given integer when used together with @option{force_original_aspect_ratio}. This
17166 works similar to using @code{-n} in the @option{w} and @option{h} options.
17167
17168 This option respects the value set for @option{force_original_aspect_ratio},
17169 increasing or decreasing the resolution accordingly. The video's aspect ratio
17170 may be slightly modified.
17171
17172 This option can be handy if you need to have a video fit within or exceed
17173 a defined resolution using @option{force_original_aspect_ratio} but also have
17174 encoder restrictions on width or height divisibility.
17175
17176 @end table
17177
17178 The values of the @option{w} and @option{h} options are expressions
17179 containing the following constants:
17180
17181 @table @var
17182 @item in_w
17183 @item in_h
17184 The input width and height
17185
17186 @item iw
17187 @item ih
17188 These are the same as @var{in_w} and @var{in_h}.
17189
17190 @item out_w
17191 @item out_h
17192 The output (scaled) width and height
17193
17194 @item ow
17195 @item oh
17196 These are the same as @var{out_w} and @var{out_h}
17197
17198 @item a
17199 The same as @var{iw} / @var{ih}
17200
17201 @item sar
17202 input sample aspect ratio
17203
17204 @item dar
17205 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
17206
17207 @item hsub
17208 @item vsub
17209 horizontal and vertical input chroma subsample values. For example for the
17210 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17211
17212 @item ohsub
17213 @item ovsub
17214 horizontal and vertical output chroma subsample values. For example for the
17215 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17216
17217 @item n
17218 The (sequential) number of the input frame, starting from 0.
17219 Only available with @code{eval=frame}.
17220
17221 @item t
17222 The presentation timestamp of the input frame, expressed as a number of
17223 seconds. Only available with @code{eval=frame}.
17224
17225 @item pos
17226 The position (byte offset) of the frame in the input stream, or NaN if
17227 this information is unavailable and/or meaningless (for example in case of synthetic video).
17228 Only available with @code{eval=frame}.
17229 @end table
17230
17231 @subsection Examples
17232
17233 @itemize
17234 @item
17235 Scale the input video to a size of 200x100
17236 @example
17237 scale=w=200:h=100
17238 @end example
17239
17240 This is equivalent to:
17241 @example
17242 scale=200:100
17243 @end example
17244
17245 or:
17246 @example
17247 scale=200x100
17248 @end example
17249
17250 @item
17251 Specify a size abbreviation for the output size:
17252 @example
17253 scale=qcif
17254 @end example
17255
17256 which can also be written as:
17257 @example
17258 scale=size=qcif
17259 @end example
17260
17261 @item
17262 Scale the input to 2x:
17263 @example
17264 scale=w=2*iw:h=2*ih
17265 @end example
17266
17267 @item
17268 The above is the same as:
17269 @example
17270 scale=2*in_w:2*in_h
17271 @end example
17272
17273 @item
17274 Scale the input to 2x with forced interlaced scaling:
17275 @example
17276 scale=2*iw:2*ih:interl=1
17277 @end example
17278
17279 @item
17280 Scale the input to half size:
17281 @example
17282 scale=w=iw/2:h=ih/2
17283 @end example
17284
17285 @item
17286 Increase the width, and set the height to the same size:
17287 @example
17288 scale=3/2*iw:ow
17289 @end example
17290
17291 @item
17292 Seek Greek harmony:
17293 @example
17294 scale=iw:1/PHI*iw
17295 scale=ih*PHI:ih
17296 @end example
17297
17298 @item
17299 Increase the height, and set the width to 3/2 of the height:
17300 @example
17301 scale=w=3/2*oh:h=3/5*ih
17302 @end example
17303
17304 @item
17305 Increase the size, making the size a multiple of the chroma
17306 subsample values:
17307 @example
17308 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
17309 @end example
17310
17311 @item
17312 Increase the width to a maximum of 500 pixels,
17313 keeping the same aspect ratio as the input:
17314 @example
17315 scale=w='min(500\, iw*3/2):h=-1'
17316 @end example
17317
17318 @item
17319 Make pixels square by combining scale and setsar:
17320 @example
17321 scale='trunc(ih*dar):ih',setsar=1/1
17322 @end example
17323
17324 @item
17325 Make pixels square by combining scale and setsar,
17326 making sure the resulting resolution is even (required by some codecs):
17327 @example
17328 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
17329 @end example
17330 @end itemize
17331
17332 @subsection Commands
17333
17334 This filter supports the following commands:
17335 @table @option
17336 @item width, w
17337 @item height, h
17338 Set the output video dimension expression.
17339 The command accepts the same syntax of the corresponding option.
17340
17341 If the specified expression is not valid, it is kept at its current
17342 value.
17343 @end table
17344
17345 @section scale_npp
17346
17347 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
17348 format conversion on CUDA video frames. Setting the output width and height
17349 works in the same way as for the @var{scale} filter.
17350
17351 The following additional options are accepted:
17352 @table @option
17353 @item format
17354 The pixel format of the output CUDA frames. If set to the string "same" (the
17355 default), the input format will be kept. Note that automatic format negotiation
17356 and conversion is not yet supported for hardware frames
17357
17358 @item interp_algo
17359 The interpolation algorithm used for resizing. One of the following:
17360 @table @option
17361 @item nn
17362 Nearest neighbour.
17363
17364 @item linear
17365 @item cubic
17366 @item cubic2p_bspline
17367 2-parameter cubic (B=1, C=0)
17368
17369 @item cubic2p_catmullrom
17370 2-parameter cubic (B=0, C=1/2)
17371
17372 @item cubic2p_b05c03
17373 2-parameter cubic (B=1/2, C=3/10)
17374
17375 @item super
17376 Supersampling
17377
17378 @item lanczos
17379 @end table
17380
17381 @item force_original_aspect_ratio
17382 Enable decreasing or increasing output video width or height if necessary to
17383 keep the original aspect ratio. Possible values:
17384
17385 @table @samp
17386 @item disable
17387 Scale the video as specified and disable this feature.
17388
17389 @item decrease
17390 The output video dimensions will automatically be decreased if needed.
17391
17392 @item increase
17393 The output video dimensions will automatically be increased if needed.
17394
17395 @end table
17396
17397 One useful instance of this option is that when you know a specific device's
17398 maximum allowed resolution, you can use this to limit the output video to
17399 that, while retaining the aspect ratio. For example, device A allows
17400 1280x720 playback, and your video is 1920x800. Using this option (set it to
17401 decrease) and specifying 1280x720 to the command line makes the output
17402 1280x533.
17403
17404 Please note that this is a different thing than specifying -1 for @option{w}
17405 or @option{h}, you still need to specify the output resolution for this option
17406 to work.
17407
17408 @item force_divisible_by
17409 Ensures that both the output dimensions, width and height, are divisible by the
17410 given integer when used together with @option{force_original_aspect_ratio}. This
17411 works similar to using @code{-n} in the @option{w} and @option{h} options.
17412
17413 This option respects the value set for @option{force_original_aspect_ratio},
17414 increasing or decreasing the resolution accordingly. The video's aspect ratio
17415 may be slightly modified.
17416
17417 This option can be handy if you need to have a video fit within or exceed
17418 a defined resolution using @option{force_original_aspect_ratio} but also have
17419 encoder restrictions on width or height divisibility.
17420
17421 @end table
17422
17423 @section scale2ref
17424
17425 Scale (resize) the input video, based on a reference video.
17426
17427 See the scale filter for available options, scale2ref supports the same but
17428 uses the reference video instead of the main input as basis. scale2ref also
17429 supports the following additional constants for the @option{w} and
17430 @option{h} options:
17431
17432 @table @var
17433 @item main_w
17434 @item main_h
17435 The main input video's width and height
17436
17437 @item main_a
17438 The same as @var{main_w} / @var{main_h}
17439
17440 @item main_sar
17441 The main input video's sample aspect ratio
17442
17443 @item main_dar, mdar
17444 The main input video's display aspect ratio. Calculated from
17445 @code{(main_w / main_h) * main_sar}.
17446
17447 @item main_hsub
17448 @item main_vsub
17449 The main input video's horizontal and vertical chroma subsample values.
17450 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
17451 is 1.
17452
17453 @item main_n
17454 The (sequential) number of the main input frame, starting from 0.
17455 Only available with @code{eval=frame}.
17456
17457 @item main_t
17458 The presentation timestamp of the main input frame, expressed as a number of
17459 seconds. Only available with @code{eval=frame}.
17460
17461 @item main_pos
17462 The position (byte offset) of the frame in the main input stream, or NaN if
17463 this information is unavailable and/or meaningless (for example in case of synthetic video).
17464 Only available with @code{eval=frame}.
17465 @end table
17466
17467 @subsection Examples
17468
17469 @itemize
17470 @item
17471 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
17472 @example
17473 'scale2ref[b][a];[a][b]overlay'
17474 @end example
17475
17476 @item
17477 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
17478 @example
17479 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
17480 @end example
17481 @end itemize
17482
17483 @subsection Commands
17484
17485 This filter supports the following commands:
17486 @table @option
17487 @item width, w
17488 @item height, h
17489 Set the output video dimension expression.
17490 The command accepts the same syntax of the corresponding option.
17491
17492 If the specified expression is not valid, it is kept at its current
17493 value.
17494 @end table
17495
17496 @section scroll
17497 Scroll input video horizontally and/or vertically by constant speed.
17498
17499 The filter accepts the following options:
17500 @table @option
17501 @item horizontal, h
17502 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
17503 Negative values changes scrolling direction.
17504
17505 @item vertical, v
17506 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
17507 Negative values changes scrolling direction.
17508
17509 @item hpos
17510 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
17511
17512 @item vpos
17513 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
17514 @end table
17515
17516 @subsection Commands
17517
17518 This filter supports the following @ref{commands}:
17519 @table @option
17520 @item horizontal, h
17521 Set the horizontal scrolling speed.
17522 @item vertical, v
17523 Set the vertical scrolling speed.
17524 @end table
17525
17526 @anchor{scdet}
17527 @section scdet
17528
17529 Detect video scene change.
17530
17531 This filter sets frame metadata with mafd between frame, the scene score, and
17532 forward the frame to the next filter, so they can use these metadata to detect
17533 scene change or others.
17534
17535 In addition, this filter logs a message and sets frame metadata when it detects
17536 a scene change by @option{threshold}.
17537
17538 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
17539
17540 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
17541 to detect scene change.
17542
17543 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
17544 detect scene change with @option{threshold}.
17545
17546 The filter accepts the following options:
17547
17548 @table @option
17549 @item threshold, t
17550 Set the scene change detection threshold as a percentage of maximum change. Good
17551 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
17552 @code{[0., 100.]}.
17553
17554 Default value is @code{10.}.
17555
17556 @item sc_pass, s
17557 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
17558 You can enable it if you want to get snapshot of scene change frames only.
17559 @end table
17560
17561 @anchor{selectivecolor}
17562 @section selectivecolor
17563
17564 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
17565 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
17566 by the "purity" of the color (that is, how saturated it already is).
17567
17568 This filter is similar to the Adobe Photoshop Selective Color tool.
17569
17570 The filter accepts the following options:
17571
17572 @table @option
17573 @item correction_method
17574 Select color correction method.
17575
17576 Available values are:
17577 @table @samp
17578 @item absolute
17579 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17580 component value).
17581 @item relative
17582 Specified adjustments are relative to the original component value.
17583 @end table
17584 Default is @code{absolute}.
17585 @item reds
17586 Adjustments for red pixels (pixels where the red component is the maximum)
17587 @item yellows
17588 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17589 @item greens
17590 Adjustments for green pixels (pixels where the green component is the maximum)
17591 @item cyans
17592 Adjustments for cyan pixels (pixels where the red component is the minimum)
17593 @item blues
17594 Adjustments for blue pixels (pixels where the blue component is the maximum)
17595 @item magentas
17596 Adjustments for magenta pixels (pixels where the green component is the minimum)
17597 @item whites
17598 Adjustments for white pixels (pixels where all components are greater than 128)
17599 @item neutrals
17600 Adjustments for all pixels except pure black and pure white
17601 @item blacks
17602 Adjustments for black pixels (pixels where all components are lesser than 128)
17603 @item psfile
17604 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17605 @end table
17606
17607 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17608 4 space separated floating point adjustment values in the [-1,1] range,
17609 respectively to adjust the amount of cyan, magenta, yellow and black for the
17610 pixels of its range.
17611
17612 @subsection Examples
17613
17614 @itemize
17615 @item
17616 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17617 increase magenta by 27% in blue areas:
17618 @example
17619 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17620 @end example
17621
17622 @item
17623 Use a Photoshop selective color preset:
17624 @example
17625 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17626 @end example
17627 @end itemize
17628
17629 @anchor{separatefields}
17630 @section separatefields
17631
17632 The @code{separatefields} takes a frame-based video input and splits
17633 each frame into its components fields, producing a new half height clip
17634 with twice the frame rate and twice the frame count.
17635
17636 This filter use field-dominance information in frame to decide which
17637 of each pair of fields to place first in the output.
17638 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
17639
17640 @section setdar, setsar
17641
17642 The @code{setdar} filter sets the Display Aspect Ratio for the filter
17643 output video.
17644
17645 This is done by changing the specified Sample (aka Pixel) Aspect
17646 Ratio, according to the following equation:
17647 @example
17648 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
17649 @end example
17650
17651 Keep in mind that the @code{setdar} filter does not modify the pixel
17652 dimensions of the video frame. Also, the display aspect ratio set by
17653 this filter may be changed by later filters in the filterchain,
17654 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
17655 applied.
17656
17657 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
17658 the filter output video.
17659
17660 Note that as a consequence of the application of this filter, the
17661 output display aspect ratio will change according to the equation
17662 above.
17663
17664 Keep in mind that the sample aspect ratio set by the @code{setsar}
17665 filter may be changed by later filters in the filterchain, e.g. if
17666 another "setsar" or a "setdar" filter is applied.
17667
17668 It accepts the following parameters:
17669
17670 @table @option
17671 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
17672 Set the aspect ratio used by the filter.
17673
17674 The parameter can be a floating point number string, an expression, or
17675 a string of the form @var{num}:@var{den}, where @var{num} and
17676 @var{den} are the numerator and denominator of the aspect ratio. If
17677 the parameter is not specified, it is assumed the value "0".
17678 In case the form "@var{num}:@var{den}" is used, the @code{:} character
17679 should be escaped.
17680
17681 @item max
17682 Set the maximum integer value to use for expressing numerator and
17683 denominator when reducing the expressed aspect ratio to a rational.
17684 Default value is @code{100}.
17685
17686 @end table
17687
17688 The parameter @var{sar} is an expression containing
17689 the following constants:
17690
17691 @table @option
17692 @item E, PI, PHI
17693 These are approximated values for the mathematical constants e
17694 (Euler's number), pi (Greek pi), and phi (the golden ratio).
17695
17696 @item w, h
17697 The input width and height.
17698
17699 @item a
17700 These are the same as @var{w} / @var{h}.
17701
17702 @item sar
17703 The input sample aspect ratio.
17704
17705 @item dar
17706 The input display aspect ratio. It is the same as
17707 (@var{w} / @var{h}) * @var{sar}.
17708
17709 @item hsub, vsub
17710 Horizontal and vertical chroma subsample values. For example, for the
17711 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17712 @end table
17713
17714 @subsection Examples
17715
17716 @itemize
17717
17718 @item
17719 To change the display aspect ratio to 16:9, specify one of the following:
17720 @example
17721 setdar=dar=1.77777
17722 setdar=dar=16/9
17723 @end example
17724
17725 @item
17726 To change the sample aspect ratio to 10:11, specify:
17727 @example
17728 setsar=sar=10/11
17729 @end example
17730
17731 @item
17732 To set a display aspect ratio of 16:9, and specify a maximum integer value of
17733 1000 in the aspect ratio reduction, use the command:
17734 @example
17735 setdar=ratio=16/9:max=1000
17736 @end example
17737
17738 @end itemize
17739
17740 @anchor{setfield}
17741 @section setfield
17742
17743 Force field for the output video frame.
17744
17745 The @code{setfield} filter marks the interlace type field for the
17746 output frames. It does not change the input frame, but only sets the
17747 corresponding property, which affects how the frame is treated by
17748 following filters (e.g. @code{fieldorder} or @code{yadif}).
17749
17750 The filter accepts the following options:
17751
17752 @table @option
17753
17754 @item mode
17755 Available values are:
17756
17757 @table @samp
17758 @item auto
17759 Keep the same field property.
17760
17761 @item bff
17762 Mark the frame as bottom-field-first.
17763
17764 @item tff
17765 Mark the frame as top-field-first.
17766
17767 @item prog
17768 Mark the frame as progressive.
17769 @end table
17770 @end table
17771
17772 @anchor{setparams}
17773 @section setparams
17774
17775 Force frame parameter for the output video frame.
17776
17777 The @code{setparams} filter marks interlace and color range for the
17778 output frames. It does not change the input frame, but only sets the
17779 corresponding property, which affects how the frame is treated by
17780 filters/encoders.
17781
17782 @table @option
17783 @item field_mode
17784 Available values are:
17785
17786 @table @samp
17787 @item auto
17788 Keep the same field property (default).
17789
17790 @item bff
17791 Mark the frame as bottom-field-first.
17792
17793 @item tff
17794 Mark the frame as top-field-first.
17795
17796 @item prog
17797 Mark the frame as progressive.
17798 @end table
17799
17800 @item range
17801 Available values are:
17802
17803 @table @samp
17804 @item auto
17805 Keep the same color range property (default).
17806
17807 @item unspecified, unknown
17808 Mark the frame as unspecified color range.
17809
17810 @item limited, tv, mpeg
17811 Mark the frame as limited range.
17812
17813 @item full, pc, jpeg
17814 Mark the frame as full range.
17815 @end table
17816
17817 @item color_primaries
17818 Set the color primaries.
17819 Available values are:
17820
17821 @table @samp
17822 @item auto
17823 Keep the same color primaries property (default).
17824
17825 @item bt709
17826 @item unknown
17827 @item bt470m
17828 @item bt470bg
17829 @item smpte170m
17830 @item smpte240m
17831 @item film
17832 @item bt2020
17833 @item smpte428
17834 @item smpte431
17835 @item smpte432
17836 @item jedec-p22
17837 @end table
17838
17839 @item color_trc
17840 Set the color transfer.
17841 Available values are:
17842
17843 @table @samp
17844 @item auto
17845 Keep the same color trc property (default).
17846
17847 @item bt709
17848 @item unknown
17849 @item bt470m
17850 @item bt470bg
17851 @item smpte170m
17852 @item smpte240m
17853 @item linear
17854 @item log100
17855 @item log316
17856 @item iec61966-2-4
17857 @item bt1361e
17858 @item iec61966-2-1
17859 @item bt2020-10
17860 @item bt2020-12
17861 @item smpte2084
17862 @item smpte428
17863 @item arib-std-b67
17864 @end table
17865
17866 @item colorspace
17867 Set the colorspace.
17868 Available values are:
17869
17870 @table @samp
17871 @item auto
17872 Keep the same colorspace property (default).
17873
17874 @item gbr
17875 @item bt709
17876 @item unknown
17877 @item fcc
17878 @item bt470bg
17879 @item smpte170m
17880 @item smpte240m
17881 @item ycgco
17882 @item bt2020nc
17883 @item bt2020c
17884 @item smpte2085
17885 @item chroma-derived-nc
17886 @item chroma-derived-c
17887 @item ictcp
17888 @end table
17889 @end table
17890
17891 @section shear
17892 Apply shear transform to input video.
17893
17894 This filter supports the following options:
17895
17896 @table @option
17897 @item shx
17898 Shear factor in X-direction. Default value is 0.
17899 Allowed range is from -2 to 2.
17900
17901 @item shy
17902 Shear factor in Y-direction. Default value is 0.
17903 Allowed range is from -2 to 2.
17904
17905 @item fillcolor, c
17906 Set the color used to fill the output area not covered by the transformed
17907 video. For the general syntax of this option, check the
17908 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
17909 If the special value "none" is selected then no
17910 background is printed (useful for example if the background is never shown).
17911
17912 Default value is "black".
17913
17914 @item interp
17915 Set interpolation type. Can be @code{bilinear} or @code{nearest}. Default is @code{bilinear}.
17916 @end table
17917
17918 @subsection Commands
17919
17920 This filter supports the all above options as @ref{commands}.
17921
17922 @section showinfo
17923
17924 Show a line containing various information for each input video frame.
17925 The input video is not modified.
17926
17927 This filter supports the following options:
17928
17929 @table @option
17930 @item checksum
17931 Calculate checksums of each plane. By default enabled.
17932 @end table
17933
17934 The shown line contains a sequence of key/value pairs of the form
17935 @var{key}:@var{value}.
17936
17937 The following values are shown in the output:
17938
17939 @table @option
17940 @item n
17941 The (sequential) number of the input frame, starting from 0.
17942
17943 @item pts
17944 The Presentation TimeStamp of the input frame, expressed as a number of
17945 time base units. The time base unit depends on the filter input pad.
17946
17947 @item pts_time
17948 The Presentation TimeStamp of the input frame, expressed as a number of
17949 seconds.
17950
17951 @item pos
17952 The position of the frame in the input stream, or -1 if this information is
17953 unavailable and/or meaningless (for example in case of synthetic video).
17954
17955 @item fmt
17956 The pixel format name.
17957
17958 @item sar
17959 The sample aspect ratio of the input frame, expressed in the form
17960 @var{num}/@var{den}.
17961
17962 @item s
17963 The size of the input frame. For the syntax of this option, check the
17964 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17965
17966 @item i
17967 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
17968 for bottom field first).
17969
17970 @item iskey
17971 This is 1 if the frame is a key frame, 0 otherwise.
17972
17973 @item type
17974 The picture type of the input frame ("I" for an I-frame, "P" for a
17975 P-frame, "B" for a B-frame, or "?" for an unknown type).
17976 Also refer to the documentation of the @code{AVPictureType} enum and of
17977 the @code{av_get_picture_type_char} function defined in
17978 @file{libavutil/avutil.h}.
17979
17980 @item checksum
17981 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
17982
17983 @item plane_checksum
17984 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
17985 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
17986
17987 @item mean
17988 The mean value of pixels in each plane of the input frame, expressed in the form
17989 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
17990
17991 @item stdev
17992 The standard deviation of pixel values in each plane of the input frame, expressed
17993 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
17994
17995 @end table
17996
17997 @section showpalette
17998
17999 Displays the 256 colors palette of each frame. This filter is only relevant for
18000 @var{pal8} pixel format frames.
18001
18002 It accepts the following option:
18003
18004 @table @option
18005 @item s
18006 Set the size of the box used to represent one palette color entry. Default is
18007 @code{30} (for a @code{30x30} pixel box).
18008 @end table
18009
18010 @section shuffleframes
18011
18012 Reorder and/or duplicate and/or drop video frames.
18013
18014 It accepts the following parameters:
18015
18016 @table @option
18017 @item mapping
18018 Set the destination indexes of input frames.
18019 This is space or '|' separated list of indexes that maps input frames to output
18020 frames. Number of indexes also sets maximal value that each index may have.
18021 '-1' index have special meaning and that is to drop frame.
18022 @end table
18023
18024 The first frame has the index 0. The default is to keep the input unchanged.
18025
18026 @subsection Examples
18027
18028 @itemize
18029 @item
18030 Swap second and third frame of every three frames of the input:
18031 @example
18032 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
18033 @end example
18034
18035 @item
18036 Swap 10th and 1st frame of every ten frames of the input:
18037 @example
18038 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
18039 @end example
18040 @end itemize
18041
18042 @section shufflepixels
18043
18044 Reorder pixels in video frames.
18045
18046 This filter accepts the following options:
18047
18048 @table @option
18049 @item direction, d
18050 Set shuffle direction. Can be forward or inverse direction.
18051 Default direction is forward.
18052
18053 @item mode, m
18054 Set shuffle mode. Can be horizontal, vertical or block mode.
18055
18056 @item width, w
18057 @item height, h
18058 Set shuffle block_size. In case of horizontal shuffle mode only width
18059 part of size is used, and in case of vertical shuffle mode only height
18060 part of size is used.
18061
18062 @item seed, s
18063 Set random seed used with shuffling pixels. Mainly useful to set to be able
18064 to reverse filtering process to get original input.
18065 For example, to reverse forward shuffle you need to use same parameters
18066 and exact same seed and to set direction to inverse.
18067 @end table
18068
18069 @section shuffleplanes
18070
18071 Reorder and/or duplicate video planes.
18072
18073 It accepts the following parameters:
18074
18075 @table @option
18076
18077 @item map0
18078 The index of the input plane to be used as the first output plane.
18079
18080 @item map1
18081 The index of the input plane to be used as the second output plane.
18082
18083 @item map2
18084 The index of the input plane to be used as the third output plane.
18085
18086 @item map3
18087 The index of the input plane to be used as the fourth output plane.
18088
18089 @end table
18090
18091 The first plane has the index 0. The default is to keep the input unchanged.
18092
18093 @subsection Examples
18094
18095 @itemize
18096 @item
18097 Swap the second and third planes of the input:
18098 @example
18099 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
18100 @end example
18101 @end itemize
18102
18103 @anchor{signalstats}
18104 @section signalstats
18105 Evaluate various visual metrics that assist in determining issues associated
18106 with the digitization of analog video media.
18107
18108 By default the filter will log these metadata values:
18109
18110 @table @option
18111 @item YMIN
18112 Display the minimal Y value contained within the input frame. Expressed in
18113 range of [0-255].
18114
18115 @item YLOW
18116 Display the Y value at the 10% percentile within the input frame. Expressed in
18117 range of [0-255].
18118
18119 @item YAVG
18120 Display the average Y value within the input frame. Expressed in range of
18121 [0-255].
18122
18123 @item YHIGH
18124 Display the Y value at the 90% percentile within the input frame. Expressed in
18125 range of [0-255].
18126
18127 @item YMAX
18128 Display the maximum Y value contained within the input frame. Expressed in
18129 range of [0-255].
18130
18131 @item UMIN
18132 Display the minimal U value contained within the input frame. Expressed in
18133 range of [0-255].
18134
18135 @item ULOW
18136 Display the U value at the 10% percentile within the input frame. Expressed in
18137 range of [0-255].
18138
18139 @item UAVG
18140 Display the average U value within the input frame. Expressed in range of
18141 [0-255].
18142
18143 @item UHIGH
18144 Display the U value at the 90% percentile within the input frame. Expressed in
18145 range of [0-255].
18146
18147 @item UMAX
18148 Display the maximum U value contained within the input frame. Expressed in
18149 range of [0-255].
18150
18151 @item VMIN
18152 Display the minimal V value contained within the input frame. Expressed in
18153 range of [0-255].
18154
18155 @item VLOW
18156 Display the V value at the 10% percentile within the input frame. Expressed in
18157 range of [0-255].
18158
18159 @item VAVG
18160 Display the average V value within the input frame. Expressed in range of
18161 [0-255].
18162
18163 @item VHIGH
18164 Display the V value at the 90% percentile within the input frame. Expressed in
18165 range of [0-255].
18166
18167 @item VMAX
18168 Display the maximum V value contained within the input frame. Expressed in
18169 range of [0-255].
18170
18171 @item SATMIN
18172 Display the minimal saturation value contained within the input frame.
18173 Expressed in range of [0-~181.02].
18174
18175 @item SATLOW
18176 Display the saturation value at the 10% percentile within the input frame.
18177 Expressed in range of [0-~181.02].
18178
18179 @item SATAVG
18180 Display the average saturation value within the input frame. Expressed in range
18181 of [0-~181.02].
18182
18183 @item SATHIGH
18184 Display the saturation value at the 90% percentile within the input frame.
18185 Expressed in range of [0-~181.02].
18186
18187 @item SATMAX
18188 Display the maximum saturation value contained within the input frame.
18189 Expressed in range of [0-~181.02].
18190
18191 @item HUEMED
18192 Display the median value for hue within the input frame. Expressed in range of
18193 [0-360].
18194
18195 @item HUEAVG
18196 Display the average value for hue within the input frame. Expressed in range of
18197 [0-360].
18198
18199 @item YDIF
18200 Display the average of sample value difference between all values of the Y
18201 plane in the current frame and corresponding values of the previous input frame.
18202 Expressed in range of [0-255].
18203
18204 @item UDIF
18205 Display the average of sample value difference between all values of the U
18206 plane in the current frame and corresponding values of the previous input frame.
18207 Expressed in range of [0-255].
18208
18209 @item VDIF
18210 Display the average of sample value difference between all values of the V
18211 plane in the current frame and corresponding values of the previous input frame.
18212 Expressed in range of [0-255].
18213
18214 @item YBITDEPTH
18215 Display bit depth of Y plane in current frame.
18216 Expressed in range of [0-16].
18217
18218 @item UBITDEPTH
18219 Display bit depth of U plane in current frame.
18220 Expressed in range of [0-16].
18221
18222 @item VBITDEPTH
18223 Display bit depth of V plane in current frame.
18224 Expressed in range of [0-16].
18225 @end table
18226
18227 The filter accepts the following options:
18228
18229 @table @option
18230 @item stat
18231 @item out
18232
18233 @option{stat} specify an additional form of image analysis.
18234 @option{out} output video with the specified type of pixel highlighted.
18235
18236 Both options accept the following values:
18237
18238 @table @samp
18239 @item tout
18240 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
18241 unlike the neighboring pixels of the same field. Examples of temporal outliers
18242 include the results of video dropouts, head clogs, or tape tracking issues.
18243
18244 @item vrep
18245 Identify @var{vertical line repetition}. Vertical line repetition includes
18246 similar rows of pixels within a frame. In born-digital video vertical line
18247 repetition is common, but this pattern is uncommon in video digitized from an
18248 analog source. When it occurs in video that results from the digitization of an
18249 analog source it can indicate concealment from a dropout compensator.
18250
18251 @item brng
18252 Identify pixels that fall outside of legal broadcast range.
18253 @end table
18254
18255 @item color, c
18256 Set the highlight color for the @option{out} option. The default color is
18257 yellow.
18258 @end table
18259
18260 @subsection Examples
18261
18262 @itemize
18263 @item
18264 Output data of various video metrics:
18265 @example
18266 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
18267 @end example
18268
18269 @item
18270 Output specific data about the minimum and maximum values of the Y plane per frame:
18271 @example
18272 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
18273 @end example
18274
18275 @item
18276 Playback video while highlighting pixels that are outside of broadcast range in red.
18277 @example
18278 ffplay example.mov -vf signalstats="out=brng:color=red"
18279 @end example
18280
18281 @item
18282 Playback video with signalstats metadata drawn over the frame.
18283 @example
18284 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
18285 @end example
18286
18287 The contents of signalstat_drawtext.txt used in the command are:
18288 @example
18289 time %@{pts:hms@}
18290 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
18291 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
18292 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
18293 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
18294
18295 @end example
18296 @end itemize
18297
18298 @anchor{signature}
18299 @section signature
18300
18301 Calculates the MPEG-7 Video Signature. The filter can handle more than one
18302 input. In this case the matching between the inputs can be calculated additionally.
18303 The filter always passes through the first input. The signature of each stream can
18304 be written into a file.
18305
18306 It accepts the following options:
18307
18308 @table @option
18309 @item detectmode
18310 Enable or disable the matching process.
18311
18312 Available values are:
18313
18314 @table @samp
18315 @item off
18316 Disable the calculation of a matching (default).
18317 @item full
18318 Calculate the matching for the whole video and output whether the whole video
18319 matches or only parts.
18320 @item fast
18321 Calculate only until a matching is found or the video ends. Should be faster in
18322 some cases.
18323 @end table
18324
18325 @item nb_inputs
18326 Set the number of inputs. The option value must be a non negative integer.
18327 Default value is 1.
18328
18329 @item filename
18330 Set the path to which the output is written. If there is more than one input,
18331 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
18332 integer), that will be replaced with the input number. If no filename is
18333 specified, no output will be written. This is the default.
18334
18335 @item format
18336 Choose the output format.
18337
18338 Available values are:
18339
18340 @table @samp
18341 @item binary
18342 Use the specified binary representation (default).
18343 @item xml
18344 Use the specified xml representation.
18345 @end table
18346
18347 @item th_d
18348 Set threshold to detect one word as similar. The option value must be an integer
18349 greater than zero. The default value is 9000.
18350
18351 @item th_dc
18352 Set threshold to detect all words as similar. The option value must be an integer
18353 greater than zero. The default value is 60000.
18354
18355 @item th_xh
18356 Set threshold to detect frames as similar. The option value must be an integer
18357 greater than zero. The default value is 116.
18358
18359 @item th_di
18360 Set the minimum length of a sequence in frames to recognize it as matching
18361 sequence. The option value must be a non negative integer value.
18362 The default value is 0.
18363
18364 @item th_it
18365 Set the minimum relation, that matching frames to all frames must have.
18366 The option value must be a double value between 0 and 1. The default value is 0.5.
18367 @end table
18368
18369 @subsection Examples
18370
18371 @itemize
18372 @item
18373 To calculate the signature of an input video and store it in signature.bin:
18374 @example
18375 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
18376 @end example
18377
18378 @item
18379 To detect whether two videos match and store the signatures in XML format in
18380 signature0.xml and signature1.xml:
18381 @example
18382 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 -
18383 @end example
18384
18385 @end itemize
18386
18387 @anchor{smartblur}
18388 @section smartblur
18389
18390 Blur the input video without impacting the outlines.
18391
18392 It accepts the following options:
18393
18394 @table @option
18395 @item luma_radius, lr
18396 Set the luma radius. The option value must be a float number in
18397 the range [0.1,5.0] that specifies the variance of the gaussian filter
18398 used to blur the image (slower if larger). Default value is 1.0.
18399
18400 @item luma_strength, ls
18401 Set the luma strength. The option value must be a float number
18402 in the range [-1.0,1.0] that configures the blurring. A value included
18403 in [0.0,1.0] will blur the image whereas a value included in
18404 [-1.0,0.0] will sharpen the image. Default value is 1.0.
18405
18406 @item luma_threshold, lt
18407 Set the luma threshold used as a coefficient to determine
18408 whether a pixel should be blurred or not. The option value must be an
18409 integer in the range [-30,30]. A value of 0 will filter all the image,
18410 a value included in [0,30] will filter flat areas and a value included
18411 in [-30,0] will filter edges. Default value is 0.
18412
18413 @item chroma_radius, cr
18414 Set the chroma radius. The option value must be a float number in
18415 the range [0.1,5.0] that specifies the variance of the gaussian filter
18416 used to blur the image (slower if larger). Default value is @option{luma_radius}.
18417
18418 @item chroma_strength, cs
18419 Set the chroma strength. The option value must be a float number
18420 in the range [-1.0,1.0] that configures the blurring. A value included
18421 in [0.0,1.0] will blur the image whereas a value included in
18422 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
18423
18424 @item chroma_threshold, ct
18425 Set the chroma threshold used as a coefficient to determine
18426 whether a pixel should be blurred or not. The option value must be an
18427 integer in the range [-30,30]. A value of 0 will filter all the image,
18428 a value included in [0,30] will filter flat areas and a value included
18429 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
18430 @end table
18431
18432 If a chroma option is not explicitly set, the corresponding luma value
18433 is set.
18434
18435 @section sobel
18436 Apply sobel operator to input video stream.
18437
18438 The filter accepts the following option:
18439
18440 @table @option
18441 @item planes
18442 Set which planes will be processed, unprocessed planes will be copied.
18443 By default value 0xf, all planes will be processed.
18444
18445 @item scale
18446 Set value which will be multiplied with filtered result.
18447
18448 @item delta
18449 Set value which will be added to filtered result.
18450 @end table
18451
18452 @subsection Commands
18453
18454 This filter supports the all above options as @ref{commands}.
18455
18456 @anchor{spp}
18457 @section spp
18458
18459 Apply a simple postprocessing filter that compresses and decompresses the image
18460 at several (or - in the case of @option{quality} level @code{6} - all) shifts
18461 and average the results.
18462
18463 The filter accepts the following options:
18464
18465 @table @option
18466 @item quality
18467 Set quality. This option defines the number of levels for averaging. It accepts
18468 an integer in the range 0-6. If set to @code{0}, the filter will have no
18469 effect. A value of @code{6} means the higher quality. For each increment of
18470 that value the speed drops by a factor of approximately 2.  Default value is
18471 @code{3}.
18472
18473 @item qp
18474 Force a constant quantization parameter. If not set, the filter will use the QP
18475 from the video stream (if available).
18476
18477 @item mode
18478 Set thresholding mode. Available modes are:
18479
18480 @table @samp
18481 @item hard
18482 Set hard thresholding (default).
18483 @item soft
18484 Set soft thresholding (better de-ringing effect, but likely blurrier).
18485 @end table
18486
18487 @item use_bframe_qp
18488 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
18489 option may cause flicker since the B-Frames have often larger QP. Default is
18490 @code{0} (not enabled).
18491 @end table
18492
18493 @subsection Commands
18494
18495 This filter supports the following commands:
18496 @table @option
18497 @item quality, level
18498 Set quality level. The value @code{max} can be used to set the maximum level,
18499 currently @code{6}.
18500 @end table
18501
18502 @anchor{sr}
18503 @section sr
18504
18505 Scale the input by applying one of the super-resolution methods based on
18506 convolutional neural networks. Supported models:
18507
18508 @itemize
18509 @item
18510 Super-Resolution Convolutional Neural Network model (SRCNN).
18511 See @url{https://arxiv.org/abs/1501.00092}.
18512
18513 @item
18514 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
18515 See @url{https://arxiv.org/abs/1609.05158}.
18516 @end itemize
18517
18518 Training scripts as well as scripts for model file (.pb) saving can be found at
18519 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
18520 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
18521
18522 Native model files (.model) can be generated from TensorFlow model
18523 files (.pb) by using tools/python/convert.py
18524
18525 The filter accepts the following options:
18526
18527 @table @option
18528 @item dnn_backend
18529 Specify which DNN backend to use for model loading and execution. This option accepts
18530 the following values:
18531
18532 @table @samp
18533 @item native
18534 Native implementation of DNN loading and execution.
18535
18536 @item tensorflow
18537 TensorFlow backend. To enable this backend you
18538 need to install the TensorFlow for C library (see
18539 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
18540 @code{--enable-libtensorflow}
18541 @end table
18542
18543 Default value is @samp{native}.
18544
18545 @item model
18546 Set path to model file specifying network architecture and its parameters.
18547 Note that different backends use different file formats. TensorFlow backend
18548 can load files for both formats, while native backend can load files for only
18549 its format.
18550
18551 @item scale_factor
18552 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
18553 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
18554 input upscaled using bicubic upscaling with proper scale factor.
18555 @end table
18556
18557 This feature can also be finished with @ref{dnn_processing} filter.
18558
18559 @section ssim
18560
18561 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
18562
18563 This filter takes in input two input videos, the first input is
18564 considered the "main" source and is passed unchanged to the
18565 output. The second input is used as a "reference" video for computing
18566 the SSIM.
18567
18568 Both video inputs must have the same resolution and pixel format for
18569 this filter to work correctly. Also it assumes that both inputs
18570 have the same number of frames, which are compared one by one.
18571
18572 The filter stores the calculated SSIM of each frame.
18573
18574 The description of the accepted parameters follows.
18575
18576 @table @option
18577 @item stats_file, f
18578 If specified the filter will use the named file to save the SSIM of
18579 each individual frame. When filename equals "-" the data is sent to
18580 standard output.
18581 @end table
18582
18583 The file printed if @var{stats_file} is selected, contains a sequence of
18584 key/value pairs of the form @var{key}:@var{value} for each compared
18585 couple of frames.
18586
18587 A description of each shown parameter follows:
18588
18589 @table @option
18590 @item n
18591 sequential number of the input frame, starting from 1
18592
18593 @item Y, U, V, R, G, B
18594 SSIM of the compared frames for the component specified by the suffix.
18595
18596 @item All
18597 SSIM of the compared frames for the whole frame.
18598
18599 @item dB
18600 Same as above but in dB representation.
18601 @end table
18602
18603 This filter also supports the @ref{framesync} options.
18604
18605 @subsection Examples
18606 @itemize
18607 @item
18608 For example:
18609 @example
18610 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
18611 [main][ref] ssim="stats_file=stats.log" [out]
18612 @end example
18613
18614 On this example the input file being processed is compared with the
18615 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
18616 is stored in @file{stats.log}.
18617
18618 @item
18619 Another example with both psnr and ssim at same time:
18620 @example
18621 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
18622 @end example
18623
18624 @item
18625 Another example with different containers:
18626 @example
18627 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 -
18628 @end example
18629 @end itemize
18630
18631 @section stereo3d
18632
18633 Convert between different stereoscopic image formats.
18634
18635 The filters accept the following options:
18636
18637 @table @option
18638 @item in
18639 Set stereoscopic image format of input.
18640
18641 Available values for input image formats are:
18642 @table @samp
18643 @item sbsl
18644 side by side parallel (left eye left, right eye right)
18645
18646 @item sbsr
18647 side by side crosseye (right eye left, left eye right)
18648
18649 @item sbs2l
18650 side by side parallel with half width resolution
18651 (left eye left, right eye right)
18652
18653 @item sbs2r
18654 side by side crosseye with half width resolution
18655 (right eye left, left eye right)
18656
18657 @item abl
18658 @item tbl
18659 above-below (left eye above, right eye below)
18660
18661 @item abr
18662 @item tbr
18663 above-below (right eye above, left eye below)
18664
18665 @item ab2l
18666 @item tb2l
18667 above-below with half height resolution
18668 (left eye above, right eye below)
18669
18670 @item ab2r
18671 @item tb2r
18672 above-below with half height resolution
18673 (right eye above, left eye below)
18674
18675 @item al
18676 alternating frames (left eye first, right eye second)
18677
18678 @item ar
18679 alternating frames (right eye first, left eye second)
18680
18681 @item irl
18682 interleaved rows (left eye has top row, right eye starts on next row)
18683
18684 @item irr
18685 interleaved rows (right eye has top row, left eye starts on next row)
18686
18687 @item icl
18688 interleaved columns, left eye first
18689
18690 @item icr
18691 interleaved columns, right eye first
18692
18693 Default value is @samp{sbsl}.
18694 @end table
18695
18696 @item out
18697 Set stereoscopic image format of output.
18698
18699 @table @samp
18700 @item sbsl
18701 side by side parallel (left eye left, right eye right)
18702
18703 @item sbsr
18704 side by side crosseye (right eye left, left eye right)
18705
18706 @item sbs2l
18707 side by side parallel with half width resolution
18708 (left eye left, right eye right)
18709
18710 @item sbs2r
18711 side by side crosseye with half width resolution
18712 (right eye left, left eye right)
18713
18714 @item abl
18715 @item tbl
18716 above-below (left eye above, right eye below)
18717
18718 @item abr
18719 @item tbr
18720 above-below (right eye above, left eye below)
18721
18722 @item ab2l
18723 @item tb2l
18724 above-below with half height resolution
18725 (left eye above, right eye below)
18726
18727 @item ab2r
18728 @item tb2r
18729 above-below with half height resolution
18730 (right eye above, left eye below)
18731
18732 @item al
18733 alternating frames (left eye first, right eye second)
18734
18735 @item ar
18736 alternating frames (right eye first, left eye second)
18737
18738 @item irl
18739 interleaved rows (left eye has top row, right eye starts on next row)
18740
18741 @item irr
18742 interleaved rows (right eye has top row, left eye starts on next row)
18743
18744 @item arbg
18745 anaglyph red/blue gray
18746 (red filter on left eye, blue filter on right eye)
18747
18748 @item argg
18749 anaglyph red/green gray
18750 (red filter on left eye, green filter on right eye)
18751
18752 @item arcg
18753 anaglyph red/cyan gray
18754 (red filter on left eye, cyan filter on right eye)
18755
18756 @item arch
18757 anaglyph red/cyan half colored
18758 (red filter on left eye, cyan filter on right eye)
18759
18760 @item arcc
18761 anaglyph red/cyan color
18762 (red filter on left eye, cyan filter on right eye)
18763
18764 @item arcd
18765 anaglyph red/cyan color optimized with the least squares projection of dubois
18766 (red filter on left eye, cyan filter on right eye)
18767
18768 @item agmg
18769 anaglyph green/magenta gray
18770 (green filter on left eye, magenta filter on right eye)
18771
18772 @item agmh
18773 anaglyph green/magenta half colored
18774 (green filter on left eye, magenta filter on right eye)
18775
18776 @item agmc
18777 anaglyph green/magenta colored
18778 (green filter on left eye, magenta filter on right eye)
18779
18780 @item agmd
18781 anaglyph green/magenta color optimized with the least squares projection of dubois
18782 (green filter on left eye, magenta filter on right eye)
18783
18784 @item aybg
18785 anaglyph yellow/blue gray
18786 (yellow filter on left eye, blue filter on right eye)
18787
18788 @item aybh
18789 anaglyph yellow/blue half colored
18790 (yellow filter on left eye, blue filter on right eye)
18791
18792 @item aybc
18793 anaglyph yellow/blue colored
18794 (yellow filter on left eye, blue filter on right eye)
18795
18796 @item aybd
18797 anaglyph yellow/blue color optimized with the least squares projection of dubois
18798 (yellow filter on left eye, blue filter on right eye)
18799
18800 @item ml
18801 mono output (left eye only)
18802
18803 @item mr
18804 mono output (right eye only)
18805
18806 @item chl
18807 checkerboard, left eye first
18808
18809 @item chr
18810 checkerboard, right eye first
18811
18812 @item icl
18813 interleaved columns, left eye first
18814
18815 @item icr
18816 interleaved columns, right eye first
18817
18818 @item hdmi
18819 HDMI frame pack
18820 @end table
18821
18822 Default value is @samp{arcd}.
18823 @end table
18824
18825 @subsection Examples
18826
18827 @itemize
18828 @item
18829 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
18830 @example
18831 stereo3d=sbsl:aybd
18832 @end example
18833
18834 @item
18835 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
18836 @example
18837 stereo3d=abl:sbsr
18838 @end example
18839 @end itemize
18840
18841 @section streamselect, astreamselect
18842 Select video or audio streams.
18843
18844 The filter accepts the following options:
18845
18846 @table @option
18847 @item inputs
18848 Set number of inputs. Default is 2.
18849
18850 @item map
18851 Set input indexes to remap to outputs.
18852 @end table
18853
18854 @subsection Commands
18855
18856 The @code{streamselect} and @code{astreamselect} filter supports the following
18857 commands:
18858
18859 @table @option
18860 @item map
18861 Set input indexes to remap to outputs.
18862 @end table
18863
18864 @subsection Examples
18865
18866 @itemize
18867 @item
18868 Select first 5 seconds 1st stream and rest of time 2nd stream:
18869 @example
18870 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
18871 @end example
18872
18873 @item
18874 Same as above, but for audio:
18875 @example
18876 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
18877 @end example
18878 @end itemize
18879
18880 @anchor{subtitles}
18881 @section subtitles
18882
18883 Draw subtitles on top of input video using the libass library.
18884
18885 To enable compilation of this filter you need to configure FFmpeg with
18886 @code{--enable-libass}. This filter also requires a build with libavcodec and
18887 libavformat to convert the passed subtitles file to ASS (Advanced Substation
18888 Alpha) subtitles format.
18889
18890 The filter accepts the following options:
18891
18892 @table @option
18893 @item filename, f
18894 Set the filename of the subtitle file to read. It must be specified.
18895
18896 @item original_size
18897 Specify the size of the original video, the video for which the ASS file
18898 was composed. For the syntax of this option, check the
18899 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18900 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
18901 correctly scale the fonts if the aspect ratio has been changed.
18902
18903 @item fontsdir
18904 Set a directory path containing fonts that can be used by the filter.
18905 These fonts will be used in addition to whatever the font provider uses.
18906
18907 @item alpha
18908 Process alpha channel, by default alpha channel is untouched.
18909
18910 @item charenc
18911 Set subtitles input character encoding. @code{subtitles} filter only. Only
18912 useful if not UTF-8.
18913
18914 @item stream_index, si
18915 Set subtitles stream index. @code{subtitles} filter only.
18916
18917 @item force_style
18918 Override default style or script info parameters of the subtitles. It accepts a
18919 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
18920 @end table
18921
18922 If the first key is not specified, it is assumed that the first value
18923 specifies the @option{filename}.
18924
18925 For example, to render the file @file{sub.srt} on top of the input
18926 video, use the command:
18927 @example
18928 subtitles=sub.srt
18929 @end example
18930
18931 which is equivalent to:
18932 @example
18933 subtitles=filename=sub.srt
18934 @end example
18935
18936 To render the default subtitles stream from file @file{video.mkv}, use:
18937 @example
18938 subtitles=video.mkv
18939 @end example
18940
18941 To render the second subtitles stream from that file, use:
18942 @example
18943 subtitles=video.mkv:si=1
18944 @end example
18945
18946 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
18947 @code{DejaVu Serif}, use:
18948 @example
18949 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
18950 @end example
18951
18952 @section super2xsai
18953
18954 Scale the input by 2x and smooth using the Super2xSaI (Scale and
18955 Interpolate) pixel art scaling algorithm.
18956
18957 Useful for enlarging pixel art images without reducing sharpness.
18958
18959 @section swaprect
18960
18961 Swap two rectangular objects in video.
18962
18963 This filter accepts the following options:
18964
18965 @table @option
18966 @item w
18967 Set object width.
18968
18969 @item h
18970 Set object height.
18971
18972 @item x1
18973 Set 1st rect x coordinate.
18974
18975 @item y1
18976 Set 1st rect y coordinate.
18977
18978 @item x2
18979 Set 2nd rect x coordinate.
18980
18981 @item y2
18982 Set 2nd rect y coordinate.
18983
18984 All expressions are evaluated once for each frame.
18985 @end table
18986
18987 The all options are expressions containing the following constants:
18988
18989 @table @option
18990 @item w
18991 @item h
18992 The input width and height.
18993
18994 @item a
18995 same as @var{w} / @var{h}
18996
18997 @item sar
18998 input sample aspect ratio
18999
19000 @item dar
19001 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
19002
19003 @item n
19004 The number of the input frame, starting from 0.
19005
19006 @item t
19007 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
19008
19009 @item pos
19010 the position in the file of the input frame, NAN if unknown
19011 @end table
19012
19013 @section swapuv
19014 Swap U & V plane.
19015
19016 @section tblend
19017 Blend successive video frames.
19018
19019 See @ref{blend}
19020
19021 @section telecine
19022
19023 Apply telecine process to the video.
19024
19025 This filter accepts the following options:
19026
19027 @table @option
19028 @item first_field
19029 @table @samp
19030 @item top, t
19031 top field first
19032 @item bottom, b
19033 bottom field first
19034 The default value is @code{top}.
19035 @end table
19036
19037 @item pattern
19038 A string of numbers representing the pulldown pattern you wish to apply.
19039 The default value is @code{23}.
19040 @end table
19041
19042 @example
19043 Some typical patterns:
19044
19045 NTSC output (30i):
19046 27.5p: 32222
19047 24p: 23 (classic)
19048 24p: 2332 (preferred)
19049 20p: 33
19050 18p: 334
19051 16p: 3444
19052
19053 PAL output (25i):
19054 27.5p: 12222
19055 24p: 222222222223 ("Euro pulldown")
19056 16.67p: 33
19057 16p: 33333334
19058 @end example
19059
19060 @section thistogram
19061
19062 Compute and draw a color distribution histogram for the input video across time.
19063
19064 Unlike @ref{histogram} video filter which only shows histogram of single input frame
19065 at certain time, this filter shows also past histograms of number of frames defined
19066 by @code{width} option.
19067
19068 The computed histogram is a representation of the color component
19069 distribution in an image.
19070
19071 The filter accepts the following options:
19072
19073 @table @option
19074 @item width, w
19075 Set width of single color component output. Default value is @code{0}.
19076 Value of @code{0} means width will be picked from input video.
19077 This also set number of passed histograms to keep.
19078 Allowed range is [0, 8192].
19079
19080 @item display_mode, d
19081 Set display mode.
19082 It accepts the following values:
19083 @table @samp
19084 @item stack
19085 Per color component graphs are placed below each other.
19086
19087 @item parade
19088 Per color component graphs are placed side by side.
19089
19090 @item overlay
19091 Presents information identical to that in the @code{parade}, except
19092 that the graphs representing color components are superimposed directly
19093 over one another.
19094 @end table
19095 Default is @code{stack}.
19096
19097 @item levels_mode, m
19098 Set mode. Can be either @code{linear}, or @code{logarithmic}.
19099 Default is @code{linear}.
19100
19101 @item components, c
19102 Set what color components to display.
19103 Default is @code{7}.
19104
19105 @item bgopacity, b
19106 Set background opacity. Default is @code{0.9}.
19107
19108 @item envelope, e
19109 Show envelope. Default is disabled.
19110
19111 @item ecolor, ec
19112 Set envelope color. Default is @code{gold}.
19113
19114 @item slide
19115 Set slide mode.
19116
19117 Available values for slide is:
19118 @table @samp
19119 @item frame
19120 Draw new frame when right border is reached.
19121
19122 @item replace
19123 Replace old columns with new ones.
19124
19125 @item scroll
19126 Scroll from right to left.
19127
19128 @item rscroll
19129 Scroll from left to right.
19130
19131 @item picture
19132 Draw single picture.
19133 @end table
19134
19135 Default is @code{replace}.
19136 @end table
19137
19138 @section threshold
19139
19140 Apply threshold effect to video stream.
19141
19142 This filter needs four video streams to perform thresholding.
19143 First stream is stream we are filtering.
19144 Second stream is holding threshold values, third stream is holding min values,
19145 and last, fourth stream is holding max values.
19146
19147 The filter accepts the following option:
19148
19149 @table @option
19150 @item planes
19151 Set which planes will be processed, unprocessed planes will be copied.
19152 By default value 0xf, all planes will be processed.
19153 @end table
19154
19155 For example if first stream pixel's component value is less then threshold value
19156 of pixel component from 2nd threshold stream, third stream value will picked,
19157 otherwise fourth stream pixel component value will be picked.
19158
19159 Using color source filter one can perform various types of thresholding:
19160
19161 @subsection Examples
19162
19163 @itemize
19164 @item
19165 Binary threshold, using gray color as threshold:
19166 @example
19167 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
19168 @end example
19169
19170 @item
19171 Inverted binary threshold, using gray color as threshold:
19172 @example
19173 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
19174 @end example
19175
19176 @item
19177 Truncate binary threshold, using gray color as threshold:
19178 @example
19179 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
19180 @end example
19181
19182 @item
19183 Threshold to zero, using gray color as threshold:
19184 @example
19185 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
19186 @end example
19187
19188 @item
19189 Inverted threshold to zero, using gray color as threshold:
19190 @example
19191 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
19192 @end example
19193 @end itemize
19194
19195 @section thumbnail
19196 Select the most representative frame in a given sequence of consecutive frames.
19197
19198 The filter accepts the following options:
19199
19200 @table @option
19201 @item n
19202 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
19203 will pick one of them, and then handle the next batch of @var{n} frames until
19204 the end. Default is @code{100}.
19205 @end table
19206
19207 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
19208 value will result in a higher memory usage, so a high value is not recommended.
19209
19210 @subsection Examples
19211
19212 @itemize
19213 @item
19214 Extract one picture each 50 frames:
19215 @example
19216 thumbnail=50
19217 @end example
19218
19219 @item
19220 Complete example of a thumbnail creation with @command{ffmpeg}:
19221 @example
19222 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
19223 @end example
19224 @end itemize
19225
19226 @anchor{tile}
19227 @section tile
19228
19229 Tile several successive frames together.
19230
19231 The @ref{untile} filter can do the reverse.
19232
19233 The filter accepts the following options:
19234
19235 @table @option
19236
19237 @item layout
19238 Set the grid size (i.e. the number of lines and columns). For the syntax of
19239 this option, check the
19240 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19241
19242 @item nb_frames
19243 Set the maximum number of frames to render in the given area. It must be less
19244 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
19245 the area will be used.
19246
19247 @item margin
19248 Set the outer border margin in pixels.
19249
19250 @item padding
19251 Set the inner border thickness (i.e. the number of pixels between frames). For
19252 more advanced padding options (such as having different values for the edges),
19253 refer to the pad video filter.
19254
19255 @item color
19256 Specify the color of the unused area. For the syntax of this option, check the
19257 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
19258 The default value of @var{color} is "black".
19259
19260 @item overlap
19261 Set the number of frames to overlap when tiling several successive frames together.
19262 The value must be between @code{0} and @var{nb_frames - 1}.
19263
19264 @item init_padding
19265 Set the number of frames to initially be empty before displaying first output frame.
19266 This controls how soon will one get first output frame.
19267 The value must be between @code{0} and @var{nb_frames - 1}.
19268 @end table
19269
19270 @subsection Examples
19271
19272 @itemize
19273 @item
19274 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
19275 @example
19276 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
19277 @end example
19278 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
19279 duplicating each output frame to accommodate the originally detected frame
19280 rate.
19281
19282 @item
19283 Display @code{5} pictures in an area of @code{3x2} frames,
19284 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
19285 mixed flat and named options:
19286 @example
19287 tile=3x2:nb_frames=5:padding=7:margin=2
19288 @end example
19289 @end itemize
19290
19291 @section tinterlace
19292
19293 Perform various types of temporal field interlacing.
19294
19295 Frames are counted starting from 1, so the first input frame is
19296 considered odd.
19297
19298 The filter accepts the following options:
19299
19300 @table @option
19301
19302 @item mode
19303 Specify the mode of the interlacing. This option can also be specified
19304 as a value alone. See below for a list of values for this option.
19305
19306 Available values are:
19307
19308 @table @samp
19309 @item merge, 0
19310 Move odd frames into the upper field, even into the lower field,
19311 generating a double height frame at half frame rate.
19312 @example
19313  ------> time
19314 Input:
19315 Frame 1         Frame 2         Frame 3         Frame 4
19316
19317 11111           22222           33333           44444
19318 11111           22222           33333           44444
19319 11111           22222           33333           44444
19320 11111           22222           33333           44444
19321
19322 Output:
19323 11111                           33333
19324 22222                           44444
19325 11111                           33333
19326 22222                           44444
19327 11111                           33333
19328 22222                           44444
19329 11111                           33333
19330 22222                           44444
19331 @end example
19332
19333 @item drop_even, 1
19334 Only output odd frames, even frames are dropped, generating a frame with
19335 unchanged height at half frame rate.
19336
19337 @example
19338  ------> time
19339 Input:
19340 Frame 1         Frame 2         Frame 3         Frame 4
19341
19342 11111           22222           33333           44444
19343 11111           22222           33333           44444
19344 11111           22222           33333           44444
19345 11111           22222           33333           44444
19346
19347 Output:
19348 11111                           33333
19349 11111                           33333
19350 11111                           33333
19351 11111                           33333
19352 @end example
19353
19354 @item drop_odd, 2
19355 Only output even frames, odd frames are dropped, generating a frame with
19356 unchanged height at half frame rate.
19357
19358 @example
19359  ------> time
19360 Input:
19361 Frame 1         Frame 2         Frame 3         Frame 4
19362
19363 11111           22222           33333           44444
19364 11111           22222           33333           44444
19365 11111           22222           33333           44444
19366 11111           22222           33333           44444
19367
19368 Output:
19369                 22222                           44444
19370                 22222                           44444
19371                 22222                           44444
19372                 22222                           44444
19373 @end example
19374
19375 @item pad, 3
19376 Expand each frame to full height, but pad alternate lines with black,
19377 generating a frame with double height at the same input frame rate.
19378
19379 @example
19380  ------> time
19381 Input:
19382 Frame 1         Frame 2         Frame 3         Frame 4
19383
19384 11111           22222           33333           44444
19385 11111           22222           33333           44444
19386 11111           22222           33333           44444
19387 11111           22222           33333           44444
19388
19389 Output:
19390 11111           .....           33333           .....
19391 .....           22222           .....           44444
19392 11111           .....           33333           .....
19393 .....           22222           .....           44444
19394 11111           .....           33333           .....
19395 .....           22222           .....           44444
19396 11111           .....           33333           .....
19397 .....           22222           .....           44444
19398 @end example
19399
19400
19401 @item interleave_top, 4
19402 Interleave the upper field from odd frames with the lower field from
19403 even frames, generating a frame with unchanged height at half frame rate.
19404
19405 @example
19406  ------> time
19407 Input:
19408 Frame 1         Frame 2         Frame 3         Frame 4
19409
19410 11111<-         22222           33333<-         44444
19411 11111           22222<-         33333           44444<-
19412 11111<-         22222           33333<-         44444
19413 11111           22222<-         33333           44444<-
19414
19415 Output:
19416 11111                           33333
19417 22222                           44444
19418 11111                           33333
19419 22222                           44444
19420 @end example
19421
19422
19423 @item interleave_bottom, 5
19424 Interleave the lower field from odd frames with the upper field from
19425 even frames, generating a frame with unchanged height at half frame rate.
19426
19427 @example
19428  ------> time
19429 Input:
19430 Frame 1         Frame 2         Frame 3         Frame 4
19431
19432 11111           22222<-         33333           44444<-
19433 11111<-         22222           33333<-         44444
19434 11111           22222<-         33333           44444<-
19435 11111<-         22222           33333<-         44444
19436
19437 Output:
19438 22222                           44444
19439 11111                           33333
19440 22222                           44444
19441 11111                           33333
19442 @end example
19443
19444
19445 @item interlacex2, 6
19446 Double frame rate with unchanged height. Frames are inserted each
19447 containing the second temporal field from the previous input frame and
19448 the first temporal field from the next input frame. This mode relies on
19449 the top_field_first flag. Useful for interlaced video displays with no
19450 field synchronisation.
19451
19452 @example
19453  ------> time
19454 Input:
19455 Frame 1         Frame 2         Frame 3         Frame 4
19456
19457 11111           22222           33333           44444
19458  11111           22222           33333           44444
19459 11111           22222           33333           44444
19460  11111           22222           33333           44444
19461
19462 Output:
19463 11111   22222   22222   33333   33333   44444   44444
19464  11111   11111   22222   22222   33333   33333   44444
19465 11111   22222   22222   33333   33333   44444   44444
19466  11111   11111   22222   22222   33333   33333   44444
19467 @end example
19468
19469
19470 @item mergex2, 7
19471 Move odd frames into the upper field, even into the lower field,
19472 generating a double height frame at same frame rate.
19473
19474 @example
19475  ------> time
19476 Input:
19477 Frame 1         Frame 2         Frame 3         Frame 4
19478
19479 11111           22222           33333           44444
19480 11111           22222           33333           44444
19481 11111           22222           33333           44444
19482 11111           22222           33333           44444
19483
19484 Output:
19485 11111           33333           33333           55555
19486 22222           22222           44444           44444
19487 11111           33333           33333           55555
19488 22222           22222           44444           44444
19489 11111           33333           33333           55555
19490 22222           22222           44444           44444
19491 11111           33333           33333           55555
19492 22222           22222           44444           44444
19493 @end example
19494
19495 @end table
19496
19497 Numeric values are deprecated but are accepted for backward
19498 compatibility reasons.
19499
19500 Default mode is @code{merge}.
19501
19502 @item flags
19503 Specify flags influencing the filter process.
19504
19505 Available value for @var{flags} is:
19506
19507 @table @option
19508 @item low_pass_filter, vlpf
19509 Enable linear vertical low-pass filtering in the filter.
19510 Vertical low-pass filtering is required when creating an interlaced
19511 destination from a progressive source which contains high-frequency
19512 vertical detail. Filtering will reduce interlace 'twitter' and Moire
19513 patterning.
19514
19515 @item complex_filter, cvlpf
19516 Enable complex vertical low-pass filtering.
19517 This will slightly less reduce interlace 'twitter' and Moire
19518 patterning but better retain detail and subjective sharpness impression.
19519
19520 @item bypass_il
19521 Bypass already interlaced frames, only adjust the frame rate.
19522 @end table
19523
19524 Vertical low-pass filtering and bypassing already interlaced frames can only be
19525 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
19526
19527 @end table
19528
19529 @section tmedian
19530 Pick median pixels from several successive input video frames.
19531
19532 The filter accepts the following options:
19533
19534 @table @option
19535 @item radius
19536 Set radius of median filter.
19537 Default is 1. Allowed range is from 1 to 127.
19538
19539 @item planes
19540 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19541
19542 @item percentile
19543 Set median percentile. Default value is @code{0.5}.
19544 Default value of @code{0.5} will pick always median values, while @code{0} will pick
19545 minimum values, and @code{1} maximum values.
19546 @end table
19547
19548 @subsection Commands
19549
19550 This filter supports all above options as @ref{commands}, excluding option @code{radius}.
19551
19552 @section tmidequalizer
19553
19554 Apply Temporal Midway Video Equalization effect.
19555
19556 Midway Video Equalization adjusts a sequence of video frames to have the same
19557 histograms, while maintaining their dynamics as much as possible. It's
19558 useful for e.g. matching exposures from a video frames sequence.
19559
19560 This filter accepts the following option:
19561
19562 @table @option
19563 @item radius
19564 Set filtering radius. Default is @code{5}. Allowed range is from 1 to 127.
19565
19566 @item sigma
19567 Set filtering sigma. Default is @code{0.5}. This controls strength of filtering.
19568 Setting this option to 0 effectively does nothing.
19569
19570 @item planes
19571 Set which planes to process. Default is @code{15}, which is all available planes.
19572 @end table
19573
19574 @section tmix
19575
19576 Mix successive video frames.
19577
19578 A description of the accepted options follows.
19579
19580 @table @option
19581 @item frames
19582 The number of successive frames to mix. If unspecified, it defaults to 3.
19583
19584 @item weights
19585 Specify weight of each input video frame.
19586 Each weight is separated by space. If number of weights is smaller than
19587 number of @var{frames} last specified weight will be used for all remaining
19588 unset weights.
19589
19590 @item scale
19591 Specify scale, if it is set it will be multiplied with sum
19592 of each weight multiplied with pixel values to give final destination
19593 pixel value. By default @var{scale} is auto scaled to sum of weights.
19594 @end table
19595
19596 @subsection Examples
19597
19598 @itemize
19599 @item
19600 Average 7 successive frames:
19601 @example
19602 tmix=frames=7:weights="1 1 1 1 1 1 1"
19603 @end example
19604
19605 @item
19606 Apply simple temporal convolution:
19607 @example
19608 tmix=frames=3:weights="-1 3 -1"
19609 @end example
19610
19611 @item
19612 Similar as above but only showing temporal differences:
19613 @example
19614 tmix=frames=3:weights="-1 2 -1":scale=1
19615 @end example
19616 @end itemize
19617
19618 @anchor{tonemap}
19619 @section tonemap
19620 Tone map colors from different dynamic ranges.
19621
19622 This filter expects data in single precision floating point, as it needs to
19623 operate on (and can output) out-of-range values. Another filter, such as
19624 @ref{zscale}, is needed to convert the resulting frame to a usable format.
19625
19626 The tonemapping algorithms implemented only work on linear light, so input
19627 data should be linearized beforehand (and possibly correctly tagged).
19628
19629 @example
19630 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
19631 @end example
19632
19633 @subsection Options
19634 The filter accepts the following options.
19635
19636 @table @option
19637 @item tonemap
19638 Set the tone map algorithm to use.
19639
19640 Possible values are:
19641 @table @var
19642 @item none
19643 Do not apply any tone map, only desaturate overbright pixels.
19644
19645 @item clip
19646 Hard-clip any out-of-range values. Use it for perfect color accuracy for
19647 in-range values, while distorting out-of-range values.
19648
19649 @item linear
19650 Stretch the entire reference gamut to a linear multiple of the display.
19651
19652 @item gamma
19653 Fit a logarithmic transfer between the tone curves.
19654
19655 @item reinhard
19656 Preserve overall image brightness with a simple curve, using nonlinear
19657 contrast, which results in flattening details and degrading color accuracy.
19658
19659 @item hable
19660 Preserve both dark and bright details better than @var{reinhard}, at the cost
19661 of slightly darkening everything. Use it when detail preservation is more
19662 important than color and brightness accuracy.
19663
19664 @item mobius
19665 Smoothly map out-of-range values, while retaining contrast and colors for
19666 in-range material as much as possible. Use it when color accuracy is more
19667 important than detail preservation.
19668 @end table
19669
19670 Default is none.
19671
19672 @item param
19673 Tune the tone mapping algorithm.
19674
19675 This affects the following algorithms:
19676 @table @var
19677 @item none
19678 Ignored.
19679
19680 @item linear
19681 Specifies the scale factor to use while stretching.
19682 Default to 1.0.
19683
19684 @item gamma
19685 Specifies the exponent of the function.
19686 Default to 1.8.
19687
19688 @item clip
19689 Specify an extra linear coefficient to multiply into the signal before clipping.
19690 Default to 1.0.
19691
19692 @item reinhard
19693 Specify the local contrast coefficient at the display peak.
19694 Default to 0.5, which means that in-gamut values will be about half as bright
19695 as when clipping.
19696
19697 @item hable
19698 Ignored.
19699
19700 @item mobius
19701 Specify the transition point from linear to mobius transform. Every value
19702 below this point is guaranteed to be mapped 1:1. The higher the value, the
19703 more accurate the result will be, at the cost of losing bright details.
19704 Default to 0.3, which due to the steep initial slope still preserves in-range
19705 colors fairly accurately.
19706 @end table
19707
19708 @item desat
19709 Apply desaturation for highlights that exceed this level of brightness. The
19710 higher the parameter, the more color information will be preserved. This
19711 setting helps prevent unnaturally blown-out colors for super-highlights, by
19712 (smoothly) turning into white instead. This makes images feel more natural,
19713 at the cost of reducing information about out-of-range colors.
19714
19715 The default of 2.0 is somewhat conservative and will mostly just apply to
19716 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
19717
19718 This option works only if the input frame has a supported color tag.
19719
19720 @item peak
19721 Override signal/nominal/reference peak with this value. Useful when the
19722 embedded peak information in display metadata is not reliable or when tone
19723 mapping from a lower range to a higher range.
19724 @end table
19725
19726 @section tpad
19727
19728 Temporarily pad video frames.
19729
19730 The filter accepts the following options:
19731
19732 @table @option
19733 @item start
19734 Specify number of delay frames before input video stream. Default is 0.
19735
19736 @item stop
19737 Specify number of padding frames after input video stream.
19738 Set to -1 to pad indefinitely. Default is 0.
19739
19740 @item start_mode
19741 Set kind of frames added to beginning of stream.
19742 Can be either @var{add} or @var{clone}.
19743 With @var{add} frames of solid-color are added.
19744 With @var{clone} frames are clones of first frame.
19745 Default is @var{add}.
19746
19747 @item stop_mode
19748 Set kind of frames added to end of stream.
19749 Can be either @var{add} or @var{clone}.
19750 With @var{add} frames of solid-color are added.
19751 With @var{clone} frames are clones of last frame.
19752 Default is @var{add}.
19753
19754 @item start_duration, stop_duration
19755 Specify the duration of the start/stop delay. See
19756 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19757 for the accepted syntax.
19758 These options override @var{start} and @var{stop}. Default is 0.
19759
19760 @item color
19761 Specify the color of the padded area. For the syntax of this option,
19762 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
19763 manual,ffmpeg-utils}.
19764
19765 The default value of @var{color} is "black".
19766 @end table
19767
19768 @anchor{transpose}
19769 @section transpose
19770
19771 Transpose rows with columns in the input video and optionally flip it.
19772
19773 It accepts the following parameters:
19774
19775 @table @option
19776
19777 @item dir
19778 Specify the transposition direction.
19779
19780 Can assume the following values:
19781 @table @samp
19782 @item 0, 4, cclock_flip
19783 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
19784 @example
19785 L.R     L.l
19786 . . ->  . .
19787 l.r     R.r
19788 @end example
19789
19790 @item 1, 5, clock
19791 Rotate by 90 degrees clockwise, that is:
19792 @example
19793 L.R     l.L
19794 . . ->  . .
19795 l.r     r.R
19796 @end example
19797
19798 @item 2, 6, cclock
19799 Rotate by 90 degrees counterclockwise, that is:
19800 @example
19801 L.R     R.r
19802 . . ->  . .
19803 l.r     L.l
19804 @end example
19805
19806 @item 3, 7, clock_flip
19807 Rotate by 90 degrees clockwise and vertically flip, that is:
19808 @example
19809 L.R     r.R
19810 . . ->  . .
19811 l.r     l.L
19812 @end example
19813 @end table
19814
19815 For values between 4-7, the transposition is only done if the input
19816 video geometry is portrait and not landscape. These values are
19817 deprecated, the @code{passthrough} option should be used instead.
19818
19819 Numerical values are deprecated, and should be dropped in favor of
19820 symbolic constants.
19821
19822 @item passthrough
19823 Do not apply the transposition if the input geometry matches the one
19824 specified by the specified value. It accepts the following values:
19825 @table @samp
19826 @item none
19827 Always apply transposition.
19828 @item portrait
19829 Preserve portrait geometry (when @var{height} >= @var{width}).
19830 @item landscape
19831 Preserve landscape geometry (when @var{width} >= @var{height}).
19832 @end table
19833
19834 Default value is @code{none}.
19835 @end table
19836
19837 For example to rotate by 90 degrees clockwise and preserve portrait
19838 layout:
19839 @example
19840 transpose=dir=1:passthrough=portrait
19841 @end example
19842
19843 The command above can also be specified as:
19844 @example
19845 transpose=1:portrait
19846 @end example
19847
19848 @section transpose_npp
19849
19850 Transpose rows with columns in the input video and optionally flip it.
19851 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
19852
19853 It accepts the following parameters:
19854
19855 @table @option
19856
19857 @item dir
19858 Specify the transposition direction.
19859
19860 Can assume the following values:
19861 @table @samp
19862 @item cclock_flip
19863 Rotate by 90 degrees counterclockwise and vertically flip. (default)
19864
19865 @item clock
19866 Rotate by 90 degrees clockwise.
19867
19868 @item cclock
19869 Rotate by 90 degrees counterclockwise.
19870
19871 @item clock_flip
19872 Rotate by 90 degrees clockwise and vertically flip.
19873 @end table
19874
19875 @item passthrough
19876 Do not apply the transposition if the input geometry matches the one
19877 specified by the specified value. It accepts the following values:
19878 @table @samp
19879 @item none
19880 Always apply transposition. (default)
19881 @item portrait
19882 Preserve portrait geometry (when @var{height} >= @var{width}).
19883 @item landscape
19884 Preserve landscape geometry (when @var{width} >= @var{height}).
19885 @end table
19886
19887 @end table
19888
19889 @section trim
19890 Trim the input so that the output contains one continuous subpart of the input.
19891
19892 It accepts the following parameters:
19893 @table @option
19894 @item start
19895 Specify the time of the start of the kept section, i.e. the frame with the
19896 timestamp @var{start} will be the first frame in the output.
19897
19898 @item end
19899 Specify the time of the first frame that will be dropped, i.e. the frame
19900 immediately preceding the one with the timestamp @var{end} will be the last
19901 frame in the output.
19902
19903 @item start_pts
19904 This is the same as @var{start}, except this option sets the start timestamp
19905 in timebase units instead of seconds.
19906
19907 @item end_pts
19908 This is the same as @var{end}, except this option sets the end timestamp
19909 in timebase units instead of seconds.
19910
19911 @item duration
19912 The maximum duration of the output in seconds.
19913
19914 @item start_frame
19915 The number of the first frame that should be passed to the output.
19916
19917 @item end_frame
19918 The number of the first frame that should be dropped.
19919 @end table
19920
19921 @option{start}, @option{end}, and @option{duration} are expressed as time
19922 duration specifications; see
19923 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19924 for the accepted syntax.
19925
19926 Note that the first two sets of the start/end options and the @option{duration}
19927 option look at the frame timestamp, while the _frame variants simply count the
19928 frames that pass through the filter. Also note that this filter does not modify
19929 the timestamps. If you wish for the output timestamps to start at zero, insert a
19930 setpts filter after the trim filter.
19931
19932 If multiple start or end options are set, this filter tries to be greedy and
19933 keep all the frames that match at least one of the specified constraints. To keep
19934 only the part that matches all the constraints at once, chain multiple trim
19935 filters.
19936
19937 The defaults are such that all the input is kept. So it is possible to set e.g.
19938 just the end values to keep everything before the specified time.
19939
19940 Examples:
19941 @itemize
19942 @item
19943 Drop everything except the second minute of input:
19944 @example
19945 ffmpeg -i INPUT -vf trim=60:120
19946 @end example
19947
19948 @item
19949 Keep only the first second:
19950 @example
19951 ffmpeg -i INPUT -vf trim=duration=1
19952 @end example
19953
19954 @end itemize
19955
19956 @section unpremultiply
19957 Apply alpha unpremultiply effect to input video stream using first plane
19958 of second stream as alpha.
19959
19960 Both streams must have same dimensions and same pixel format.
19961
19962 The filter accepts the following option:
19963
19964 @table @option
19965 @item planes
19966 Set which planes will be processed, unprocessed planes will be copied.
19967 By default value 0xf, all planes will be processed.
19968
19969 If the format has 1 or 2 components, then luma is bit 0.
19970 If the format has 3 or 4 components:
19971 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
19972 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
19973 If present, the alpha channel is always the last bit.
19974
19975 @item inplace
19976 Do not require 2nd input for processing, instead use alpha plane from input stream.
19977 @end table
19978
19979 @anchor{unsharp}
19980 @section unsharp
19981
19982 Sharpen or blur the input video.
19983
19984 It accepts the following parameters:
19985
19986 @table @option
19987 @item luma_msize_x, lx
19988 Set the luma matrix horizontal size. It must be an odd integer between
19989 3 and 23. The default value is 5.
19990
19991 @item luma_msize_y, ly
19992 Set the luma matrix vertical size. It must be an odd integer between 3
19993 and 23. The default value is 5.
19994
19995 @item luma_amount, la
19996 Set the luma effect strength. It must be a floating point number, reasonable
19997 values lay between -1.5 and 1.5.
19998
19999 Negative values will blur the input video, while positive values will
20000 sharpen it, a value of zero will disable the effect.
20001
20002 Default value is 1.0.
20003
20004 @item chroma_msize_x, cx
20005 Set the chroma matrix horizontal size. It must be an odd integer
20006 between 3 and 23. The default value is 5.
20007
20008 @item chroma_msize_y, cy
20009 Set the chroma matrix vertical size. It must be an odd integer
20010 between 3 and 23. The default value is 5.
20011
20012 @item chroma_amount, ca
20013 Set the chroma effect strength. It must be a floating point number, reasonable
20014 values lay between -1.5 and 1.5.
20015
20016 Negative values will blur the input video, while positive values will
20017 sharpen it, a value of zero will disable the effect.
20018
20019 Default value is 0.0.
20020
20021 @end table
20022
20023 All parameters are optional and default to the equivalent of the
20024 string '5:5:1.0:5:5:0.0'.
20025
20026 @subsection Examples
20027
20028 @itemize
20029 @item
20030 Apply strong luma sharpen effect:
20031 @example
20032 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
20033 @end example
20034
20035 @item
20036 Apply a strong blur of both luma and chroma parameters:
20037 @example
20038 unsharp=7:7:-2:7:7:-2
20039 @end example
20040 @end itemize
20041
20042 @anchor{untile}
20043 @section untile
20044
20045 Decompose a video made of tiled images into the individual images.
20046
20047 The frame rate of the output video is the frame rate of the input video
20048 multiplied by the number of tiles.
20049
20050 This filter does the reverse of @ref{tile}.
20051
20052 The filter accepts the following options:
20053
20054 @table @option
20055
20056 @item layout
20057 Set the grid size (i.e. the number of lines and columns). For the syntax of
20058 this option, check the
20059 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20060 @end table
20061
20062 @subsection Examples
20063
20064 @itemize
20065 @item
20066 Produce a 1-second video from a still image file made of 25 frames stacked
20067 vertically, like an analogic film reel:
20068 @example
20069 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
20070 @end example
20071 @end itemize
20072
20073 @section uspp
20074
20075 Apply ultra slow/simple postprocessing filter that compresses and decompresses
20076 the image at several (or - in the case of @option{quality} level @code{8} - all)
20077 shifts and average the results.
20078
20079 The way this differs from the behavior of spp is that uspp actually encodes &
20080 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
20081 DCT similar to MJPEG.
20082
20083 The filter accepts the following options:
20084
20085 @table @option
20086 @item quality
20087 Set quality. This option defines the number of levels for averaging. It accepts
20088 an integer in the range 0-8. If set to @code{0}, the filter will have no
20089 effect. A value of @code{8} means the higher quality. For each increment of
20090 that value the speed drops by a factor of approximately 2.  Default value is
20091 @code{3}.
20092
20093 @item qp
20094 Force a constant quantization parameter. If not set, the filter will use the QP
20095 from the video stream (if available).
20096 @end table
20097
20098 @section v360
20099
20100 Convert 360 videos between various formats.
20101
20102 The filter accepts the following options:
20103
20104 @table @option
20105
20106 @item input
20107 @item output
20108 Set format of the input/output video.
20109
20110 Available formats:
20111
20112 @table @samp
20113
20114 @item e
20115 @item equirect
20116 Equirectangular projection.
20117
20118 @item c3x2
20119 @item c6x1
20120 @item c1x6
20121 Cubemap with 3x2/6x1/1x6 layout.
20122
20123 Format specific options:
20124
20125 @table @option
20126 @item in_pad
20127 @item out_pad
20128 Set padding proportion for the input/output cubemap. Values in decimals.
20129
20130 Example values:
20131 @table @samp
20132 @item 0
20133 No padding.
20134 @item 0.01
20135 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)
20136 @end table
20137
20138 Default value is @b{@samp{0}}.
20139 Maximum value is @b{@samp{0.1}}.
20140
20141 @item fin_pad
20142 @item fout_pad
20143 Set fixed padding for the input/output cubemap. Values in pixels.
20144
20145 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
20146
20147 @item in_forder
20148 @item out_forder
20149 Set order of faces for the input/output cubemap. Choose one direction for each position.
20150
20151 Designation of directions:
20152 @table @samp
20153 @item r
20154 right
20155 @item l
20156 left
20157 @item u
20158 up
20159 @item d
20160 down
20161 @item f
20162 forward
20163 @item b
20164 back
20165 @end table
20166
20167 Default value is @b{@samp{rludfb}}.
20168
20169 @item in_frot
20170 @item out_frot
20171 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
20172
20173 Designation of angles:
20174 @table @samp
20175 @item 0
20176 0 degrees clockwise
20177 @item 1
20178 90 degrees clockwise
20179 @item 2
20180 180 degrees clockwise
20181 @item 3
20182 270 degrees clockwise
20183 @end table
20184
20185 Default value is @b{@samp{000000}}.
20186 @end table
20187
20188 @item eac
20189 Equi-Angular Cubemap.
20190
20191 @item flat
20192 @item gnomonic
20193 @item rectilinear
20194 Regular video.
20195
20196 Format specific options:
20197 @table @option
20198 @item h_fov
20199 @item v_fov
20200 @item d_fov
20201 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20202
20203 If diagonal field of view is set it overrides horizontal and vertical field of view.
20204
20205 @item ih_fov
20206 @item iv_fov
20207 @item id_fov
20208 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20209
20210 If diagonal field of view is set it overrides horizontal and vertical field of view.
20211 @end table
20212
20213 @item dfisheye
20214 Dual fisheye.
20215
20216 Format specific options:
20217 @table @option
20218 @item h_fov
20219 @item v_fov
20220 @item d_fov
20221 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20222
20223 If diagonal field of view is set it overrides horizontal and vertical field of view.
20224
20225 @item ih_fov
20226 @item iv_fov
20227 @item id_fov
20228 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20229
20230 If diagonal field of view is set it overrides horizontal and vertical field of view.
20231 @end table
20232
20233 @item barrel
20234 @item fb
20235 @item barrelsplit
20236 Facebook's 360 formats.
20237
20238 @item sg
20239 Stereographic format.
20240
20241 Format specific options:
20242 @table @option
20243 @item h_fov
20244 @item v_fov
20245 @item d_fov
20246 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20247
20248 If diagonal field of view is set it overrides horizontal and vertical field of view.
20249
20250 @item ih_fov
20251 @item iv_fov
20252 @item id_fov
20253 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20254
20255 If diagonal field of view is set it overrides horizontal and vertical field of view.
20256 @end table
20257
20258 @item mercator
20259 Mercator format.
20260
20261 @item ball
20262 Ball format, gives significant distortion toward the back.
20263
20264 @item hammer
20265 Hammer-Aitoff map projection format.
20266
20267 @item sinusoidal
20268 Sinusoidal map projection format.
20269
20270 @item fisheye
20271 Fisheye projection.
20272
20273 Format specific options:
20274 @table @option
20275 @item h_fov
20276 @item v_fov
20277 @item d_fov
20278 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20279
20280 If diagonal field of view is set it overrides horizontal and vertical field of view.
20281
20282 @item ih_fov
20283 @item iv_fov
20284 @item id_fov
20285 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20286
20287 If diagonal field of view is set it overrides horizontal and vertical field of view.
20288 @end table
20289
20290 @item pannini
20291 Pannini projection.
20292
20293 Format specific options:
20294 @table @option
20295 @item h_fov
20296 Set output pannini parameter.
20297
20298 @item ih_fov
20299 Set input pannini parameter.
20300 @end table
20301
20302 @item cylindrical
20303 Cylindrical projection.
20304
20305 Format specific options:
20306 @table @option
20307 @item h_fov
20308 @item v_fov
20309 @item d_fov
20310 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20311
20312 If diagonal field of view is set it overrides horizontal and vertical field of view.
20313
20314 @item ih_fov
20315 @item iv_fov
20316 @item id_fov
20317 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20318
20319 If diagonal field of view is set it overrides horizontal and vertical field of view.
20320 @end table
20321
20322 @item perspective
20323 Perspective projection. @i{(output only)}
20324
20325 Format specific options:
20326 @table @option
20327 @item v_fov
20328 Set perspective parameter.
20329 @end table
20330
20331 @item tetrahedron
20332 Tetrahedron projection.
20333
20334 @item tsp
20335 Truncated square pyramid projection.
20336
20337 @item he
20338 @item hequirect
20339 Half equirectangular projection.
20340
20341 @item equisolid
20342 Equisolid format.
20343
20344 Format specific options:
20345 @table @option
20346 @item h_fov
20347 @item v_fov
20348 @item d_fov
20349 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20350
20351 If diagonal field of view is set it overrides horizontal and vertical field of view.
20352
20353 @item ih_fov
20354 @item iv_fov
20355 @item id_fov
20356 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20357
20358 If diagonal field of view is set it overrides horizontal and vertical field of view.
20359 @end table
20360
20361 @item og
20362 Orthographic format.
20363
20364 Format specific options:
20365 @table @option
20366 @item h_fov
20367 @item v_fov
20368 @item d_fov
20369 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20370
20371 If diagonal field of view is set it overrides horizontal and vertical field of view.
20372
20373 @item ih_fov
20374 @item iv_fov
20375 @item id_fov
20376 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20377
20378 If diagonal field of view is set it overrides horizontal and vertical field of view.
20379 @end table
20380
20381 @item octahedron
20382 Octahedron projection.
20383 @end table
20384
20385 @item interp
20386 Set interpolation method.@*
20387 @i{Note: more complex interpolation methods require much more memory to run.}
20388
20389 Available methods:
20390
20391 @table @samp
20392 @item near
20393 @item nearest
20394 Nearest neighbour.
20395 @item line
20396 @item linear
20397 Bilinear interpolation.
20398 @item lagrange9
20399 Lagrange9 interpolation.
20400 @item cube
20401 @item cubic
20402 Bicubic interpolation.
20403 @item lanc
20404 @item lanczos
20405 Lanczos interpolation.
20406 @item sp16
20407 @item spline16
20408 Spline16 interpolation.
20409 @item gauss
20410 @item gaussian
20411 Gaussian interpolation.
20412 @item mitchell
20413 Mitchell interpolation.
20414 @end table
20415
20416 Default value is @b{@samp{line}}.
20417
20418 @item w
20419 @item h
20420 Set the output video resolution.
20421
20422 Default resolution depends on formats.
20423
20424 @item in_stereo
20425 @item out_stereo
20426 Set the input/output stereo format.
20427
20428 @table @samp
20429 @item 2d
20430 2D mono
20431 @item sbs
20432 Side by side
20433 @item tb
20434 Top bottom
20435 @end table
20436
20437 Default value is @b{@samp{2d}} for input and output format.
20438
20439 @item yaw
20440 @item pitch
20441 @item roll
20442 Set rotation for the output video. Values in degrees.
20443
20444 @item rorder
20445 Set rotation order for the output video. Choose one item for each position.
20446
20447 @table @samp
20448 @item y, Y
20449 yaw
20450 @item p, P
20451 pitch
20452 @item r, R
20453 roll
20454 @end table
20455
20456 Default value is @b{@samp{ypr}}.
20457
20458 @item h_flip
20459 @item v_flip
20460 @item d_flip
20461 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
20462
20463 @item ih_flip
20464 @item iv_flip
20465 Set if input video is flipped horizontally/vertically. Boolean values.
20466
20467 @item in_trans
20468 Set if input video is transposed. Boolean value, by default disabled.
20469
20470 @item out_trans
20471 Set if output video needs to be transposed. Boolean value, by default disabled.
20472
20473 @item alpha_mask
20474 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
20475 @end table
20476
20477 @subsection Examples
20478
20479 @itemize
20480 @item
20481 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
20482 @example
20483 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
20484 @end example
20485 @item
20486 Extract back view of Equi-Angular Cubemap:
20487 @example
20488 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
20489 @end example
20490 @item
20491 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
20492 @example
20493 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
20494 @end example
20495 @end itemize
20496
20497 @subsection Commands
20498
20499 This filter supports subset of above options as @ref{commands}.
20500
20501 @section vaguedenoiser
20502
20503 Apply a wavelet based denoiser.
20504
20505 It transforms each frame from the video input into the wavelet domain,
20506 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
20507 the obtained coefficients. It does an inverse wavelet transform after.
20508 Due to wavelet properties, it should give a nice smoothed result, and
20509 reduced noise, without blurring picture features.
20510
20511 This filter accepts the following options:
20512
20513 @table @option
20514 @item threshold
20515 The filtering strength. The higher, the more filtered the video will be.
20516 Hard thresholding can use a higher threshold than soft thresholding
20517 before the video looks overfiltered. Default value is 2.
20518
20519 @item method
20520 The filtering method the filter will use.
20521
20522 It accepts the following values:
20523 @table @samp
20524 @item hard
20525 All values under the threshold will be zeroed.
20526
20527 @item soft
20528 All values under the threshold will be zeroed. All values above will be
20529 reduced by the threshold.
20530
20531 @item garrote
20532 Scales or nullifies coefficients - intermediary between (more) soft and
20533 (less) hard thresholding.
20534 @end table
20535
20536 Default is garrote.
20537
20538 @item nsteps
20539 Number of times, the wavelet will decompose the picture. Picture can't
20540 be decomposed beyond a particular point (typically, 8 for a 640x480
20541 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
20542
20543 @item percent
20544 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
20545
20546 @item planes
20547 A list of the planes to process. By default all planes are processed.
20548
20549 @item type
20550 The threshold type the filter will use.
20551
20552 It accepts the following values:
20553 @table @samp
20554 @item universal
20555 Threshold used is same for all decompositions.
20556
20557 @item bayes
20558 Threshold used depends also on each decomposition coefficients.
20559 @end table
20560
20561 Default is universal.
20562 @end table
20563
20564 @section vectorscope
20565
20566 Display 2 color component values in the two dimensional graph (which is called
20567 a vectorscope).
20568
20569 This filter accepts the following options:
20570
20571 @table @option
20572 @item mode, m
20573 Set vectorscope mode.
20574
20575 It accepts the following values:
20576 @table @samp
20577 @item gray
20578 @item tint
20579 Gray values are displayed on graph, higher brightness means more pixels have
20580 same component color value on location in graph. This is the default mode.
20581
20582 @item color
20583 Gray values are displayed on graph. Surrounding pixels values which are not
20584 present in video frame are drawn in gradient of 2 color components which are
20585 set by option @code{x} and @code{y}. The 3rd color component is static.
20586
20587 @item color2
20588 Actual color components values present in video frame are displayed on graph.
20589
20590 @item color3
20591 Similar as color2 but higher frequency of same values @code{x} and @code{y}
20592 on graph increases value of another color component, which is luminance by
20593 default values of @code{x} and @code{y}.
20594
20595 @item color4
20596 Actual colors present in video frame are displayed on graph. If two different
20597 colors map to same position on graph then color with higher value of component
20598 not present in graph is picked.
20599
20600 @item color5
20601 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
20602 component picked from radial gradient.
20603 @end table
20604
20605 @item x
20606 Set which color component will be represented on X-axis. Default is @code{1}.
20607
20608 @item y
20609 Set which color component will be represented on Y-axis. Default is @code{2}.
20610
20611 @item intensity, i
20612 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
20613 of color component which represents frequency of (X, Y) location in graph.
20614
20615 @item envelope, e
20616 @table @samp
20617 @item none
20618 No envelope, this is default.
20619
20620 @item instant
20621 Instant envelope, even darkest single pixel will be clearly highlighted.
20622
20623 @item peak
20624 Hold maximum and minimum values presented in graph over time. This way you
20625 can still spot out of range values without constantly looking at vectorscope.
20626
20627 @item peak+instant
20628 Peak and instant envelope combined together.
20629 @end table
20630
20631 @item graticule, g
20632 Set what kind of graticule to draw.
20633 @table @samp
20634 @item none
20635 @item green
20636 @item color
20637 @item invert
20638 @end table
20639
20640 @item opacity, o
20641 Set graticule opacity.
20642
20643 @item flags, f
20644 Set graticule flags.
20645
20646 @table @samp
20647 @item white
20648 Draw graticule for white point.
20649
20650 @item black
20651 Draw graticule for black point.
20652
20653 @item name
20654 Draw color points short names.
20655 @end table
20656
20657 @item bgopacity, b
20658 Set background opacity.
20659
20660 @item lthreshold, l
20661 Set low threshold for color component not represented on X or Y axis.
20662 Values lower than this value will be ignored. Default is 0.
20663 Note this value is multiplied with actual max possible value one pixel component
20664 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
20665 is 0.1 * 255 = 25.
20666
20667 @item hthreshold, h
20668 Set high threshold for color component not represented on X or Y axis.
20669 Values higher than this value will be ignored. Default is 1.
20670 Note this value is multiplied with actual max possible value one pixel component
20671 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
20672 is 0.9 * 255 = 230.
20673
20674 @item colorspace, c
20675 Set what kind of colorspace to use when drawing graticule.
20676 @table @samp
20677 @item auto
20678 @item 601
20679 @item 709
20680 @end table
20681 Default is auto.
20682
20683 @item tint0, t0
20684 @item tint1, t1
20685 Set color tint for gray/tint vectorscope mode. By default both options are zero.
20686 This means no tint, and output will remain gray.
20687 @end table
20688
20689 @anchor{vidstabdetect}
20690 @section vidstabdetect
20691
20692 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
20693 @ref{vidstabtransform} for pass 2.
20694
20695 This filter generates a file with relative translation and rotation
20696 transform information about subsequent frames, which is then used by
20697 the @ref{vidstabtransform} filter.
20698
20699 To enable compilation of this filter you need to configure FFmpeg with
20700 @code{--enable-libvidstab}.
20701
20702 This filter accepts the following options:
20703
20704 @table @option
20705 @item result
20706 Set the path to the file used to write the transforms information.
20707 Default value is @file{transforms.trf}.
20708
20709 @item shakiness
20710 Set how shaky the video is and how quick the camera is. It accepts an
20711 integer in the range 1-10, a value of 1 means little shakiness, a
20712 value of 10 means strong shakiness. Default value is 5.
20713
20714 @item accuracy
20715 Set the accuracy of the detection process. It must be a value in the
20716 range 1-15. A value of 1 means low accuracy, a value of 15 means high
20717 accuracy. Default value is 15.
20718
20719 @item stepsize
20720 Set stepsize of the search process. The region around minimum is
20721 scanned with 1 pixel resolution. Default value is 6.
20722
20723 @item mincontrast
20724 Set minimum contrast. Below this value a local measurement field is
20725 discarded. Must be a floating point value in the range 0-1. Default
20726 value is 0.3.
20727
20728 @item tripod
20729 Set reference frame number for tripod mode.
20730
20731 If enabled, the motion of the frames is compared to a reference frame
20732 in the filtered stream, identified by the specified number. The idea
20733 is to compensate all movements in a more-or-less static scene and keep
20734 the camera view absolutely still.
20735
20736 If set to 0, it is disabled. The frames are counted starting from 1.
20737
20738 @item show
20739 Show fields and transforms in the resulting frames. It accepts an
20740 integer in the range 0-2. Default value is 0, which disables any
20741 visualization.
20742 @end table
20743
20744 @subsection Examples
20745
20746 @itemize
20747 @item
20748 Use default values:
20749 @example
20750 vidstabdetect
20751 @end example
20752
20753 @item
20754 Analyze strongly shaky movie and put the results in file
20755 @file{mytransforms.trf}:
20756 @example
20757 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
20758 @end example
20759
20760 @item
20761 Visualize the result of internal transformations in the resulting
20762 video:
20763 @example
20764 vidstabdetect=show=1
20765 @end example
20766
20767 @item
20768 Analyze a video with medium shakiness using @command{ffmpeg}:
20769 @example
20770 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
20771 @end example
20772 @end itemize
20773
20774 @anchor{vidstabtransform}
20775 @section vidstabtransform
20776
20777 Video stabilization/deshaking: pass 2 of 2,
20778 see @ref{vidstabdetect} for pass 1.
20779
20780 Read a file with transform information for each frame and
20781 apply/compensate them. Together with the @ref{vidstabdetect}
20782 filter this can be used to deshake videos. See also
20783 @url{http://public.hronopik.de/vid.stab}. It is important to also use
20784 the @ref{unsharp} filter, see below.
20785
20786 To enable compilation of this filter you need to configure FFmpeg with
20787 @code{--enable-libvidstab}.
20788
20789 @subsection Options
20790
20791 @table @option
20792 @item input
20793 Set path to the file used to read the transforms. Default value is
20794 @file{transforms.trf}.
20795
20796 @item smoothing
20797 Set the number of frames (value*2 + 1) used for lowpass filtering the
20798 camera movements. Default value is 10.
20799
20800 For example a number of 10 means that 21 frames are used (10 in the
20801 past and 10 in the future) to smoothen the motion in the video. A
20802 larger value leads to a smoother video, but limits the acceleration of
20803 the camera (pan/tilt movements). 0 is a special case where a static
20804 camera is simulated.
20805
20806 @item optalgo
20807 Set the camera path optimization algorithm.
20808
20809 Accepted values are:
20810 @table @samp
20811 @item gauss
20812 gaussian kernel low-pass filter on camera motion (default)
20813 @item avg
20814 averaging on transformations
20815 @end table
20816
20817 @item maxshift
20818 Set maximal number of pixels to translate frames. Default value is -1,
20819 meaning no limit.
20820
20821 @item maxangle
20822 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
20823 value is -1, meaning no limit.
20824
20825 @item crop
20826 Specify how to deal with borders that may be visible due to movement
20827 compensation.
20828
20829 Available values are:
20830 @table @samp
20831 @item keep
20832 keep image information from previous frame (default)
20833 @item black
20834 fill the border black
20835 @end table
20836
20837 @item invert
20838 Invert transforms if set to 1. Default value is 0.
20839
20840 @item relative
20841 Consider transforms as relative to previous frame if set to 1,
20842 absolute if set to 0. Default value is 0.
20843
20844 @item zoom
20845 Set percentage to zoom. A positive value will result in a zoom-in
20846 effect, a negative value in a zoom-out effect. Default value is 0 (no
20847 zoom).
20848
20849 @item optzoom
20850 Set optimal zooming to avoid borders.
20851
20852 Accepted values are:
20853 @table @samp
20854 @item 0
20855 disabled
20856 @item 1
20857 optimal static zoom value is determined (only very strong movements
20858 will lead to visible borders) (default)
20859 @item 2
20860 optimal adaptive zoom value is determined (no borders will be
20861 visible), see @option{zoomspeed}
20862 @end table
20863
20864 Note that the value given at zoom is added to the one calculated here.
20865
20866 @item zoomspeed
20867 Set percent to zoom maximally each frame (enabled when
20868 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
20869 0.25.
20870
20871 @item interpol
20872 Specify type of interpolation.
20873
20874 Available values are:
20875 @table @samp
20876 @item no
20877 no interpolation
20878 @item linear
20879 linear only horizontal
20880 @item bilinear
20881 linear in both directions (default)
20882 @item bicubic
20883 cubic in both directions (slow)
20884 @end table
20885
20886 @item tripod
20887 Enable virtual tripod mode if set to 1, which is equivalent to
20888 @code{relative=0:smoothing=0}. Default value is 0.
20889
20890 Use also @code{tripod} option of @ref{vidstabdetect}.
20891
20892 @item debug
20893 Increase log verbosity if set to 1. Also the detected global motions
20894 are written to the temporary file @file{global_motions.trf}. Default
20895 value is 0.
20896 @end table
20897
20898 @subsection Examples
20899
20900 @itemize
20901 @item
20902 Use @command{ffmpeg} for a typical stabilization with default values:
20903 @example
20904 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
20905 @end example
20906
20907 Note the use of the @ref{unsharp} filter which is always recommended.
20908
20909 @item
20910 Zoom in a bit more and load transform data from a given file:
20911 @example
20912 vidstabtransform=zoom=5:input="mytransforms.trf"
20913 @end example
20914
20915 @item
20916 Smoothen the video even more:
20917 @example
20918 vidstabtransform=smoothing=30
20919 @end example
20920 @end itemize
20921
20922 @section vflip
20923
20924 Flip the input video vertically.
20925
20926 For example, to vertically flip a video with @command{ffmpeg}:
20927 @example
20928 ffmpeg -i in.avi -vf "vflip" out.avi
20929 @end example
20930
20931 @section vfrdet
20932
20933 Detect variable frame rate video.
20934
20935 This filter tries to detect if the input is variable or constant frame rate.
20936
20937 At end it will output number of frames detected as having variable delta pts,
20938 and ones with constant delta pts.
20939 If there was frames with variable delta, than it will also show min, max and
20940 average delta encountered.
20941
20942 @section vibrance
20943
20944 Boost or alter saturation.
20945
20946 The filter accepts the following options:
20947 @table @option
20948 @item intensity
20949 Set strength of boost if positive value or strength of alter if negative value.
20950 Default is 0. Allowed range is from -2 to 2.
20951
20952 @item rbal
20953 Set the red balance. Default is 1. Allowed range is from -10 to 10.
20954
20955 @item gbal
20956 Set the green balance. Default is 1. Allowed range is from -10 to 10.
20957
20958 @item bbal
20959 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
20960
20961 @item rlum
20962 Set the red luma coefficient.
20963
20964 @item glum
20965 Set the green luma coefficient.
20966
20967 @item blum
20968 Set the blue luma coefficient.
20969
20970 @item alternate
20971 If @code{intensity} is negative and this is set to 1, colors will change,
20972 otherwise colors will be less saturated, more towards gray.
20973 @end table
20974
20975 @subsection Commands
20976
20977 This filter supports the all above options as @ref{commands}.
20978
20979 @anchor{vignette}
20980 @section vignette
20981
20982 Make or reverse a natural vignetting effect.
20983
20984 The filter accepts the following options:
20985
20986 @table @option
20987 @item angle, a
20988 Set lens angle expression as a number of radians.
20989
20990 The value is clipped in the @code{[0,PI/2]} range.
20991
20992 Default value: @code{"PI/5"}
20993
20994 @item x0
20995 @item y0
20996 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
20997 by default.
20998
20999 @item mode
21000 Set forward/backward mode.
21001
21002 Available modes are:
21003 @table @samp
21004 @item forward
21005 The larger the distance from the central point, the darker the image becomes.
21006
21007 @item backward
21008 The larger the distance from the central point, the brighter the image becomes.
21009 This can be used to reverse a vignette effect, though there is no automatic
21010 detection to extract the lens @option{angle} and other settings (yet). It can
21011 also be used to create a burning effect.
21012 @end table
21013
21014 Default value is @samp{forward}.
21015
21016 @item eval
21017 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
21018
21019 It accepts the following values:
21020 @table @samp
21021 @item init
21022 Evaluate expressions only once during the filter initialization.
21023
21024 @item frame
21025 Evaluate expressions for each incoming frame. This is way slower than the
21026 @samp{init} mode since it requires all the scalers to be re-computed, but it
21027 allows advanced dynamic expressions.
21028 @end table
21029
21030 Default value is @samp{init}.
21031
21032 @item dither
21033 Set dithering to reduce the circular banding effects. Default is @code{1}
21034 (enabled).
21035
21036 @item aspect
21037 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
21038 Setting this value to the SAR of the input will make a rectangular vignetting
21039 following the dimensions of the video.
21040
21041 Default is @code{1/1}.
21042 @end table
21043
21044 @subsection Expressions
21045
21046 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
21047 following parameters.
21048
21049 @table @option
21050 @item w
21051 @item h
21052 input width and height
21053
21054 @item n
21055 the number of input frame, starting from 0
21056
21057 @item pts
21058 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
21059 @var{TB} units, NAN if undefined
21060
21061 @item r
21062 frame rate of the input video, NAN if the input frame rate is unknown
21063
21064 @item t
21065 the PTS (Presentation TimeStamp) of the filtered video frame,
21066 expressed in seconds, NAN if undefined
21067
21068 @item tb
21069 time base of the input video
21070 @end table
21071
21072
21073 @subsection Examples
21074
21075 @itemize
21076 @item
21077 Apply simple strong vignetting effect:
21078 @example
21079 vignette=PI/4
21080 @end example
21081
21082 @item
21083 Make a flickering vignetting:
21084 @example
21085 vignette='PI/4+random(1)*PI/50':eval=frame
21086 @end example
21087
21088 @end itemize
21089
21090 @section vmafmotion
21091
21092 Obtain the average VMAF motion score of a video.
21093 It is one of the component metrics of VMAF.
21094
21095 The obtained average motion score is printed through the logging system.
21096
21097 The filter accepts the following options:
21098
21099 @table @option
21100 @item stats_file
21101 If specified, the filter will use the named file to save the motion score of
21102 each frame with respect to the previous frame.
21103 When filename equals "-" the data is sent to standard output.
21104 @end table
21105
21106 Example:
21107 @example
21108 ffmpeg -i ref.mpg -vf vmafmotion -f null -
21109 @end example
21110
21111 @section vstack
21112 Stack input videos vertically.
21113
21114 All streams must be of same pixel format and of same width.
21115
21116 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
21117 to create same output.
21118
21119 The filter accepts the following options:
21120
21121 @table @option
21122 @item inputs
21123 Set number of input streams. Default is 2.
21124
21125 @item shortest
21126 If set to 1, force the output to terminate when the shortest input
21127 terminates. Default value is 0.
21128 @end table
21129
21130 @section w3fdif
21131
21132 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
21133 Deinterlacing Filter").
21134
21135 Based on the process described by Martin Weston for BBC R&D, and
21136 implemented based on the de-interlace algorithm written by Jim
21137 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
21138 uses filter coefficients calculated by BBC R&D.
21139
21140 This filter uses field-dominance information in frame to decide which
21141 of each pair of fields to place first in the output.
21142 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
21143
21144 There are two sets of filter coefficients, so called "simple"
21145 and "complex". Which set of filter coefficients is used can
21146 be set by passing an optional parameter:
21147
21148 @table @option
21149 @item filter
21150 Set the interlacing filter coefficients. Accepts one of the following values:
21151
21152 @table @samp
21153 @item simple
21154 Simple filter coefficient set.
21155 @item complex
21156 More-complex filter coefficient set.
21157 @end table
21158 Default value is @samp{complex}.
21159
21160 @item mode
21161 The interlacing mode to adopt. It accepts one of the following values:
21162
21163 @table @option
21164 @item frame
21165 Output one frame for each frame.
21166 @item field
21167 Output one frame for each field.
21168 @end table
21169
21170 The default value is @code{field}.
21171
21172 @item parity
21173 The picture field parity assumed for the input interlaced video. It accepts one
21174 of the following values:
21175
21176 @table @option
21177 @item tff
21178 Assume the top field is first.
21179 @item bff
21180 Assume the bottom field is first.
21181 @item auto
21182 Enable automatic detection of field parity.
21183 @end table
21184
21185 The default value is @code{auto}.
21186 If the interlacing is unknown or the decoder does not export this information,
21187 top field first will be assumed.
21188
21189 @item deint
21190 Specify which frames to deinterlace. Accepts one of the following values:
21191
21192 @table @samp
21193 @item all
21194 Deinterlace all frames,
21195 @item interlaced
21196 Only deinterlace frames marked as interlaced.
21197 @end table
21198
21199 Default value is @samp{all}.
21200 @end table
21201
21202 @subsection Commands
21203 This filter supports same @ref{commands} as options.
21204
21205 @section waveform
21206 Video waveform monitor.
21207
21208 The waveform monitor plots color component intensity. By default luminance
21209 only. Each column of the waveform corresponds to a column of pixels in the
21210 source video.
21211
21212 It accepts the following options:
21213
21214 @table @option
21215 @item mode, m
21216 Can be either @code{row}, or @code{column}. Default is @code{column}.
21217 In row mode, the graph on the left side represents color component value 0 and
21218 the right side represents value = 255. In column mode, the top side represents
21219 color component value = 0 and bottom side represents value = 255.
21220
21221 @item intensity, i
21222 Set intensity. Smaller values are useful to find out how many values of the same
21223 luminance are distributed across input rows/columns.
21224 Default value is @code{0.04}. Allowed range is [0, 1].
21225
21226 @item mirror, r
21227 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
21228 In mirrored mode, higher values will be represented on the left
21229 side for @code{row} mode and at the top for @code{column} mode. Default is
21230 @code{1} (mirrored).
21231
21232 @item display, d
21233 Set display mode.
21234 It accepts the following values:
21235 @table @samp
21236 @item overlay
21237 Presents information identical to that in the @code{parade}, except
21238 that the graphs representing color components are superimposed directly
21239 over one another.
21240
21241 This display mode makes it easier to spot relative differences or similarities
21242 in overlapping areas of the color components that are supposed to be identical,
21243 such as neutral whites, grays, or blacks.
21244
21245 @item stack
21246 Display separate graph for the color components side by side in
21247 @code{row} mode or one below the other in @code{column} mode.
21248
21249 @item parade
21250 Display separate graph for the color components side by side in
21251 @code{column} mode or one below the other in @code{row} mode.
21252
21253 Using this display mode makes it easy to spot color casts in the highlights
21254 and shadows of an image, by comparing the contours of the top and the bottom
21255 graphs of each waveform. Since whites, grays, and blacks are characterized
21256 by exactly equal amounts of red, green, and blue, neutral areas of the picture
21257 should display three waveforms of roughly equal width/height. If not, the
21258 correction is easy to perform by making level adjustments the three waveforms.
21259 @end table
21260 Default is @code{stack}.
21261
21262 @item components, c
21263 Set which color components to display. Default is 1, which means only luminance
21264 or red color component if input is in RGB colorspace. If is set for example to
21265 7 it will display all 3 (if) available color components.
21266
21267 @item envelope, e
21268 @table @samp
21269 @item none
21270 No envelope, this is default.
21271
21272 @item instant
21273 Instant envelope, minimum and maximum values presented in graph will be easily
21274 visible even with small @code{step} value.
21275
21276 @item peak
21277 Hold minimum and maximum values presented in graph across time. This way you
21278 can still spot out of range values without constantly looking at waveforms.
21279
21280 @item peak+instant
21281 Peak and instant envelope combined together.
21282 @end table
21283
21284 @item filter, f
21285 @table @samp
21286 @item lowpass
21287 No filtering, this is default.
21288
21289 @item flat
21290 Luma and chroma combined together.
21291
21292 @item aflat
21293 Similar as above, but shows difference between blue and red chroma.
21294
21295 @item xflat
21296 Similar as above, but use different colors.
21297
21298 @item yflat
21299 Similar as above, but again with different colors.
21300
21301 @item chroma
21302 Displays only chroma.
21303
21304 @item color
21305 Displays actual color value on waveform.
21306
21307 @item acolor
21308 Similar as above, but with luma showing frequency of chroma values.
21309 @end table
21310
21311 @item graticule, g
21312 Set which graticule to display.
21313
21314 @table @samp
21315 @item none
21316 Do not display graticule.
21317
21318 @item green
21319 Display green graticule showing legal broadcast ranges.
21320
21321 @item orange
21322 Display orange graticule showing legal broadcast ranges.
21323
21324 @item invert
21325 Display invert graticule showing legal broadcast ranges.
21326 @end table
21327
21328 @item opacity, o
21329 Set graticule opacity.
21330
21331 @item flags, fl
21332 Set graticule flags.
21333
21334 @table @samp
21335 @item numbers
21336 Draw numbers above lines. By default enabled.
21337
21338 @item dots
21339 Draw dots instead of lines.
21340 @end table
21341
21342 @item scale, s
21343 Set scale used for displaying graticule.
21344
21345 @table @samp
21346 @item digital
21347 @item millivolts
21348 @item ire
21349 @end table
21350 Default is digital.
21351
21352 @item bgopacity, b
21353 Set background opacity.
21354
21355 @item tint0, t0
21356 @item tint1, t1
21357 Set tint for output.
21358 Only used with lowpass filter and when display is not overlay and input
21359 pixel formats are not RGB.
21360 @end table
21361
21362 @section weave, doubleweave
21363
21364 The @code{weave} takes a field-based video input and join
21365 each two sequential fields into single frame, producing a new double
21366 height clip with half the frame rate and half the frame count.
21367
21368 The @code{doubleweave} works same as @code{weave} but without
21369 halving frame rate and frame count.
21370
21371 It accepts the following option:
21372
21373 @table @option
21374 @item first_field
21375 Set first field. Available values are:
21376
21377 @table @samp
21378 @item top, t
21379 Set the frame as top-field-first.
21380
21381 @item bottom, b
21382 Set the frame as bottom-field-first.
21383 @end table
21384 @end table
21385
21386 @subsection Examples
21387
21388 @itemize
21389 @item
21390 Interlace video using @ref{select} and @ref{separatefields} filter:
21391 @example
21392 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
21393 @end example
21394 @end itemize
21395
21396 @section xbr
21397 Apply the xBR high-quality magnification filter which is designed for pixel
21398 art. It follows a set of edge-detection rules, see
21399 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
21400
21401 It accepts the following option:
21402
21403 @table @option
21404 @item n
21405 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
21406 @code{3xBR} and @code{4} for @code{4xBR}.
21407 Default is @code{3}.
21408 @end table
21409
21410 @section xfade
21411
21412 Apply cross fade from one input video stream to another input video stream.
21413 The cross fade is applied for specified duration.
21414
21415 The filter accepts the following options:
21416
21417 @table @option
21418 @item transition
21419 Set one of available transition effects:
21420
21421 @table @samp
21422 @item custom
21423 @item fade
21424 @item wipeleft
21425 @item wiperight
21426 @item wipeup
21427 @item wipedown
21428 @item slideleft
21429 @item slideright
21430 @item slideup
21431 @item slidedown
21432 @item circlecrop
21433 @item rectcrop
21434 @item distance
21435 @item fadeblack
21436 @item fadewhite
21437 @item radial
21438 @item smoothleft
21439 @item smoothright
21440 @item smoothup
21441 @item smoothdown
21442 @item circleopen
21443 @item circleclose
21444 @item vertopen
21445 @item vertclose
21446 @item horzopen
21447 @item horzclose
21448 @item dissolve
21449 @item pixelize
21450 @item diagtl
21451 @item diagtr
21452 @item diagbl
21453 @item diagbr
21454 @item hlslice
21455 @item hrslice
21456 @item vuslice
21457 @item vdslice
21458 @item hblur
21459 @item fadegrays
21460 @item wipetl
21461 @item wipetr
21462 @item wipebl
21463 @item wipebr
21464 @item squeezeh
21465 @item squeezev
21466 @end table
21467 Default transition effect is fade.
21468
21469 @item duration
21470 Set cross fade duration in seconds.
21471 Default duration is 1 second.
21472
21473 @item offset
21474 Set cross fade start relative to first input stream in seconds.
21475 Default offset is 0.
21476
21477 @item expr
21478 Set expression for custom transition effect.
21479
21480 The expressions can use the following variables and functions:
21481
21482 @table @option
21483 @item X
21484 @item Y
21485 The coordinates of the current sample.
21486
21487 @item W
21488 @item H
21489 The width and height of the image.
21490
21491 @item P
21492 Progress of transition effect.
21493
21494 @item PLANE
21495 Currently processed plane.
21496
21497 @item A
21498 Return value of first input at current location and plane.
21499
21500 @item B
21501 Return value of second input at current location and plane.
21502
21503 @item a0(x, y)
21504 @item a1(x, y)
21505 @item a2(x, y)
21506 @item a3(x, y)
21507 Return the value of the pixel at location (@var{x},@var{y}) of the
21508 first/second/third/fourth component of first input.
21509
21510 @item b0(x, y)
21511 @item b1(x, y)
21512 @item b2(x, y)
21513 @item b3(x, y)
21514 Return the value of the pixel at location (@var{x},@var{y}) of the
21515 first/second/third/fourth component of second input.
21516 @end table
21517 @end table
21518
21519 @subsection Examples
21520
21521 @itemize
21522 @item
21523 Cross fade from one input video to another input video, with fade transition and duration of transition
21524 of 2 seconds starting at offset of 5 seconds:
21525 @example
21526 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
21527 @end example
21528 @end itemize
21529
21530 @section xmedian
21531 Pick median pixels from several input videos.
21532
21533 The filter accepts the following options:
21534
21535 @table @option
21536 @item inputs
21537 Set number of inputs.
21538 Default is 3. Allowed range is from 3 to 255.
21539 If number of inputs is even number, than result will be mean value between two median values.
21540
21541 @item planes
21542 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
21543
21544 @item percentile
21545 Set median percentile. Default value is @code{0.5}.
21546 Default value of @code{0.5} will pick always median values, while @code{0} will pick
21547 minimum values, and @code{1} maximum values.
21548 @end table
21549
21550 @subsection Commands
21551
21552 This filter supports all above options as @ref{commands}, excluding option @code{inputs}.
21553
21554 @section xstack
21555 Stack video inputs into custom layout.
21556
21557 All streams must be of same pixel format.
21558
21559 The filter accepts the following options:
21560
21561 @table @option
21562 @item inputs
21563 Set number of input streams. Default is 2.
21564
21565 @item layout
21566 Specify layout of inputs.
21567 This option requires the desired layout configuration to be explicitly set by the user.
21568 This sets position of each video input in output. Each input
21569 is separated by '|'.
21570 The first number represents the column, and the second number represents the row.
21571 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
21572 where X is video input from which to take width or height.
21573 Multiple values can be used when separated by '+'. In such
21574 case values are summed together.
21575
21576 Note that if inputs are of different sizes gaps may appear, as not all of
21577 the output video frame will be filled. Similarly, videos can overlap each
21578 other if their position doesn't leave enough space for the full frame of
21579 adjoining videos.
21580
21581 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
21582 a layout must be set by the user.
21583
21584 @item shortest
21585 If set to 1, force the output to terminate when the shortest input
21586 terminates. Default value is 0.
21587
21588 @item fill
21589 If set to valid color, all unused pixels will be filled with that color.
21590 By default fill is set to none, so it is disabled.
21591 @end table
21592
21593 @subsection Examples
21594
21595 @itemize
21596 @item
21597 Display 4 inputs into 2x2 grid.
21598
21599 Layout:
21600 @example
21601 input1(0, 0)  | input3(w0, 0)
21602 input2(0, h0) | input4(w0, h0)
21603 @end example
21604
21605 @example
21606 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
21607 @end example
21608
21609 Note that if inputs are of different sizes, gaps or overlaps may occur.
21610
21611 @item
21612 Display 4 inputs into 1x4 grid.
21613
21614 Layout:
21615 @example
21616 input1(0, 0)
21617 input2(0, h0)
21618 input3(0, h0+h1)
21619 input4(0, h0+h1+h2)
21620 @end example
21621
21622 @example
21623 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
21624 @end example
21625
21626 Note that if inputs are of different widths, unused space will appear.
21627
21628 @item
21629 Display 9 inputs into 3x3 grid.
21630
21631 Layout:
21632 @example
21633 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
21634 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
21635 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
21636 @end example
21637
21638 @example
21639 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
21640 @end example
21641
21642 Note that if inputs are of different sizes, gaps or overlaps may occur.
21643
21644 @item
21645 Display 16 inputs into 4x4 grid.
21646
21647 Layout:
21648 @example
21649 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
21650 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
21651 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
21652 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
21653 @end example
21654
21655 @example
21656 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|
21657 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
21658 @end example
21659
21660 Note that if inputs are of different sizes, gaps or overlaps may occur.
21661
21662 @end itemize
21663
21664 @anchor{yadif}
21665 @section yadif
21666
21667 Deinterlace the input video ("yadif" means "yet another deinterlacing
21668 filter").
21669
21670 It accepts the following parameters:
21671
21672
21673 @table @option
21674
21675 @item mode
21676 The interlacing mode to adopt. It accepts one of the following values:
21677
21678 @table @option
21679 @item 0, send_frame
21680 Output one frame for each frame.
21681 @item 1, send_field
21682 Output one frame for each field.
21683 @item 2, send_frame_nospatial
21684 Like @code{send_frame}, but it skips the spatial interlacing check.
21685 @item 3, send_field_nospatial
21686 Like @code{send_field}, but it skips the spatial interlacing check.
21687 @end table
21688
21689 The default value is @code{send_frame}.
21690
21691 @item parity
21692 The picture field parity assumed for the input interlaced video. It accepts one
21693 of the following values:
21694
21695 @table @option
21696 @item 0, tff
21697 Assume the top field is first.
21698 @item 1, bff
21699 Assume the bottom field is first.
21700 @item -1, auto
21701 Enable automatic detection of field parity.
21702 @end table
21703
21704 The default value is @code{auto}.
21705 If the interlacing is unknown or the decoder does not export this information,
21706 top field first will be assumed.
21707
21708 @item deint
21709 Specify which frames to deinterlace. Accepts one of the following
21710 values:
21711
21712 @table @option
21713 @item 0, all
21714 Deinterlace all frames.
21715 @item 1, interlaced
21716 Only deinterlace frames marked as interlaced.
21717 @end table
21718
21719 The default value is @code{all}.
21720 @end table
21721
21722 @section yadif_cuda
21723
21724 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
21725 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
21726 and/or nvenc.
21727
21728 It accepts the following parameters:
21729
21730
21731 @table @option
21732
21733 @item mode
21734 The interlacing mode to adopt. It accepts one of the following values:
21735
21736 @table @option
21737 @item 0, send_frame
21738 Output one frame for each frame.
21739 @item 1, send_field
21740 Output one frame for each field.
21741 @item 2, send_frame_nospatial
21742 Like @code{send_frame}, but it skips the spatial interlacing check.
21743 @item 3, send_field_nospatial
21744 Like @code{send_field}, but it skips the spatial interlacing check.
21745 @end table
21746
21747 The default value is @code{send_frame}.
21748
21749 @item parity
21750 The picture field parity assumed for the input interlaced video. It accepts one
21751 of the following values:
21752
21753 @table @option
21754 @item 0, tff
21755 Assume the top field is first.
21756 @item 1, bff
21757 Assume the bottom field is first.
21758 @item -1, auto
21759 Enable automatic detection of field parity.
21760 @end table
21761
21762 The default value is @code{auto}.
21763 If the interlacing is unknown or the decoder does not export this information,
21764 top field first will be assumed.
21765
21766 @item deint
21767 Specify which frames to deinterlace. Accepts one of the following
21768 values:
21769
21770 @table @option
21771 @item 0, all
21772 Deinterlace all frames.
21773 @item 1, interlaced
21774 Only deinterlace frames marked as interlaced.
21775 @end table
21776
21777 The default value is @code{all}.
21778 @end table
21779
21780 @section yaepblur
21781
21782 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
21783 The algorithm is described in
21784 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
21785
21786 It accepts the following parameters:
21787
21788 @table @option
21789 @item radius, r
21790 Set the window radius. Default value is 3.
21791
21792 @item planes, p
21793 Set which planes to filter. Default is only the first plane.
21794
21795 @item sigma, s
21796 Set blur strength. Default value is 128.
21797 @end table
21798
21799 @subsection Commands
21800 This filter supports same @ref{commands} as options.
21801
21802 @section zoompan
21803
21804 Apply Zoom & Pan effect.
21805
21806 This filter accepts the following options:
21807
21808 @table @option
21809 @item zoom, z
21810 Set the zoom expression. Range is 1-10. Default is 1.
21811
21812 @item x
21813 @item y
21814 Set the x and y expression. Default is 0.
21815
21816 @item d
21817 Set the duration expression in number of frames.
21818 This sets for how many number of frames effect will last for
21819 single input image.
21820
21821 @item s
21822 Set the output image size, default is 'hd720'.
21823
21824 @item fps
21825 Set the output frame rate, default is '25'.
21826 @end table
21827
21828 Each expression can contain the following constants:
21829
21830 @table @option
21831 @item in_w, iw
21832 Input width.
21833
21834 @item in_h, ih
21835 Input height.
21836
21837 @item out_w, ow
21838 Output width.
21839
21840 @item out_h, oh
21841 Output height.
21842
21843 @item in
21844 Input frame count.
21845
21846 @item on
21847 Output frame count.
21848
21849 @item in_time, it
21850 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
21851
21852 @item out_time, time, ot
21853 The output timestamp expressed in seconds.
21854
21855 @item x
21856 @item y
21857 Last calculated 'x' and 'y' position from 'x' and 'y' expression
21858 for current input frame.
21859
21860 @item px
21861 @item py
21862 'x' and 'y' of last output frame of previous input frame or 0 when there was
21863 not yet such frame (first input frame).
21864
21865 @item zoom
21866 Last calculated zoom from 'z' expression for current input frame.
21867
21868 @item pzoom
21869 Last calculated zoom of last output frame of previous input frame.
21870
21871 @item duration
21872 Number of output frames for current input frame. Calculated from 'd' expression
21873 for each input frame.
21874
21875 @item pduration
21876 number of output frames created for previous input frame
21877
21878 @item a
21879 Rational number: input width / input height
21880
21881 @item sar
21882 sample aspect ratio
21883
21884 @item dar
21885 display aspect ratio
21886
21887 @end table
21888
21889 @subsection Examples
21890
21891 @itemize
21892 @item
21893 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
21894 @example
21895 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
21896 @end example
21897
21898 @item
21899 Zoom in up to 1.5x and pan always at center of picture:
21900 @example
21901 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21902 @end example
21903
21904 @item
21905 Same as above but without pausing:
21906 @example
21907 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21908 @end example
21909
21910 @item
21911 Zoom in 2x into center of picture only for the first second of the input video:
21912 @example
21913 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21914 @end example
21915
21916 @end itemize
21917
21918 @anchor{zscale}
21919 @section zscale
21920 Scale (resize) the input video, using the z.lib library:
21921 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
21922 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
21923
21924 The zscale filter forces the output display aspect ratio to be the same
21925 as the input, by changing the output sample aspect ratio.
21926
21927 If the input image format is different from the format requested by
21928 the next filter, the zscale filter will convert the input to the
21929 requested format.
21930
21931 @subsection Options
21932 The filter accepts the following options.
21933
21934 @table @option
21935 @item width, w
21936 @item height, h
21937 Set the output video dimension expression. Default value is the input
21938 dimension.
21939
21940 If the @var{width} or @var{w} value is 0, the input width is used for
21941 the output. If the @var{height} or @var{h} value is 0, the input height
21942 is used for the output.
21943
21944 If one and only one of the values is -n with n >= 1, the zscale filter
21945 will use a value that maintains the aspect ratio of the input image,
21946 calculated from the other specified dimension. After that it will,
21947 however, make sure that the calculated dimension is divisible by n and
21948 adjust the value if necessary.
21949
21950 If both values are -n with n >= 1, the behavior will be identical to
21951 both values being set to 0 as previously detailed.
21952
21953 See below for the list of accepted constants for use in the dimension
21954 expression.
21955
21956 @item size, s
21957 Set the video size. For the syntax of this option, check the
21958 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21959
21960 @item dither, d
21961 Set the dither type.
21962
21963 Possible values are:
21964 @table @var
21965 @item none
21966 @item ordered
21967 @item random
21968 @item error_diffusion
21969 @end table
21970
21971 Default is none.
21972
21973 @item filter, f
21974 Set the resize filter type.
21975
21976 Possible values are:
21977 @table @var
21978 @item point
21979 @item bilinear
21980 @item bicubic
21981 @item spline16
21982 @item spline36
21983 @item lanczos
21984 @end table
21985
21986 Default is bilinear.
21987
21988 @item range, r
21989 Set the color range.
21990
21991 Possible values are:
21992 @table @var
21993 @item input
21994 @item limited
21995 @item full
21996 @end table
21997
21998 Default is same as input.
21999
22000 @item primaries, p
22001 Set the color primaries.
22002
22003 Possible values are:
22004 @table @var
22005 @item input
22006 @item 709
22007 @item unspecified
22008 @item 170m
22009 @item 240m
22010 @item 2020
22011 @end table
22012
22013 Default is same as input.
22014
22015 @item transfer, t
22016 Set the transfer characteristics.
22017
22018 Possible values are:
22019 @table @var
22020 @item input
22021 @item 709
22022 @item unspecified
22023 @item 601
22024 @item linear
22025 @item 2020_10
22026 @item 2020_12
22027 @item smpte2084
22028 @item iec61966-2-1
22029 @item arib-std-b67
22030 @end table
22031
22032 Default is same as input.
22033
22034 @item matrix, m
22035 Set the colorspace matrix.
22036
22037 Possible value are:
22038 @table @var
22039 @item input
22040 @item 709
22041 @item unspecified
22042 @item 470bg
22043 @item 170m
22044 @item 2020_ncl
22045 @item 2020_cl
22046 @end table
22047
22048 Default is same as input.
22049
22050 @item rangein, rin
22051 Set the input color range.
22052
22053 Possible values are:
22054 @table @var
22055 @item input
22056 @item limited
22057 @item full
22058 @end table
22059
22060 Default is same as input.
22061
22062 @item primariesin, pin
22063 Set the input color primaries.
22064
22065 Possible values are:
22066 @table @var
22067 @item input
22068 @item 709
22069 @item unspecified
22070 @item 170m
22071 @item 240m
22072 @item 2020
22073 @end table
22074
22075 Default is same as input.
22076
22077 @item transferin, tin
22078 Set the input transfer characteristics.
22079
22080 Possible values are:
22081 @table @var
22082 @item input
22083 @item 709
22084 @item unspecified
22085 @item 601
22086 @item linear
22087 @item 2020_10
22088 @item 2020_12
22089 @end table
22090
22091 Default is same as input.
22092
22093 @item matrixin, min
22094 Set the input colorspace matrix.
22095
22096 Possible value are:
22097 @table @var
22098 @item input
22099 @item 709
22100 @item unspecified
22101 @item 470bg
22102 @item 170m
22103 @item 2020_ncl
22104 @item 2020_cl
22105 @end table
22106
22107 @item chromal, c
22108 Set the output chroma location.
22109
22110 Possible values are:
22111 @table @var
22112 @item input
22113 @item left
22114 @item center
22115 @item topleft
22116 @item top
22117 @item bottomleft
22118 @item bottom
22119 @end table
22120
22121 @item chromalin, cin
22122 Set the input chroma location.
22123
22124 Possible values are:
22125 @table @var
22126 @item input
22127 @item left
22128 @item center
22129 @item topleft
22130 @item top
22131 @item bottomleft
22132 @item bottom
22133 @end table
22134
22135 @item npl
22136 Set the nominal peak luminance.
22137 @end table
22138
22139 The values of the @option{w} and @option{h} options are expressions
22140 containing the following constants:
22141
22142 @table @var
22143 @item in_w
22144 @item in_h
22145 The input width and height
22146
22147 @item iw
22148 @item ih
22149 These are the same as @var{in_w} and @var{in_h}.
22150
22151 @item out_w
22152 @item out_h
22153 The output (scaled) width and height
22154
22155 @item ow
22156 @item oh
22157 These are the same as @var{out_w} and @var{out_h}
22158
22159 @item a
22160 The same as @var{iw} / @var{ih}
22161
22162 @item sar
22163 input sample aspect ratio
22164
22165 @item dar
22166 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
22167
22168 @item hsub
22169 @item vsub
22170 horizontal and vertical input chroma subsample values. For example for the
22171 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22172
22173 @item ohsub
22174 @item ovsub
22175 horizontal and vertical output chroma subsample values. For example for the
22176 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22177 @end table
22178
22179 @subsection Commands
22180
22181 This filter supports the following commands:
22182 @table @option
22183 @item width, w
22184 @item height, h
22185 Set the output video dimension expression.
22186 The command accepts the same syntax of the corresponding option.
22187
22188 If the specified expression is not valid, it is kept at its current
22189 value.
22190 @end table
22191
22192 @c man end VIDEO FILTERS
22193
22194 @chapter OpenCL Video Filters
22195 @c man begin OPENCL VIDEO FILTERS
22196
22197 Below is a description of the currently available OpenCL video filters.
22198
22199 To enable compilation of these filters you need to configure FFmpeg with
22200 @code{--enable-opencl}.
22201
22202 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
22203 @table @option
22204
22205 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
22206 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
22207 given device parameters.
22208
22209 @item -filter_hw_device @var{name}
22210 Pass the hardware device called @var{name} to all filters in any filter graph.
22211
22212 @end table
22213
22214 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
22215
22216 @itemize
22217 @item
22218 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
22219 @example
22220 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
22221 @end example
22222 @end itemize
22223
22224 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.
22225
22226 @section avgblur_opencl
22227
22228 Apply average blur filter.
22229
22230 The filter accepts the following options:
22231
22232 @table @option
22233 @item sizeX
22234 Set horizontal radius size.
22235 Range is @code{[1, 1024]} and default value is @code{1}.
22236
22237 @item planes
22238 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22239
22240 @item sizeY
22241 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
22242 @end table
22243
22244 @subsection Example
22245
22246 @itemize
22247 @item
22248 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.
22249 @example
22250 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
22251 @end example
22252 @end itemize
22253
22254 @section boxblur_opencl
22255
22256 Apply a boxblur algorithm to the input video.
22257
22258 It accepts the following parameters:
22259
22260 @table @option
22261
22262 @item luma_radius, lr
22263 @item luma_power, lp
22264 @item chroma_radius, cr
22265 @item chroma_power, cp
22266 @item alpha_radius, ar
22267 @item alpha_power, ap
22268
22269 @end table
22270
22271 A description of the accepted options follows.
22272
22273 @table @option
22274 @item luma_radius, lr
22275 @item chroma_radius, cr
22276 @item alpha_radius, ar
22277 Set an expression for the box radius in pixels used for blurring the
22278 corresponding input plane.
22279
22280 The radius value must be a non-negative number, and must not be
22281 greater than the value of the expression @code{min(w,h)/2} for the
22282 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
22283 planes.
22284
22285 Default value for @option{luma_radius} is "2". If not specified,
22286 @option{chroma_radius} and @option{alpha_radius} default to the
22287 corresponding value set for @option{luma_radius}.
22288
22289 The expressions can contain the following constants:
22290 @table @option
22291 @item w
22292 @item h
22293 The input width and height in pixels.
22294
22295 @item cw
22296 @item ch
22297 The input chroma image width and height in pixels.
22298
22299 @item hsub
22300 @item vsub
22301 The horizontal and vertical chroma subsample values. For example, for the
22302 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
22303 @end table
22304
22305 @item luma_power, lp
22306 @item chroma_power, cp
22307 @item alpha_power, ap
22308 Specify how many times the boxblur filter is applied to the
22309 corresponding plane.
22310
22311 Default value for @option{luma_power} is 2. If not specified,
22312 @option{chroma_power} and @option{alpha_power} default to the
22313 corresponding value set for @option{luma_power}.
22314
22315 A value of 0 will disable the effect.
22316 @end table
22317
22318 @subsection Examples
22319
22320 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.
22321
22322 @itemize
22323 @item
22324 Apply a boxblur filter with the luma, chroma, and alpha radius
22325 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.
22326 @example
22327 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
22328 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
22329 @end example
22330
22331 @item
22332 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.
22333
22334 For the luma plane, a 2x2 box radius will be run once.
22335
22336 For the chroma plane, a 4x4 box radius will be run 5 times.
22337
22338 For the alpha plane, a 3x3 box radius will be run 7 times.
22339 @example
22340 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
22341 @end example
22342 @end itemize
22343
22344 @section colorkey_opencl
22345 RGB colorspace color keying.
22346
22347 The filter accepts the following options:
22348
22349 @table @option
22350 @item color
22351 The color which will be replaced with transparency.
22352
22353 @item similarity
22354 Similarity percentage with the key color.
22355
22356 0.01 matches only the exact key color, while 1.0 matches everything.
22357
22358 @item blend
22359 Blend percentage.
22360
22361 0.0 makes pixels either fully transparent, or not transparent at all.
22362
22363 Higher values result in semi-transparent pixels, with a higher transparency
22364 the more similar the pixels color is to the key color.
22365 @end table
22366
22367 @subsection Examples
22368
22369 @itemize
22370 @item
22371 Make every semi-green pixel in the input transparent with some slight blending:
22372 @example
22373 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
22374 @end example
22375 @end itemize
22376
22377 @section convolution_opencl
22378
22379 Apply convolution of 3x3, 5x5, 7x7 matrix.
22380
22381 The filter accepts the following options:
22382
22383 @table @option
22384 @item 0m
22385 @item 1m
22386 @item 2m
22387 @item 3m
22388 Set matrix for each plane.
22389 Matrix is sequence of 9, 25 or 49 signed numbers.
22390 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
22391
22392 @item 0rdiv
22393 @item 1rdiv
22394 @item 2rdiv
22395 @item 3rdiv
22396 Set multiplier for calculated value for each plane.
22397 If unset or 0, it will be sum of all matrix elements.
22398 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
22399
22400 @item 0bias
22401 @item 1bias
22402 @item 2bias
22403 @item 3bias
22404 Set bias for each plane. This value is added to the result of the multiplication.
22405 Useful for making the overall image brighter or darker.
22406 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
22407
22408 @end table
22409
22410 @subsection Examples
22411
22412 @itemize
22413 @item
22414 Apply sharpen:
22415 @example
22416 -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
22417 @end example
22418
22419 @item
22420 Apply blur:
22421 @example
22422 -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
22423 @end example
22424
22425 @item
22426 Apply edge enhance:
22427 @example
22428 -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
22429 @end example
22430
22431 @item
22432 Apply edge detect:
22433 @example
22434 -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
22435 @end example
22436
22437 @item
22438 Apply laplacian edge detector which includes diagonals:
22439 @example
22440 -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
22441 @end example
22442
22443 @item
22444 Apply emboss:
22445 @example
22446 -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
22447 @end example
22448 @end itemize
22449
22450 @section erosion_opencl
22451
22452 Apply erosion effect to the video.
22453
22454 This filter replaces the pixel by the local(3x3) minimum.
22455
22456 It accepts the following options:
22457
22458 @table @option
22459 @item threshold0
22460 @item threshold1
22461 @item threshold2
22462 @item threshold3
22463 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22464 If @code{0}, plane will remain unchanged.
22465
22466 @item coordinates
22467 Flag which specifies the pixel to refer to.
22468 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22469
22470 Flags to local 3x3 coordinates region centered on @code{x}:
22471
22472     1 2 3
22473
22474     4 x 5
22475
22476     6 7 8
22477 @end table
22478
22479 @subsection Example
22480
22481 @itemize
22482 @item
22483 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.
22484 @example
22485 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22486 @end example
22487 @end itemize
22488
22489 @section deshake_opencl
22490 Feature-point based video stabilization filter.
22491
22492 The filter accepts the following options:
22493
22494 @table @option
22495 @item tripod
22496 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
22497
22498 @item debug
22499 Whether or not additional debug info should be displayed, both in the processed output and in the console.
22500
22501 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
22502
22503 Viewing point matches in the output video is only supported for RGB input.
22504
22505 Defaults to @code{0}.
22506
22507 @item adaptive_crop
22508 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
22509
22510 Defaults to @code{1}.
22511
22512 @item refine_features
22513 Whether or not feature points should be refined at a sub-pixel level.
22514
22515 This can be turned off for a slight performance gain at the cost of precision.
22516
22517 Defaults to @code{1}.
22518
22519 @item smooth_strength
22520 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
22521
22522 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
22523
22524 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
22525
22526 Defaults to @code{0.0}.
22527
22528 @item smooth_window_multiplier
22529 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
22530
22531 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
22532
22533 Acceptable values range from @code{0.1} to @code{10.0}.
22534
22535 Larger values increase the amount of motion data available for determining how to smooth the camera path,
22536 potentially improving smoothness, but also increase latency and memory usage.
22537
22538 Defaults to @code{2.0}.
22539
22540 @end table
22541
22542 @subsection Examples
22543
22544 @itemize
22545 @item
22546 Stabilize a video with a fixed, medium smoothing strength:
22547 @example
22548 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
22549 @end example
22550
22551 @item
22552 Stabilize a video with debugging (both in console and in rendered video):
22553 @example
22554 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
22555 @end example
22556 @end itemize
22557
22558 @section dilation_opencl
22559
22560 Apply dilation effect to the video.
22561
22562 This filter replaces the pixel by the local(3x3) maximum.
22563
22564 It accepts the following options:
22565
22566 @table @option
22567 @item threshold0
22568 @item threshold1
22569 @item threshold2
22570 @item threshold3
22571 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22572 If @code{0}, plane will remain unchanged.
22573
22574 @item coordinates
22575 Flag which specifies the pixel to refer to.
22576 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22577
22578 Flags to local 3x3 coordinates region centered on @code{x}:
22579
22580     1 2 3
22581
22582     4 x 5
22583
22584     6 7 8
22585 @end table
22586
22587 @subsection Example
22588
22589 @itemize
22590 @item
22591 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.
22592 @example
22593 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22594 @end example
22595 @end itemize
22596
22597 @section nlmeans_opencl
22598
22599 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
22600
22601 @section overlay_opencl
22602
22603 Overlay one video on top of another.
22604
22605 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
22606 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
22607
22608 The filter accepts the following options:
22609
22610 @table @option
22611
22612 @item x
22613 Set the x coordinate of the overlaid video on the main video.
22614 Default value is @code{0}.
22615
22616 @item y
22617 Set the y coordinate of the overlaid video on the main video.
22618 Default value is @code{0}.
22619
22620 @end table
22621
22622 @subsection Examples
22623
22624 @itemize
22625 @item
22626 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
22627 @example
22628 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22629 @end example
22630 @item
22631 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
22632 @example
22633 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22634 @end example
22635
22636 @end itemize
22637
22638 @section pad_opencl
22639
22640 Add paddings to the input image, and place the original input at the
22641 provided @var{x}, @var{y} coordinates.
22642
22643 It accepts the following options:
22644
22645 @table @option
22646 @item width, w
22647 @item height, h
22648 Specify an expression for the size of the output image with the
22649 paddings added. If the value for @var{width} or @var{height} is 0, the
22650 corresponding input size is used for the output.
22651
22652 The @var{width} expression can reference the value set by the
22653 @var{height} expression, and vice versa.
22654
22655 The default value of @var{width} and @var{height} is 0.
22656
22657 @item x
22658 @item y
22659 Specify the offsets to place the input image at within the padded area,
22660 with respect to the top/left border of the output image.
22661
22662 The @var{x} expression can reference the value set by the @var{y}
22663 expression, and vice versa.
22664
22665 The default value of @var{x} and @var{y} is 0.
22666
22667 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
22668 so the input image is centered on the padded area.
22669
22670 @item color
22671 Specify the color of the padded area. For the syntax of this option,
22672 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
22673 manual,ffmpeg-utils}.
22674
22675 @item aspect
22676 Pad to an aspect instead to a resolution.
22677 @end table
22678
22679 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
22680 options are expressions containing the following constants:
22681
22682 @table @option
22683 @item in_w
22684 @item in_h
22685 The input video width and height.
22686
22687 @item iw
22688 @item ih
22689 These are the same as @var{in_w} and @var{in_h}.
22690
22691 @item out_w
22692 @item out_h
22693 The output width and height (the size of the padded area), as
22694 specified by the @var{width} and @var{height} expressions.
22695
22696 @item ow
22697 @item oh
22698 These are the same as @var{out_w} and @var{out_h}.
22699
22700 @item x
22701 @item y
22702 The x and y offsets as specified by the @var{x} and @var{y}
22703 expressions, or NAN if not yet specified.
22704
22705 @item a
22706 same as @var{iw} / @var{ih}
22707
22708 @item sar
22709 input sample aspect ratio
22710
22711 @item dar
22712 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
22713 @end table
22714
22715 @section prewitt_opencl
22716
22717 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
22718
22719 The filter accepts the following option:
22720
22721 @table @option
22722 @item planes
22723 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22724
22725 @item scale
22726 Set value which will be multiplied with filtered result.
22727 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22728
22729 @item delta
22730 Set value which will be added to filtered result.
22731 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22732 @end table
22733
22734 @subsection Example
22735
22736 @itemize
22737 @item
22738 Apply the Prewitt operator with scale set to 2 and delta set to 10.
22739 @example
22740 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
22741 @end example
22742 @end itemize
22743
22744 @anchor{program_opencl}
22745 @section program_opencl
22746
22747 Filter video using an OpenCL program.
22748
22749 @table @option
22750
22751 @item source
22752 OpenCL program source file.
22753
22754 @item kernel
22755 Kernel name in program.
22756
22757 @item inputs
22758 Number of inputs to the filter.  Defaults to 1.
22759
22760 @item size, s
22761 Size of output frames.  Defaults to the same as the first input.
22762
22763 @end table
22764
22765 The @code{program_opencl} filter also supports the @ref{framesync} options.
22766
22767 The program source file must contain a kernel function with the given name,
22768 which will be run once for each plane of the output.  Each run on a plane
22769 gets enqueued as a separate 2D global NDRange with one work-item for each
22770 pixel to be generated.  The global ID offset for each work-item is therefore
22771 the coordinates of a pixel in the destination image.
22772
22773 The kernel function needs to take the following arguments:
22774 @itemize
22775 @item
22776 Destination image, @var{__write_only image2d_t}.
22777
22778 This image will become the output; the kernel should write all of it.
22779 @item
22780 Frame index, @var{unsigned int}.
22781
22782 This is a counter starting from zero and increasing by one for each frame.
22783 @item
22784 Source images, @var{__read_only image2d_t}.
22785
22786 These are the most recent images on each input.  The kernel may read from
22787 them to generate the output, but they can't be written to.
22788 @end itemize
22789
22790 Example programs:
22791
22792 @itemize
22793 @item
22794 Copy the input to the output (output must be the same size as the input).
22795 @verbatim
22796 __kernel void copy(__write_only image2d_t destination,
22797                    unsigned int index,
22798                    __read_only  image2d_t source)
22799 {
22800     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
22801
22802     int2 location = (int2)(get_global_id(0), get_global_id(1));
22803
22804     float4 value = read_imagef(source, sampler, location);
22805
22806     write_imagef(destination, location, value);
22807 }
22808 @end verbatim
22809
22810 @item
22811 Apply a simple transformation, rotating the input by an amount increasing
22812 with the index counter.  Pixel values are linearly interpolated by the
22813 sampler, and the output need not have the same dimensions as the input.
22814 @verbatim
22815 __kernel void rotate_image(__write_only image2d_t dst,
22816                            unsigned int index,
22817                            __read_only  image2d_t src)
22818 {
22819     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22820                                CLK_FILTER_LINEAR);
22821
22822     float angle = (float)index / 100.0f;
22823
22824     float2 dst_dim = convert_float2(get_image_dim(dst));
22825     float2 src_dim = convert_float2(get_image_dim(src));
22826
22827     float2 dst_cen = dst_dim / 2.0f;
22828     float2 src_cen = src_dim / 2.0f;
22829
22830     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
22831
22832     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
22833     float2 src_pos = {
22834         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
22835         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
22836     };
22837     src_pos = src_pos * src_dim / dst_dim;
22838
22839     float2 src_loc = src_pos + src_cen;
22840
22841     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
22842         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
22843         write_imagef(dst, dst_loc, 0.5f);
22844     else
22845         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
22846 }
22847 @end verbatim
22848
22849 @item
22850 Blend two inputs together, with the amount of each input used varying
22851 with the index counter.
22852 @verbatim
22853 __kernel void blend_images(__write_only image2d_t dst,
22854                            unsigned int index,
22855                            __read_only  image2d_t src1,
22856                            __read_only  image2d_t src2)
22857 {
22858     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22859                                CLK_FILTER_LINEAR);
22860
22861     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
22862
22863     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
22864     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
22865     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
22866
22867     float4 val1 = read_imagef(src1, sampler, src1_loc);
22868     float4 val2 = read_imagef(src2, sampler, src2_loc);
22869
22870     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
22871 }
22872 @end verbatim
22873
22874 @end itemize
22875
22876 @section roberts_opencl
22877 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
22878
22879 The filter accepts the following option:
22880
22881 @table @option
22882 @item planes
22883 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22884
22885 @item scale
22886 Set value which will be multiplied with filtered result.
22887 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22888
22889 @item delta
22890 Set value which will be added to filtered result.
22891 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22892 @end table
22893
22894 @subsection Example
22895
22896 @itemize
22897 @item
22898 Apply the Roberts cross operator with scale set to 2 and delta set to 10
22899 @example
22900 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
22901 @end example
22902 @end itemize
22903
22904 @section sobel_opencl
22905
22906 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
22907
22908 The filter accepts the following option:
22909
22910 @table @option
22911 @item planes
22912 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22913
22914 @item scale
22915 Set value which will be multiplied with filtered result.
22916 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22917
22918 @item delta
22919 Set value which will be added to filtered result.
22920 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22921 @end table
22922
22923 @subsection Example
22924
22925 @itemize
22926 @item
22927 Apply sobel operator with scale set to 2 and delta set to 10
22928 @example
22929 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
22930 @end example
22931 @end itemize
22932
22933 @section tonemap_opencl
22934
22935 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
22936
22937 It accepts the following parameters:
22938
22939 @table @option
22940 @item tonemap
22941 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
22942
22943 @item param
22944 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
22945
22946 @item desat
22947 Apply desaturation for highlights that exceed this level of brightness. The
22948 higher the parameter, the more color information will be preserved. This
22949 setting helps prevent unnaturally blown-out colors for super-highlights, by
22950 (smoothly) turning into white instead. This makes images feel more natural,
22951 at the cost of reducing information about out-of-range colors.
22952
22953 The default value is 0.5, and the algorithm here is a little different from
22954 the cpu version tonemap currently. A setting of 0.0 disables this option.
22955
22956 @item threshold
22957 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
22958 is used to detect whether the scene has changed or not. If the distance between
22959 the current frame average brightness and the current running average exceeds
22960 a threshold value, we would re-calculate scene average and peak brightness.
22961 The default value is 0.2.
22962
22963 @item format
22964 Specify the output pixel format.
22965
22966 Currently supported formats are:
22967 @table @var
22968 @item p010
22969 @item nv12
22970 @end table
22971
22972 @item range, r
22973 Set the output color range.
22974
22975 Possible values are:
22976 @table @var
22977 @item tv/mpeg
22978 @item pc/jpeg
22979 @end table
22980
22981 Default is same as input.
22982
22983 @item primaries, p
22984 Set the output color primaries.
22985
22986 Possible values are:
22987 @table @var
22988 @item bt709
22989 @item bt2020
22990 @end table
22991
22992 Default is same as input.
22993
22994 @item transfer, t
22995 Set the output transfer characteristics.
22996
22997 Possible values are:
22998 @table @var
22999 @item bt709
23000 @item bt2020
23001 @end table
23002
23003 Default is bt709.
23004
23005 @item matrix, m
23006 Set the output colorspace matrix.
23007
23008 Possible value are:
23009 @table @var
23010 @item bt709
23011 @item bt2020
23012 @end table
23013
23014 Default is same as input.
23015
23016 @end table
23017
23018 @subsection Example
23019
23020 @itemize
23021 @item
23022 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
23023 @example
23024 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
23025 @end example
23026 @end itemize
23027
23028 @section unsharp_opencl
23029
23030 Sharpen or blur the input video.
23031
23032 It accepts the following parameters:
23033
23034 @table @option
23035 @item luma_msize_x, lx
23036 Set the luma matrix horizontal size.
23037 Range is @code{[1, 23]} and default value is @code{5}.
23038
23039 @item luma_msize_y, ly
23040 Set the luma matrix vertical size.
23041 Range is @code{[1, 23]} and default value is @code{5}.
23042
23043 @item luma_amount, la
23044 Set the luma effect strength.
23045 Range is @code{[-10, 10]} and default value is @code{1.0}.
23046
23047 Negative values will blur the input video, while positive values will
23048 sharpen it, a value of zero will disable the effect.
23049
23050 @item chroma_msize_x, cx
23051 Set the chroma matrix horizontal size.
23052 Range is @code{[1, 23]} and default value is @code{5}.
23053
23054 @item chroma_msize_y, cy
23055 Set the chroma matrix vertical size.
23056 Range is @code{[1, 23]} and default value is @code{5}.
23057
23058 @item chroma_amount, ca
23059 Set the chroma effect strength.
23060 Range is @code{[-10, 10]} and default value is @code{0.0}.
23061
23062 Negative values will blur the input video, while positive values will
23063 sharpen it, a value of zero will disable the effect.
23064
23065 @end table
23066
23067 All parameters are optional and default to the equivalent of the
23068 string '5:5:1.0:5:5:0.0'.
23069
23070 @subsection Examples
23071
23072 @itemize
23073 @item
23074 Apply strong luma sharpen effect:
23075 @example
23076 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
23077 @end example
23078
23079 @item
23080 Apply a strong blur of both luma and chroma parameters:
23081 @example
23082 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
23083 @end example
23084 @end itemize
23085
23086 @section xfade_opencl
23087
23088 Cross fade two videos with custom transition effect by using OpenCL.
23089
23090 It accepts the following options:
23091
23092 @table @option
23093 @item transition
23094 Set one of possible transition effects.
23095
23096 @table @option
23097 @item custom
23098 Select custom transition effect, the actual transition description
23099 will be picked from source and kernel options.
23100
23101 @item fade
23102 @item wipeleft
23103 @item wiperight
23104 @item wipeup
23105 @item wipedown
23106 @item slideleft
23107 @item slideright
23108 @item slideup
23109 @item slidedown
23110
23111 Default transition is fade.
23112 @end table
23113
23114 @item source
23115 OpenCL program source file for custom transition.
23116
23117 @item kernel
23118 Set name of kernel to use for custom transition from program source file.
23119
23120 @item duration
23121 Set duration of video transition.
23122
23123 @item offset
23124 Set time of start of transition relative to first video.
23125 @end table
23126
23127 The program source file must contain a kernel function with the given name,
23128 which will be run once for each plane of the output.  Each run on a plane
23129 gets enqueued as a separate 2D global NDRange with one work-item for each
23130 pixel to be generated.  The global ID offset for each work-item is therefore
23131 the coordinates of a pixel in the destination image.
23132
23133 The kernel function needs to take the following arguments:
23134 @itemize
23135 @item
23136 Destination image, @var{__write_only image2d_t}.
23137
23138 This image will become the output; the kernel should write all of it.
23139
23140 @item
23141 First Source image, @var{__read_only image2d_t}.
23142 Second Source image, @var{__read_only image2d_t}.
23143
23144 These are the most recent images on each input.  The kernel may read from
23145 them to generate the output, but they can't be written to.
23146
23147 @item
23148 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
23149 @end itemize
23150
23151 Example programs:
23152
23153 @itemize
23154 @item
23155 Apply dots curtain transition effect:
23156 @verbatim
23157 __kernel void blend_images(__write_only image2d_t dst,
23158                            __read_only  image2d_t src1,
23159                            __read_only  image2d_t src2,
23160                            float progress)
23161 {
23162     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
23163                                CLK_FILTER_LINEAR);
23164     int2  p = (int2)(get_global_id(0), get_global_id(1));
23165     float2 rp = (float2)(get_global_id(0), get_global_id(1));
23166     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
23167     rp = rp / dim;
23168
23169     float2 dots = (float2)(20.0, 20.0);
23170     float2 center = (float2)(0,0);
23171     float2 unused;
23172
23173     float4 val1 = read_imagef(src1, sampler, p);
23174     float4 val2 = read_imagef(src2, sampler, p);
23175     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
23176
23177     write_imagef(dst, p, next ? val1 : val2);
23178 }
23179 @end verbatim
23180
23181 @end itemize
23182
23183 @c man end OPENCL VIDEO FILTERS
23184
23185 @chapter VAAPI Video Filters
23186 @c man begin VAAPI VIDEO FILTERS
23187
23188 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
23189
23190 To enable compilation of these filters you need to configure FFmpeg with
23191 @code{--enable-vaapi}.
23192
23193 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}
23194
23195 @section tonemap_vaapi
23196
23197 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
23198 It maps the dynamic range of HDR10 content to the SDR content.
23199 It currently only accepts HDR10 as input.
23200
23201 It accepts the following parameters:
23202
23203 @table @option
23204 @item format
23205 Specify the output pixel format.
23206
23207 Currently supported formats are:
23208 @table @var
23209 @item p010
23210 @item nv12
23211 @end table
23212
23213 Default is nv12.
23214
23215 @item primaries, p
23216 Set the output color primaries.
23217
23218 Default is same as input.
23219
23220 @item transfer, t
23221 Set the output transfer characteristics.
23222
23223 Default is bt709.
23224
23225 @item matrix, m
23226 Set the output colorspace matrix.
23227
23228 Default is same as input.
23229
23230 @end table
23231
23232 @subsection Example
23233
23234 @itemize
23235 @item
23236 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
23237 @example
23238 tonemap_vaapi=format=p010:t=bt2020-10
23239 @end example
23240 @end itemize
23241
23242 @c man end VAAPI VIDEO FILTERS
23243
23244 @chapter Video Sources
23245 @c man begin VIDEO SOURCES
23246
23247 Below is a description of the currently available video sources.
23248
23249 @section buffer
23250
23251 Buffer video frames, and make them available to the filter chain.
23252
23253 This source is mainly intended for a programmatic use, in particular
23254 through the interface defined in @file{libavfilter/buffersrc.h}.
23255
23256 It accepts the following parameters:
23257
23258 @table @option
23259
23260 @item video_size
23261 Specify the size (width and height) of the buffered video frames. For the
23262 syntax of this option, check the
23263 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23264
23265 @item width
23266 The input video width.
23267
23268 @item height
23269 The input video height.
23270
23271 @item pix_fmt
23272 A string representing the pixel format of the buffered video frames.
23273 It may be a number corresponding to a pixel format, or a pixel format
23274 name.
23275
23276 @item time_base
23277 Specify the timebase assumed by the timestamps of the buffered frames.
23278
23279 @item frame_rate
23280 Specify the frame rate expected for the video stream.
23281
23282 @item pixel_aspect, sar
23283 The sample (pixel) aspect ratio of the input video.
23284
23285 @item sws_param
23286 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
23287 to the filtergraph description to specify swscale flags for automatically
23288 inserted scalers. See @ref{Filtergraph syntax}.
23289
23290 @item hw_frames_ctx
23291 When using a hardware pixel format, this should be a reference to an
23292 AVHWFramesContext describing input frames.
23293 @end table
23294
23295 For example:
23296 @example
23297 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
23298 @end example
23299
23300 will instruct the source to accept video frames with size 320x240 and
23301 with format "yuv410p", assuming 1/24 as the timestamps timebase and
23302 square pixels (1:1 sample aspect ratio).
23303 Since the pixel format with name "yuv410p" corresponds to the number 6
23304 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
23305 this example corresponds to:
23306 @example
23307 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
23308 @end example
23309
23310 Alternatively, the options can be specified as a flat string, but this
23311 syntax is deprecated:
23312
23313 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
23314
23315 @section cellauto
23316
23317 Create a pattern generated by an elementary cellular automaton.
23318
23319 The initial state of the cellular automaton can be defined through the
23320 @option{filename} and @option{pattern} options. If such options are
23321 not specified an initial state is created randomly.
23322
23323 At each new frame a new row in the video is filled with the result of
23324 the cellular automaton next generation. The behavior when the whole
23325 frame is filled is defined by the @option{scroll} option.
23326
23327 This source accepts the following options:
23328
23329 @table @option
23330 @item filename, f
23331 Read the initial cellular automaton state, i.e. the starting row, from
23332 the specified file.
23333 In the file, each non-whitespace character is considered an alive
23334 cell, a newline will terminate the row, and further characters in the
23335 file will be ignored.
23336
23337 @item pattern, p
23338 Read the initial cellular automaton state, i.e. the starting row, from
23339 the specified string.
23340
23341 Each non-whitespace character in the string is considered an alive
23342 cell, a newline will terminate the row, and further characters in the
23343 string will be ignored.
23344
23345 @item rate, r
23346 Set the video rate, that is the number of frames generated per second.
23347 Default is 25.
23348
23349 @item random_fill_ratio, ratio
23350 Set the random fill ratio for the initial cellular automaton row. It
23351 is a floating point number value ranging from 0 to 1, defaults to
23352 1/PHI.
23353
23354 This option is ignored when a file or a pattern is specified.
23355
23356 @item random_seed, seed
23357 Set the seed for filling randomly the initial row, must be an integer
23358 included between 0 and UINT32_MAX. If not specified, or if explicitly
23359 set to -1, the filter will try to use a good random seed on a best
23360 effort basis.
23361
23362 @item rule
23363 Set the cellular automaton rule, it is a number ranging from 0 to 255.
23364 Default value is 110.
23365
23366 @item size, s
23367 Set the size of the output video. For the syntax of this option, check the
23368 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23369
23370 If @option{filename} or @option{pattern} is specified, the size is set
23371 by default to the width of the specified initial state row, and the
23372 height is set to @var{width} * PHI.
23373
23374 If @option{size} is set, it must contain the width of the specified
23375 pattern string, and the specified pattern will be centered in the
23376 larger row.
23377
23378 If a filename or a pattern string is not specified, the size value
23379 defaults to "320x518" (used for a randomly generated initial state).
23380
23381 @item scroll
23382 If set to 1, scroll the output upward when all the rows in the output
23383 have been already filled. If set to 0, the new generated row will be
23384 written over the top row just after the bottom row is filled.
23385 Defaults to 1.
23386
23387 @item start_full, full
23388 If set to 1, completely fill the output with generated rows before
23389 outputting the first frame.
23390 This is the default behavior, for disabling set the value to 0.
23391
23392 @item stitch
23393 If set to 1, stitch the left and right row edges together.
23394 This is the default behavior, for disabling set the value to 0.
23395 @end table
23396
23397 @subsection Examples
23398
23399 @itemize
23400 @item
23401 Read the initial state from @file{pattern}, and specify an output of
23402 size 200x400.
23403 @example
23404 cellauto=f=pattern:s=200x400
23405 @end example
23406
23407 @item
23408 Generate a random initial row with a width of 200 cells, with a fill
23409 ratio of 2/3:
23410 @example
23411 cellauto=ratio=2/3:s=200x200
23412 @end example
23413
23414 @item
23415 Create a pattern generated by rule 18 starting by a single alive cell
23416 centered on an initial row with width 100:
23417 @example
23418 cellauto=p=@@:s=100x400:full=0:rule=18
23419 @end example
23420
23421 @item
23422 Specify a more elaborated initial pattern:
23423 @example
23424 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
23425 @end example
23426
23427 @end itemize
23428
23429 @anchor{coreimagesrc}
23430 @section coreimagesrc
23431 Video source generated on GPU using Apple's CoreImage API on OSX.
23432
23433 This video source is a specialized version of the @ref{coreimage} video filter.
23434 Use a core image generator at the beginning of the applied filterchain to
23435 generate the content.
23436
23437 The coreimagesrc video source accepts the following options:
23438 @table @option
23439 @item list_generators
23440 List all available generators along with all their respective options as well as
23441 possible minimum and maximum values along with the default values.
23442 @example
23443 list_generators=true
23444 @end example
23445
23446 @item size, s
23447 Specify the size of the sourced video. For the syntax of this option, check the
23448 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23449 The default value is @code{320x240}.
23450
23451 @item rate, r
23452 Specify the frame rate of the sourced video, as the number of frames
23453 generated per second. It has to be a string in the format
23454 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23455 number or a valid video frame rate abbreviation. The default value is
23456 "25".
23457
23458 @item sar
23459 Set the sample aspect ratio of the sourced video.
23460
23461 @item duration, d
23462 Set the duration of the sourced video. See
23463 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23464 for the accepted syntax.
23465
23466 If not specified, or the expressed duration is negative, the video is
23467 supposed to be generated forever.
23468 @end table
23469
23470 Additionally, all options of the @ref{coreimage} video filter are accepted.
23471 A complete filterchain can be used for further processing of the
23472 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
23473 and examples for details.
23474
23475 @subsection Examples
23476
23477 @itemize
23478
23479 @item
23480 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
23481 given as complete and escaped command-line for Apple's standard bash shell:
23482 @example
23483 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
23484 @end example
23485 This example is equivalent to the QRCode example of @ref{coreimage} without the
23486 need for a nullsrc video source.
23487 @end itemize
23488
23489
23490 @section gradients
23491 Generate several gradients.
23492
23493 @table @option
23494 @item size, s
23495 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23496 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23497
23498 @item rate, r
23499 Set frame rate, expressed as number of frames per second. Default
23500 value is "25".
23501
23502 @item c0, c1, c2, c3, c4, c5, c6, c7
23503 Set 8 colors. Default values for colors is to pick random one.
23504
23505 @item x0, y0, y0, y1
23506 Set gradient line source and destination points. If negative or out of range, random ones
23507 are picked.
23508
23509 @item nb_colors, n
23510 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
23511
23512 @item seed
23513 Set seed for picking gradient line points.
23514
23515 @item duration, d
23516 Set the duration of the sourced video. See
23517 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23518 for the accepted syntax.
23519
23520 If not specified, or the expressed duration is negative, the video is
23521 supposed to be generated forever.
23522
23523 @item speed
23524 Set speed of gradients rotation.
23525 @end table
23526
23527
23528 @section mandelbrot
23529
23530 Generate a Mandelbrot set fractal, and progressively zoom towards the
23531 point specified with @var{start_x} and @var{start_y}.
23532
23533 This source accepts the following options:
23534
23535 @table @option
23536
23537 @item end_pts
23538 Set the terminal pts value. Default value is 400.
23539
23540 @item end_scale
23541 Set the terminal scale value.
23542 Must be a floating point value. Default value is 0.3.
23543
23544 @item inner
23545 Set the inner coloring mode, that is the algorithm used to draw the
23546 Mandelbrot fractal internal region.
23547
23548 It shall assume one of the following values:
23549 @table @option
23550 @item black
23551 Set black mode.
23552 @item convergence
23553 Show time until convergence.
23554 @item mincol
23555 Set color based on point closest to the origin of the iterations.
23556 @item period
23557 Set period mode.
23558 @end table
23559
23560 Default value is @var{mincol}.
23561
23562 @item bailout
23563 Set the bailout value. Default value is 10.0.
23564
23565 @item maxiter
23566 Set the maximum of iterations performed by the rendering
23567 algorithm. Default value is 7189.
23568
23569 @item outer
23570 Set outer coloring mode.
23571 It shall assume one of following values:
23572 @table @option
23573 @item iteration_count
23574 Set iteration count mode.
23575 @item normalized_iteration_count
23576 set normalized iteration count mode.
23577 @end table
23578 Default value is @var{normalized_iteration_count}.
23579
23580 @item rate, r
23581 Set frame rate, expressed as number of frames per second. Default
23582 value is "25".
23583
23584 @item size, s
23585 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23586 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23587
23588 @item start_scale
23589 Set the initial scale value. Default value is 3.0.
23590
23591 @item start_x
23592 Set the initial x position. Must be a floating point value between
23593 -100 and 100. Default value is -0.743643887037158704752191506114774.
23594
23595 @item start_y
23596 Set the initial y position. Must be a floating point value between
23597 -100 and 100. Default value is -0.131825904205311970493132056385139.
23598 @end table
23599
23600 @section mptestsrc
23601
23602 Generate various test patterns, as generated by the MPlayer test filter.
23603
23604 The size of the generated video is fixed, and is 256x256.
23605 This source is useful in particular for testing encoding features.
23606
23607 This source accepts the following options:
23608
23609 @table @option
23610
23611 @item rate, r
23612 Specify the frame rate of the sourced video, as the number of frames
23613 generated per second. It has to be a string in the format
23614 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23615 number or a valid video frame rate abbreviation. The default value is
23616 "25".
23617
23618 @item duration, d
23619 Set the duration of the sourced video. See
23620 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23621 for the accepted syntax.
23622
23623 If not specified, or the expressed duration is negative, the video is
23624 supposed to be generated forever.
23625
23626 @item test, t
23627
23628 Set the number or the name of the test to perform. Supported tests are:
23629 @table @option
23630 @item dc_luma
23631 @item dc_chroma
23632 @item freq_luma
23633 @item freq_chroma
23634 @item amp_luma
23635 @item amp_chroma
23636 @item cbp
23637 @item mv
23638 @item ring1
23639 @item ring2
23640 @item all
23641
23642 @item max_frames, m
23643 Set the maximum number of frames generated for each test, default value is 30.
23644
23645 @end table
23646
23647 Default value is "all", which will cycle through the list of all tests.
23648 @end table
23649
23650 Some examples:
23651 @example
23652 mptestsrc=t=dc_luma
23653 @end example
23654
23655 will generate a "dc_luma" test pattern.
23656
23657 @section frei0r_src
23658
23659 Provide a frei0r source.
23660
23661 To enable compilation of this filter you need to install the frei0r
23662 header and configure FFmpeg with @code{--enable-frei0r}.
23663
23664 This source accepts the following parameters:
23665
23666 @table @option
23667
23668 @item size
23669 The size of the video to generate. For the syntax of this option, check the
23670 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23671
23672 @item framerate
23673 The framerate of the generated video. It may be a string of the form
23674 @var{num}/@var{den} or a frame rate abbreviation.
23675
23676 @item filter_name
23677 The name to the frei0r source to load. For more information regarding frei0r and
23678 how to set the parameters, read the @ref{frei0r} section in the video filters
23679 documentation.
23680
23681 @item filter_params
23682 A '|'-separated list of parameters to pass to the frei0r source.
23683
23684 @end table
23685
23686 For example, to generate a frei0r partik0l source with size 200x200
23687 and frame rate 10 which is overlaid on the overlay filter main input:
23688 @example
23689 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
23690 @end example
23691
23692 @section life
23693
23694 Generate a life pattern.
23695
23696 This source is based on a generalization of John Conway's life game.
23697
23698 The sourced input represents a life grid, each pixel represents a cell
23699 which can be in one of two possible states, alive or dead. Every cell
23700 interacts with its eight neighbours, which are the cells that are
23701 horizontally, vertically, or diagonally adjacent.
23702
23703 At each interaction the grid evolves according to the adopted rule,
23704 which specifies the number of neighbor alive cells which will make a
23705 cell stay alive or born. The @option{rule} option allows one to specify
23706 the rule to adopt.
23707
23708 This source accepts the following options:
23709
23710 @table @option
23711 @item filename, f
23712 Set the file from which to read the initial grid state. In the file,
23713 each non-whitespace character is considered an alive cell, and newline
23714 is used to delimit the end of each row.
23715
23716 If this option is not specified, the initial grid is generated
23717 randomly.
23718
23719 @item rate, r
23720 Set the video rate, that is the number of frames generated per second.
23721 Default is 25.
23722
23723 @item random_fill_ratio, ratio
23724 Set the random fill ratio for the initial random grid. It is a
23725 floating point number value ranging from 0 to 1, defaults to 1/PHI.
23726 It is ignored when a file is specified.
23727
23728 @item random_seed, seed
23729 Set the seed for filling the initial random grid, must be an integer
23730 included between 0 and UINT32_MAX. If not specified, or if explicitly
23731 set to -1, the filter will try to use a good random seed on a best
23732 effort basis.
23733
23734 @item rule
23735 Set the life rule.
23736
23737 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
23738 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
23739 @var{NS} specifies the number of alive neighbor cells which make a
23740 live cell stay alive, and @var{NB} the number of alive neighbor cells
23741 which make a dead cell to become alive (i.e. to "born").
23742 "s" and "b" can be used in place of "S" and "B", respectively.
23743
23744 Alternatively a rule can be specified by an 18-bits integer. The 9
23745 high order bits are used to encode the next cell state if it is alive
23746 for each number of neighbor alive cells, the low order bits specify
23747 the rule for "borning" new cells. Higher order bits encode for an
23748 higher number of neighbor cells.
23749 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
23750 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
23751
23752 Default value is "S23/B3", which is the original Conway's game of life
23753 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
23754 cells, and will born a new cell if there are three alive cells around
23755 a dead cell.
23756
23757 @item size, s
23758 Set the size of the output video. For the syntax of this option, check the
23759 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23760
23761 If @option{filename} is specified, the size is set by default to the
23762 same size of the input file. If @option{size} is set, it must contain
23763 the size specified in the input file, and the initial grid defined in
23764 that file is centered in the larger resulting area.
23765
23766 If a filename is not specified, the size value defaults to "320x240"
23767 (used for a randomly generated initial grid).
23768
23769 @item stitch
23770 If set to 1, stitch the left and right grid edges together, and the
23771 top and bottom edges also. Defaults to 1.
23772
23773 @item mold
23774 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
23775 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
23776 value from 0 to 255.
23777
23778 @item life_color
23779 Set the color of living (or new born) cells.
23780
23781 @item death_color
23782 Set the color of dead cells. If @option{mold} is set, this is the first color
23783 used to represent a dead cell.
23784
23785 @item mold_color
23786 Set mold color, for definitely dead and moldy cells.
23787
23788 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
23789 ffmpeg-utils manual,ffmpeg-utils}.
23790 @end table
23791
23792 @subsection Examples
23793
23794 @itemize
23795 @item
23796 Read a grid from @file{pattern}, and center it on a grid of size
23797 300x300 pixels:
23798 @example
23799 life=f=pattern:s=300x300
23800 @end example
23801
23802 @item
23803 Generate a random grid of size 200x200, with a fill ratio of 2/3:
23804 @example
23805 life=ratio=2/3:s=200x200
23806 @end example
23807
23808 @item
23809 Specify a custom rule for evolving a randomly generated grid:
23810 @example
23811 life=rule=S14/B34
23812 @end example
23813
23814 @item
23815 Full example with slow death effect (mold) using @command{ffplay}:
23816 @example
23817 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
23818 @end example
23819 @end itemize
23820
23821 @anchor{allrgb}
23822 @anchor{allyuv}
23823 @anchor{color}
23824 @anchor{haldclutsrc}
23825 @anchor{nullsrc}
23826 @anchor{pal75bars}
23827 @anchor{pal100bars}
23828 @anchor{rgbtestsrc}
23829 @anchor{smptebars}
23830 @anchor{smptehdbars}
23831 @anchor{testsrc}
23832 @anchor{testsrc2}
23833 @anchor{yuvtestsrc}
23834 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
23835
23836 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
23837
23838 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
23839
23840 The @code{color} source provides an uniformly colored input.
23841
23842 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
23843 @ref{haldclut} filter.
23844
23845 The @code{nullsrc} source returns unprocessed video frames. It is
23846 mainly useful to be employed in analysis / debugging tools, or as the
23847 source for filters which ignore the input data.
23848
23849 The @code{pal75bars} source generates a color bars pattern, based on
23850 EBU PAL recommendations with 75% color levels.
23851
23852 The @code{pal100bars} source generates a color bars pattern, based on
23853 EBU PAL recommendations with 100% color levels.
23854
23855 The @code{rgbtestsrc} source generates an RGB test pattern useful for
23856 detecting RGB vs BGR issues. You should see a red, green and blue
23857 stripe from top to bottom.
23858
23859 The @code{smptebars} source generates a color bars pattern, based on
23860 the SMPTE Engineering Guideline EG 1-1990.
23861
23862 The @code{smptehdbars} source generates a color bars pattern, based on
23863 the SMPTE RP 219-2002.
23864
23865 The @code{testsrc} source generates a test video pattern, showing a
23866 color pattern, a scrolling gradient and a timestamp. This is mainly
23867 intended for testing purposes.
23868
23869 The @code{testsrc2} source is similar to testsrc, but supports more
23870 pixel formats instead of just @code{rgb24}. This allows using it as an
23871 input for other tests without requiring a format conversion.
23872
23873 The @code{yuvtestsrc} source generates an YUV test pattern. You should
23874 see a y, cb and cr stripe from top to bottom.
23875
23876 The sources accept the following parameters:
23877
23878 @table @option
23879
23880 @item level
23881 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
23882 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
23883 pixels to be used as identity matrix for 3D lookup tables. Each component is
23884 coded on a @code{1/(N*N)} scale.
23885
23886 @item color, c
23887 Specify the color of the source, only available in the @code{color}
23888 source. For the syntax of this option, check the
23889 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
23890
23891 @item size, s
23892 Specify the size of the sourced video. For the syntax of this option, check the
23893 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23894 The default value is @code{320x240}.
23895
23896 This option is not available with the @code{allrgb}, @code{allyuv}, and
23897 @code{haldclutsrc} filters.
23898
23899 @item rate, r
23900 Specify the frame rate of the sourced video, as the number of frames
23901 generated per second. It has to be a string in the format
23902 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23903 number or a valid video frame rate abbreviation. The default value is
23904 "25".
23905
23906 @item duration, d
23907 Set the duration of the sourced video. See
23908 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23909 for the accepted syntax.
23910
23911 If not specified, or the expressed duration is negative, the video is
23912 supposed to be generated forever.
23913
23914 Since the frame rate is used as time base, all frames including the last one
23915 will have their full duration. If the specified duration is not a multiple
23916 of the frame duration, it will be rounded up.
23917
23918 @item sar
23919 Set the sample aspect ratio of the sourced video.
23920
23921 @item alpha
23922 Specify the alpha (opacity) of the background, only available in the
23923 @code{testsrc2} source. The value must be between 0 (fully transparent) and
23924 255 (fully opaque, the default).
23925
23926 @item decimals, n
23927 Set the number of decimals to show in the timestamp, only available in the
23928 @code{testsrc} source.
23929
23930 The displayed timestamp value will correspond to the original
23931 timestamp value multiplied by the power of 10 of the specified
23932 value. Default value is 0.
23933 @end table
23934
23935 @subsection Examples
23936
23937 @itemize
23938 @item
23939 Generate a video with a duration of 5.3 seconds, with size
23940 176x144 and a frame rate of 10 frames per second:
23941 @example
23942 testsrc=duration=5.3:size=qcif:rate=10
23943 @end example
23944
23945 @item
23946 The following graph description will generate a red source
23947 with an opacity of 0.2, with size "qcif" and a frame rate of 10
23948 frames per second:
23949 @example
23950 color=c=red@@0.2:s=qcif:r=10
23951 @end example
23952
23953 @item
23954 If the input content is to be ignored, @code{nullsrc} can be used. The
23955 following command generates noise in the luminance plane by employing
23956 the @code{geq} filter:
23957 @example
23958 nullsrc=s=256x256, geq=random(1)*255:128:128
23959 @end example
23960 @end itemize
23961
23962 @subsection Commands
23963
23964 The @code{color} source supports the following commands:
23965
23966 @table @option
23967 @item c, color
23968 Set the color of the created image. Accepts the same syntax of the
23969 corresponding @option{color} option.
23970 @end table
23971
23972 @section openclsrc
23973
23974 Generate video using an OpenCL program.
23975
23976 @table @option
23977
23978 @item source
23979 OpenCL program source file.
23980
23981 @item kernel
23982 Kernel name in program.
23983
23984 @item size, s
23985 Size of frames to generate.  This must be set.
23986
23987 @item format
23988 Pixel format to use for the generated frames.  This must be set.
23989
23990 @item rate, r
23991 Number of frames generated every second.  Default value is '25'.
23992
23993 @end table
23994
23995 For details of how the program loading works, see the @ref{program_opencl}
23996 filter.
23997
23998 Example programs:
23999
24000 @itemize
24001 @item
24002 Generate a colour ramp by setting pixel values from the position of the pixel
24003 in the output image.  (Note that this will work with all pixel formats, but
24004 the generated output will not be the same.)
24005 @verbatim
24006 __kernel void ramp(__write_only image2d_t dst,
24007                    unsigned int index)
24008 {
24009     int2 loc = (int2)(get_global_id(0), get_global_id(1));
24010
24011     float4 val;
24012     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
24013
24014     write_imagef(dst, loc, val);
24015 }
24016 @end verbatim
24017
24018 @item
24019 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
24020 @verbatim
24021 __kernel void sierpinski_carpet(__write_only image2d_t dst,
24022                                 unsigned int index)
24023 {
24024     int2 loc = (int2)(get_global_id(0), get_global_id(1));
24025
24026     float4 value = 0.0f;
24027     int x = loc.x + index;
24028     int y = loc.y + index;
24029     while (x > 0 || y > 0) {
24030         if (x % 3 == 1 && y % 3 == 1) {
24031             value = 1.0f;
24032             break;
24033         }
24034         x /= 3;
24035         y /= 3;
24036     }
24037
24038     write_imagef(dst, loc, value);
24039 }
24040 @end verbatim
24041
24042 @end itemize
24043
24044 @section sierpinski
24045
24046 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
24047
24048 This source accepts the following options:
24049
24050 @table @option
24051 @item size, s
24052 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
24053 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
24054
24055 @item rate, r
24056 Set frame rate, expressed as number of frames per second. Default
24057 value is "25".
24058
24059 @item seed
24060 Set seed which is used for random panning.
24061
24062 @item jump
24063 Set max jump for single pan destination. Allowed range is from 1 to 10000.
24064
24065 @item type
24066 Set fractal type, can be default @code{carpet} or @code{triangle}.
24067 @end table
24068
24069 @c man end VIDEO SOURCES
24070
24071 @chapter Video Sinks
24072 @c man begin VIDEO SINKS
24073
24074 Below is a description of the currently available video sinks.
24075
24076 @section buffersink
24077
24078 Buffer video frames, and make them available to the end of the filter
24079 graph.
24080
24081 This sink is mainly intended for programmatic use, in particular
24082 through the interface defined in @file{libavfilter/buffersink.h}
24083 or the options system.
24084
24085 It accepts a pointer to an AVBufferSinkContext structure, which
24086 defines the incoming buffers' formats, to be passed as the opaque
24087 parameter to @code{avfilter_init_filter} for initialization.
24088
24089 @section nullsink
24090
24091 Null video sink: do absolutely nothing with the input video. It is
24092 mainly useful as a template and for use in analysis / debugging
24093 tools.
24094
24095 @c man end VIDEO SINKS
24096
24097 @chapter Multimedia Filters
24098 @c man begin MULTIMEDIA FILTERS
24099
24100 Below is a description of the currently available multimedia filters.
24101
24102 @section abitscope
24103
24104 Convert input audio to a video output, displaying the audio bit scope.
24105
24106 The filter accepts the following options:
24107
24108 @table @option
24109 @item rate, r
24110 Set frame rate, expressed as number of frames per second. Default
24111 value is "25".
24112
24113 @item size, s
24114 Specify the video size for the output. For the syntax of this option, check the
24115 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24116 Default value is @code{1024x256}.
24117
24118 @item colors
24119 Specify list of colors separated by space or by '|' which will be used to
24120 draw channels. Unrecognized or missing colors will be replaced
24121 by white color.
24122 @end table
24123
24124 @section adrawgraph
24125 Draw a graph using input audio metadata.
24126
24127 See @ref{drawgraph}
24128
24129 @section agraphmonitor
24130
24131 See @ref{graphmonitor}.
24132
24133 @section ahistogram
24134
24135 Convert input audio to a video output, displaying the volume histogram.
24136
24137 The filter accepts the following options:
24138
24139 @table @option
24140 @item dmode
24141 Specify how histogram is calculated.
24142
24143 It accepts the following values:
24144 @table @samp
24145 @item single
24146 Use single histogram for all channels.
24147 @item separate
24148 Use separate histogram for each channel.
24149 @end table
24150 Default is @code{single}.
24151
24152 @item rate, r
24153 Set frame rate, expressed as number of frames per second. Default
24154 value is "25".
24155
24156 @item size, s
24157 Specify the video size for the output. For the syntax of this option, check the
24158 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24159 Default value is @code{hd720}.
24160
24161 @item scale
24162 Set display scale.
24163
24164 It accepts the following values:
24165 @table @samp
24166 @item log
24167 logarithmic
24168 @item sqrt
24169 square root
24170 @item cbrt
24171 cubic root
24172 @item lin
24173 linear
24174 @item rlog
24175 reverse logarithmic
24176 @end table
24177 Default is @code{log}.
24178
24179 @item ascale
24180 Set amplitude scale.
24181
24182 It accepts the following values:
24183 @table @samp
24184 @item log
24185 logarithmic
24186 @item lin
24187 linear
24188 @end table
24189 Default is @code{log}.
24190
24191 @item acount
24192 Set how much frames to accumulate in histogram.
24193 Default is 1. Setting this to -1 accumulates all frames.
24194
24195 @item rheight
24196 Set histogram ratio of window height.
24197
24198 @item slide
24199 Set sonogram sliding.
24200
24201 It accepts the following values:
24202 @table @samp
24203 @item replace
24204 replace old rows with new ones.
24205 @item scroll
24206 scroll from top to bottom.
24207 @end table
24208 Default is @code{replace}.
24209 @end table
24210
24211 @section aphasemeter
24212
24213 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
24214 representing mean phase of current audio frame. A video output can also be produced and is
24215 enabled by default. The audio is passed through as first output.
24216
24217 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
24218 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
24219 and @code{1} means channels are in phase.
24220
24221 The filter accepts the following options, all related to its video output:
24222
24223 @table @option
24224 @item rate, r
24225 Set the output frame rate. Default value is @code{25}.
24226
24227 @item size, s
24228 Set the video size for the output. For the syntax of this option, check the
24229 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24230 Default value is @code{800x400}.
24231
24232 @item rc
24233 @item gc
24234 @item bc
24235 Specify the red, green, blue contrast. Default values are @code{2},
24236 @code{7} and @code{1}.
24237 Allowed range is @code{[0, 255]}.
24238
24239 @item mpc
24240 Set color which will be used for drawing median phase. If color is
24241 @code{none} which is default, no median phase value will be drawn.
24242
24243 @item video
24244 Enable video output. Default is enabled.
24245 @end table
24246
24247 @subsection phasing detection
24248
24249 The filter also detects out of phase and mono sequences in stereo streams.
24250 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
24251
24252 The filter accepts the following options for this detection:
24253
24254 @table @option
24255 @item phasing
24256 Enable mono and out of phase detection. Default is disabled.
24257
24258 @item tolerance, t
24259 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
24260 Allowed range is @code{[0, 1]}.
24261
24262 @item angle, a
24263 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
24264 Allowed range is @code{[90, 180]}.
24265
24266 @item duration, d
24267 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
24268 @end table
24269
24270 @subsection Examples
24271
24272 @itemize
24273 @item
24274 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
24275 @example
24276 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
24277 @end example
24278 @end itemize
24279
24280 @section avectorscope
24281
24282 Convert input audio to a video output, representing the audio vector
24283 scope.
24284
24285 The filter is used to measure the difference between channels of stereo
24286 audio stream. A monaural signal, consisting of identical left and right
24287 signal, results in straight vertical line. Any stereo separation is visible
24288 as a deviation from this line, creating a Lissajous figure.
24289 If the straight (or deviation from it) but horizontal line appears this
24290 indicates that the left and right channels are out of phase.
24291
24292 The filter accepts the following options:
24293
24294 @table @option
24295 @item mode, m
24296 Set the vectorscope mode.
24297
24298 Available values are:
24299 @table @samp
24300 @item lissajous
24301 Lissajous rotated by 45 degrees.
24302
24303 @item lissajous_xy
24304 Same as above but not rotated.
24305
24306 @item polar
24307 Shape resembling half of circle.
24308 @end table
24309
24310 Default value is @samp{lissajous}.
24311
24312 @item size, s
24313 Set the video size for the output. For the syntax of this option, check the
24314 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24315 Default value is @code{400x400}.
24316
24317 @item rate, r
24318 Set the output frame rate. Default value is @code{25}.
24319
24320 @item rc
24321 @item gc
24322 @item bc
24323 @item ac
24324 Specify the red, green, blue and alpha contrast. Default values are @code{40},
24325 @code{160}, @code{80} and @code{255}.
24326 Allowed range is @code{[0, 255]}.
24327
24328 @item rf
24329 @item gf
24330 @item bf
24331 @item af
24332 Specify the red, green, blue and alpha fade. Default values are @code{15},
24333 @code{10}, @code{5} and @code{5}.
24334 Allowed range is @code{[0, 255]}.
24335
24336 @item zoom
24337 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
24338 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
24339
24340 @item draw
24341 Set the vectorscope drawing mode.
24342
24343 Available values are:
24344 @table @samp
24345 @item dot
24346 Draw dot for each sample.
24347
24348 @item line
24349 Draw line between previous and current sample.
24350 @end table
24351
24352 Default value is @samp{dot}.
24353
24354 @item scale
24355 Specify amplitude scale of audio samples.
24356
24357 Available values are:
24358 @table @samp
24359 @item lin
24360 Linear.
24361
24362 @item sqrt
24363 Square root.
24364
24365 @item cbrt
24366 Cubic root.
24367
24368 @item log
24369 Logarithmic.
24370 @end table
24371
24372 @item swap
24373 Swap left channel axis with right channel axis.
24374
24375 @item mirror
24376 Mirror axis.
24377
24378 @table @samp
24379 @item none
24380 No mirror.
24381
24382 @item x
24383 Mirror only x axis.
24384
24385 @item y
24386 Mirror only y axis.
24387
24388 @item xy
24389 Mirror both axis.
24390 @end table
24391
24392 @end table
24393
24394 @subsection Examples
24395
24396 @itemize
24397 @item
24398 Complete example using @command{ffplay}:
24399 @example
24400 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24401              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
24402 @end example
24403 @end itemize
24404
24405 @section bench, abench
24406
24407 Benchmark part of a filtergraph.
24408
24409 The filter accepts the following options:
24410
24411 @table @option
24412 @item action
24413 Start or stop a timer.
24414
24415 Available values are:
24416 @table @samp
24417 @item start
24418 Get the current time, set it as frame metadata (using the key
24419 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
24420
24421 @item stop
24422 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
24423 the input frame metadata to get the time difference. Time difference, average,
24424 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
24425 @code{min}) are then printed. The timestamps are expressed in seconds.
24426 @end table
24427 @end table
24428
24429 @subsection Examples
24430
24431 @itemize
24432 @item
24433 Benchmark @ref{selectivecolor} filter:
24434 @example
24435 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
24436 @end example
24437 @end itemize
24438
24439 @section concat
24440
24441 Concatenate audio and video streams, joining them together one after the
24442 other.
24443
24444 The filter works on segments of synchronized video and audio streams. All
24445 segments must have the same number of streams of each type, and that will
24446 also be the number of streams at output.
24447
24448 The filter accepts the following options:
24449
24450 @table @option
24451
24452 @item n
24453 Set the number of segments. Default is 2.
24454
24455 @item v
24456 Set the number of output video streams, that is also the number of video
24457 streams in each segment. Default is 1.
24458
24459 @item a
24460 Set the number of output audio streams, that is also the number of audio
24461 streams in each segment. Default is 0.
24462
24463 @item unsafe
24464 Activate unsafe mode: do not fail if segments have a different format.
24465
24466 @end table
24467
24468 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
24469 @var{a} audio outputs.
24470
24471 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
24472 segment, in the same order as the outputs, then the inputs for the second
24473 segment, etc.
24474
24475 Related streams do not always have exactly the same duration, for various
24476 reasons including codec frame size or sloppy authoring. For that reason,
24477 related synchronized streams (e.g. a video and its audio track) should be
24478 concatenated at once. The concat filter will use the duration of the longest
24479 stream in each segment (except the last one), and if necessary pad shorter
24480 audio streams with silence.
24481
24482 For this filter to work correctly, all segments must start at timestamp 0.
24483
24484 All corresponding streams must have the same parameters in all segments; the
24485 filtering system will automatically select a common pixel format for video
24486 streams, and a common sample format, sample rate and channel layout for
24487 audio streams, but other settings, such as resolution, must be converted
24488 explicitly by the user.
24489
24490 Different frame rates are acceptable but will result in variable frame rate
24491 at output; be sure to configure the output file to handle it.
24492
24493 @subsection Examples
24494
24495 @itemize
24496 @item
24497 Concatenate an opening, an episode and an ending, all in bilingual version
24498 (video in stream 0, audio in streams 1 and 2):
24499 @example
24500 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
24501   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
24502    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
24503   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
24504 @end example
24505
24506 @item
24507 Concatenate two parts, handling audio and video separately, using the
24508 (a)movie sources, and adjusting the resolution:
24509 @example
24510 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
24511 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
24512 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
24513 @end example
24514 Note that a desync will happen at the stitch if the audio and video streams
24515 do not have exactly the same duration in the first file.
24516
24517 @end itemize
24518
24519 @subsection Commands
24520
24521 This filter supports the following commands:
24522 @table @option
24523 @item next
24524 Close the current segment and step to the next one
24525 @end table
24526
24527 @anchor{ebur128}
24528 @section ebur128
24529
24530 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
24531 level. By default, it logs a message at a frequency of 10Hz with the
24532 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
24533 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
24534
24535 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
24536 sample format is double-precision floating point. The input stream will be converted to
24537 this specification, if needed. Users may need to insert aformat and/or aresample filters
24538 after this filter to obtain the original parameters.
24539
24540 The filter also has a video output (see the @var{video} option) with a real
24541 time graph to observe the loudness evolution. The graphic contains the logged
24542 message mentioned above, so it is not printed anymore when this option is set,
24543 unless the verbose logging is set. The main graphing area contains the
24544 short-term loudness (3 seconds of analysis), and the gauge on the right is for
24545 the momentary loudness (400 milliseconds), but can optionally be configured
24546 to instead display short-term loudness (see @var{gauge}).
24547
24548 The green area marks a  +/- 1LU target range around the target loudness
24549 (-23LUFS by default, unless modified through @var{target}).
24550
24551 More information about the Loudness Recommendation EBU R128 on
24552 @url{http://tech.ebu.ch/loudness}.
24553
24554 The filter accepts the following options:
24555
24556 @table @option
24557
24558 @item video
24559 Activate the video output. The audio stream is passed unchanged whether this
24560 option is set or no. The video stream will be the first output stream if
24561 activated. Default is @code{0}.
24562
24563 @item size
24564 Set the video size. This option is for video only. For the syntax of this
24565 option, check the
24566 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24567 Default and minimum resolution is @code{640x480}.
24568
24569 @item meter
24570 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
24571 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
24572 other integer value between this range is allowed.
24573
24574 @item metadata
24575 Set metadata injection. If set to @code{1}, the audio input will be segmented
24576 into 100ms output frames, each of them containing various loudness information
24577 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
24578
24579 Default is @code{0}.
24580
24581 @item framelog
24582 Force the frame logging level.
24583
24584 Available values are:
24585 @table @samp
24586 @item info
24587 information logging level
24588 @item verbose
24589 verbose logging level
24590 @end table
24591
24592 By default, the logging level is set to @var{info}. If the @option{video} or
24593 the @option{metadata} options are set, it switches to @var{verbose}.
24594
24595 @item peak
24596 Set peak mode(s).
24597
24598 Available modes can be cumulated (the option is a @code{flag} type). Possible
24599 values are:
24600 @table @samp
24601 @item none
24602 Disable any peak mode (default).
24603 @item sample
24604 Enable sample-peak mode.
24605
24606 Simple peak mode looking for the higher sample value. It logs a message
24607 for sample-peak (identified by @code{SPK}).
24608 @item true
24609 Enable true-peak mode.
24610
24611 If enabled, the peak lookup is done on an over-sampled version of the input
24612 stream for better peak accuracy. It logs a message for true-peak.
24613 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
24614 This mode requires a build with @code{libswresample}.
24615 @end table
24616
24617 @item dualmono
24618 Treat mono input files as "dual mono". If a mono file is intended for playback
24619 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
24620 If set to @code{true}, this option will compensate for this effect.
24621 Multi-channel input files are not affected by this option.
24622
24623 @item panlaw
24624 Set a specific pan law to be used for the measurement of dual mono files.
24625 This parameter is optional, and has a default value of -3.01dB.
24626
24627 @item target
24628 Set a specific target level (in LUFS) used as relative zero in the visualization.
24629 This parameter is optional and has a default value of -23LUFS as specified
24630 by EBU R128. However, material published online may prefer a level of -16LUFS
24631 (e.g. for use with podcasts or video platforms).
24632
24633 @item gauge
24634 Set the value displayed by the gauge. Valid values are @code{momentary} and s
24635 @code{shortterm}. By default the momentary value will be used, but in certain
24636 scenarios it may be more useful to observe the short term value instead (e.g.
24637 live mixing).
24638
24639 @item scale
24640 Sets the display scale for the loudness. Valid parameters are @code{absolute}
24641 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
24642 video output, not the summary or continuous log output.
24643 @end table
24644
24645 @subsection Examples
24646
24647 @itemize
24648 @item
24649 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
24650 @example
24651 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
24652 @end example
24653
24654 @item
24655 Run an analysis with @command{ffmpeg}:
24656 @example
24657 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
24658 @end example
24659 @end itemize
24660
24661 @section interleave, ainterleave
24662
24663 Temporally interleave frames from several inputs.
24664
24665 @code{interleave} works with video inputs, @code{ainterleave} with audio.
24666
24667 These filters read frames from several inputs and send the oldest
24668 queued frame to the output.
24669
24670 Input streams must have well defined, monotonically increasing frame
24671 timestamp values.
24672
24673 In order to submit one frame to output, these filters need to enqueue
24674 at least one frame for each input, so they cannot work in case one
24675 input is not yet terminated and will not receive incoming frames.
24676
24677 For example consider the case when one input is a @code{select} filter
24678 which always drops input frames. The @code{interleave} filter will keep
24679 reading from that input, but it will never be able to send new frames
24680 to output until the input sends an end-of-stream signal.
24681
24682 Also, depending on inputs synchronization, the filters will drop
24683 frames in case one input receives more frames than the other ones, and
24684 the queue is already filled.
24685
24686 These filters accept the following options:
24687
24688 @table @option
24689 @item nb_inputs, n
24690 Set the number of different inputs, it is 2 by default.
24691
24692 @item duration
24693 How to determine the end-of-stream.
24694
24695 @table @option
24696 @item longest
24697 The duration of the longest input. (default)
24698
24699 @item shortest
24700 The duration of the shortest input.
24701
24702 @item first
24703 The duration of the first input.
24704 @end table
24705
24706 @end table
24707
24708 @subsection Examples
24709
24710 @itemize
24711 @item
24712 Interleave frames belonging to different streams using @command{ffmpeg}:
24713 @example
24714 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
24715 @end example
24716
24717 @item
24718 Add flickering blur effect:
24719 @example
24720 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
24721 @end example
24722 @end itemize
24723
24724 @section metadata, ametadata
24725
24726 Manipulate frame metadata.
24727
24728 This filter accepts the following options:
24729
24730 @table @option
24731 @item mode
24732 Set mode of operation of the filter.
24733
24734 Can be one of the following:
24735
24736 @table @samp
24737 @item select
24738 If both @code{value} and @code{key} is set, select frames
24739 which have such metadata. If only @code{key} is set, select
24740 every frame that has such key in metadata.
24741
24742 @item add
24743 Add new metadata @code{key} and @code{value}. If key is already available
24744 do nothing.
24745
24746 @item modify
24747 Modify value of already present key.
24748
24749 @item delete
24750 If @code{value} is set, delete only keys that have such value.
24751 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
24752 the frame.
24753
24754 @item print
24755 Print key and its value if metadata was found. If @code{key} is not set print all
24756 metadata values available in frame.
24757 @end table
24758
24759 @item key
24760 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
24761
24762 @item value
24763 Set metadata value which will be used. This option is mandatory for
24764 @code{modify} and @code{add} mode.
24765
24766 @item function
24767 Which function to use when comparing metadata value and @code{value}.
24768
24769 Can be one of following:
24770
24771 @table @samp
24772 @item same_str
24773 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
24774
24775 @item starts_with
24776 Values are interpreted as strings, returns true if metadata value starts with
24777 the @code{value} option string.
24778
24779 @item less
24780 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
24781
24782 @item equal
24783 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
24784
24785 @item greater
24786 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
24787
24788 @item expr
24789 Values are interpreted as floats, returns true if expression from option @code{expr}
24790 evaluates to true.
24791
24792 @item ends_with
24793 Values are interpreted as strings, returns true if metadata value ends with
24794 the @code{value} option string.
24795 @end table
24796
24797 @item expr
24798 Set expression which is used when @code{function} is set to @code{expr}.
24799 The expression is evaluated through the eval API and can contain the following
24800 constants:
24801
24802 @table @option
24803 @item VALUE1
24804 Float representation of @code{value} from metadata key.
24805
24806 @item VALUE2
24807 Float representation of @code{value} as supplied by user in @code{value} option.
24808 @end table
24809
24810 @item file
24811 If specified in @code{print} mode, output is written to the named file. Instead of
24812 plain filename any writable url can be specified. Filename ``-'' is a shorthand
24813 for standard output. If @code{file} option is not set, output is written to the log
24814 with AV_LOG_INFO loglevel.
24815
24816 @item direct
24817 Reduces buffering in print mode when output is written to a URL set using @var{file}.
24818
24819 @end table
24820
24821 @subsection Examples
24822
24823 @itemize
24824 @item
24825 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
24826 between 0 and 1.
24827 @example
24828 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
24829 @end example
24830 @item
24831 Print silencedetect output to file @file{metadata.txt}.
24832 @example
24833 silencedetect,ametadata=mode=print:file=metadata.txt
24834 @end example
24835 @item
24836 Direct all metadata to a pipe with file descriptor 4.
24837 @example
24838 metadata=mode=print:file='pipe\:4'
24839 @end example
24840 @end itemize
24841
24842 @section perms, aperms
24843
24844 Set read/write permissions for the output frames.
24845
24846 These filters are mainly aimed at developers to test direct path in the
24847 following filter in the filtergraph.
24848
24849 The filters accept the following options:
24850
24851 @table @option
24852 @item mode
24853 Select the permissions mode.
24854
24855 It accepts the following values:
24856 @table @samp
24857 @item none
24858 Do nothing. This is the default.
24859 @item ro
24860 Set all the output frames read-only.
24861 @item rw
24862 Set all the output frames directly writable.
24863 @item toggle
24864 Make the frame read-only if writable, and writable if read-only.
24865 @item random
24866 Set each output frame read-only or writable randomly.
24867 @end table
24868
24869 @item seed
24870 Set the seed for the @var{random} mode, must be an integer included between
24871 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
24872 @code{-1}, the filter will try to use a good random seed on a best effort
24873 basis.
24874 @end table
24875
24876 Note: in case of auto-inserted filter between the permission filter and the
24877 following one, the permission might not be received as expected in that
24878 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
24879 perms/aperms filter can avoid this problem.
24880
24881 @section realtime, arealtime
24882
24883 Slow down filtering to match real time approximately.
24884
24885 These filters will pause the filtering for a variable amount of time to
24886 match the output rate with the input timestamps.
24887 They are similar to the @option{re} option to @code{ffmpeg}.
24888
24889 They accept the following options:
24890
24891 @table @option
24892 @item limit
24893 Time limit for the pauses. Any pause longer than that will be considered
24894 a timestamp discontinuity and reset the timer. Default is 2 seconds.
24895 @item speed
24896 Speed factor for processing. The value must be a float larger than zero.
24897 Values larger than 1.0 will result in faster than realtime processing,
24898 smaller will slow processing down. The @var{limit} is automatically adapted
24899 accordingly. Default is 1.0.
24900
24901 A processing speed faster than what is possible without these filters cannot
24902 be achieved.
24903 @end table
24904
24905 @anchor{select}
24906 @section select, aselect
24907
24908 Select frames to pass in output.
24909
24910 This filter accepts the following options:
24911
24912 @table @option
24913
24914 @item expr, e
24915 Set expression, which is evaluated for each input frame.
24916
24917 If the expression is evaluated to zero, the frame is discarded.
24918
24919 If the evaluation result is negative or NaN, the frame is sent to the
24920 first output; otherwise it is sent to the output with index
24921 @code{ceil(val)-1}, assuming that the input index starts from 0.
24922
24923 For example a value of @code{1.2} corresponds to the output with index
24924 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
24925
24926 @item outputs, n
24927 Set the number of outputs. The output to which to send the selected
24928 frame is based on the result of the evaluation. Default value is 1.
24929 @end table
24930
24931 The expression can contain the following constants:
24932
24933 @table @option
24934 @item n
24935 The (sequential) number of the filtered frame, starting from 0.
24936
24937 @item selected_n
24938 The (sequential) number of the selected frame, starting from 0.
24939
24940 @item prev_selected_n
24941 The sequential number of the last selected frame. It's NAN if undefined.
24942
24943 @item TB
24944 The timebase of the input timestamps.
24945
24946 @item pts
24947 The PTS (Presentation TimeStamp) of the filtered video frame,
24948 expressed in @var{TB} units. It's NAN if undefined.
24949
24950 @item t
24951 The PTS of the filtered video frame,
24952 expressed in seconds. It's NAN if undefined.
24953
24954 @item prev_pts
24955 The PTS of the previously filtered video frame. It's NAN if undefined.
24956
24957 @item prev_selected_pts
24958 The PTS of the last previously filtered video frame. It's NAN if undefined.
24959
24960 @item prev_selected_t
24961 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
24962
24963 @item start_pts
24964 The PTS of the first video frame in the video. It's NAN if undefined.
24965
24966 @item start_t
24967 The time of the first video frame in the video. It's NAN if undefined.
24968
24969 @item pict_type @emph{(video only)}
24970 The type of the filtered frame. It can assume one of the following
24971 values:
24972 @table @option
24973 @item I
24974 @item P
24975 @item B
24976 @item S
24977 @item SI
24978 @item SP
24979 @item BI
24980 @end table
24981
24982 @item interlace_type @emph{(video only)}
24983 The frame interlace type. It can assume one of the following values:
24984 @table @option
24985 @item PROGRESSIVE
24986 The frame is progressive (not interlaced).
24987 @item TOPFIRST
24988 The frame is top-field-first.
24989 @item BOTTOMFIRST
24990 The frame is bottom-field-first.
24991 @end table
24992
24993 @item consumed_sample_n @emph{(audio only)}
24994 the number of selected samples before the current frame
24995
24996 @item samples_n @emph{(audio only)}
24997 the number of samples in the current frame
24998
24999 @item sample_rate @emph{(audio only)}
25000 the input sample rate
25001
25002 @item key
25003 This is 1 if the filtered frame is a key-frame, 0 otherwise.
25004
25005 @item pos
25006 the position in the file of the filtered frame, -1 if the information
25007 is not available (e.g. for synthetic video)
25008
25009 @item scene @emph{(video only)}
25010 value between 0 and 1 to indicate a new scene; a low value reflects a low
25011 probability for the current frame to introduce a new scene, while a higher
25012 value means the current frame is more likely to be one (see the example below)
25013
25014 @item concatdec_select
25015 The concat demuxer can select only part of a concat input file by setting an
25016 inpoint and an outpoint, but the output packets may not be entirely contained
25017 in the selected interval. By using this variable, it is possible to skip frames
25018 generated by the concat demuxer which are not exactly contained in the selected
25019 interval.
25020
25021 This works by comparing the frame pts against the @var{lavf.concat.start_time}
25022 and the @var{lavf.concat.duration} packet metadata values which are also
25023 present in the decoded frames.
25024
25025 The @var{concatdec_select} variable is -1 if the frame pts is at least
25026 start_time and either the duration metadata is missing or the frame pts is less
25027 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
25028 missing.
25029
25030 That basically means that an input frame is selected if its pts is within the
25031 interval set by the concat demuxer.
25032
25033 @end table
25034
25035 The default value of the select expression is "1".
25036
25037 @subsection Examples
25038
25039 @itemize
25040 @item
25041 Select all frames in input:
25042 @example
25043 select
25044 @end example
25045
25046 The example above is the same as:
25047 @example
25048 select=1
25049 @end example
25050
25051 @item
25052 Skip all frames:
25053 @example
25054 select=0
25055 @end example
25056
25057 @item
25058 Select only I-frames:
25059 @example
25060 select='eq(pict_type\,I)'
25061 @end example
25062
25063 @item
25064 Select one frame every 100:
25065 @example
25066 select='not(mod(n\,100))'
25067 @end example
25068
25069 @item
25070 Select only frames contained in the 10-20 time interval:
25071 @example
25072 select=between(t\,10\,20)
25073 @end example
25074
25075 @item
25076 Select only I-frames contained in the 10-20 time interval:
25077 @example
25078 select=between(t\,10\,20)*eq(pict_type\,I)
25079 @end example
25080
25081 @item
25082 Select frames with a minimum distance of 10 seconds:
25083 @example
25084 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
25085 @end example
25086
25087 @item
25088 Use aselect to select only audio frames with samples number > 100:
25089 @example
25090 aselect='gt(samples_n\,100)'
25091 @end example
25092
25093 @item
25094 Create a mosaic of the first scenes:
25095 @example
25096 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
25097 @end example
25098
25099 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
25100 choice.
25101
25102 @item
25103 Send even and odd frames to separate outputs, and compose them:
25104 @example
25105 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
25106 @end example
25107
25108 @item
25109 Select useful frames from an ffconcat file which is using inpoints and
25110 outpoints but where the source files are not intra frame only.
25111 @example
25112 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
25113 @end example
25114 @end itemize
25115
25116 @section sendcmd, asendcmd
25117
25118 Send commands to filters in the filtergraph.
25119
25120 These filters read commands to be sent to other filters in the
25121 filtergraph.
25122
25123 @code{sendcmd} must be inserted between two video filters,
25124 @code{asendcmd} must be inserted between two audio filters, but apart
25125 from that they act the same way.
25126
25127 The specification of commands can be provided in the filter arguments
25128 with the @var{commands} option, or in a file specified by the
25129 @var{filename} option.
25130
25131 These filters accept the following options:
25132 @table @option
25133 @item commands, c
25134 Set the commands to be read and sent to the other filters.
25135 @item filename, f
25136 Set the filename of the commands to be read and sent to the other
25137 filters.
25138 @end table
25139
25140 @subsection Commands syntax
25141
25142 A commands description consists of a sequence of interval
25143 specifications, comprising a list of commands to be executed when a
25144 particular event related to that interval occurs. The occurring event
25145 is typically the current frame time entering or leaving a given time
25146 interval.
25147
25148 An interval is specified by the following syntax:
25149 @example
25150 @var{START}[-@var{END}] @var{COMMANDS};
25151 @end example
25152
25153 The time interval is specified by the @var{START} and @var{END} times.
25154 @var{END} is optional and defaults to the maximum time.
25155
25156 The current frame time is considered within the specified interval if
25157 it is included in the interval [@var{START}, @var{END}), that is when
25158 the time is greater or equal to @var{START} and is lesser than
25159 @var{END}.
25160
25161 @var{COMMANDS} consists of a sequence of one or more command
25162 specifications, separated by ",", relating to that interval.  The
25163 syntax of a command specification is given by:
25164 @example
25165 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
25166 @end example
25167
25168 @var{FLAGS} is optional and specifies the type of events relating to
25169 the time interval which enable sending the specified command, and must
25170 be a non-null sequence of identifier flags separated by "+" or "|" and
25171 enclosed between "[" and "]".
25172
25173 The following flags are recognized:
25174 @table @option
25175 @item enter
25176 The command is sent when the current frame timestamp enters the
25177 specified interval. In other words, the command is sent when the
25178 previous frame timestamp was not in the given interval, and the
25179 current is.
25180
25181 @item leave
25182 The command is sent when the current frame timestamp leaves the
25183 specified interval. In other words, the command is sent when the
25184 previous frame timestamp was in the given interval, and the
25185 current is not.
25186
25187 @item expr
25188 The command @var{ARG} is interpreted as expression and result of
25189 expression is passed as @var{ARG}.
25190
25191 The expression is evaluated through the eval API and can contain the following
25192 constants:
25193
25194 @table @option
25195 @item POS
25196 Original position in the file of the frame, or undefined if undefined
25197 for the current frame.
25198
25199 @item PTS
25200 The presentation timestamp in input.
25201
25202 @item N
25203 The count of the input frame for video or audio, starting from 0.
25204
25205 @item T
25206 The time in seconds of the current frame.
25207
25208 @item TS
25209 The start time in seconds of the current command interval.
25210
25211 @item TE
25212 The end time in seconds of the current command interval.
25213
25214 @item TI
25215 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
25216 @end table
25217
25218 @end table
25219
25220 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
25221 assumed.
25222
25223 @var{TARGET} specifies the target of the command, usually the name of
25224 the filter class or a specific filter instance name.
25225
25226 @var{COMMAND} specifies the name of the command for the target filter.
25227
25228 @var{ARG} is optional and specifies the optional list of argument for
25229 the given @var{COMMAND}.
25230
25231 Between one interval specification and another, whitespaces, or
25232 sequences of characters starting with @code{#} until the end of line,
25233 are ignored and can be used to annotate comments.
25234
25235 A simplified BNF description of the commands specification syntax
25236 follows:
25237 @example
25238 @var{COMMAND_FLAG}  ::= "enter" | "leave"
25239 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
25240 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
25241 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
25242 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
25243 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
25244 @end example
25245
25246 @subsection Examples
25247
25248 @itemize
25249 @item
25250 Specify audio tempo change at second 4:
25251 @example
25252 asendcmd=c='4.0 atempo tempo 1.5',atempo
25253 @end example
25254
25255 @item
25256 Target a specific filter instance:
25257 @example
25258 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
25259 @end example
25260
25261 @item
25262 Specify a list of drawtext and hue commands in a file.
25263 @example
25264 # show text in the interval 5-10
25265 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
25266          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
25267
25268 # desaturate the image in the interval 15-20
25269 15.0-20.0 [enter] hue s 0,
25270           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
25271           [leave] hue s 1,
25272           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
25273
25274 # apply an exponential saturation fade-out effect, starting from time 25
25275 25 [enter] hue s exp(25-t)
25276 @end example
25277
25278 A filtergraph allowing to read and process the above command list
25279 stored in a file @file{test.cmd}, can be specified with:
25280 @example
25281 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
25282 @end example
25283 @end itemize
25284
25285 @anchor{setpts}
25286 @section setpts, asetpts
25287
25288 Change the PTS (presentation timestamp) of the input frames.
25289
25290 @code{setpts} works on video frames, @code{asetpts} on audio frames.
25291
25292 This filter accepts the following options:
25293
25294 @table @option
25295
25296 @item expr
25297 The expression which is evaluated for each frame to construct its timestamp.
25298
25299 @end table
25300
25301 The expression is evaluated through the eval API and can contain the following
25302 constants:
25303
25304 @table @option
25305 @item FRAME_RATE, FR
25306 frame rate, only defined for constant frame-rate video
25307
25308 @item PTS
25309 The presentation timestamp in input
25310
25311 @item N
25312 The count of the input frame for video or the number of consumed samples,
25313 not including the current frame for audio, starting from 0.
25314
25315 @item NB_CONSUMED_SAMPLES
25316 The number of consumed samples, not including the current frame (only
25317 audio)
25318
25319 @item NB_SAMPLES, S
25320 The number of samples in the current frame (only audio)
25321
25322 @item SAMPLE_RATE, SR
25323 The audio sample rate.
25324
25325 @item STARTPTS
25326 The PTS of the first frame.
25327
25328 @item STARTT
25329 the time in seconds of the first frame
25330
25331 @item INTERLACED
25332 State whether the current frame is interlaced.
25333
25334 @item T
25335 the time in seconds of the current frame
25336
25337 @item POS
25338 original position in the file of the frame, or undefined if undefined
25339 for the current frame
25340
25341 @item PREV_INPTS
25342 The previous input PTS.
25343
25344 @item PREV_INT
25345 previous input time in seconds
25346
25347 @item PREV_OUTPTS
25348 The previous output PTS.
25349
25350 @item PREV_OUTT
25351 previous output time in seconds
25352
25353 @item RTCTIME
25354 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
25355 instead.
25356
25357 @item RTCSTART
25358 The wallclock (RTC) time at the start of the movie in microseconds.
25359
25360 @item TB
25361 The timebase of the input timestamps.
25362
25363 @end table
25364
25365 @subsection Examples
25366
25367 @itemize
25368 @item
25369 Start counting PTS from zero
25370 @example
25371 setpts=PTS-STARTPTS
25372 @end example
25373
25374 @item
25375 Apply fast motion effect:
25376 @example
25377 setpts=0.5*PTS
25378 @end example
25379
25380 @item
25381 Apply slow motion effect:
25382 @example
25383 setpts=2.0*PTS
25384 @end example
25385
25386 @item
25387 Set fixed rate of 25 frames per second:
25388 @example
25389 setpts=N/(25*TB)
25390 @end example
25391
25392 @item
25393 Set fixed rate 25 fps with some jitter:
25394 @example
25395 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
25396 @end example
25397
25398 @item
25399 Apply an offset of 10 seconds to the input PTS:
25400 @example
25401 setpts=PTS+10/TB
25402 @end example
25403
25404 @item
25405 Generate timestamps from a "live source" and rebase onto the current timebase:
25406 @example
25407 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
25408 @end example
25409
25410 @item
25411 Generate timestamps by counting samples:
25412 @example
25413 asetpts=N/SR/TB
25414 @end example
25415
25416 @end itemize
25417
25418 @section setrange
25419
25420 Force color range for the output video frame.
25421
25422 The @code{setrange} filter marks the color range property for the
25423 output frames. It does not change the input frame, but only sets the
25424 corresponding property, which affects how the frame is treated by
25425 following filters.
25426
25427 The filter accepts the following options:
25428
25429 @table @option
25430
25431 @item range
25432 Available values are:
25433
25434 @table @samp
25435 @item auto
25436 Keep the same color range property.
25437
25438 @item unspecified, unknown
25439 Set the color range as unspecified.
25440
25441 @item limited, tv, mpeg
25442 Set the color range as limited.
25443
25444 @item full, pc, jpeg
25445 Set the color range as full.
25446 @end table
25447 @end table
25448
25449 @section settb, asettb
25450
25451 Set the timebase to use for the output frames timestamps.
25452 It is mainly useful for testing timebase configuration.
25453
25454 It accepts the following parameters:
25455
25456 @table @option
25457
25458 @item expr, tb
25459 The expression which is evaluated into the output timebase.
25460
25461 @end table
25462
25463 The value for @option{tb} is an arithmetic expression representing a
25464 rational. The expression can contain the constants "AVTB" (the default
25465 timebase), "intb" (the input timebase) and "sr" (the sample rate,
25466 audio only). Default value is "intb".
25467
25468 @subsection Examples
25469
25470 @itemize
25471 @item
25472 Set the timebase to 1/25:
25473 @example
25474 settb=expr=1/25
25475 @end example
25476
25477 @item
25478 Set the timebase to 1/10:
25479 @example
25480 settb=expr=0.1
25481 @end example
25482
25483 @item
25484 Set the timebase to 1001/1000:
25485 @example
25486 settb=1+0.001
25487 @end example
25488
25489 @item
25490 Set the timebase to 2*intb:
25491 @example
25492 settb=2*intb
25493 @end example
25494
25495 @item
25496 Set the default timebase value:
25497 @example
25498 settb=AVTB
25499 @end example
25500 @end itemize
25501
25502 @section showcqt
25503 Convert input audio to a video output representing frequency spectrum
25504 logarithmically using Brown-Puckette constant Q transform algorithm with
25505 direct frequency domain coefficient calculation (but the transform itself
25506 is not really constant Q, instead the Q factor is actually variable/clamped),
25507 with musical tone scale, from E0 to D#10.
25508
25509 The filter accepts the following options:
25510
25511 @table @option
25512 @item size, s
25513 Specify the video size for the output. It must be even. For the syntax of this option,
25514 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25515 Default value is @code{1920x1080}.
25516
25517 @item fps, rate, r
25518 Set the output frame rate. Default value is @code{25}.
25519
25520 @item bar_h
25521 Set the bargraph height. It must be even. Default value is @code{-1} which
25522 computes the bargraph height automatically.
25523
25524 @item axis_h
25525 Set the axis height. It must be even. Default value is @code{-1} which computes
25526 the axis height automatically.
25527
25528 @item sono_h
25529 Set the sonogram height. It must be even. Default value is @code{-1} which
25530 computes the sonogram height automatically.
25531
25532 @item fullhd
25533 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
25534 instead. Default value is @code{1}.
25535
25536 @item sono_v, volume
25537 Specify the sonogram volume expression. It can contain variables:
25538 @table @option
25539 @item bar_v
25540 the @var{bar_v} evaluated expression
25541 @item frequency, freq, f
25542 the frequency where it is evaluated
25543 @item timeclamp, tc
25544 the value of @var{timeclamp} option
25545 @end table
25546 and functions:
25547 @table @option
25548 @item a_weighting(f)
25549 A-weighting of equal loudness
25550 @item b_weighting(f)
25551 B-weighting of equal loudness
25552 @item c_weighting(f)
25553 C-weighting of equal loudness.
25554 @end table
25555 Default value is @code{16}.
25556
25557 @item bar_v, volume2
25558 Specify the bargraph volume expression. It can contain variables:
25559 @table @option
25560 @item sono_v
25561 the @var{sono_v} evaluated expression
25562 @item frequency, freq, f
25563 the frequency where it is evaluated
25564 @item timeclamp, tc
25565 the value of @var{timeclamp} option
25566 @end table
25567 and functions:
25568 @table @option
25569 @item a_weighting(f)
25570 A-weighting of equal loudness
25571 @item b_weighting(f)
25572 B-weighting of equal loudness
25573 @item c_weighting(f)
25574 C-weighting of equal loudness.
25575 @end table
25576 Default value is @code{sono_v}.
25577
25578 @item sono_g, gamma
25579 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
25580 higher gamma makes the spectrum having more range. Default value is @code{3}.
25581 Acceptable range is @code{[1, 7]}.
25582
25583 @item bar_g, gamma2
25584 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
25585 @code{[1, 7]}.
25586
25587 @item bar_t
25588 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
25589 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
25590
25591 @item timeclamp, tc
25592 Specify the transform timeclamp. At low frequency, there is trade-off between
25593 accuracy in time domain and frequency domain. If timeclamp is lower,
25594 event in time domain is represented more accurately (such as fast bass drum),
25595 otherwise event in frequency domain is represented more accurately
25596 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
25597
25598 @item attack
25599 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
25600 limits future samples by applying asymmetric windowing in time domain, useful
25601 when low latency is required. Accepted range is @code{[0, 1]}.
25602
25603 @item basefreq
25604 Specify the transform base frequency. Default value is @code{20.01523126408007475},
25605 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
25606
25607 @item endfreq
25608 Specify the transform end frequency. Default value is @code{20495.59681441799654},
25609 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
25610
25611 @item coeffclamp
25612 This option is deprecated and ignored.
25613
25614 @item tlength
25615 Specify the transform length in time domain. Use this option to control accuracy
25616 trade-off between time domain and frequency domain at every frequency sample.
25617 It can contain variables:
25618 @table @option
25619 @item frequency, freq, f
25620 the frequency where it is evaluated
25621 @item timeclamp, tc
25622 the value of @var{timeclamp} option.
25623 @end table
25624 Default value is @code{384*tc/(384+tc*f)}.
25625
25626 @item count
25627 Specify the transform count for every video frame. Default value is @code{6}.
25628 Acceptable range is @code{[1, 30]}.
25629
25630 @item fcount
25631 Specify the transform count for every single pixel. Default value is @code{0},
25632 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
25633
25634 @item fontfile
25635 Specify font file for use with freetype to draw the axis. If not specified,
25636 use embedded font. Note that drawing with font file or embedded font is not
25637 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
25638 option instead.
25639
25640 @item font
25641 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
25642 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
25643 escaping.
25644
25645 @item fontcolor
25646 Specify font color expression. This is arithmetic expression that should return
25647 integer value 0xRRGGBB. It can contain variables:
25648 @table @option
25649 @item frequency, freq, f
25650 the frequency where it is evaluated
25651 @item timeclamp, tc
25652 the value of @var{timeclamp} option
25653 @end table
25654 and functions:
25655 @table @option
25656 @item midi(f)
25657 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
25658 @item r(x), g(x), b(x)
25659 red, green, and blue value of intensity x.
25660 @end table
25661 Default value is @code{st(0, (midi(f)-59.5)/12);
25662 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
25663 r(1-ld(1)) + b(ld(1))}.
25664
25665 @item axisfile
25666 Specify image file to draw the axis. This option override @var{fontfile} and
25667 @var{fontcolor} option.
25668
25669 @item axis, text
25670 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
25671 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
25672 Default value is @code{1}.
25673
25674 @item csp
25675 Set colorspace. The accepted values are:
25676 @table @samp
25677 @item unspecified
25678 Unspecified (default)
25679
25680 @item bt709
25681 BT.709
25682
25683 @item fcc
25684 FCC
25685
25686 @item bt470bg
25687 BT.470BG or BT.601-6 625
25688
25689 @item smpte170m
25690 SMPTE-170M or BT.601-6 525
25691
25692 @item smpte240m
25693 SMPTE-240M
25694
25695 @item bt2020ncl
25696 BT.2020 with non-constant luminance
25697
25698 @end table
25699
25700 @item cscheme
25701 Set spectrogram color scheme. This is list of floating point values with format
25702 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
25703 The default is @code{1|0.5|0|0|0.5|1}.
25704
25705 @end table
25706
25707 @subsection Examples
25708
25709 @itemize
25710 @item
25711 Playing audio while showing the spectrum:
25712 @example
25713 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
25714 @end example
25715
25716 @item
25717 Same as above, but with frame rate 30 fps:
25718 @example
25719 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
25720 @end example
25721
25722 @item
25723 Playing at 1280x720:
25724 @example
25725 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
25726 @end example
25727
25728 @item
25729 Disable sonogram display:
25730 @example
25731 sono_h=0
25732 @end example
25733
25734 @item
25735 A1 and its harmonics: A1, A2, (near)E3, A3:
25736 @example
25737 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),
25738                  asplit[a][out1]; [a] showcqt [out0]'
25739 @end example
25740
25741 @item
25742 Same as above, but with more accuracy in frequency domain:
25743 @example
25744 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),
25745                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
25746 @end example
25747
25748 @item
25749 Custom volume:
25750 @example
25751 bar_v=10:sono_v=bar_v*a_weighting(f)
25752 @end example
25753
25754 @item
25755 Custom gamma, now spectrum is linear to the amplitude.
25756 @example
25757 bar_g=2:sono_g=2
25758 @end example
25759
25760 @item
25761 Custom tlength equation:
25762 @example
25763 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)))'
25764 @end example
25765
25766 @item
25767 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
25768 @example
25769 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
25770 @end example
25771
25772 @item
25773 Custom font using fontconfig:
25774 @example
25775 font='Courier New,Monospace,mono|bold'
25776 @end example
25777
25778 @item
25779 Custom frequency range with custom axis using image file:
25780 @example
25781 axisfile=myaxis.png:basefreq=40:endfreq=10000
25782 @end example
25783 @end itemize
25784
25785 @section showfreqs
25786
25787 Convert input audio to video output representing the audio power spectrum.
25788 Audio amplitude is on Y-axis while frequency is on X-axis.
25789
25790 The filter accepts the following options:
25791
25792 @table @option
25793 @item size, s
25794 Specify size of video. For the syntax of this option, check the
25795 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25796 Default is @code{1024x512}.
25797
25798 @item mode
25799 Set display mode.
25800 This set how each frequency bin will be represented.
25801
25802 It accepts the following values:
25803 @table @samp
25804 @item line
25805 @item bar
25806 @item dot
25807 @end table
25808 Default is @code{bar}.
25809
25810 @item ascale
25811 Set amplitude scale.
25812
25813 It accepts the following values:
25814 @table @samp
25815 @item lin
25816 Linear scale.
25817
25818 @item sqrt
25819 Square root scale.
25820
25821 @item cbrt
25822 Cubic root scale.
25823
25824 @item log
25825 Logarithmic scale.
25826 @end table
25827 Default is @code{log}.
25828
25829 @item fscale
25830 Set frequency scale.
25831
25832 It accepts the following values:
25833 @table @samp
25834 @item lin
25835 Linear scale.
25836
25837 @item log
25838 Logarithmic scale.
25839
25840 @item rlog
25841 Reverse logarithmic scale.
25842 @end table
25843 Default is @code{lin}.
25844
25845 @item win_size
25846 Set window size. Allowed range is from 16 to 65536.
25847
25848 Default is @code{2048}
25849
25850 @item win_func
25851 Set windowing function.
25852
25853 It accepts the following values:
25854 @table @samp
25855 @item rect
25856 @item bartlett
25857 @item hanning
25858 @item hamming
25859 @item blackman
25860 @item welch
25861 @item flattop
25862 @item bharris
25863 @item bnuttall
25864 @item bhann
25865 @item sine
25866 @item nuttall
25867 @item lanczos
25868 @item gauss
25869 @item tukey
25870 @item dolph
25871 @item cauchy
25872 @item parzen
25873 @item poisson
25874 @item bohman
25875 @end table
25876 Default is @code{hanning}.
25877
25878 @item overlap
25879 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25880 which means optimal overlap for selected window function will be picked.
25881
25882 @item averaging
25883 Set time averaging. Setting this to 0 will display current maximal peaks.
25884 Default is @code{1}, which means time averaging is disabled.
25885
25886 @item colors
25887 Specify list of colors separated by space or by '|' which will be used to
25888 draw channel frequencies. Unrecognized or missing colors will be replaced
25889 by white color.
25890
25891 @item cmode
25892 Set channel display mode.
25893
25894 It accepts the following values:
25895 @table @samp
25896 @item combined
25897 @item separate
25898 @end table
25899 Default is @code{combined}.
25900
25901 @item minamp
25902 Set minimum amplitude used in @code{log} amplitude scaler.
25903
25904 @item data
25905 Set data display mode.
25906
25907 It accepts the following values:
25908 @table @samp
25909 @item magnitude
25910 @item phase
25911 @item delay
25912 @end table
25913 Default is @code{magnitude}.
25914 @end table
25915
25916 @section showspatial
25917
25918 Convert stereo input audio to a video output, representing the spatial relationship
25919 between two channels.
25920
25921 The filter accepts the following options:
25922
25923 @table @option
25924 @item size, s
25925 Specify the video size for the output. For the syntax of this option, check the
25926 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25927 Default value is @code{512x512}.
25928
25929 @item win_size
25930 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
25931
25932 @item win_func
25933 Set window function.
25934
25935 It accepts the following values:
25936 @table @samp
25937 @item rect
25938 @item bartlett
25939 @item hann
25940 @item hanning
25941 @item hamming
25942 @item blackman
25943 @item welch
25944 @item flattop
25945 @item bharris
25946 @item bnuttall
25947 @item bhann
25948 @item sine
25949 @item nuttall
25950 @item lanczos
25951 @item gauss
25952 @item tukey
25953 @item dolph
25954 @item cauchy
25955 @item parzen
25956 @item poisson
25957 @item bohman
25958 @end table
25959
25960 Default value is @code{hann}.
25961
25962 @item overlap
25963 Set ratio of overlap window. Default value is @code{0.5}.
25964 When value is @code{1} overlap is set to recommended size for specific
25965 window function currently used.
25966 @end table
25967
25968 @anchor{showspectrum}
25969 @section showspectrum
25970
25971 Convert input audio to a video output, representing the audio frequency
25972 spectrum.
25973
25974 The filter accepts the following options:
25975
25976 @table @option
25977 @item size, s
25978 Specify the video size for the output. For the syntax of this option, check the
25979 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25980 Default value is @code{640x512}.
25981
25982 @item slide
25983 Specify how the spectrum should slide along the window.
25984
25985 It accepts the following values:
25986 @table @samp
25987 @item replace
25988 the samples start again on the left when they reach the right
25989 @item scroll
25990 the samples scroll from right to left
25991 @item fullframe
25992 frames are only produced when the samples reach the right
25993 @item rscroll
25994 the samples scroll from left to right
25995 @end table
25996
25997 Default value is @code{replace}.
25998
25999 @item mode
26000 Specify display mode.
26001
26002 It accepts the following values:
26003 @table @samp
26004 @item combined
26005 all channels are displayed in the same row
26006 @item separate
26007 all channels are displayed in separate rows
26008 @end table
26009
26010 Default value is @samp{combined}.
26011
26012 @item color
26013 Specify display color mode.
26014
26015 It accepts the following values:
26016 @table @samp
26017 @item channel
26018 each channel is displayed in a separate color
26019 @item intensity
26020 each channel is displayed using the same color scheme
26021 @item rainbow
26022 each channel is displayed using the rainbow color scheme
26023 @item moreland
26024 each channel is displayed using the moreland color scheme
26025 @item nebulae
26026 each channel is displayed using the nebulae color scheme
26027 @item fire
26028 each channel is displayed using the fire color scheme
26029 @item fiery
26030 each channel is displayed using the fiery color scheme
26031 @item fruit
26032 each channel is displayed using the fruit color scheme
26033 @item cool
26034 each channel is displayed using the cool color scheme
26035 @item magma
26036 each channel is displayed using the magma color scheme
26037 @item green
26038 each channel is displayed using the green color scheme
26039 @item viridis
26040 each channel is displayed using the viridis color scheme
26041 @item plasma
26042 each channel is displayed using the plasma color scheme
26043 @item cividis
26044 each channel is displayed using the cividis color scheme
26045 @item terrain
26046 each channel is displayed using the terrain color scheme
26047 @end table
26048
26049 Default value is @samp{channel}.
26050
26051 @item scale
26052 Specify scale used for calculating intensity color values.
26053
26054 It accepts the following values:
26055 @table @samp
26056 @item lin
26057 linear
26058 @item sqrt
26059 square root, default
26060 @item cbrt
26061 cubic root
26062 @item log
26063 logarithmic
26064 @item 4thrt
26065 4th root
26066 @item 5thrt
26067 5th root
26068 @end table
26069
26070 Default value is @samp{sqrt}.
26071
26072 @item fscale
26073 Specify frequency scale.
26074
26075 It accepts the following values:
26076 @table @samp
26077 @item lin
26078 linear
26079 @item log
26080 logarithmic
26081 @end table
26082
26083 Default value is @samp{lin}.
26084
26085 @item saturation
26086 Set saturation modifier for displayed colors. Negative values provide
26087 alternative color scheme. @code{0} is no saturation at all.
26088 Saturation must be in [-10.0, 10.0] range.
26089 Default value is @code{1}.
26090
26091 @item win_func
26092 Set window function.
26093
26094 It accepts the following values:
26095 @table @samp
26096 @item rect
26097 @item bartlett
26098 @item hann
26099 @item hanning
26100 @item hamming
26101 @item blackman
26102 @item welch
26103 @item flattop
26104 @item bharris
26105 @item bnuttall
26106 @item bhann
26107 @item sine
26108 @item nuttall
26109 @item lanczos
26110 @item gauss
26111 @item tukey
26112 @item dolph
26113 @item cauchy
26114 @item parzen
26115 @item poisson
26116 @item bohman
26117 @end table
26118
26119 Default value is @code{hann}.
26120
26121 @item orientation
26122 Set orientation of time vs frequency axis. Can be @code{vertical} or
26123 @code{horizontal}. Default is @code{vertical}.
26124
26125 @item overlap
26126 Set ratio of overlap window. Default value is @code{0}.
26127 When value is @code{1} overlap is set to recommended size for specific
26128 window function currently used.
26129
26130 @item gain
26131 Set scale gain for calculating intensity color values.
26132 Default value is @code{1}.
26133
26134 @item data
26135 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
26136
26137 @item rotation
26138 Set color rotation, must be in [-1.0, 1.0] range.
26139 Default value is @code{0}.
26140
26141 @item start
26142 Set start frequency from which to display spectrogram. Default is @code{0}.
26143
26144 @item stop
26145 Set stop frequency to which to display spectrogram. Default is @code{0}.
26146
26147 @item fps
26148 Set upper frame rate limit. Default is @code{auto}, unlimited.
26149
26150 @item legend
26151 Draw time and frequency axes and legends. Default is disabled.
26152 @end table
26153
26154 The usage is very similar to the showwaves filter; see the examples in that
26155 section.
26156
26157 @subsection Examples
26158
26159 @itemize
26160 @item
26161 Large window with logarithmic color scaling:
26162 @example
26163 showspectrum=s=1280x480:scale=log
26164 @end example
26165
26166 @item
26167 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
26168 @example
26169 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
26170              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
26171 @end example
26172 @end itemize
26173
26174 @section showspectrumpic
26175
26176 Convert input audio to a single video frame, representing the audio frequency
26177 spectrum.
26178
26179 The filter accepts the following options:
26180
26181 @table @option
26182 @item size, s
26183 Specify the video size for the output. For the syntax of this option, check the
26184 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26185 Default value is @code{4096x2048}.
26186
26187 @item mode
26188 Specify display mode.
26189
26190 It accepts the following values:
26191 @table @samp
26192 @item combined
26193 all channels are displayed in the same row
26194 @item separate
26195 all channels are displayed in separate rows
26196 @end table
26197 Default value is @samp{combined}.
26198
26199 @item color
26200 Specify display color mode.
26201
26202 It accepts the following values:
26203 @table @samp
26204 @item channel
26205 each channel is displayed in a separate color
26206 @item intensity
26207 each channel is displayed using the same color scheme
26208 @item rainbow
26209 each channel is displayed using the rainbow color scheme
26210 @item moreland
26211 each channel is displayed using the moreland color scheme
26212 @item nebulae
26213 each channel is displayed using the nebulae color scheme
26214 @item fire
26215 each channel is displayed using the fire color scheme
26216 @item fiery
26217 each channel is displayed using the fiery color scheme
26218 @item fruit
26219 each channel is displayed using the fruit color scheme
26220 @item cool
26221 each channel is displayed using the cool color scheme
26222 @item magma
26223 each channel is displayed using the magma color scheme
26224 @item green
26225 each channel is displayed using the green color scheme
26226 @item viridis
26227 each channel is displayed using the viridis color scheme
26228 @item plasma
26229 each channel is displayed using the plasma color scheme
26230 @item cividis
26231 each channel is displayed using the cividis color scheme
26232 @item terrain
26233 each channel is displayed using the terrain color scheme
26234 @end table
26235 Default value is @samp{intensity}.
26236
26237 @item scale
26238 Specify scale used for calculating intensity color values.
26239
26240 It accepts the following values:
26241 @table @samp
26242 @item lin
26243 linear
26244 @item sqrt
26245 square root, default
26246 @item cbrt
26247 cubic root
26248 @item log
26249 logarithmic
26250 @item 4thrt
26251 4th root
26252 @item 5thrt
26253 5th root
26254 @end table
26255 Default value is @samp{log}.
26256
26257 @item fscale
26258 Specify frequency scale.
26259
26260 It accepts the following values:
26261 @table @samp
26262 @item lin
26263 linear
26264 @item log
26265 logarithmic
26266 @end table
26267
26268 Default value is @samp{lin}.
26269
26270 @item saturation
26271 Set saturation modifier for displayed colors. Negative values provide
26272 alternative color scheme. @code{0} is no saturation at all.
26273 Saturation must be in [-10.0, 10.0] range.
26274 Default value is @code{1}.
26275
26276 @item win_func
26277 Set window function.
26278
26279 It accepts the following values:
26280 @table @samp
26281 @item rect
26282 @item bartlett
26283 @item hann
26284 @item hanning
26285 @item hamming
26286 @item blackman
26287 @item welch
26288 @item flattop
26289 @item bharris
26290 @item bnuttall
26291 @item bhann
26292 @item sine
26293 @item nuttall
26294 @item lanczos
26295 @item gauss
26296 @item tukey
26297 @item dolph
26298 @item cauchy
26299 @item parzen
26300 @item poisson
26301 @item bohman
26302 @end table
26303 Default value is @code{hann}.
26304
26305 @item orientation
26306 Set orientation of time vs frequency axis. Can be @code{vertical} or
26307 @code{horizontal}. Default is @code{vertical}.
26308
26309 @item gain
26310 Set scale gain for calculating intensity color values.
26311 Default value is @code{1}.
26312
26313 @item legend
26314 Draw time and frequency axes and legends. Default is enabled.
26315
26316 @item rotation
26317 Set color rotation, must be in [-1.0, 1.0] range.
26318 Default value is @code{0}.
26319
26320 @item start
26321 Set start frequency from which to display spectrogram. Default is @code{0}.
26322
26323 @item stop
26324 Set stop frequency to which to display spectrogram. Default is @code{0}.
26325 @end table
26326
26327 @subsection Examples
26328
26329 @itemize
26330 @item
26331 Extract an audio spectrogram of a whole audio track
26332 in a 1024x1024 picture using @command{ffmpeg}:
26333 @example
26334 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
26335 @end example
26336 @end itemize
26337
26338 @section showvolume
26339
26340 Convert input audio volume to a video output.
26341
26342 The filter accepts the following options:
26343
26344 @table @option
26345 @item rate, r
26346 Set video rate.
26347
26348 @item b
26349 Set border width, allowed range is [0, 5]. Default is 1.
26350
26351 @item w
26352 Set channel width, allowed range is [80, 8192]. Default is 400.
26353
26354 @item h
26355 Set channel height, allowed range is [1, 900]. Default is 20.
26356
26357 @item f
26358 Set fade, allowed range is [0, 1]. Default is 0.95.
26359
26360 @item c
26361 Set volume color expression.
26362
26363 The expression can use the following variables:
26364
26365 @table @option
26366 @item VOLUME
26367 Current max volume of channel in dB.
26368
26369 @item PEAK
26370 Current peak.
26371
26372 @item CHANNEL
26373 Current channel number, starting from 0.
26374 @end table
26375
26376 @item t
26377 If set, displays channel names. Default is enabled.
26378
26379 @item v
26380 If set, displays volume values. Default is enabled.
26381
26382 @item o
26383 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
26384 default is @code{h}.
26385
26386 @item s
26387 Set step size, allowed range is [0, 5]. Default is 0, which means
26388 step is disabled.
26389
26390 @item p
26391 Set background opacity, allowed range is [0, 1]. Default is 0.
26392
26393 @item m
26394 Set metering mode, can be peak: @code{p} or rms: @code{r},
26395 default is @code{p}.
26396
26397 @item ds
26398 Set display scale, can be linear: @code{lin} or log: @code{log},
26399 default is @code{lin}.
26400
26401 @item dm
26402 In second.
26403 If set to > 0., display a line for the max level
26404 in the previous seconds.
26405 default is disabled: @code{0.}
26406
26407 @item dmc
26408 The color of the max line. Use when @code{dm} option is set to > 0.
26409 default is: @code{orange}
26410 @end table
26411
26412 @section showwaves
26413
26414 Convert input audio to a video output, representing the samples waves.
26415
26416 The filter accepts the following options:
26417
26418 @table @option
26419 @item size, s
26420 Specify the video size for the output. For the syntax of this option, check the
26421 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26422 Default value is @code{600x240}.
26423
26424 @item mode
26425 Set display mode.
26426
26427 Available values are:
26428 @table @samp
26429 @item point
26430 Draw a point for each sample.
26431
26432 @item line
26433 Draw a vertical line for each sample.
26434
26435 @item p2p
26436 Draw a point for each sample and a line between them.
26437
26438 @item cline
26439 Draw a centered vertical line for each sample.
26440 @end table
26441
26442 Default value is @code{point}.
26443
26444 @item n
26445 Set the number of samples which are printed on the same column. A
26446 larger value will decrease the frame rate. Must be a positive
26447 integer. This option can be set only if the value for @var{rate}
26448 is not explicitly specified.
26449
26450 @item rate, r
26451 Set the (approximate) output frame rate. This is done by setting the
26452 option @var{n}. Default value is "25".
26453
26454 @item split_channels
26455 Set if channels should be drawn separately or overlap. Default value is 0.
26456
26457 @item colors
26458 Set colors separated by '|' which are going to be used for drawing of each channel.
26459
26460 @item scale
26461 Set amplitude scale.
26462
26463 Available values are:
26464 @table @samp
26465 @item lin
26466 Linear.
26467
26468 @item log
26469 Logarithmic.
26470
26471 @item sqrt
26472 Square root.
26473
26474 @item cbrt
26475 Cubic root.
26476 @end table
26477
26478 Default is linear.
26479
26480 @item draw
26481 Set the draw mode. This is mostly useful to set for high @var{n}.
26482
26483 Available values are:
26484 @table @samp
26485 @item scale
26486 Scale pixel values for each drawn sample.
26487
26488 @item full
26489 Draw every sample directly.
26490 @end table
26491
26492 Default value is @code{scale}.
26493 @end table
26494
26495 @subsection Examples
26496
26497 @itemize
26498 @item
26499 Output the input file audio and the corresponding video representation
26500 at the same time:
26501 @example
26502 amovie=a.mp3,asplit[out0],showwaves[out1]
26503 @end example
26504
26505 @item
26506 Create a synthetic signal and show it with showwaves, forcing a
26507 frame rate of 30 frames per second:
26508 @example
26509 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
26510 @end example
26511 @end itemize
26512
26513 @section showwavespic
26514
26515 Convert input audio to a single video frame, representing the samples waves.
26516
26517 The filter accepts the following options:
26518
26519 @table @option
26520 @item size, s
26521 Specify the video size for the output. For the syntax of this option, check the
26522 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26523 Default value is @code{600x240}.
26524
26525 @item split_channels
26526 Set if channels should be drawn separately or overlap. Default value is 0.
26527
26528 @item colors
26529 Set colors separated by '|' which are going to be used for drawing of each channel.
26530
26531 @item scale
26532 Set amplitude scale.
26533
26534 Available values are:
26535 @table @samp
26536 @item lin
26537 Linear.
26538
26539 @item log
26540 Logarithmic.
26541
26542 @item sqrt
26543 Square root.
26544
26545 @item cbrt
26546 Cubic root.
26547 @end table
26548
26549 Default is linear.
26550
26551 @item draw
26552 Set the draw mode.
26553
26554 Available values are:
26555 @table @samp
26556 @item scale
26557 Scale pixel values for each drawn sample.
26558
26559 @item full
26560 Draw every sample directly.
26561 @end table
26562
26563 Default value is @code{scale}.
26564
26565 @item filter
26566 Set the filter mode.
26567
26568 Available values are:
26569 @table @samp
26570 @item average
26571 Use average samples values for each drawn sample.
26572
26573 @item peak
26574 Use peak samples values for each drawn sample.
26575 @end table
26576
26577 Default value is @code{average}.
26578 @end table
26579
26580 @subsection Examples
26581
26582 @itemize
26583 @item
26584 Extract a channel split representation of the wave form of a whole audio track
26585 in a 1024x800 picture using @command{ffmpeg}:
26586 @example
26587 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
26588 @end example
26589 @end itemize
26590
26591 @section sidedata, asidedata
26592
26593 Delete frame side data, or select frames based on it.
26594
26595 This filter accepts the following options:
26596
26597 @table @option
26598 @item mode
26599 Set mode of operation of the filter.
26600
26601 Can be one of the following:
26602
26603 @table @samp
26604 @item select
26605 Select every frame with side data of @code{type}.
26606
26607 @item delete
26608 Delete side data of @code{type}. If @code{type} is not set, delete all side
26609 data in the frame.
26610
26611 @end table
26612
26613 @item type
26614 Set side data type used with all modes. Must be set for @code{select} mode. For
26615 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
26616 in @file{libavutil/frame.h}. For example, to choose
26617 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
26618
26619 @end table
26620
26621 @section spectrumsynth
26622
26623 Synthesize audio from 2 input video spectrums, first input stream represents
26624 magnitude across time and second represents phase across time.
26625 The filter will transform from frequency domain as displayed in videos back
26626 to time domain as presented in audio output.
26627
26628 This filter is primarily created for reversing processed @ref{showspectrum}
26629 filter outputs, but can synthesize sound from other spectrograms too.
26630 But in such case results are going to be poor if the phase data is not
26631 available, because in such cases phase data need to be recreated, usually
26632 it's just recreated from random noise.
26633 For best results use gray only output (@code{channel} color mode in
26634 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
26635 @code{lin} scale for phase video. To produce phase, for 2nd video, use
26636 @code{data} option. Inputs videos should generally use @code{fullframe}
26637 slide mode as that saves resources needed for decoding video.
26638
26639 The filter accepts the following options:
26640
26641 @table @option
26642 @item sample_rate
26643 Specify sample rate of output audio, the sample rate of audio from which
26644 spectrum was generated may differ.
26645
26646 @item channels
26647 Set number of channels represented in input video spectrums.
26648
26649 @item scale
26650 Set scale which was used when generating magnitude input spectrum.
26651 Can be @code{lin} or @code{log}. Default is @code{log}.
26652
26653 @item slide
26654 Set slide which was used when generating inputs spectrums.
26655 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
26656 Default is @code{fullframe}.
26657
26658 @item win_func
26659 Set window function used for resynthesis.
26660
26661 @item overlap
26662 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
26663 which means optimal overlap for selected window function will be picked.
26664
26665 @item orientation
26666 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
26667 Default is @code{vertical}.
26668 @end table
26669
26670 @subsection Examples
26671
26672 @itemize
26673 @item
26674 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
26675 then resynthesize videos back to audio with spectrumsynth:
26676 @example
26677 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
26678 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
26679 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
26680 @end example
26681 @end itemize
26682
26683 @section split, asplit
26684
26685 Split input into several identical outputs.
26686
26687 @code{asplit} works with audio input, @code{split} with video.
26688
26689 The filter accepts a single parameter which specifies the number of outputs. If
26690 unspecified, it defaults to 2.
26691
26692 @subsection Examples
26693
26694 @itemize
26695 @item
26696 Create two separate outputs from the same input:
26697 @example
26698 [in] split [out0][out1]
26699 @end example
26700
26701 @item
26702 To create 3 or more outputs, you need to specify the number of
26703 outputs, like in:
26704 @example
26705 [in] asplit=3 [out0][out1][out2]
26706 @end example
26707
26708 @item
26709 Create two separate outputs from the same input, one cropped and
26710 one padded:
26711 @example
26712 [in] split [splitout1][splitout2];
26713 [splitout1] crop=100:100:0:0    [cropout];
26714 [splitout2] pad=200:200:100:100 [padout];
26715 @end example
26716
26717 @item
26718 Create 5 copies of the input audio with @command{ffmpeg}:
26719 @example
26720 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
26721 @end example
26722 @end itemize
26723
26724 @section zmq, azmq
26725
26726 Receive commands sent through a libzmq client, and forward them to
26727 filters in the filtergraph.
26728
26729 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
26730 must be inserted between two video filters, @code{azmq} between two
26731 audio filters. Both are capable to send messages to any filter type.
26732
26733 To enable these filters you need to install the libzmq library and
26734 headers and configure FFmpeg with @code{--enable-libzmq}.
26735
26736 For more information about libzmq see:
26737 @url{http://www.zeromq.org/}
26738
26739 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
26740 receives messages sent through a network interface defined by the
26741 @option{bind_address} (or the abbreviation "@option{b}") option.
26742 Default value of this option is @file{tcp://localhost:5555}. You may
26743 want to alter this value to your needs, but do not forget to escape any
26744 ':' signs (see @ref{filtergraph escaping}).
26745
26746 The received message must be in the form:
26747 @example
26748 @var{TARGET} @var{COMMAND} [@var{ARG}]
26749 @end example
26750
26751 @var{TARGET} specifies the target of the command, usually the name of
26752 the filter class or a specific filter instance name. The default
26753 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
26754 but you can override this by using the @samp{filter_name@@id} syntax
26755 (see @ref{Filtergraph syntax}).
26756
26757 @var{COMMAND} specifies the name of the command for the target filter.
26758
26759 @var{ARG} is optional and specifies the optional argument list for the
26760 given @var{COMMAND}.
26761
26762 Upon reception, the message is processed and the corresponding command
26763 is injected into the filtergraph. Depending on the result, the filter
26764 will send a reply to the client, adopting the format:
26765 @example
26766 @var{ERROR_CODE} @var{ERROR_REASON}
26767 @var{MESSAGE}
26768 @end example
26769
26770 @var{MESSAGE} is optional.
26771
26772 @subsection Examples
26773
26774 Look at @file{tools/zmqsend} for an example of a zmq client which can
26775 be used to send commands processed by these filters.
26776
26777 Consider the following filtergraph generated by @command{ffplay}.
26778 In this example the last overlay filter has an instance name. All other
26779 filters will have default instance names.
26780
26781 @example
26782 ffplay -dumpgraph 1 -f lavfi "
26783 color=s=100x100:c=red  [l];
26784 color=s=100x100:c=blue [r];
26785 nullsrc=s=200x100, zmq [bg];
26786 [bg][l]   overlay     [bg+l];
26787 [bg+l][r] overlay@@my=x=100 "
26788 @end example
26789
26790 To change the color of the left side of the video, the following
26791 command can be used:
26792 @example
26793 echo Parsed_color_0 c yellow | tools/zmqsend
26794 @end example
26795
26796 To change the right side:
26797 @example
26798 echo Parsed_color_1 c pink | tools/zmqsend
26799 @end example
26800
26801 To change the position of the right side:
26802 @example
26803 echo overlay@@my x 150 | tools/zmqsend
26804 @end example
26805
26806
26807 @c man end MULTIMEDIA FILTERS
26808
26809 @chapter Multimedia Sources
26810 @c man begin MULTIMEDIA SOURCES
26811
26812 Below is a description of the currently available multimedia sources.
26813
26814 @section amovie
26815
26816 This is the same as @ref{movie} source, except it selects an audio
26817 stream by default.
26818
26819 @anchor{movie}
26820 @section movie
26821
26822 Read audio and/or video stream(s) from a movie container.
26823
26824 It accepts the following parameters:
26825
26826 @table @option
26827 @item filename
26828 The name of the resource to read (not necessarily a file; it can also be a
26829 device or a stream accessed through some protocol).
26830
26831 @item format_name, f
26832 Specifies the format assumed for the movie to read, and can be either
26833 the name of a container or an input device. If not specified, the
26834 format is guessed from @var{movie_name} or by probing.
26835
26836 @item seek_point, sp
26837 Specifies the seek point in seconds. The frames will be output
26838 starting from this seek point. The parameter is evaluated with
26839 @code{av_strtod}, so the numerical value may be suffixed by an IS
26840 postfix. The default value is "0".
26841
26842 @item streams, s
26843 Specifies the streams to read. Several streams can be specified,
26844 separated by "+". The source will then have as many outputs, in the
26845 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
26846 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
26847 respectively the default (best suited) video and audio stream. Default
26848 is "dv", or "da" if the filter is called as "amovie".
26849
26850 @item stream_index, si
26851 Specifies the index of the video stream to read. If the value is -1,
26852 the most suitable video stream will be automatically selected. The default
26853 value is "-1". Deprecated. If the filter is called "amovie", it will select
26854 audio instead of video.
26855
26856 @item loop
26857 Specifies how many times to read the stream in sequence.
26858 If the value is 0, the stream will be looped infinitely.
26859 Default value is "1".
26860
26861 Note that when the movie is looped the source timestamps are not
26862 changed, so it will generate non monotonically increasing timestamps.
26863
26864 @item discontinuity
26865 Specifies the time difference between frames above which the point is
26866 considered a timestamp discontinuity which is removed by adjusting the later
26867 timestamps.
26868 @end table
26869
26870 It allows overlaying a second video on top of the main input of
26871 a filtergraph, as shown in this graph:
26872 @example
26873 input -----------> deltapts0 --> overlay --> output
26874                                     ^
26875                                     |
26876 movie --> scale--> deltapts1 -------+
26877 @end example
26878 @subsection Examples
26879
26880 @itemize
26881 @item
26882 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
26883 on top of the input labelled "in":
26884 @example
26885 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
26886 [in] setpts=PTS-STARTPTS [main];
26887 [main][over] overlay=16:16 [out]
26888 @end example
26889
26890 @item
26891 Read from a video4linux2 device, and overlay it on top of the input
26892 labelled "in":
26893 @example
26894 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
26895 [in] setpts=PTS-STARTPTS [main];
26896 [main][over] overlay=16:16 [out]
26897 @end example
26898
26899 @item
26900 Read the first video stream and the audio stream with id 0x81 from
26901 dvd.vob; the video is connected to the pad named "video" and the audio is
26902 connected to the pad named "audio":
26903 @example
26904 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
26905 @end example
26906 @end itemize
26907
26908 @subsection Commands
26909
26910 Both movie and amovie support the following commands:
26911 @table @option
26912 @item seek
26913 Perform seek using "av_seek_frame".
26914 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
26915 @itemize
26916 @item
26917 @var{stream_index}: If stream_index is -1, a default
26918 stream is selected, and @var{timestamp} is automatically converted
26919 from AV_TIME_BASE units to the stream specific time_base.
26920 @item
26921 @var{timestamp}: Timestamp in AVStream.time_base units
26922 or, if no stream is specified, in AV_TIME_BASE units.
26923 @item
26924 @var{flags}: Flags which select direction and seeking mode.
26925 @end itemize
26926
26927 @item get_duration
26928 Get movie duration in AV_TIME_BASE units.
26929
26930 @end table
26931
26932 @c man end MULTIMEDIA SOURCES