]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter: add colorize filter
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{id}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program optionally followed by "@@@var{id}".
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{commands}
316 @chapter Changing options at runtime with a command
317
318 Some options can be changed during the operation of the filter using
319 a command. These options are marked 'T' on the output of
320 @command{ffmpeg} @option{-h filter=<name of filter>}.
321 The name of the command is the name of the option and the argument is
322 the new value.
323
324 @anchor{framesync}
325 @chapter Options for filters with several inputs (framesync)
326 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
327
328 Some filters with several inputs support a common set of options.
329 These options can only be set by name, not with the short notation.
330
331 @table @option
332 @item eof_action
333 The action to take when EOF is encountered on the secondary input; it accepts
334 one of the following values:
335
336 @table @option
337 @item repeat
338 Repeat the last frame (the default).
339 @item endall
340 End both streams.
341 @item pass
342 Pass the main input through.
343 @end table
344
345 @item shortest
346 If set to 1, force the output to terminate when the shortest input
347 terminates. Default value is 0.
348
349 @item repeatlast
350 If set to 1, force the filter to extend the last frame of secondary streams
351 until the end of the primary stream. A value of 0 disables this behavior.
352 Default value is 1.
353 @end table
354
355 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
356
357 @chapter Audio Filters
358 @c man begin AUDIO FILTERS
359
360 When you configure your FFmpeg build, you can disable any of the
361 existing filters using @code{--disable-filters}.
362 The configure output will show the audio filters included in your
363 build.
364
365 Below is a description of the currently available audio filters.
366
367 @section acompressor
368
369 A compressor is mainly used to reduce the dynamic range of a signal.
370 Especially modern music is mostly compressed at a high ratio to
371 improve the overall loudness. It's done to get the highest attention
372 of a listener, "fatten" the sound and bring more "power" to the track.
373 If a signal is compressed too much it may sound dull or "dead"
374 afterwards or it may start to "pump" (which could be a powerful effect
375 but can also destroy a track completely).
376 The right compression is the key to reach a professional sound and is
377 the high art of mixing and mastering. Because of its complex settings
378 it may take a long time to get the right feeling for this kind of effect.
379
380 Compression is done by detecting the volume above a chosen level
381 @code{threshold} and dividing it by the factor set with @code{ratio}.
382 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
383 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
384 the signal would cause distortion of the waveform the reduction can be
385 levelled over the time. This is done by setting "Attack" and "Release".
386 @code{attack} determines how long the signal has to rise above the threshold
387 before any reduction will occur and @code{release} sets the time the signal
388 has to fall below the threshold to reduce the reduction again. Shorter signals
389 than the chosen attack time will be left untouched.
390 The overall reduction of the signal can be made up afterwards with the
391 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
392 raising the makeup to this level results in a signal twice as loud than the
393 source. To gain a softer entry in the compression the @code{knee} flattens the
394 hard edge at the threshold in the range of the chosen decibels.
395
396 The filter accepts the following options:
397
398 @table @option
399 @item level_in
400 Set input gain. Default is 1. Range is between 0.015625 and 64.
401
402 @item mode
403 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
404 Default is @code{downward}.
405
406 @item threshold
407 If a signal of stream rises above this level it will affect the gain
408 reduction.
409 By default it is 0.125. Range is between 0.00097563 and 1.
410
411 @item ratio
412 Set a ratio by which the signal is reduced. 1:2 means that if the level
413 rose 4dB above the threshold, it will be only 2dB above after the reduction.
414 Default is 2. Range is between 1 and 20.
415
416 @item attack
417 Amount of milliseconds the signal has to rise above the threshold before gain
418 reduction starts. Default is 20. Range is between 0.01 and 2000.
419
420 @item release
421 Amount of milliseconds the signal has to fall below the threshold before
422 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
423
424 @item makeup
425 Set the amount by how much signal will be amplified after processing.
426 Default is 1. Range is from 1 to 64.
427
428 @item knee
429 Curve the sharp knee around the threshold to enter gain reduction more softly.
430 Default is 2.82843. Range is between 1 and 8.
431
432 @item link
433 Choose if the @code{average} level between all channels of input stream
434 or the louder(@code{maximum}) channel of input stream affects the
435 reduction. Default is @code{average}.
436
437 @item detection
438 Should the exact signal be taken in case of @code{peak} or an RMS one in case
439 of @code{rms}. Default is @code{rms} which is mostly smoother.
440
441 @item mix
442 How much to use compressed signal in output. Default is 1.
443 Range is between 0 and 1.
444 @end table
445
446 @subsection Commands
447
448 This filter supports the all above options as @ref{commands}.
449
450 @section acontrast
451 Simple audio dynamic range compression/expansion filter.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item contrast
457 Set contrast. Default is 33. Allowed range is between 0 and 100.
458 @end table
459
460 @section acopy
461
462 Copy the input audio source unchanged to the output. This is mainly useful for
463 testing purposes.
464
465 @section acrossfade
466
467 Apply cross fade from one input audio stream to another input audio stream.
468 The cross fade is applied for specified duration near the end of first stream.
469
470 The filter accepts the following options:
471
472 @table @option
473 @item nb_samples, ns
474 Specify the number of samples for which the cross fade effect has to last.
475 At the end of the cross fade effect the first input audio will be completely
476 silent. Default is 44100.
477
478 @item duration, d
479 Specify the duration of the cross fade effect. See
480 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
481 for the accepted syntax.
482 By default the duration is determined by @var{nb_samples}.
483 If set this option is used instead of @var{nb_samples}.
484
485 @item overlap, o
486 Should first stream end overlap with second stream start. Default is enabled.
487
488 @item curve1
489 Set curve for cross fade transition for first stream.
490
491 @item curve2
492 Set curve for cross fade transition for second stream.
493
494 For description of available curve types see @ref{afade} filter description.
495 @end table
496
497 @subsection Examples
498
499 @itemize
500 @item
501 Cross fade from one input to another:
502 @example
503 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
504 @end example
505
506 @item
507 Cross fade from one input to another but without overlapping:
508 @example
509 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
510 @end example
511 @end itemize
512
513 @section acrossover
514 Split audio stream into several bands.
515
516 This filter splits audio stream into two or more frequency ranges.
517 Summing all streams back will give flat output.
518
519 The filter accepts the following options:
520
521 @table @option
522 @item split
523 Set split frequencies. Those must be positive and increasing.
524
525 @item order
526 Set filter order for each band split. This controls filter roll-off or steepness
527 of filter transfer function.
528 Available values are:
529
530 @table @samp
531 @item 2nd
532 12 dB per octave.
533 @item 4th
534 24 dB per octave.
535 @item 6th
536 36 dB per octave.
537 @item 8th
538 48 dB per octave.
539 @item 10th
540 60 dB per octave.
541 @item 12th
542 72 dB per octave.
543 @item 14th
544 84 dB per octave.
545 @item 16th
546 96 dB per octave.
547 @item 18th
548 108 dB per octave.
549 @item 20th
550 120 dB per octave.
551 @end table
552
553 Default is @var{4th}.
554
555 @item level
556 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
557
558 @item gains
559 Set output gain for each band. Default value is 1 for all bands.
560 @end table
561
562 @subsection Examples
563
564 @itemize
565 @item
566 Split input audio stream into two bands (low and high) with split frequency of 1500 Hz,
567 each band will be in separate stream:
568 @example
569 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
570 @end example
571
572 @item
573 Same as above, but with higher filter order:
574 @example
575 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500:order=8th[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
576 @end example
577
578 @item
579 Same as above, but also with additional middle band (frequencies between 1500 and 8000):
580 @example
581 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500 8000:order=8th[LOW][MID][HIGH]' -map '[LOW]' low.wav -map '[MID]' mid.wav -map '[HIGH]' high.wav
582 @end example
583 @end itemize
584
585 @section acrusher
586
587 Reduce audio bit resolution.
588
589 This filter is bit crusher with enhanced functionality. A bit crusher
590 is used to audibly reduce number of bits an audio signal is sampled
591 with. This doesn't change the bit depth at all, it just produces the
592 effect. Material reduced in bit depth sounds more harsh and "digital".
593 This filter is able to even round to continuous values instead of discrete
594 bit depths.
595 Additionally it has a D/C offset which results in different crushing of
596 the lower and the upper half of the signal.
597 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
598
599 Another feature of this filter is the logarithmic mode.
600 This setting switches from linear distances between bits to logarithmic ones.
601 The result is a much more "natural" sounding crusher which doesn't gate low
602 signals for example. The human ear has a logarithmic perception,
603 so this kind of crushing is much more pleasant.
604 Logarithmic crushing is also able to get anti-aliased.
605
606 The filter accepts the following options:
607
608 @table @option
609 @item level_in
610 Set level in.
611
612 @item level_out
613 Set level out.
614
615 @item bits
616 Set bit reduction.
617
618 @item mix
619 Set mixing amount.
620
621 @item mode
622 Can be linear: @code{lin} or logarithmic: @code{log}.
623
624 @item dc
625 Set DC.
626
627 @item aa
628 Set anti-aliasing.
629
630 @item samples
631 Set sample reduction.
632
633 @item lfo
634 Enable LFO. By default disabled.
635
636 @item lforange
637 Set LFO range.
638
639 @item lforate
640 Set LFO rate.
641 @end table
642
643 @subsection Commands
644
645 This filter supports the all above options as @ref{commands}.
646
647 @section acue
648
649 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
650 filter.
651
652 @section adeclick
653 Remove impulsive noise from input audio.
654
655 Samples detected as impulsive noise are replaced by interpolated samples using
656 autoregressive modelling.
657
658 @table @option
659 @item w
660 Set window size, in milliseconds. Allowed range is from @code{10} to
661 @code{100}. Default value is @code{55} milliseconds.
662 This sets size of window which will be processed at once.
663
664 @item o
665 Set window overlap, in percentage of window size. Allowed range is from
666 @code{50} to @code{95}. Default value is @code{75} percent.
667 Setting this to a very high value increases impulsive noise removal but makes
668 whole process much slower.
669
670 @item a
671 Set autoregression order, in percentage of window size. Allowed range is from
672 @code{0} to @code{25}. Default value is @code{2} percent. This option also
673 controls quality of interpolated samples using neighbour good samples.
674
675 @item t
676 Set threshold value. Allowed range is from @code{1} to @code{100}.
677 Default value is @code{2}.
678 This controls the strength of impulsive noise which is going to be removed.
679 The lower value, the more samples will be detected as impulsive noise.
680
681 @item b
682 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
683 @code{10}. Default value is @code{2}.
684 If any two samples detected as noise are spaced less than this value then any
685 sample between those two samples will be also detected as noise.
686
687 @item m
688 Set overlap method.
689
690 It accepts the following values:
691 @table @option
692 @item a
693 Select overlap-add method. Even not interpolated samples are slightly
694 changed with this method.
695
696 @item s
697 Select overlap-save method. Not interpolated samples remain unchanged.
698 @end table
699
700 Default value is @code{a}.
701 @end table
702
703 @section adeclip
704 Remove clipped samples from input audio.
705
706 Samples detected as clipped are replaced by interpolated samples using
707 autoregressive modelling.
708
709 @table @option
710 @item w
711 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
712 Default value is @code{55} milliseconds.
713 This sets size of window which will be processed at once.
714
715 @item o
716 Set window overlap, in percentage of window size. Allowed range is from @code{50}
717 to @code{95}. Default value is @code{75} percent.
718
719 @item a
720 Set autoregression order, in percentage of window size. Allowed range is from
721 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
722 quality of interpolated samples using neighbour good samples.
723
724 @item t
725 Set threshold value. Allowed range is from @code{1} to @code{100}.
726 Default value is @code{10}. Higher values make clip detection less aggressive.
727
728 @item n
729 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
730 Default value is @code{1000}. Higher values make clip detection less aggressive.
731
732 @item m
733 Set overlap method.
734
735 It accepts the following values:
736 @table @option
737 @item a
738 Select overlap-add method. Even not interpolated samples are slightly changed
739 with this method.
740
741 @item s
742 Select overlap-save method. Not interpolated samples remain unchanged.
743 @end table
744
745 Default value is @code{a}.
746 @end table
747
748 @section adelay
749
750 Delay one or more audio channels.
751
752 Samples in delayed channel are filled with silence.
753
754 The filter accepts the following option:
755
756 @table @option
757 @item delays
758 Set list of delays in milliseconds for each channel separated by '|'.
759 Unused delays will be silently ignored. If number of given delays is
760 smaller than number of channels all remaining channels will not be delayed.
761 If you want to delay exact number of samples, append 'S' to number.
762 If you want instead to delay in seconds, append 's' to number.
763
764 @item all
765 Use last set delay for all remaining channels. By default is disabled.
766 This option if enabled changes how option @code{delays} is interpreted.
767 @end table
768
769 @subsection Examples
770
771 @itemize
772 @item
773 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
774 the second channel (and any other channels that may be present) unchanged.
775 @example
776 adelay=1500|0|500
777 @end example
778
779 @item
780 Delay second channel by 500 samples, the third channel by 700 samples and leave
781 the first channel (and any other channels that may be present) unchanged.
782 @example
783 adelay=0|500S|700S
784 @end example
785
786 @item
787 Delay all channels by same number of samples:
788 @example
789 adelay=delays=64S:all=1
790 @end example
791 @end itemize
792
793 @section adenorm
794 Remedy denormals in audio by adding extremely low-level noise.
795
796 This filter shall be placed before any filter that can produce denormals.
797
798 A description of the accepted parameters follows.
799
800 @table @option
801 @item level
802 Set level of added noise in dB. Default is @code{-351}.
803 Allowed range is from -451 to -90.
804
805 @item type
806 Set type of added noise.
807
808 @table @option
809 @item dc
810 Add DC signal.
811 @item ac
812 Add AC signal.
813 @item square
814 Add square signal.
815 @item pulse
816 Add pulse signal.
817 @end table
818
819 Default is @code{dc}.
820 @end table
821
822 @subsection Commands
823
824 This filter supports the all above options as @ref{commands}.
825
826 @section aderivative, aintegral
827
828 Compute derivative/integral of audio stream.
829
830 Applying both filters one after another produces original audio.
831
832 @section aecho
833
834 Apply echoing to the input audio.
835
836 Echoes are reflected sound and can occur naturally amongst mountains
837 (and sometimes large buildings) when talking or shouting; digital echo
838 effects emulate this behaviour and are often used to help fill out the
839 sound of a single instrument or vocal. The time difference between the
840 original signal and the reflection is the @code{delay}, and the
841 loudness of the reflected signal is the @code{decay}.
842 Multiple echoes can have different delays and decays.
843
844 A description of the accepted parameters follows.
845
846 @table @option
847 @item in_gain
848 Set input gain of reflected signal. Default is @code{0.6}.
849
850 @item out_gain
851 Set output gain of reflected signal. Default is @code{0.3}.
852
853 @item delays
854 Set list of time intervals in milliseconds between original signal and reflections
855 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
856 Default is @code{1000}.
857
858 @item decays
859 Set list of loudness of reflected signals separated by '|'.
860 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
861 Default is @code{0.5}.
862 @end table
863
864 @subsection Examples
865
866 @itemize
867 @item
868 Make it sound as if there are twice as many instruments as are actually playing:
869 @example
870 aecho=0.8:0.88:60:0.4
871 @end example
872
873 @item
874 If delay is very short, then it sounds like a (metallic) robot playing music:
875 @example
876 aecho=0.8:0.88:6:0.4
877 @end example
878
879 @item
880 A longer delay will sound like an open air concert in the mountains:
881 @example
882 aecho=0.8:0.9:1000:0.3
883 @end example
884
885 @item
886 Same as above but with one more mountain:
887 @example
888 aecho=0.8:0.9:1000|1800:0.3|0.25
889 @end example
890 @end itemize
891
892 @section aemphasis
893 Audio emphasis filter creates or restores material directly taken from LPs or
894 emphased CDs with different filter curves. E.g. to store music on vinyl the
895 signal has to be altered by a filter first to even out the disadvantages of
896 this recording medium.
897 Once the material is played back the inverse filter has to be applied to
898 restore the distortion of the frequency response.
899
900 The filter accepts the following options:
901
902 @table @option
903 @item level_in
904 Set input gain.
905
906 @item level_out
907 Set output gain.
908
909 @item mode
910 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
911 use @code{production} mode. Default is @code{reproduction} mode.
912
913 @item type
914 Set filter type. Selects medium. Can be one of the following:
915
916 @table @option
917 @item col
918 select Columbia.
919 @item emi
920 select EMI.
921 @item bsi
922 select BSI (78RPM).
923 @item riaa
924 select RIAA.
925 @item cd
926 select Compact Disc (CD).
927 @item 50fm
928 select 50µs (FM).
929 @item 75fm
930 select 75µs (FM).
931 @item 50kf
932 select 50µs (FM-KF).
933 @item 75kf
934 select 75µs (FM-KF).
935 @end table
936 @end table
937
938 @subsection Commands
939
940 This filter supports the all above options as @ref{commands}.
941
942 @section aeval
943
944 Modify an audio signal according to the specified expressions.
945
946 This filter accepts one or more expressions (one for each channel),
947 which are evaluated and used to modify a corresponding audio signal.
948
949 It accepts the following parameters:
950
951 @table @option
952 @item exprs
953 Set the '|'-separated expressions list for each separate channel. If
954 the number of input channels is greater than the number of
955 expressions, the last specified expression is used for the remaining
956 output channels.
957
958 @item channel_layout, c
959 Set output channel layout. If not specified, the channel layout is
960 specified by the number of expressions. If set to @samp{same}, it will
961 use by default the same input channel layout.
962 @end table
963
964 Each expression in @var{exprs} can contain the following constants and functions:
965
966 @table @option
967 @item ch
968 channel number of the current expression
969
970 @item n
971 number of the evaluated sample, starting from 0
972
973 @item s
974 sample rate
975
976 @item t
977 time of the evaluated sample expressed in seconds
978
979 @item nb_in_channels
980 @item nb_out_channels
981 input and output number of channels
982
983 @item val(CH)
984 the value of input channel with number @var{CH}
985 @end table
986
987 Note: this filter is slow. For faster processing you should use a
988 dedicated filter.
989
990 @subsection Examples
991
992 @itemize
993 @item
994 Half volume:
995 @example
996 aeval=val(ch)/2:c=same
997 @end example
998
999 @item
1000 Invert phase of the second channel:
1001 @example
1002 aeval=val(0)|-val(1)
1003 @end example
1004 @end itemize
1005
1006 @anchor{afade}
1007 @section afade
1008
1009 Apply fade-in/out effect to input audio.
1010
1011 A description of the accepted parameters follows.
1012
1013 @table @option
1014 @item type, t
1015 Specify the effect type, can be either @code{in} for fade-in, or
1016 @code{out} for a fade-out effect. Default is @code{in}.
1017
1018 @item start_sample, ss
1019 Specify the number of the start sample for starting to apply the fade
1020 effect. Default is 0.
1021
1022 @item nb_samples, ns
1023 Specify the number of samples for which the fade effect has to last. At
1024 the end of the fade-in effect the output audio will have the same
1025 volume as the input audio, at the end of the fade-out transition
1026 the output audio will be silence. Default is 44100.
1027
1028 @item start_time, st
1029 Specify the start time of the fade effect. Default is 0.
1030 The value must be specified as a time duration; see
1031 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1032 for the accepted syntax.
1033 If set this option is used instead of @var{start_sample}.
1034
1035 @item duration, d
1036 Specify the duration of the fade effect. See
1037 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1038 for the accepted syntax.
1039 At the end of the fade-in effect the output audio will have the same
1040 volume as the input audio, at the end of the fade-out transition
1041 the output audio will be silence.
1042 By default the duration is determined by @var{nb_samples}.
1043 If set this option is used instead of @var{nb_samples}.
1044
1045 @item curve
1046 Set curve for fade transition.
1047
1048 It accepts the following values:
1049 @table @option
1050 @item tri
1051 select triangular, linear slope (default)
1052 @item qsin
1053 select quarter of sine wave
1054 @item hsin
1055 select half of sine wave
1056 @item esin
1057 select exponential sine wave
1058 @item log
1059 select logarithmic
1060 @item ipar
1061 select inverted parabola
1062 @item qua
1063 select quadratic
1064 @item cub
1065 select cubic
1066 @item squ
1067 select square root
1068 @item cbr
1069 select cubic root
1070 @item par
1071 select parabola
1072 @item exp
1073 select exponential
1074 @item iqsin
1075 select inverted quarter of sine wave
1076 @item ihsin
1077 select inverted half of sine wave
1078 @item dese
1079 select double-exponential seat
1080 @item desi
1081 select double-exponential sigmoid
1082 @item losi
1083 select logistic sigmoid
1084 @item sinc
1085 select sine cardinal function
1086 @item isinc
1087 select inverted sine cardinal function
1088 @item nofade
1089 no fade applied
1090 @end table
1091 @end table
1092
1093 @subsection Commands
1094
1095 This filter supports the all above options as @ref{commands}.
1096
1097 @subsection Examples
1098
1099 @itemize
1100 @item
1101 Fade in first 15 seconds of audio:
1102 @example
1103 afade=t=in:ss=0:d=15
1104 @end example
1105
1106 @item
1107 Fade out last 25 seconds of a 900 seconds audio:
1108 @example
1109 afade=t=out:st=875:d=25
1110 @end example
1111 @end itemize
1112
1113 @section afftdn
1114 Denoise audio samples with FFT.
1115
1116 A description of the accepted parameters follows.
1117
1118 @table @option
1119 @item nr
1120 Set the noise reduction in dB, allowed range is 0.01 to 97.
1121 Default value is 12 dB.
1122
1123 @item nf
1124 Set the noise floor in dB, allowed range is -80 to -20.
1125 Default value is -50 dB.
1126
1127 @item nt
1128 Set the noise type.
1129
1130 It accepts the following values:
1131 @table @option
1132 @item w
1133 Select white noise.
1134
1135 @item v
1136 Select vinyl noise.
1137
1138 @item s
1139 Select shellac noise.
1140
1141 @item c
1142 Select custom noise, defined in @code{bn} option.
1143
1144 Default value is white noise.
1145 @end table
1146
1147 @item bn
1148 Set custom band noise for every one of 15 bands.
1149 Bands are separated by ' ' or '|'.
1150
1151 @item rf
1152 Set the residual floor in dB, allowed range is -80 to -20.
1153 Default value is -38 dB.
1154
1155 @item tn
1156 Enable noise tracking. By default is disabled.
1157 With this enabled, noise floor is automatically adjusted.
1158
1159 @item tr
1160 Enable residual tracking. By default is disabled.
1161
1162 @item om
1163 Set the output mode.
1164
1165 It accepts the following values:
1166 @table @option
1167 @item i
1168 Pass input unchanged.
1169
1170 @item o
1171 Pass noise filtered out.
1172
1173 @item n
1174 Pass only noise.
1175
1176 Default value is @var{o}.
1177 @end table
1178 @end table
1179
1180 @subsection Commands
1181
1182 This filter supports the following commands:
1183 @table @option
1184 @item sample_noise, sn
1185 Start or stop measuring noise profile.
1186 Syntax for the command is : "start" or "stop" string.
1187 After measuring noise profile is stopped it will be
1188 automatically applied in filtering.
1189
1190 @item noise_reduction, nr
1191 Change noise reduction. Argument is single float number.
1192 Syntax for the command is : "@var{noise_reduction}"
1193
1194 @item noise_floor, nf
1195 Change noise floor. Argument is single float number.
1196 Syntax for the command is : "@var{noise_floor}"
1197
1198 @item output_mode, om
1199 Change output mode operation.
1200 Syntax for the command is : "i", "o" or "n" string.
1201 @end table
1202
1203 @section afftfilt
1204 Apply arbitrary expressions to samples in frequency domain.
1205
1206 @table @option
1207 @item real
1208 Set frequency domain real expression for each separate channel separated
1209 by '|'. Default is "re".
1210 If the number of input channels is greater than the number of
1211 expressions, the last specified expression is used for the remaining
1212 output channels.
1213
1214 @item imag
1215 Set frequency domain imaginary expression for each separate channel
1216 separated by '|'. Default is "im".
1217
1218 Each expression in @var{real} and @var{imag} can contain the following
1219 constants and functions:
1220
1221 @table @option
1222 @item sr
1223 sample rate
1224
1225 @item b
1226 current frequency bin number
1227
1228 @item nb
1229 number of available bins
1230
1231 @item ch
1232 channel number of the current expression
1233
1234 @item chs
1235 number of channels
1236
1237 @item pts
1238 current frame pts
1239
1240 @item re
1241 current real part of frequency bin of current channel
1242
1243 @item im
1244 current imaginary part of frequency bin of current channel
1245
1246 @item real(b, ch)
1247 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1248
1249 @item imag(b, ch)
1250 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1251 @end table
1252
1253 @item win_size
1254 Set window size. Allowed range is from 16 to 131072.
1255 Default is @code{4096}
1256
1257 @item win_func
1258 Set window function. Default is @code{hann}.
1259
1260 @item overlap
1261 Set window overlap. If set to 1, the recommended overlap for selected
1262 window function will be picked. Default is @code{0.75}.
1263 @end table
1264
1265 @subsection Examples
1266
1267 @itemize
1268 @item
1269 Leave almost only low frequencies in audio:
1270 @example
1271 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1272 @end example
1273
1274 @item
1275 Apply robotize effect:
1276 @example
1277 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1278 @end example
1279
1280 @item
1281 Apply whisper effect:
1282 @example
1283 afftfilt="real='hypot(re,im)*cos((random(0)*2-1)*2*3.14)':imag='hypot(re,im)*sin((random(1)*2-1)*2*3.14)':win_size=128:overlap=0.8"
1284 @end example
1285 @end itemize
1286
1287 @anchor{afir}
1288 @section afir
1289
1290 Apply an arbitrary Finite Impulse Response filter.
1291
1292 This filter is designed for applying long FIR filters,
1293 up to 60 seconds long.
1294
1295 It can be used as component for digital crossover filters,
1296 room equalization, cross talk cancellation, wavefield synthesis,
1297 auralization, ambiophonics, ambisonics and spatialization.
1298
1299 This filter uses the streams higher than first one as FIR coefficients.
1300 If the non-first stream holds a single channel, it will be used
1301 for all input channels in the first stream, otherwise
1302 the number of channels in the non-first stream must be same as
1303 the number of channels in the first stream.
1304
1305 It accepts the following parameters:
1306
1307 @table @option
1308 @item dry
1309 Set dry gain. This sets input gain.
1310
1311 @item wet
1312 Set wet gain. This sets final output gain.
1313
1314 @item length
1315 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1316
1317 @item gtype
1318 Enable applying gain measured from power of IR.
1319
1320 Set which approach to use for auto gain measurement.
1321
1322 @table @option
1323 @item none
1324 Do not apply any gain.
1325
1326 @item peak
1327 select peak gain, very conservative approach. This is default value.
1328
1329 @item dc
1330 select DC gain, limited application.
1331
1332 @item gn
1333 select gain to noise approach, this is most popular one.
1334 @end table
1335
1336 @item irgain
1337 Set gain to be applied to IR coefficients before filtering.
1338 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1339
1340 @item irfmt
1341 Set format of IR stream. Can be @code{mono} or @code{input}.
1342 Default is @code{input}.
1343
1344 @item maxir
1345 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1346 Allowed range is 0.1 to 60 seconds.
1347
1348 @item response
1349 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1350 By default it is disabled.
1351
1352 @item channel
1353 Set for which IR channel to display frequency response. By default is first channel
1354 displayed. This option is used only when @var{response} is enabled.
1355
1356 @item size
1357 Set video stream size. This option is used only when @var{response} is enabled.
1358
1359 @item rate
1360 Set video stream frame rate. This option is used only when @var{response} is enabled.
1361
1362 @item minp
1363 Set minimal partition size used for convolution. Default is @var{8192}.
1364 Allowed range is from @var{1} to @var{32768}.
1365 Lower values decreases latency at cost of higher CPU usage.
1366
1367 @item maxp
1368 Set maximal partition size used for convolution. Default is @var{8192}.
1369 Allowed range is from @var{8} to @var{32768}.
1370 Lower values may increase CPU usage.
1371
1372 @item nbirs
1373 Set number of input impulse responses streams which will be switchable at runtime.
1374 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1375
1376 @item ir
1377 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1378 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1379 This option can be changed at runtime via @ref{commands}.
1380 @end table
1381
1382 @subsection Examples
1383
1384 @itemize
1385 @item
1386 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1387 @example
1388 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1389 @end example
1390 @end itemize
1391
1392 @anchor{aformat}
1393 @section aformat
1394
1395 Set output format constraints for the input audio. The framework will
1396 negotiate the most appropriate format to minimize conversions.
1397
1398 It accepts the following parameters:
1399 @table @option
1400
1401 @item sample_fmts, f
1402 A '|'-separated list of requested sample formats.
1403
1404 @item sample_rates, r
1405 A '|'-separated list of requested sample rates.
1406
1407 @item channel_layouts, cl
1408 A '|'-separated list of requested channel layouts.
1409
1410 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1411 for the required syntax.
1412 @end table
1413
1414 If a parameter is omitted, all values are allowed.
1415
1416 Force the output to either unsigned 8-bit or signed 16-bit stereo
1417 @example
1418 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1419 @end example
1420
1421 @section afreqshift
1422 Apply frequency shift to input audio samples.
1423
1424 The filter accepts the following options:
1425
1426 @table @option
1427 @item shift
1428 Specify frequency shift. Allowed range is -INT_MAX to INT_MAX.
1429 Default value is 0.0.
1430
1431 @item level
1432 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
1433 Default value is 1.0.
1434 @end table
1435
1436 @subsection Commands
1437
1438 This filter supports the all above options as @ref{commands}.
1439
1440 @section agate
1441
1442 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1443 processing reduces disturbing noise between useful signals.
1444
1445 Gating is done by detecting the volume below a chosen level @var{threshold}
1446 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1447 floor is set via @var{range}. Because an exact manipulation of the signal
1448 would cause distortion of the waveform the reduction can be levelled over
1449 time. This is done by setting @var{attack} and @var{release}.
1450
1451 @var{attack} determines how long the signal has to fall below the threshold
1452 before any reduction will occur and @var{release} sets the time the signal
1453 has to rise above the threshold to reduce the reduction again.
1454 Shorter signals than the chosen attack time will be left untouched.
1455
1456 @table @option
1457 @item level_in
1458 Set input level before filtering.
1459 Default is 1. Allowed range is from 0.015625 to 64.
1460
1461 @item mode
1462 Set the mode of operation. Can be @code{upward} or @code{downward}.
1463 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1464 will be amplified, expanding dynamic range in upward direction.
1465 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1466
1467 @item range
1468 Set the level of gain reduction when the signal is below the threshold.
1469 Default is 0.06125. Allowed range is from 0 to 1.
1470 Setting this to 0 disables reduction and then filter behaves like expander.
1471
1472 @item threshold
1473 If a signal rises above this level the gain reduction is released.
1474 Default is 0.125. Allowed range is from 0 to 1.
1475
1476 @item ratio
1477 Set a ratio by which the signal is reduced.
1478 Default is 2. Allowed range is from 1 to 9000.
1479
1480 @item attack
1481 Amount of milliseconds the signal has to rise above the threshold before gain
1482 reduction stops.
1483 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1484
1485 @item release
1486 Amount of milliseconds the signal has to fall below the threshold before the
1487 reduction is increased again. Default is 250 milliseconds.
1488 Allowed range is from 0.01 to 9000.
1489
1490 @item makeup
1491 Set amount of amplification of signal after processing.
1492 Default is 1. Allowed range is from 1 to 64.
1493
1494 @item knee
1495 Curve the sharp knee around the threshold to enter gain reduction more softly.
1496 Default is 2.828427125. Allowed range is from 1 to 8.
1497
1498 @item detection
1499 Choose if exact signal should be taken for detection or an RMS like one.
1500 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1501
1502 @item link
1503 Choose if the average level between all channels or the louder channel affects
1504 the reduction.
1505 Default is @code{average}. Can be @code{average} or @code{maximum}.
1506 @end table
1507
1508 @subsection Commands
1509
1510 This filter supports the all above options as @ref{commands}.
1511
1512 @section aiir
1513
1514 Apply an arbitrary Infinite Impulse Response filter.
1515
1516 It accepts the following parameters:
1517
1518 @table @option
1519 @item zeros, z
1520 Set B/numerator/zeros/reflection coefficients.
1521
1522 @item poles, p
1523 Set A/denominator/poles/ladder coefficients.
1524
1525 @item gains, k
1526 Set channels gains.
1527
1528 @item dry_gain
1529 Set input gain.
1530
1531 @item wet_gain
1532 Set output gain.
1533
1534 @item format, f
1535 Set coefficients format.
1536
1537 @table @samp
1538 @item ll
1539 lattice-ladder function
1540 @item sf
1541 analog transfer function
1542 @item tf
1543 digital transfer function
1544 @item zp
1545 Z-plane zeros/poles, cartesian (default)
1546 @item pr
1547 Z-plane zeros/poles, polar radians
1548 @item pd
1549 Z-plane zeros/poles, polar degrees
1550 @item sp
1551 S-plane zeros/poles
1552 @end table
1553
1554 @item process, r
1555 Set type of processing.
1556
1557 @table @samp
1558 @item d
1559 direct processing
1560 @item s
1561 serial processing
1562 @item p
1563 parallel processing
1564 @end table
1565
1566 @item precision, e
1567 Set filtering precision.
1568
1569 @table @samp
1570 @item dbl
1571 double-precision floating-point (default)
1572 @item flt
1573 single-precision floating-point
1574 @item i32
1575 32-bit integers
1576 @item i16
1577 16-bit integers
1578 @end table
1579
1580 @item normalize, n
1581 Normalize filter coefficients, by default is enabled.
1582 Enabling it will normalize magnitude response at DC to 0dB.
1583
1584 @item mix
1585 How much to use filtered signal in output. Default is 1.
1586 Range is between 0 and 1.
1587
1588 @item response
1589 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1590 By default it is disabled.
1591
1592 @item channel
1593 Set for which IR channel to display frequency response. By default is first channel
1594 displayed. This option is used only when @var{response} is enabled.
1595
1596 @item size
1597 Set video stream size. This option is used only when @var{response} is enabled.
1598 @end table
1599
1600 Coefficients in @code{tf} and @code{sf} format are separated by spaces and are in ascending
1601 order.
1602
1603 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1604 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1605 imaginary unit.
1606
1607 Different coefficients and gains can be provided for every channel, in such case
1608 use '|' to separate coefficients or gains. Last provided coefficients will be
1609 used for all remaining channels.
1610
1611 @subsection Examples
1612
1613 @itemize
1614 @item
1615 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1616 @example
1617 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1618 @end example
1619
1620 @item
1621 Same as above but in @code{zp} format:
1622 @example
1623 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1624 @end example
1625
1626 @item
1627 Apply 3-rd order analog normalized Butterworth low-pass filter, using analog transfer function format:
1628 @example
1629 aiir=z=1.3057 0 0 0:p=1.3057 2.3892 2.1860 1:f=sf:r=d
1630 @end example
1631 @end itemize
1632
1633 @section alimiter
1634
1635 The limiter prevents an input signal from rising over a desired threshold.
1636 This limiter uses lookahead technology to prevent your signal from distorting.
1637 It means that there is a small delay after the signal is processed. Keep in mind
1638 that the delay it produces is the attack time you set.
1639
1640 The filter accepts the following options:
1641
1642 @table @option
1643 @item level_in
1644 Set input gain. Default is 1.
1645
1646 @item level_out
1647 Set output gain. Default is 1.
1648
1649 @item limit
1650 Don't let signals above this level pass the limiter. Default is 1.
1651
1652 @item attack
1653 The limiter will reach its attenuation level in this amount of time in
1654 milliseconds. Default is 5 milliseconds.
1655
1656 @item release
1657 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1658 Default is 50 milliseconds.
1659
1660 @item asc
1661 When gain reduction is always needed ASC takes care of releasing to an
1662 average reduction level rather than reaching a reduction of 0 in the release
1663 time.
1664
1665 @item asc_level
1666 Select how much the release time is affected by ASC, 0 means nearly no changes
1667 in release time while 1 produces higher release times.
1668
1669 @item level
1670 Auto level output signal. Default is enabled.
1671 This normalizes audio back to 0dB if enabled.
1672 @end table
1673
1674 Depending on picked setting it is recommended to upsample input 2x or 4x times
1675 with @ref{aresample} before applying this filter.
1676
1677 @section allpass
1678
1679 Apply a two-pole all-pass filter with central frequency (in Hz)
1680 @var{frequency}, and filter-width @var{width}.
1681 An all-pass filter changes the audio's frequency to phase relationship
1682 without changing its frequency to amplitude relationship.
1683
1684 The filter accepts the following options:
1685
1686 @table @option
1687 @item frequency, f
1688 Set frequency in Hz.
1689
1690 @item width_type, t
1691 Set method to specify band-width of filter.
1692 @table @option
1693 @item h
1694 Hz
1695 @item q
1696 Q-Factor
1697 @item o
1698 octave
1699 @item s
1700 slope
1701 @item k
1702 kHz
1703 @end table
1704
1705 @item width, w
1706 Specify the band-width of a filter in width_type units.
1707
1708 @item mix, m
1709 How much to use filtered signal in output. Default is 1.
1710 Range is between 0 and 1.
1711
1712 @item channels, c
1713 Specify which channels to filter, by default all available are filtered.
1714
1715 @item normalize, n
1716 Normalize biquad coefficients, by default is disabled.
1717 Enabling it will normalize magnitude response at DC to 0dB.
1718
1719 @item order, o
1720 Set the filter order, can be 1 or 2. Default is 2.
1721
1722 @item transform, a
1723 Set transform type of IIR filter.
1724 @table @option
1725 @item di
1726 @item dii
1727 @item tdii
1728 @item latt
1729 @end table
1730
1731 @item precision, r
1732 Set precison of filtering.
1733 @table @option
1734 @item auto
1735 Pick automatic sample format depending on surround filters.
1736 @item s16
1737 Always use signed 16-bit.
1738 @item s32
1739 Always use signed 32-bit.
1740 @item f32
1741 Always use float 32-bit.
1742 @item f64
1743 Always use float 64-bit.
1744 @end table
1745 @end table
1746
1747 @subsection Commands
1748
1749 This filter supports the following commands:
1750 @table @option
1751 @item frequency, f
1752 Change allpass frequency.
1753 Syntax for the command is : "@var{frequency}"
1754
1755 @item width_type, t
1756 Change allpass width_type.
1757 Syntax for the command is : "@var{width_type}"
1758
1759 @item width, w
1760 Change allpass width.
1761 Syntax for the command is : "@var{width}"
1762
1763 @item mix, m
1764 Change allpass mix.
1765 Syntax for the command is : "@var{mix}"
1766 @end table
1767
1768 @section aloop
1769
1770 Loop audio samples.
1771
1772 The filter accepts the following options:
1773
1774 @table @option
1775 @item loop
1776 Set the number of loops. Setting this value to -1 will result in infinite loops.
1777 Default is 0.
1778
1779 @item size
1780 Set maximal number of samples. Default is 0.
1781
1782 @item start
1783 Set first sample of loop. Default is 0.
1784 @end table
1785
1786 @anchor{amerge}
1787 @section amerge
1788
1789 Merge two or more audio streams into a single multi-channel stream.
1790
1791 The filter accepts the following options:
1792
1793 @table @option
1794
1795 @item inputs
1796 Set the number of inputs. Default is 2.
1797
1798 @end table
1799
1800 If the channel layouts of the inputs are disjoint, and therefore compatible,
1801 the channel layout of the output will be set accordingly and the channels
1802 will be reordered as necessary. If the channel layouts of the inputs are not
1803 disjoint, the output will have all the channels of the first input then all
1804 the channels of the second input, in that order, and the channel layout of
1805 the output will be the default value corresponding to the total number of
1806 channels.
1807
1808 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1809 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1810 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1811 first input, b1 is the first channel of the second input).
1812
1813 On the other hand, if both input are in stereo, the output channels will be
1814 in the default order: a1, a2, b1, b2, and the channel layout will be
1815 arbitrarily set to 4.0, which may or may not be the expected value.
1816
1817 All inputs must have the same sample rate, and format.
1818
1819 If inputs do not have the same duration, the output will stop with the
1820 shortest.
1821
1822 @subsection Examples
1823
1824 @itemize
1825 @item
1826 Merge two mono files into a stereo stream:
1827 @example
1828 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1829 @end example
1830
1831 @item
1832 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1833 @example
1834 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
1835 @end example
1836 @end itemize
1837
1838 @section amix
1839
1840 Mixes multiple audio inputs into a single output.
1841
1842 Note that this filter only supports float samples (the @var{amerge}
1843 and @var{pan} audio filters support many formats). If the @var{amix}
1844 input has integer samples then @ref{aresample} will be automatically
1845 inserted to perform the conversion to float samples.
1846
1847 For example
1848 @example
1849 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1850 @end example
1851 will mix 3 input audio streams to a single output with the same duration as the
1852 first input and a dropout transition time of 3 seconds.
1853
1854 It accepts the following parameters:
1855 @table @option
1856
1857 @item inputs
1858 The number of inputs. If unspecified, it defaults to 2.
1859
1860 @item duration
1861 How to determine the end-of-stream.
1862 @table @option
1863
1864 @item longest
1865 The duration of the longest input. (default)
1866
1867 @item shortest
1868 The duration of the shortest input.
1869
1870 @item first
1871 The duration of the first input.
1872
1873 @end table
1874
1875 @item dropout_transition
1876 The transition time, in seconds, for volume renormalization when an input
1877 stream ends. The default value is 2 seconds.
1878
1879 @item weights
1880 Specify weight of each input audio stream as sequence.
1881 Each weight is separated by space. By default all inputs have same weight.
1882
1883 @item sum
1884 Do not scale inputs but instead do only summation of samples.
1885 Beware of heavy clipping if inputs are not normalized prior of filtering
1886 or output from @var{amix} normalized after filtering. By default is disabled.
1887 @end table
1888
1889 @subsection Commands
1890
1891 This filter supports the following commands:
1892 @table @option
1893 @item weights
1894 @item sum
1895 Syntax is same as option with same name.
1896 @end table
1897
1898 @section amultiply
1899
1900 Multiply first audio stream with second audio stream and store result
1901 in output audio stream. Multiplication is done by multiplying each
1902 sample from first stream with sample at same position from second stream.
1903
1904 With this element-wise multiplication one can create amplitude fades and
1905 amplitude modulations.
1906
1907 @section anequalizer
1908
1909 High-order parametric multiband equalizer for each channel.
1910
1911 It accepts the following parameters:
1912 @table @option
1913 @item params
1914
1915 This option string is in format:
1916 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1917 Each equalizer band is separated by '|'.
1918
1919 @table @option
1920 @item chn
1921 Set channel number to which equalization will be applied.
1922 If input doesn't have that channel the entry is ignored.
1923
1924 @item f
1925 Set central frequency for band.
1926 If input doesn't have that frequency the entry is ignored.
1927
1928 @item w
1929 Set band width in Hertz.
1930
1931 @item g
1932 Set band gain in dB.
1933
1934 @item t
1935 Set filter type for band, optional, can be:
1936
1937 @table @samp
1938 @item 0
1939 Butterworth, this is default.
1940
1941 @item 1
1942 Chebyshev type 1.
1943
1944 @item 2
1945 Chebyshev type 2.
1946 @end table
1947 @end table
1948
1949 @item curves
1950 With this option activated frequency response of anequalizer is displayed
1951 in video stream.
1952
1953 @item size
1954 Set video stream size. Only useful if curves option is activated.
1955
1956 @item mgain
1957 Set max gain that will be displayed. Only useful if curves option is activated.
1958 Setting this to a reasonable value makes it possible to display gain which is derived from
1959 neighbour bands which are too close to each other and thus produce higher gain
1960 when both are activated.
1961
1962 @item fscale
1963 Set frequency scale used to draw frequency response in video output.
1964 Can be linear or logarithmic. Default is logarithmic.
1965
1966 @item colors
1967 Set color for each channel curve which is going to be displayed in video stream.
1968 This is list of color names separated by space or by '|'.
1969 Unrecognised or missing colors will be replaced by white color.
1970 @end table
1971
1972 @subsection Examples
1973
1974 @itemize
1975 @item
1976 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1977 for first 2 channels using Chebyshev type 1 filter:
1978 @example
1979 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1980 @end example
1981 @end itemize
1982
1983 @subsection Commands
1984
1985 This filter supports the following commands:
1986 @table @option
1987 @item change
1988 Alter existing filter parameters.
1989 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1990
1991 @var{fN} is existing filter number, starting from 0, if no such filter is available
1992 error is returned.
1993 @var{freq} set new frequency parameter.
1994 @var{width} set new width parameter in Hertz.
1995 @var{gain} set new gain parameter in dB.
1996
1997 Full filter invocation with asendcmd may look like this:
1998 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1999 @end table
2000
2001 @section anlmdn
2002
2003 Reduce broadband noise in audio samples using Non-Local Means algorithm.
2004
2005 Each sample is adjusted by looking for other samples with similar contexts. This
2006 context similarity is defined by comparing their surrounding patches of size
2007 @option{p}. Patches are searched in an area of @option{r} around the sample.
2008
2009 The filter accepts the following options:
2010
2011 @table @option
2012 @item s
2013 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
2014
2015 @item p
2016 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
2017 Default value is 2 milliseconds.
2018
2019 @item r
2020 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
2021 Default value is 6 milliseconds.
2022
2023 @item o
2024 Set the output mode.
2025
2026 It accepts the following values:
2027 @table @option
2028 @item i
2029 Pass input unchanged.
2030
2031 @item o
2032 Pass noise filtered out.
2033
2034 @item n
2035 Pass only noise.
2036
2037 Default value is @var{o}.
2038 @end table
2039
2040 @item m
2041 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
2042 @end table
2043
2044 @subsection Commands
2045
2046 This filter supports the all above options as @ref{commands}.
2047
2048 @section anlms
2049 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
2050
2051 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
2052 relate to producing the least mean square of the error signal (difference between the desired,
2053 2nd input audio stream and the actual signal, the 1st input audio stream).
2054
2055 A description of the accepted options follows.
2056
2057 @table @option
2058 @item order
2059 Set filter order.
2060
2061 @item mu
2062 Set filter mu.
2063
2064 @item eps
2065 Set the filter eps.
2066
2067 @item leakage
2068 Set the filter leakage.
2069
2070 @item out_mode
2071 It accepts the following values:
2072 @table @option
2073 @item i
2074 Pass the 1st input.
2075
2076 @item d
2077 Pass the 2nd input.
2078
2079 @item o
2080 Pass filtered samples.
2081
2082 @item n
2083 Pass difference between desired and filtered samples.
2084
2085 Default value is @var{o}.
2086 @end table
2087 @end table
2088
2089 @subsection Examples
2090
2091 @itemize
2092 @item
2093 One of many usages of this filter is noise reduction, input audio is filtered
2094 with same samples that are delayed by fixed amount, one such example for stereo audio is:
2095 @example
2096 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
2097 @end example
2098 @end itemize
2099
2100 @subsection Commands
2101
2102 This filter supports the same commands as options, excluding option @code{order}.
2103
2104 @section anull
2105
2106 Pass the audio source unchanged to the output.
2107
2108 @section apad
2109
2110 Pad the end of an audio stream with silence.
2111
2112 This can be used together with @command{ffmpeg} @option{-shortest} to
2113 extend audio streams to the same length as the video stream.
2114
2115 A description of the accepted options follows.
2116
2117 @table @option
2118 @item packet_size
2119 Set silence packet size. Default value is 4096.
2120
2121 @item pad_len
2122 Set the number of samples of silence to add to the end. After the
2123 value is reached, the stream is terminated. This option is mutually
2124 exclusive with @option{whole_len}.
2125
2126 @item whole_len
2127 Set the minimum total number of samples in the output audio stream. If
2128 the value is longer than the input audio length, silence is added to
2129 the end, until the value is reached. This option is mutually exclusive
2130 with @option{pad_len}.
2131
2132 @item pad_dur
2133 Specify the duration of samples of silence to add. See
2134 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2135 for the accepted syntax. Used only if set to non-zero value.
2136
2137 @item whole_dur
2138 Specify the minimum total duration in the output audio stream. See
2139 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2140 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
2141 the input audio length, silence is added to the end, until the value is reached.
2142 This option is mutually exclusive with @option{pad_dur}
2143 @end table
2144
2145 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
2146 nor @option{whole_dur} option is set, the filter will add silence to the end of
2147 the input stream indefinitely.
2148
2149 @subsection Examples
2150
2151 @itemize
2152 @item
2153 Add 1024 samples of silence to the end of the input:
2154 @example
2155 apad=pad_len=1024
2156 @end example
2157
2158 @item
2159 Make sure the audio output will contain at least 10000 samples, pad
2160 the input with silence if required:
2161 @example
2162 apad=whole_len=10000
2163 @end example
2164
2165 @item
2166 Use @command{ffmpeg} to pad the audio input with silence, so that the
2167 video stream will always result the shortest and will be converted
2168 until the end in the output file when using the @option{shortest}
2169 option:
2170 @example
2171 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
2172 @end example
2173 @end itemize
2174
2175 @section aphaser
2176 Add a phasing effect to the input audio.
2177
2178 A phaser filter creates series of peaks and troughs in the frequency spectrum.
2179 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
2180
2181 A description of the accepted parameters follows.
2182
2183 @table @option
2184 @item in_gain
2185 Set input gain. Default is 0.4.
2186
2187 @item out_gain
2188 Set output gain. Default is 0.74
2189
2190 @item delay
2191 Set delay in milliseconds. Default is 3.0.
2192
2193 @item decay
2194 Set decay. Default is 0.4.
2195
2196 @item speed
2197 Set modulation speed in Hz. Default is 0.5.
2198
2199 @item type
2200 Set modulation type. Default is triangular.
2201
2202 It accepts the following values:
2203 @table @samp
2204 @item triangular, t
2205 @item sinusoidal, s
2206 @end table
2207 @end table
2208
2209 @section aphaseshift
2210 Apply phase shift to input audio samples.
2211
2212 The filter accepts the following options:
2213
2214 @table @option
2215 @item shift
2216 Specify phase shift. Allowed range is from -1.0 to 1.0.
2217 Default value is 0.0.
2218
2219 @item level
2220 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
2221 Default value is 1.0.
2222 @end table
2223
2224 @subsection Commands
2225
2226 This filter supports the all above options as @ref{commands}.
2227
2228 @section apulsator
2229
2230 Audio pulsator is something between an autopanner and a tremolo.
2231 But it can produce funny stereo effects as well. Pulsator changes the volume
2232 of the left and right channel based on a LFO (low frequency oscillator) with
2233 different waveforms and shifted phases.
2234 This filter have the ability to define an offset between left and right
2235 channel. An offset of 0 means that both LFO shapes match each other.
2236 The left and right channel are altered equally - a conventional tremolo.
2237 An offset of 50% means that the shape of the right channel is exactly shifted
2238 in phase (or moved backwards about half of the frequency) - pulsator acts as
2239 an autopanner. At 1 both curves match again. Every setting in between moves the
2240 phase shift gapless between all stages and produces some "bypassing" sounds with
2241 sine and triangle waveforms. The more you set the offset near 1 (starting from
2242 the 0.5) the faster the signal passes from the left to the right speaker.
2243
2244 The filter accepts the following options:
2245
2246 @table @option
2247 @item level_in
2248 Set input gain. By default it is 1. Range is [0.015625 - 64].
2249
2250 @item level_out
2251 Set output gain. By default it is 1. Range is [0.015625 - 64].
2252
2253 @item mode
2254 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2255 sawup or sawdown. Default is sine.
2256
2257 @item amount
2258 Set modulation. Define how much of original signal is affected by the LFO.
2259
2260 @item offset_l
2261 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2262
2263 @item offset_r
2264 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2265
2266 @item width
2267 Set pulse width. Default is 1. Allowed range is [0 - 2].
2268
2269 @item timing
2270 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2271
2272 @item bpm
2273 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2274 is set to bpm.
2275
2276 @item ms
2277 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2278 is set to ms.
2279
2280 @item hz
2281 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2282 if timing is set to hz.
2283 @end table
2284
2285 @anchor{aresample}
2286 @section aresample
2287
2288 Resample the input audio to the specified parameters, using the
2289 libswresample library. If none are specified then the filter will
2290 automatically convert between its input and output.
2291
2292 This filter is also able to stretch/squeeze the audio data to make it match
2293 the timestamps or to inject silence / cut out audio to make it match the
2294 timestamps, do a combination of both or do neither.
2295
2296 The filter accepts the syntax
2297 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2298 expresses a sample rate and @var{resampler_options} is a list of
2299 @var{key}=@var{value} pairs, separated by ":". See the
2300 @ref{Resampler Options,,"Resampler Options" section in the
2301 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2302 for the complete list of supported options.
2303
2304 @subsection Examples
2305
2306 @itemize
2307 @item
2308 Resample the input audio to 44100Hz:
2309 @example
2310 aresample=44100
2311 @end example
2312
2313 @item
2314 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2315 samples per second compensation:
2316 @example
2317 aresample=async=1000
2318 @end example
2319 @end itemize
2320
2321 @section areverse
2322
2323 Reverse an audio clip.
2324
2325 Warning: This filter requires memory to buffer the entire clip, so trimming
2326 is suggested.
2327
2328 @subsection Examples
2329
2330 @itemize
2331 @item
2332 Take the first 5 seconds of a clip, and reverse it.
2333 @example
2334 atrim=end=5,areverse
2335 @end example
2336 @end itemize
2337
2338 @section arnndn
2339
2340 Reduce noise from speech using Recurrent Neural Networks.
2341
2342 This filter accepts the following options:
2343
2344 @table @option
2345 @item model, m
2346 Set train model file to load. This option is always required.
2347
2348 @item mix
2349 Set how much to mix filtered samples into final output.
2350 Allowed range is from -1 to 1. Default value is 1.
2351 Negative values are special, they set how much to keep filtered noise
2352 in the final filter output. Set this option to -1 to hear actual
2353 noise removed from input signal.
2354 @end table
2355
2356 @subsection Commands
2357
2358 This filter supports the all above options as @ref{commands}.
2359
2360 @section asetnsamples
2361
2362 Set the number of samples per each output audio frame.
2363
2364 The last output packet may contain a different number of samples, as
2365 the filter will flush all the remaining samples when the input audio
2366 signals its end.
2367
2368 The filter accepts the following options:
2369
2370 @table @option
2371
2372 @item nb_out_samples, n
2373 Set the number of frames per each output audio frame. The number is
2374 intended as the number of samples @emph{per each channel}.
2375 Default value is 1024.
2376
2377 @item pad, p
2378 If set to 1, the filter will pad the last audio frame with zeroes, so
2379 that the last frame will contain the same number of samples as the
2380 previous ones. Default value is 1.
2381 @end table
2382
2383 For example, to set the number of per-frame samples to 1234 and
2384 disable padding for the last frame, use:
2385 @example
2386 asetnsamples=n=1234:p=0
2387 @end example
2388
2389 @section asetrate
2390
2391 Set the sample rate without altering the PCM data.
2392 This will result in a change of speed and pitch.
2393
2394 The filter accepts the following options:
2395
2396 @table @option
2397 @item sample_rate, r
2398 Set the output sample rate. Default is 44100 Hz.
2399 @end table
2400
2401 @section ashowinfo
2402
2403 Show a line containing various information for each input audio frame.
2404 The input audio is not modified.
2405
2406 The shown line contains a sequence of key/value pairs of the form
2407 @var{key}:@var{value}.
2408
2409 The following values are shown in the output:
2410
2411 @table @option
2412 @item n
2413 The (sequential) number of the input frame, starting from 0.
2414
2415 @item pts
2416 The presentation timestamp of the input frame, in time base units; the time base
2417 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2418
2419 @item pts_time
2420 The presentation timestamp of the input frame in seconds.
2421
2422 @item pos
2423 position of the frame in the input stream, -1 if this information in
2424 unavailable and/or meaningless (for example in case of synthetic audio)
2425
2426 @item fmt
2427 The sample format.
2428
2429 @item chlayout
2430 The channel layout.
2431
2432 @item rate
2433 The sample rate for the audio frame.
2434
2435 @item nb_samples
2436 The number of samples (per channel) in the frame.
2437
2438 @item checksum
2439 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2440 audio, the data is treated as if all the planes were concatenated.
2441
2442 @item plane_checksums
2443 A list of Adler-32 checksums for each data plane.
2444 @end table
2445
2446 @section asoftclip
2447 Apply audio soft clipping.
2448
2449 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2450 along a smooth curve, rather than the abrupt shape of hard-clipping.
2451
2452 This filter accepts the following options:
2453
2454 @table @option
2455 @item type
2456 Set type of soft-clipping.
2457
2458 It accepts the following values:
2459 @table @option
2460 @item hard
2461 @item tanh
2462 @item atan
2463 @item cubic
2464 @item exp
2465 @item alg
2466 @item quintic
2467 @item sin
2468 @item erf
2469 @end table
2470
2471 @item threshold
2472 Set threshold from where to start clipping. Default value is 0dB or 1.
2473
2474 @item output
2475 Set gain applied to output. Default value is 0dB or 1.
2476
2477 @item param
2478 Set additional parameter which controls sigmoid function.
2479
2480 @item oversample
2481 Set oversampling factor.
2482 @end table
2483
2484 @subsection Commands
2485
2486 This filter supports the all above options as @ref{commands}.
2487
2488 @section asr
2489 Automatic Speech Recognition
2490
2491 This filter uses PocketSphinx for speech recognition. To enable
2492 compilation of this filter, you need to configure FFmpeg with
2493 @code{--enable-pocketsphinx}.
2494
2495 It accepts the following options:
2496
2497 @table @option
2498 @item rate
2499 Set sampling rate of input audio. Defaults is @code{16000}.
2500 This need to match speech models, otherwise one will get poor results.
2501
2502 @item hmm
2503 Set dictionary containing acoustic model files.
2504
2505 @item dict
2506 Set pronunciation dictionary.
2507
2508 @item lm
2509 Set language model file.
2510
2511 @item lmctl
2512 Set language model set.
2513
2514 @item lmname
2515 Set which language model to use.
2516
2517 @item logfn
2518 Set output for log messages.
2519 @end table
2520
2521 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2522
2523 @anchor{astats}
2524 @section astats
2525
2526 Display time domain statistical information about the audio channels.
2527 Statistics are calculated and displayed for each audio channel and,
2528 where applicable, an overall figure is also given.
2529
2530 It accepts the following option:
2531 @table @option
2532 @item length
2533 Short window length in seconds, used for peak and trough RMS measurement.
2534 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2535
2536 @item metadata
2537
2538 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2539 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2540 disabled.
2541
2542 Available keys for each channel are:
2543 DC_offset
2544 Min_level
2545 Max_level
2546 Min_difference
2547 Max_difference
2548 Mean_difference
2549 RMS_difference
2550 Peak_level
2551 RMS_peak
2552 RMS_trough
2553 Crest_factor
2554 Flat_factor
2555 Peak_count
2556 Noise_floor
2557 Noise_floor_count
2558 Bit_depth
2559 Dynamic_range
2560 Zero_crossings
2561 Zero_crossings_rate
2562 Number_of_NaNs
2563 Number_of_Infs
2564 Number_of_denormals
2565
2566 and for Overall:
2567 DC_offset
2568 Min_level
2569 Max_level
2570 Min_difference
2571 Max_difference
2572 Mean_difference
2573 RMS_difference
2574 Peak_level
2575 RMS_level
2576 RMS_peak
2577 RMS_trough
2578 Flat_factor
2579 Peak_count
2580 Noise_floor
2581 Noise_floor_count
2582 Bit_depth
2583 Number_of_samples
2584 Number_of_NaNs
2585 Number_of_Infs
2586 Number_of_denormals
2587
2588 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2589 this @code{lavfi.astats.Overall.Peak_count}.
2590
2591 For description what each key means read below.
2592
2593 @item reset
2594 Set number of frame after which stats are going to be recalculated.
2595 Default is disabled.
2596
2597 @item measure_perchannel
2598 Select the entries which need to be measured per channel. The metadata keys can
2599 be used as flags, default is @option{all} which measures everything.
2600 @option{none} disables all per channel measurement.
2601
2602 @item measure_overall
2603 Select the entries which need to be measured overall. The metadata keys can
2604 be used as flags, default is @option{all} which measures everything.
2605 @option{none} disables all overall measurement.
2606
2607 @end table
2608
2609 A description of each shown parameter follows:
2610
2611 @table @option
2612 @item DC offset
2613 Mean amplitude displacement from zero.
2614
2615 @item Min level
2616 Minimal sample level.
2617
2618 @item Max level
2619 Maximal sample level.
2620
2621 @item Min difference
2622 Minimal difference between two consecutive samples.
2623
2624 @item Max difference
2625 Maximal difference between two consecutive samples.
2626
2627 @item Mean difference
2628 Mean difference between two consecutive samples.
2629 The average of each difference between two consecutive samples.
2630
2631 @item RMS difference
2632 Root Mean Square difference between two consecutive samples.
2633
2634 @item Peak level dB
2635 @item RMS level dB
2636 Standard peak and RMS level measured in dBFS.
2637
2638 @item RMS peak dB
2639 @item RMS trough dB
2640 Peak and trough values for RMS level measured over a short window.
2641
2642 @item Crest factor
2643 Standard ratio of peak to RMS level (note: not in dB).
2644
2645 @item Flat factor
2646 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2647 (i.e. either @var{Min level} or @var{Max level}).
2648
2649 @item Peak count
2650 Number of occasions (not the number of samples) that the signal attained either
2651 @var{Min level} or @var{Max level}.
2652
2653 @item Noise floor dB
2654 Minimum local peak measured in dBFS over a short window.
2655
2656 @item Noise floor count
2657 Number of occasions (not the number of samples) that the signal attained
2658 @var{Noise floor}.
2659
2660 @item Bit depth
2661 Overall bit depth of audio. Number of bits used for each sample.
2662
2663 @item Dynamic range
2664 Measured dynamic range of audio in dB.
2665
2666 @item Zero crossings
2667 Number of points where the waveform crosses the zero level axis.
2668
2669 @item Zero crossings rate
2670 Rate of Zero crossings and number of audio samples.
2671 @end table
2672
2673 @section asubboost
2674 Boost subwoofer frequencies.
2675
2676 The filter accepts the following options:
2677
2678 @table @option
2679 @item dry
2680 Set dry gain, how much of original signal is kept. Allowed range is from 0 to 1.
2681 Default value is 0.7.
2682
2683 @item wet
2684 Set wet gain, how much of filtered signal is kept. Allowed range is from 0 to 1.
2685 Default value is 0.7.
2686
2687 @item decay
2688 Set delay line decay gain value. Allowed range is from 0 to 1.
2689 Default value is 0.7.
2690
2691 @item feedback
2692 Set delay line feedback gain value. Allowed range is from 0 to 1.
2693 Default value is 0.9.
2694
2695 @item cutoff
2696 Set cutoff frequency in Hertz. Allowed range is 50 to 900.
2697 Default value is 100.
2698
2699 @item slope
2700 Set slope amount for cutoff frequency. Allowed range is 0.0001 to 1.
2701 Default value is 0.5.
2702
2703 @item delay
2704 Set delay. Allowed range is from 1 to 100.
2705 Default value is 20.
2706 @end table
2707
2708 @subsection Commands
2709
2710 This filter supports the all above options as @ref{commands}.
2711
2712 @section asubcut
2713 Cut subwoofer frequencies.
2714
2715 This filter allows to set custom, steeper
2716 roll off than highpass filter, and thus is able to more attenuate
2717 frequency content in stop-band.
2718
2719 The filter accepts the following options:
2720
2721 @table @option
2722 @item cutoff
2723 Set cutoff frequency in Hertz. Allowed range is 2 to 200.
2724 Default value is 20.
2725
2726 @item order
2727 Set filter order. Available values are from 3 to 20.
2728 Default value is 10.
2729
2730 @item level
2731 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2732 @end table
2733
2734 @subsection Commands
2735
2736 This filter supports the all above options as @ref{commands}.
2737
2738 @section asupercut
2739 Cut super frequencies.
2740
2741 The filter accepts the following options:
2742
2743 @table @option
2744 @item cutoff
2745 Set cutoff frequency in Hertz. Allowed range is 20000 to 192000.
2746 Default value is 20000.
2747
2748 @item order
2749 Set filter order. Available values are from 3 to 20.
2750 Default value is 10.
2751
2752 @item level
2753 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2754 @end table
2755
2756 @subsection Commands
2757
2758 This filter supports the all above options as @ref{commands}.
2759
2760 @section asuperpass
2761 Apply high order Butterworth band-pass filter.
2762
2763 The filter accepts the following options:
2764
2765 @table @option
2766 @item centerf
2767 Set center frequency in Hertz. Allowed range is 2 to 999999.
2768 Default value is 1000.
2769
2770 @item order
2771 Set filter order. Available values are from 4 to 20.
2772 Default value is 4.
2773
2774 @item qfactor
2775 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2776
2777 @item level
2778 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2779 @end table
2780
2781 @subsection Commands
2782
2783 This filter supports the all above options as @ref{commands}.
2784
2785 @section asuperstop
2786 Apply high order Butterworth band-stop filter.
2787
2788 The filter accepts the following options:
2789
2790 @table @option
2791 @item centerf
2792 Set center frequency in Hertz. Allowed range is 2 to 999999.
2793 Default value is 1000.
2794
2795 @item order
2796 Set filter order. Available values are from 4 to 20.
2797 Default value is 4.
2798
2799 @item qfactor
2800 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2801
2802 @item level
2803 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2804 @end table
2805
2806 @subsection Commands
2807
2808 This filter supports the all above options as @ref{commands}.
2809
2810 @section atempo
2811
2812 Adjust audio tempo.
2813
2814 The filter accepts exactly one parameter, the audio tempo. If not
2815 specified then the filter will assume nominal 1.0 tempo. Tempo must
2816 be in the [0.5, 100.0] range.
2817
2818 Note that tempo greater than 2 will skip some samples rather than
2819 blend them in.  If for any reason this is a concern it is always
2820 possible to daisy-chain several instances of atempo to achieve the
2821 desired product tempo.
2822
2823 @subsection Examples
2824
2825 @itemize
2826 @item
2827 Slow down audio to 80% tempo:
2828 @example
2829 atempo=0.8
2830 @end example
2831
2832 @item
2833 To speed up audio to 300% tempo:
2834 @example
2835 atempo=3
2836 @end example
2837
2838 @item
2839 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2840 @example
2841 atempo=sqrt(3),atempo=sqrt(3)
2842 @end example
2843 @end itemize
2844
2845 @subsection Commands
2846
2847 This filter supports the following commands:
2848 @table @option
2849 @item tempo
2850 Change filter tempo scale factor.
2851 Syntax for the command is : "@var{tempo}"
2852 @end table
2853
2854 @section atrim
2855
2856 Trim the input so that the output contains one continuous subpart of the input.
2857
2858 It accepts the following parameters:
2859 @table @option
2860 @item start
2861 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2862 sample with the timestamp @var{start} will be the first sample in the output.
2863
2864 @item end
2865 Specify time of the first audio sample that will be dropped, i.e. the
2866 audio sample immediately preceding the one with the timestamp @var{end} will be
2867 the last sample in the output.
2868
2869 @item start_pts
2870 Same as @var{start}, except this option sets the start timestamp in samples
2871 instead of seconds.
2872
2873 @item end_pts
2874 Same as @var{end}, except this option sets the end timestamp in samples instead
2875 of seconds.
2876
2877 @item duration
2878 The maximum duration of the output in seconds.
2879
2880 @item start_sample
2881 The number of the first sample that should be output.
2882
2883 @item end_sample
2884 The number of the first sample that should be dropped.
2885 @end table
2886
2887 @option{start}, @option{end}, and @option{duration} are expressed as time
2888 duration specifications; see
2889 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2890
2891 Note that the first two sets of the start/end options and the @option{duration}
2892 option look at the frame timestamp, while the _sample options simply count the
2893 samples that pass through the filter. So start/end_pts and start/end_sample will
2894 give different results when the timestamps are wrong, inexact or do not start at
2895 zero. Also note that this filter does not modify the timestamps. If you wish
2896 to have the output timestamps start at zero, insert the asetpts filter after the
2897 atrim filter.
2898
2899 If multiple start or end options are set, this filter tries to be greedy and
2900 keep all samples that match at least one of the specified constraints. To keep
2901 only the part that matches all the constraints at once, chain multiple atrim
2902 filters.
2903
2904 The defaults are such that all the input is kept. So it is possible to set e.g.
2905 just the end values to keep everything before the specified time.
2906
2907 Examples:
2908 @itemize
2909 @item
2910 Drop everything except the second minute of input:
2911 @example
2912 ffmpeg -i INPUT -af atrim=60:120
2913 @end example
2914
2915 @item
2916 Keep only the first 1000 samples:
2917 @example
2918 ffmpeg -i INPUT -af atrim=end_sample=1000
2919 @end example
2920
2921 @end itemize
2922
2923 @section axcorrelate
2924 Calculate normalized cross-correlation between two input audio streams.
2925
2926 Resulted samples are always between -1 and 1 inclusive.
2927 If result is 1 it means two input samples are highly correlated in that selected segment.
2928 Result 0 means they are not correlated at all.
2929 If result is -1 it means two input samples are out of phase, which means they cancel each
2930 other.
2931
2932 The filter accepts the following options:
2933
2934 @table @option
2935 @item size
2936 Set size of segment over which cross-correlation is calculated.
2937 Default is 256. Allowed range is from 2 to 131072.
2938
2939 @item algo
2940 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2941 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2942 are always zero and thus need much less calculations to make.
2943 This is generally not true, but is valid for typical audio streams.
2944 @end table
2945
2946 @subsection Examples
2947
2948 @itemize
2949 @item
2950 Calculate correlation between channels in stereo audio stream:
2951 @example
2952 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2953 @end example
2954 @end itemize
2955
2956 @section bandpass
2957
2958 Apply a two-pole Butterworth band-pass filter with central
2959 frequency @var{frequency}, and (3dB-point) band-width width.
2960 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2961 instead of the default: constant 0dB peak gain.
2962 The filter roll off at 6dB per octave (20dB per decade).
2963
2964 The filter accepts the following options:
2965
2966 @table @option
2967 @item frequency, f
2968 Set the filter's central frequency. Default is @code{3000}.
2969
2970 @item csg
2971 Constant skirt gain if set to 1. Defaults to 0.
2972
2973 @item width_type, t
2974 Set method to specify band-width of filter.
2975 @table @option
2976 @item h
2977 Hz
2978 @item q
2979 Q-Factor
2980 @item o
2981 octave
2982 @item s
2983 slope
2984 @item k
2985 kHz
2986 @end table
2987
2988 @item width, w
2989 Specify the band-width of a filter in width_type units.
2990
2991 @item mix, m
2992 How much to use filtered signal in output. Default is 1.
2993 Range is between 0 and 1.
2994
2995 @item channels, c
2996 Specify which channels to filter, by default all available are filtered.
2997
2998 @item normalize, n
2999 Normalize biquad coefficients, by default is disabled.
3000 Enabling it will normalize magnitude response at DC to 0dB.
3001
3002 @item transform, a
3003 Set transform type of IIR filter.
3004 @table @option
3005 @item di
3006 @item dii
3007 @item tdii
3008 @item latt
3009 @end table
3010
3011 @item precision, r
3012 Set precison of filtering.
3013 @table @option
3014 @item auto
3015 Pick automatic sample format depending on surround filters.
3016 @item s16
3017 Always use signed 16-bit.
3018 @item s32
3019 Always use signed 32-bit.
3020 @item f32
3021 Always use float 32-bit.
3022 @item f64
3023 Always use float 64-bit.
3024 @end table
3025 @end table
3026
3027 @subsection Commands
3028
3029 This filter supports the following commands:
3030 @table @option
3031 @item frequency, f
3032 Change bandpass frequency.
3033 Syntax for the command is : "@var{frequency}"
3034
3035 @item width_type, t
3036 Change bandpass width_type.
3037 Syntax for the command is : "@var{width_type}"
3038
3039 @item width, w
3040 Change bandpass width.
3041 Syntax for the command is : "@var{width}"
3042
3043 @item mix, m
3044 Change bandpass mix.
3045 Syntax for the command is : "@var{mix}"
3046 @end table
3047
3048 @section bandreject
3049
3050 Apply a two-pole Butterworth band-reject filter with central
3051 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
3052 The filter roll off at 6dB per octave (20dB per decade).
3053
3054 The filter accepts the following options:
3055
3056 @table @option
3057 @item frequency, f
3058 Set the filter's central frequency. Default is @code{3000}.
3059
3060 @item width_type, t
3061 Set method to specify band-width of filter.
3062 @table @option
3063 @item h
3064 Hz
3065 @item q
3066 Q-Factor
3067 @item o
3068 octave
3069 @item s
3070 slope
3071 @item k
3072 kHz
3073 @end table
3074
3075 @item width, w
3076 Specify the band-width of a filter in width_type units.
3077
3078 @item mix, m
3079 How much to use filtered signal in output. Default is 1.
3080 Range is between 0 and 1.
3081
3082 @item channels, c
3083 Specify which channels to filter, by default all available are filtered.
3084
3085 @item normalize, n
3086 Normalize biquad coefficients, by default is disabled.
3087 Enabling it will normalize magnitude response at DC to 0dB.
3088
3089 @item transform, a
3090 Set transform type of IIR filter.
3091 @table @option
3092 @item di
3093 @item dii
3094 @item tdii
3095 @item latt
3096 @end table
3097
3098 @item precision, r
3099 Set precison of filtering.
3100 @table @option
3101 @item auto
3102 Pick automatic sample format depending on surround filters.
3103 @item s16
3104 Always use signed 16-bit.
3105 @item s32
3106 Always use signed 32-bit.
3107 @item f32
3108 Always use float 32-bit.
3109 @item f64
3110 Always use float 64-bit.
3111 @end table
3112 @end table
3113
3114 @subsection Commands
3115
3116 This filter supports the following commands:
3117 @table @option
3118 @item frequency, f
3119 Change bandreject frequency.
3120 Syntax for the command is : "@var{frequency}"
3121
3122 @item width_type, t
3123 Change bandreject width_type.
3124 Syntax for the command is : "@var{width_type}"
3125
3126 @item width, w
3127 Change bandreject width.
3128 Syntax for the command is : "@var{width}"
3129
3130 @item mix, m
3131 Change bandreject mix.
3132 Syntax for the command is : "@var{mix}"
3133 @end table
3134
3135 @section bass, lowshelf
3136
3137 Boost or cut the bass (lower) frequencies of the audio using a two-pole
3138 shelving filter with a response similar to that of a standard
3139 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3140
3141 The filter accepts the following options:
3142
3143 @table @option
3144 @item gain, g
3145 Give the gain at 0 Hz. Its useful range is about -20
3146 (for a large cut) to +20 (for a large boost).
3147 Beware of clipping when using a positive gain.
3148
3149 @item frequency, f
3150 Set the filter's central frequency and so can be used
3151 to extend or reduce the frequency range to be boosted or cut.
3152 The default value is @code{100} Hz.
3153
3154 @item width_type, t
3155 Set method to specify band-width of filter.
3156 @table @option
3157 @item h
3158 Hz
3159 @item q
3160 Q-Factor
3161 @item o
3162 octave
3163 @item s
3164 slope
3165 @item k
3166 kHz
3167 @end table
3168
3169 @item width, w
3170 Determine how steep is the filter's shelf transition.
3171
3172 @item poles, p
3173 Set number of poles. Default is 2.
3174
3175 @item mix, m
3176 How much to use filtered signal in output. Default is 1.
3177 Range is between 0 and 1.
3178
3179 @item channels, c
3180 Specify which channels to filter, by default all available are filtered.
3181
3182 @item normalize, n
3183 Normalize biquad coefficients, by default is disabled.
3184 Enabling it will normalize magnitude response at DC to 0dB.
3185
3186 @item transform, a
3187 Set transform type of IIR filter.
3188 @table @option
3189 @item di
3190 @item dii
3191 @item tdii
3192 @item latt
3193 @end table
3194
3195 @item precision, r
3196 Set precison of filtering.
3197 @table @option
3198 @item auto
3199 Pick automatic sample format depending on surround filters.
3200 @item s16
3201 Always use signed 16-bit.
3202 @item s32
3203 Always use signed 32-bit.
3204 @item f32
3205 Always use float 32-bit.
3206 @item f64
3207 Always use float 64-bit.
3208 @end table
3209 @end table
3210
3211 @subsection Commands
3212
3213 This filter supports the following commands:
3214 @table @option
3215 @item frequency, f
3216 Change bass frequency.
3217 Syntax for the command is : "@var{frequency}"
3218
3219 @item width_type, t
3220 Change bass width_type.
3221 Syntax for the command is : "@var{width_type}"
3222
3223 @item width, w
3224 Change bass width.
3225 Syntax for the command is : "@var{width}"
3226
3227 @item gain, g
3228 Change bass gain.
3229 Syntax for the command is : "@var{gain}"
3230
3231 @item mix, m
3232 Change bass mix.
3233 Syntax for the command is : "@var{mix}"
3234 @end table
3235
3236 @section biquad
3237
3238 Apply a biquad IIR filter with the given coefficients.
3239 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
3240 are the numerator and denominator coefficients respectively.
3241 and @var{channels}, @var{c} specify which channels to filter, by default all
3242 available are filtered.
3243
3244 @subsection Commands
3245
3246 This filter supports the following commands:
3247 @table @option
3248 @item a0
3249 @item a1
3250 @item a2
3251 @item b0
3252 @item b1
3253 @item b2
3254 Change biquad parameter.
3255 Syntax for the command is : "@var{value}"
3256
3257 @item mix, m
3258 How much to use filtered signal in output. Default is 1.
3259 Range is between 0 and 1.
3260
3261 @item channels, c
3262 Specify which channels to filter, by default all available are filtered.
3263
3264 @item normalize, n
3265 Normalize biquad coefficients, by default is disabled.
3266 Enabling it will normalize magnitude response at DC to 0dB.
3267
3268 @item transform, a
3269 Set transform type of IIR filter.
3270 @table @option
3271 @item di
3272 @item dii
3273 @item tdii
3274 @item latt
3275 @end table
3276
3277 @item precision, r
3278 Set precison of filtering.
3279 @table @option
3280 @item auto
3281 Pick automatic sample format depending on surround filters.
3282 @item s16
3283 Always use signed 16-bit.
3284 @item s32
3285 Always use signed 32-bit.
3286 @item f32
3287 Always use float 32-bit.
3288 @item f64
3289 Always use float 64-bit.
3290 @end table
3291 @end table
3292
3293 @section bs2b
3294 Bauer stereo to binaural transformation, which improves headphone listening of
3295 stereo audio records.
3296
3297 To enable compilation of this filter you need to configure FFmpeg with
3298 @code{--enable-libbs2b}.
3299
3300 It accepts the following parameters:
3301 @table @option
3302
3303 @item profile
3304 Pre-defined crossfeed level.
3305 @table @option
3306
3307 @item default
3308 Default level (fcut=700, feed=50).
3309
3310 @item cmoy
3311 Chu Moy circuit (fcut=700, feed=60).
3312
3313 @item jmeier
3314 Jan Meier circuit (fcut=650, feed=95).
3315
3316 @end table
3317
3318 @item fcut
3319 Cut frequency (in Hz).
3320
3321 @item feed
3322 Feed level (in Hz).
3323
3324 @end table
3325
3326 @section channelmap
3327
3328 Remap input channels to new locations.
3329
3330 It accepts the following parameters:
3331 @table @option
3332 @item map
3333 Map channels from input to output. The argument is a '|'-separated list of
3334 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
3335 @var{in_channel} form. @var{in_channel} can be either the name of the input
3336 channel (e.g. FL for front left) or its index in the input channel layout.
3337 @var{out_channel} is the name of the output channel or its index in the output
3338 channel layout. If @var{out_channel} is not given then it is implicitly an
3339 index, starting with zero and increasing by one for each mapping.
3340
3341 @item channel_layout
3342 The channel layout of the output stream.
3343 @end table
3344
3345 If no mapping is present, the filter will implicitly map input channels to
3346 output channels, preserving indices.
3347
3348 @subsection Examples
3349
3350 @itemize
3351 @item
3352 For example, assuming a 5.1+downmix input MOV file,
3353 @example
3354 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
3355 @end example
3356 will create an output WAV file tagged as stereo from the downmix channels of
3357 the input.
3358
3359 @item
3360 To fix a 5.1 WAV improperly encoded in AAC's native channel order
3361 @example
3362 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
3363 @end example
3364 @end itemize
3365
3366 @section channelsplit
3367
3368 Split each channel from an input audio stream into a separate output stream.
3369
3370 It accepts the following parameters:
3371 @table @option
3372 @item channel_layout
3373 The channel layout of the input stream. The default is "stereo".
3374 @item channels
3375 A channel layout describing the channels to be extracted as separate output streams
3376 or "all" to extract each input channel as a separate stream. The default is "all".
3377
3378 Choosing channels not present in channel layout in the input will result in an error.
3379 @end table
3380
3381 @subsection Examples
3382
3383 @itemize
3384 @item
3385 For example, assuming a stereo input MP3 file,
3386 @example
3387 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
3388 @end example
3389 will create an output Matroska file with two audio streams, one containing only
3390 the left channel and the other the right channel.
3391
3392 @item
3393 Split a 5.1 WAV file into per-channel files:
3394 @example
3395 ffmpeg -i in.wav -filter_complex
3396 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
3397 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
3398 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
3399 side_right.wav
3400 @end example
3401
3402 @item
3403 Extract only LFE from a 5.1 WAV file:
3404 @example
3405 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
3406 -map '[LFE]' lfe.wav
3407 @end example
3408 @end itemize
3409
3410 @section chorus
3411 Add a chorus effect to the audio.
3412
3413 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
3414
3415 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
3416 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
3417 The modulation depth defines the range the modulated delay is played before or after
3418 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
3419 sound tuned around the original one, like in a chorus where some vocals are slightly
3420 off key.
3421
3422 It accepts the following parameters:
3423 @table @option
3424 @item in_gain
3425 Set input gain. Default is 0.4.
3426
3427 @item out_gain
3428 Set output gain. Default is 0.4.
3429
3430 @item delays
3431 Set delays. A typical delay is around 40ms to 60ms.
3432
3433 @item decays
3434 Set decays.
3435
3436 @item speeds
3437 Set speeds.
3438
3439 @item depths
3440 Set depths.
3441 @end table
3442
3443 @subsection Examples
3444
3445 @itemize
3446 @item
3447 A single delay:
3448 @example
3449 chorus=0.7:0.9:55:0.4:0.25:2
3450 @end example
3451
3452 @item
3453 Two delays:
3454 @example
3455 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
3456 @end example
3457
3458 @item
3459 Fuller sounding chorus with three delays:
3460 @example
3461 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
3462 @end example
3463 @end itemize
3464
3465 @section compand
3466 Compress or expand the audio's dynamic range.
3467
3468 It accepts the following parameters:
3469
3470 @table @option
3471
3472 @item attacks
3473 @item decays
3474 A list of times in seconds for each channel over which the instantaneous level
3475 of the input signal is averaged to determine its volume. @var{attacks} refers to
3476 increase of volume and @var{decays} refers to decrease of volume. For most
3477 situations, the attack time (response to the audio getting louder) should be
3478 shorter than the decay time, because the human ear is more sensitive to sudden
3479 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3480 a typical value for decay is 0.8 seconds.
3481 If specified number of attacks & decays is lower than number of channels, the last
3482 set attack/decay will be used for all remaining channels.
3483
3484 @item points
3485 A list of points for the transfer function, specified in dB relative to the
3486 maximum possible signal amplitude. Each key points list must be defined using
3487 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3488 @code{x0/y0 x1/y1 x2/y2 ....}
3489
3490 The input values must be in strictly increasing order but the transfer function
3491 does not have to be monotonically rising. The point @code{0/0} is assumed but
3492 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3493 function are @code{-70/-70|-60/-20|1/0}.
3494
3495 @item soft-knee
3496 Set the curve radius in dB for all joints. It defaults to 0.01.
3497
3498 @item gain
3499 Set the additional gain in dB to be applied at all points on the transfer
3500 function. This allows for easy adjustment of the overall gain.
3501 It defaults to 0.
3502
3503 @item volume
3504 Set an initial volume, in dB, to be assumed for each channel when filtering
3505 starts. This permits the user to supply a nominal level initially, so that, for
3506 example, a very large gain is not applied to initial signal levels before the
3507 companding has begun to operate. A typical value for audio which is initially
3508 quiet is -90 dB. It defaults to 0.
3509
3510 @item delay
3511 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3512 delayed before being fed to the volume adjuster. Specifying a delay
3513 approximately equal to the attack/decay times allows the filter to effectively
3514 operate in predictive rather than reactive mode. It defaults to 0.
3515
3516 @end table
3517
3518 @subsection Examples
3519
3520 @itemize
3521 @item
3522 Make music with both quiet and loud passages suitable for listening to in a
3523 noisy environment:
3524 @example
3525 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3526 @end example
3527
3528 Another example for audio with whisper and explosion parts:
3529 @example
3530 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3531 @end example
3532
3533 @item
3534 A noise gate for when the noise is at a lower level than the signal:
3535 @example
3536 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3537 @end example
3538
3539 @item
3540 Here is another noise gate, this time for when the noise is at a higher level
3541 than the signal (making it, in some ways, similar to squelch):
3542 @example
3543 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3544 @end example
3545
3546 @item
3547 2:1 compression starting at -6dB:
3548 @example
3549 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3550 @end example
3551
3552 @item
3553 2:1 compression starting at -9dB:
3554 @example
3555 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3556 @end example
3557
3558 @item
3559 2:1 compression starting at -12dB:
3560 @example
3561 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3562 @end example
3563
3564 @item
3565 2:1 compression starting at -18dB:
3566 @example
3567 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3568 @end example
3569
3570 @item
3571 3:1 compression starting at -15dB:
3572 @example
3573 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3574 @end example
3575
3576 @item
3577 Compressor/Gate:
3578 @example
3579 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3580 @end example
3581
3582 @item
3583 Expander:
3584 @example
3585 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
3586 @end example
3587
3588 @item
3589 Hard limiter at -6dB:
3590 @example
3591 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3592 @end example
3593
3594 @item
3595 Hard limiter at -12dB:
3596 @example
3597 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3598 @end example
3599
3600 @item
3601 Hard noise gate at -35 dB:
3602 @example
3603 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3604 @end example
3605
3606 @item
3607 Soft limiter:
3608 @example
3609 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3610 @end example
3611 @end itemize
3612
3613 @section compensationdelay
3614
3615 Compensation Delay Line is a metric based delay to compensate differing
3616 positions of microphones or speakers.
3617
3618 For example, you have recorded guitar with two microphones placed in
3619 different locations. Because the front of sound wave has fixed speed in
3620 normal conditions, the phasing of microphones can vary and depends on
3621 their location and interposition. The best sound mix can be achieved when
3622 these microphones are in phase (synchronized). Note that a distance of
3623 ~30 cm between microphones makes one microphone capture the signal in
3624 antiphase to the other microphone. That makes the final mix sound moody.
3625 This filter helps to solve phasing problems by adding different delays
3626 to each microphone track and make them synchronized.
3627
3628 The best result can be reached when you take one track as base and
3629 synchronize other tracks one by one with it.
3630 Remember that synchronization/delay tolerance depends on sample rate, too.
3631 Higher sample rates will give more tolerance.
3632
3633 The filter accepts the following parameters:
3634
3635 @table @option
3636 @item mm
3637 Set millimeters distance. This is compensation distance for fine tuning.
3638 Default is 0.
3639
3640 @item cm
3641 Set cm distance. This is compensation distance for tightening distance setup.
3642 Default is 0.
3643
3644 @item m
3645 Set meters distance. This is compensation distance for hard distance setup.
3646 Default is 0.
3647
3648 @item dry
3649 Set dry amount. Amount of unprocessed (dry) signal.
3650 Default is 0.
3651
3652 @item wet
3653 Set wet amount. Amount of processed (wet) signal.
3654 Default is 1.
3655
3656 @item temp
3657 Set temperature in degrees Celsius. This is the temperature of the environment.
3658 Default is 20.
3659 @end table
3660
3661 @section crossfeed
3662 Apply headphone crossfeed filter.
3663
3664 Crossfeed is the process of blending the left and right channels of stereo
3665 audio recording.
3666 It is mainly used to reduce extreme stereo separation of low frequencies.
3667
3668 The intent is to produce more speaker like sound to the listener.
3669
3670 The filter accepts the following options:
3671
3672 @table @option
3673 @item strength
3674 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3675 This sets gain of low shelf filter for side part of stereo image.
3676 Default is -6dB. Max allowed is -30db when strength is set to 1.
3677
3678 @item range
3679 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3680 This sets cut off frequency of low shelf filter. Default is cut off near
3681 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3682
3683 @item slope
3684 Set curve slope of low shelf filter. Default is 0.5.
3685 Allowed range is from 0.01 to 1.
3686
3687 @item level_in
3688 Set input gain. Default is 0.9.
3689
3690 @item level_out
3691 Set output gain. Default is 1.
3692 @end table
3693
3694 @subsection Commands
3695
3696 This filter supports the all above options as @ref{commands}.
3697
3698 @section crystalizer
3699 Simple algorithm for audio noise sharpening.
3700
3701 This filter linearly increases differences betweeen each audio sample.
3702
3703 The filter accepts the following options:
3704
3705 @table @option
3706 @item i
3707 Sets the intensity of effect (default: 2.0). Must be in range between -10.0 to 0
3708 (unchanged sound) to 10.0 (maximum effect).
3709 To inverse filtering use negative value.
3710
3711 @item c
3712 Enable clipping. By default is enabled.
3713 @end table
3714
3715 @subsection Commands
3716
3717 This filter supports the all above options as @ref{commands}.
3718
3719 @section dcshift
3720 Apply a DC shift to the audio.
3721
3722 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3723 in the recording chain) from the audio. The effect of a DC offset is reduced
3724 headroom and hence volume. The @ref{astats} filter can be used to determine if
3725 a signal has a DC offset.
3726
3727 @table @option
3728 @item shift
3729 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3730 the audio.
3731
3732 @item limitergain
3733 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3734 used to prevent clipping.
3735 @end table
3736
3737 @section deesser
3738
3739 Apply de-essing to the audio samples.
3740
3741 @table @option
3742 @item i
3743 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3744 Default is 0.
3745
3746 @item m
3747 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3748 Default is 0.5.
3749
3750 @item f
3751 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3752 Default is 0.5.
3753
3754 @item s
3755 Set the output mode.
3756
3757 It accepts the following values:
3758 @table @option
3759 @item i
3760 Pass input unchanged.
3761
3762 @item o
3763 Pass ess filtered out.
3764
3765 @item e
3766 Pass only ess.
3767
3768 Default value is @var{o}.
3769 @end table
3770
3771 @end table
3772
3773 @section drmeter
3774 Measure audio dynamic range.
3775
3776 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3777 is found in transition material. And anything less that 8 have very poor dynamics
3778 and is very compressed.
3779
3780 The filter accepts the following options:
3781
3782 @table @option
3783 @item length
3784 Set window length in seconds used to split audio into segments of equal length.
3785 Default is 3 seconds.
3786 @end table
3787
3788 @section dynaudnorm
3789 Dynamic Audio Normalizer.
3790
3791 This filter applies a certain amount of gain to the input audio in order
3792 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3793 contrast to more "simple" normalization algorithms, the Dynamic Audio
3794 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3795 This allows for applying extra gain to the "quiet" sections of the audio
3796 while avoiding distortions or clipping the "loud" sections. In other words:
3797 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3798 sections, in the sense that the volume of each section is brought to the
3799 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3800 this goal *without* applying "dynamic range compressing". It will retain 100%
3801 of the dynamic range *within* each section of the audio file.
3802
3803 @table @option
3804 @item framelen, f
3805 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3806 Default is 500 milliseconds.
3807 The Dynamic Audio Normalizer processes the input audio in small chunks,
3808 referred to as frames. This is required, because a peak magnitude has no
3809 meaning for just a single sample value. Instead, we need to determine the
3810 peak magnitude for a contiguous sequence of sample values. While a "standard"
3811 normalizer would simply use the peak magnitude of the complete file, the
3812 Dynamic Audio Normalizer determines the peak magnitude individually for each
3813 frame. The length of a frame is specified in milliseconds. By default, the
3814 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3815 been found to give good results with most files.
3816 Note that the exact frame length, in number of samples, will be determined
3817 automatically, based on the sampling rate of the individual input audio file.
3818
3819 @item gausssize, g
3820 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3821 number. Default is 31.
3822 Probably the most important parameter of the Dynamic Audio Normalizer is the
3823 @code{window size} of the Gaussian smoothing filter. The filter's window size
3824 is specified in frames, centered around the current frame. For the sake of
3825 simplicity, this must be an odd number. Consequently, the default value of 31
3826 takes into account the current frame, as well as the 15 preceding frames and
3827 the 15 subsequent frames. Using a larger window results in a stronger
3828 smoothing effect and thus in less gain variation, i.e. slower gain
3829 adaptation. Conversely, using a smaller window results in a weaker smoothing
3830 effect and thus in more gain variation, i.e. faster gain adaptation.
3831 In other words, the more you increase this value, the more the Dynamic Audio
3832 Normalizer will behave like a "traditional" normalization filter. On the
3833 contrary, the more you decrease this value, the more the Dynamic Audio
3834 Normalizer will behave like a dynamic range compressor.
3835
3836 @item peak, p
3837 Set the target peak value. This specifies the highest permissible magnitude
3838 level for the normalized audio input. This filter will try to approach the
3839 target peak magnitude as closely as possible, but at the same time it also
3840 makes sure that the normalized signal will never exceed the peak magnitude.
3841 A frame's maximum local gain factor is imposed directly by the target peak
3842 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3843 It is not recommended to go above this value.
3844
3845 @item maxgain, m
3846 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3847 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3848 factor for each input frame, i.e. the maximum gain factor that does not
3849 result in clipping or distortion. The maximum gain factor is determined by
3850 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3851 additionally bounds the frame's maximum gain factor by a predetermined
3852 (global) maximum gain factor. This is done in order to avoid excessive gain
3853 factors in "silent" or almost silent frames. By default, the maximum gain
3854 factor is 10.0, For most inputs the default value should be sufficient and
3855 it usually is not recommended to increase this value. Though, for input
3856 with an extremely low overall volume level, it may be necessary to allow even
3857 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3858 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3859 Instead, a "sigmoid" threshold function will be applied. This way, the
3860 gain factors will smoothly approach the threshold value, but never exceed that
3861 value.
3862
3863 @item targetrms, r
3864 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3865 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3866 This means that the maximum local gain factor for each frame is defined
3867 (only) by the frame's highest magnitude sample. This way, the samples can
3868 be amplified as much as possible without exceeding the maximum signal
3869 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3870 Normalizer can also take into account the frame's root mean square,
3871 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3872 determine the power of a time-varying signal. It is therefore considered
3873 that the RMS is a better approximation of the "perceived loudness" than
3874 just looking at the signal's peak magnitude. Consequently, by adjusting all
3875 frames to a constant RMS value, a uniform "perceived loudness" can be
3876 established. If a target RMS value has been specified, a frame's local gain
3877 factor is defined as the factor that would result in exactly that RMS value.
3878 Note, however, that the maximum local gain factor is still restricted by the
3879 frame's highest magnitude sample, in order to prevent clipping.
3880
3881 @item coupling, n
3882 Enable channels coupling. By default is enabled.
3883 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3884 amount. This means the same gain factor will be applied to all channels, i.e.
3885 the maximum possible gain factor is determined by the "loudest" channel.
3886 However, in some recordings, it may happen that the volume of the different
3887 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3888 In this case, this option can be used to disable the channel coupling. This way,
3889 the gain factor will be determined independently for each channel, depending
3890 only on the individual channel's highest magnitude sample. This allows for
3891 harmonizing the volume of the different channels.
3892
3893 @item correctdc, c
3894 Enable DC bias correction. By default is disabled.
3895 An audio signal (in the time domain) is a sequence of sample values.
3896 In the Dynamic Audio Normalizer these sample values are represented in the
3897 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3898 audio signal, or "waveform", should be centered around the zero point.
3899 That means if we calculate the mean value of all samples in a file, or in a
3900 single frame, then the result should be 0.0 or at least very close to that
3901 value. If, however, there is a significant deviation of the mean value from
3902 0.0, in either positive or negative direction, this is referred to as a
3903 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3904 Audio Normalizer provides optional DC bias correction.
3905 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3906 the mean value, or "DC correction" offset, of each input frame and subtract
3907 that value from all of the frame's sample values which ensures those samples
3908 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3909 boundaries, the DC correction offset values will be interpolated smoothly
3910 between neighbouring frames.
3911
3912 @item altboundary, b
3913 Enable alternative boundary mode. By default is disabled.
3914 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3915 around each frame. This includes the preceding frames as well as the
3916 subsequent frames. However, for the "boundary" frames, located at the very
3917 beginning and at the very end of the audio file, not all neighbouring
3918 frames are available. In particular, for the first few frames in the audio
3919 file, the preceding frames are not known. And, similarly, for the last few
3920 frames in the audio file, the subsequent frames are not known. Thus, the
3921 question arises which gain factors should be assumed for the missing frames
3922 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3923 to deal with this situation. The default boundary mode assumes a gain factor
3924 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3925 "fade out" at the beginning and at the end of the input, respectively.
3926
3927 @item compress, s
3928 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3929 By default, the Dynamic Audio Normalizer does not apply "traditional"
3930 compression. This means that signal peaks will not be pruned and thus the
3931 full dynamic range will be retained within each local neighbourhood. However,
3932 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3933 normalization algorithm with a more "traditional" compression.
3934 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3935 (thresholding) function. If (and only if) the compression feature is enabled,
3936 all input frames will be processed by a soft knee thresholding function prior
3937 to the actual normalization process. Put simply, the thresholding function is
3938 going to prune all samples whose magnitude exceeds a certain threshold value.
3939 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3940 value. Instead, the threshold value will be adjusted for each individual
3941 frame.
3942 In general, smaller parameters result in stronger compression, and vice versa.
3943 Values below 3.0 are not recommended, because audible distortion may appear.
3944
3945 @item threshold, t
3946 Set the target threshold value. This specifies the lowest permissible
3947 magnitude level for the audio input which will be normalized.
3948 If input frame volume is above this value frame will be normalized.
3949 Otherwise frame may not be normalized at all. The default value is set
3950 to 0, which means all input frames will be normalized.
3951 This option is mostly useful if digital noise is not wanted to be amplified.
3952 @end table
3953
3954 @subsection Commands
3955
3956 This filter supports the all above options as @ref{commands}.
3957
3958 @section earwax
3959
3960 Make audio easier to listen to on headphones.
3961
3962 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3963 so that when listened to on headphones the stereo image is moved from
3964 inside your head (standard for headphones) to outside and in front of
3965 the listener (standard for speakers).
3966
3967 Ported from SoX.
3968
3969 @section equalizer
3970
3971 Apply a two-pole peaking equalisation (EQ) filter. With this
3972 filter, the signal-level at and around a selected frequency can
3973 be increased or decreased, whilst (unlike bandpass and bandreject
3974 filters) that at all other frequencies is unchanged.
3975
3976 In order to produce complex equalisation curves, this filter can
3977 be given several times, each with a different central frequency.
3978
3979 The filter accepts the following options:
3980
3981 @table @option
3982 @item frequency, f
3983 Set the filter's central frequency in Hz.
3984
3985 @item width_type, t
3986 Set method to specify band-width of filter.
3987 @table @option
3988 @item h
3989 Hz
3990 @item q
3991 Q-Factor
3992 @item o
3993 octave
3994 @item s
3995 slope
3996 @item k
3997 kHz
3998 @end table
3999
4000 @item width, w
4001 Specify the band-width of a filter in width_type units.
4002
4003 @item gain, g
4004 Set the required gain or attenuation in dB.
4005 Beware of clipping when using a positive gain.
4006
4007 @item mix, m
4008 How much to use filtered signal in output. Default is 1.
4009 Range is between 0 and 1.
4010
4011 @item channels, c
4012 Specify which channels to filter, by default all available are filtered.
4013
4014 @item normalize, n
4015 Normalize biquad coefficients, by default is disabled.
4016 Enabling it will normalize magnitude response at DC to 0dB.
4017
4018 @item transform, a
4019 Set transform type of IIR filter.
4020 @table @option
4021 @item di
4022 @item dii
4023 @item tdii
4024 @item latt
4025 @end table
4026
4027 @item precision, r
4028 Set precison of filtering.
4029 @table @option
4030 @item auto
4031 Pick automatic sample format depending on surround filters.
4032 @item s16
4033 Always use signed 16-bit.
4034 @item s32
4035 Always use signed 32-bit.
4036 @item f32
4037 Always use float 32-bit.
4038 @item f64
4039 Always use float 64-bit.
4040 @end table
4041 @end table
4042
4043 @subsection Examples
4044 @itemize
4045 @item
4046 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
4047 @example
4048 equalizer=f=1000:t=h:width=200:g=-10
4049 @end example
4050
4051 @item
4052 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
4053 @example
4054 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
4055 @end example
4056 @end itemize
4057
4058 @subsection Commands
4059
4060 This filter supports the following commands:
4061 @table @option
4062 @item frequency, f
4063 Change equalizer frequency.
4064 Syntax for the command is : "@var{frequency}"
4065
4066 @item width_type, t
4067 Change equalizer width_type.
4068 Syntax for the command is : "@var{width_type}"
4069
4070 @item width, w
4071 Change equalizer width.
4072 Syntax for the command is : "@var{width}"
4073
4074 @item gain, g
4075 Change equalizer gain.
4076 Syntax for the command is : "@var{gain}"
4077
4078 @item mix, m
4079 Change equalizer mix.
4080 Syntax for the command is : "@var{mix}"
4081 @end table
4082
4083 @section extrastereo
4084
4085 Linearly increases the difference between left and right channels which
4086 adds some sort of "live" effect to playback.
4087
4088 The filter accepts the following options:
4089
4090 @table @option
4091 @item m
4092 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
4093 (average of both channels), with 1.0 sound will be unchanged, with
4094 -1.0 left and right channels will be swapped.
4095
4096 @item c
4097 Enable clipping. By default is enabled.
4098 @end table
4099
4100 @subsection Commands
4101
4102 This filter supports the all above options as @ref{commands}.
4103
4104 @section firequalizer
4105 Apply FIR Equalization using arbitrary frequency response.
4106
4107 The filter accepts the following option:
4108
4109 @table @option
4110 @item gain
4111 Set gain curve equation (in dB). The expression can contain variables:
4112 @table @option
4113 @item f
4114 the evaluated frequency
4115 @item sr
4116 sample rate
4117 @item ch
4118 channel number, set to 0 when multichannels evaluation is disabled
4119 @item chid
4120 channel id, see libavutil/channel_layout.h, set to the first channel id when
4121 multichannels evaluation is disabled
4122 @item chs
4123 number of channels
4124 @item chlayout
4125 channel_layout, see libavutil/channel_layout.h
4126
4127 @end table
4128 and functions:
4129 @table @option
4130 @item gain_interpolate(f)
4131 interpolate gain on frequency f based on gain_entry
4132 @item cubic_interpolate(f)
4133 same as gain_interpolate, but smoother
4134 @end table
4135 This option is also available as command. Default is @code{gain_interpolate(f)}.
4136
4137 @item gain_entry
4138 Set gain entry for gain_interpolate function. The expression can
4139 contain functions:
4140 @table @option
4141 @item entry(f, g)
4142 store gain entry at frequency f with value g
4143 @end table
4144 This option is also available as command.
4145
4146 @item delay
4147 Set filter delay in seconds. Higher value means more accurate.
4148 Default is @code{0.01}.
4149
4150 @item accuracy
4151 Set filter accuracy in Hz. Lower value means more accurate.
4152 Default is @code{5}.
4153
4154 @item wfunc
4155 Set window function. Acceptable values are:
4156 @table @option
4157 @item rectangular
4158 rectangular window, useful when gain curve is already smooth
4159 @item hann
4160 hann window (default)
4161 @item hamming
4162 hamming window
4163 @item blackman
4164 blackman window
4165 @item nuttall3
4166 3-terms continuous 1st derivative nuttall window
4167 @item mnuttall3
4168 minimum 3-terms discontinuous nuttall window
4169 @item nuttall
4170 4-terms continuous 1st derivative nuttall window
4171 @item bnuttall
4172 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
4173 @item bharris
4174 blackman-harris window
4175 @item tukey
4176 tukey window
4177 @end table
4178
4179 @item fixed
4180 If enabled, use fixed number of audio samples. This improves speed when
4181 filtering with large delay. Default is disabled.
4182
4183 @item multi
4184 Enable multichannels evaluation on gain. Default is disabled.
4185
4186 @item zero_phase
4187 Enable zero phase mode by subtracting timestamp to compensate delay.
4188 Default is disabled.
4189
4190 @item scale
4191 Set scale used by gain. Acceptable values are:
4192 @table @option
4193 @item linlin
4194 linear frequency, linear gain
4195 @item linlog
4196 linear frequency, logarithmic (in dB) gain (default)
4197 @item loglin
4198 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
4199 @item loglog
4200 logarithmic frequency, logarithmic gain
4201 @end table
4202
4203 @item dumpfile
4204 Set file for dumping, suitable for gnuplot.
4205
4206 @item dumpscale
4207 Set scale for dumpfile. Acceptable values are same with scale option.
4208 Default is linlog.
4209
4210 @item fft2
4211 Enable 2-channel convolution using complex FFT. This improves speed significantly.
4212 Default is disabled.
4213
4214 @item min_phase
4215 Enable minimum phase impulse response. Default is disabled.
4216 @end table
4217
4218 @subsection Examples
4219 @itemize
4220 @item
4221 lowpass at 1000 Hz:
4222 @example
4223 firequalizer=gain='if(lt(f,1000), 0, -INF)'
4224 @end example
4225 @item
4226 lowpass at 1000 Hz with gain_entry:
4227 @example
4228 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
4229 @end example
4230 @item
4231 custom equalization:
4232 @example
4233 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
4234 @end example
4235 @item
4236 higher delay with zero phase to compensate delay:
4237 @example
4238 firequalizer=delay=0.1:fixed=on:zero_phase=on
4239 @end example
4240 @item
4241 lowpass on left channel, highpass on right channel:
4242 @example
4243 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
4244 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
4245 @end example
4246 @end itemize
4247
4248 @section flanger
4249 Apply a flanging effect to the audio.
4250
4251 The filter accepts the following options:
4252
4253 @table @option
4254 @item delay
4255 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
4256
4257 @item depth
4258 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
4259
4260 @item regen
4261 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
4262 Default value is 0.
4263
4264 @item width
4265 Set percentage of delayed signal mixed with original. Range from 0 to 100.
4266 Default value is 71.
4267
4268 @item speed
4269 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
4270
4271 @item shape
4272 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
4273 Default value is @var{sinusoidal}.
4274
4275 @item phase
4276 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
4277 Default value is 25.
4278
4279 @item interp
4280 Set delay-line interpolation, @var{linear} or @var{quadratic}.
4281 Default is @var{linear}.
4282 @end table
4283
4284 @section haas
4285 Apply Haas effect to audio.
4286
4287 Note that this makes most sense to apply on mono signals.
4288 With this filter applied to mono signals it give some directionality and
4289 stretches its stereo image.
4290
4291 The filter accepts the following options:
4292
4293 @table @option
4294 @item level_in
4295 Set input level. By default is @var{1}, or 0dB
4296
4297 @item level_out
4298 Set output level. By default is @var{1}, or 0dB.
4299
4300 @item side_gain
4301 Set gain applied to side part of signal. By default is @var{1}.
4302
4303 @item middle_source
4304 Set kind of middle source. Can be one of the following:
4305
4306 @table @samp
4307 @item left
4308 Pick left channel.
4309
4310 @item right
4311 Pick right channel.
4312
4313 @item mid
4314 Pick middle part signal of stereo image.
4315
4316 @item side
4317 Pick side part signal of stereo image.
4318 @end table
4319
4320 @item middle_phase
4321 Change middle phase. By default is disabled.
4322
4323 @item left_delay
4324 Set left channel delay. By default is @var{2.05} milliseconds.
4325
4326 @item left_balance
4327 Set left channel balance. By default is @var{-1}.
4328
4329 @item left_gain
4330 Set left channel gain. By default is @var{1}.
4331
4332 @item left_phase
4333 Change left phase. By default is disabled.
4334
4335 @item right_delay
4336 Set right channel delay. By defaults is @var{2.12} milliseconds.
4337
4338 @item right_balance
4339 Set right channel balance. By default is @var{1}.
4340
4341 @item right_gain
4342 Set right channel gain. By default is @var{1}.
4343
4344 @item right_phase
4345 Change right phase. By default is enabled.
4346 @end table
4347
4348 @section hdcd
4349
4350 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
4351 embedded HDCD codes is expanded into a 20-bit PCM stream.
4352
4353 The filter supports the Peak Extend and Low-level Gain Adjustment features
4354 of HDCD, and detects the Transient Filter flag.
4355
4356 @example
4357 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
4358 @end example
4359
4360 When using the filter with wav, note the default encoding for wav is 16-bit,
4361 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
4362 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
4363 @example
4364 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
4365 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
4366 @end example
4367
4368 The filter accepts the following options:
4369
4370 @table @option
4371 @item disable_autoconvert
4372 Disable any automatic format conversion or resampling in the filter graph.
4373
4374 @item process_stereo
4375 Process the stereo channels together. If target_gain does not match between
4376 channels, consider it invalid and use the last valid target_gain.
4377
4378 @item cdt_ms
4379 Set the code detect timer period in ms.
4380
4381 @item force_pe
4382 Always extend peaks above -3dBFS even if PE isn't signaled.
4383
4384 @item analyze_mode
4385 Replace audio with a solid tone and adjust the amplitude to signal some
4386 specific aspect of the decoding process. The output file can be loaded in
4387 an audio editor alongside the original to aid analysis.
4388
4389 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
4390
4391 Modes are:
4392 @table @samp
4393 @item 0, off
4394 Disabled
4395 @item 1, lle
4396 Gain adjustment level at each sample
4397 @item 2, pe
4398 Samples where peak extend occurs
4399 @item 3, cdt
4400 Samples where the code detect timer is active
4401 @item 4, tgm
4402 Samples where the target gain does not match between channels
4403 @end table
4404 @end table
4405
4406 @section headphone
4407
4408 Apply head-related transfer functions (HRTFs) to create virtual
4409 loudspeakers around the user for binaural listening via headphones.
4410 The HRIRs are provided via additional streams, for each channel
4411 one stereo input stream is needed.
4412
4413 The filter accepts the following options:
4414
4415 @table @option
4416 @item map
4417 Set mapping of input streams for convolution.
4418 The argument is a '|'-separated list of channel names in order as they
4419 are given as additional stream inputs for filter.
4420 This also specify number of input streams. Number of input streams
4421 must be not less than number of channels in first stream plus one.
4422
4423 @item gain
4424 Set gain applied to audio. Value is in dB. Default is 0.
4425
4426 @item type
4427 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4428 processing audio in time domain which is slow.
4429 @var{freq} is processing audio in frequency domain which is fast.
4430 Default is @var{freq}.
4431
4432 @item lfe
4433 Set custom gain for LFE channels. Value is in dB. Default is 0.
4434
4435 @item size
4436 Set size of frame in number of samples which will be processed at once.
4437 Default value is @var{1024}. Allowed range is from 1024 to 96000.
4438
4439 @item hrir
4440 Set format of hrir stream.
4441 Default value is @var{stereo}. Alternative value is @var{multich}.
4442 If value is set to @var{stereo}, number of additional streams should
4443 be greater or equal to number of input channels in first input stream.
4444 Also each additional stream should have stereo number of channels.
4445 If value is set to @var{multich}, number of additional streams should
4446 be exactly one. Also number of input channels of additional stream
4447 should be equal or greater than twice number of channels of first input
4448 stream.
4449 @end table
4450
4451 @subsection Examples
4452
4453 @itemize
4454 @item
4455 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4456 each amovie filter use stereo file with IR coefficients as input.
4457 The files give coefficients for each position of virtual loudspeaker:
4458 @example
4459 ffmpeg -i input.wav
4460 -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"
4461 output.wav
4462 @end example
4463
4464 @item
4465 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4466 but now in @var{multich} @var{hrir} format.
4467 @example
4468 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"
4469 output.wav
4470 @end example
4471 @end itemize
4472
4473 @section highpass
4474
4475 Apply a high-pass filter with 3dB point frequency.
4476 The filter can be either single-pole, or double-pole (the default).
4477 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4478
4479 The filter accepts the following options:
4480
4481 @table @option
4482 @item frequency, f
4483 Set frequency in Hz. Default is 3000.
4484
4485 @item poles, p
4486 Set number of poles. Default is 2.
4487
4488 @item width_type, t
4489 Set method to specify band-width of filter.
4490 @table @option
4491 @item h
4492 Hz
4493 @item q
4494 Q-Factor
4495 @item o
4496 octave
4497 @item s
4498 slope
4499 @item k
4500 kHz
4501 @end table
4502
4503 @item width, w
4504 Specify the band-width of a filter in width_type units.
4505 Applies only to double-pole filter.
4506 The default is 0.707q and gives a Butterworth response.
4507
4508 @item mix, m
4509 How much to use filtered signal in output. Default is 1.
4510 Range is between 0 and 1.
4511
4512 @item channels, c
4513 Specify which channels to filter, by default all available are filtered.
4514
4515 @item normalize, n
4516 Normalize biquad coefficients, by default is disabled.
4517 Enabling it will normalize magnitude response at DC to 0dB.
4518
4519 @item transform, a
4520 Set transform type of IIR filter.
4521 @table @option
4522 @item di
4523 @item dii
4524 @item tdii
4525 @item latt
4526 @end table
4527
4528 @item precision, r
4529 Set precison of filtering.
4530 @table @option
4531 @item auto
4532 Pick automatic sample format depending on surround filters.
4533 @item s16
4534 Always use signed 16-bit.
4535 @item s32
4536 Always use signed 32-bit.
4537 @item f32
4538 Always use float 32-bit.
4539 @item f64
4540 Always use float 64-bit.
4541 @end table
4542 @end table
4543
4544 @subsection Commands
4545
4546 This filter supports the following commands:
4547 @table @option
4548 @item frequency, f
4549 Change highpass frequency.
4550 Syntax for the command is : "@var{frequency}"
4551
4552 @item width_type, t
4553 Change highpass width_type.
4554 Syntax for the command is : "@var{width_type}"
4555
4556 @item width, w
4557 Change highpass width.
4558 Syntax for the command is : "@var{width}"
4559
4560 @item mix, m
4561 Change highpass mix.
4562 Syntax for the command is : "@var{mix}"
4563 @end table
4564
4565 @section join
4566
4567 Join multiple input streams into one multi-channel stream.
4568
4569 It accepts the following parameters:
4570 @table @option
4571
4572 @item inputs
4573 The number of input streams. It defaults to 2.
4574
4575 @item channel_layout
4576 The desired output channel layout. It defaults to stereo.
4577
4578 @item map
4579 Map channels from inputs to output. The argument is a '|'-separated list of
4580 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4581 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4582 can be either the name of the input channel (e.g. FL for front left) or its
4583 index in the specified input stream. @var{out_channel} is the name of the output
4584 channel.
4585 @end table
4586
4587 The filter will attempt to guess the mappings when they are not specified
4588 explicitly. It does so by first trying to find an unused matching input channel
4589 and if that fails it picks the first unused input channel.
4590
4591 Join 3 inputs (with properly set channel layouts):
4592 @example
4593 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4594 @end example
4595
4596 Build a 5.1 output from 6 single-channel streams:
4597 @example
4598 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4599 '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'
4600 out
4601 @end example
4602
4603 @section ladspa
4604
4605 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4606
4607 To enable compilation of this filter you need to configure FFmpeg with
4608 @code{--enable-ladspa}.
4609
4610 @table @option
4611 @item file, f
4612 Specifies the name of LADSPA plugin library to load. If the environment
4613 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4614 each one of the directories specified by the colon separated list in
4615 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4616 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4617 @file{/usr/lib/ladspa/}.
4618
4619 @item plugin, p
4620 Specifies the plugin within the library. Some libraries contain only
4621 one plugin, but others contain many of them. If this is not set filter
4622 will list all available plugins within the specified library.
4623
4624 @item controls, c
4625 Set the '|' separated list of controls which are zero or more floating point
4626 values that determine the behavior of the loaded plugin (for example delay,
4627 threshold or gain).
4628 Controls need to be defined using the following syntax:
4629 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4630 @var{valuei} is the value set on the @var{i}-th control.
4631 Alternatively they can be also defined using the following syntax:
4632 @var{value0}|@var{value1}|@var{value2}|..., where
4633 @var{valuei} is the value set on the @var{i}-th control.
4634 If @option{controls} is set to @code{help}, all available controls and
4635 their valid ranges are printed.
4636
4637 @item sample_rate, s
4638 Specify the sample rate, default to 44100. Only used if plugin have
4639 zero inputs.
4640
4641 @item nb_samples, n
4642 Set the number of samples per channel per each output frame, default
4643 is 1024. Only used if plugin have zero inputs.
4644
4645 @item duration, d
4646 Set the minimum duration of the sourced audio. See
4647 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4648 for the accepted syntax.
4649 Note that the resulting duration may be greater than the specified duration,
4650 as the generated audio is always cut at the end of a complete frame.
4651 If not specified, or the expressed duration is negative, the audio is
4652 supposed to be generated forever.
4653 Only used if plugin have zero inputs.
4654
4655 @item latency, l
4656 Enable latency compensation, by default is disabled.
4657 Only used if plugin have inputs.
4658 @end table
4659
4660 @subsection Examples
4661
4662 @itemize
4663 @item
4664 List all available plugins within amp (LADSPA example plugin) library:
4665 @example
4666 ladspa=file=amp
4667 @end example
4668
4669 @item
4670 List all available controls and their valid ranges for @code{vcf_notch}
4671 plugin from @code{VCF} library:
4672 @example
4673 ladspa=f=vcf:p=vcf_notch:c=help
4674 @end example
4675
4676 @item
4677 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4678 plugin library:
4679 @example
4680 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4681 @end example
4682
4683 @item
4684 Add reverberation to the audio using TAP-plugins
4685 (Tom's Audio Processing plugins):
4686 @example
4687 ladspa=file=tap_reverb:tap_reverb
4688 @end example
4689
4690 @item
4691 Generate white noise, with 0.2 amplitude:
4692 @example
4693 ladspa=file=cmt:noise_source_white:c=c0=.2
4694 @end example
4695
4696 @item
4697 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4698 @code{C* Audio Plugin Suite} (CAPS) library:
4699 @example
4700 ladspa=file=caps:Click:c=c1=20'
4701 @end example
4702
4703 @item
4704 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4705 @example
4706 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4707 @end example
4708
4709 @item
4710 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4711 @code{SWH Plugins} collection:
4712 @example
4713 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4714 @end example
4715
4716 @item
4717 Attenuate low frequencies using Multiband EQ from Steve Harris
4718 @code{SWH Plugins} collection:
4719 @example
4720 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4721 @end example
4722
4723 @item
4724 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4725 (CAPS) library:
4726 @example
4727 ladspa=caps:Narrower
4728 @end example
4729
4730 @item
4731 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4732 @example
4733 ladspa=caps:White:.2
4734 @end example
4735
4736 @item
4737 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4738 @example
4739 ladspa=caps:Fractal:c=c1=1
4740 @end example
4741
4742 @item
4743 Dynamic volume normalization using @code{VLevel} plugin:
4744 @example
4745 ladspa=vlevel-ladspa:vlevel_mono
4746 @end example
4747 @end itemize
4748
4749 @subsection Commands
4750
4751 This filter supports the following commands:
4752 @table @option
4753 @item cN
4754 Modify the @var{N}-th control value.
4755
4756 If the specified value is not valid, it is ignored and prior one is kept.
4757 @end table
4758
4759 @section loudnorm
4760
4761 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4762 Support for both single pass (livestreams, files) and double pass (files) modes.
4763 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4764 detect true peaks, the audio stream will be upsampled to 192 kHz.
4765 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4766
4767 The filter accepts the following options:
4768
4769 @table @option
4770 @item I, i
4771 Set integrated loudness target.
4772 Range is -70.0 - -5.0. Default value is -24.0.
4773
4774 @item LRA, lra
4775 Set loudness range target.
4776 Range is 1.0 - 20.0. Default value is 7.0.
4777
4778 @item TP, tp
4779 Set maximum true peak.
4780 Range is -9.0 - +0.0. Default value is -2.0.
4781
4782 @item measured_I, measured_i
4783 Measured IL of input file.
4784 Range is -99.0 - +0.0.
4785
4786 @item measured_LRA, measured_lra
4787 Measured LRA of input file.
4788 Range is  0.0 - 99.0.
4789
4790 @item measured_TP, measured_tp
4791 Measured true peak of input file.
4792 Range is  -99.0 - +99.0.
4793
4794 @item measured_thresh
4795 Measured threshold of input file.
4796 Range is -99.0 - +0.0.
4797
4798 @item offset
4799 Set offset gain. Gain is applied before the true-peak limiter.
4800 Range is  -99.0 - +99.0. Default is +0.0.
4801
4802 @item linear
4803 Normalize by linearly scaling the source audio.
4804 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4805 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4806 be lower than source LRA and the change in integrated loudness shouldn't
4807 result in a true peak which exceeds the target TP. If any of these
4808 conditions aren't met, normalization mode will revert to @var{dynamic}.
4809 Options are @code{true} or @code{false}. Default is @code{true}.
4810
4811 @item dual_mono
4812 Treat mono input files as "dual-mono". If a mono file is intended for playback
4813 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4814 If set to @code{true}, this option will compensate for this effect.
4815 Multi-channel input files are not affected by this option.
4816 Options are true or false. Default is false.
4817
4818 @item print_format
4819 Set print format for stats. Options are summary, json, or none.
4820 Default value is none.
4821 @end table
4822
4823 @section lowpass
4824
4825 Apply a low-pass filter with 3dB point frequency.
4826 The filter can be either single-pole or double-pole (the default).
4827 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4828
4829 The filter accepts the following options:
4830
4831 @table @option
4832 @item frequency, f
4833 Set frequency in Hz. Default is 500.
4834
4835 @item poles, p
4836 Set number of poles. Default is 2.
4837
4838 @item width_type, t
4839 Set method to specify band-width of filter.
4840 @table @option
4841 @item h
4842 Hz
4843 @item q
4844 Q-Factor
4845 @item o
4846 octave
4847 @item s
4848 slope
4849 @item k
4850 kHz
4851 @end table
4852
4853 @item width, w
4854 Specify the band-width of a filter in width_type units.
4855 Applies only to double-pole filter.
4856 The default is 0.707q and gives a Butterworth response.
4857
4858 @item mix, m
4859 How much to use filtered signal in output. Default is 1.
4860 Range is between 0 and 1.
4861
4862 @item channels, c
4863 Specify which channels to filter, by default all available are filtered.
4864
4865 @item normalize, n
4866 Normalize biquad coefficients, by default is disabled.
4867 Enabling it will normalize magnitude response at DC to 0dB.
4868
4869 @item transform, a
4870 Set transform type of IIR filter.
4871 @table @option
4872 @item di
4873 @item dii
4874 @item tdii
4875 @item latt
4876 @end table
4877
4878 @item precision, r
4879 Set precison of filtering.
4880 @table @option
4881 @item auto
4882 Pick automatic sample format depending on surround filters.
4883 @item s16
4884 Always use signed 16-bit.
4885 @item s32
4886 Always use signed 32-bit.
4887 @item f32
4888 Always use float 32-bit.
4889 @item f64
4890 Always use float 64-bit.
4891 @end table
4892 @end table
4893
4894 @subsection Examples
4895 @itemize
4896 @item
4897 Lowpass only LFE channel, it LFE is not present it does nothing:
4898 @example
4899 lowpass=c=LFE
4900 @end example
4901 @end itemize
4902
4903 @subsection Commands
4904
4905 This filter supports the following commands:
4906 @table @option
4907 @item frequency, f
4908 Change lowpass frequency.
4909 Syntax for the command is : "@var{frequency}"
4910
4911 @item width_type, t
4912 Change lowpass width_type.
4913 Syntax for the command is : "@var{width_type}"
4914
4915 @item width, w
4916 Change lowpass width.
4917 Syntax for the command is : "@var{width}"
4918
4919 @item mix, m
4920 Change lowpass mix.
4921 Syntax for the command is : "@var{mix}"
4922 @end table
4923
4924 @section lv2
4925
4926 Load a LV2 (LADSPA Version 2) plugin.
4927
4928 To enable compilation of this filter you need to configure FFmpeg with
4929 @code{--enable-lv2}.
4930
4931 @table @option
4932 @item plugin, p
4933 Specifies the plugin URI. You may need to escape ':'.
4934
4935 @item controls, c
4936 Set the '|' separated list of controls which are zero or more floating point
4937 values that determine the behavior of the loaded plugin (for example delay,
4938 threshold or gain).
4939 If @option{controls} is set to @code{help}, all available controls and
4940 their valid ranges are printed.
4941
4942 @item sample_rate, s
4943 Specify the sample rate, default to 44100. Only used if plugin have
4944 zero inputs.
4945
4946 @item nb_samples, n
4947 Set the number of samples per channel per each output frame, default
4948 is 1024. Only used if plugin have zero inputs.
4949
4950 @item duration, d
4951 Set the minimum duration of the sourced audio. See
4952 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4953 for the accepted syntax.
4954 Note that the resulting duration may be greater than the specified duration,
4955 as the generated audio is always cut at the end of a complete frame.
4956 If not specified, or the expressed duration is negative, the audio is
4957 supposed to be generated forever.
4958 Only used if plugin have zero inputs.
4959 @end table
4960
4961 @subsection Examples
4962
4963 @itemize
4964 @item
4965 Apply bass enhancer plugin from Calf:
4966 @example
4967 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4968 @end example
4969
4970 @item
4971 Apply vinyl plugin from Calf:
4972 @example
4973 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4974 @end example
4975
4976 @item
4977 Apply bit crusher plugin from ArtyFX:
4978 @example
4979 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4980 @end example
4981 @end itemize
4982
4983 @section mcompand
4984 Multiband Compress or expand the audio's dynamic range.
4985
4986 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4987 This is akin to the crossover of a loudspeaker, and results in flat frequency
4988 response when absent compander action.
4989
4990 It accepts the following parameters:
4991
4992 @table @option
4993 @item args
4994 This option syntax is:
4995 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4996 For explanation of each item refer to compand filter documentation.
4997 @end table
4998
4999 @anchor{pan}
5000 @section pan
5001
5002 Mix channels with specific gain levels. The filter accepts the output
5003 channel layout followed by a set of channels definitions.
5004
5005 This filter is also designed to efficiently remap the channels of an audio
5006 stream.
5007
5008 The filter accepts parameters of the form:
5009 "@var{l}|@var{outdef}|@var{outdef}|..."
5010
5011 @table @option
5012 @item l
5013 output channel layout or number of channels
5014
5015 @item outdef
5016 output channel specification, of the form:
5017 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
5018
5019 @item out_name
5020 output channel to define, either a channel name (FL, FR, etc.) or a channel
5021 number (c0, c1, etc.)
5022
5023 @item gain
5024 multiplicative coefficient for the channel, 1 leaving the volume unchanged
5025
5026 @item in_name
5027 input channel to use, see out_name for details; it is not possible to mix
5028 named and numbered input channels
5029 @end table
5030
5031 If the `=' in a channel specification is replaced by `<', then the gains for
5032 that specification will be renormalized so that the total is 1, thus
5033 avoiding clipping noise.
5034
5035 @subsection Mixing examples
5036
5037 For example, if you want to down-mix from stereo to mono, but with a bigger
5038 factor for the left channel:
5039 @example
5040 pan=1c|c0=0.9*c0+0.1*c1
5041 @end example
5042
5043 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
5044 7-channels surround:
5045 @example
5046 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
5047 @end example
5048
5049 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
5050 that should be preferred (see "-ac" option) unless you have very specific
5051 needs.
5052
5053 @subsection Remapping examples
5054
5055 The channel remapping will be effective if, and only if:
5056
5057 @itemize
5058 @item gain coefficients are zeroes or ones,
5059 @item only one input per channel output,
5060 @end itemize
5061
5062 If all these conditions are satisfied, the filter will notify the user ("Pure
5063 channel mapping detected"), and use an optimized and lossless method to do the
5064 remapping.
5065
5066 For example, if you have a 5.1 source and want a stereo audio stream by
5067 dropping the extra channels:
5068 @example
5069 pan="stereo| c0=FL | c1=FR"
5070 @end example
5071
5072 Given the same source, you can also switch front left and front right channels
5073 and keep the input channel layout:
5074 @example
5075 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
5076 @end example
5077
5078 If the input is a stereo audio stream, you can mute the front left channel (and
5079 still keep the stereo channel layout) with:
5080 @example
5081 pan="stereo|c1=c1"
5082 @end example
5083
5084 Still with a stereo audio stream input, you can copy the right channel in both
5085 front left and right:
5086 @example
5087 pan="stereo| c0=FR | c1=FR"
5088 @end example
5089
5090 @section replaygain
5091
5092 ReplayGain scanner filter. This filter takes an audio stream as an input and
5093 outputs it unchanged.
5094 At end of filtering it displays @code{track_gain} and @code{track_peak}.
5095
5096 @section resample
5097
5098 Convert the audio sample format, sample rate and channel layout. It is
5099 not meant to be used directly.
5100
5101 @section rubberband
5102 Apply time-stretching and pitch-shifting with librubberband.
5103
5104 To enable compilation of this filter, you need to configure FFmpeg with
5105 @code{--enable-librubberband}.
5106
5107 The filter accepts the following options:
5108
5109 @table @option
5110 @item tempo
5111 Set tempo scale factor.
5112
5113 @item pitch
5114 Set pitch scale factor.
5115
5116 @item transients
5117 Set transients detector.
5118 Possible values are:
5119 @table @var
5120 @item crisp
5121 @item mixed
5122 @item smooth
5123 @end table
5124
5125 @item detector
5126 Set detector.
5127 Possible values are:
5128 @table @var
5129 @item compound
5130 @item percussive
5131 @item soft
5132 @end table
5133
5134 @item phase
5135 Set phase.
5136 Possible values are:
5137 @table @var
5138 @item laminar
5139 @item independent
5140 @end table
5141
5142 @item window
5143 Set processing window size.
5144 Possible values are:
5145 @table @var
5146 @item standard
5147 @item short
5148 @item long
5149 @end table
5150
5151 @item smoothing
5152 Set smoothing.
5153 Possible values are:
5154 @table @var
5155 @item off
5156 @item on
5157 @end table
5158
5159 @item formant
5160 Enable formant preservation when shift pitching.
5161 Possible values are:
5162 @table @var
5163 @item shifted
5164 @item preserved
5165 @end table
5166
5167 @item pitchq
5168 Set pitch quality.
5169 Possible values are:
5170 @table @var
5171 @item quality
5172 @item speed
5173 @item consistency
5174 @end table
5175
5176 @item channels
5177 Set channels.
5178 Possible values are:
5179 @table @var
5180 @item apart
5181 @item together
5182 @end table
5183 @end table
5184
5185 @subsection Commands
5186
5187 This filter supports the following commands:
5188 @table @option
5189 @item tempo
5190 Change filter tempo scale factor.
5191 Syntax for the command is : "@var{tempo}"
5192
5193 @item pitch
5194 Change filter pitch scale factor.
5195 Syntax for the command is : "@var{pitch}"
5196 @end table
5197
5198 @section sidechaincompress
5199
5200 This filter acts like normal compressor but has the ability to compress
5201 detected signal using second input signal.
5202 It needs two input streams and returns one output stream.
5203 First input stream will be processed depending on second stream signal.
5204 The filtered signal then can be filtered with other filters in later stages of
5205 processing. See @ref{pan} and @ref{amerge} filter.
5206
5207 The filter accepts the following options:
5208
5209 @table @option
5210 @item level_in
5211 Set input gain. Default is 1. Range is between 0.015625 and 64.
5212
5213 @item mode
5214 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
5215 Default is @code{downward}.
5216
5217 @item threshold
5218 If a signal of second stream raises above this level it will affect the gain
5219 reduction of first stream.
5220 By default is 0.125. Range is between 0.00097563 and 1.
5221
5222 @item ratio
5223 Set a ratio about which the signal is reduced. 1:2 means that if the level
5224 raised 4dB above the threshold, it will be only 2dB above after the reduction.
5225 Default is 2. Range is between 1 and 20.
5226
5227 @item attack
5228 Amount of milliseconds the signal has to rise above the threshold before gain
5229 reduction starts. Default is 20. Range is between 0.01 and 2000.
5230
5231 @item release
5232 Amount of milliseconds the signal has to fall below the threshold before
5233 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
5234
5235 @item makeup
5236 Set the amount by how much signal will be amplified after processing.
5237 Default is 1. Range is from 1 to 64.
5238
5239 @item knee
5240 Curve the sharp knee around the threshold to enter gain reduction more softly.
5241 Default is 2.82843. Range is between 1 and 8.
5242
5243 @item link
5244 Choose if the @code{average} level between all channels of side-chain stream
5245 or the louder(@code{maximum}) channel of side-chain stream affects the
5246 reduction. Default is @code{average}.
5247
5248 @item detection
5249 Should the exact signal be taken in case of @code{peak} or an RMS one in case
5250 of @code{rms}. Default is @code{rms} which is mainly smoother.
5251
5252 @item level_sc
5253 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
5254
5255 @item mix
5256 How much to use compressed signal in output. Default is 1.
5257 Range is between 0 and 1.
5258 @end table
5259
5260 @subsection Commands
5261
5262 This filter supports the all above options as @ref{commands}.
5263
5264 @subsection Examples
5265
5266 @itemize
5267 @item
5268 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
5269 depending on the signal of 2nd input and later compressed signal to be
5270 merged with 2nd input:
5271 @example
5272 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
5273 @end example
5274 @end itemize
5275
5276 @section sidechaingate
5277
5278 A sidechain gate acts like a normal (wideband) gate but has the ability to
5279 filter the detected signal before sending it to the gain reduction stage.
5280 Normally a gate uses the full range signal to detect a level above the
5281 threshold.
5282 For example: If you cut all lower frequencies from your sidechain signal
5283 the gate will decrease the volume of your track only if not enough highs
5284 appear. With this technique you are able to reduce the resonation of a
5285 natural drum or remove "rumbling" of muted strokes from a heavily distorted
5286 guitar.
5287 It needs two input streams and returns one output stream.
5288 First input stream will be processed depending on second stream signal.
5289
5290 The filter accepts the following options:
5291
5292 @table @option
5293 @item level_in
5294 Set input level before filtering.
5295 Default is 1. Allowed range is from 0.015625 to 64.
5296
5297 @item mode
5298 Set the mode of operation. Can be @code{upward} or @code{downward}.
5299 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
5300 will be amplified, expanding dynamic range in upward direction.
5301 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
5302
5303 @item range
5304 Set the level of gain reduction when the signal is below the threshold.
5305 Default is 0.06125. Allowed range is from 0 to 1.
5306 Setting this to 0 disables reduction and then filter behaves like expander.
5307
5308 @item threshold
5309 If a signal rises above this level the gain reduction is released.
5310 Default is 0.125. Allowed range is from 0 to 1.
5311
5312 @item ratio
5313 Set a ratio about which the signal is reduced.
5314 Default is 2. Allowed range is from 1 to 9000.
5315
5316 @item attack
5317 Amount of milliseconds the signal has to rise above the threshold before gain
5318 reduction stops.
5319 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
5320
5321 @item release
5322 Amount of milliseconds the signal has to fall below the threshold before the
5323 reduction is increased again. Default is 250 milliseconds.
5324 Allowed range is from 0.01 to 9000.
5325
5326 @item makeup
5327 Set amount of amplification of signal after processing.
5328 Default is 1. Allowed range is from 1 to 64.
5329
5330 @item knee
5331 Curve the sharp knee around the threshold to enter gain reduction more softly.
5332 Default is 2.828427125. Allowed range is from 1 to 8.
5333
5334 @item detection
5335 Choose if exact signal should be taken for detection or an RMS like one.
5336 Default is rms. Can be peak or rms.
5337
5338 @item link
5339 Choose if the average level between all channels or the louder channel affects
5340 the reduction.
5341 Default is average. Can be average or maximum.
5342
5343 @item level_sc
5344 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
5345 @end table
5346
5347 @subsection Commands
5348
5349 This filter supports the all above options as @ref{commands}.
5350
5351 @section silencedetect
5352
5353 Detect silence in an audio stream.
5354
5355 This filter logs a message when it detects that the input audio volume is less
5356 or equal to a noise tolerance value for a duration greater or equal to the
5357 minimum detected noise duration.
5358
5359 The printed times and duration are expressed in seconds. The
5360 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
5361 is set on the first frame whose timestamp equals or exceeds the detection
5362 duration and it contains the timestamp of the first frame of the silence.
5363
5364 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
5365 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
5366 keys are set on the first frame after the silence. If @option{mono} is
5367 enabled, and each channel is evaluated separately, the @code{.X}
5368 suffixed keys are used, and @code{X} corresponds to the channel number.
5369
5370 The filter accepts the following options:
5371
5372 @table @option
5373 @item noise, n
5374 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
5375 specified value) or amplitude ratio. Default is -60dB, or 0.001.
5376
5377 @item duration, d
5378 Set silence duration until notification (default is 2 seconds). See
5379 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5380 for the accepted syntax.
5381
5382 @item mono, m
5383 Process each channel separately, instead of combined. By default is disabled.
5384 @end table
5385
5386 @subsection Examples
5387
5388 @itemize
5389 @item
5390 Detect 5 seconds of silence with -50dB noise tolerance:
5391 @example
5392 silencedetect=n=-50dB:d=5
5393 @end example
5394
5395 @item
5396 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
5397 tolerance in @file{silence.mp3}:
5398 @example
5399 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
5400 @end example
5401 @end itemize
5402
5403 @section silenceremove
5404
5405 Remove silence from the beginning, middle or end of the audio.
5406
5407 The filter accepts the following options:
5408
5409 @table @option
5410 @item start_periods
5411 This value is used to indicate if audio should be trimmed at beginning of
5412 the audio. A value of zero indicates no silence should be trimmed from the
5413 beginning. When specifying a non-zero value, it trims audio up until it
5414 finds non-silence. Normally, when trimming silence from beginning of audio
5415 the @var{start_periods} will be @code{1} but it can be increased to higher
5416 values to trim all audio up to specific count of non-silence periods.
5417 Default value is @code{0}.
5418
5419 @item start_duration
5420 Specify the amount of time that non-silence must be detected before it stops
5421 trimming audio. By increasing the duration, bursts of noises can be treated
5422 as silence and trimmed off. Default value is @code{0}.
5423
5424 @item start_threshold
5425 This indicates what sample value should be treated as silence. For digital
5426 audio, a value of @code{0} may be fine but for audio recorded from analog,
5427 you may wish to increase the value to account for background noise.
5428 Can be specified in dB (in case "dB" is appended to the specified value)
5429 or amplitude ratio. Default value is @code{0}.
5430
5431 @item start_silence
5432 Specify max duration of silence at beginning that will be kept after
5433 trimming. Default is 0, which is equal to trimming all samples detected
5434 as silence.
5435
5436 @item start_mode
5437 Specify mode of detection of silence end in start of multi-channel audio.
5438 Can be @var{any} or @var{all}. Default is @var{any}.
5439 With @var{any}, any sample that is detected as non-silence will cause
5440 stopped trimming of silence.
5441 With @var{all}, only if all channels are detected as non-silence will cause
5442 stopped trimming of silence.
5443
5444 @item stop_periods
5445 Set the count for trimming silence from the end of audio.
5446 To remove silence from the middle of a file, specify a @var{stop_periods}
5447 that is negative. This value is then treated as a positive value and is
5448 used to indicate the effect should restart processing as specified by
5449 @var{start_periods}, making it suitable for removing periods of silence
5450 in the middle of the audio.
5451 Default value is @code{0}.
5452
5453 @item stop_duration
5454 Specify a duration of silence that must exist before audio is not copied any
5455 more. By specifying a higher duration, silence that is wanted can be left in
5456 the audio.
5457 Default value is @code{0}.
5458
5459 @item stop_threshold
5460 This is the same as @option{start_threshold} but for trimming silence from
5461 the end of audio.
5462 Can be specified in dB (in case "dB" is appended to the specified value)
5463 or amplitude ratio. Default value is @code{0}.
5464
5465 @item stop_silence
5466 Specify max duration of silence at end that will be kept after
5467 trimming. Default is 0, which is equal to trimming all samples detected
5468 as silence.
5469
5470 @item stop_mode
5471 Specify mode of detection of silence start in end of multi-channel audio.
5472 Can be @var{any} or @var{all}. Default is @var{any}.
5473 With @var{any}, any sample that is detected as non-silence will cause
5474 stopped trimming of silence.
5475 With @var{all}, only if all channels are detected as non-silence will cause
5476 stopped trimming of silence.
5477
5478 @item detection
5479 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
5480 and works better with digital silence which is exactly 0.
5481 Default value is @code{rms}.
5482
5483 @item window
5484 Set duration in number of seconds used to calculate size of window in number
5485 of samples for detecting silence.
5486 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
5487 @end table
5488
5489 @subsection Examples
5490
5491 @itemize
5492 @item
5493 The following example shows how this filter can be used to start a recording
5494 that does not contain the delay at the start which usually occurs between
5495 pressing the record button and the start of the performance:
5496 @example
5497 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
5498 @end example
5499
5500 @item
5501 Trim all silence encountered from beginning to end where there is more than 1
5502 second of silence in audio:
5503 @example
5504 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
5505 @end example
5506
5507 @item
5508 Trim all digital silence samples, using peak detection, from beginning to end
5509 where there is more than 0 samples of digital silence in audio and digital
5510 silence is detected in all channels at same positions in stream:
5511 @example
5512 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
5513 @end example
5514 @end itemize
5515
5516 @section sofalizer
5517
5518 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
5519 loudspeakers around the user for binaural listening via headphones (audio
5520 formats up to 9 channels supported).
5521 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
5522 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
5523 Austrian Academy of Sciences.
5524
5525 To enable compilation of this filter you need to configure FFmpeg with
5526 @code{--enable-libmysofa}.
5527
5528 The filter accepts the following options:
5529
5530 @table @option
5531 @item sofa
5532 Set the SOFA file used for rendering.
5533
5534 @item gain
5535 Set gain applied to audio. Value is in dB. Default is 0.
5536
5537 @item rotation
5538 Set rotation of virtual loudspeakers in deg. Default is 0.
5539
5540 @item elevation
5541 Set elevation of virtual speakers in deg. Default is 0.
5542
5543 @item radius
5544 Set distance in meters between loudspeakers and the listener with near-field
5545 HRTFs. Default is 1.
5546
5547 @item type
5548 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
5549 processing audio in time domain which is slow.
5550 @var{freq} is processing audio in frequency domain which is fast.
5551 Default is @var{freq}.
5552
5553 @item speakers
5554 Set custom positions of virtual loudspeakers. Syntax for this option is:
5555 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5556 Each virtual loudspeaker is described with short channel name following with
5557 azimuth and elevation in degrees.
5558 Each virtual loudspeaker description is separated by '|'.
5559 For example to override front left and front right channel positions use:
5560 'speakers=FL 45 15|FR 345 15'.
5561 Descriptions with unrecognised channel names are ignored.
5562
5563 @item lfegain
5564 Set custom gain for LFE channels. Value is in dB. Default is 0.
5565
5566 @item framesize
5567 Set custom frame size in number of samples. Default is 1024.
5568 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5569 is set to @var{freq}.
5570
5571 @item normalize
5572 Should all IRs be normalized upon importing SOFA file.
5573 By default is enabled.
5574
5575 @item interpolate
5576 Should nearest IRs be interpolated with neighbor IRs if exact position
5577 does not match. By default is disabled.
5578
5579 @item minphase
5580 Minphase all IRs upon loading of SOFA file. By default is disabled.
5581
5582 @item anglestep
5583 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5584
5585 @item radstep
5586 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5587 @end table
5588
5589 @subsection Examples
5590
5591 @itemize
5592 @item
5593 Using ClubFritz6 sofa file:
5594 @example
5595 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5596 @end example
5597
5598 @item
5599 Using ClubFritz12 sofa file and bigger radius with small rotation:
5600 @example
5601 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5602 @end example
5603
5604 @item
5605 Similar as above but with custom speaker positions for front left, front right, back left and back right
5606 and also with custom gain:
5607 @example
5608 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5609 @end example
5610 @end itemize
5611
5612 @section speechnorm
5613 Speech Normalizer.
5614
5615 This filter expands or compresses each half-cycle of audio samples
5616 (local set of samples all above or all below zero and between two nearest zero crossings) depending
5617 on threshold value, so audio reaches target peak value under conditions controlled by below options.
5618
5619 The filter accepts the following options:
5620
5621 @table @option
5622 @item peak, p
5623 Set the expansion target peak value. This specifies the highest allowed absolute amplitude
5624 level for the normalized audio input. Default value is 0.95. Allowed range is from 0.0 to 1.0.
5625
5626 @item expansion, e
5627 Set the maximum expansion factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5628 This option controls maximum local half-cycle of samples expansion. The maximum expansion
5629 would be such that local peak value reaches target peak value but never to surpass it and that
5630 ratio between new and previous peak value does not surpass this option value.
5631
5632 @item compression, c
5633 Set the maximum compression factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5634 This option controls maximum local half-cycle of samples compression. This option is used
5635 only if @option{threshold} option is set to value greater than 0.0, then in such cases
5636 when local peak is lower or same as value set by @option{threshold} all samples belonging to
5637 that peak's half-cycle will be compressed by current compression factor.
5638
5639 @item threshold, t
5640 Set the threshold value. Default value is 0.0. Allowed range is from 0.0 to 1.0.
5641 This option specifies which half-cycles of samples will be compressed and which will be expanded.
5642 Any half-cycle samples with their local peak value below or same as this option value will be
5643 compressed by current compression factor, otherwise, if greater than threshold value they will be
5644 expanded with expansion factor so that it could reach peak target value but never surpass it.
5645
5646 @item raise, r
5647 Set the expansion raising amount per each half-cycle of samples. Default value is 0.001.
5648 Allowed range is from 0.0 to 1.0. This controls how fast expansion factor is raised per
5649 each new half-cycle until it reaches @option{expansion} value.
5650 Setting this options too high may lead to distortions.
5651
5652 @item fall, f
5653 Set the compression raising amount per each half-cycle of samples. Default value is 0.001.
5654 Allowed range is from 0.0 to 1.0. This controls how fast compression factor is raised per
5655 each new half-cycle until it reaches @option{compression} value.
5656
5657 @item channels, h
5658 Specify which channels to filter, by default all available channels are filtered.
5659
5660 @item invert, i
5661 Enable inverted filtering, by default is disabled. This inverts interpretation of @option{threshold}
5662 option. When enabled any half-cycle of samples with their local peak value below or same as
5663 @option{threshold} option will be expanded otherwise it will be compressed.
5664
5665 @item link, l
5666 Link channels when calculating gain applied to each filtered channel sample, by default is disabled.
5667 When disabled each filtered channel gain calculation is independent, otherwise when this option
5668 is enabled the minimum of all possible gains for each filtered channel is used.
5669 @end table
5670
5671 @subsection Commands
5672
5673 This filter supports the all above options as @ref{commands}.
5674
5675 @section stereotools
5676
5677 This filter has some handy utilities to manage stereo signals, for converting
5678 M/S stereo recordings to L/R signal while having control over the parameters
5679 or spreading the stereo image of master track.
5680
5681 The filter accepts the following options:
5682
5683 @table @option
5684 @item level_in
5685 Set input level before filtering for both channels. Defaults is 1.
5686 Allowed range is from 0.015625 to 64.
5687
5688 @item level_out
5689 Set output level after filtering for both channels. Defaults is 1.
5690 Allowed range is from 0.015625 to 64.
5691
5692 @item balance_in
5693 Set input balance between both channels. Default is 0.
5694 Allowed range is from -1 to 1.
5695
5696 @item balance_out
5697 Set output balance between both channels. Default is 0.
5698 Allowed range is from -1 to 1.
5699
5700 @item softclip
5701 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5702 clipping. Disabled by default.
5703
5704 @item mutel
5705 Mute the left channel. Disabled by default.
5706
5707 @item muter
5708 Mute the right channel. Disabled by default.
5709
5710 @item phasel
5711 Change the phase of the left channel. Disabled by default.
5712
5713 @item phaser
5714 Change the phase of the right channel. Disabled by default.
5715
5716 @item mode
5717 Set stereo mode. Available values are:
5718
5719 @table @samp
5720 @item lr>lr
5721 Left/Right to Left/Right, this is default.
5722
5723 @item lr>ms
5724 Left/Right to Mid/Side.
5725
5726 @item ms>lr
5727 Mid/Side to Left/Right.
5728
5729 @item lr>ll
5730 Left/Right to Left/Left.
5731
5732 @item lr>rr
5733 Left/Right to Right/Right.
5734
5735 @item lr>l+r
5736 Left/Right to Left + Right.
5737
5738 @item lr>rl
5739 Left/Right to Right/Left.
5740
5741 @item ms>ll
5742 Mid/Side to Left/Left.
5743
5744 @item ms>rr
5745 Mid/Side to Right/Right.
5746
5747 @item ms>rl
5748 Mid/Side to Right/Left.
5749
5750 @item lr>l-r
5751 Left/Right to Left - Right.
5752 @end table
5753
5754 @item slev
5755 Set level of side signal. Default is 1.
5756 Allowed range is from 0.015625 to 64.
5757
5758 @item sbal
5759 Set balance of side signal. Default is 0.
5760 Allowed range is from -1 to 1.
5761
5762 @item mlev
5763 Set level of the middle signal. Default is 1.
5764 Allowed range is from 0.015625 to 64.
5765
5766 @item mpan
5767 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5768
5769 @item base
5770 Set stereo base between mono and inversed channels. Default is 0.
5771 Allowed range is from -1 to 1.
5772
5773 @item delay
5774 Set delay in milliseconds how much to delay left from right channel and
5775 vice versa. Default is 0. Allowed range is from -20 to 20.
5776
5777 @item sclevel
5778 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5779
5780 @item phase
5781 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5782
5783 @item bmode_in, bmode_out
5784 Set balance mode for balance_in/balance_out option.
5785
5786 Can be one of the following:
5787
5788 @table @samp
5789 @item balance
5790 Classic balance mode. Attenuate one channel at time.
5791 Gain is raised up to 1.
5792
5793 @item amplitude
5794 Similar as classic mode above but gain is raised up to 2.
5795
5796 @item power
5797 Equal power distribution, from -6dB to +6dB range.
5798 @end table
5799 @end table
5800
5801 @subsection Commands
5802
5803 This filter supports the all above options as @ref{commands}.
5804
5805 @subsection Examples
5806
5807 @itemize
5808 @item
5809 Apply karaoke like effect:
5810 @example
5811 stereotools=mlev=0.015625
5812 @end example
5813
5814 @item
5815 Convert M/S signal to L/R:
5816 @example
5817 "stereotools=mode=ms>lr"
5818 @end example
5819 @end itemize
5820
5821 @section stereowiden
5822
5823 This filter enhance the stereo effect by suppressing signal common to both
5824 channels and by delaying the signal of left into right and vice versa,
5825 thereby widening the stereo effect.
5826
5827 The filter accepts the following options:
5828
5829 @table @option
5830 @item delay
5831 Time in milliseconds of the delay of left signal into right and vice versa.
5832 Default is 20 milliseconds.
5833
5834 @item feedback
5835 Amount of gain in delayed signal into right and vice versa. Gives a delay
5836 effect of left signal in right output and vice versa which gives widening
5837 effect. Default is 0.3.
5838
5839 @item crossfeed
5840 Cross feed of left into right with inverted phase. This helps in suppressing
5841 the mono. If the value is 1 it will cancel all the signal common to both
5842 channels. Default is 0.3.
5843
5844 @item drymix
5845 Set level of input signal of original channel. Default is 0.8.
5846 @end table
5847
5848 @subsection Commands
5849
5850 This filter supports the all above options except @code{delay} as @ref{commands}.
5851
5852 @section superequalizer
5853 Apply 18 band equalizer.
5854
5855 The filter accepts the following options:
5856 @table @option
5857 @item 1b
5858 Set 65Hz band gain.
5859 @item 2b
5860 Set 92Hz band gain.
5861 @item 3b
5862 Set 131Hz band gain.
5863 @item 4b
5864 Set 185Hz band gain.
5865 @item 5b
5866 Set 262Hz band gain.
5867 @item 6b
5868 Set 370Hz band gain.
5869 @item 7b
5870 Set 523Hz band gain.
5871 @item 8b
5872 Set 740Hz band gain.
5873 @item 9b
5874 Set 1047Hz band gain.
5875 @item 10b
5876 Set 1480Hz band gain.
5877 @item 11b
5878 Set 2093Hz band gain.
5879 @item 12b
5880 Set 2960Hz band gain.
5881 @item 13b
5882 Set 4186Hz band gain.
5883 @item 14b
5884 Set 5920Hz band gain.
5885 @item 15b
5886 Set 8372Hz band gain.
5887 @item 16b
5888 Set 11840Hz band gain.
5889 @item 17b
5890 Set 16744Hz band gain.
5891 @item 18b
5892 Set 20000Hz band gain.
5893 @end table
5894
5895 @section surround
5896 Apply audio surround upmix filter.
5897
5898 This filter allows to produce multichannel output from audio stream.
5899
5900 The filter accepts the following options:
5901
5902 @table @option
5903 @item chl_out
5904 Set output channel layout. By default, this is @var{5.1}.
5905
5906 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5907 for the required syntax.
5908
5909 @item chl_in
5910 Set input channel layout. By default, this is @var{stereo}.
5911
5912 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5913 for the required syntax.
5914
5915 @item level_in
5916 Set input volume level. By default, this is @var{1}.
5917
5918 @item level_out
5919 Set output volume level. By default, this is @var{1}.
5920
5921 @item lfe
5922 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5923
5924 @item lfe_low
5925 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5926
5927 @item lfe_high
5928 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5929
5930 @item lfe_mode
5931 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5932 In @var{add} mode, LFE channel is created from input audio and added to output.
5933 In @var{sub} mode, LFE channel is created from input audio and added to output but
5934 also all non-LFE output channels are subtracted with output LFE channel.
5935
5936 @item angle
5937 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5938 Default is @var{90}.
5939
5940 @item fc_in
5941 Set front center input volume. By default, this is @var{1}.
5942
5943 @item fc_out
5944 Set front center output volume. By default, this is @var{1}.
5945
5946 @item fl_in
5947 Set front left input volume. By default, this is @var{1}.
5948
5949 @item fl_out
5950 Set front left output volume. By default, this is @var{1}.
5951
5952 @item fr_in
5953 Set front right input volume. By default, this is @var{1}.
5954
5955 @item fr_out
5956 Set front right output volume. By default, this is @var{1}.
5957
5958 @item sl_in
5959 Set side left input volume. By default, this is @var{1}.
5960
5961 @item sl_out
5962 Set side left output volume. By default, this is @var{1}.
5963
5964 @item sr_in
5965 Set side right input volume. By default, this is @var{1}.
5966
5967 @item sr_out
5968 Set side right output volume. By default, this is @var{1}.
5969
5970 @item bl_in
5971 Set back left input volume. By default, this is @var{1}.
5972
5973 @item bl_out
5974 Set back left output volume. By default, this is @var{1}.
5975
5976 @item br_in
5977 Set back right input volume. By default, this is @var{1}.
5978
5979 @item br_out
5980 Set back right output volume. By default, this is @var{1}.
5981
5982 @item bc_in
5983 Set back center input volume. By default, this is @var{1}.
5984
5985 @item bc_out
5986 Set back center output volume. By default, this is @var{1}.
5987
5988 @item lfe_in
5989 Set LFE input volume. By default, this is @var{1}.
5990
5991 @item lfe_out
5992 Set LFE output volume. By default, this is @var{1}.
5993
5994 @item allx
5995 Set spread usage of stereo image across X axis for all channels.
5996
5997 @item ally
5998 Set spread usage of stereo image across Y axis for all channels.
5999
6000 @item fcx, flx, frx, blx, brx, slx, srx, bcx
6001 Set spread usage of stereo image across X axis for each channel.
6002
6003 @item fcy, fly, fry, bly, bry, sly, sry, bcy
6004 Set spread usage of stereo image across Y axis for each channel.
6005
6006 @item win_size
6007 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
6008
6009 @item win_func
6010 Set window function.
6011
6012 It accepts the following values:
6013 @table @samp
6014 @item rect
6015 @item bartlett
6016 @item hann, hanning
6017 @item hamming
6018 @item blackman
6019 @item welch
6020 @item flattop
6021 @item bharris
6022 @item bnuttall
6023 @item bhann
6024 @item sine
6025 @item nuttall
6026 @item lanczos
6027 @item gauss
6028 @item tukey
6029 @item dolph
6030 @item cauchy
6031 @item parzen
6032 @item poisson
6033 @item bohman
6034 @end table
6035 Default is @code{hann}.
6036
6037 @item overlap
6038 Set window overlap. If set to 1, the recommended overlap for selected
6039 window function will be picked. Default is @code{0.5}.
6040 @end table
6041
6042 @section treble, highshelf
6043
6044 Boost or cut treble (upper) frequencies of the audio using a two-pole
6045 shelving filter with a response similar to that of a standard
6046 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
6047
6048 The filter accepts the following options:
6049
6050 @table @option
6051 @item gain, g
6052 Give the gain at whichever is the lower of ~22 kHz and the
6053 Nyquist frequency. Its useful range is about -20 (for a large cut)
6054 to +20 (for a large boost). Beware of clipping when using a positive gain.
6055
6056 @item frequency, f
6057 Set the filter's central frequency and so can be used
6058 to extend or reduce the frequency range to be boosted or cut.
6059 The default value is @code{3000} Hz.
6060
6061 @item width_type, t
6062 Set method to specify band-width of filter.
6063 @table @option
6064 @item h
6065 Hz
6066 @item q
6067 Q-Factor
6068 @item o
6069 octave
6070 @item s
6071 slope
6072 @item k
6073 kHz
6074 @end table
6075
6076 @item width, w
6077 Determine how steep is the filter's shelf transition.
6078
6079 @item poles, p
6080 Set number of poles. Default is 2.
6081
6082 @item mix, m
6083 How much to use filtered signal in output. Default is 1.
6084 Range is between 0 and 1.
6085
6086 @item channels, c
6087 Specify which channels to filter, by default all available are filtered.
6088
6089 @item normalize, n
6090 Normalize biquad coefficients, by default is disabled.
6091 Enabling it will normalize magnitude response at DC to 0dB.
6092
6093 @item transform, a
6094 Set transform type of IIR filter.
6095 @table @option
6096 @item di
6097 @item dii
6098 @item tdii
6099 @item latt
6100 @end table
6101
6102 @item precision, r
6103 Set precison of filtering.
6104 @table @option
6105 @item auto
6106 Pick automatic sample format depending on surround filters.
6107 @item s16
6108 Always use signed 16-bit.
6109 @item s32
6110 Always use signed 32-bit.
6111 @item f32
6112 Always use float 32-bit.
6113 @item f64
6114 Always use float 64-bit.
6115 @end table
6116 @end table
6117
6118 @subsection Commands
6119
6120 This filter supports the following commands:
6121 @table @option
6122 @item frequency, f
6123 Change treble frequency.
6124 Syntax for the command is : "@var{frequency}"
6125
6126 @item width_type, t
6127 Change treble width_type.
6128 Syntax for the command is : "@var{width_type}"
6129
6130 @item width, w
6131 Change treble width.
6132 Syntax for the command is : "@var{width}"
6133
6134 @item gain, g
6135 Change treble gain.
6136 Syntax for the command is : "@var{gain}"
6137
6138 @item mix, m
6139 Change treble mix.
6140 Syntax for the command is : "@var{mix}"
6141 @end table
6142
6143 @section tremolo
6144
6145 Sinusoidal amplitude modulation.
6146
6147 The filter accepts the following options:
6148
6149 @table @option
6150 @item f
6151 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
6152 (20 Hz or lower) will result in a tremolo effect.
6153 This filter may also be used as a ring modulator by specifying
6154 a modulation frequency higher than 20 Hz.
6155 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6156
6157 @item d
6158 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6159 Default value is 0.5.
6160 @end table
6161
6162 @section vibrato
6163
6164 Sinusoidal phase modulation.
6165
6166 The filter accepts the following options:
6167
6168 @table @option
6169 @item f
6170 Modulation frequency in Hertz.
6171 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6172
6173 @item d
6174 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6175 Default value is 0.5.
6176 @end table
6177
6178 @section volume
6179
6180 Adjust the input audio volume.
6181
6182 It accepts the following parameters:
6183 @table @option
6184
6185 @item volume
6186 Set audio volume expression.
6187
6188 Output values are clipped to the maximum value.
6189
6190 The output audio volume is given by the relation:
6191 @example
6192 @var{output_volume} = @var{volume} * @var{input_volume}
6193 @end example
6194
6195 The default value for @var{volume} is "1.0".
6196
6197 @item precision
6198 This parameter represents the mathematical precision.
6199
6200 It determines which input sample formats will be allowed, which affects the
6201 precision of the volume scaling.
6202
6203 @table @option
6204 @item fixed
6205 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
6206 @item float
6207 32-bit floating-point; this limits input sample format to FLT. (default)
6208 @item double
6209 64-bit floating-point; this limits input sample format to DBL.
6210 @end table
6211
6212 @item replaygain
6213 Choose the behaviour on encountering ReplayGain side data in input frames.
6214
6215 @table @option
6216 @item drop
6217 Remove ReplayGain side data, ignoring its contents (the default).
6218
6219 @item ignore
6220 Ignore ReplayGain side data, but leave it in the frame.
6221
6222 @item track
6223 Prefer the track gain, if present.
6224
6225 @item album
6226 Prefer the album gain, if present.
6227 @end table
6228
6229 @item replaygain_preamp
6230 Pre-amplification gain in dB to apply to the selected replaygain gain.
6231
6232 Default value for @var{replaygain_preamp} is 0.0.
6233
6234 @item replaygain_noclip
6235 Prevent clipping by limiting the gain applied.
6236
6237 Default value for @var{replaygain_noclip} is 1.
6238
6239 @item eval
6240 Set when the volume expression is evaluated.
6241
6242 It accepts the following values:
6243 @table @samp
6244 @item once
6245 only evaluate expression once during the filter initialization, or
6246 when the @samp{volume} command is sent
6247
6248 @item frame
6249 evaluate expression for each incoming frame
6250 @end table
6251
6252 Default value is @samp{once}.
6253 @end table
6254
6255 The volume expression can contain the following parameters.
6256
6257 @table @option
6258 @item n
6259 frame number (starting at zero)
6260 @item nb_channels
6261 number of channels
6262 @item nb_consumed_samples
6263 number of samples consumed by the filter
6264 @item nb_samples
6265 number of samples in the current frame
6266 @item pos
6267 original frame position in the file
6268 @item pts
6269 frame PTS
6270 @item sample_rate
6271 sample rate
6272 @item startpts
6273 PTS at start of stream
6274 @item startt
6275 time at start of stream
6276 @item t
6277 frame time
6278 @item tb
6279 timestamp timebase
6280 @item volume
6281 last set volume value
6282 @end table
6283
6284 Note that when @option{eval} is set to @samp{once} only the
6285 @var{sample_rate} and @var{tb} variables are available, all other
6286 variables will evaluate to NAN.
6287
6288 @subsection Commands
6289
6290 This filter supports the following commands:
6291 @table @option
6292 @item volume
6293 Modify the volume expression.
6294 The command accepts the same syntax of the corresponding option.
6295
6296 If the specified expression is not valid, it is kept at its current
6297 value.
6298 @end table
6299
6300 @subsection Examples
6301
6302 @itemize
6303 @item
6304 Halve the input audio volume:
6305 @example
6306 volume=volume=0.5
6307 volume=volume=1/2
6308 volume=volume=-6.0206dB
6309 @end example
6310
6311 In all the above example the named key for @option{volume} can be
6312 omitted, for example like in:
6313 @example
6314 volume=0.5
6315 @end example
6316
6317 @item
6318 Increase input audio power by 6 decibels using fixed-point precision:
6319 @example
6320 volume=volume=6dB:precision=fixed
6321 @end example
6322
6323 @item
6324 Fade volume after time 10 with an annihilation period of 5 seconds:
6325 @example
6326 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
6327 @end example
6328 @end itemize
6329
6330 @section volumedetect
6331
6332 Detect the volume of the input video.
6333
6334 The filter has no parameters. The input is not modified. Statistics about
6335 the volume will be printed in the log when the input stream end is reached.
6336
6337 In particular it will show the mean volume (root mean square), maximum
6338 volume (on a per-sample basis), and the beginning of a histogram of the
6339 registered volume values (from the maximum value to a cumulated 1/1000 of
6340 the samples).
6341
6342 All volumes are in decibels relative to the maximum PCM value.
6343
6344 @subsection Examples
6345
6346 Here is an excerpt of the output:
6347 @example
6348 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
6349 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
6350 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
6351 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
6352 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
6353 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
6354 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
6355 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
6356 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
6357 @end example
6358
6359 It means that:
6360 @itemize
6361 @item
6362 The mean square energy is approximately -27 dB, or 10^-2.7.
6363 @item
6364 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
6365 @item
6366 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
6367 @end itemize
6368
6369 In other words, raising the volume by +4 dB does not cause any clipping,
6370 raising it by +5 dB causes clipping for 6 samples, etc.
6371
6372 @c man end AUDIO FILTERS
6373
6374 @chapter Audio Sources
6375 @c man begin AUDIO SOURCES
6376
6377 Below is a description of the currently available audio sources.
6378
6379 @section abuffer
6380
6381 Buffer audio frames, and make them available to the filter chain.
6382
6383 This source is mainly intended for a programmatic use, in particular
6384 through the interface defined in @file{libavfilter/buffersrc.h}.
6385
6386 It accepts the following parameters:
6387 @table @option
6388
6389 @item time_base
6390 The timebase which will be used for timestamps of submitted frames. It must be
6391 either a floating-point number or in @var{numerator}/@var{denominator} form.
6392
6393 @item sample_rate
6394 The sample rate of the incoming audio buffers.
6395
6396 @item sample_fmt
6397 The sample format of the incoming audio buffers.
6398 Either a sample format name or its corresponding integer representation from
6399 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
6400
6401 @item channel_layout
6402 The channel layout of the incoming audio buffers.
6403 Either a channel layout name from channel_layout_map in
6404 @file{libavutil/channel_layout.c} or its corresponding integer representation
6405 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
6406
6407 @item channels
6408 The number of channels of the incoming audio buffers.
6409 If both @var{channels} and @var{channel_layout} are specified, then they
6410 must be consistent.
6411
6412 @end table
6413
6414 @subsection Examples
6415
6416 @example
6417 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
6418 @end example
6419
6420 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
6421 Since the sample format with name "s16p" corresponds to the number
6422 6 and the "stereo" channel layout corresponds to the value 0x3, this is
6423 equivalent to:
6424 @example
6425 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
6426 @end example
6427
6428 @section aevalsrc
6429
6430 Generate an audio signal specified by an expression.
6431
6432 This source accepts in input one or more expressions (one for each
6433 channel), which are evaluated and used to generate a corresponding
6434 audio signal.
6435
6436 This source accepts the following options:
6437
6438 @table @option
6439 @item exprs
6440 Set the '|'-separated expressions list for each separate channel. In case the
6441 @option{channel_layout} option is not specified, the selected channel layout
6442 depends on the number of provided expressions. Otherwise the last
6443 specified expression is applied to the remaining output channels.
6444
6445 @item channel_layout, c
6446 Set the channel layout. The number of channels in the specified layout
6447 must be equal to the number of specified expressions.
6448
6449 @item duration, d
6450 Set the minimum duration of the sourced audio. See
6451 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6452 for the accepted syntax.
6453 Note that the resulting duration may be greater than the specified
6454 duration, as the generated audio is always cut at the end of a
6455 complete frame.
6456
6457 If not specified, or the expressed duration is negative, the audio is
6458 supposed to be generated forever.
6459
6460 @item nb_samples, n
6461 Set the number of samples per channel per each output frame,
6462 default to 1024.
6463
6464 @item sample_rate, s
6465 Specify the sample rate, default to 44100.
6466 @end table
6467
6468 Each expression in @var{exprs} can contain the following constants:
6469
6470 @table @option
6471 @item n
6472 number of the evaluated sample, starting from 0
6473
6474 @item t
6475 time of the evaluated sample expressed in seconds, starting from 0
6476
6477 @item s
6478 sample rate
6479
6480 @end table
6481
6482 @subsection Examples
6483
6484 @itemize
6485 @item
6486 Generate silence:
6487 @example
6488 aevalsrc=0
6489 @end example
6490
6491 @item
6492 Generate a sin signal with frequency of 440 Hz, set sample rate to
6493 8000 Hz:
6494 @example
6495 aevalsrc="sin(440*2*PI*t):s=8000"
6496 @end example
6497
6498 @item
6499 Generate a two channels signal, specify the channel layout (Front
6500 Center + Back Center) explicitly:
6501 @example
6502 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
6503 @end example
6504
6505 @item
6506 Generate white noise:
6507 @example
6508 aevalsrc="-2+random(0)"
6509 @end example
6510
6511 @item
6512 Generate an amplitude modulated signal:
6513 @example
6514 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
6515 @end example
6516
6517 @item
6518 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
6519 @example
6520 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
6521 @end example
6522
6523 @end itemize
6524
6525 @section afirsrc
6526
6527 Generate a FIR coefficients using frequency sampling method.
6528
6529 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6530
6531 The filter accepts the following options:
6532
6533 @table @option
6534 @item taps, t
6535 Set number of filter coefficents in output audio stream.
6536 Default value is 1025.
6537
6538 @item frequency, f
6539 Set frequency points from where magnitude and phase are set.
6540 This must be in non decreasing order, and first element must be 0, while last element
6541 must be 1. Elements are separated by white spaces.
6542
6543 @item magnitude, m
6544 Set magnitude value for every frequency point set by @option{frequency}.
6545 Number of values must be same as number of frequency points.
6546 Values are separated by white spaces.
6547
6548 @item phase, p
6549 Set phase value for every frequency point set by @option{frequency}.
6550 Number of values must be same as number of frequency points.
6551 Values are separated by white spaces.
6552
6553 @item sample_rate, r
6554 Set sample rate, default is 44100.
6555
6556 @item nb_samples, n
6557 Set number of samples per each frame. Default is 1024.
6558
6559 @item win_func, w
6560 Set window function. Default is blackman.
6561 @end table
6562
6563 @section anullsrc
6564
6565 The null audio source, return unprocessed audio frames. It is mainly useful
6566 as a template and to be employed in analysis / debugging tools, or as
6567 the source for filters which ignore the input data (for example the sox
6568 synth filter).
6569
6570 This source accepts the following options:
6571
6572 @table @option
6573
6574 @item channel_layout, cl
6575
6576 Specifies the channel layout, and can be either an integer or a string
6577 representing a channel layout. The default value of @var{channel_layout}
6578 is "stereo".
6579
6580 Check the channel_layout_map definition in
6581 @file{libavutil/channel_layout.c} for the mapping between strings and
6582 channel layout values.
6583
6584 @item sample_rate, r
6585 Specifies the sample rate, and defaults to 44100.
6586
6587 @item nb_samples, n
6588 Set the number of samples per requested frames.
6589
6590 @item duration, d
6591 Set the duration of the sourced audio. See
6592 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6593 for the accepted syntax.
6594
6595 If not specified, or the expressed duration is negative, the audio is
6596 supposed to be generated forever.
6597 @end table
6598
6599 @subsection Examples
6600
6601 @itemize
6602 @item
6603 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
6604 @example
6605 anullsrc=r=48000:cl=4
6606 @end example
6607
6608 @item
6609 Do the same operation with a more obvious syntax:
6610 @example
6611 anullsrc=r=48000:cl=mono
6612 @end example
6613 @end itemize
6614
6615 All the parameters need to be explicitly defined.
6616
6617 @section flite
6618
6619 Synthesize a voice utterance using the libflite library.
6620
6621 To enable compilation of this filter you need to configure FFmpeg with
6622 @code{--enable-libflite}.
6623
6624 Note that versions of the flite library prior to 2.0 are not thread-safe.
6625
6626 The filter accepts the following options:
6627
6628 @table @option
6629
6630 @item list_voices
6631 If set to 1, list the names of the available voices and exit
6632 immediately. Default value is 0.
6633
6634 @item nb_samples, n
6635 Set the maximum number of samples per frame. Default value is 512.
6636
6637 @item textfile
6638 Set the filename containing the text to speak.
6639
6640 @item text
6641 Set the text to speak.
6642
6643 @item voice, v
6644 Set the voice to use for the speech synthesis. Default value is
6645 @code{kal}. See also the @var{list_voices} option.
6646 @end table
6647
6648 @subsection Examples
6649
6650 @itemize
6651 @item
6652 Read from file @file{speech.txt}, and synthesize the text using the
6653 standard flite voice:
6654 @example
6655 flite=textfile=speech.txt
6656 @end example
6657
6658 @item
6659 Read the specified text selecting the @code{slt} voice:
6660 @example
6661 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6662 @end example
6663
6664 @item
6665 Input text to ffmpeg:
6666 @example
6667 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6668 @end example
6669
6670 @item
6671 Make @file{ffplay} speak the specified text, using @code{flite} and
6672 the @code{lavfi} device:
6673 @example
6674 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6675 @end example
6676 @end itemize
6677
6678 For more information about libflite, check:
6679 @url{http://www.festvox.org/flite/}
6680
6681 @section anoisesrc
6682
6683 Generate a noise audio signal.
6684
6685 The filter accepts the following options:
6686
6687 @table @option
6688 @item sample_rate, r
6689 Specify the sample rate. Default value is 48000 Hz.
6690
6691 @item amplitude, a
6692 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6693 is 1.0.
6694
6695 @item duration, d
6696 Specify the duration of the generated audio stream. Not specifying this option
6697 results in noise with an infinite length.
6698
6699 @item color, colour, c
6700 Specify the color of noise. Available noise colors are white, pink, brown,
6701 blue, violet and velvet. Default color is white.
6702
6703 @item seed, s
6704 Specify a value used to seed the PRNG.
6705
6706 @item nb_samples, n
6707 Set the number of samples per each output frame, default is 1024.
6708 @end table
6709
6710 @subsection Examples
6711
6712 @itemize
6713
6714 @item
6715 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6716 @example
6717 anoisesrc=d=60:c=pink:r=44100:a=0.5
6718 @end example
6719 @end itemize
6720
6721 @section hilbert
6722
6723 Generate odd-tap Hilbert transform FIR coefficients.
6724
6725 The resulting stream can be used with @ref{afir} filter for phase-shifting
6726 the signal by 90 degrees.
6727
6728 This is used in many matrix coding schemes and for analytic signal generation.
6729 The process is often written as a multiplication by i (or j), the imaginary unit.
6730
6731 The filter accepts the following options:
6732
6733 @table @option
6734
6735 @item sample_rate, s
6736 Set sample rate, default is 44100.
6737
6738 @item taps, t
6739 Set length of FIR filter, default is 22051.
6740
6741 @item nb_samples, n
6742 Set number of samples per each frame.
6743
6744 @item win_func, w
6745 Set window function to be used when generating FIR coefficients.
6746 @end table
6747
6748 @section sinc
6749
6750 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6751
6752 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6753
6754 The filter accepts the following options:
6755
6756 @table @option
6757 @item sample_rate, r
6758 Set sample rate, default is 44100.
6759
6760 @item nb_samples, n
6761 Set number of samples per each frame. Default is 1024.
6762
6763 @item hp
6764 Set high-pass frequency. Default is 0.
6765
6766 @item lp
6767 Set low-pass frequency. Default is 0.
6768 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6769 is higher than 0 then filter will create band-pass filter coefficients,
6770 otherwise band-reject filter coefficients.
6771
6772 @item phase
6773 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6774
6775 @item beta
6776 Set Kaiser window beta.
6777
6778 @item att
6779 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6780
6781 @item round
6782 Enable rounding, by default is disabled.
6783
6784 @item hptaps
6785 Set number of taps for high-pass filter.
6786
6787 @item lptaps
6788 Set number of taps for low-pass filter.
6789 @end table
6790
6791 @section sine
6792
6793 Generate an audio signal made of a sine wave with amplitude 1/8.
6794
6795 The audio signal is bit-exact.
6796
6797 The filter accepts the following options:
6798
6799 @table @option
6800
6801 @item frequency, f
6802 Set the carrier frequency. Default is 440 Hz.
6803
6804 @item beep_factor, b
6805 Enable a periodic beep every second with frequency @var{beep_factor} times
6806 the carrier frequency. Default is 0, meaning the beep is disabled.
6807
6808 @item sample_rate, r
6809 Specify the sample rate, default is 44100.
6810
6811 @item duration, d
6812 Specify the duration of the generated audio stream.
6813
6814 @item samples_per_frame
6815 Set the number of samples per output frame.
6816
6817 The expression can contain the following constants:
6818
6819 @table @option
6820 @item n
6821 The (sequential) number of the output audio frame, starting from 0.
6822
6823 @item pts
6824 The PTS (Presentation TimeStamp) of the output audio frame,
6825 expressed in @var{TB} units.
6826
6827 @item t
6828 The PTS of the output audio frame, expressed in seconds.
6829
6830 @item TB
6831 The timebase of the output audio frames.
6832 @end table
6833
6834 Default is @code{1024}.
6835 @end table
6836
6837 @subsection Examples
6838
6839 @itemize
6840
6841 @item
6842 Generate a simple 440 Hz sine wave:
6843 @example
6844 sine
6845 @end example
6846
6847 @item
6848 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6849 @example
6850 sine=220:4:d=5
6851 sine=f=220:b=4:d=5
6852 sine=frequency=220:beep_factor=4:duration=5
6853 @end example
6854
6855 @item
6856 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6857 pattern:
6858 @example
6859 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6860 @end example
6861 @end itemize
6862
6863 @c man end AUDIO SOURCES
6864
6865 @chapter Audio Sinks
6866 @c man begin AUDIO SINKS
6867
6868 Below is a description of the currently available audio sinks.
6869
6870 @section abuffersink
6871
6872 Buffer audio frames, and make them available to the end of filter chain.
6873
6874 This sink is mainly intended for programmatic use, in particular
6875 through the interface defined in @file{libavfilter/buffersink.h}
6876 or the options system.
6877
6878 It accepts a pointer to an AVABufferSinkContext structure, which
6879 defines the incoming buffers' formats, to be passed as the opaque
6880 parameter to @code{avfilter_init_filter} for initialization.
6881 @section anullsink
6882
6883 Null audio sink; do absolutely nothing with the input audio. It is
6884 mainly useful as a template and for use in analysis / debugging
6885 tools.
6886
6887 @c man end AUDIO SINKS
6888
6889 @chapter Video Filters
6890 @c man begin VIDEO FILTERS
6891
6892 When you configure your FFmpeg build, you can disable any of the
6893 existing filters using @code{--disable-filters}.
6894 The configure output will show the video filters included in your
6895 build.
6896
6897 Below is a description of the currently available video filters.
6898
6899 @section addroi
6900
6901 Mark a region of interest in a video frame.
6902
6903 The frame data is passed through unchanged, but metadata is attached
6904 to the frame indicating regions of interest which can affect the
6905 behaviour of later encoding.  Multiple regions can be marked by
6906 applying the filter multiple times.
6907
6908 @table @option
6909 @item x
6910 Region distance in pixels from the left edge of the frame.
6911 @item y
6912 Region distance in pixels from the top edge of the frame.
6913 @item w
6914 Region width in pixels.
6915 @item h
6916 Region height in pixels.
6917
6918 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6919 and may contain the following variables:
6920 @table @option
6921 @item iw
6922 Width of the input frame.
6923 @item ih
6924 Height of the input frame.
6925 @end table
6926
6927 @item qoffset
6928 Quantisation offset to apply within the region.
6929
6930 This must be a real value in the range -1 to +1.  A value of zero
6931 indicates no quality change.  A negative value asks for better quality
6932 (less quantisation), while a positive value asks for worse quality
6933 (greater quantisation).
6934
6935 The range is calibrated so that the extreme values indicate the
6936 largest possible offset - if the rest of the frame is encoded with the
6937 worst possible quality, an offset of -1 indicates that this region
6938 should be encoded with the best possible quality anyway.  Intermediate
6939 values are then interpolated in some codec-dependent way.
6940
6941 For example, in 10-bit H.264 the quantisation parameter varies between
6942 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6943 this region should be encoded with a QP around one-tenth of the full
6944 range better than the rest of the frame.  So, if most of the frame
6945 were to be encoded with a QP of around 30, this region would get a QP
6946 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6947 An extreme value of -1 would indicate that this region should be
6948 encoded with the best possible quality regardless of the treatment of
6949 the rest of the frame - that is, should be encoded at a QP of -12.
6950 @item clear
6951 If set to true, remove any existing regions of interest marked on the
6952 frame before adding the new one.
6953 @end table
6954
6955 @subsection Examples
6956
6957 @itemize
6958 @item
6959 Mark the centre quarter of the frame as interesting.
6960 @example
6961 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6962 @end example
6963 @item
6964 Mark the 100-pixel-wide region on the left edge of the frame as very
6965 uninteresting (to be encoded at much lower quality than the rest of
6966 the frame).
6967 @example
6968 addroi=0:0:100:ih:+1/5
6969 @end example
6970 @end itemize
6971
6972 @section alphaextract
6973
6974 Extract the alpha component from the input as a grayscale video. This
6975 is especially useful with the @var{alphamerge} filter.
6976
6977 @section alphamerge
6978
6979 Add or replace the alpha component of the primary input with the
6980 grayscale value of a second input. This is intended for use with
6981 @var{alphaextract} to allow the transmission or storage of frame
6982 sequences that have alpha in a format that doesn't support an alpha
6983 channel.
6984
6985 For example, to reconstruct full frames from a normal YUV-encoded video
6986 and a separate video created with @var{alphaextract}, you might use:
6987 @example
6988 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6989 @end example
6990
6991 @section amplify
6992
6993 Amplify differences between current pixel and pixels of adjacent frames in
6994 same pixel location.
6995
6996 This filter accepts the following options:
6997
6998 @table @option
6999 @item radius
7000 Set frame radius. Default is 2. Allowed range is from 1 to 63.
7001 For example radius of 3 will instruct filter to calculate average of 7 frames.
7002
7003 @item factor
7004 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
7005
7006 @item threshold
7007 Set threshold for difference amplification. Any difference greater or equal to
7008 this value will not alter source pixel. Default is 10.
7009 Allowed range is from 0 to 65535.
7010
7011 @item tolerance
7012 Set tolerance for difference amplification. Any difference lower to
7013 this value will not alter source pixel. Default is 0.
7014 Allowed range is from 0 to 65535.
7015
7016 @item low
7017 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7018 This option controls maximum possible value that will decrease source pixel value.
7019
7020 @item high
7021 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7022 This option controls maximum possible value that will increase source pixel value.
7023
7024 @item planes
7025 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
7026 @end table
7027
7028 @subsection Commands
7029
7030 This filter supports the following @ref{commands} that corresponds to option of same name:
7031 @table @option
7032 @item factor
7033 @item threshold
7034 @item tolerance
7035 @item low
7036 @item high
7037 @item planes
7038 @end table
7039
7040 @section ass
7041
7042 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
7043 and libavformat to work. On the other hand, it is limited to ASS (Advanced
7044 Substation Alpha) subtitles files.
7045
7046 This filter accepts the following option in addition to the common options from
7047 the @ref{subtitles} filter:
7048
7049 @table @option
7050 @item shaping
7051 Set the shaping engine
7052
7053 Available values are:
7054 @table @samp
7055 @item auto
7056 The default libass shaping engine, which is the best available.
7057 @item simple
7058 Fast, font-agnostic shaper that can do only substitutions
7059 @item complex
7060 Slower shaper using OpenType for substitutions and positioning
7061 @end table
7062
7063 The default is @code{auto}.
7064 @end table
7065
7066 @section atadenoise
7067 Apply an Adaptive Temporal Averaging Denoiser to the video input.
7068
7069 The filter accepts the following options:
7070
7071 @table @option
7072 @item 0a
7073 Set threshold A for 1st plane. Default is 0.02.
7074 Valid range is 0 to 0.3.
7075
7076 @item 0b
7077 Set threshold B for 1st plane. Default is 0.04.
7078 Valid range is 0 to 5.
7079
7080 @item 1a
7081 Set threshold A for 2nd plane. Default is 0.02.
7082 Valid range is 0 to 0.3.
7083
7084 @item 1b
7085 Set threshold B for 2nd plane. Default is 0.04.
7086 Valid range is 0 to 5.
7087
7088 @item 2a
7089 Set threshold A for 3rd plane. Default is 0.02.
7090 Valid range is 0 to 0.3.
7091
7092 @item 2b
7093 Set threshold B for 3rd plane. Default is 0.04.
7094 Valid range is 0 to 5.
7095
7096 Threshold A is designed to react on abrupt changes in the input signal and
7097 threshold B is designed to react on continuous changes in the input signal.
7098
7099 @item s
7100 Set number of frames filter will use for averaging. Default is 9. Must be odd
7101 number in range [5, 129].
7102
7103 @item p
7104 Set what planes of frame filter will use for averaging. Default is all.
7105
7106 @item a
7107 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
7108 Alternatively can be set to @code{s} serial.
7109
7110 Parallel can be faster then serial, while other way around is never true.
7111 Parallel will abort early on first change being greater then thresholds, while serial
7112 will continue processing other side of frames if they are equal or below thresholds.
7113
7114 @item 0s
7115 @item 1s
7116 @item 2s
7117 Set sigma for 1st plane, 2nd plane or 3rd plane. Default is 32767.
7118 Valid range is from 0 to 32767.
7119 This options controls weight for each pixel in radius defined by size.
7120 Default value means every pixel have same weight.
7121 Setting this option to 0 effectively disables filtering.
7122 @end table
7123
7124 @subsection Commands
7125 This filter supports same @ref{commands} as options except option @code{s}.
7126 The command accepts the same syntax of the corresponding option.
7127
7128 @section avgblur
7129
7130 Apply average blur filter.
7131
7132 The filter accepts the following options:
7133
7134 @table @option
7135 @item sizeX
7136 Set horizontal radius size.
7137
7138 @item planes
7139 Set which planes to filter. By default all planes are filtered.
7140
7141 @item sizeY
7142 Set vertical radius size, if zero it will be same as @code{sizeX}.
7143 Default is @code{0}.
7144 @end table
7145
7146 @subsection Commands
7147 This filter supports same commands as options.
7148 The command accepts the same syntax of the corresponding option.
7149
7150 If the specified expression is not valid, it is kept at its current
7151 value.
7152
7153 @section bbox
7154
7155 Compute the bounding box for the non-black pixels in the input frame
7156 luminance plane.
7157
7158 This filter computes the bounding box containing all the pixels with a
7159 luminance value greater than the minimum allowed value.
7160 The parameters describing the bounding box are printed on the filter
7161 log.
7162
7163 The filter accepts the following option:
7164
7165 @table @option
7166 @item min_val
7167 Set the minimal luminance value. Default is @code{16}.
7168 @end table
7169
7170 @subsection Commands
7171
7172 This filter supports the all above options as @ref{commands}.
7173
7174 @section bilateral
7175 Apply bilateral filter, spatial smoothing while preserving edges.
7176
7177 The filter accepts the following options:
7178 @table @option
7179 @item sigmaS
7180 Set sigma of gaussian function to calculate spatial weight.
7181 Allowed range is 0 to 512. Default is 0.1.
7182
7183 @item sigmaR
7184 Set sigma of gaussian function to calculate range weight.
7185 Allowed range is 0 to 1. Default is 0.1.
7186
7187 @item planes
7188 Set planes to filter. Default is first only.
7189 @end table
7190
7191 @subsection Commands
7192
7193 This filter supports the all above options as @ref{commands}.
7194
7195 @section bitplanenoise
7196
7197 Show and measure bit plane noise.
7198
7199 The filter accepts the following options:
7200
7201 @table @option
7202 @item bitplane
7203 Set which plane to analyze. Default is @code{1}.
7204
7205 @item filter
7206 Filter out noisy pixels from @code{bitplane} set above.
7207 Default is disabled.
7208 @end table
7209
7210 @section blackdetect
7211
7212 Detect video intervals that are (almost) completely black. Can be
7213 useful to detect chapter transitions, commercials, or invalid
7214 recordings.
7215
7216 The filter outputs its detection analysis to both the log as well as
7217 frame metadata. If a black segment of at least the specified minimum
7218 duration is found, a line with the start and end timestamps as well
7219 as duration is printed to the log with level @code{info}. In addition,
7220 a log line with level @code{debug} is printed per frame showing the
7221 black amount detected for that frame.
7222
7223 The filter also attaches metadata to the first frame of a black
7224 segment with key @code{lavfi.black_start} and to the first frame
7225 after the black segment ends with key @code{lavfi.black_end}. The
7226 value is the frame's timestamp. This metadata is added regardless
7227 of the minimum duration specified.
7228
7229 The filter accepts the following options:
7230
7231 @table @option
7232 @item black_min_duration, d
7233 Set the minimum detected black duration expressed in seconds. It must
7234 be a non-negative floating point number.
7235
7236 Default value is 2.0.
7237
7238 @item picture_black_ratio_th, pic_th
7239 Set the threshold for considering a picture "black".
7240 Express the minimum value for the ratio:
7241 @example
7242 @var{nb_black_pixels} / @var{nb_pixels}
7243 @end example
7244
7245 for which a picture is considered black.
7246 Default value is 0.98.
7247
7248 @item pixel_black_th, pix_th
7249 Set the threshold for considering a pixel "black".
7250
7251 The threshold expresses the maximum pixel luminance value for which a
7252 pixel is considered "black". The provided value is scaled according to
7253 the following equation:
7254 @example
7255 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
7256 @end example
7257
7258 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
7259 the input video format, the range is [0-255] for YUV full-range
7260 formats and [16-235] for YUV non full-range formats.
7261
7262 Default value is 0.10.
7263 @end table
7264
7265 The following example sets the maximum pixel threshold to the minimum
7266 value, and detects only black intervals of 2 or more seconds:
7267 @example
7268 blackdetect=d=2:pix_th=0.00
7269 @end example
7270
7271 @section blackframe
7272
7273 Detect frames that are (almost) completely black. Can be useful to
7274 detect chapter transitions or commercials. Output lines consist of
7275 the frame number of the detected frame, the percentage of blackness,
7276 the position in the file if known or -1 and the timestamp in seconds.
7277
7278 In order to display the output lines, you need to set the loglevel at
7279 least to the AV_LOG_INFO value.
7280
7281 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
7282 The value represents the percentage of pixels in the picture that
7283 are below the threshold value.
7284
7285 It accepts the following parameters:
7286
7287 @table @option
7288
7289 @item amount
7290 The percentage of the pixels that have to be below the threshold; it defaults to
7291 @code{98}.
7292
7293 @item threshold, thresh
7294 The threshold below which a pixel value is considered black; it defaults to
7295 @code{32}.
7296
7297 @end table
7298
7299 @anchor{blend}
7300 @section blend
7301
7302 Blend two video frames into each other.
7303
7304 The @code{blend} filter takes two input streams and outputs one
7305 stream, the first input is the "top" layer and second input is
7306 "bottom" layer.  By default, the output terminates when the longest input terminates.
7307
7308 The @code{tblend} (time blend) filter takes two consecutive frames
7309 from one single stream, and outputs the result obtained by blending
7310 the new frame on top of the old frame.
7311
7312 A description of the accepted options follows.
7313
7314 @table @option
7315 @item c0_mode
7316 @item c1_mode
7317 @item c2_mode
7318 @item c3_mode
7319 @item all_mode
7320 Set blend mode for specific pixel component or all pixel components in case
7321 of @var{all_mode}. Default value is @code{normal}.
7322
7323 Available values for component modes are:
7324 @table @samp
7325 @item addition
7326 @item grainmerge
7327 @item and
7328 @item average
7329 @item burn
7330 @item darken
7331 @item difference
7332 @item grainextract
7333 @item divide
7334 @item dodge
7335 @item freeze
7336 @item exclusion
7337 @item extremity
7338 @item glow
7339 @item hardlight
7340 @item hardmix
7341 @item heat
7342 @item lighten
7343 @item linearlight
7344 @item multiply
7345 @item multiply128
7346 @item negation
7347 @item normal
7348 @item or
7349 @item overlay
7350 @item phoenix
7351 @item pinlight
7352 @item reflect
7353 @item screen
7354 @item softlight
7355 @item subtract
7356 @item vividlight
7357 @item xor
7358 @end table
7359
7360 @item c0_opacity
7361 @item c1_opacity
7362 @item c2_opacity
7363 @item c3_opacity
7364 @item all_opacity
7365 Set blend opacity for specific pixel component or all pixel components in case
7366 of @var{all_opacity}. Only used in combination with pixel component blend modes.
7367
7368 @item c0_expr
7369 @item c1_expr
7370 @item c2_expr
7371 @item c3_expr
7372 @item all_expr
7373 Set blend expression for specific pixel component or all pixel components in case
7374 of @var{all_expr}. Note that related mode options will be ignored if those are set.
7375
7376 The expressions can use the following variables:
7377
7378 @table @option
7379 @item N
7380 The sequential number of the filtered frame, starting from @code{0}.
7381
7382 @item X
7383 @item Y
7384 the coordinates of the current sample
7385
7386 @item W
7387 @item H
7388 the width and height of currently filtered plane
7389
7390 @item SW
7391 @item SH
7392 Width and height scale for the plane being filtered. It is the
7393 ratio between the dimensions of the current plane to the luma plane,
7394 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
7395 the luma plane and @code{0.5,0.5} for the chroma planes.
7396
7397 @item T
7398 Time of the current frame, expressed in seconds.
7399
7400 @item TOP, A
7401 Value of pixel component at current location for first video frame (top layer).
7402
7403 @item BOTTOM, B
7404 Value of pixel component at current location for second video frame (bottom layer).
7405 @end table
7406 @end table
7407
7408 The @code{blend} filter also supports the @ref{framesync} options.
7409
7410 @subsection Examples
7411
7412 @itemize
7413 @item
7414 Apply transition from bottom layer to top layer in first 10 seconds:
7415 @example
7416 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
7417 @end example
7418
7419 @item
7420 Apply linear horizontal transition from top layer to bottom layer:
7421 @example
7422 blend=all_expr='A*(X/W)+B*(1-X/W)'
7423 @end example
7424
7425 @item
7426 Apply 1x1 checkerboard effect:
7427 @example
7428 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
7429 @end example
7430
7431 @item
7432 Apply uncover left effect:
7433 @example
7434 blend=all_expr='if(gte(N*SW+X,W),A,B)'
7435 @end example
7436
7437 @item
7438 Apply uncover down effect:
7439 @example
7440 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
7441 @end example
7442
7443 @item
7444 Apply uncover up-left effect:
7445 @example
7446 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
7447 @end example
7448
7449 @item
7450 Split diagonally video and shows top and bottom layer on each side:
7451 @example
7452 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
7453 @end example
7454
7455 @item
7456 Display differences between the current and the previous frame:
7457 @example
7458 tblend=all_mode=grainextract
7459 @end example
7460 @end itemize
7461
7462 @subsection Commands
7463 This filter supports same @ref{commands} as options.
7464
7465 @section bm3d
7466
7467 Denoise frames using Block-Matching 3D algorithm.
7468
7469 The filter accepts the following options.
7470
7471 @table @option
7472 @item sigma
7473 Set denoising strength. Default value is 1.
7474 Allowed range is from 0 to 999.9.
7475 The denoising algorithm is very sensitive to sigma, so adjust it
7476 according to the source.
7477
7478 @item block
7479 Set local patch size. This sets dimensions in 2D.
7480
7481 @item bstep
7482 Set sliding step for processing blocks. Default value is 4.
7483 Allowed range is from 1 to 64.
7484 Smaller values allows processing more reference blocks and is slower.
7485
7486 @item group
7487 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
7488 When set to 1, no block matching is done. Larger values allows more blocks
7489 in single group.
7490 Allowed range is from 1 to 256.
7491
7492 @item range
7493 Set radius for search block matching. Default is 9.
7494 Allowed range is from 1 to INT32_MAX.
7495
7496 @item mstep
7497 Set step between two search locations for block matching. Default is 1.
7498 Allowed range is from 1 to 64. Smaller is slower.
7499
7500 @item thmse
7501 Set threshold of mean square error for block matching. Valid range is 0 to
7502 INT32_MAX.
7503
7504 @item hdthr
7505 Set thresholding parameter for hard thresholding in 3D transformed domain.
7506 Larger values results in stronger hard-thresholding filtering in frequency
7507 domain.
7508
7509 @item estim
7510 Set filtering estimation mode. Can be @code{basic} or @code{final}.
7511 Default is @code{basic}.
7512
7513 @item ref
7514 If enabled, filter will use 2nd stream for block matching.
7515 Default is disabled for @code{basic} value of @var{estim} option,
7516 and always enabled if value of @var{estim} is @code{final}.
7517
7518 @item planes
7519 Set planes to filter. Default is all available except alpha.
7520 @end table
7521
7522 @subsection Examples
7523
7524 @itemize
7525 @item
7526 Basic filtering with bm3d:
7527 @example
7528 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
7529 @end example
7530
7531 @item
7532 Same as above, but filtering only luma:
7533 @example
7534 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
7535 @end example
7536
7537 @item
7538 Same as above, but with both estimation modes:
7539 @example
7540 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
7541 @end example
7542
7543 @item
7544 Same as above, but prefilter with @ref{nlmeans} filter instead:
7545 @example
7546 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
7547 @end example
7548 @end itemize
7549
7550 @section boxblur
7551
7552 Apply a boxblur algorithm to the input video.
7553
7554 It accepts the following parameters:
7555
7556 @table @option
7557
7558 @item luma_radius, lr
7559 @item luma_power, lp
7560 @item chroma_radius, cr
7561 @item chroma_power, cp
7562 @item alpha_radius, ar
7563 @item alpha_power, ap
7564
7565 @end table
7566
7567 A description of the accepted options follows.
7568
7569 @table @option
7570 @item luma_radius, lr
7571 @item chroma_radius, cr
7572 @item alpha_radius, ar
7573 Set an expression for the box radius in pixels used for blurring the
7574 corresponding input plane.
7575
7576 The radius value must be a non-negative number, and must not be
7577 greater than the value of the expression @code{min(w,h)/2} for the
7578 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
7579 planes.
7580
7581 Default value for @option{luma_radius} is "2". If not specified,
7582 @option{chroma_radius} and @option{alpha_radius} default to the
7583 corresponding value set for @option{luma_radius}.
7584
7585 The expressions can contain the following constants:
7586 @table @option
7587 @item w
7588 @item h
7589 The input width and height in pixels.
7590
7591 @item cw
7592 @item ch
7593 The input chroma image width and height in pixels.
7594
7595 @item hsub
7596 @item vsub
7597 The horizontal and vertical chroma subsample values. For example, for the
7598 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
7599 @end table
7600
7601 @item luma_power, lp
7602 @item chroma_power, cp
7603 @item alpha_power, ap
7604 Specify how many times the boxblur filter is applied to the
7605 corresponding plane.
7606
7607 Default value for @option{luma_power} is 2. If not specified,
7608 @option{chroma_power} and @option{alpha_power} default to the
7609 corresponding value set for @option{luma_power}.
7610
7611 A value of 0 will disable the effect.
7612 @end table
7613
7614 @subsection Examples
7615
7616 @itemize
7617 @item
7618 Apply a boxblur filter with the luma, chroma, and alpha radii
7619 set to 2:
7620 @example
7621 boxblur=luma_radius=2:luma_power=1
7622 boxblur=2:1
7623 @end example
7624
7625 @item
7626 Set the luma radius to 2, and alpha and chroma radius to 0:
7627 @example
7628 boxblur=2:1:cr=0:ar=0
7629 @end example
7630
7631 @item
7632 Set the luma and chroma radii to a fraction of the video dimension:
7633 @example
7634 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
7635 @end example
7636 @end itemize
7637
7638 @section bwdif
7639
7640 Deinterlace the input video ("bwdif" stands for "Bob Weaver
7641 Deinterlacing Filter").
7642
7643 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
7644 interpolation algorithms.
7645 It accepts the following parameters:
7646
7647 @table @option
7648 @item mode
7649 The interlacing mode to adopt. It accepts one of the following values:
7650
7651 @table @option
7652 @item 0, send_frame
7653 Output one frame for each frame.
7654 @item 1, send_field
7655 Output one frame for each field.
7656 @end table
7657
7658 The default value is @code{send_field}.
7659
7660 @item parity
7661 The picture field parity assumed for the input interlaced video. It accepts one
7662 of the following values:
7663
7664 @table @option
7665 @item 0, tff
7666 Assume the top field is first.
7667 @item 1, bff
7668 Assume the bottom field is first.
7669 @item -1, auto
7670 Enable automatic detection of field parity.
7671 @end table
7672
7673 The default value is @code{auto}.
7674 If the interlacing is unknown or the decoder does not export this information,
7675 top field first will be assumed.
7676
7677 @item deint
7678 Specify which frames to deinterlace. Accepts one of the following
7679 values:
7680
7681 @table @option
7682 @item 0, all
7683 Deinterlace all frames.
7684 @item 1, interlaced
7685 Only deinterlace frames marked as interlaced.
7686 @end table
7687
7688 The default value is @code{all}.
7689 @end table
7690
7691 @section cas
7692
7693 Apply Contrast Adaptive Sharpen filter to video stream.
7694
7695 The filter accepts the following options:
7696
7697 @table @option
7698 @item strength
7699 Set the sharpening strength. Default value is 0.
7700
7701 @item planes
7702 Set planes to filter. Default value is to filter all
7703 planes except alpha plane.
7704 @end table
7705
7706 @subsection Commands
7707 This filter supports same @ref{commands} as options.
7708
7709 @section chromahold
7710 Remove all color information for all colors except for certain one.
7711
7712 The filter accepts the following options:
7713
7714 @table @option
7715 @item color
7716 The color which will not be replaced with neutral chroma.
7717
7718 @item similarity
7719 Similarity percentage with the above color.
7720 0.01 matches only the exact key color, while 1.0 matches everything.
7721
7722 @item blend
7723 Blend percentage.
7724 0.0 makes pixels either fully gray, or not gray at all.
7725 Higher values result in more preserved color.
7726
7727 @item yuv
7728 Signals that the color passed is already in YUV instead of RGB.
7729
7730 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7731 This can be used to pass exact YUV values as hexadecimal numbers.
7732 @end table
7733
7734 @subsection Commands
7735 This filter supports same @ref{commands} as options.
7736 The command accepts the same syntax of the corresponding option.
7737
7738 If the specified expression is not valid, it is kept at its current
7739 value.
7740
7741 @section chromakey
7742 YUV colorspace color/chroma keying.
7743
7744 The filter accepts the following options:
7745
7746 @table @option
7747 @item color
7748 The color which will be replaced with transparency.
7749
7750 @item similarity
7751 Similarity percentage with the key color.
7752
7753 0.01 matches only the exact key color, while 1.0 matches everything.
7754
7755 @item blend
7756 Blend percentage.
7757
7758 0.0 makes pixels either fully transparent, or not transparent at all.
7759
7760 Higher values result in semi-transparent pixels, with a higher transparency
7761 the more similar the pixels color is to the key color.
7762
7763 @item yuv
7764 Signals that the color passed is already in YUV instead of RGB.
7765
7766 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7767 This can be used to pass exact YUV values as hexadecimal numbers.
7768 @end table
7769
7770 @subsection Commands
7771 This filter supports same @ref{commands} as options.
7772 The command accepts the same syntax of the corresponding option.
7773
7774 If the specified expression is not valid, it is kept at its current
7775 value.
7776
7777 @subsection Examples
7778
7779 @itemize
7780 @item
7781 Make every green pixel in the input image transparent:
7782 @example
7783 ffmpeg -i input.png -vf chromakey=green out.png
7784 @end example
7785
7786 @item
7787 Overlay a greenscreen-video on top of a static black background.
7788 @example
7789 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
7790 @end example
7791 @end itemize
7792
7793 @section chromanr
7794 Reduce chrominance noise.
7795
7796 The filter accepts the following options:
7797
7798 @table @option
7799 @item thres
7800 Set threshold for averaging chrominance values.
7801 Sum of absolute difference of Y, U and V pixel components of current
7802 pixel and neighbour pixels lower than this threshold will be used in
7803 averaging. Luma component is left unchanged and is copied to output.
7804 Default value is 30. Allowed range is from 1 to 200.
7805
7806 @item sizew
7807 Set horizontal radius of rectangle used for averaging.
7808 Allowed range is from 1 to 100. Default value is 5.
7809
7810 @item sizeh
7811 Set vertical radius of rectangle used for averaging.
7812 Allowed range is from 1 to 100. Default value is 5.
7813
7814 @item stepw
7815 Set horizontal step when averaging. Default value is 1.
7816 Allowed range is from 1 to 50.
7817 Mostly useful to speed-up filtering.
7818
7819 @item steph
7820 Set vertical step when averaging. Default value is 1.
7821 Allowed range is from 1 to 50.
7822 Mostly useful to speed-up filtering.
7823
7824 @item threy
7825 Set Y threshold for averaging chrominance values.
7826 Set finer control for max allowed difference between Y components
7827 of current pixel and neigbour pixels.
7828 Default value is 200. Allowed range is from 1 to 200.
7829
7830 @item threu
7831 Set U threshold for averaging chrominance values.
7832 Set finer control for max allowed difference between U components
7833 of current pixel and neigbour pixels.
7834 Default value is 200. Allowed range is from 1 to 200.
7835
7836 @item threv
7837 Set V threshold for averaging chrominance values.
7838 Set finer control for max allowed difference between V components
7839 of current pixel and neigbour pixels.
7840 Default value is 200. Allowed range is from 1 to 200.
7841 @end table
7842
7843 @subsection Commands
7844 This filter supports same @ref{commands} as options.
7845 The command accepts the same syntax of the corresponding option.
7846
7847 @section chromashift
7848 Shift chroma pixels horizontally and/or vertically.
7849
7850 The filter accepts the following options:
7851 @table @option
7852 @item cbh
7853 Set amount to shift chroma-blue horizontally.
7854 @item cbv
7855 Set amount to shift chroma-blue vertically.
7856 @item crh
7857 Set amount to shift chroma-red horizontally.
7858 @item crv
7859 Set amount to shift chroma-red vertically.
7860 @item edge
7861 Set edge mode, can be @var{smear}, default, or @var{warp}.
7862 @end table
7863
7864 @subsection Commands
7865
7866 This filter supports the all above options as @ref{commands}.
7867
7868 @section ciescope
7869
7870 Display CIE color diagram with pixels overlaid onto it.
7871
7872 The filter accepts the following options:
7873
7874 @table @option
7875 @item system
7876 Set color system.
7877
7878 @table @samp
7879 @item ntsc, 470m
7880 @item ebu, 470bg
7881 @item smpte
7882 @item 240m
7883 @item apple
7884 @item widergb
7885 @item cie1931
7886 @item rec709, hdtv
7887 @item uhdtv, rec2020
7888 @item dcip3
7889 @end table
7890
7891 @item cie
7892 Set CIE system.
7893
7894 @table @samp
7895 @item xyy
7896 @item ucs
7897 @item luv
7898 @end table
7899
7900 @item gamuts
7901 Set what gamuts to draw.
7902
7903 See @code{system} option for available values.
7904
7905 @item size, s
7906 Set ciescope size, by default set to 512.
7907
7908 @item intensity, i
7909 Set intensity used to map input pixel values to CIE diagram.
7910
7911 @item contrast
7912 Set contrast used to draw tongue colors that are out of active color system gamut.
7913
7914 @item corrgamma
7915 Correct gamma displayed on scope, by default enabled.
7916
7917 @item showwhite
7918 Show white point on CIE diagram, by default disabled.
7919
7920 @item gamma
7921 Set input gamma. Used only with XYZ input color space.
7922 @end table
7923
7924 @section codecview
7925
7926 Visualize information exported by some codecs.
7927
7928 Some codecs can export information through frames using side-data or other
7929 means. For example, some MPEG based codecs export motion vectors through the
7930 @var{export_mvs} flag in the codec @option{flags2} option.
7931
7932 The filter accepts the following option:
7933
7934 @table @option
7935 @item mv
7936 Set motion vectors to visualize.
7937
7938 Available flags for @var{mv} are:
7939
7940 @table @samp
7941 @item pf
7942 forward predicted MVs of P-frames
7943 @item bf
7944 forward predicted MVs of B-frames
7945 @item bb
7946 backward predicted MVs of B-frames
7947 @end table
7948
7949 @item qp
7950 Display quantization parameters using the chroma planes.
7951
7952 @item mv_type, mvt
7953 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7954
7955 Available flags for @var{mv_type} are:
7956
7957 @table @samp
7958 @item fp
7959 forward predicted MVs
7960 @item bp
7961 backward predicted MVs
7962 @end table
7963
7964 @item frame_type, ft
7965 Set frame type to visualize motion vectors of.
7966
7967 Available flags for @var{frame_type} are:
7968
7969 @table @samp
7970 @item if
7971 intra-coded frames (I-frames)
7972 @item pf
7973 predicted frames (P-frames)
7974 @item bf
7975 bi-directionally predicted frames (B-frames)
7976 @end table
7977 @end table
7978
7979 @subsection Examples
7980
7981 @itemize
7982 @item
7983 Visualize forward predicted MVs of all frames using @command{ffplay}:
7984 @example
7985 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7986 @end example
7987
7988 @item
7989 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7990 @example
7991 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7992 @end example
7993 @end itemize
7994
7995 @section colorbalance
7996 Modify intensity of primary colors (red, green and blue) of input frames.
7997
7998 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7999 regions for the red-cyan, green-magenta or blue-yellow balance.
8000
8001 A positive adjustment value shifts the balance towards the primary color, a negative
8002 value towards the complementary color.
8003
8004 The filter accepts the following options:
8005
8006 @table @option
8007 @item rs
8008 @item gs
8009 @item bs
8010 Adjust red, green and blue shadows (darkest pixels).
8011
8012 @item rm
8013 @item gm
8014 @item bm
8015 Adjust red, green and blue midtones (medium pixels).
8016
8017 @item rh
8018 @item gh
8019 @item bh
8020 Adjust red, green and blue highlights (brightest pixels).
8021
8022 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8023
8024 @item pl
8025 Preserve lightness when changing color balance. Default is disabled.
8026 @end table
8027
8028 @subsection Examples
8029
8030 @itemize
8031 @item
8032 Add red color cast to shadows:
8033 @example
8034 colorbalance=rs=.3
8035 @end example
8036 @end itemize
8037
8038 @subsection Commands
8039
8040 This filter supports the all above options as @ref{commands}.
8041
8042 @section colorcontrast
8043
8044 Adjust color contrast between RGB components.
8045
8046 The filter accepts the following options:
8047
8048 @table @option
8049 @item rc
8050 Set the red-cyan contrast. Defaults is 0.0. Allowed range is from -1.0 to 1.0.
8051
8052 @item gm
8053 Set the green-magenta contrast. Defaults is 0.0. Allowed range is from -1.0 to 1.0.
8054
8055 @item by
8056 Set the blue-yellow contrast. Defaults is 0.0. Allowed range is from -1.0 to 1.0.
8057
8058 @item rcw
8059 @item gmw
8060 @item byw
8061 Set the weight of each @code{rc}, @code{gm}, @code{by} option value. Default value is 0.0.
8062 Allowed range is from 0.0 to 1.0. If all weights are 0.0 filtering is disabled.
8063
8064 @item pl
8065 Set the amount of preserving lightness. Default value is 0.0. Allowed range is from 0.0 to 1.0.
8066 @end table
8067
8068 @subsection Commands
8069
8070 This filter supports the all above options as @ref{commands}.
8071
8072 @section colorcorrect
8073
8074 Adjust color white balance selectively for blacks and whites.
8075 This filter operates in YUV colorspace.
8076
8077 The filter accepts the following options:
8078
8079 @table @option
8080 @item rl
8081 Set the red shadow spot. Allowed range is from -1.0 to 1.0.
8082 Default value is 0.
8083
8084 @item bl
8085 Set the blue shadow spot. Allowed range is from -1.0 to 1.0.
8086 Default value is 0.
8087
8088 @item rh
8089 Set the red highlight spot. Allowed range is from -1.0 to 1.0.
8090 Default value is 0.
8091
8092 @item bh
8093 Set the red highlight spot. Allowed range is from -1.0 to 1.0.
8094 Default value is 0.
8095
8096 @item saturation
8097 Set the amount of saturation. Allowed range is from -3.0 to 3.0.
8098 Default value is 1.
8099 @end table
8100
8101 @subsection Commands
8102
8103 This filter supports the all above options as @ref{commands}.
8104
8105 @section colorchannelmixer
8106
8107 Adjust video input frames by re-mixing color channels.
8108
8109 This filter modifies a color channel by adding the values associated to
8110 the other channels of the same pixels. For example if the value to
8111 modify is red, the output value will be:
8112 @example
8113 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
8114 @end example
8115
8116 The filter accepts the following options:
8117
8118 @table @option
8119 @item rr
8120 @item rg
8121 @item rb
8122 @item ra
8123 Adjust contribution of input red, green, blue and alpha channels for output red channel.
8124 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
8125
8126 @item gr
8127 @item gg
8128 @item gb
8129 @item ga
8130 Adjust contribution of input red, green, blue and alpha channels for output green channel.
8131 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
8132
8133 @item br
8134 @item bg
8135 @item bb
8136 @item ba
8137 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
8138 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
8139
8140 @item ar
8141 @item ag
8142 @item ab
8143 @item aa
8144 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
8145 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
8146
8147 Allowed ranges for options are @code{[-2.0, 2.0]}.
8148
8149 @item pl
8150 Preserve lightness when changing colors. Allowed range is from @code{[0.0, 1.0]}.
8151 Default is @code{0.0}, thus disabled.
8152 @end table
8153
8154 @subsection Examples
8155
8156 @itemize
8157 @item
8158 Convert source to grayscale:
8159 @example
8160 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
8161 @end example
8162 @item
8163 Simulate sepia tones:
8164 @example
8165 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
8166 @end example
8167 @end itemize
8168
8169 @subsection Commands
8170
8171 This filter supports the all above options as @ref{commands}.
8172
8173 @section colorize
8174 Overlay a solid color on the video stream.
8175
8176 The filter accepts the following options:
8177
8178 @table @option
8179 @item hue
8180 Set the color hue. Allowed range is from 0 to 360.
8181 Default value is 0.
8182
8183 @item saturation
8184 Set the color saturation. Allowed range is from 0 to 1.
8185 Default value is 0.5.
8186
8187 @item lightness
8188 Set the color lightness. Allowed range is from 0 to 1.
8189 Default value is 0.5.
8190
8191 @item mix
8192 Set the mix of source lightness. By default is set to 1.0.
8193 Allowed range is from 0.0 to 1.0.
8194 @end table
8195
8196 @subsection Commands
8197
8198 This filter supports the all above options as @ref{commands}.
8199
8200 @section colorkey
8201 RGB colorspace color keying.
8202
8203 The filter accepts the following options:
8204
8205 @table @option
8206 @item color
8207 The color which will be replaced with transparency.
8208
8209 @item similarity
8210 Similarity percentage with the key color.
8211
8212 0.01 matches only the exact key color, while 1.0 matches everything.
8213
8214 @item blend
8215 Blend percentage.
8216
8217 0.0 makes pixels either fully transparent, or not transparent at all.
8218
8219 Higher values result in semi-transparent pixels, with a higher transparency
8220 the more similar the pixels color is to the key color.
8221 @end table
8222
8223 @subsection Examples
8224
8225 @itemize
8226 @item
8227 Make every green pixel in the input image transparent:
8228 @example
8229 ffmpeg -i input.png -vf colorkey=green out.png
8230 @end example
8231
8232 @item
8233 Overlay a greenscreen-video on top of a static background image.
8234 @example
8235 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
8236 @end example
8237 @end itemize
8238
8239 @subsection Commands
8240 This filter supports same @ref{commands} as options.
8241 The command accepts the same syntax of the corresponding option.
8242
8243 If the specified expression is not valid, it is kept at its current
8244 value.
8245
8246 @section colorhold
8247 Remove all color information for all RGB colors except for certain one.
8248
8249 The filter accepts the following options:
8250
8251 @table @option
8252 @item color
8253 The color which will not be replaced with neutral gray.
8254
8255 @item similarity
8256 Similarity percentage with the above color.
8257 0.01 matches only the exact key color, while 1.0 matches everything.
8258
8259 @item blend
8260 Blend percentage. 0.0 makes pixels fully gray.
8261 Higher values result in more preserved color.
8262 @end table
8263
8264 @subsection Commands
8265 This filter supports same @ref{commands} as options.
8266 The command accepts the same syntax of the corresponding option.
8267
8268 If the specified expression is not valid, it is kept at its current
8269 value.
8270
8271 @section colorlevels
8272
8273 Adjust video input frames using levels.
8274
8275 The filter accepts the following options:
8276
8277 @table @option
8278 @item rimin
8279 @item gimin
8280 @item bimin
8281 @item aimin
8282 Adjust red, green, blue and alpha input black point.
8283 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8284
8285 @item rimax
8286 @item gimax
8287 @item bimax
8288 @item aimax
8289 Adjust red, green, blue and alpha input white point.
8290 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
8291
8292 Input levels are used to lighten highlights (bright tones), darken shadows
8293 (dark tones), change the balance of bright and dark tones.
8294
8295 @item romin
8296 @item gomin
8297 @item bomin
8298 @item aomin
8299 Adjust red, green, blue and alpha output black point.
8300 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
8301
8302 @item romax
8303 @item gomax
8304 @item bomax
8305 @item aomax
8306 Adjust red, green, blue and alpha output white point.
8307 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
8308
8309 Output levels allows manual selection of a constrained output level range.
8310 @end table
8311
8312 @subsection Examples
8313
8314 @itemize
8315 @item
8316 Make video output darker:
8317 @example
8318 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
8319 @end example
8320
8321 @item
8322 Increase contrast:
8323 @example
8324 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
8325 @end example
8326
8327 @item
8328 Make video output lighter:
8329 @example
8330 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
8331 @end example
8332
8333 @item
8334 Increase brightness:
8335 @example
8336 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
8337 @end example
8338 @end itemize
8339
8340 @subsection Commands
8341
8342 This filter supports the all above options as @ref{commands}.
8343
8344 @section colormatrix
8345
8346 Convert color matrix.
8347
8348 The filter accepts the following options:
8349
8350 @table @option
8351 @item src
8352 @item dst
8353 Specify the source and destination color matrix. Both values must be
8354 specified.
8355
8356 The accepted values are:
8357 @table @samp
8358 @item bt709
8359 BT.709
8360
8361 @item fcc
8362 FCC
8363
8364 @item bt601
8365 BT.601
8366
8367 @item bt470
8368 BT.470
8369
8370 @item bt470bg
8371 BT.470BG
8372
8373 @item smpte170m
8374 SMPTE-170M
8375
8376 @item smpte240m
8377 SMPTE-240M
8378
8379 @item bt2020
8380 BT.2020
8381 @end table
8382 @end table
8383
8384 For example to convert from BT.601 to SMPTE-240M, use the command:
8385 @example
8386 colormatrix=bt601:smpte240m
8387 @end example
8388
8389 @section colorspace
8390
8391 Convert colorspace, transfer characteristics or color primaries.
8392 Input video needs to have an even size.
8393
8394 The filter accepts the following options:
8395
8396 @table @option
8397 @anchor{all}
8398 @item all
8399 Specify all color properties at once.
8400
8401 The accepted values are:
8402 @table @samp
8403 @item bt470m
8404 BT.470M
8405
8406 @item bt470bg
8407 BT.470BG
8408
8409 @item bt601-6-525
8410 BT.601-6 525
8411
8412 @item bt601-6-625
8413 BT.601-6 625
8414
8415 @item bt709
8416 BT.709
8417
8418 @item smpte170m
8419 SMPTE-170M
8420
8421 @item smpte240m
8422 SMPTE-240M
8423
8424 @item bt2020
8425 BT.2020
8426
8427 @end table
8428
8429 @anchor{space}
8430 @item space
8431 Specify output colorspace.
8432
8433 The accepted values are:
8434 @table @samp
8435 @item bt709
8436 BT.709
8437
8438 @item fcc
8439 FCC
8440
8441 @item bt470bg
8442 BT.470BG or BT.601-6 625
8443
8444 @item smpte170m
8445 SMPTE-170M or BT.601-6 525
8446
8447 @item smpte240m
8448 SMPTE-240M
8449
8450 @item ycgco
8451 YCgCo
8452
8453 @item bt2020ncl
8454 BT.2020 with non-constant luminance
8455
8456 @end table
8457
8458 @anchor{trc}
8459 @item trc
8460 Specify output transfer characteristics.
8461
8462 The accepted values are:
8463 @table @samp
8464 @item bt709
8465 BT.709
8466
8467 @item bt470m
8468 BT.470M
8469
8470 @item bt470bg
8471 BT.470BG
8472
8473 @item gamma22
8474 Constant gamma of 2.2
8475
8476 @item gamma28
8477 Constant gamma of 2.8
8478
8479 @item smpte170m
8480 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8481
8482 @item smpte240m
8483 SMPTE-240M
8484
8485 @item srgb
8486 SRGB
8487
8488 @item iec61966-2-1
8489 iec61966-2-1
8490
8491 @item iec61966-2-4
8492 iec61966-2-4
8493
8494 @item xvycc
8495 xvycc
8496
8497 @item bt2020-10
8498 BT.2020 for 10-bits content
8499
8500 @item bt2020-12
8501 BT.2020 for 12-bits content
8502
8503 @end table
8504
8505 @anchor{primaries}
8506 @item primaries
8507 Specify output color primaries.
8508
8509 The accepted values are:
8510 @table @samp
8511 @item bt709
8512 BT.709
8513
8514 @item bt470m
8515 BT.470M
8516
8517 @item bt470bg
8518 BT.470BG or BT.601-6 625
8519
8520 @item smpte170m
8521 SMPTE-170M or BT.601-6 525
8522
8523 @item smpte240m
8524 SMPTE-240M
8525
8526 @item film
8527 film
8528
8529 @item smpte431
8530 SMPTE-431
8531
8532 @item smpte432
8533 SMPTE-432
8534
8535 @item bt2020
8536 BT.2020
8537
8538 @item jedec-p22
8539 JEDEC P22 phosphors
8540
8541 @end table
8542
8543 @anchor{range}
8544 @item range
8545 Specify output color range.
8546
8547 The accepted values are:
8548 @table @samp
8549 @item tv
8550 TV (restricted) range
8551
8552 @item mpeg
8553 MPEG (restricted) range
8554
8555 @item pc
8556 PC (full) range
8557
8558 @item jpeg
8559 JPEG (full) range
8560
8561 @end table
8562
8563 @item format
8564 Specify output color format.
8565
8566 The accepted values are:
8567 @table @samp
8568 @item yuv420p
8569 YUV 4:2:0 planar 8-bits
8570
8571 @item yuv420p10
8572 YUV 4:2:0 planar 10-bits
8573
8574 @item yuv420p12
8575 YUV 4:2:0 planar 12-bits
8576
8577 @item yuv422p
8578 YUV 4:2:2 planar 8-bits
8579
8580 @item yuv422p10
8581 YUV 4:2:2 planar 10-bits
8582
8583 @item yuv422p12
8584 YUV 4:2:2 planar 12-bits
8585
8586 @item yuv444p
8587 YUV 4:4:4 planar 8-bits
8588
8589 @item yuv444p10
8590 YUV 4:4:4 planar 10-bits
8591
8592 @item yuv444p12
8593 YUV 4:4:4 planar 12-bits
8594
8595 @end table
8596
8597 @item fast
8598 Do a fast conversion, which skips gamma/primary correction. This will take
8599 significantly less CPU, but will be mathematically incorrect. To get output
8600 compatible with that produced by the colormatrix filter, use fast=1.
8601
8602 @item dither
8603 Specify dithering mode.
8604
8605 The accepted values are:
8606 @table @samp
8607 @item none
8608 No dithering
8609
8610 @item fsb
8611 Floyd-Steinberg dithering
8612 @end table
8613
8614 @item wpadapt
8615 Whitepoint adaptation mode.
8616
8617 The accepted values are:
8618 @table @samp
8619 @item bradford
8620 Bradford whitepoint adaptation
8621
8622 @item vonkries
8623 von Kries whitepoint adaptation
8624
8625 @item identity
8626 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8627 @end table
8628
8629 @item iall
8630 Override all input properties at once. Same accepted values as @ref{all}.
8631
8632 @item ispace
8633 Override input colorspace. Same accepted values as @ref{space}.
8634
8635 @item iprimaries
8636 Override input color primaries. Same accepted values as @ref{primaries}.
8637
8638 @item itrc
8639 Override input transfer characteristics. Same accepted values as @ref{trc}.
8640
8641 @item irange
8642 Override input color range. Same accepted values as @ref{range}.
8643
8644 @end table
8645
8646 The filter converts the transfer characteristics, color space and color
8647 primaries to the specified user values. The output value, if not specified,
8648 is set to a default value based on the "all" property. If that property is
8649 also not specified, the filter will log an error. The output color range and
8650 format default to the same value as the input color range and format. The
8651 input transfer characteristics, color space, color primaries and color range
8652 should be set on the input data. If any of these are missing, the filter will
8653 log an error and no conversion will take place.
8654
8655 For example to convert the input to SMPTE-240M, use the command:
8656 @example
8657 colorspace=smpte240m
8658 @end example
8659
8660 @section colortemperature
8661 Adjust color temperature in video to simulate variations in ambient color temperature.
8662
8663 The filter accepts the following options:
8664
8665 @table @option
8666 @item temperature
8667 Set the temperature in Kelvin. Allowed range is from 1000 to 40000.
8668 Default value is 6500 K.
8669
8670 @item mix
8671 Set mixing with filtered output. Allowed range is from 0 to 1.
8672 Default value is 1.
8673
8674 @item pl
8675 Set the amount of preserving lightness. Allowed range is from 0 to 1.
8676 Default value is 0.
8677 @end table
8678
8679 @subsection Commands
8680 This filter supports same @ref{commands} as options.
8681
8682 @section convolution
8683
8684 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8685
8686 The filter accepts the following options:
8687
8688 @table @option
8689 @item 0m
8690 @item 1m
8691 @item 2m
8692 @item 3m
8693 Set matrix for each plane.
8694 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8695 and from 1 to 49 odd number of signed integers in @var{row} mode.
8696
8697 @item 0rdiv
8698 @item 1rdiv
8699 @item 2rdiv
8700 @item 3rdiv
8701 Set multiplier for calculated value for each plane.
8702 If unset or 0, it will be sum of all matrix elements.
8703
8704 @item 0bias
8705 @item 1bias
8706 @item 2bias
8707 @item 3bias
8708 Set bias for each plane. This value is added to the result of the multiplication.
8709 Useful for making the overall image brighter or darker. Default is 0.0.
8710
8711 @item 0mode
8712 @item 1mode
8713 @item 2mode
8714 @item 3mode
8715 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8716 Default is @var{square}.
8717 @end table
8718
8719 @subsection Commands
8720
8721 This filter supports the all above options as @ref{commands}.
8722
8723 @subsection Examples
8724
8725 @itemize
8726 @item
8727 Apply sharpen:
8728 @example
8729 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"
8730 @end example
8731
8732 @item
8733 Apply blur:
8734 @example
8735 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"
8736 @end example
8737
8738 @item
8739 Apply edge enhance:
8740 @example
8741 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"
8742 @end example
8743
8744 @item
8745 Apply edge detect:
8746 @example
8747 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"
8748 @end example
8749
8750 @item
8751 Apply laplacian edge detector which includes diagonals:
8752 @example
8753 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"
8754 @end example
8755
8756 @item
8757 Apply emboss:
8758 @example
8759 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"
8760 @end example
8761 @end itemize
8762
8763 @section convolve
8764
8765 Apply 2D convolution of video stream in frequency domain using second stream
8766 as impulse.
8767
8768 The filter accepts the following options:
8769
8770 @table @option
8771 @item planes
8772 Set which planes to process.
8773
8774 @item impulse
8775 Set which impulse video frames will be processed, can be @var{first}
8776 or @var{all}. Default is @var{all}.
8777 @end table
8778
8779 The @code{convolve} filter also supports the @ref{framesync} options.
8780
8781 @section copy
8782
8783 Copy the input video source unchanged to the output. This is mainly useful for
8784 testing purposes.
8785
8786 @anchor{coreimage}
8787 @section coreimage
8788 Video filtering on GPU using Apple's CoreImage API on OSX.
8789
8790 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8791 processed by video hardware. However, software-based OpenGL implementations
8792 exist which means there is no guarantee for hardware processing. It depends on
8793 the respective OSX.
8794
8795 There are many filters and image generators provided by Apple that come with a
8796 large variety of options. The filter has to be referenced by its name along
8797 with its options.
8798
8799 The coreimage filter accepts the following options:
8800 @table @option
8801 @item list_filters
8802 List all available filters and generators along with all their respective
8803 options as well as possible minimum and maximum values along with the default
8804 values.
8805 @example
8806 list_filters=true
8807 @end example
8808
8809 @item filter
8810 Specify all filters by their respective name and options.
8811 Use @var{list_filters} to determine all valid filter names and options.
8812 Numerical options are specified by a float value and are automatically clamped
8813 to their respective value range.  Vector and color options have to be specified
8814 by a list of space separated float values. Character escaping has to be done.
8815 A special option name @code{default} is available to use default options for a
8816 filter.
8817
8818 It is required to specify either @code{default} or at least one of the filter options.
8819 All omitted options are used with their default values.
8820 The syntax of the filter string is as follows:
8821 @example
8822 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8823 @end example
8824
8825 @item output_rect
8826 Specify a rectangle where the output of the filter chain is copied into the
8827 input image. It is given by a list of space separated float values:
8828 @example
8829 output_rect=x\ y\ width\ height
8830 @end example
8831 If not given, the output rectangle equals the dimensions of the input image.
8832 The output rectangle is automatically cropped at the borders of the input
8833 image. Negative values are valid for each component.
8834 @example
8835 output_rect=25\ 25\ 100\ 100
8836 @end example
8837 @end table
8838
8839 Several filters can be chained for successive processing without GPU-HOST
8840 transfers allowing for fast processing of complex filter chains.
8841 Currently, only filters with zero (generators) or exactly one (filters) input
8842 image and one output image are supported. Also, transition filters are not yet
8843 usable as intended.
8844
8845 Some filters generate output images with additional padding depending on the
8846 respective filter kernel. The padding is automatically removed to ensure the
8847 filter output has the same size as the input image.
8848
8849 For image generators, the size of the output image is determined by the
8850 previous output image of the filter chain or the input image of the whole
8851 filterchain, respectively. The generators do not use the pixel information of
8852 this image to generate their output. However, the generated output is
8853 blended onto this image, resulting in partial or complete coverage of the
8854 output image.
8855
8856 The @ref{coreimagesrc} video source can be used for generating input images
8857 which are directly fed into the filter chain. By using it, providing input
8858 images by another video source or an input video is not required.
8859
8860 @subsection Examples
8861
8862 @itemize
8863
8864 @item
8865 List all filters available:
8866 @example
8867 coreimage=list_filters=true
8868 @end example
8869
8870 @item
8871 Use the CIBoxBlur filter with default options to blur an image:
8872 @example
8873 coreimage=filter=CIBoxBlur@@default
8874 @end example
8875
8876 @item
8877 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8878 its center at 100x100 and a radius of 50 pixels:
8879 @example
8880 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8881 @end example
8882
8883 @item
8884 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8885 given as complete and escaped command-line for Apple's standard bash shell:
8886 @example
8887 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8888 @end example
8889 @end itemize
8890
8891 @section cover_rect
8892
8893 Cover a rectangular object
8894
8895 It accepts the following options:
8896
8897 @table @option
8898 @item cover
8899 Filepath of the optional cover image, needs to be in yuv420.
8900
8901 @item mode
8902 Set covering mode.
8903
8904 It accepts the following values:
8905 @table @samp
8906 @item cover
8907 cover it by the supplied image
8908 @item blur
8909 cover it by interpolating the surrounding pixels
8910 @end table
8911
8912 Default value is @var{blur}.
8913 @end table
8914
8915 @subsection Examples
8916
8917 @itemize
8918 @item
8919 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8920 @example
8921 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8922 @end example
8923 @end itemize
8924
8925 @section crop
8926
8927 Crop the input video to given dimensions.
8928
8929 It accepts the following parameters:
8930
8931 @table @option
8932 @item w, out_w
8933 The width of the output video. It defaults to @code{iw}.
8934 This expression is evaluated only once during the filter
8935 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8936
8937 @item h, out_h
8938 The height of the output video. It defaults to @code{ih}.
8939 This expression is evaluated only once during the filter
8940 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8941
8942 @item x
8943 The horizontal position, in the input video, of the left edge of the output
8944 video. It defaults to @code{(in_w-out_w)/2}.
8945 This expression is evaluated per-frame.
8946
8947 @item y
8948 The vertical position, in the input video, of the top edge of the output video.
8949 It defaults to @code{(in_h-out_h)/2}.
8950 This expression is evaluated per-frame.
8951
8952 @item keep_aspect
8953 If set to 1 will force the output display aspect ratio
8954 to be the same of the input, by changing the output sample aspect
8955 ratio. It defaults to 0.
8956
8957 @item exact
8958 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8959 width/height/x/y as specified and will not be rounded to nearest smaller value.
8960 It defaults to 0.
8961 @end table
8962
8963 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8964 expressions containing the following constants:
8965
8966 @table @option
8967 @item x
8968 @item y
8969 The computed values for @var{x} and @var{y}. They are evaluated for
8970 each new frame.
8971
8972 @item in_w
8973 @item in_h
8974 The input width and height.
8975
8976 @item iw
8977 @item ih
8978 These are the same as @var{in_w} and @var{in_h}.
8979
8980 @item out_w
8981 @item out_h
8982 The output (cropped) width and height.
8983
8984 @item ow
8985 @item oh
8986 These are the same as @var{out_w} and @var{out_h}.
8987
8988 @item a
8989 same as @var{iw} / @var{ih}
8990
8991 @item sar
8992 input sample aspect ratio
8993
8994 @item dar
8995 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8996
8997 @item hsub
8998 @item vsub
8999 horizontal and vertical chroma subsample values. For example for the
9000 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9001
9002 @item n
9003 The number of the input frame, starting from 0.
9004
9005 @item pos
9006 the position in the file of the input frame, NAN if unknown
9007
9008 @item t
9009 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
9010
9011 @end table
9012
9013 The expression for @var{out_w} may depend on the value of @var{out_h},
9014 and the expression for @var{out_h} may depend on @var{out_w}, but they
9015 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
9016 evaluated after @var{out_w} and @var{out_h}.
9017
9018 The @var{x} and @var{y} parameters specify the expressions for the
9019 position of the top-left corner of the output (non-cropped) area. They
9020 are evaluated for each frame. If the evaluated value is not valid, it
9021 is approximated to the nearest valid value.
9022
9023 The expression for @var{x} may depend on @var{y}, and the expression
9024 for @var{y} may depend on @var{x}.
9025
9026 @subsection Examples
9027
9028 @itemize
9029 @item
9030 Crop area with size 100x100 at position (12,34).
9031 @example
9032 crop=100:100:12:34
9033 @end example
9034
9035 Using named options, the example above becomes:
9036 @example
9037 crop=w=100:h=100:x=12:y=34
9038 @end example
9039
9040 @item
9041 Crop the central input area with size 100x100:
9042 @example
9043 crop=100:100
9044 @end example
9045
9046 @item
9047 Crop the central input area with size 2/3 of the input video:
9048 @example
9049 crop=2/3*in_w:2/3*in_h
9050 @end example
9051
9052 @item
9053 Crop the input video central square:
9054 @example
9055 crop=out_w=in_h
9056 crop=in_h
9057 @end example
9058
9059 @item
9060 Delimit the rectangle with the top-left corner placed at position
9061 100:100 and the right-bottom corner corresponding to the right-bottom
9062 corner of the input image.
9063 @example
9064 crop=in_w-100:in_h-100:100:100
9065 @end example
9066
9067 @item
9068 Crop 10 pixels from the left and right borders, and 20 pixels from
9069 the top and bottom borders
9070 @example
9071 crop=in_w-2*10:in_h-2*20
9072 @end example
9073
9074 @item
9075 Keep only the bottom right quarter of the input image:
9076 @example
9077 crop=in_w/2:in_h/2:in_w/2:in_h/2
9078 @end example
9079
9080 @item
9081 Crop height for getting Greek harmony:
9082 @example
9083 crop=in_w:1/PHI*in_w
9084 @end example
9085
9086 @item
9087 Apply trembling effect:
9088 @example
9089 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)
9090 @end example
9091
9092 @item
9093 Apply erratic camera effect depending on timestamp:
9094 @example
9095 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)"
9096 @end example
9097
9098 @item
9099 Set x depending on the value of y:
9100 @example
9101 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
9102 @end example
9103 @end itemize
9104
9105 @subsection Commands
9106
9107 This filter supports the following commands:
9108 @table @option
9109 @item w, out_w
9110 @item h, out_h
9111 @item x
9112 @item y
9113 Set width/height of the output video and the horizontal/vertical position
9114 in the input video.
9115 The command accepts the same syntax of the corresponding option.
9116
9117 If the specified expression is not valid, it is kept at its current
9118 value.
9119 @end table
9120
9121 @section cropdetect
9122
9123 Auto-detect the crop size.
9124
9125 It calculates the necessary cropping parameters and prints the
9126 recommended parameters via the logging system. The detected dimensions
9127 correspond to the non-black area of the input video.
9128
9129 It accepts the following parameters:
9130
9131 @table @option
9132
9133 @item limit
9134 Set higher black value threshold, which can be optionally specified
9135 from nothing (0) to everything (255 for 8-bit based formats). An intensity
9136 value greater to the set value is considered non-black. It defaults to 24.
9137 You can also specify a value between 0.0 and 1.0 which will be scaled depending
9138 on the bitdepth of the pixel format.
9139
9140 @item round
9141 The value which the width/height should be divisible by. It defaults to
9142 16. The offset is automatically adjusted to center the video. Use 2 to
9143 get only even dimensions (needed for 4:2:2 video). 16 is best when
9144 encoding to most video codecs.
9145
9146 @item skip
9147 Set the number of initial frames for which evaluation is skipped.
9148 Default is 2. Range is 0 to INT_MAX.
9149
9150 @item reset_count, reset
9151 Set the counter that determines after how many frames cropdetect will
9152 reset the previously detected largest video area and start over to
9153 detect the current optimal crop area. Default value is 0.
9154
9155 This can be useful when channel logos distort the video area. 0
9156 indicates 'never reset', and returns the largest area encountered during
9157 playback.
9158 @end table
9159
9160 @anchor{cue}
9161 @section cue
9162
9163 Delay video filtering until a given wallclock timestamp. The filter first
9164 passes on @option{preroll} amount of frames, then it buffers at most
9165 @option{buffer} amount of frames and waits for the cue. After reaching the cue
9166 it forwards the buffered frames and also any subsequent frames coming in its
9167 input.
9168
9169 The filter can be used synchronize the output of multiple ffmpeg processes for
9170 realtime output devices like decklink. By putting the delay in the filtering
9171 chain and pre-buffering frames the process can pass on data to output almost
9172 immediately after the target wallclock timestamp is reached.
9173
9174 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
9175 some use cases.
9176
9177 @table @option
9178
9179 @item cue
9180 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
9181
9182 @item preroll
9183 The duration of content to pass on as preroll expressed in seconds. Default is 0.
9184
9185 @item buffer
9186 The maximum duration of content to buffer before waiting for the cue expressed
9187 in seconds. Default is 0.
9188
9189 @end table
9190
9191 @anchor{curves}
9192 @section curves
9193
9194 Apply color adjustments using curves.
9195
9196 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
9197 component (red, green and blue) has its values defined by @var{N} key points
9198 tied from each other using a smooth curve. The x-axis represents the pixel
9199 values from the input frame, and the y-axis the new pixel values to be set for
9200 the output frame.
9201
9202 By default, a component curve is defined by the two points @var{(0;0)} and
9203 @var{(1;1)}. This creates a straight line where each original pixel value is
9204 "adjusted" to its own value, which means no change to the image.
9205
9206 The filter allows you to redefine these two points and add some more. A new
9207 curve (using a natural cubic spline interpolation) will be define to pass
9208 smoothly through all these new coordinates. The new defined points needs to be
9209 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
9210 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
9211 the vector spaces, the values will be clipped accordingly.
9212
9213 The filter accepts the following options:
9214
9215 @table @option
9216 @item preset
9217 Select one of the available color presets. This option can be used in addition
9218 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
9219 options takes priority on the preset values.
9220 Available presets are:
9221 @table @samp
9222 @item none
9223 @item color_negative
9224 @item cross_process
9225 @item darker
9226 @item increase_contrast
9227 @item lighter
9228 @item linear_contrast
9229 @item medium_contrast
9230 @item negative
9231 @item strong_contrast
9232 @item vintage
9233 @end table
9234 Default is @code{none}.
9235 @item master, m
9236 Set the master key points. These points will define a second pass mapping. It
9237 is sometimes called a "luminance" or "value" mapping. It can be used with
9238 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
9239 post-processing LUT.
9240 @item red, r
9241 Set the key points for the red component.
9242 @item green, g
9243 Set the key points for the green component.
9244 @item blue, b
9245 Set the key points for the blue component.
9246 @item all
9247 Set the key points for all components (not including master).
9248 Can be used in addition to the other key points component
9249 options. In this case, the unset component(s) will fallback on this
9250 @option{all} setting.
9251 @item psfile
9252 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
9253 @item plot
9254 Save Gnuplot script of the curves in specified file.
9255 @end table
9256
9257 To avoid some filtergraph syntax conflicts, each key points list need to be
9258 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
9259
9260 @subsection Examples
9261
9262 @itemize
9263 @item
9264 Increase slightly the middle level of blue:
9265 @example
9266 curves=blue='0/0 0.5/0.58 1/1'
9267 @end example
9268
9269 @item
9270 Vintage effect:
9271 @example
9272 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'
9273 @end example
9274 Here we obtain the following coordinates for each components:
9275 @table @var
9276 @item red
9277 @code{(0;0.11) (0.42;0.51) (1;0.95)}
9278 @item green
9279 @code{(0;0) (0.50;0.48) (1;1)}
9280 @item blue
9281 @code{(0;0.22) (0.49;0.44) (1;0.80)}
9282 @end table
9283
9284 @item
9285 The previous example can also be achieved with the associated built-in preset:
9286 @example
9287 curves=preset=vintage
9288 @end example
9289
9290 @item
9291 Or simply:
9292 @example
9293 curves=vintage
9294 @end example
9295
9296 @item
9297 Use a Photoshop preset and redefine the points of the green component:
9298 @example
9299 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
9300 @end example
9301
9302 @item
9303 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
9304 and @command{gnuplot}:
9305 @example
9306 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
9307 gnuplot -p /tmp/curves.plt
9308 @end example
9309 @end itemize
9310
9311 @section datascope
9312
9313 Video data analysis filter.
9314
9315 This filter shows hexadecimal pixel values of part of video.
9316
9317 The filter accepts the following options:
9318
9319 @table @option
9320 @item size, s
9321 Set output video size.
9322
9323 @item x
9324 Set x offset from where to pick pixels.
9325
9326 @item y
9327 Set y offset from where to pick pixels.
9328
9329 @item mode
9330 Set scope mode, can be one of the following:
9331 @table @samp
9332 @item mono
9333 Draw hexadecimal pixel values with white color on black background.
9334
9335 @item color
9336 Draw hexadecimal pixel values with input video pixel color on black
9337 background.
9338
9339 @item color2
9340 Draw hexadecimal pixel values on color background picked from input video,
9341 the text color is picked in such way so its always visible.
9342 @end table
9343
9344 @item axis
9345 Draw rows and columns numbers on left and top of video.
9346
9347 @item opacity
9348 Set background opacity.
9349
9350 @item format
9351 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
9352
9353 @item components
9354 Set pixel components to display. By default all pixel components are displayed.
9355 @end table
9356
9357 @section dblur
9358 Apply Directional blur filter.
9359
9360 The filter accepts the following options:
9361
9362 @table @option
9363 @item angle
9364 Set angle of directional blur. Default is @code{45}.
9365
9366 @item radius
9367 Set radius of directional blur. Default is @code{5}.
9368
9369 @item planes
9370 Set which planes to filter. By default all planes are filtered.
9371 @end table
9372
9373 @subsection Commands
9374 This filter supports same @ref{commands} as options.
9375 The command accepts the same syntax of the corresponding option.
9376
9377 If the specified expression is not valid, it is kept at its current
9378 value.
9379
9380 @section dctdnoiz
9381
9382 Denoise frames using 2D DCT (frequency domain filtering).
9383
9384 This filter is not designed for real time.
9385
9386 The filter accepts the following options:
9387
9388 @table @option
9389 @item sigma, s
9390 Set the noise sigma constant.
9391
9392 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
9393 coefficient (absolute value) below this threshold with be dropped.
9394
9395 If you need a more advanced filtering, see @option{expr}.
9396
9397 Default is @code{0}.
9398
9399 @item overlap
9400 Set number overlapping pixels for each block. Since the filter can be slow, you
9401 may want to reduce this value, at the cost of a less effective filter and the
9402 risk of various artefacts.
9403
9404 If the overlapping value doesn't permit processing the whole input width or
9405 height, a warning will be displayed and according borders won't be denoised.
9406
9407 Default value is @var{blocksize}-1, which is the best possible setting.
9408
9409 @item expr, e
9410 Set the coefficient factor expression.
9411
9412 For each coefficient of a DCT block, this expression will be evaluated as a
9413 multiplier value for the coefficient.
9414
9415 If this is option is set, the @option{sigma} option will be ignored.
9416
9417 The absolute value of the coefficient can be accessed through the @var{c}
9418 variable.
9419
9420 @item n
9421 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
9422 @var{blocksize}, which is the width and height of the processed blocks.
9423
9424 The default value is @var{3} (8x8) and can be raised to @var{4} for a
9425 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
9426 on the speed processing. Also, a larger block size does not necessarily means a
9427 better de-noising.
9428 @end table
9429
9430 @subsection Examples
9431
9432 Apply a denoise with a @option{sigma} of @code{4.5}:
9433 @example
9434 dctdnoiz=4.5
9435 @end example
9436
9437 The same operation can be achieved using the expression system:
9438 @example
9439 dctdnoiz=e='gte(c, 4.5*3)'
9440 @end example
9441
9442 Violent denoise using a block size of @code{16x16}:
9443 @example
9444 dctdnoiz=15:n=4
9445 @end example
9446
9447 @section deband
9448
9449 Remove banding artifacts from input video.
9450 It works by replacing banded pixels with average value of referenced pixels.
9451
9452 The filter accepts the following options:
9453
9454 @table @option
9455 @item 1thr
9456 @item 2thr
9457 @item 3thr
9458 @item 4thr
9459 Set banding detection threshold for each plane. Default is 0.02.
9460 Valid range is 0.00003 to 0.5.
9461 If difference between current pixel and reference pixel is less than threshold,
9462 it will be considered as banded.
9463
9464 @item range, r
9465 Banding detection range in pixels. Default is 16. If positive, random number
9466 in range 0 to set value will be used. If negative, exact absolute value
9467 will be used.
9468 The range defines square of four pixels around current pixel.
9469
9470 @item direction, d
9471 Set direction in radians from which four pixel will be compared. If positive,
9472 random direction from 0 to set direction will be picked. If negative, exact of
9473 absolute value will be picked. For example direction 0, -PI or -2*PI radians
9474 will pick only pixels on same row and -PI/2 will pick only pixels on same
9475 column.
9476
9477 @item blur, b
9478 If enabled, current pixel is compared with average value of all four
9479 surrounding pixels. The default is enabled. If disabled current pixel is
9480 compared with all four surrounding pixels. The pixel is considered banded
9481 if only all four differences with surrounding pixels are less than threshold.
9482
9483 @item coupling, c
9484 If enabled, current pixel is changed if and only if all pixel components are banded,
9485 e.g. banding detection threshold is triggered for all color components.
9486 The default is disabled.
9487 @end table
9488
9489 @section deblock
9490
9491 Remove blocking artifacts from input video.
9492
9493 The filter accepts the following options:
9494
9495 @table @option
9496 @item filter
9497 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9498 This controls what kind of deblocking is applied.
9499
9500 @item block
9501 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9502
9503 @item alpha
9504 @item beta
9505 @item gamma
9506 @item delta
9507 Set blocking detection thresholds. Allowed range is 0 to 1.
9508 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9509 Using higher threshold gives more deblocking strength.
9510 Setting @var{alpha} controls threshold detection at exact edge of block.
9511 Remaining options controls threshold detection near the edge. Each one for
9512 below/above or left/right. Setting any of those to @var{0} disables
9513 deblocking.
9514
9515 @item planes
9516 Set planes to filter. Default is to filter all available planes.
9517 @end table
9518
9519 @subsection Examples
9520
9521 @itemize
9522 @item
9523 Deblock using weak filter and block size of 4 pixels.
9524 @example
9525 deblock=filter=weak:block=4
9526 @end example
9527
9528 @item
9529 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9530 deblocking more edges.
9531 @example
9532 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9533 @end example
9534
9535 @item
9536 Similar as above, but filter only first plane.
9537 @example
9538 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9539 @end example
9540
9541 @item
9542 Similar as above, but filter only second and third plane.
9543 @example
9544 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9545 @end example
9546 @end itemize
9547
9548 @subsection Commands
9549
9550 This filter supports the all above options as @ref{commands}.
9551
9552 @anchor{decimate}
9553 @section decimate
9554
9555 Drop duplicated frames at regular intervals.
9556
9557 The filter accepts the following options:
9558
9559 @table @option
9560 @item cycle
9561 Set the number of frames from which one will be dropped. Setting this to
9562 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9563 Default is @code{5}.
9564
9565 @item dupthresh
9566 Set the threshold for duplicate detection. If the difference metric for a frame
9567 is less than or equal to this value, then it is declared as duplicate. Default
9568 is @code{1.1}
9569
9570 @item scthresh
9571 Set scene change threshold. Default is @code{15}.
9572
9573 @item blockx
9574 @item blocky
9575 Set the size of the x and y-axis blocks used during metric calculations.
9576 Larger blocks give better noise suppression, but also give worse detection of
9577 small movements. Must be a power of two. Default is @code{32}.
9578
9579 @item ppsrc
9580 Mark main input as a pre-processed input and activate clean source input
9581 stream. This allows the input to be pre-processed with various filters to help
9582 the metrics calculation while keeping the frame selection lossless. When set to
9583 @code{1}, the first stream is for the pre-processed input, and the second
9584 stream is the clean source from where the kept frames are chosen. Default is
9585 @code{0}.
9586
9587 @item chroma
9588 Set whether or not chroma is considered in the metric calculations. Default is
9589 @code{1}.
9590 @end table
9591
9592 @section deconvolve
9593
9594 Apply 2D deconvolution of video stream in frequency domain using second stream
9595 as impulse.
9596
9597 The filter accepts the following options:
9598
9599 @table @option
9600 @item planes
9601 Set which planes to process.
9602
9603 @item impulse
9604 Set which impulse video frames will be processed, can be @var{first}
9605 or @var{all}. Default is @var{all}.
9606
9607 @item noise
9608 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9609 and height are not same and not power of 2 or if stream prior to convolving
9610 had noise.
9611 @end table
9612
9613 The @code{deconvolve} filter also supports the @ref{framesync} options.
9614
9615 @section dedot
9616
9617 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9618
9619 It accepts the following options:
9620
9621 @table @option
9622 @item m
9623 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9624 @var{rainbows} for cross-color reduction.
9625
9626 @item lt
9627 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9628
9629 @item tl
9630 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9631
9632 @item tc
9633 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9634
9635 @item ct
9636 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9637 @end table
9638
9639 @section deflate
9640
9641 Apply deflate effect to the video.
9642
9643 This filter replaces the pixel by the local(3x3) average by taking into account
9644 only values lower than the pixel.
9645
9646 It accepts the following options:
9647
9648 @table @option
9649 @item threshold0
9650 @item threshold1
9651 @item threshold2
9652 @item threshold3
9653 Limit the maximum change for each plane, default is 65535.
9654 If 0, plane will remain unchanged.
9655 @end table
9656
9657 @subsection Commands
9658
9659 This filter supports the all above options as @ref{commands}.
9660
9661 @section deflicker
9662
9663 Remove temporal frame luminance variations.
9664
9665 It accepts the following options:
9666
9667 @table @option
9668 @item size, s
9669 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9670
9671 @item mode, m
9672 Set averaging mode to smooth temporal luminance variations.
9673
9674 Available values are:
9675 @table @samp
9676 @item am
9677 Arithmetic mean
9678
9679 @item gm
9680 Geometric mean
9681
9682 @item hm
9683 Harmonic mean
9684
9685 @item qm
9686 Quadratic mean
9687
9688 @item cm
9689 Cubic mean
9690
9691 @item pm
9692 Power mean
9693
9694 @item median
9695 Median
9696 @end table
9697
9698 @item bypass
9699 Do not actually modify frame. Useful when one only wants metadata.
9700 @end table
9701
9702 @section dejudder
9703
9704 Remove judder produced by partially interlaced telecined content.
9705
9706 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9707 source was partially telecined content then the output of @code{pullup,dejudder}
9708 will have a variable frame rate. May change the recorded frame rate of the
9709 container. Aside from that change, this filter will not affect constant frame
9710 rate video.
9711
9712 The option available in this filter is:
9713 @table @option
9714
9715 @item cycle
9716 Specify the length of the window over which the judder repeats.
9717
9718 Accepts any integer greater than 1. Useful values are:
9719 @table @samp
9720
9721 @item 4
9722 If the original was telecined from 24 to 30 fps (Film to NTSC).
9723
9724 @item 5
9725 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9726
9727 @item 20
9728 If a mixture of the two.
9729 @end table
9730
9731 The default is @samp{4}.
9732 @end table
9733
9734 @section delogo
9735
9736 Suppress a TV station logo by a simple interpolation of the surrounding
9737 pixels. Just set a rectangle covering the logo and watch it disappear
9738 (and sometimes something even uglier appear - your mileage may vary).
9739
9740 It accepts the following parameters:
9741 @table @option
9742
9743 @item x
9744 @item y
9745 Specify the top left corner coordinates of the logo. They must be
9746 specified.
9747
9748 @item w
9749 @item h
9750 Specify the width and height of the logo to clear. They must be
9751 specified.
9752
9753 @item band, t
9754 Specify the thickness of the fuzzy edge of the rectangle (added to
9755 @var{w} and @var{h}). The default value is 1. This option is
9756 deprecated, setting higher values should no longer be necessary and
9757 is not recommended.
9758
9759 @item show
9760 When set to 1, a green rectangle is drawn on the screen to simplify
9761 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9762 The default value is 0.
9763
9764 The rectangle is drawn on the outermost pixels which will be (partly)
9765 replaced with interpolated values. The values of the next pixels
9766 immediately outside this rectangle in each direction will be used to
9767 compute the interpolated pixel values inside the rectangle.
9768
9769 @end table
9770
9771 @subsection Examples
9772
9773 @itemize
9774 @item
9775 Set a rectangle covering the area with top left corner coordinates 0,0
9776 and size 100x77, and a band of size 10:
9777 @example
9778 delogo=x=0:y=0:w=100:h=77:band=10
9779 @end example
9780
9781 @end itemize
9782
9783 @anchor{derain}
9784 @section derain
9785
9786 Remove the rain in the input image/video by applying the derain methods based on
9787 convolutional neural networks. Supported models:
9788
9789 @itemize
9790 @item
9791 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9792 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9793 @end itemize
9794
9795 Training as well as model generation scripts are provided in
9796 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9797
9798 Native model files (.model) can be generated from TensorFlow model
9799 files (.pb) by using tools/python/convert.py
9800
9801 The filter accepts the following options:
9802
9803 @table @option
9804 @item filter_type
9805 Specify which filter to use. This option accepts the following values:
9806
9807 @table @samp
9808 @item derain
9809 Derain filter. To conduct derain filter, you need to use a derain model.
9810
9811 @item dehaze
9812 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9813 @end table
9814 Default value is @samp{derain}.
9815
9816 @item dnn_backend
9817 Specify which DNN backend to use for model loading and execution. This option accepts
9818 the following values:
9819
9820 @table @samp
9821 @item native
9822 Native implementation of DNN loading and execution.
9823
9824 @item tensorflow
9825 TensorFlow backend. To enable this backend you
9826 need to install the TensorFlow for C library (see
9827 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9828 @code{--enable-libtensorflow}
9829 @end table
9830 Default value is @samp{native}.
9831
9832 @item model
9833 Set path to model file specifying network architecture and its parameters.
9834 Note that different backends use different file formats. TensorFlow and native
9835 backend can load files for only its format.
9836 @end table
9837
9838 It can also be finished with @ref{dnn_processing} filter.
9839
9840 @section deshake
9841
9842 Attempt to fix small changes in horizontal and/or vertical shift. This
9843 filter helps remove camera shake from hand-holding a camera, bumping a
9844 tripod, moving on a vehicle, etc.
9845
9846 The filter accepts the following options:
9847
9848 @table @option
9849
9850 @item x
9851 @item y
9852 @item w
9853 @item h
9854 Specify a rectangular area where to limit the search for motion
9855 vectors.
9856 If desired the search for motion vectors can be limited to a
9857 rectangular area of the frame defined by its top left corner, width
9858 and height. These parameters have the same meaning as the drawbox
9859 filter which can be used to visualise the position of the bounding
9860 box.
9861
9862 This is useful when simultaneous movement of subjects within the frame
9863 might be confused for camera motion by the motion vector search.
9864
9865 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9866 then the full frame is used. This allows later options to be set
9867 without specifying the bounding box for the motion vector search.
9868
9869 Default - search the whole frame.
9870
9871 @item rx
9872 @item ry
9873 Specify the maximum extent of movement in x and y directions in the
9874 range 0-64 pixels. Default 16.
9875
9876 @item edge
9877 Specify how to generate pixels to fill blanks at the edge of the
9878 frame. Available values are:
9879 @table @samp
9880 @item blank, 0
9881 Fill zeroes at blank locations
9882 @item original, 1
9883 Original image at blank locations
9884 @item clamp, 2
9885 Extruded edge value at blank locations
9886 @item mirror, 3
9887 Mirrored edge at blank locations
9888 @end table
9889 Default value is @samp{mirror}.
9890
9891 @item blocksize
9892 Specify the blocksize to use for motion search. Range 4-128 pixels,
9893 default 8.
9894
9895 @item contrast
9896 Specify the contrast threshold for blocks. Only blocks with more than
9897 the specified contrast (difference between darkest and lightest
9898 pixels) will be considered. Range 1-255, default 125.
9899
9900 @item search
9901 Specify the search strategy. Available values are:
9902 @table @samp
9903 @item exhaustive, 0
9904 Set exhaustive search
9905 @item less, 1
9906 Set less exhaustive search.
9907 @end table
9908 Default value is @samp{exhaustive}.
9909
9910 @item filename
9911 If set then a detailed log of the motion search is written to the
9912 specified file.
9913
9914 @end table
9915
9916 @section despill
9917
9918 Remove unwanted contamination of foreground colors, caused by reflected color of
9919 greenscreen or bluescreen.
9920
9921 This filter accepts the following options:
9922
9923 @table @option
9924 @item type
9925 Set what type of despill to use.
9926
9927 @item mix
9928 Set how spillmap will be generated.
9929
9930 @item expand
9931 Set how much to get rid of still remaining spill.
9932
9933 @item red
9934 Controls amount of red in spill area.
9935
9936 @item green
9937 Controls amount of green in spill area.
9938 Should be -1 for greenscreen.
9939
9940 @item blue
9941 Controls amount of blue in spill area.
9942 Should be -1 for bluescreen.
9943
9944 @item brightness
9945 Controls brightness of spill area, preserving colors.
9946
9947 @item alpha
9948 Modify alpha from generated spillmap.
9949 @end table
9950
9951 @subsection Commands
9952
9953 This filter supports the all above options as @ref{commands}.
9954
9955 @section detelecine
9956
9957 Apply an exact inverse of the telecine operation. It requires a predefined
9958 pattern specified using the pattern option which must be the same as that passed
9959 to the telecine filter.
9960
9961 This filter accepts the following options:
9962
9963 @table @option
9964 @item first_field
9965 @table @samp
9966 @item top, t
9967 top field first
9968 @item bottom, b
9969 bottom field first
9970 The default value is @code{top}.
9971 @end table
9972
9973 @item pattern
9974 A string of numbers representing the pulldown pattern you wish to apply.
9975 The default value is @code{23}.
9976
9977 @item start_frame
9978 A number representing position of the first frame with respect to the telecine
9979 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9980 @end table
9981
9982 @section dilation
9983
9984 Apply dilation effect to the video.
9985
9986 This filter replaces the pixel by the local(3x3) maximum.
9987
9988 It accepts the following options:
9989
9990 @table @option
9991 @item threshold0
9992 @item threshold1
9993 @item threshold2
9994 @item threshold3
9995 Limit the maximum change for each plane, default is 65535.
9996 If 0, plane will remain unchanged.
9997
9998 @item coordinates
9999 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
10000 pixels are used.
10001
10002 Flags to local 3x3 coordinates maps like this:
10003
10004     1 2 3
10005     4   5
10006     6 7 8
10007 @end table
10008
10009 @subsection Commands
10010
10011 This filter supports the all above options as @ref{commands}.
10012
10013 @section displace
10014
10015 Displace pixels as indicated by second and third input stream.
10016
10017 It takes three input streams and outputs one stream, the first input is the
10018 source, and second and third input are displacement maps.
10019
10020 The second input specifies how much to displace pixels along the
10021 x-axis, while the third input specifies how much to displace pixels
10022 along the y-axis.
10023 If one of displacement map streams terminates, last frame from that
10024 displacement map will be used.
10025
10026 Note that once generated, displacements maps can be reused over and over again.
10027
10028 A description of the accepted options follows.
10029
10030 @table @option
10031 @item edge
10032 Set displace behavior for pixels that are out of range.
10033
10034 Available values are:
10035 @table @samp
10036 @item blank
10037 Missing pixels are replaced by black pixels.
10038
10039 @item smear
10040 Adjacent pixels will spread out to replace missing pixels.
10041
10042 @item wrap
10043 Out of range pixels are wrapped so they point to pixels of other side.
10044
10045 @item mirror
10046 Out of range pixels will be replaced with mirrored pixels.
10047 @end table
10048 Default is @samp{smear}.
10049
10050 @end table
10051
10052 @subsection Examples
10053
10054 @itemize
10055 @item
10056 Add ripple effect to rgb input of video size hd720:
10057 @example
10058 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
10059 @end example
10060
10061 @item
10062 Add wave effect to rgb input of video size hd720:
10063 @example
10064 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
10065 @end example
10066 @end itemize
10067
10068 @anchor{dnn_processing}
10069 @section dnn_processing
10070
10071 Do image processing with deep neural networks. It works together with another filter
10072 which converts the pixel format of the Frame to what the dnn network requires.
10073
10074 The filter accepts the following options:
10075
10076 @table @option
10077 @item dnn_backend
10078 Specify which DNN backend to use for model loading and execution. This option accepts
10079 the following values:
10080
10081 @table @samp
10082 @item native
10083 Native implementation of DNN loading and execution.
10084
10085 @item tensorflow
10086 TensorFlow backend. To enable this backend you
10087 need to install the TensorFlow for C library (see
10088 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
10089 @code{--enable-libtensorflow}
10090
10091 @item openvino
10092 OpenVINO backend. To enable this backend you
10093 need to build and install the OpenVINO for C library (see
10094 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
10095 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
10096 be needed if the header files and libraries are not installed into system path)
10097
10098 @end table
10099
10100 Default value is @samp{native}.
10101
10102 @item model
10103 Set path to model file specifying network architecture and its parameters.
10104 Note that different backends use different file formats. TensorFlow, OpenVINO and native
10105 backend can load files for only its format.
10106
10107 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
10108
10109 @item input
10110 Set the input name of the dnn network.
10111
10112 @item output
10113 Set the output name of the dnn network.
10114
10115 @item async
10116 use DNN async execution if set (default: set),
10117 roll back to sync execution if the backend does not support async.
10118
10119 @end table
10120
10121 @subsection Examples
10122
10123 @itemize
10124 @item
10125 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
10126 @example
10127 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
10128 @end example
10129
10130 @item
10131 Halve the pixel value of the frame with format gray32f:
10132 @example
10133 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
10134 @end example
10135
10136 @item
10137 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
10138 @example
10139 ./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
10140 @end example
10141
10142 @item
10143 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
10144 @example
10145 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
10146 @end example
10147
10148 @end itemize
10149
10150 @section drawbox
10151
10152 Draw a colored box on the input image.
10153
10154 It accepts the following parameters:
10155
10156 @table @option
10157 @item x
10158 @item y
10159 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
10160
10161 @item width, w
10162 @item height, h
10163 The expressions which specify the width and height of the box; if 0 they are interpreted as
10164 the input width and height. It defaults to 0.
10165
10166 @item color, c
10167 Specify the color of the box to write. For the general syntax of this option,
10168 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10169 value @code{invert} is used, the box edge color is the same as the
10170 video with inverted luma.
10171
10172 @item thickness, t
10173 The expression which sets the thickness of the box edge.
10174 A value of @code{fill} will create a filled box. Default value is @code{3}.
10175
10176 See below for the list of accepted constants.
10177
10178 @item replace
10179 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
10180 will overwrite the video's color and alpha pixels.
10181 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
10182 @end table
10183
10184 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10185 following constants:
10186
10187 @table @option
10188 @item dar
10189 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10190
10191 @item hsub
10192 @item vsub
10193 horizontal and vertical chroma subsample values. For example for the
10194 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10195
10196 @item in_h, ih
10197 @item in_w, iw
10198 The input width and height.
10199
10200 @item sar
10201 The input sample aspect ratio.
10202
10203 @item x
10204 @item y
10205 The x and y offset coordinates where the box is drawn.
10206
10207 @item w
10208 @item h
10209 The width and height of the drawn box.
10210
10211 @item t
10212 The thickness of the drawn box.
10213
10214 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10215 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10216
10217 @end table
10218
10219 @subsection Examples
10220
10221 @itemize
10222 @item
10223 Draw a black box around the edge of the input image:
10224 @example
10225 drawbox
10226 @end example
10227
10228 @item
10229 Draw a box with color red and an opacity of 50%:
10230 @example
10231 drawbox=10:20:200:60:red@@0.5
10232 @end example
10233
10234 The previous example can be specified as:
10235 @example
10236 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
10237 @end example
10238
10239 @item
10240 Fill the box with pink color:
10241 @example
10242 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
10243 @end example
10244
10245 @item
10246 Draw a 2-pixel red 2.40:1 mask:
10247 @example
10248 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
10249 @end example
10250 @end itemize
10251
10252 @subsection Commands
10253 This filter supports same commands as options.
10254 The command accepts the same syntax of the corresponding option.
10255
10256 If the specified expression is not valid, it is kept at its current
10257 value.
10258
10259 @anchor{drawgraph}
10260 @section drawgraph
10261 Draw a graph using input video metadata.
10262
10263 It accepts the following parameters:
10264
10265 @table @option
10266 @item m1
10267 Set 1st frame metadata key from which metadata values will be used to draw a graph.
10268
10269 @item fg1
10270 Set 1st foreground color expression.
10271
10272 @item m2
10273 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
10274
10275 @item fg2
10276 Set 2nd foreground color expression.
10277
10278 @item m3
10279 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
10280
10281 @item fg3
10282 Set 3rd foreground color expression.
10283
10284 @item m4
10285 Set 4th frame metadata key from which metadata values will be used to draw a graph.
10286
10287 @item fg4
10288 Set 4th foreground color expression.
10289
10290 @item min
10291 Set minimal value of metadata value.
10292
10293 @item max
10294 Set maximal value of metadata value.
10295
10296 @item bg
10297 Set graph background color. Default is white.
10298
10299 @item mode
10300 Set graph mode.
10301
10302 Available values for mode is:
10303 @table @samp
10304 @item bar
10305 @item dot
10306 @item line
10307 @end table
10308
10309 Default is @code{line}.
10310
10311 @item slide
10312 Set slide mode.
10313
10314 Available values for slide is:
10315 @table @samp
10316 @item frame
10317 Draw new frame when right border is reached.
10318
10319 @item replace
10320 Replace old columns with new ones.
10321
10322 @item scroll
10323 Scroll from right to left.
10324
10325 @item rscroll
10326 Scroll from left to right.
10327
10328 @item picture
10329 Draw single picture.
10330 @end table
10331
10332 Default is @code{frame}.
10333
10334 @item size
10335 Set size of graph video. For the syntax of this option, check the
10336 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10337 The default value is @code{900x256}.
10338
10339 @item rate, r
10340 Set the output frame rate. Default value is @code{25}.
10341
10342 The foreground color expressions can use the following variables:
10343 @table @option
10344 @item MIN
10345 Minimal value of metadata value.
10346
10347 @item MAX
10348 Maximal value of metadata value.
10349
10350 @item VAL
10351 Current metadata key value.
10352 @end table
10353
10354 The color is defined as 0xAABBGGRR.
10355 @end table
10356
10357 Example using metadata from @ref{signalstats} filter:
10358 @example
10359 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
10360 @end example
10361
10362 Example using metadata from @ref{ebur128} filter:
10363 @example
10364 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
10365 @end example
10366
10367 @section drawgrid
10368
10369 Draw a grid on the input image.
10370
10371 It accepts the following parameters:
10372
10373 @table @option
10374 @item x
10375 @item y
10376 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
10377
10378 @item width, w
10379 @item height, h
10380 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
10381 input width and height, respectively, minus @code{thickness}, so image gets
10382 framed. Default to 0.
10383
10384 @item color, c
10385 Specify the color of the grid. For the general syntax of this option,
10386 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10387 value @code{invert} is used, the grid color is the same as the
10388 video with inverted luma.
10389
10390 @item thickness, t
10391 The expression which sets the thickness of the grid line. Default value is @code{1}.
10392
10393 See below for the list of accepted constants.
10394
10395 @item replace
10396 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
10397 will overwrite the video's color and alpha pixels.
10398 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
10399 @end table
10400
10401 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10402 following constants:
10403
10404 @table @option
10405 @item dar
10406 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10407
10408 @item hsub
10409 @item vsub
10410 horizontal and vertical chroma subsample values. For example for the
10411 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10412
10413 @item in_h, ih
10414 @item in_w, iw
10415 The input grid cell width and height.
10416
10417 @item sar
10418 The input sample aspect ratio.
10419
10420 @item x
10421 @item y
10422 The x and y coordinates of some point of grid intersection (meant to configure offset).
10423
10424 @item w
10425 @item h
10426 The width and height of the drawn cell.
10427
10428 @item t
10429 The thickness of the drawn cell.
10430
10431 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10432 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10433
10434 @end table
10435
10436 @subsection Examples
10437
10438 @itemize
10439 @item
10440 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
10441 @example
10442 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
10443 @end example
10444
10445 @item
10446 Draw a white 3x3 grid with an opacity of 50%:
10447 @example
10448 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
10449 @end example
10450 @end itemize
10451
10452 @subsection Commands
10453 This filter supports same commands as options.
10454 The command accepts the same syntax of the corresponding option.
10455
10456 If the specified expression is not valid, it is kept at its current
10457 value.
10458
10459 @anchor{drawtext}
10460 @section drawtext
10461
10462 Draw a text string or text from a specified file on top of a video, using the
10463 libfreetype library.
10464
10465 To enable compilation of this filter, you need to configure FFmpeg with
10466 @code{--enable-libfreetype}.
10467 To enable default font fallback and the @var{font} option you need to
10468 configure FFmpeg with @code{--enable-libfontconfig}.
10469 To enable the @var{text_shaping} option, you need to configure FFmpeg with
10470 @code{--enable-libfribidi}.
10471
10472 @subsection Syntax
10473
10474 It accepts the following parameters:
10475
10476 @table @option
10477
10478 @item box
10479 Used to draw a box around text using the background color.
10480 The value must be either 1 (enable) or 0 (disable).
10481 The default value of @var{box} is 0.
10482
10483 @item boxborderw
10484 Set the width of the border to be drawn around the box using @var{boxcolor}.
10485 The default value of @var{boxborderw} is 0.
10486
10487 @item boxcolor
10488 The color to be used for drawing box around text. For the syntax of this
10489 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10490
10491 The default value of @var{boxcolor} is "white".
10492
10493 @item line_spacing
10494 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10495 The default value of @var{line_spacing} is 0.
10496
10497 @item borderw
10498 Set the width of the border to be drawn around the text using @var{bordercolor}.
10499 The default value of @var{borderw} is 0.
10500
10501 @item bordercolor
10502 Set the color to be used for drawing border around text. For the syntax of this
10503 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10504
10505 The default value of @var{bordercolor} is "black".
10506
10507 @item expansion
10508 Select how the @var{text} is expanded. Can be either @code{none},
10509 @code{strftime} (deprecated) or
10510 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10511 below for details.
10512
10513 @item basetime
10514 Set a start time for the count. Value is in microseconds. Only applied
10515 in the deprecated strftime expansion mode. To emulate in normal expansion
10516 mode use the @code{pts} function, supplying the start time (in seconds)
10517 as the second argument.
10518
10519 @item fix_bounds
10520 If true, check and fix text coords to avoid clipping.
10521
10522 @item fontcolor
10523 The color to be used for drawing fonts. For the syntax of this option, check
10524 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10525
10526 The default value of @var{fontcolor} is "black".
10527
10528 @item fontcolor_expr
10529 String which is expanded the same way as @var{text} to obtain dynamic
10530 @var{fontcolor} value. By default this option has empty value and is not
10531 processed. When this option is set, it overrides @var{fontcolor} option.
10532
10533 @item font
10534 The font family to be used for drawing text. By default Sans.
10535
10536 @item fontfile
10537 The font file to be used for drawing text. The path must be included.
10538 This parameter is mandatory if the fontconfig support is disabled.
10539
10540 @item alpha
10541 Draw the text applying alpha blending. The value can
10542 be a number between 0.0 and 1.0.
10543 The expression accepts the same variables @var{x, y} as well.
10544 The default value is 1.
10545 Please see @var{fontcolor_expr}.
10546
10547 @item fontsize
10548 The font size to be used for drawing text.
10549 The default value of @var{fontsize} is 16.
10550
10551 @item text_shaping
10552 If set to 1, attempt to shape the text (for example, reverse the order of
10553 right-to-left text and join Arabic characters) before drawing it.
10554 Otherwise, just draw the text exactly as given.
10555 By default 1 (if supported).
10556
10557 @item ft_load_flags
10558 The flags to be used for loading the fonts.
10559
10560 The flags map the corresponding flags supported by libfreetype, and are
10561 a combination of the following values:
10562 @table @var
10563 @item default
10564 @item no_scale
10565 @item no_hinting
10566 @item render
10567 @item no_bitmap
10568 @item vertical_layout
10569 @item force_autohint
10570 @item crop_bitmap
10571 @item pedantic
10572 @item ignore_global_advance_width
10573 @item no_recurse
10574 @item ignore_transform
10575 @item monochrome
10576 @item linear_design
10577 @item no_autohint
10578 @end table
10579
10580 Default value is "default".
10581
10582 For more information consult the documentation for the FT_LOAD_*
10583 libfreetype flags.
10584
10585 @item shadowcolor
10586 The color to be used for drawing a shadow behind the drawn text. For the
10587 syntax of this option, check the @ref{color syntax,,"Color" section in the
10588 ffmpeg-utils manual,ffmpeg-utils}.
10589
10590 The default value of @var{shadowcolor} is "black".
10591
10592 @item shadowx
10593 @item shadowy
10594 The x and y offsets for the text shadow position with respect to the
10595 position of the text. They can be either positive or negative
10596 values. The default value for both is "0".
10597
10598 @item start_number
10599 The starting frame number for the n/frame_num variable. The default value
10600 is "0".
10601
10602 @item tabsize
10603 The size in number of spaces to use for rendering the tab.
10604 Default value is 4.
10605
10606 @item timecode
10607 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10608 format. It can be used with or without text parameter. @var{timecode_rate}
10609 option must be specified.
10610
10611 @item timecode_rate, rate, r
10612 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10613 integer. Minimum value is "1".
10614 Drop-frame timecode is supported for frame rates 30 & 60.
10615
10616 @item tc24hmax
10617 If set to 1, the output of the timecode option will wrap around at 24 hours.
10618 Default is 0 (disabled).
10619
10620 @item text
10621 The text string to be drawn. The text must be a sequence of UTF-8
10622 encoded characters.
10623 This parameter is mandatory if no file is specified with the parameter
10624 @var{textfile}.
10625
10626 @item textfile
10627 A text file containing text to be drawn. The text must be a sequence
10628 of UTF-8 encoded characters.
10629
10630 This parameter is mandatory if no text string is specified with the
10631 parameter @var{text}.
10632
10633 If both @var{text} and @var{textfile} are specified, an error is thrown.
10634
10635 @item reload
10636 If set to 1, the @var{textfile} will be reloaded before each frame.
10637 Be sure to update it atomically, or it may be read partially, or even fail.
10638
10639 @item x
10640 @item y
10641 The expressions which specify the offsets where text will be drawn
10642 within the video frame. They are relative to the top/left border of the
10643 output image.
10644
10645 The default value of @var{x} and @var{y} is "0".
10646
10647 See below for the list of accepted constants and functions.
10648 @end table
10649
10650 The parameters for @var{x} and @var{y} are expressions containing the
10651 following constants and functions:
10652
10653 @table @option
10654 @item dar
10655 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10656
10657 @item hsub
10658 @item vsub
10659 horizontal and vertical chroma subsample values. For example for the
10660 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10661
10662 @item line_h, lh
10663 the height of each text line
10664
10665 @item main_h, h, H
10666 the input height
10667
10668 @item main_w, w, W
10669 the input width
10670
10671 @item max_glyph_a, ascent
10672 the maximum distance from the baseline to the highest/upper grid
10673 coordinate used to place a glyph outline point, for all the rendered
10674 glyphs.
10675 It is a positive value, due to the grid's orientation with the Y axis
10676 upwards.
10677
10678 @item max_glyph_d, descent
10679 the maximum distance from the baseline to the lowest grid coordinate
10680 used to place a glyph outline point, for all the rendered glyphs.
10681 This is a negative value, due to the grid's orientation, with the Y axis
10682 upwards.
10683
10684 @item max_glyph_h
10685 maximum glyph height, that is the maximum height for all the glyphs
10686 contained in the rendered text, it is equivalent to @var{ascent} -
10687 @var{descent}.
10688
10689 @item max_glyph_w
10690 maximum glyph width, that is the maximum width for all the glyphs
10691 contained in the rendered text
10692
10693 @item n
10694 the number of input frame, starting from 0
10695
10696 @item rand(min, max)
10697 return a random number included between @var{min} and @var{max}
10698
10699 @item sar
10700 The input sample aspect ratio.
10701
10702 @item t
10703 timestamp expressed in seconds, NAN if the input timestamp is unknown
10704
10705 @item text_h, th
10706 the height of the rendered text
10707
10708 @item text_w, tw
10709 the width of the rendered text
10710
10711 @item x
10712 @item y
10713 the x and y offset coordinates where the text is drawn.
10714
10715 These parameters allow the @var{x} and @var{y} expressions to refer
10716 to each other, so you can for example specify @code{y=x/dar}.
10717
10718 @item pict_type
10719 A one character description of the current frame's picture type.
10720
10721 @item pkt_pos
10722 The current packet's position in the input file or stream
10723 (in bytes, from the start of the input). A value of -1 indicates
10724 this info is not available.
10725
10726 @item pkt_duration
10727 The current packet's duration, in seconds.
10728
10729 @item pkt_size
10730 The current packet's size (in bytes).
10731 @end table
10732
10733 @anchor{drawtext_expansion}
10734 @subsection Text expansion
10735
10736 If @option{expansion} is set to @code{strftime},
10737 the filter recognizes strftime() sequences in the provided text and
10738 expands them accordingly. Check the documentation of strftime(). This
10739 feature is deprecated.
10740
10741 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10742
10743 If @option{expansion} is set to @code{normal} (which is the default),
10744 the following expansion mechanism is used.
10745
10746 The backslash character @samp{\}, followed by any character, always expands to
10747 the second character.
10748
10749 Sequences of the form @code{%@{...@}} are expanded. The text between the
10750 braces is a function name, possibly followed by arguments separated by ':'.
10751 If the arguments contain special characters or delimiters (':' or '@}'),
10752 they should be escaped.
10753
10754 Note that they probably must also be escaped as the value for the
10755 @option{text} option in the filter argument string and as the filter
10756 argument in the filtergraph description, and possibly also for the shell,
10757 that makes up to four levels of escaping; using a text file avoids these
10758 problems.
10759
10760 The following functions are available:
10761
10762 @table @command
10763
10764 @item expr, e
10765 The expression evaluation result.
10766
10767 It must take one argument specifying the expression to be evaluated,
10768 which accepts the same constants and functions as the @var{x} and
10769 @var{y} values. Note that not all constants should be used, for
10770 example the text size is not known when evaluating the expression, so
10771 the constants @var{text_w} and @var{text_h} will have an undefined
10772 value.
10773
10774 @item expr_int_format, eif
10775 Evaluate the expression's value and output as formatted integer.
10776
10777 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10778 The second argument specifies the output format. Allowed values are @samp{x},
10779 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10780 @code{printf} function.
10781 The third parameter is optional and sets the number of positions taken by the output.
10782 It can be used to add padding with zeros from the left.
10783
10784 @item gmtime
10785 The time at which the filter is running, expressed in UTC.
10786 It can accept an argument: a strftime() format string.
10787
10788 @item localtime
10789 The time at which the filter is running, expressed in the local time zone.
10790 It can accept an argument: a strftime() format string.
10791
10792 @item metadata
10793 Frame metadata. Takes one or two arguments.
10794
10795 The first argument is mandatory and specifies the metadata key.
10796
10797 The second argument is optional and specifies a default value, used when the
10798 metadata key is not found or empty.
10799
10800 Available metadata can be identified by inspecting entries
10801 starting with TAG included within each frame section
10802 printed by running @code{ffprobe -show_frames}.
10803
10804 String metadata generated in filters leading to
10805 the drawtext filter are also available.
10806
10807 @item n, frame_num
10808 The frame number, starting from 0.
10809
10810 @item pict_type
10811 A one character description of the current picture type.
10812
10813 @item pts
10814 The timestamp of the current frame.
10815 It can take up to three arguments.
10816
10817 The first argument is the format of the timestamp; it defaults to @code{flt}
10818 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10819 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10820 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10821 @code{localtime} stands for the timestamp of the frame formatted as
10822 local time zone time.
10823
10824 The second argument is an offset added to the timestamp.
10825
10826 If the format is set to @code{hms}, a third argument @code{24HH} may be
10827 supplied to present the hour part of the formatted timestamp in 24h format
10828 (00-23).
10829
10830 If the format is set to @code{localtime} or @code{gmtime},
10831 a third argument may be supplied: a strftime() format string.
10832 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10833 @end table
10834
10835 @subsection Commands
10836
10837 This filter supports altering parameters via commands:
10838 @table @option
10839 @item reinit
10840 Alter existing filter parameters.
10841
10842 Syntax for the argument is the same as for filter invocation, e.g.
10843
10844 @example
10845 fontsize=56:fontcolor=green:text='Hello World'
10846 @end example
10847
10848 Full filter invocation with sendcmd would look like this:
10849
10850 @example
10851 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10852 @end example
10853 @end table
10854
10855 If the entire argument can't be parsed or applied as valid values then the filter will
10856 continue with its existing parameters.
10857
10858 @subsection Examples
10859
10860 @itemize
10861 @item
10862 Draw "Test Text" with font FreeSerif, using the default values for the
10863 optional parameters.
10864
10865 @example
10866 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10867 @end example
10868
10869 @item
10870 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10871 and y=50 (counting from the top-left corner of the screen), text is
10872 yellow with a red box around it. Both the text and the box have an
10873 opacity of 20%.
10874
10875 @example
10876 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10877           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10878 @end example
10879
10880 Note that the double quotes are not necessary if spaces are not used
10881 within the parameter list.
10882
10883 @item
10884 Show the text at the center of the video frame:
10885 @example
10886 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10887 @end example
10888
10889 @item
10890 Show the text at a random position, switching to a new position every 30 seconds:
10891 @example
10892 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)"
10893 @end example
10894
10895 @item
10896 Show a text line sliding from right to left in the last row of the video
10897 frame. The file @file{LONG_LINE} is assumed to contain a single line
10898 with no newlines.
10899 @example
10900 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10901 @end example
10902
10903 @item
10904 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10905 @example
10906 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10907 @end example
10908
10909 @item
10910 Draw a single green letter "g", at the center of the input video.
10911 The glyph baseline is placed at half screen height.
10912 @example
10913 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10914 @end example
10915
10916 @item
10917 Show text for 1 second every 3 seconds:
10918 @example
10919 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10920 @end example
10921
10922 @item
10923 Use fontconfig to set the font. Note that the colons need to be escaped.
10924 @example
10925 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10926 @end example
10927
10928 @item
10929 Draw "Test Text" with font size dependent on height of the video.
10930 @example
10931 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
10932 @end example
10933
10934 @item
10935 Print the date of a real-time encoding (see strftime(3)):
10936 @example
10937 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10938 @end example
10939
10940 @item
10941 Show text fading in and out (appearing/disappearing):
10942 @example
10943 #!/bin/sh
10944 DS=1.0 # display start
10945 DE=10.0 # display end
10946 FID=1.5 # fade in duration
10947 FOD=5 # fade out duration
10948 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 @}"
10949 @end example
10950
10951 @item
10952 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10953 and the @option{fontsize} value are included in the @option{y} offset.
10954 @example
10955 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10956 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10957 @end example
10958
10959 @item
10960 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10961 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10962 must have option @option{-export_path_metadata 1} for the special metadata fields
10963 to be available for filters.
10964 @example
10965 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10966 @end example
10967
10968 @end itemize
10969
10970 For more information about libfreetype, check:
10971 @url{http://www.freetype.org/}.
10972
10973 For more information about fontconfig, check:
10974 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10975
10976 For more information about libfribidi, check:
10977 @url{http://fribidi.org/}.
10978
10979 @section edgedetect
10980
10981 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10982
10983 The filter accepts the following options:
10984
10985 @table @option
10986 @item low
10987 @item high
10988 Set low and high threshold values used by the Canny thresholding
10989 algorithm.
10990
10991 The high threshold selects the "strong" edge pixels, which are then
10992 connected through 8-connectivity with the "weak" edge pixels selected
10993 by the low threshold.
10994
10995 @var{low} and @var{high} threshold values must be chosen in the range
10996 [0,1], and @var{low} should be lesser or equal to @var{high}.
10997
10998 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10999 is @code{50/255}.
11000
11001 @item mode
11002 Define the drawing mode.
11003
11004 @table @samp
11005 @item wires
11006 Draw white/gray wires on black background.
11007
11008 @item colormix
11009 Mix the colors to create a paint/cartoon effect.
11010
11011 @item canny
11012 Apply Canny edge detector on all selected planes.
11013 @end table
11014 Default value is @var{wires}.
11015
11016 @item planes
11017 Select planes for filtering. By default all available planes are filtered.
11018 @end table
11019
11020 @subsection Examples
11021
11022 @itemize
11023 @item
11024 Standard edge detection with custom values for the hysteresis thresholding:
11025 @example
11026 edgedetect=low=0.1:high=0.4
11027 @end example
11028
11029 @item
11030 Painting effect without thresholding:
11031 @example
11032 edgedetect=mode=colormix:high=0
11033 @end example
11034 @end itemize
11035
11036 @section elbg
11037
11038 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
11039
11040 For each input image, the filter will compute the optimal mapping from
11041 the input to the output given the codebook length, that is the number
11042 of distinct output colors.
11043
11044 This filter accepts the following options.
11045
11046 @table @option
11047 @item codebook_length, l
11048 Set codebook length. The value must be a positive integer, and
11049 represents the number of distinct output colors. Default value is 256.
11050
11051 @item nb_steps, n
11052 Set the maximum number of iterations to apply for computing the optimal
11053 mapping. The higher the value the better the result and the higher the
11054 computation time. Default value is 1.
11055
11056 @item seed, s
11057 Set a random seed, must be an integer included between 0 and
11058 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
11059 will try to use a good random seed on a best effort basis.
11060
11061 @item pal8
11062 Set pal8 output pixel format. This option does not work with codebook
11063 length greater than 256.
11064 @end table
11065
11066 @section entropy
11067
11068 Measure graylevel entropy in histogram of color channels of video frames.
11069
11070 It accepts the following parameters:
11071
11072 @table @option
11073 @item mode
11074 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
11075
11076 @var{diff} mode measures entropy of histogram delta values, absolute differences
11077 between neighbour histogram values.
11078 @end table
11079
11080 @section epx
11081 Apply the EPX magnification filter which is designed for pixel art.
11082
11083 It accepts the following option:
11084
11085 @table @option
11086 @item n
11087 Set the scaling dimension: @code{2} for @code{2xEPX}, @code{3} for
11088 @code{3xEPX}.
11089 Default is @code{3}.
11090 @end table
11091
11092 @section eq
11093 Set brightness, contrast, saturation and approximate gamma adjustment.
11094
11095 The filter accepts the following options:
11096
11097 @table @option
11098 @item contrast
11099 Set the contrast expression. The value must be a float value in range
11100 @code{-1000.0} to @code{1000.0}. The default value is "1".
11101
11102 @item brightness
11103 Set the brightness expression. The value must be a float value in
11104 range @code{-1.0} to @code{1.0}. The default value is "0".
11105
11106 @item saturation
11107 Set the saturation expression. The value must be a float in
11108 range @code{0.0} to @code{3.0}. The default value is "1".
11109
11110 @item gamma
11111 Set the gamma expression. The value must be a float in range
11112 @code{0.1} to @code{10.0}.  The default value is "1".
11113
11114 @item gamma_r
11115 Set the gamma expression for red. The value must be a float in
11116 range @code{0.1} to @code{10.0}. The default value is "1".
11117
11118 @item gamma_g
11119 Set the gamma expression for green. The value must be a float in range
11120 @code{0.1} to @code{10.0}. The default value is "1".
11121
11122 @item gamma_b
11123 Set the gamma expression for blue. The value must be a float in range
11124 @code{0.1} to @code{10.0}. The default value is "1".
11125
11126 @item gamma_weight
11127 Set the gamma weight expression. It can be used to reduce the effect
11128 of a high gamma value on bright image areas, e.g. keep them from
11129 getting overamplified and just plain white. The value must be a float
11130 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
11131 gamma correction all the way down while @code{1.0} leaves it at its
11132 full strength. Default is "1".
11133
11134 @item eval
11135 Set when the expressions for brightness, contrast, saturation and
11136 gamma expressions are evaluated.
11137
11138 It accepts the following values:
11139 @table @samp
11140 @item init
11141 only evaluate expressions once during the filter initialization or
11142 when a command is processed
11143
11144 @item frame
11145 evaluate expressions for each incoming frame
11146 @end table
11147
11148 Default value is @samp{init}.
11149 @end table
11150
11151 The expressions accept the following parameters:
11152 @table @option
11153 @item n
11154 frame count of the input frame starting from 0
11155
11156 @item pos
11157 byte position of the corresponding packet in the input file, NAN if
11158 unspecified
11159
11160 @item r
11161 frame rate of the input video, NAN if the input frame rate is unknown
11162
11163 @item t
11164 timestamp expressed in seconds, NAN if the input timestamp is unknown
11165 @end table
11166
11167 @subsection Commands
11168 The filter supports the following commands:
11169
11170 @table @option
11171 @item contrast
11172 Set the contrast expression.
11173
11174 @item brightness
11175 Set the brightness expression.
11176
11177 @item saturation
11178 Set the saturation expression.
11179
11180 @item gamma
11181 Set the gamma expression.
11182
11183 @item gamma_r
11184 Set the gamma_r expression.
11185
11186 @item gamma_g
11187 Set gamma_g expression.
11188
11189 @item gamma_b
11190 Set gamma_b expression.
11191
11192 @item gamma_weight
11193 Set gamma_weight expression.
11194
11195 The command accepts the same syntax of the corresponding option.
11196
11197 If the specified expression is not valid, it is kept at its current
11198 value.
11199
11200 @end table
11201
11202 @section erosion
11203
11204 Apply erosion effect to the video.
11205
11206 This filter replaces the pixel by the local(3x3) minimum.
11207
11208 It accepts the following options:
11209
11210 @table @option
11211 @item threshold0
11212 @item threshold1
11213 @item threshold2
11214 @item threshold3
11215 Limit the maximum change for each plane, default is 65535.
11216 If 0, plane will remain unchanged.
11217
11218 @item coordinates
11219 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
11220 pixels are used.
11221
11222 Flags to local 3x3 coordinates maps like this:
11223
11224     1 2 3
11225     4   5
11226     6 7 8
11227 @end table
11228
11229 @subsection Commands
11230
11231 This filter supports the all above options as @ref{commands}.
11232
11233 @section estdif
11234
11235 Deinterlace the input video ("estdif" stands for "Edge Slope
11236 Tracing Deinterlacing Filter").
11237
11238 Spatial only filter that uses edge slope tracing algorithm
11239 to interpolate missing lines.
11240 It accepts the following parameters:
11241
11242 @table @option
11243 @item mode
11244 The interlacing mode to adopt. It accepts one of the following values:
11245
11246 @table @option
11247 @item frame
11248 Output one frame for each frame.
11249 @item field
11250 Output one frame for each field.
11251 @end table
11252
11253 The default value is @code{field}.
11254
11255 @item parity
11256 The picture field parity assumed for the input interlaced video. It accepts one
11257 of the following values:
11258
11259 @table @option
11260 @item tff
11261 Assume the top field is first.
11262 @item bff
11263 Assume the bottom field is first.
11264 @item auto
11265 Enable automatic detection of field parity.
11266 @end table
11267
11268 The default value is @code{auto}.
11269 If the interlacing is unknown or the decoder does not export this information,
11270 top field first will be assumed.
11271
11272 @item deint
11273 Specify which frames to deinterlace. Accepts one of the following
11274 values:
11275
11276 @table @option
11277 @item all
11278 Deinterlace all frames.
11279 @item interlaced
11280 Only deinterlace frames marked as interlaced.
11281 @end table
11282
11283 The default value is @code{all}.
11284
11285 @item rslope
11286 Specify the search radius for edge slope tracing. Default value is 1.
11287 Allowed range is from 1 to 15.
11288
11289 @item redge
11290 Specify the search radius for best edge matching. Default value is 2.
11291 Allowed range is from 0 to 15.
11292
11293 @item interp
11294 Specify the interpolation used. Default is 4-point interpolation. It accepts one
11295 of the following values:
11296
11297 @table @option
11298 @item 2p
11299 Two-point interpolation.
11300 @item 4p
11301 Four-point interpolation.
11302 @item 6p
11303 Six-point interpolation.
11304 @end table
11305 @end table
11306
11307 @subsection Commands
11308 This filter supports same @ref{commands} as options.
11309
11310 @section extractplanes
11311
11312 Extract color channel components from input video stream into
11313 separate grayscale video streams.
11314
11315 The filter accepts the following option:
11316
11317 @table @option
11318 @item planes
11319 Set plane(s) to extract.
11320
11321 Available values for planes are:
11322 @table @samp
11323 @item y
11324 @item u
11325 @item v
11326 @item a
11327 @item r
11328 @item g
11329 @item b
11330 @end table
11331
11332 Choosing planes not available in the input will result in an error.
11333 That means you cannot select @code{r}, @code{g}, @code{b} planes
11334 with @code{y}, @code{u}, @code{v} planes at same time.
11335 @end table
11336
11337 @subsection Examples
11338
11339 @itemize
11340 @item
11341 Extract luma, u and v color channel component from input video frame
11342 into 3 grayscale outputs:
11343 @example
11344 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
11345 @end example
11346 @end itemize
11347
11348 @section fade
11349
11350 Apply a fade-in/out effect to the input video.
11351
11352 It accepts the following parameters:
11353
11354 @table @option
11355 @item type, t
11356 The effect type can be either "in" for a fade-in, or "out" for a fade-out
11357 effect.
11358 Default is @code{in}.
11359
11360 @item start_frame, s
11361 Specify the number of the frame to start applying the fade
11362 effect at. Default is 0.
11363
11364 @item nb_frames, n
11365 The number of frames that the fade effect lasts. At the end of the
11366 fade-in effect, the output video will have the same intensity as the input video.
11367 At the end of the fade-out transition, the output video will be filled with the
11368 selected @option{color}.
11369 Default is 25.
11370
11371 @item alpha
11372 If set to 1, fade only alpha channel, if one exists on the input.
11373 Default value is 0.
11374
11375 @item start_time, st
11376 Specify the timestamp (in seconds) of the frame to start to apply the fade
11377 effect. If both start_frame and start_time are specified, the fade will start at
11378 whichever comes last.  Default is 0.
11379
11380 @item duration, d
11381 The number of seconds for which the fade effect has to last. At the end of the
11382 fade-in effect the output video will have the same intensity as the input video,
11383 at the end of the fade-out transition the output video will be filled with the
11384 selected @option{color}.
11385 If both duration and nb_frames are specified, duration is used. Default is 0
11386 (nb_frames is used by default).
11387
11388 @item color, c
11389 Specify the color of the fade. Default is "black".
11390 @end table
11391
11392 @subsection Examples
11393
11394 @itemize
11395 @item
11396 Fade in the first 30 frames of video:
11397 @example
11398 fade=in:0:30
11399 @end example
11400
11401 The command above is equivalent to:
11402 @example
11403 fade=t=in:s=0:n=30
11404 @end example
11405
11406 @item
11407 Fade out the last 45 frames of a 200-frame video:
11408 @example
11409 fade=out:155:45
11410 fade=type=out:start_frame=155:nb_frames=45
11411 @end example
11412
11413 @item
11414 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
11415 @example
11416 fade=in:0:25, fade=out:975:25
11417 @end example
11418
11419 @item
11420 Make the first 5 frames yellow, then fade in from frame 5-24:
11421 @example
11422 fade=in:5:20:color=yellow
11423 @end example
11424
11425 @item
11426 Fade in alpha over first 25 frames of video:
11427 @example
11428 fade=in:0:25:alpha=1
11429 @end example
11430
11431 @item
11432 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
11433 @example
11434 fade=t=in:st=5.5:d=0.5
11435 @end example
11436
11437 @end itemize
11438
11439 @section fftdnoiz
11440 Denoise frames using 3D FFT (frequency domain filtering).
11441
11442 The filter accepts the following options:
11443
11444 @table @option
11445 @item sigma
11446 Set the noise sigma constant. This sets denoising strength.
11447 Default value is 1. Allowed range is from 0 to 30.
11448 Using very high sigma with low overlap may give blocking artifacts.
11449
11450 @item amount
11451 Set amount of denoising. By default all detected noise is reduced.
11452 Default value is 1. Allowed range is from 0 to 1.
11453
11454 @item block
11455 Set size of block, Default is 4, can be 3, 4, 5 or 6.
11456 Actual size of block in pixels is 2 to power of @var{block}, so by default
11457 block size in pixels is 2^4 which is 16.
11458
11459 @item overlap
11460 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
11461
11462 @item prev
11463 Set number of previous frames to use for denoising. By default is set to 0.
11464
11465 @item next
11466 Set number of next frames to to use for denoising. By default is set to 0.
11467
11468 @item planes
11469 Set planes which will be filtered, by default are all available filtered
11470 except alpha.
11471 @end table
11472
11473 @section fftfilt
11474 Apply arbitrary expressions to samples in frequency domain
11475
11476 @table @option
11477 @item dc_Y
11478 Adjust the dc value (gain) of the luma plane of the image. The filter
11479 accepts an integer value in range @code{0} to @code{1000}. The default
11480 value is set to @code{0}.
11481
11482 @item dc_U
11483 Adjust the dc value (gain) of the 1st chroma plane of the image. The
11484 filter accepts an integer value in range @code{0} to @code{1000}. The
11485 default value is set to @code{0}.
11486
11487 @item dc_V
11488 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
11489 filter accepts an integer value in range @code{0} to @code{1000}. The
11490 default value is set to @code{0}.
11491
11492 @item weight_Y
11493 Set the frequency domain weight expression for the luma plane.
11494
11495 @item weight_U
11496 Set the frequency domain weight expression for the 1st chroma plane.
11497
11498 @item weight_V
11499 Set the frequency domain weight expression for the 2nd chroma plane.
11500
11501 @item eval
11502 Set when the expressions are evaluated.
11503
11504 It accepts the following values:
11505 @table @samp
11506 @item init
11507 Only evaluate expressions once during the filter initialization.
11508
11509 @item frame
11510 Evaluate expressions for each incoming frame.
11511 @end table
11512
11513 Default value is @samp{init}.
11514
11515 The filter accepts the following variables:
11516 @item X
11517 @item Y
11518 The coordinates of the current sample.
11519
11520 @item W
11521 @item H
11522 The width and height of the image.
11523
11524 @item N
11525 The number of input frame, starting from 0.
11526 @end table
11527
11528 @subsection Examples
11529
11530 @itemize
11531 @item
11532 High-pass:
11533 @example
11534 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
11535 @end example
11536
11537 @item
11538 Low-pass:
11539 @example
11540 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
11541 @end example
11542
11543 @item
11544 Sharpen:
11545 @example
11546 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
11547 @end example
11548
11549 @item
11550 Blur:
11551 @example
11552 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
11553 @end example
11554
11555 @end itemize
11556
11557 @section field
11558
11559 Extract a single field from an interlaced image using stride
11560 arithmetic to avoid wasting CPU time. The output frames are marked as
11561 non-interlaced.
11562
11563 The filter accepts the following options:
11564
11565 @table @option
11566 @item type
11567 Specify whether to extract the top (if the value is @code{0} or
11568 @code{top}) or the bottom field (if the value is @code{1} or
11569 @code{bottom}).
11570 @end table
11571
11572 @section fieldhint
11573
11574 Create new frames by copying the top and bottom fields from surrounding frames
11575 supplied as numbers by the hint file.
11576
11577 @table @option
11578 @item hint
11579 Set file containing hints: absolute/relative frame numbers.
11580
11581 There must be one line for each frame in a clip. Each line must contain two
11582 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11583 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11584 is current frame number for @code{absolute} mode or out of [-1, 1] range
11585 for @code{relative} mode. First number tells from which frame to pick up top
11586 field and second number tells from which frame to pick up bottom field.
11587
11588 If optionally followed by @code{+} output frame will be marked as interlaced,
11589 else if followed by @code{-} output frame will be marked as progressive, else
11590 it will be marked same as input frame.
11591 If optionally followed by @code{t} output frame will use only top field, or in
11592 case of @code{b} it will use only bottom field.
11593 If line starts with @code{#} or @code{;} that line is skipped.
11594
11595 @item mode
11596 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11597 @end table
11598
11599 Example of first several lines of @code{hint} file for @code{relative} mode:
11600 @example
11601 0,0 - # first frame
11602 1,0 - # second frame, use third's frame top field and second's frame bottom field
11603 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11604 1,0 -
11605 0,0 -
11606 0,0 -
11607 1,0 -
11608 1,0 -
11609 1,0 -
11610 0,0 -
11611 0,0 -
11612 1,0 -
11613 1,0 -
11614 1,0 -
11615 0,0 -
11616 @end example
11617
11618 @section fieldmatch
11619
11620 Field matching filter for inverse telecine. It is meant to reconstruct the
11621 progressive frames from a telecined stream. The filter does not drop duplicated
11622 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11623 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11624
11625 The separation of the field matching and the decimation is notably motivated by
11626 the possibility of inserting a de-interlacing filter fallback between the two.
11627 If the source has mixed telecined and real interlaced content,
11628 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11629 But these remaining combed frames will be marked as interlaced, and thus can be
11630 de-interlaced by a later filter such as @ref{yadif} before decimation.
11631
11632 In addition to the various configuration options, @code{fieldmatch} can take an
11633 optional second stream, activated through the @option{ppsrc} option. If
11634 enabled, the frames reconstruction will be based on the fields and frames from
11635 this second stream. This allows the first input to be pre-processed in order to
11636 help the various algorithms of the filter, while keeping the output lossless
11637 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11638 or brightness/contrast adjustments can help.
11639
11640 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11641 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11642 which @code{fieldmatch} is based on. While the semantic and usage are very
11643 close, some behaviour and options names can differ.
11644
11645 The @ref{decimate} filter currently only works for constant frame rate input.
11646 If your input has mixed telecined (30fps) and progressive content with a lower
11647 framerate like 24fps use the following filterchain to produce the necessary cfr
11648 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11649
11650 The filter accepts the following options:
11651
11652 @table @option
11653 @item order
11654 Specify the assumed field order of the input stream. Available values are:
11655
11656 @table @samp
11657 @item auto
11658 Auto detect parity (use FFmpeg's internal parity value).
11659 @item bff
11660 Assume bottom field first.
11661 @item tff
11662 Assume top field first.
11663 @end table
11664
11665 Note that it is sometimes recommended not to trust the parity announced by the
11666 stream.
11667
11668 Default value is @var{auto}.
11669
11670 @item mode
11671 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11672 sense that it won't risk creating jerkiness due to duplicate frames when
11673 possible, but if there are bad edits or blended fields it will end up
11674 outputting combed frames when a good match might actually exist. On the other
11675 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11676 but will almost always find a good frame if there is one. The other values are
11677 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11678 jerkiness and creating duplicate frames versus finding good matches in sections
11679 with bad edits, orphaned fields, blended fields, etc.
11680
11681 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11682
11683 Available values are:
11684
11685 @table @samp
11686 @item pc
11687 2-way matching (p/c)
11688 @item pc_n
11689 2-way matching, and trying 3rd match if still combed (p/c + n)
11690 @item pc_u
11691 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11692 @item pc_n_ub
11693 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11694 still combed (p/c + n + u/b)
11695 @item pcn
11696 3-way matching (p/c/n)
11697 @item pcn_ub
11698 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11699 detected as combed (p/c/n + u/b)
11700 @end table
11701
11702 The parenthesis at the end indicate the matches that would be used for that
11703 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11704 @var{top}).
11705
11706 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11707 the slowest.
11708
11709 Default value is @var{pc_n}.
11710
11711 @item ppsrc
11712 Mark the main input stream as a pre-processed input, and enable the secondary
11713 input stream as the clean source to pick the fields from. See the filter
11714 introduction for more details. It is similar to the @option{clip2} feature from
11715 VFM/TFM.
11716
11717 Default value is @code{0} (disabled).
11718
11719 @item field
11720 Set the field to match from. It is recommended to set this to the same value as
11721 @option{order} unless you experience matching failures with that setting. In
11722 certain circumstances changing the field that is used to match from can have a
11723 large impact on matching performance. Available values are:
11724
11725 @table @samp
11726 @item auto
11727 Automatic (same value as @option{order}).
11728 @item bottom
11729 Match from the bottom field.
11730 @item top
11731 Match from the top field.
11732 @end table
11733
11734 Default value is @var{auto}.
11735
11736 @item mchroma
11737 Set whether or not chroma is included during the match comparisons. In most
11738 cases it is recommended to leave this enabled. You should set this to @code{0}
11739 only if your clip has bad chroma problems such as heavy rainbowing or other
11740 artifacts. Setting this to @code{0} could also be used to speed things up at
11741 the cost of some accuracy.
11742
11743 Default value is @code{1}.
11744
11745 @item y0
11746 @item y1
11747 These define an exclusion band which excludes the lines between @option{y0} and
11748 @option{y1} from being included in the field matching decision. An exclusion
11749 band can be used to ignore subtitles, a logo, or other things that may
11750 interfere with the matching. @option{y0} sets the starting scan line and
11751 @option{y1} sets the ending line; all lines in between @option{y0} and
11752 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11753 @option{y0} and @option{y1} to the same value will disable the feature.
11754 @option{y0} and @option{y1} defaults to @code{0}.
11755
11756 @item scthresh
11757 Set the scene change detection threshold as a percentage of maximum change on
11758 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11759 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11760 @option{scthresh} is @code{[0.0, 100.0]}.
11761
11762 Default value is @code{12.0}.
11763
11764 @item combmatch
11765 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11766 account the combed scores of matches when deciding what match to use as the
11767 final match. Available values are:
11768
11769 @table @samp
11770 @item none
11771 No final matching based on combed scores.
11772 @item sc
11773 Combed scores are only used when a scene change is detected.
11774 @item full
11775 Use combed scores all the time.
11776 @end table
11777
11778 Default is @var{sc}.
11779
11780 @item combdbg
11781 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11782 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11783 Available values are:
11784
11785 @table @samp
11786 @item none
11787 No forced calculation.
11788 @item pcn
11789 Force p/c/n calculations.
11790 @item pcnub
11791 Force p/c/n/u/b calculations.
11792 @end table
11793
11794 Default value is @var{none}.
11795
11796 @item cthresh
11797 This is the area combing threshold used for combed frame detection. This
11798 essentially controls how "strong" or "visible" combing must be to be detected.
11799 Larger values mean combing must be more visible and smaller values mean combing
11800 can be less visible or strong and still be detected. Valid settings are from
11801 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11802 be detected as combed). This is basically a pixel difference value. A good
11803 range is @code{[8, 12]}.
11804
11805 Default value is @code{9}.
11806
11807 @item chroma
11808 Sets whether or not chroma is considered in the combed frame decision.  Only
11809 disable this if your source has chroma problems (rainbowing, etc.) that are
11810 causing problems for the combed frame detection with chroma enabled. Actually,
11811 using @option{chroma}=@var{0} is usually more reliable, except for the case
11812 where there is chroma only combing in the source.
11813
11814 Default value is @code{0}.
11815
11816 @item blockx
11817 @item blocky
11818 Respectively set the x-axis and y-axis size of the window used during combed
11819 frame detection. This has to do with the size of the area in which
11820 @option{combpel} pixels are required to be detected as combed for a frame to be
11821 declared combed. See the @option{combpel} parameter description for more info.
11822 Possible values are any number that is a power of 2 starting at 4 and going up
11823 to 512.
11824
11825 Default value is @code{16}.
11826
11827 @item combpel
11828 The number of combed pixels inside any of the @option{blocky} by
11829 @option{blockx} size blocks on the frame for the frame to be detected as
11830 combed. While @option{cthresh} controls how "visible" the combing must be, this
11831 setting controls "how much" combing there must be in any localized area (a
11832 window defined by the @option{blockx} and @option{blocky} settings) on the
11833 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11834 which point no frames will ever be detected as combed). This setting is known
11835 as @option{MI} in TFM/VFM vocabulary.
11836
11837 Default value is @code{80}.
11838 @end table
11839
11840 @anchor{p/c/n/u/b meaning}
11841 @subsection p/c/n/u/b meaning
11842
11843 @subsubsection p/c/n
11844
11845 We assume the following telecined stream:
11846
11847 @example
11848 Top fields:     1 2 2 3 4
11849 Bottom fields:  1 2 3 4 4
11850 @end example
11851
11852 The numbers correspond to the progressive frame the fields relate to. Here, the
11853 first two frames are progressive, the 3rd and 4th are combed, and so on.
11854
11855 When @code{fieldmatch} is configured to run a matching from bottom
11856 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11857
11858 @example
11859 Input stream:
11860                 T     1 2 2 3 4
11861                 B     1 2 3 4 4   <-- matching reference
11862
11863 Matches:              c c n n c
11864
11865 Output stream:
11866                 T     1 2 3 4 4
11867                 B     1 2 3 4 4
11868 @end example
11869
11870 As a result of the field matching, we can see that some frames get duplicated.
11871 To perform a complete inverse telecine, you need to rely on a decimation filter
11872 after this operation. See for instance the @ref{decimate} filter.
11873
11874 The same operation now matching from top fields (@option{field}=@var{top})
11875 looks like this:
11876
11877 @example
11878 Input stream:
11879                 T     1 2 2 3 4   <-- matching reference
11880                 B     1 2 3 4 4
11881
11882 Matches:              c c p p c
11883
11884 Output stream:
11885                 T     1 2 2 3 4
11886                 B     1 2 2 3 4
11887 @end example
11888
11889 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
11890 basically, they refer to the frame and field of the opposite parity:
11891
11892 @itemize
11893 @item @var{p} matches the field of the opposite parity in the previous frame
11894 @item @var{c} matches the field of the opposite parity in the current frame
11895 @item @var{n} matches the field of the opposite parity in the next frame
11896 @end itemize
11897
11898 @subsubsection u/b
11899
11900 The @var{u} and @var{b} matching are a bit special in the sense that they match
11901 from the opposite parity flag. In the following examples, we assume that we are
11902 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
11903 'x' is placed above and below each matched fields.
11904
11905 With bottom matching (@option{field}=@var{bottom}):
11906 @example
11907 Match:           c         p           n          b          u
11908
11909                  x       x               x        x          x
11910   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11911   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11912                  x         x           x        x              x
11913
11914 Output frames:
11915                  2          1          2          2          2
11916                  2          2          2          1          3
11917 @end example
11918
11919 With top matching (@option{field}=@var{top}):
11920 @example
11921 Match:           c         p           n          b          u
11922
11923                  x         x           x        x              x
11924   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11925   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11926                  x       x               x        x          x
11927
11928 Output frames:
11929                  2          2          2          1          2
11930                  2          1          3          2          2
11931 @end example
11932
11933 @subsection Examples
11934
11935 Simple IVTC of a top field first telecined stream:
11936 @example
11937 fieldmatch=order=tff:combmatch=none, decimate
11938 @end example
11939
11940 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
11941 @example
11942 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
11943 @end example
11944
11945 @section fieldorder
11946
11947 Transform the field order of the input video.
11948
11949 It accepts the following parameters:
11950
11951 @table @option
11952
11953 @item order
11954 The output field order. Valid values are @var{tff} for top field first or @var{bff}
11955 for bottom field first.
11956 @end table
11957
11958 The default value is @samp{tff}.
11959
11960 The transformation is done by shifting the picture content up or down
11961 by one line, and filling the remaining line with appropriate picture content.
11962 This method is consistent with most broadcast field order converters.
11963
11964 If the input video is not flagged as being interlaced, or it is already
11965 flagged as being of the required output field order, then this filter does
11966 not alter the incoming video.
11967
11968 It is very useful when converting to or from PAL DV material,
11969 which is bottom field first.
11970
11971 For example:
11972 @example
11973 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
11974 @end example
11975
11976 @section fifo, afifo
11977
11978 Buffer input images and send them when they are requested.
11979
11980 It is mainly useful when auto-inserted by the libavfilter
11981 framework.
11982
11983 It does not take parameters.
11984
11985 @section fillborders
11986
11987 Fill borders of the input video, without changing video stream dimensions.
11988 Sometimes video can have garbage at the four edges and you may not want to
11989 crop video input to keep size multiple of some number.
11990
11991 This filter accepts the following options:
11992
11993 @table @option
11994 @item left
11995 Number of pixels to fill from left border.
11996
11997 @item right
11998 Number of pixels to fill from right border.
11999
12000 @item top
12001 Number of pixels to fill from top border.
12002
12003 @item bottom
12004 Number of pixels to fill from bottom border.
12005
12006 @item mode
12007 Set fill mode.
12008
12009 It accepts the following values:
12010 @table @samp
12011 @item smear
12012 fill pixels using outermost pixels
12013
12014 @item mirror
12015 fill pixels using mirroring (half sample symmetric)
12016
12017 @item fixed
12018 fill pixels with constant value
12019
12020 @item reflect
12021 fill pixels using reflecting (whole sample symmetric)
12022
12023 @item wrap
12024 fill pixels using wrapping
12025
12026 @item fade
12027 fade pixels to constant value
12028 @end table
12029
12030 Default is @var{smear}.
12031
12032 @item color
12033 Set color for pixels in fixed or fade mode. Default is @var{black}.
12034 @end table
12035
12036 @subsection Commands
12037 This filter supports same @ref{commands} as options.
12038 The command accepts the same syntax of the corresponding option.
12039
12040 If the specified expression is not valid, it is kept at its current
12041 value.
12042
12043 @section find_rect
12044
12045 Find a rectangular object
12046
12047 It accepts the following options:
12048
12049 @table @option
12050 @item object
12051 Filepath of the object image, needs to be in gray8.
12052
12053 @item threshold
12054 Detection threshold, default is 0.5.
12055
12056 @item mipmaps
12057 Number of mipmaps, default is 3.
12058
12059 @item xmin, ymin, xmax, ymax
12060 Specifies the rectangle in which to search.
12061 @end table
12062
12063 @subsection Examples
12064
12065 @itemize
12066 @item
12067 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
12068 @example
12069 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
12070 @end example
12071 @end itemize
12072
12073 @section floodfill
12074
12075 Flood area with values of same pixel components with another values.
12076
12077 It accepts the following options:
12078 @table @option
12079 @item x
12080 Set pixel x coordinate.
12081
12082 @item y
12083 Set pixel y coordinate.
12084
12085 @item s0
12086 Set source #0 component value.
12087
12088 @item s1
12089 Set source #1 component value.
12090
12091 @item s2
12092 Set source #2 component value.
12093
12094 @item s3
12095 Set source #3 component value.
12096
12097 @item d0
12098 Set destination #0 component value.
12099
12100 @item d1
12101 Set destination #1 component value.
12102
12103 @item d2
12104 Set destination #2 component value.
12105
12106 @item d3
12107 Set destination #3 component value.
12108 @end table
12109
12110 @anchor{format}
12111 @section format
12112
12113 Convert the input video to one of the specified pixel formats.
12114 Libavfilter will try to pick one that is suitable as input to
12115 the next filter.
12116
12117 It accepts the following parameters:
12118 @table @option
12119
12120 @item pix_fmts
12121 A '|'-separated list of pixel format names, such as
12122 "pix_fmts=yuv420p|monow|rgb24".
12123
12124 @end table
12125
12126 @subsection Examples
12127
12128 @itemize
12129 @item
12130 Convert the input video to the @var{yuv420p} format
12131 @example
12132 format=pix_fmts=yuv420p
12133 @end example
12134
12135 Convert the input video to any of the formats in the list
12136 @example
12137 format=pix_fmts=yuv420p|yuv444p|yuv410p
12138 @end example
12139 @end itemize
12140
12141 @anchor{fps}
12142 @section fps
12143
12144 Convert the video to specified constant frame rate by duplicating or dropping
12145 frames as necessary.
12146
12147 It accepts the following parameters:
12148 @table @option
12149
12150 @item fps
12151 The desired output frame rate. The default is @code{25}.
12152
12153 @item start_time
12154 Assume the first PTS should be the given value, in seconds. This allows for
12155 padding/trimming at the start of stream. By default, no assumption is made
12156 about the first frame's expected PTS, so no padding or trimming is done.
12157 For example, this could be set to 0 to pad the beginning with duplicates of
12158 the first frame if a video stream starts after the audio stream or to trim any
12159 frames with a negative PTS.
12160
12161 @item round
12162 Timestamp (PTS) rounding method.
12163
12164 Possible values are:
12165 @table @option
12166 @item zero
12167 round towards 0
12168 @item inf
12169 round away from 0
12170 @item down
12171 round towards -infinity
12172 @item up
12173 round towards +infinity
12174 @item near
12175 round to nearest
12176 @end table
12177 The default is @code{near}.
12178
12179 @item eof_action
12180 Action performed when reading the last frame.
12181
12182 Possible values are:
12183 @table @option
12184 @item round
12185 Use same timestamp rounding method as used for other frames.
12186 @item pass
12187 Pass through last frame if input duration has not been reached yet.
12188 @end table
12189 The default is @code{round}.
12190
12191 @end table
12192
12193 Alternatively, the options can be specified as a flat string:
12194 @var{fps}[:@var{start_time}[:@var{round}]].
12195
12196 See also the @ref{setpts} filter.
12197
12198 @subsection Examples
12199
12200 @itemize
12201 @item
12202 A typical usage in order to set the fps to 25:
12203 @example
12204 fps=fps=25
12205 @end example
12206
12207 @item
12208 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
12209 @example
12210 fps=fps=film:round=near
12211 @end example
12212 @end itemize
12213
12214 @section framepack
12215
12216 Pack two different video streams into a stereoscopic video, setting proper
12217 metadata on supported codecs. The two views should have the same size and
12218 framerate and processing will stop when the shorter video ends. Please note
12219 that you may conveniently adjust view properties with the @ref{scale} and
12220 @ref{fps} filters.
12221
12222 It accepts the following parameters:
12223 @table @option
12224
12225 @item format
12226 The desired packing format. Supported values are:
12227
12228 @table @option
12229
12230 @item sbs
12231 The views are next to each other (default).
12232
12233 @item tab
12234 The views are on top of each other.
12235
12236 @item lines
12237 The views are packed by line.
12238
12239 @item columns
12240 The views are packed by column.
12241
12242 @item frameseq
12243 The views are temporally interleaved.
12244
12245 @end table
12246
12247 @end table
12248
12249 Some examples:
12250
12251 @example
12252 # Convert left and right views into a frame-sequential video
12253 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
12254
12255 # Convert views into a side-by-side video with the same output resolution as the input
12256 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
12257 @end example
12258
12259 @section framerate
12260
12261 Change the frame rate by interpolating new video output frames from the source
12262 frames.
12263
12264 This filter is not designed to function correctly with interlaced media. If
12265 you wish to change the frame rate of interlaced media then you are required
12266 to deinterlace before this filter and re-interlace after this filter.
12267
12268 A description of the accepted options follows.
12269
12270 @table @option
12271 @item fps
12272 Specify the output frames per second. This option can also be specified
12273 as a value alone. The default is @code{50}.
12274
12275 @item interp_start
12276 Specify the start of a range where the output frame will be created as a
12277 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12278 the default is @code{15}.
12279
12280 @item interp_end
12281 Specify the end of a range where the output frame will be created as a
12282 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12283 the default is @code{240}.
12284
12285 @item scene
12286 Specify the level at which a scene change is detected as a value between
12287 0 and 100 to indicate a new scene; a low value reflects a low
12288 probability for the current frame to introduce a new scene, while a higher
12289 value means the current frame is more likely to be one.
12290 The default is @code{8.2}.
12291
12292 @item flags
12293 Specify flags influencing the filter process.
12294
12295 Available value for @var{flags} is:
12296
12297 @table @option
12298 @item scene_change_detect, scd
12299 Enable scene change detection using the value of the option @var{scene}.
12300 This flag is enabled by default.
12301 @end table
12302 @end table
12303
12304 @section framestep
12305
12306 Select one frame every N-th frame.
12307
12308 This filter accepts the following option:
12309 @table @option
12310 @item step
12311 Select frame after every @code{step} frames.
12312 Allowed values are positive integers higher than 0. Default value is @code{1}.
12313 @end table
12314
12315 @section freezedetect
12316
12317 Detect frozen video.
12318
12319 This filter logs a message and sets frame metadata when it detects that the
12320 input video has no significant change in content during a specified duration.
12321 Video freeze detection calculates the mean average absolute difference of all
12322 the components of video frames and compares it to a noise floor.
12323
12324 The printed times and duration are expressed in seconds. The
12325 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
12326 whose timestamp equals or exceeds the detection duration and it contains the
12327 timestamp of the first frame of the freeze. The
12328 @code{lavfi.freezedetect.freeze_duration} and
12329 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
12330 after the freeze.
12331
12332 The filter accepts the following options:
12333
12334 @table @option
12335 @item noise, n
12336 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
12337 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
12338 0.001.
12339
12340 @item duration, d
12341 Set freeze duration until notification (default is 2 seconds).
12342 @end table
12343
12344 @section freezeframes
12345
12346 Freeze video frames.
12347
12348 This filter freezes video frames using frame from 2nd input.
12349
12350 The filter accepts the following options:
12351
12352 @table @option
12353 @item first
12354 Set number of first frame from which to start freeze.
12355
12356 @item last
12357 Set number of last frame from which to end freeze.
12358
12359 @item replace
12360 Set number of frame from 2nd input which will be used instead of replaced frames.
12361 @end table
12362
12363 @anchor{frei0r}
12364 @section frei0r
12365
12366 Apply a frei0r effect to the input video.
12367
12368 To enable the compilation of this filter, you need to install the frei0r
12369 header and configure FFmpeg with @code{--enable-frei0r}.
12370
12371 It accepts the following parameters:
12372
12373 @table @option
12374
12375 @item filter_name
12376 The name of the frei0r effect to load. If the environment variable
12377 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
12378 directories specified by the colon-separated list in @env{FREI0R_PATH}.
12379 Otherwise, the standard frei0r paths are searched, in this order:
12380 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
12381 @file{/usr/lib/frei0r-1/}.
12382
12383 @item filter_params
12384 A '|'-separated list of parameters to pass to the frei0r effect.
12385
12386 @end table
12387
12388 A frei0r effect parameter can be a boolean (its value is either
12389 "y" or "n"), a double, a color (specified as
12390 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
12391 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
12392 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
12393 a position (specified as @var{X}/@var{Y}, where
12394 @var{X} and @var{Y} are floating point numbers) and/or a string.
12395
12396 The number and types of parameters depend on the loaded effect. If an
12397 effect parameter is not specified, the default value is set.
12398
12399 @subsection Examples
12400
12401 @itemize
12402 @item
12403 Apply the distort0r effect, setting the first two double parameters:
12404 @example
12405 frei0r=filter_name=distort0r:filter_params=0.5|0.01
12406 @end example
12407
12408 @item
12409 Apply the colordistance effect, taking a color as the first parameter:
12410 @example
12411 frei0r=colordistance:0.2/0.3/0.4
12412 frei0r=colordistance:violet
12413 frei0r=colordistance:0x112233
12414 @end example
12415
12416 @item
12417 Apply the perspective effect, specifying the top left and top right image
12418 positions:
12419 @example
12420 frei0r=perspective:0.2/0.2|0.8/0.2
12421 @end example
12422 @end itemize
12423
12424 For more information, see
12425 @url{http://frei0r.dyne.org}
12426
12427 @subsection Commands
12428
12429 This filter supports the @option{filter_params} option as @ref{commands}.
12430
12431 @section fspp
12432
12433 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
12434
12435 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
12436 processing filter, one of them is performed once per block, not per pixel.
12437 This allows for much higher speed.
12438
12439 The filter accepts the following options:
12440
12441 @table @option
12442 @item quality
12443 Set quality. This option defines the number of levels for averaging. It accepts
12444 an integer in the range 4-5. Default value is @code{4}.
12445
12446 @item qp
12447 Force a constant quantization parameter. It accepts an integer in range 0-63.
12448 If not set, the filter will use the QP from the video stream (if available).
12449
12450 @item strength
12451 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
12452 more details but also more artifacts, while higher values make the image smoother
12453 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
12454
12455 @item use_bframe_qp
12456 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12457 option may cause flicker since the B-Frames have often larger QP. Default is
12458 @code{0} (not enabled).
12459
12460 @end table
12461
12462 @section gblur
12463
12464 Apply Gaussian blur filter.
12465
12466 The filter accepts the following options:
12467
12468 @table @option
12469 @item sigma
12470 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
12471
12472 @item steps
12473 Set number of steps for Gaussian approximation. Default is @code{1}.
12474
12475 @item planes
12476 Set which planes to filter. By default all planes are filtered.
12477
12478 @item sigmaV
12479 Set vertical sigma, if negative it will be same as @code{sigma}.
12480 Default is @code{-1}.
12481 @end table
12482
12483 @subsection Commands
12484 This filter supports same commands as options.
12485 The command accepts the same syntax of the corresponding option.
12486
12487 If the specified expression is not valid, it is kept at its current
12488 value.
12489
12490 @section geq
12491
12492 Apply generic equation to each pixel.
12493
12494 The filter accepts the following options:
12495
12496 @table @option
12497 @item lum_expr, lum
12498 Set the luminance expression.
12499 @item cb_expr, cb
12500 Set the chrominance blue expression.
12501 @item cr_expr, cr
12502 Set the chrominance red expression.
12503 @item alpha_expr, a
12504 Set the alpha expression.
12505 @item red_expr, r
12506 Set the red expression.
12507 @item green_expr, g
12508 Set the green expression.
12509 @item blue_expr, b
12510 Set the blue expression.
12511 @end table
12512
12513 The colorspace is selected according to the specified options. If one
12514 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
12515 options is specified, the filter will automatically select a YCbCr
12516 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
12517 @option{blue_expr} options is specified, it will select an RGB
12518 colorspace.
12519
12520 If one of the chrominance expression is not defined, it falls back on the other
12521 one. If no alpha expression is specified it will evaluate to opaque value.
12522 If none of chrominance expressions are specified, they will evaluate
12523 to the luminance expression.
12524
12525 The expressions can use the following variables and functions:
12526
12527 @table @option
12528 @item N
12529 The sequential number of the filtered frame, starting from @code{0}.
12530
12531 @item X
12532 @item Y
12533 The coordinates of the current sample.
12534
12535 @item W
12536 @item H
12537 The width and height of the image.
12538
12539 @item SW
12540 @item SH
12541 Width and height scale depending on the currently filtered plane. It is the
12542 ratio between the corresponding luma plane number of pixels and the current
12543 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
12544 @code{0.5,0.5} for chroma planes.
12545
12546 @item T
12547 Time of the current frame, expressed in seconds.
12548
12549 @item p(x, y)
12550 Return the value of the pixel at location (@var{x},@var{y}) of the current
12551 plane.
12552
12553 @item lum(x, y)
12554 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
12555 plane.
12556
12557 @item cb(x, y)
12558 Return the value of the pixel at location (@var{x},@var{y}) of the
12559 blue-difference chroma plane. Return 0 if there is no such plane.
12560
12561 @item cr(x, y)
12562 Return the value of the pixel at location (@var{x},@var{y}) of the
12563 red-difference chroma plane. Return 0 if there is no such plane.
12564
12565 @item r(x, y)
12566 @item g(x, y)
12567 @item b(x, y)
12568 Return the value of the pixel at location (@var{x},@var{y}) of the
12569 red/green/blue component. Return 0 if there is no such component.
12570
12571 @item alpha(x, y)
12572 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
12573 plane. Return 0 if there is no such plane.
12574
12575 @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)
12576 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
12577 sums of samples within a rectangle. See the functions without the sum postfix.
12578
12579 @item interpolation
12580 Set one of interpolation methods:
12581 @table @option
12582 @item nearest, n
12583 @item bilinear, b
12584 @end table
12585 Default is bilinear.
12586 @end table
12587
12588 For functions, if @var{x} and @var{y} are outside the area, the value will be
12589 automatically clipped to the closer edge.
12590
12591 Please note that this filter can use multiple threads in which case each slice
12592 will have its own expression state. If you want to use only a single expression
12593 state because your expressions depend on previous state then you should limit
12594 the number of filter threads to 1.
12595
12596 @subsection Examples
12597
12598 @itemize
12599 @item
12600 Flip the image horizontally:
12601 @example
12602 geq=p(W-X\,Y)
12603 @end example
12604
12605 @item
12606 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12607 wavelength of 100 pixels:
12608 @example
12609 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12610 @end example
12611
12612 @item
12613 Generate a fancy enigmatic moving light:
12614 @example
12615 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
12616 @end example
12617
12618 @item
12619 Generate a quick emboss effect:
12620 @example
12621 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12622 @end example
12623
12624 @item
12625 Modify RGB components depending on pixel position:
12626 @example
12627 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12628 @end example
12629
12630 @item
12631 Create a radial gradient that is the same size as the input (also see
12632 the @ref{vignette} filter):
12633 @example
12634 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12635 @end example
12636 @end itemize
12637
12638 @section gradfun
12639
12640 Fix the banding artifacts that are sometimes introduced into nearly flat
12641 regions by truncation to 8-bit color depth.
12642 Interpolate the gradients that should go where the bands are, and
12643 dither them.
12644
12645 It is designed for playback only.  Do not use it prior to
12646 lossy compression, because compression tends to lose the dither and
12647 bring back the bands.
12648
12649 It accepts the following parameters:
12650
12651 @table @option
12652
12653 @item strength
12654 The maximum amount by which the filter will change any one pixel. This is also
12655 the threshold for detecting nearly flat regions. Acceptable values range from
12656 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12657 valid range.
12658
12659 @item radius
12660 The neighborhood to fit the gradient to. A larger radius makes for smoother
12661 gradients, but also prevents the filter from modifying the pixels near detailed
12662 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12663 values will be clipped to the valid range.
12664
12665 @end table
12666
12667 Alternatively, the options can be specified as a flat string:
12668 @var{strength}[:@var{radius}]
12669
12670 @subsection Examples
12671
12672 @itemize
12673 @item
12674 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12675 @example
12676 gradfun=3.5:8
12677 @end example
12678
12679 @item
12680 Specify radius, omitting the strength (which will fall-back to the default
12681 value):
12682 @example
12683 gradfun=radius=8
12684 @end example
12685
12686 @end itemize
12687
12688 @anchor{graphmonitor}
12689 @section graphmonitor
12690 Show various filtergraph stats.
12691
12692 With this filter one can debug complete filtergraph.
12693 Especially issues with links filling with queued frames.
12694
12695 The filter accepts the following options:
12696
12697 @table @option
12698 @item size, s
12699 Set video output size. Default is @var{hd720}.
12700
12701 @item opacity, o
12702 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12703
12704 @item mode, m
12705 Set output mode, can be @var{fulll} or @var{compact}.
12706 In @var{compact} mode only filters with some queued frames have displayed stats.
12707
12708 @item flags, f
12709 Set flags which enable which stats are shown in video.
12710
12711 Available values for flags are:
12712 @table @samp
12713 @item queue
12714 Display number of queued frames in each link.
12715
12716 @item frame_count_in
12717 Display number of frames taken from filter.
12718
12719 @item frame_count_out
12720 Display number of frames given out from filter.
12721
12722 @item pts
12723 Display current filtered frame pts.
12724
12725 @item time
12726 Display current filtered frame time.
12727
12728 @item timebase
12729 Display time base for filter link.
12730
12731 @item format
12732 Display used format for filter link.
12733
12734 @item size
12735 Display video size or number of audio channels in case of audio used by filter link.
12736
12737 @item rate
12738 Display video frame rate or sample rate in case of audio used by filter link.
12739
12740 @item eof
12741 Display link output status.
12742 @end table
12743
12744 @item rate, r
12745 Set upper limit for video rate of output stream, Default value is @var{25}.
12746 This guarantee that output video frame rate will not be higher than this value.
12747 @end table
12748
12749 @section greyedge
12750 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12751 and corrects the scene colors accordingly.
12752
12753 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12754
12755 The filter accepts the following options:
12756
12757 @table @option
12758 @item difford
12759 The order of differentiation to be applied on the scene. Must be chosen in the range
12760 [0,2] and default value is 1.
12761
12762 @item minknorm
12763 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12764 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12765 max value instead of calculating Minkowski distance.
12766
12767 @item sigma
12768 The standard deviation of Gaussian blur to be applied on the scene. Must be
12769 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12770 can't be equal to 0 if @var{difford} is greater than 0.
12771 @end table
12772
12773 @subsection Examples
12774 @itemize
12775
12776 @item
12777 Grey Edge:
12778 @example
12779 greyedge=difford=1:minknorm=5:sigma=2
12780 @end example
12781
12782 @item
12783 Max Edge:
12784 @example
12785 greyedge=difford=1:minknorm=0:sigma=2
12786 @end example
12787
12788 @end itemize
12789
12790 @anchor{haldclut}
12791 @section haldclut
12792
12793 Apply a Hald CLUT to a video stream.
12794
12795 First input is the video stream to process, and second one is the Hald CLUT.
12796 The Hald CLUT input can be a simple picture or a complete video stream.
12797
12798 The filter accepts the following options:
12799
12800 @table @option
12801 @item shortest
12802 Force termination when the shortest input terminates. Default is @code{0}.
12803 @item repeatlast
12804 Continue applying the last CLUT after the end of the stream. A value of
12805 @code{0} disable the filter after the last frame of the CLUT is reached.
12806 Default is @code{1}.
12807 @end table
12808
12809 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12810 filters share the same internals).
12811
12812 This filter also supports the @ref{framesync} options.
12813
12814 More information about the Hald CLUT can be found on Eskil Steenberg's website
12815 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12816
12817 @subsection Workflow examples
12818
12819 @subsubsection Hald CLUT video stream
12820
12821 Generate an identity Hald CLUT stream altered with various effects:
12822 @example
12823 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
12824 @end example
12825
12826 Note: make sure you use a lossless codec.
12827
12828 Then use it with @code{haldclut} to apply it on some random stream:
12829 @example
12830 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12831 @end example
12832
12833 The Hald CLUT will be applied to the 10 first seconds (duration of
12834 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12835 to the remaining frames of the @code{mandelbrot} stream.
12836
12837 @subsubsection Hald CLUT with preview
12838
12839 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12840 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12841 biggest possible square starting at the top left of the picture. The remaining
12842 padding pixels (bottom or right) will be ignored. This area can be used to add
12843 a preview of the Hald CLUT.
12844
12845 Typically, the following generated Hald CLUT will be supported by the
12846 @code{haldclut} filter:
12847
12848 @example
12849 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12850    pad=iw+320 [padded_clut];
12851    smptebars=s=320x256, split [a][b];
12852    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12853    [main][b] overlay=W-320" -frames:v 1 clut.png
12854 @end example
12855
12856 It contains the original and a preview of the effect of the CLUT: SMPTE color
12857 bars are displayed on the right-top, and below the same color bars processed by
12858 the color changes.
12859
12860 Then, the effect of this Hald CLUT can be visualized with:
12861 @example
12862 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12863 @end example
12864
12865 @section hflip
12866
12867 Flip the input video horizontally.
12868
12869 For example, to horizontally flip the input video with @command{ffmpeg}:
12870 @example
12871 ffmpeg -i in.avi -vf "hflip" out.avi
12872 @end example
12873
12874 @section histeq
12875 This filter applies a global color histogram equalization on a
12876 per-frame basis.
12877
12878 It can be used to correct video that has a compressed range of pixel
12879 intensities.  The filter redistributes the pixel intensities to
12880 equalize their distribution across the intensity range. It may be
12881 viewed as an "automatically adjusting contrast filter". This filter is
12882 useful only for correcting degraded or poorly captured source
12883 video.
12884
12885 The filter accepts the following options:
12886
12887 @table @option
12888 @item strength
12889 Determine the amount of equalization to be applied.  As the strength
12890 is reduced, the distribution of pixel intensities more-and-more
12891 approaches that of the input frame. The value must be a float number
12892 in the range [0,1] and defaults to 0.200.
12893
12894 @item intensity
12895 Set the maximum intensity that can generated and scale the output
12896 values appropriately.  The strength should be set as desired and then
12897 the intensity can be limited if needed to avoid washing-out. The value
12898 must be a float number in the range [0,1] and defaults to 0.210.
12899
12900 @item antibanding
12901 Set the antibanding level. If enabled the filter will randomly vary
12902 the luminance of output pixels by a small amount to avoid banding of
12903 the histogram. Possible values are @code{none}, @code{weak} or
12904 @code{strong}. It defaults to @code{none}.
12905 @end table
12906
12907 @anchor{histogram}
12908 @section histogram
12909
12910 Compute and draw a color distribution histogram for the input video.
12911
12912 The computed histogram is a representation of the color component
12913 distribution in an image.
12914
12915 Standard histogram displays the color components distribution in an image.
12916 Displays color graph for each color component. Shows distribution of
12917 the Y, U, V, A or R, G, B components, depending on input format, in the
12918 current frame. Below each graph a color component scale meter is shown.
12919
12920 The filter accepts the following options:
12921
12922 @table @option
12923 @item level_height
12924 Set height of level. Default value is @code{200}.
12925 Allowed range is [50, 2048].
12926
12927 @item scale_height
12928 Set height of color scale. Default value is @code{12}.
12929 Allowed range is [0, 40].
12930
12931 @item display_mode
12932 Set display mode.
12933 It accepts the following values:
12934 @table @samp
12935 @item stack
12936 Per color component graphs are placed below each other.
12937
12938 @item parade
12939 Per color component graphs are placed side by side.
12940
12941 @item overlay
12942 Presents information identical to that in the @code{parade}, except
12943 that the graphs representing color components are superimposed directly
12944 over one another.
12945 @end table
12946 Default is @code{stack}.
12947
12948 @item levels_mode
12949 Set mode. Can be either @code{linear}, or @code{logarithmic}.
12950 Default is @code{linear}.
12951
12952 @item components
12953 Set what color components to display.
12954 Default is @code{7}.
12955
12956 @item fgopacity
12957 Set foreground opacity. Default is @code{0.7}.
12958
12959 @item bgopacity
12960 Set background opacity. Default is @code{0.5}.
12961 @end table
12962
12963 @subsection Examples
12964
12965 @itemize
12966
12967 @item
12968 Calculate and draw histogram:
12969 @example
12970 ffplay -i input -vf histogram
12971 @end example
12972
12973 @end itemize
12974
12975 @anchor{hqdn3d}
12976 @section hqdn3d
12977
12978 This is a high precision/quality 3d denoise filter. It aims to reduce
12979 image noise, producing smooth images and making still images really
12980 still. It should enhance compressibility.
12981
12982 It accepts the following optional parameters:
12983
12984 @table @option
12985 @item luma_spatial
12986 A non-negative floating point number which specifies spatial luma strength.
12987 It defaults to 4.0.
12988
12989 @item chroma_spatial
12990 A non-negative floating point number which specifies spatial chroma strength.
12991 It defaults to 3.0*@var{luma_spatial}/4.0.
12992
12993 @item luma_tmp
12994 A floating point number which specifies luma temporal strength. It defaults to
12995 6.0*@var{luma_spatial}/4.0.
12996
12997 @item chroma_tmp
12998 A floating point number which specifies chroma temporal strength. It defaults to
12999 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
13000 @end table
13001
13002 @subsection Commands
13003 This filter supports same @ref{commands} as options.
13004 The command accepts the same syntax of the corresponding option.
13005
13006 If the specified expression is not valid, it is kept at its current
13007 value.
13008
13009 @anchor{hwdownload}
13010 @section hwdownload
13011
13012 Download hardware frames to system memory.
13013
13014 The input must be in hardware frames, and the output a non-hardware format.
13015 Not all formats will be supported on the output - it may be necessary to insert
13016 an additional @option{format} filter immediately following in the graph to get
13017 the output in a supported format.
13018
13019 @section hwmap
13020
13021 Map hardware frames to system memory or to another device.
13022
13023 This filter has several different modes of operation; which one is used depends
13024 on the input and output formats:
13025 @itemize
13026 @item
13027 Hardware frame input, normal frame output
13028
13029 Map the input frames to system memory and pass them to the output.  If the
13030 original hardware frame is later required (for example, after overlaying
13031 something else on part of it), the @option{hwmap} filter can be used again
13032 in the next mode to retrieve it.
13033 @item
13034 Normal frame input, hardware frame output
13035
13036 If the input is actually a software-mapped hardware frame, then unmap it -
13037 that is, return the original hardware frame.
13038
13039 Otherwise, a device must be provided.  Create new hardware surfaces on that
13040 device for the output, then map them back to the software format at the input
13041 and give those frames to the preceding filter.  This will then act like the
13042 @option{hwupload} filter, but may be able to avoid an additional copy when
13043 the input is already in a compatible format.
13044 @item
13045 Hardware frame input and output
13046
13047 A device must be supplied for the output, either directly or with the
13048 @option{derive_device} option.  The input and output devices must be of
13049 different types and compatible - the exact meaning of this is
13050 system-dependent, but typically it means that they must refer to the same
13051 underlying hardware context (for example, refer to the same graphics card).
13052
13053 If the input frames were originally created on the output device, then unmap
13054 to retrieve the original frames.
13055
13056 Otherwise, map the frames to the output device - create new hardware frames
13057 on the output corresponding to the frames on the input.
13058 @end itemize
13059
13060 The following additional parameters are accepted:
13061
13062 @table @option
13063 @item mode
13064 Set the frame mapping mode.  Some combination of:
13065 @table @var
13066 @item read
13067 The mapped frame should be readable.
13068 @item write
13069 The mapped frame should be writeable.
13070 @item overwrite
13071 The mapping will always overwrite the entire frame.
13072
13073 This may improve performance in some cases, as the original contents of the
13074 frame need not be loaded.
13075 @item direct
13076 The mapping must not involve any copying.
13077
13078 Indirect mappings to copies of frames are created in some cases where either
13079 direct mapping is not possible or it would have unexpected properties.
13080 Setting this flag ensures that the mapping is direct and will fail if that is
13081 not possible.
13082 @end table
13083 Defaults to @var{read+write} if not specified.
13084
13085 @item derive_device @var{type}
13086 Rather than using the device supplied at initialisation, instead derive a new
13087 device of type @var{type} from the device the input frames exist on.
13088
13089 @item reverse
13090 In a hardware to hardware mapping, map in reverse - create frames in the sink
13091 and map them back to the source.  This may be necessary in some cases where
13092 a mapping in one direction is required but only the opposite direction is
13093 supported by the devices being used.
13094
13095 This option is dangerous - it may break the preceding filter in undefined
13096 ways if there are any additional constraints on that filter's output.
13097 Do not use it without fully understanding the implications of its use.
13098 @end table
13099
13100 @anchor{hwupload}
13101 @section hwupload
13102
13103 Upload system memory frames to hardware surfaces.
13104
13105 The device to upload to must be supplied when the filter is initialised.  If
13106 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
13107 option or with the @option{derive_device} option.  The input and output devices
13108 must be of different types and compatible - the exact meaning of this is
13109 system-dependent, but typically it means that they must refer to the same
13110 underlying hardware context (for example, refer to the same graphics card).
13111
13112 The following additional parameters are accepted:
13113
13114 @table @option
13115 @item derive_device @var{type}
13116 Rather than using the device supplied at initialisation, instead derive a new
13117 device of type @var{type} from the device the input frames exist on.
13118 @end table
13119
13120 @anchor{hwupload_cuda}
13121 @section hwupload_cuda
13122
13123 Upload system memory frames to a CUDA device.
13124
13125 It accepts the following optional parameters:
13126
13127 @table @option
13128 @item device
13129 The number of the CUDA device to use
13130 @end table
13131
13132 @section hqx
13133
13134 Apply a high-quality magnification filter designed for pixel art. This filter
13135 was originally created by Maxim Stepin.
13136
13137 It accepts the following option:
13138
13139 @table @option
13140 @item n
13141 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
13142 @code{hq3x} and @code{4} for @code{hq4x}.
13143 Default is @code{3}.
13144 @end table
13145
13146 @section hstack
13147 Stack input videos horizontally.
13148
13149 All streams must be of same pixel format and of same height.
13150
13151 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13152 to create same output.
13153
13154 The filter accepts the following option:
13155
13156 @table @option
13157 @item inputs
13158 Set number of input streams. Default is 2.
13159
13160 @item shortest
13161 If set to 1, force the output to terminate when the shortest input
13162 terminates. Default value is 0.
13163 @end table
13164
13165 @section hue
13166
13167 Modify the hue and/or the saturation of the input.
13168
13169 It accepts the following parameters:
13170
13171 @table @option
13172 @item h
13173 Specify the hue angle as a number of degrees. It accepts an expression,
13174 and defaults to "0".
13175
13176 @item s
13177 Specify the saturation in the [-10,10] range. It accepts an expression and
13178 defaults to "1".
13179
13180 @item H
13181 Specify the hue angle as a number of radians. It accepts an
13182 expression, and defaults to "0".
13183
13184 @item b
13185 Specify the brightness in the [-10,10] range. It accepts an expression and
13186 defaults to "0".
13187 @end table
13188
13189 @option{h} and @option{H} are mutually exclusive, and can't be
13190 specified at the same time.
13191
13192 The @option{b}, @option{h}, @option{H} and @option{s} option values are
13193 expressions containing the following constants:
13194
13195 @table @option
13196 @item n
13197 frame count of the input frame starting from 0
13198
13199 @item pts
13200 presentation timestamp of the input frame expressed in time base units
13201
13202 @item r
13203 frame rate of the input video, NAN if the input frame rate is unknown
13204
13205 @item t
13206 timestamp expressed in seconds, NAN if the input timestamp is unknown
13207
13208 @item tb
13209 time base of the input video
13210 @end table
13211
13212 @subsection Examples
13213
13214 @itemize
13215 @item
13216 Set the hue to 90 degrees and the saturation to 1.0:
13217 @example
13218 hue=h=90:s=1
13219 @end example
13220
13221 @item
13222 Same command but expressing the hue in radians:
13223 @example
13224 hue=H=PI/2:s=1
13225 @end example
13226
13227 @item
13228 Rotate hue and make the saturation swing between 0
13229 and 2 over a period of 1 second:
13230 @example
13231 hue="H=2*PI*t: s=sin(2*PI*t)+1"
13232 @end example
13233
13234 @item
13235 Apply a 3 seconds saturation fade-in effect starting at 0:
13236 @example
13237 hue="s=min(t/3\,1)"
13238 @end example
13239
13240 The general fade-in expression can be written as:
13241 @example
13242 hue="s=min(0\, max((t-START)/DURATION\, 1))"
13243 @end example
13244
13245 @item
13246 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
13247 @example
13248 hue="s=max(0\, min(1\, (8-t)/3))"
13249 @end example
13250
13251 The general fade-out expression can be written as:
13252 @example
13253 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
13254 @end example
13255
13256 @end itemize
13257
13258 @subsection Commands
13259
13260 This filter supports the following commands:
13261 @table @option
13262 @item b
13263 @item s
13264 @item h
13265 @item H
13266 Modify the hue and/or the saturation and/or brightness of the input video.
13267 The command accepts the same syntax of the corresponding option.
13268
13269 If the specified expression is not valid, it is kept at its current
13270 value.
13271 @end table
13272
13273 @section hysteresis
13274
13275 Grow first stream into second stream by connecting components.
13276 This makes it possible to build more robust edge masks.
13277
13278 This filter accepts the following options:
13279
13280 @table @option
13281 @item planes
13282 Set which planes will be processed as bitmap, unprocessed planes will be
13283 copied from first stream.
13284 By default value 0xf, all planes will be processed.
13285
13286 @item threshold
13287 Set threshold which is used in filtering. If pixel component value is higher than
13288 this value filter algorithm for connecting components is activated.
13289 By default value is 0.
13290 @end table
13291
13292 The @code{hysteresis} filter also supports the @ref{framesync} options.
13293
13294 @section idet
13295
13296 Detect video interlacing type.
13297
13298 This filter tries to detect if the input frames are interlaced, progressive,
13299 top or bottom field first. It will also try to detect fields that are
13300 repeated between adjacent frames (a sign of telecine).
13301
13302 Single frame detection considers only immediately adjacent frames when classifying each frame.
13303 Multiple frame detection incorporates the classification history of previous frames.
13304
13305 The filter will log these metadata values:
13306
13307 @table @option
13308 @item single.current_frame
13309 Detected type of current frame using single-frame detection. One of:
13310 ``tff'' (top field first), ``bff'' (bottom field first),
13311 ``progressive'', or ``undetermined''
13312
13313 @item single.tff
13314 Cumulative number of frames detected as top field first using single-frame detection.
13315
13316 @item multiple.tff
13317 Cumulative number of frames detected as top field first using multiple-frame detection.
13318
13319 @item single.bff
13320 Cumulative number of frames detected as bottom field first using single-frame detection.
13321
13322 @item multiple.current_frame
13323 Detected type of current frame using multiple-frame detection. One of:
13324 ``tff'' (top field first), ``bff'' (bottom field first),
13325 ``progressive'', or ``undetermined''
13326
13327 @item multiple.bff
13328 Cumulative number of frames detected as bottom field first using multiple-frame detection.
13329
13330 @item single.progressive
13331 Cumulative number of frames detected as progressive using single-frame detection.
13332
13333 @item multiple.progressive
13334 Cumulative number of frames detected as progressive using multiple-frame detection.
13335
13336 @item single.undetermined
13337 Cumulative number of frames that could not be classified using single-frame detection.
13338
13339 @item multiple.undetermined
13340 Cumulative number of frames that could not be classified using multiple-frame detection.
13341
13342 @item repeated.current_frame
13343 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
13344
13345 @item repeated.neither
13346 Cumulative number of frames with no repeated field.
13347
13348 @item repeated.top
13349 Cumulative number of frames with the top field repeated from the previous frame's top field.
13350
13351 @item repeated.bottom
13352 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
13353 @end table
13354
13355 The filter accepts the following options:
13356
13357 @table @option
13358 @item intl_thres
13359 Set interlacing threshold.
13360 @item prog_thres
13361 Set progressive threshold.
13362 @item rep_thres
13363 Threshold for repeated field detection.
13364 @item half_life
13365 Number of frames after which a given frame's contribution to the
13366 statistics is halved (i.e., it contributes only 0.5 to its
13367 classification). The default of 0 means that all frames seen are given
13368 full weight of 1.0 forever.
13369 @item analyze_interlaced_flag
13370 When this is not 0 then idet will use the specified number of frames to determine
13371 if the interlaced flag is accurate, it will not count undetermined frames.
13372 If the flag is found to be accurate it will be used without any further
13373 computations, if it is found to be inaccurate it will be cleared without any
13374 further computations. This allows inserting the idet filter as a low computational
13375 method to clean up the interlaced flag
13376 @end table
13377
13378 @section il
13379
13380 Deinterleave or interleave fields.
13381
13382 This filter allows one to process interlaced images fields without
13383 deinterlacing them. Deinterleaving splits the input frame into 2
13384 fields (so called half pictures). Odd lines are moved to the top
13385 half of the output image, even lines to the bottom half.
13386 You can process (filter) them independently and then re-interleave them.
13387
13388 The filter accepts the following options:
13389
13390 @table @option
13391 @item luma_mode, l
13392 @item chroma_mode, c
13393 @item alpha_mode, a
13394 Available values for @var{luma_mode}, @var{chroma_mode} and
13395 @var{alpha_mode} are:
13396
13397 @table @samp
13398 @item none
13399 Do nothing.
13400
13401 @item deinterleave, d
13402 Deinterleave fields, placing one above the other.
13403
13404 @item interleave, i
13405 Interleave fields. Reverse the effect of deinterleaving.
13406 @end table
13407 Default value is @code{none}.
13408
13409 @item luma_swap, ls
13410 @item chroma_swap, cs
13411 @item alpha_swap, as
13412 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
13413 @end table
13414
13415 @subsection Commands
13416
13417 This filter supports the all above options as @ref{commands}.
13418
13419 @section inflate
13420
13421 Apply inflate effect to the video.
13422
13423 This filter replaces the pixel by the local(3x3) average by taking into account
13424 only values higher than the pixel.
13425
13426 It accepts the following options:
13427
13428 @table @option
13429 @item threshold0
13430 @item threshold1
13431 @item threshold2
13432 @item threshold3
13433 Limit the maximum change for each plane, default is 65535.
13434 If 0, plane will remain unchanged.
13435 @end table
13436
13437 @subsection Commands
13438
13439 This filter supports the all above options as @ref{commands}.
13440
13441 @section interlace
13442
13443 Simple interlacing filter from progressive contents. This interleaves upper (or
13444 lower) lines from odd frames with lower (or upper) lines from even frames,
13445 halving the frame rate and preserving image height.
13446
13447 @example
13448    Original        Original             New Frame
13449    Frame 'j'      Frame 'j+1'             (tff)
13450   ==========      ===========       ==================
13451     Line 0  -------------------->    Frame 'j' Line 0
13452     Line 1          Line 1  ---->   Frame 'j+1' Line 1
13453     Line 2 --------------------->    Frame 'j' Line 2
13454     Line 3          Line 3  ---->   Frame 'j+1' Line 3
13455      ...             ...                   ...
13456 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
13457 @end example
13458
13459 It accepts the following optional parameters:
13460
13461 @table @option
13462 @item scan
13463 This determines whether the interlaced frame is taken from the even
13464 (tff - default) or odd (bff) lines of the progressive frame.
13465
13466 @item lowpass
13467 Vertical lowpass filter to avoid twitter interlacing and
13468 reduce moire patterns.
13469
13470 @table @samp
13471 @item 0, off
13472 Disable vertical lowpass filter
13473
13474 @item 1, linear
13475 Enable linear filter (default)
13476
13477 @item 2, complex
13478 Enable complex filter. This will slightly less reduce twitter and moire
13479 but better retain detail and subjective sharpness impression.
13480
13481 @end table
13482 @end table
13483
13484 @section kerndeint
13485
13486 Deinterlace input video by applying Donald Graft's adaptive kernel
13487 deinterling. Work on interlaced parts of a video to produce
13488 progressive frames.
13489
13490 The description of the accepted parameters follows.
13491
13492 @table @option
13493 @item thresh
13494 Set the threshold which affects the filter's tolerance when
13495 determining if a pixel line must be processed. It must be an integer
13496 in the range [0,255] and defaults to 10. A value of 0 will result in
13497 applying the process on every pixels.
13498
13499 @item map
13500 Paint pixels exceeding the threshold value to white if set to 1.
13501 Default is 0.
13502
13503 @item order
13504 Set the fields order. Swap fields if set to 1, leave fields alone if
13505 0. Default is 0.
13506
13507 @item sharp
13508 Enable additional sharpening if set to 1. Default is 0.
13509
13510 @item twoway
13511 Enable twoway sharpening if set to 1. Default is 0.
13512 @end table
13513
13514 @subsection Examples
13515
13516 @itemize
13517 @item
13518 Apply default values:
13519 @example
13520 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
13521 @end example
13522
13523 @item
13524 Enable additional sharpening:
13525 @example
13526 kerndeint=sharp=1
13527 @end example
13528
13529 @item
13530 Paint processed pixels in white:
13531 @example
13532 kerndeint=map=1
13533 @end example
13534 @end itemize
13535
13536 @section kirsch
13537 Apply kirsch operator to input video stream.
13538
13539 The filter accepts the following option:
13540
13541 @table @option
13542 @item planes
13543 Set which planes will be processed, unprocessed planes will be copied.
13544 By default value 0xf, all planes will be processed.
13545
13546 @item scale
13547 Set value which will be multiplied with filtered result.
13548
13549 @item delta
13550 Set value which will be added to filtered result.
13551 @end table
13552
13553 @subsection Commands
13554
13555 This filter supports the all above options as @ref{commands}.
13556
13557 @section lagfun
13558
13559 Slowly update darker pixels.
13560
13561 This filter makes short flashes of light appear longer.
13562 This filter accepts the following options:
13563
13564 @table @option
13565 @item decay
13566 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
13567
13568 @item planes
13569 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
13570 @end table
13571
13572 @subsection Commands
13573
13574 This filter supports the all above options as @ref{commands}.
13575
13576 @section lenscorrection
13577
13578 Correct radial lens distortion
13579
13580 This filter can be used to correct for radial distortion as can result from the use
13581 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
13582 one can use tools available for example as part of opencv or simply trial-and-error.
13583 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
13584 and extract the k1 and k2 coefficients from the resulting matrix.
13585
13586 Note that effectively the same filter is available in the open-source tools Krita and
13587 Digikam from the KDE project.
13588
13589 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
13590 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
13591 brightness distribution, so you may want to use both filters together in certain
13592 cases, though you will have to take care of ordering, i.e. whether vignetting should
13593 be applied before or after lens correction.
13594
13595 @subsection Options
13596
13597 The filter accepts the following options:
13598
13599 @table @option
13600 @item cx
13601 Relative x-coordinate of the focal point of the image, and thereby the center of the
13602 distortion. This value has a range [0,1] and is expressed as fractions of the image
13603 width. Default is 0.5.
13604 @item cy
13605 Relative y-coordinate of the focal point of the image, and thereby the center of the
13606 distortion. This value has a range [0,1] and is expressed as fractions of the image
13607 height. Default is 0.5.
13608 @item k1
13609 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
13610 no correction. Default is 0.
13611 @item k2
13612 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13613 0 means no correction. Default is 0.
13614 @item i
13615 Set interpolation type. Can be @code{nearest} or @code{bilinear}.
13616 Default is @code{nearest}.
13617 @item fc
13618 Specify the color of the unmapped pixels. For the syntax of this option,
13619 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
13620 manual,ffmpeg-utils}. Default color is @code{black@@0}.
13621 @end table
13622
13623 The formula that generates the correction is:
13624
13625 @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)
13626
13627 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13628 distances from the focal point in the source and target images, respectively.
13629
13630 @subsection Commands
13631
13632 This filter supports the all above options as @ref{commands}.
13633
13634 @section lensfun
13635
13636 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13637
13638 The @code{lensfun} filter requires the camera make, camera model, and lens model
13639 to apply the lens correction. The filter will load the lensfun database and
13640 query it to find the corresponding camera and lens entries in the database. As
13641 long as these entries can be found with the given options, the filter can
13642 perform corrections on frames. Note that incomplete strings will result in the
13643 filter choosing the best match with the given options, and the filter will
13644 output the chosen camera and lens models (logged with level "info"). You must
13645 provide the make, camera model, and lens model as they are required.
13646
13647 The filter accepts the following options:
13648
13649 @table @option
13650 @item make
13651 The make of the camera (for example, "Canon"). This option is required.
13652
13653 @item model
13654 The model of the camera (for example, "Canon EOS 100D"). This option is
13655 required.
13656
13657 @item lens_model
13658 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13659 option is required.
13660
13661 @item mode
13662 The type of correction to apply. The following values are valid options:
13663
13664 @table @samp
13665 @item vignetting
13666 Enables fixing lens vignetting.
13667
13668 @item geometry
13669 Enables fixing lens geometry. This is the default.
13670
13671 @item subpixel
13672 Enables fixing chromatic aberrations.
13673
13674 @item vig_geo
13675 Enables fixing lens vignetting and lens geometry.
13676
13677 @item vig_subpixel
13678 Enables fixing lens vignetting and chromatic aberrations.
13679
13680 @item distortion
13681 Enables fixing both lens geometry and chromatic aberrations.
13682
13683 @item all
13684 Enables all possible corrections.
13685
13686 @end table
13687 @item focal_length
13688 The focal length of the image/video (zoom; expected constant for video). For
13689 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13690 range should be chosen when using that lens. Default 18.
13691
13692 @item aperture
13693 The aperture of the image/video (expected constant for video). Note that
13694 aperture is only used for vignetting correction. Default 3.5.
13695
13696 @item focus_distance
13697 The focus distance of the image/video (expected constant for video). Note that
13698 focus distance is only used for vignetting and only slightly affects the
13699 vignetting correction process. If unknown, leave it at the default value (which
13700 is 1000).
13701
13702 @item scale
13703 The scale factor which is applied after transformation. After correction the
13704 video is no longer necessarily rectangular. This parameter controls how much of
13705 the resulting image is visible. The value 0 means that a value will be chosen
13706 automatically such that there is little or no unmapped area in the output
13707 image. 1.0 means that no additional scaling is done. Lower values may result
13708 in more of the corrected image being visible, while higher values may avoid
13709 unmapped areas in the output.
13710
13711 @item target_geometry
13712 The target geometry of the output image/video. The following values are valid
13713 options:
13714
13715 @table @samp
13716 @item rectilinear (default)
13717 @item fisheye
13718 @item panoramic
13719 @item equirectangular
13720 @item fisheye_orthographic
13721 @item fisheye_stereographic
13722 @item fisheye_equisolid
13723 @item fisheye_thoby
13724 @end table
13725 @item reverse
13726 Apply the reverse of image correction (instead of correcting distortion, apply
13727 it).
13728
13729 @item interpolation
13730 The type of interpolation used when correcting distortion. The following values
13731 are valid options:
13732
13733 @table @samp
13734 @item nearest
13735 @item linear (default)
13736 @item lanczos
13737 @end table
13738 @end table
13739
13740 @subsection Examples
13741
13742 @itemize
13743 @item
13744 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13745 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13746 aperture of "8.0".
13747
13748 @example
13749 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
13750 @end example
13751
13752 @item
13753 Apply the same as before, but only for the first 5 seconds of video.
13754
13755 @example
13756 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
13757 @end example
13758
13759 @end itemize
13760
13761 @section libvmaf
13762
13763 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13764 score between two input videos.
13765
13766 The obtained VMAF score is printed through the logging system.
13767
13768 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13769 After installing the library it can be enabled using:
13770 @code{./configure --enable-libvmaf}.
13771 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13772
13773 The filter has following options:
13774
13775 @table @option
13776 @item model_path
13777 Set the model path which is to be used for SVM.
13778 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13779
13780 @item log_path
13781 Set the file path to be used to store logs.
13782
13783 @item log_fmt
13784 Set the format of the log file (csv, json or xml).
13785
13786 @item enable_transform
13787 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13788 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13789 Default value: @code{false}
13790
13791 @item phone_model
13792 Invokes the phone model which will generate VMAF scores higher than in the
13793 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13794 Default value: @code{false}
13795
13796 @item psnr
13797 Enables computing psnr along with vmaf.
13798 Default value: @code{false}
13799
13800 @item ssim
13801 Enables computing ssim along with vmaf.
13802 Default value: @code{false}
13803
13804 @item ms_ssim
13805 Enables computing ms_ssim along with vmaf.
13806 Default value: @code{false}
13807
13808 @item pool
13809 Set the pool method to be used for computing vmaf.
13810 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13811
13812 @item n_threads
13813 Set number of threads to be used when computing vmaf.
13814 Default value: @code{0}, which makes use of all available logical processors.
13815
13816 @item n_subsample
13817 Set interval for frame subsampling used when computing vmaf.
13818 Default value: @code{1}
13819
13820 @item enable_conf_interval
13821 Enables confidence interval.
13822 Default value: @code{false}
13823 @end table
13824
13825 This filter also supports the @ref{framesync} options.
13826
13827 @subsection Examples
13828 @itemize
13829 @item
13830 On the below examples the input file @file{main.mpg} being processed is
13831 compared with the reference file @file{ref.mpg}.
13832
13833 @example
13834 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13835 @end example
13836
13837 @item
13838 Example with options:
13839 @example
13840 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13841 @end example
13842
13843 @item
13844 Example with options and different containers:
13845 @example
13846 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 -
13847 @end example
13848 @end itemize
13849
13850 @section limiter
13851
13852 Limits the pixel components values to the specified range [min, max].
13853
13854 The filter accepts the following options:
13855
13856 @table @option
13857 @item min
13858 Lower bound. Defaults to the lowest allowed value for the input.
13859
13860 @item max
13861 Upper bound. Defaults to the highest allowed value for the input.
13862
13863 @item planes
13864 Specify which planes will be processed. Defaults to all available.
13865 @end table
13866
13867 @subsection Commands
13868
13869 This filter supports the all above options as @ref{commands}.
13870
13871 @section loop
13872
13873 Loop video frames.
13874
13875 The filter accepts the following options:
13876
13877 @table @option
13878 @item loop
13879 Set the number of loops. Setting this value to -1 will result in infinite loops.
13880 Default is 0.
13881
13882 @item size
13883 Set maximal size in number of frames. Default is 0.
13884
13885 @item start
13886 Set first frame of loop. Default is 0.
13887 @end table
13888
13889 @subsection Examples
13890
13891 @itemize
13892 @item
13893 Loop single first frame infinitely:
13894 @example
13895 loop=loop=-1:size=1:start=0
13896 @end example
13897
13898 @item
13899 Loop single first frame 10 times:
13900 @example
13901 loop=loop=10:size=1:start=0
13902 @end example
13903
13904 @item
13905 Loop 10 first frames 5 times:
13906 @example
13907 loop=loop=5:size=10:start=0
13908 @end example
13909 @end itemize
13910
13911 @section lut1d
13912
13913 Apply a 1D LUT to an input video.
13914
13915 The filter accepts the following options:
13916
13917 @table @option
13918 @item file
13919 Set the 1D LUT file name.
13920
13921 Currently supported formats:
13922 @table @samp
13923 @item cube
13924 Iridas
13925 @item csp
13926 cineSpace
13927 @end table
13928
13929 @item interp
13930 Select interpolation mode.
13931
13932 Available values are:
13933
13934 @table @samp
13935 @item nearest
13936 Use values from the nearest defined point.
13937 @item linear
13938 Interpolate values using the linear interpolation.
13939 @item cosine
13940 Interpolate values using the cosine interpolation.
13941 @item cubic
13942 Interpolate values using the cubic interpolation.
13943 @item spline
13944 Interpolate values using the spline interpolation.
13945 @end table
13946 @end table
13947
13948 @subsection Commands
13949
13950 This filter supports the all above options as @ref{commands}.
13951
13952 @anchor{lut3d}
13953 @section lut3d
13954
13955 Apply a 3D LUT to an input video.
13956
13957 The filter accepts the following options:
13958
13959 @table @option
13960 @item file
13961 Set the 3D LUT file name.
13962
13963 Currently supported formats:
13964 @table @samp
13965 @item 3dl
13966 AfterEffects
13967 @item cube
13968 Iridas
13969 @item dat
13970 DaVinci
13971 @item m3d
13972 Pandora
13973 @item csp
13974 cineSpace
13975 @end table
13976 @item interp
13977 Select interpolation mode.
13978
13979 Available values are:
13980
13981 @table @samp
13982 @item nearest
13983 Use values from the nearest defined point.
13984 @item trilinear
13985 Interpolate values using the 8 points defining a cube.
13986 @item tetrahedral
13987 Interpolate values using a tetrahedron.
13988 @item pyramid
13989 Interpolate values using a pyramid.
13990 @item prism
13991 Interpolate values using a prism.
13992 @end table
13993 @end table
13994
13995 @section lumakey
13996
13997 Turn certain luma values into transparency.
13998
13999 The filter accepts the following options:
14000
14001 @table @option
14002 @item threshold
14003 Set the luma which will be used as base for transparency.
14004 Default value is @code{0}.
14005
14006 @item tolerance
14007 Set the range of luma values to be keyed out.
14008 Default value is @code{0.01}.
14009
14010 @item softness
14011 Set the range of softness. Default value is @code{0}.
14012 Use this to control gradual transition from zero to full transparency.
14013 @end table
14014
14015 @subsection Commands
14016 This filter supports same @ref{commands} as options.
14017 The command accepts the same syntax of the corresponding option.
14018
14019 If the specified expression is not valid, it is kept at its current
14020 value.
14021
14022 @section lut, lutrgb, lutyuv
14023
14024 Compute a look-up table for binding each pixel component input value
14025 to an output value, and apply it to the input video.
14026
14027 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
14028 to an RGB input video.
14029
14030 These filters accept the following parameters:
14031 @table @option
14032 @item c0
14033 set first pixel component expression
14034 @item c1
14035 set second pixel component expression
14036 @item c2
14037 set third pixel component expression
14038 @item c3
14039 set fourth pixel component expression, corresponds to the alpha component
14040
14041 @item r
14042 set red component expression
14043 @item g
14044 set green component expression
14045 @item b
14046 set blue component expression
14047 @item a
14048 alpha component expression
14049
14050 @item y
14051 set Y/luminance component expression
14052 @item u
14053 set U/Cb component expression
14054 @item v
14055 set V/Cr component expression
14056 @end table
14057
14058 Each of them specifies the expression to use for computing the lookup table for
14059 the corresponding pixel component values.
14060
14061 The exact component associated to each of the @var{c*} options depends on the
14062 format in input.
14063
14064 The @var{lut} filter requires either YUV or RGB pixel formats in input,
14065 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
14066
14067 The expressions can contain the following constants and functions:
14068
14069 @table @option
14070 @item w
14071 @item h
14072 The input width and height.
14073
14074 @item val
14075 The input value for the pixel component.
14076
14077 @item clipval
14078 The input value, clipped to the @var{minval}-@var{maxval} range.
14079
14080 @item maxval
14081 The maximum value for the pixel component.
14082
14083 @item minval
14084 The minimum value for the pixel component.
14085
14086 @item negval
14087 The negated value for the pixel component value, clipped to the
14088 @var{minval}-@var{maxval} range; it corresponds to the expression
14089 "maxval-clipval+minval".
14090
14091 @item clip(val)
14092 The computed value in @var{val}, clipped to the
14093 @var{minval}-@var{maxval} range.
14094
14095 @item gammaval(gamma)
14096 The computed gamma correction value of the pixel component value,
14097 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
14098 expression
14099 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
14100
14101 @end table
14102
14103 All expressions default to "val".
14104
14105 @subsection Examples
14106
14107 @itemize
14108 @item
14109 Negate input video:
14110 @example
14111 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
14112 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
14113 @end example
14114
14115 The above is the same as:
14116 @example
14117 lutrgb="r=negval:g=negval:b=negval"
14118 lutyuv="y=negval:u=negval:v=negval"
14119 @end example
14120
14121 @item
14122 Negate luminance:
14123 @example
14124 lutyuv=y=negval
14125 @end example
14126
14127 @item
14128 Remove chroma components, turning the video into a graytone image:
14129 @example
14130 lutyuv="u=128:v=128"
14131 @end example
14132
14133 @item
14134 Apply a luma burning effect:
14135 @example
14136 lutyuv="y=2*val"
14137 @end example
14138
14139 @item
14140 Remove green and blue components:
14141 @example
14142 lutrgb="g=0:b=0"
14143 @end example
14144
14145 @item
14146 Set a constant alpha channel value on input:
14147 @example
14148 format=rgba,lutrgb=a="maxval-minval/2"
14149 @end example
14150
14151 @item
14152 Correct luminance gamma by a factor of 0.5:
14153 @example
14154 lutyuv=y=gammaval(0.5)
14155 @end example
14156
14157 @item
14158 Discard least significant bits of luma:
14159 @example
14160 lutyuv=y='bitand(val, 128+64+32)'
14161 @end example
14162
14163 @item
14164 Technicolor like effect:
14165 @example
14166 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
14167 @end example
14168 @end itemize
14169
14170 @section lut2, tlut2
14171
14172 The @code{lut2} filter takes two input streams and outputs one
14173 stream.
14174
14175 The @code{tlut2} (time lut2) filter takes two consecutive frames
14176 from one single stream.
14177
14178 This filter accepts the following parameters:
14179 @table @option
14180 @item c0
14181 set first pixel component expression
14182 @item c1
14183 set second pixel component expression
14184 @item c2
14185 set third pixel component expression
14186 @item c3
14187 set fourth pixel component expression, corresponds to the alpha component
14188
14189 @item d
14190 set output bit depth, only available for @code{lut2} filter. By default is 0,
14191 which means bit depth is automatically picked from first input format.
14192 @end table
14193
14194 The @code{lut2} filter also supports the @ref{framesync} options.
14195
14196 Each of them specifies the expression to use for computing the lookup table for
14197 the corresponding pixel component values.
14198
14199 The exact component associated to each of the @var{c*} options depends on the
14200 format in inputs.
14201
14202 The expressions can contain the following constants:
14203
14204 @table @option
14205 @item w
14206 @item h
14207 The input width and height.
14208
14209 @item x
14210 The first input value for the pixel component.
14211
14212 @item y
14213 The second input value for the pixel component.
14214
14215 @item bdx
14216 The first input video bit depth.
14217
14218 @item bdy
14219 The second input video bit depth.
14220 @end table
14221
14222 All expressions default to "x".
14223
14224 @subsection Examples
14225
14226 @itemize
14227 @item
14228 Highlight differences between two RGB video streams:
14229 @example
14230 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)'
14231 @end example
14232
14233 @item
14234 Highlight differences between two YUV video streams:
14235 @example
14236 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)'
14237 @end example
14238
14239 @item
14240 Show max difference between two video streams:
14241 @example
14242 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)))'
14243 @end example
14244 @end itemize
14245
14246 @section maskedclamp
14247
14248 Clamp the first input stream with the second input and third input stream.
14249
14250 Returns the value of first stream to be between second input
14251 stream - @code{undershoot} and third input stream + @code{overshoot}.
14252
14253 This filter accepts the following options:
14254 @table @option
14255 @item undershoot
14256 Default value is @code{0}.
14257
14258 @item overshoot
14259 Default value is @code{0}.
14260
14261 @item planes
14262 Set which planes will be processed as bitmap, unprocessed planes will be
14263 copied from first stream.
14264 By default value 0xf, all planes will be processed.
14265 @end table
14266
14267 @subsection Commands
14268
14269 This filter supports the all above options as @ref{commands}.
14270
14271 @section maskedmax
14272
14273 Merge the second and third input stream into output stream using absolute differences
14274 between second input stream and first input stream and absolute difference between
14275 third input stream and first input stream. The picked value will be from second input
14276 stream if second absolute difference is greater than first one or from third input stream
14277 otherwise.
14278
14279 This filter accepts the following options:
14280 @table @option
14281 @item planes
14282 Set which planes will be processed as bitmap, unprocessed planes will be
14283 copied from first stream.
14284 By default value 0xf, all planes will be processed.
14285 @end table
14286
14287 @subsection Commands
14288
14289 This filter supports the all above options as @ref{commands}.
14290
14291 @section maskedmerge
14292
14293 Merge the first input stream with the second input stream using per pixel
14294 weights in the third input stream.
14295
14296 A value of 0 in the third stream pixel component means that pixel component
14297 from first stream is returned unchanged, while maximum value (eg. 255 for
14298 8-bit videos) means that pixel component from second stream is returned
14299 unchanged. Intermediate values define the amount of merging between both
14300 input stream's pixel components.
14301
14302 This filter accepts the following options:
14303 @table @option
14304 @item planes
14305 Set which planes will be processed as bitmap, unprocessed planes will be
14306 copied from first stream.
14307 By default value 0xf, all planes will be processed.
14308 @end table
14309
14310 @subsection Commands
14311
14312 This filter supports the all above options as @ref{commands}.
14313
14314 @section maskedmin
14315
14316 Merge the second and third input stream into output stream using absolute differences
14317 between second input stream and first input stream and absolute difference between
14318 third input stream and first input stream. The picked value will be from second input
14319 stream if second absolute difference is less than first one or from third input stream
14320 otherwise.
14321
14322 This filter accepts the following options:
14323 @table @option
14324 @item planes
14325 Set which planes will be processed as bitmap, unprocessed planes will be
14326 copied from first stream.
14327 By default value 0xf, all planes will be processed.
14328 @end table
14329
14330 @subsection Commands
14331
14332 This filter supports the all above options as @ref{commands}.
14333
14334 @section maskedthreshold
14335 Pick pixels comparing absolute difference of two video streams with fixed
14336 threshold.
14337
14338 If absolute difference between pixel component of first and second video
14339 stream is equal or lower than user supplied threshold than pixel component
14340 from first video stream is picked, otherwise pixel component from second
14341 video stream is picked.
14342
14343 This filter accepts the following options:
14344 @table @option
14345 @item threshold
14346 Set threshold used when picking pixels from absolute difference from two input
14347 video streams.
14348
14349 @item planes
14350 Set which planes will be processed as bitmap, unprocessed planes will be
14351 copied from second stream.
14352 By default value 0xf, all planes will be processed.
14353 @end table
14354
14355 @subsection Commands
14356
14357 This filter supports the all above options as @ref{commands}.
14358
14359 @section maskfun
14360 Create mask from input video.
14361
14362 For example it is useful to create motion masks after @code{tblend} filter.
14363
14364 This filter accepts the following options:
14365
14366 @table @option
14367 @item low
14368 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
14369
14370 @item high
14371 Set high threshold. Any pixel component higher than this value will be set to max value
14372 allowed for current pixel format.
14373
14374 @item planes
14375 Set planes to filter, by default all available planes are filtered.
14376
14377 @item fill
14378 Fill all frame pixels with this value.
14379
14380 @item sum
14381 Set max average pixel value for frame. If sum of all pixel components is higher that this
14382 average, output frame will be completely filled with value set by @var{fill} option.
14383 Typically useful for scene changes when used in combination with @code{tblend} filter.
14384 @end table
14385
14386 @section mcdeint
14387
14388 Apply motion-compensation deinterlacing.
14389
14390 It needs one field per frame as input and must thus be used together
14391 with yadif=1/3 or equivalent.
14392
14393 This filter accepts the following options:
14394 @table @option
14395 @item mode
14396 Set the deinterlacing mode.
14397
14398 It accepts one of the following values:
14399 @table @samp
14400 @item fast
14401 @item medium
14402 @item slow
14403 use iterative motion estimation
14404 @item extra_slow
14405 like @samp{slow}, but use multiple reference frames.
14406 @end table
14407 Default value is @samp{fast}.
14408
14409 @item parity
14410 Set the picture field parity assumed for the input video. It must be
14411 one of the following values:
14412
14413 @table @samp
14414 @item 0, tff
14415 assume top field first
14416 @item 1, bff
14417 assume bottom field first
14418 @end table
14419
14420 Default value is @samp{bff}.
14421
14422 @item qp
14423 Set per-block quantization parameter (QP) used by the internal
14424 encoder.
14425
14426 Higher values should result in a smoother motion vector field but less
14427 optimal individual vectors. Default value is 1.
14428 @end table
14429
14430 @section median
14431
14432 Pick median pixel from certain rectangle defined by radius.
14433
14434 This filter accepts the following options:
14435
14436 @table @option
14437 @item radius
14438 Set horizontal radius size. Default value is @code{1}.
14439 Allowed range is integer from 1 to 127.
14440
14441 @item planes
14442 Set which planes to process. Default is @code{15}, which is all available planes.
14443
14444 @item radiusV
14445 Set vertical radius size. Default value is @code{0}.
14446 Allowed range is integer from 0 to 127.
14447 If it is 0, value will be picked from horizontal @code{radius} option.
14448
14449 @item percentile
14450 Set median percentile. Default value is @code{0.5}.
14451 Default value of @code{0.5} will pick always median values, while @code{0} will pick
14452 minimum values, and @code{1} maximum values.
14453 @end table
14454
14455 @subsection Commands
14456 This filter supports same @ref{commands} as options.
14457 The command accepts the same syntax of the corresponding option.
14458
14459 If the specified expression is not valid, it is kept at its current
14460 value.
14461
14462 @section mergeplanes
14463
14464 Merge color channel components from several video streams.
14465
14466 The filter accepts up to 4 input streams, and merge selected input
14467 planes to the output video.
14468
14469 This filter accepts the following options:
14470 @table @option
14471 @item mapping
14472 Set input to output plane mapping. Default is @code{0}.
14473
14474 The mappings is specified as a bitmap. It should be specified as a
14475 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
14476 mapping for the first plane of the output stream. 'A' sets the number of
14477 the input stream to use (from 0 to 3), and 'a' the plane number of the
14478 corresponding input to use (from 0 to 3). The rest of the mappings is
14479 similar, 'Bb' describes the mapping for the output stream second
14480 plane, 'Cc' describes the mapping for the output stream third plane and
14481 'Dd' describes the mapping for the output stream fourth plane.
14482
14483 @item format
14484 Set output pixel format. Default is @code{yuva444p}.
14485 @end table
14486
14487 @subsection Examples
14488
14489 @itemize
14490 @item
14491 Merge three gray video streams of same width and height into single video stream:
14492 @example
14493 [a0][a1][a2]mergeplanes=0x001020:yuv444p
14494 @end example
14495
14496 @item
14497 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
14498 @example
14499 [a0][a1]mergeplanes=0x00010210:yuva444p
14500 @end example
14501
14502 @item
14503 Swap Y and A plane in yuva444p stream:
14504 @example
14505 format=yuva444p,mergeplanes=0x03010200:yuva444p
14506 @end example
14507
14508 @item
14509 Swap U and V plane in yuv420p stream:
14510 @example
14511 format=yuv420p,mergeplanes=0x000201:yuv420p
14512 @end example
14513
14514 @item
14515 Cast a rgb24 clip to yuv444p:
14516 @example
14517 format=rgb24,mergeplanes=0x000102:yuv444p
14518 @end example
14519 @end itemize
14520
14521 @section mestimate
14522
14523 Estimate and export motion vectors using block matching algorithms.
14524 Motion vectors are stored in frame side data to be used by other filters.
14525
14526 This filter accepts the following options:
14527 @table @option
14528 @item method
14529 Specify the motion estimation method. Accepts one of the following values:
14530
14531 @table @samp
14532 @item esa
14533 Exhaustive search algorithm.
14534 @item tss
14535 Three step search algorithm.
14536 @item tdls
14537 Two dimensional logarithmic search algorithm.
14538 @item ntss
14539 New three step search algorithm.
14540 @item fss
14541 Four step search algorithm.
14542 @item ds
14543 Diamond search algorithm.
14544 @item hexbs
14545 Hexagon-based search algorithm.
14546 @item epzs
14547 Enhanced predictive zonal search algorithm.
14548 @item umh
14549 Uneven multi-hexagon search algorithm.
14550 @end table
14551 Default value is @samp{esa}.
14552
14553 @item mb_size
14554 Macroblock size. Default @code{16}.
14555
14556 @item search_param
14557 Search parameter. Default @code{7}.
14558 @end table
14559
14560 @section midequalizer
14561
14562 Apply Midway Image Equalization effect using two video streams.
14563
14564 Midway Image Equalization adjusts a pair of images to have the same
14565 histogram, while maintaining their dynamics as much as possible. It's
14566 useful for e.g. matching exposures from a pair of stereo cameras.
14567
14568 This filter has two inputs and one output, which must be of same pixel format, but
14569 may be of different sizes. The output of filter is first input adjusted with
14570 midway histogram of both inputs.
14571
14572 This filter accepts the following option:
14573
14574 @table @option
14575 @item planes
14576 Set which planes to process. Default is @code{15}, which is all available planes.
14577 @end table
14578
14579 @section minterpolate
14580
14581 Convert the video to specified frame rate using motion interpolation.
14582
14583 This filter accepts the following options:
14584 @table @option
14585 @item fps
14586 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}.
14587
14588 @item mi_mode
14589 Motion interpolation mode. Following values are accepted:
14590 @table @samp
14591 @item dup
14592 Duplicate previous or next frame for interpolating new ones.
14593 @item blend
14594 Blend source frames. Interpolated frame is mean of previous and next frames.
14595 @item mci
14596 Motion compensated interpolation. Following options are effective when this mode is selected:
14597
14598 @table @samp
14599 @item mc_mode
14600 Motion compensation mode. Following values are accepted:
14601 @table @samp
14602 @item obmc
14603 Overlapped block motion compensation.
14604 @item aobmc
14605 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
14606 @end table
14607 Default mode is @samp{obmc}.
14608
14609 @item me_mode
14610 Motion estimation mode. Following values are accepted:
14611 @table @samp
14612 @item bidir
14613 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
14614 @item bilat
14615 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
14616 @end table
14617 Default mode is @samp{bilat}.
14618
14619 @item me
14620 The algorithm to be used for motion estimation. Following values are accepted:
14621 @table @samp
14622 @item esa
14623 Exhaustive search algorithm.
14624 @item tss
14625 Three step search algorithm.
14626 @item tdls
14627 Two dimensional logarithmic search algorithm.
14628 @item ntss
14629 New three step search algorithm.
14630 @item fss
14631 Four step search algorithm.
14632 @item ds
14633 Diamond search algorithm.
14634 @item hexbs
14635 Hexagon-based search algorithm.
14636 @item epzs
14637 Enhanced predictive zonal search algorithm.
14638 @item umh
14639 Uneven multi-hexagon search algorithm.
14640 @end table
14641 Default algorithm is @samp{epzs}.
14642
14643 @item mb_size
14644 Macroblock size. Default @code{16}.
14645
14646 @item search_param
14647 Motion estimation search parameter. Default @code{32}.
14648
14649 @item vsbmc
14650 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).
14651 @end table
14652 @end table
14653
14654 @item scd
14655 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:
14656 @table @samp
14657 @item none
14658 Disable scene change detection.
14659 @item fdiff
14660 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14661 @end table
14662 Default method is @samp{fdiff}.
14663
14664 @item scd_threshold
14665 Scene change detection threshold. Default is @code{10.}.
14666 @end table
14667
14668 @section mix
14669
14670 Mix several video input streams into one video stream.
14671
14672 A description of the accepted options follows.
14673
14674 @table @option
14675 @item nb_inputs
14676 The number of inputs. If unspecified, it defaults to 2.
14677
14678 @item weights
14679 Specify weight of each input video stream as sequence.
14680 Each weight is separated by space. If number of weights
14681 is smaller than number of @var{frames} last specified
14682 weight will be used for all remaining unset weights.
14683
14684 @item scale
14685 Specify scale, if it is set it will be multiplied with sum
14686 of each weight multiplied with pixel values to give final destination
14687 pixel value. By default @var{scale} is auto scaled to sum of weights.
14688
14689 @item duration
14690 Specify how end of stream is determined.
14691 @table @samp
14692 @item longest
14693 The duration of the longest input. (default)
14694
14695 @item shortest
14696 The duration of the shortest input.
14697
14698 @item first
14699 The duration of the first input.
14700 @end table
14701 @end table
14702
14703 @subsection Commands
14704
14705 This filter supports the following commands:
14706 @table @option
14707 @item weights
14708 @item scale
14709 Syntax is same as option with same name.
14710 @end table
14711
14712 @section mpdecimate
14713
14714 Drop frames that do not differ greatly from the previous frame in
14715 order to reduce frame rate.
14716
14717 The main use of this filter is for very-low-bitrate encoding
14718 (e.g. streaming over dialup modem), but it could in theory be used for
14719 fixing movies that were inverse-telecined incorrectly.
14720
14721 A description of the accepted options follows.
14722
14723 @table @option
14724 @item max
14725 Set the maximum number of consecutive frames which can be dropped (if
14726 positive), or the minimum interval between dropped frames (if
14727 negative). If the value is 0, the frame is dropped disregarding the
14728 number of previous sequentially dropped frames.
14729
14730 Default value is 0.
14731
14732 @item hi
14733 @item lo
14734 @item frac
14735 Set the dropping threshold values.
14736
14737 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14738 represent actual pixel value differences, so a threshold of 64
14739 corresponds to 1 unit of difference for each pixel, or the same spread
14740 out differently over the block.
14741
14742 A frame is a candidate for dropping if no 8x8 blocks differ by more
14743 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14744 meaning the whole image) differ by more than a threshold of @option{lo}.
14745
14746 Default value for @option{hi} is 64*12, default value for @option{lo} is
14747 64*5, and default value for @option{frac} is 0.33.
14748 @end table
14749
14750
14751 @section negate
14752
14753 Negate (invert) the input video.
14754
14755 It accepts the following option:
14756
14757 @table @option
14758
14759 @item negate_alpha
14760 With value 1, it negates the alpha component, if present. Default value is 0.
14761 @end table
14762
14763 @anchor{nlmeans}
14764 @section nlmeans
14765
14766 Denoise frames using Non-Local Means algorithm.
14767
14768 Each pixel is adjusted by looking for other pixels with similar contexts. This
14769 context similarity is defined by comparing their surrounding patches of size
14770 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14771 around the pixel.
14772
14773 Note that the research area defines centers for patches, which means some
14774 patches will be made of pixels outside that research area.
14775
14776 The filter accepts the following options.
14777
14778 @table @option
14779 @item s
14780 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
14781
14782 @item p
14783 Set patch size. Default is 7. Must be odd number in range [0, 99].
14784
14785 @item pc
14786 Same as @option{p} but for chroma planes.
14787
14788 The default value is @var{0} and means automatic.
14789
14790 @item r
14791 Set research size. Default is 15. Must be odd number in range [0, 99].
14792
14793 @item rc
14794 Same as @option{r} but for chroma planes.
14795
14796 The default value is @var{0} and means automatic.
14797 @end table
14798
14799 @section nnedi
14800
14801 Deinterlace video using neural network edge directed interpolation.
14802
14803 This filter accepts the following options:
14804
14805 @table @option
14806 @item weights
14807 Mandatory option, without binary file filter can not work.
14808 Currently file can be found here:
14809 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
14810
14811 @item deint
14812 Set which frames to deinterlace, by default it is @code{all}.
14813 Can be @code{all} or @code{interlaced}.
14814
14815 @item field
14816 Set mode of operation.
14817
14818 Can be one of the following:
14819
14820 @table @samp
14821 @item af
14822 Use frame flags, both fields.
14823 @item a
14824 Use frame flags, single field.
14825 @item t
14826 Use top field only.
14827 @item b
14828 Use bottom field only.
14829 @item tf
14830 Use both fields, top first.
14831 @item bf
14832 Use both fields, bottom first.
14833 @end table
14834
14835 @item planes
14836 Set which planes to process, by default filter process all frames.
14837
14838 @item nsize
14839 Set size of local neighborhood around each pixel, used by the predictor neural
14840 network.
14841
14842 Can be one of the following:
14843
14844 @table @samp
14845 @item s8x6
14846 @item s16x6
14847 @item s32x6
14848 @item s48x6
14849 @item s8x4
14850 @item s16x4
14851 @item s32x4
14852 @end table
14853
14854 @item nns
14855 Set the number of neurons in predictor neural network.
14856 Can be one of the following:
14857
14858 @table @samp
14859 @item n16
14860 @item n32
14861 @item n64
14862 @item n128
14863 @item n256
14864 @end table
14865
14866 @item qual
14867 Controls the number of different neural network predictions that are blended
14868 together to compute the final output value. Can be @code{fast}, default or
14869 @code{slow}.
14870
14871 @item etype
14872 Set which set of weights to use in the predictor.
14873 Can be one of the following:
14874
14875 @table @samp
14876 @item a, abs
14877 weights trained to minimize absolute error
14878 @item s, mse
14879 weights trained to minimize squared error
14880 @end table
14881
14882 @item pscrn
14883 Controls whether or not the prescreener neural network is used to decide
14884 which pixels should be processed by the predictor neural network and which
14885 can be handled by simple cubic interpolation.
14886 The prescreener is trained to know whether cubic interpolation will be
14887 sufficient for a pixel or whether it should be predicted by the predictor nn.
14888 The computational complexity of the prescreener nn is much less than that of
14889 the predictor nn. Since most pixels can be handled by cubic interpolation,
14890 using the prescreener generally results in much faster processing.
14891 The prescreener is pretty accurate, so the difference between using it and not
14892 using it is almost always unnoticeable.
14893
14894 Can be one of the following:
14895
14896 @table @samp
14897 @item none
14898 @item original
14899 @item new
14900 @item new2
14901 @item new3
14902 @end table
14903
14904 Default is @code{new}.
14905 @end table
14906
14907 @subsection Commands
14908 This filter supports same @ref{commands} as options, excluding @var{weights} option.
14909
14910 @section noformat
14911
14912 Force libavfilter not to use any of the specified pixel formats for the
14913 input to the next filter.
14914
14915 It accepts the following parameters:
14916 @table @option
14917
14918 @item pix_fmts
14919 A '|'-separated list of pixel format names, such as
14920 pix_fmts=yuv420p|monow|rgb24".
14921
14922 @end table
14923
14924 @subsection Examples
14925
14926 @itemize
14927 @item
14928 Force libavfilter to use a format different from @var{yuv420p} for the
14929 input to the vflip filter:
14930 @example
14931 noformat=pix_fmts=yuv420p,vflip
14932 @end example
14933
14934 @item
14935 Convert the input video to any of the formats not contained in the list:
14936 @example
14937 noformat=yuv420p|yuv444p|yuv410p
14938 @end example
14939 @end itemize
14940
14941 @section noise
14942
14943 Add noise on video input frame.
14944
14945 The filter accepts the following options:
14946
14947 @table @option
14948 @item all_seed
14949 @item c0_seed
14950 @item c1_seed
14951 @item c2_seed
14952 @item c3_seed
14953 Set noise seed for specific pixel component or all pixel components in case
14954 of @var{all_seed}. Default value is @code{123457}.
14955
14956 @item all_strength, alls
14957 @item c0_strength, c0s
14958 @item c1_strength, c1s
14959 @item c2_strength, c2s
14960 @item c3_strength, c3s
14961 Set noise strength for specific pixel component or all pixel components in case
14962 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
14963
14964 @item all_flags, allf
14965 @item c0_flags, c0f
14966 @item c1_flags, c1f
14967 @item c2_flags, c2f
14968 @item c3_flags, c3f
14969 Set pixel component flags or set flags for all components if @var{all_flags}.
14970 Available values for component flags are:
14971 @table @samp
14972 @item a
14973 averaged temporal noise (smoother)
14974 @item p
14975 mix random noise with a (semi)regular pattern
14976 @item t
14977 temporal noise (noise pattern changes between frames)
14978 @item u
14979 uniform noise (gaussian otherwise)
14980 @end table
14981 @end table
14982
14983 @subsection Examples
14984
14985 Add temporal and uniform noise to input video:
14986 @example
14987 noise=alls=20:allf=t+u
14988 @end example
14989
14990 @section normalize
14991
14992 Normalize RGB video (aka histogram stretching, contrast stretching).
14993 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
14994
14995 For each channel of each frame, the filter computes the input range and maps
14996 it linearly to the user-specified output range. The output range defaults
14997 to the full dynamic range from pure black to pure white.
14998
14999 Temporal smoothing can be used on the input range to reduce flickering (rapid
15000 changes in brightness) caused when small dark or bright objects enter or leave
15001 the scene. This is similar to the auto-exposure (automatic gain control) on a
15002 video camera, and, like a video camera, it may cause a period of over- or
15003 under-exposure of the video.
15004
15005 The R,G,B channels can be normalized independently, which may cause some
15006 color shifting, or linked together as a single channel, which prevents
15007 color shifting. Linked normalization preserves hue. Independent normalization
15008 does not, so it can be used to remove some color casts. Independent and linked
15009 normalization can be combined in any ratio.
15010
15011 The normalize filter accepts the following options:
15012
15013 @table @option
15014 @item blackpt
15015 @item whitept
15016 Colors which define the output range. The minimum input value is mapped to
15017 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
15018 The defaults are black and white respectively. Specifying white for
15019 @var{blackpt} and black for @var{whitept} will give color-inverted,
15020 normalized video. Shades of grey can be used to reduce the dynamic range
15021 (contrast). Specifying saturated colors here can create some interesting
15022 effects.
15023
15024 @item smoothing
15025 The number of previous frames to use for temporal smoothing. The input range
15026 of each channel is smoothed using a rolling average over the current frame
15027 and the @var{smoothing} previous frames. The default is 0 (no temporal
15028 smoothing).
15029
15030 @item independence
15031 Controls the ratio of independent (color shifting) channel normalization to
15032 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
15033 independent. Defaults to 1.0 (fully independent).
15034
15035 @item strength
15036 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
15037 expensive no-op. Defaults to 1.0 (full strength).
15038
15039 @end table
15040
15041 @subsection Commands
15042 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
15043 The command accepts the same syntax of the corresponding option.
15044
15045 If the specified expression is not valid, it is kept at its current
15046 value.
15047
15048 @subsection Examples
15049
15050 Stretch video contrast to use the full dynamic range, with no temporal
15051 smoothing; may flicker depending on the source content:
15052 @example
15053 normalize=blackpt=black:whitept=white:smoothing=0
15054 @end example
15055
15056 As above, but with 50 frames of temporal smoothing; flicker should be
15057 reduced, depending on the source content:
15058 @example
15059 normalize=blackpt=black:whitept=white:smoothing=50
15060 @end example
15061
15062 As above, but with hue-preserving linked channel normalization:
15063 @example
15064 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
15065 @end example
15066
15067 As above, but with half strength:
15068 @example
15069 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
15070 @end example
15071
15072 Map the darkest input color to red, the brightest input color to cyan:
15073 @example
15074 normalize=blackpt=red:whitept=cyan
15075 @end example
15076
15077 @section null
15078
15079 Pass the video source unchanged to the output.
15080
15081 @section ocr
15082 Optical Character Recognition
15083
15084 This filter uses Tesseract for optical character recognition. To enable
15085 compilation of this filter, you need to configure FFmpeg with
15086 @code{--enable-libtesseract}.
15087
15088 It accepts the following options:
15089
15090 @table @option
15091 @item datapath
15092 Set datapath to tesseract data. Default is to use whatever was
15093 set at installation.
15094
15095 @item language
15096 Set language, default is "eng".
15097
15098 @item whitelist
15099 Set character whitelist.
15100
15101 @item blacklist
15102 Set character blacklist.
15103 @end table
15104
15105 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
15106 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
15107
15108 @section ocv
15109
15110 Apply a video transform using libopencv.
15111
15112 To enable this filter, install the libopencv library and headers and
15113 configure FFmpeg with @code{--enable-libopencv}.
15114
15115 It accepts the following parameters:
15116
15117 @table @option
15118
15119 @item filter_name
15120 The name of the libopencv filter to apply.
15121
15122 @item filter_params
15123 The parameters to pass to the libopencv filter. If not specified, the default
15124 values are assumed.
15125
15126 @end table
15127
15128 Refer to the official libopencv documentation for more precise
15129 information:
15130 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
15131
15132 Several libopencv filters are supported; see the following subsections.
15133
15134 @anchor{dilate}
15135 @subsection dilate
15136
15137 Dilate an image by using a specific structuring element.
15138 It corresponds to the libopencv function @code{cvDilate}.
15139
15140 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
15141
15142 @var{struct_el} represents a structuring element, and has the syntax:
15143 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
15144
15145 @var{cols} and @var{rows} represent the number of columns and rows of
15146 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
15147 point, and @var{shape} the shape for the structuring element. @var{shape}
15148 must be "rect", "cross", "ellipse", or "custom".
15149
15150 If the value for @var{shape} is "custom", it must be followed by a
15151 string of the form "=@var{filename}". The file with name
15152 @var{filename} is assumed to represent a binary image, with each
15153 printable character corresponding to a bright pixel. When a custom
15154 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
15155 or columns and rows of the read file are assumed instead.
15156
15157 The default value for @var{struct_el} is "3x3+0x0/rect".
15158
15159 @var{nb_iterations} specifies the number of times the transform is
15160 applied to the image, and defaults to 1.
15161
15162 Some examples:
15163 @example
15164 # Use the default values
15165 ocv=dilate
15166
15167 # Dilate using a structuring element with a 5x5 cross, iterating two times
15168 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
15169
15170 # Read the shape from the file diamond.shape, iterating two times.
15171 # The file diamond.shape may contain a pattern of characters like this
15172 #   *
15173 #  ***
15174 # *****
15175 #  ***
15176 #   *
15177 # The specified columns and rows are ignored
15178 # but the anchor point coordinates are not
15179 ocv=dilate:0x0+2x2/custom=diamond.shape|2
15180 @end example
15181
15182 @subsection erode
15183
15184 Erode an image by using a specific structuring element.
15185 It corresponds to the libopencv function @code{cvErode}.
15186
15187 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
15188 with the same syntax and semantics as the @ref{dilate} filter.
15189
15190 @subsection smooth
15191
15192 Smooth the input video.
15193
15194 The filter takes the following parameters:
15195 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
15196
15197 @var{type} is the type of smooth filter to apply, and must be one of
15198 the following values: "blur", "blur_no_scale", "median", "gaussian",
15199 or "bilateral". The default value is "gaussian".
15200
15201 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
15202 depends on the smooth type. @var{param1} and
15203 @var{param2} accept integer positive values or 0. @var{param3} and
15204 @var{param4} accept floating point values.
15205
15206 The default value for @var{param1} is 3. The default value for the
15207 other parameters is 0.
15208
15209 These parameters correspond to the parameters assigned to the
15210 libopencv function @code{cvSmooth}.
15211
15212 @section oscilloscope
15213
15214 2D Video Oscilloscope.
15215
15216 Useful to measure spatial impulse, step responses, chroma delays, etc.
15217
15218 It accepts the following parameters:
15219
15220 @table @option
15221 @item x
15222 Set scope center x position.
15223
15224 @item y
15225 Set scope center y position.
15226
15227 @item s
15228 Set scope size, relative to frame diagonal.
15229
15230 @item t
15231 Set scope tilt/rotation.
15232
15233 @item o
15234 Set trace opacity.
15235
15236 @item tx
15237 Set trace center x position.
15238
15239 @item ty
15240 Set trace center y position.
15241
15242 @item tw
15243 Set trace width, relative to width of frame.
15244
15245 @item th
15246 Set trace height, relative to height of frame.
15247
15248 @item c
15249 Set which components to trace. By default it traces first three components.
15250
15251 @item g
15252 Draw trace grid. By default is enabled.
15253
15254 @item st
15255 Draw some statistics. By default is enabled.
15256
15257 @item sc
15258 Draw scope. By default is enabled.
15259 @end table
15260
15261 @subsection Commands
15262 This filter supports same @ref{commands} as options.
15263 The command accepts the same syntax of the corresponding option.
15264
15265 If the specified expression is not valid, it is kept at its current
15266 value.
15267
15268 @subsection Examples
15269
15270 @itemize
15271 @item
15272 Inspect full first row of video frame.
15273 @example
15274 oscilloscope=x=0.5:y=0:s=1
15275 @end example
15276
15277 @item
15278 Inspect full last row of video frame.
15279 @example
15280 oscilloscope=x=0.5:y=1:s=1
15281 @end example
15282
15283 @item
15284 Inspect full 5th line of video frame of height 1080.
15285 @example
15286 oscilloscope=x=0.5:y=5/1080:s=1
15287 @end example
15288
15289 @item
15290 Inspect full last column of video frame.
15291 @example
15292 oscilloscope=x=1:y=0.5:s=1:t=1
15293 @end example
15294
15295 @end itemize
15296
15297 @anchor{overlay}
15298 @section overlay
15299
15300 Overlay one video on top of another.
15301
15302 It takes two inputs and has one output. The first input is the "main"
15303 video on which the second input is overlaid.
15304
15305 It accepts the following parameters:
15306
15307 A description of the accepted options follows.
15308
15309 @table @option
15310 @item x
15311 @item y
15312 Set the expression for the x and y coordinates of the overlaid video
15313 on the main video. Default value is "0" for both expressions. In case
15314 the expression is invalid, it is set to a huge value (meaning that the
15315 overlay will not be displayed within the output visible area).
15316
15317 @item eof_action
15318 See @ref{framesync}.
15319
15320 @item eval
15321 Set when the expressions for @option{x}, and @option{y} are evaluated.
15322
15323 It accepts the following values:
15324 @table @samp
15325 @item init
15326 only evaluate expressions once during the filter initialization or
15327 when a command is processed
15328
15329 @item frame
15330 evaluate expressions for each incoming frame
15331 @end table
15332
15333 Default value is @samp{frame}.
15334
15335 @item shortest
15336 See @ref{framesync}.
15337
15338 @item format
15339 Set the format for the output video.
15340
15341 It accepts the following values:
15342 @table @samp
15343 @item yuv420
15344 force YUV420 output
15345
15346 @item yuv420p10
15347 force YUV420p10 output
15348
15349 @item yuv422
15350 force YUV422 output
15351
15352 @item yuv422p10
15353 force YUV422p10 output
15354
15355 @item yuv444
15356 force YUV444 output
15357
15358 @item rgb
15359 force packed RGB output
15360
15361 @item gbrp
15362 force planar RGB output
15363
15364 @item auto
15365 automatically pick format
15366 @end table
15367
15368 Default value is @samp{yuv420}.
15369
15370 @item repeatlast
15371 See @ref{framesync}.
15372
15373 @item alpha
15374 Set format of alpha of the overlaid video, it can be @var{straight} or
15375 @var{premultiplied}. Default is @var{straight}.
15376 @end table
15377
15378 The @option{x}, and @option{y} expressions can contain the following
15379 parameters.
15380
15381 @table @option
15382 @item main_w, W
15383 @item main_h, H
15384 The main input width and height.
15385
15386 @item overlay_w, w
15387 @item overlay_h, h
15388 The overlay input width and height.
15389
15390 @item x
15391 @item y
15392 The computed values for @var{x} and @var{y}. They are evaluated for
15393 each new frame.
15394
15395 @item hsub
15396 @item vsub
15397 horizontal and vertical chroma subsample values of the output
15398 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
15399 @var{vsub} is 1.
15400
15401 @item n
15402 the number of input frame, starting from 0
15403
15404 @item pos
15405 the position in the file of the input frame, NAN if unknown
15406
15407 @item t
15408 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
15409
15410 @end table
15411
15412 This filter also supports the @ref{framesync} options.
15413
15414 Note that the @var{n}, @var{pos}, @var{t} variables are available only
15415 when evaluation is done @emph{per frame}, and will evaluate to NAN
15416 when @option{eval} is set to @samp{init}.
15417
15418 Be aware that frames are taken from each input video in timestamp
15419 order, hence, if their initial timestamps differ, it is a good idea
15420 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
15421 have them begin in the same zero timestamp, as the example for
15422 the @var{movie} filter does.
15423
15424 You can chain together more overlays but you should test the
15425 efficiency of such approach.
15426
15427 @subsection Commands
15428
15429 This filter supports the following commands:
15430 @table @option
15431 @item x
15432 @item y
15433 Modify the x and y of the overlay input.
15434 The command accepts the same syntax of the corresponding option.
15435
15436 If the specified expression is not valid, it is kept at its current
15437 value.
15438 @end table
15439
15440 @subsection Examples
15441
15442 @itemize
15443 @item
15444 Draw the overlay at 10 pixels from the bottom right corner of the main
15445 video:
15446 @example
15447 overlay=main_w-overlay_w-10:main_h-overlay_h-10
15448 @end example
15449
15450 Using named options the example above becomes:
15451 @example
15452 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
15453 @end example
15454
15455 @item
15456 Insert a transparent PNG logo in the bottom left corner of the input,
15457 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
15458 @example
15459 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
15460 @end example
15461
15462 @item
15463 Insert 2 different transparent PNG logos (second logo on bottom
15464 right corner) using the @command{ffmpeg} tool:
15465 @example
15466 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
15467 @end example
15468
15469 @item
15470 Add a transparent color layer on top of the main video; @code{WxH}
15471 must specify the size of the main input to the overlay filter:
15472 @example
15473 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
15474 @end example
15475
15476 @item
15477 Play an original video and a filtered version (here with the deshake
15478 filter) side by side using the @command{ffplay} tool:
15479 @example
15480 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
15481 @end example
15482
15483 The above command is the same as:
15484 @example
15485 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
15486 @end example
15487
15488 @item
15489 Make a sliding overlay appearing from the left to the right top part of the
15490 screen starting since time 2:
15491 @example
15492 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
15493 @end example
15494
15495 @item
15496 Compose output by putting two input videos side to side:
15497 @example
15498 ffmpeg -i left.avi -i right.avi -filter_complex "
15499 nullsrc=size=200x100 [background];
15500 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
15501 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
15502 [background][left]       overlay=shortest=1       [background+left];
15503 [background+left][right] overlay=shortest=1:x=100 [left+right]
15504 "
15505 @end example
15506
15507 @item
15508 Mask 10-20 seconds of a video by applying the delogo filter to a section
15509 @example
15510 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
15511 -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]'
15512 masked.avi
15513 @end example
15514
15515 @item
15516 Chain several overlays in cascade:
15517 @example
15518 nullsrc=s=200x200 [bg];
15519 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
15520 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
15521 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
15522 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
15523 [in3] null,       [mid2] overlay=100:100 [out0]
15524 @end example
15525
15526 @end itemize
15527
15528 @anchor{overlay_cuda}
15529 @section overlay_cuda
15530
15531 Overlay one video on top of another.
15532
15533 This is the CUDA variant of the @ref{overlay} filter.
15534 It only accepts CUDA frames. The underlying input pixel formats have to match.
15535
15536 It takes two inputs and has one output. The first input is the "main"
15537 video on which the second input is overlaid.
15538
15539 It accepts the following parameters:
15540
15541 @table @option
15542 @item x
15543 @item y
15544 Set the x and y coordinates of the overlaid video on the main video.
15545 Default value is "0" for both expressions.
15546
15547 @item eof_action
15548 See @ref{framesync}.
15549
15550 @item shortest
15551 See @ref{framesync}.
15552
15553 @item repeatlast
15554 See @ref{framesync}.
15555
15556 @end table
15557
15558 This filter also supports the @ref{framesync} options.
15559
15560 @section owdenoise
15561
15562 Apply Overcomplete Wavelet denoiser.
15563
15564 The filter accepts the following options:
15565
15566 @table @option
15567 @item depth
15568 Set depth.
15569
15570 Larger depth values will denoise lower frequency components more, but
15571 slow down filtering.
15572
15573 Must be an int in the range 8-16, default is @code{8}.
15574
15575 @item luma_strength, ls
15576 Set luma strength.
15577
15578 Must be a double value in the range 0-1000, default is @code{1.0}.
15579
15580 @item chroma_strength, cs
15581 Set chroma strength.
15582
15583 Must be a double value in the range 0-1000, default is @code{1.0}.
15584 @end table
15585
15586 @anchor{pad}
15587 @section pad
15588
15589 Add paddings to the input image, and place the original input at the
15590 provided @var{x}, @var{y} coordinates.
15591
15592 It accepts the following parameters:
15593
15594 @table @option
15595 @item width, w
15596 @item height, h
15597 Specify an expression for the size of the output image with the
15598 paddings added. If the value for @var{width} or @var{height} is 0, the
15599 corresponding input size is used for the output.
15600
15601 The @var{width} expression can reference the value set by the
15602 @var{height} expression, and vice versa.
15603
15604 The default value of @var{width} and @var{height} is 0.
15605
15606 @item x
15607 @item y
15608 Specify the offsets to place the input image at within the padded area,
15609 with respect to the top/left border of the output image.
15610
15611 The @var{x} expression can reference the value set by the @var{y}
15612 expression, and vice versa.
15613
15614 The default value of @var{x} and @var{y} is 0.
15615
15616 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
15617 so the input image is centered on the padded area.
15618
15619 @item color
15620 Specify the color of the padded area. For the syntax of this option,
15621 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15622 manual,ffmpeg-utils}.
15623
15624 The default value of @var{color} is "black".
15625
15626 @item eval
15627 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
15628
15629 It accepts the following values:
15630
15631 @table @samp
15632 @item init
15633 Only evaluate expressions once during the filter initialization or when
15634 a command is processed.
15635
15636 @item frame
15637 Evaluate expressions for each incoming frame.
15638
15639 @end table
15640
15641 Default value is @samp{init}.
15642
15643 @item aspect
15644 Pad to aspect instead to a resolution.
15645
15646 @end table
15647
15648 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
15649 options are expressions containing the following constants:
15650
15651 @table @option
15652 @item in_w
15653 @item in_h
15654 The input video width and height.
15655
15656 @item iw
15657 @item ih
15658 These are the same as @var{in_w} and @var{in_h}.
15659
15660 @item out_w
15661 @item out_h
15662 The output width and height (the size of the padded area), as
15663 specified by the @var{width} and @var{height} expressions.
15664
15665 @item ow
15666 @item oh
15667 These are the same as @var{out_w} and @var{out_h}.
15668
15669 @item x
15670 @item y
15671 The x and y offsets as specified by the @var{x} and @var{y}
15672 expressions, or NAN if not yet specified.
15673
15674 @item a
15675 same as @var{iw} / @var{ih}
15676
15677 @item sar
15678 input sample aspect ratio
15679
15680 @item dar
15681 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15682
15683 @item hsub
15684 @item vsub
15685 The horizontal and vertical chroma subsample values. For example for the
15686 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15687 @end table
15688
15689 @subsection Examples
15690
15691 @itemize
15692 @item
15693 Add paddings with the color "violet" to the input video. The output video
15694 size is 640x480, and the top-left corner of the input video is placed at
15695 column 0, row 40
15696 @example
15697 pad=640:480:0:40:violet
15698 @end example
15699
15700 The example above is equivalent to the following command:
15701 @example
15702 pad=width=640:height=480:x=0:y=40:color=violet
15703 @end example
15704
15705 @item
15706 Pad the input to get an output with dimensions increased by 3/2,
15707 and put the input video at the center of the padded area:
15708 @example
15709 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15710 @end example
15711
15712 @item
15713 Pad the input to get a squared output with size equal to the maximum
15714 value between the input width and height, and put the input video at
15715 the center of the padded area:
15716 @example
15717 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15718 @end example
15719
15720 @item
15721 Pad the input to get a final w/h ratio of 16:9:
15722 @example
15723 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15724 @end example
15725
15726 @item
15727 In case of anamorphic video, in order to set the output display aspect
15728 correctly, it is necessary to use @var{sar} in the expression,
15729 according to the relation:
15730 @example
15731 (ih * X / ih) * sar = output_dar
15732 X = output_dar / sar
15733 @end example
15734
15735 Thus the previous example needs to be modified to:
15736 @example
15737 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15738 @end example
15739
15740 @item
15741 Double the output size and put the input video in the bottom-right
15742 corner of the output padded area:
15743 @example
15744 pad="2*iw:2*ih:ow-iw:oh-ih"
15745 @end example
15746 @end itemize
15747
15748 @anchor{palettegen}
15749 @section palettegen
15750
15751 Generate one palette for a whole video stream.
15752
15753 It accepts the following options:
15754
15755 @table @option
15756 @item max_colors
15757 Set the maximum number of colors to quantize in the palette.
15758 Note: the palette will still contain 256 colors; the unused palette entries
15759 will be black.
15760
15761 @item reserve_transparent
15762 Create a palette of 255 colors maximum and reserve the last one for
15763 transparency. Reserving the transparency color is useful for GIF optimization.
15764 If not set, the maximum of colors in the palette will be 256. You probably want
15765 to disable this option for a standalone image.
15766 Set by default.
15767
15768 @item transparency_color
15769 Set the color that will be used as background for transparency.
15770
15771 @item stats_mode
15772 Set statistics mode.
15773
15774 It accepts the following values:
15775 @table @samp
15776 @item full
15777 Compute full frame histograms.
15778 @item diff
15779 Compute histograms only for the part that differs from previous frame. This
15780 might be relevant to give more importance to the moving part of your input if
15781 the background is static.
15782 @item single
15783 Compute new histogram for each frame.
15784 @end table
15785
15786 Default value is @var{full}.
15787 @end table
15788
15789 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
15790 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
15791 color quantization of the palette. This information is also visible at
15792 @var{info} logging level.
15793
15794 @subsection Examples
15795
15796 @itemize
15797 @item
15798 Generate a representative palette of a given video using @command{ffmpeg}:
15799 @example
15800 ffmpeg -i input.mkv -vf palettegen palette.png
15801 @end example
15802 @end itemize
15803
15804 @section paletteuse
15805
15806 Use a palette to downsample an input video stream.
15807
15808 The filter takes two inputs: one video stream and a palette. The palette must
15809 be a 256 pixels image.
15810
15811 It accepts the following options:
15812
15813 @table @option
15814 @item dither
15815 Select dithering mode. Available algorithms are:
15816 @table @samp
15817 @item bayer
15818 Ordered 8x8 bayer dithering (deterministic)
15819 @item heckbert
15820 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
15821 Note: this dithering is sometimes considered "wrong" and is included as a
15822 reference.
15823 @item floyd_steinberg
15824 Floyd and Steingberg dithering (error diffusion)
15825 @item sierra2
15826 Frankie Sierra dithering v2 (error diffusion)
15827 @item sierra2_4a
15828 Frankie Sierra dithering v2 "Lite" (error diffusion)
15829 @end table
15830
15831 Default is @var{sierra2_4a}.
15832
15833 @item bayer_scale
15834 When @var{bayer} dithering is selected, this option defines the scale of the
15835 pattern (how much the crosshatch pattern is visible). A low value means more
15836 visible pattern for less banding, and higher value means less visible pattern
15837 at the cost of more banding.
15838
15839 The option must be an integer value in the range [0,5]. Default is @var{2}.
15840
15841 @item diff_mode
15842 If set, define the zone to process
15843
15844 @table @samp
15845 @item rectangle
15846 Only the changing rectangle will be reprocessed. This is similar to GIF
15847 cropping/offsetting compression mechanism. This option can be useful for speed
15848 if only a part of the image is changing, and has use cases such as limiting the
15849 scope of the error diffusal @option{dither} to the rectangle that bounds the
15850 moving scene (it leads to more deterministic output if the scene doesn't change
15851 much, and as a result less moving noise and better GIF compression).
15852 @end table
15853
15854 Default is @var{none}.
15855
15856 @item new
15857 Take new palette for each output frame.
15858
15859 @item alpha_threshold
15860 Sets the alpha threshold for transparency. Alpha values above this threshold
15861 will be treated as completely opaque, and values below this threshold will be
15862 treated as completely transparent.
15863
15864 The option must be an integer value in the range [0,255]. Default is @var{128}.
15865 @end table
15866
15867 @subsection Examples
15868
15869 @itemize
15870 @item
15871 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
15872 using @command{ffmpeg}:
15873 @example
15874 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
15875 @end example
15876 @end itemize
15877
15878 @section perspective
15879
15880 Correct perspective of video not recorded perpendicular to the screen.
15881
15882 A description of the accepted parameters follows.
15883
15884 @table @option
15885 @item x0
15886 @item y0
15887 @item x1
15888 @item y1
15889 @item x2
15890 @item y2
15891 @item x3
15892 @item y3
15893 Set coordinates expression for top left, top right, bottom left and bottom right corners.
15894 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
15895 If the @code{sense} option is set to @code{source}, then the specified points will be sent
15896 to the corners of the destination. If the @code{sense} option is set to @code{destination},
15897 then the corners of the source will be sent to the specified coordinates.
15898
15899 The expressions can use the following variables:
15900
15901 @table @option
15902 @item W
15903 @item H
15904 the width and height of video frame.
15905 @item in
15906 Input frame count.
15907 @item on
15908 Output frame count.
15909 @end table
15910
15911 @item interpolation
15912 Set interpolation for perspective correction.
15913
15914 It accepts the following values:
15915 @table @samp
15916 @item linear
15917 @item cubic
15918 @end table
15919
15920 Default value is @samp{linear}.
15921
15922 @item sense
15923 Set interpretation of coordinate options.
15924
15925 It accepts the following values:
15926 @table @samp
15927 @item 0, source
15928
15929 Send point in the source specified by the given coordinates to
15930 the corners of the destination.
15931
15932 @item 1, destination
15933
15934 Send the corners of the source to the point in the destination specified
15935 by the given coordinates.
15936
15937 Default value is @samp{source}.
15938 @end table
15939
15940 @item eval
15941 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
15942
15943 It accepts the following values:
15944 @table @samp
15945 @item init
15946 only evaluate expressions once during the filter initialization or
15947 when a command is processed
15948
15949 @item frame
15950 evaluate expressions for each incoming frame
15951 @end table
15952
15953 Default value is @samp{init}.
15954 @end table
15955
15956 @section phase
15957
15958 Delay interlaced video by one field time so that the field order changes.
15959
15960 The intended use is to fix PAL movies that have been captured with the
15961 opposite field order to the film-to-video transfer.
15962
15963 A description of the accepted parameters follows.
15964
15965 @table @option
15966 @item mode
15967 Set phase mode.
15968
15969 It accepts the following values:
15970 @table @samp
15971 @item t
15972 Capture field order top-first, transfer bottom-first.
15973 Filter will delay the bottom field.
15974
15975 @item b
15976 Capture field order bottom-first, transfer top-first.
15977 Filter will delay the top field.
15978
15979 @item p
15980 Capture and transfer with the same field order. This mode only exists
15981 for the documentation of the other options to refer to, but if you
15982 actually select it, the filter will faithfully do nothing.
15983
15984 @item a
15985 Capture field order determined automatically by field flags, transfer
15986 opposite.
15987 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
15988 basis using field flags. If no field information is available,
15989 then this works just like @samp{u}.
15990
15991 @item u
15992 Capture unknown or varying, transfer opposite.
15993 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
15994 analyzing the images and selecting the alternative that produces best
15995 match between the fields.
15996
15997 @item T
15998 Capture top-first, transfer unknown or varying.
15999 Filter selects among @samp{t} and @samp{p} using image analysis.
16000
16001 @item B
16002 Capture bottom-first, transfer unknown or varying.
16003 Filter selects among @samp{b} and @samp{p} using image analysis.
16004
16005 @item A
16006 Capture determined by field flags, transfer unknown or varying.
16007 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
16008 image analysis. If no field information is available, then this works just
16009 like @samp{U}. This is the default mode.
16010
16011 @item U
16012 Both capture and transfer unknown or varying.
16013 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
16014 @end table
16015 @end table
16016
16017 @subsection Commands
16018
16019 This filter supports the all above options as @ref{commands}.
16020
16021 @section photosensitivity
16022 Reduce various flashes in video, so to help users with epilepsy.
16023
16024 It accepts the following options:
16025 @table @option
16026 @item frames, f
16027 Set how many frames to use when filtering. Default is 30.
16028
16029 @item threshold, t
16030 Set detection threshold factor. Default is 1.
16031 Lower is stricter.
16032
16033 @item skip
16034 Set how many pixels to skip when sampling frames. Default is 1.
16035 Allowed range is from 1 to 1024.
16036
16037 @item bypass
16038 Leave frames unchanged. Default is disabled.
16039 @end table
16040
16041 @section pixdesctest
16042
16043 Pixel format descriptor test filter, mainly useful for internal
16044 testing. The output video should be equal to the input video.
16045
16046 For example:
16047 @example
16048 format=monow, pixdesctest
16049 @end example
16050
16051 can be used to test the monowhite pixel format descriptor definition.
16052
16053 @section pixscope
16054
16055 Display sample values of color channels. Mainly useful for checking color
16056 and levels. Minimum supported resolution is 640x480.
16057
16058 The filters accept the following options:
16059
16060 @table @option
16061 @item x
16062 Set scope X position, relative offset on X axis.
16063
16064 @item y
16065 Set scope Y position, relative offset on Y axis.
16066
16067 @item w
16068 Set scope width.
16069
16070 @item h
16071 Set scope height.
16072
16073 @item o
16074 Set window opacity. This window also holds statistics about pixel area.
16075
16076 @item wx
16077 Set window X position, relative offset on X axis.
16078
16079 @item wy
16080 Set window Y position, relative offset on Y axis.
16081 @end table
16082
16083 @section pp
16084
16085 Enable the specified chain of postprocessing subfilters using libpostproc. This
16086 library should be automatically selected with a GPL build (@code{--enable-gpl}).
16087 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
16088 Each subfilter and some options have a short and a long name that can be used
16089 interchangeably, i.e. dr/dering are the same.
16090
16091 The filters accept the following options:
16092
16093 @table @option
16094 @item subfilters
16095 Set postprocessing subfilters string.
16096 @end table
16097
16098 All subfilters share common options to determine their scope:
16099
16100 @table @option
16101 @item a/autoq
16102 Honor the quality commands for this subfilter.
16103
16104 @item c/chrom
16105 Do chrominance filtering, too (default).
16106
16107 @item y/nochrom
16108 Do luminance filtering only (no chrominance).
16109
16110 @item n/noluma
16111 Do chrominance filtering only (no luminance).
16112 @end table
16113
16114 These options can be appended after the subfilter name, separated by a '|'.
16115
16116 Available subfilters are:
16117
16118 @table @option
16119 @item hb/hdeblock[|difference[|flatness]]
16120 Horizontal deblocking filter
16121 @table @option
16122 @item difference
16123 Difference factor where higher values mean more deblocking (default: @code{32}).
16124 @item flatness
16125 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16126 @end table
16127
16128 @item vb/vdeblock[|difference[|flatness]]
16129 Vertical deblocking filter
16130 @table @option
16131 @item difference
16132 Difference factor where higher values mean more deblocking (default: @code{32}).
16133 @item flatness
16134 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16135 @end table
16136
16137 @item ha/hadeblock[|difference[|flatness]]
16138 Accurate horizontal deblocking filter
16139 @table @option
16140 @item difference
16141 Difference factor where higher values mean more deblocking (default: @code{32}).
16142 @item flatness
16143 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16144 @end table
16145
16146 @item va/vadeblock[|difference[|flatness]]
16147 Accurate vertical deblocking filter
16148 @table @option
16149 @item difference
16150 Difference factor where higher values mean more deblocking (default: @code{32}).
16151 @item flatness
16152 Flatness threshold where lower values mean more deblocking (default: @code{39}).
16153 @end table
16154 @end table
16155
16156 The horizontal and vertical deblocking filters share the difference and
16157 flatness values so you cannot set different horizontal and vertical
16158 thresholds.
16159
16160 @table @option
16161 @item h1/x1hdeblock
16162 Experimental horizontal deblocking filter
16163
16164 @item v1/x1vdeblock
16165 Experimental vertical deblocking filter
16166
16167 @item dr/dering
16168 Deringing filter
16169
16170 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
16171 @table @option
16172 @item threshold1
16173 larger -> stronger filtering
16174 @item threshold2
16175 larger -> stronger filtering
16176 @item threshold3
16177 larger -> stronger filtering
16178 @end table
16179
16180 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
16181 @table @option
16182 @item f/fullyrange
16183 Stretch luminance to @code{0-255}.
16184 @end table
16185
16186 @item lb/linblenddeint
16187 Linear blend deinterlacing filter that deinterlaces the given block by
16188 filtering all lines with a @code{(1 2 1)} filter.
16189
16190 @item li/linipoldeint
16191 Linear interpolating deinterlacing filter that deinterlaces the given block by
16192 linearly interpolating every second line.
16193
16194 @item ci/cubicipoldeint
16195 Cubic interpolating deinterlacing filter deinterlaces the given block by
16196 cubically interpolating every second line.
16197
16198 @item md/mediandeint
16199 Median deinterlacing filter that deinterlaces the given block by applying a
16200 median filter to every second line.
16201
16202 @item fd/ffmpegdeint
16203 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
16204 second line with a @code{(-1 4 2 4 -1)} filter.
16205
16206 @item l5/lowpass5
16207 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
16208 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
16209
16210 @item fq/forceQuant[|quantizer]
16211 Overrides the quantizer table from the input with the constant quantizer you
16212 specify.
16213 @table @option
16214 @item quantizer
16215 Quantizer to use
16216 @end table
16217
16218 @item de/default
16219 Default pp filter combination (@code{hb|a,vb|a,dr|a})
16220
16221 @item fa/fast
16222 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
16223
16224 @item ac
16225 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
16226 @end table
16227
16228 @subsection Examples
16229
16230 @itemize
16231 @item
16232 Apply horizontal and vertical deblocking, deringing and automatic
16233 brightness/contrast:
16234 @example
16235 pp=hb/vb/dr/al
16236 @end example
16237
16238 @item
16239 Apply default filters without brightness/contrast correction:
16240 @example
16241 pp=de/-al
16242 @end example
16243
16244 @item
16245 Apply default filters and temporal denoiser:
16246 @example
16247 pp=default/tmpnoise|1|2|3
16248 @end example
16249
16250 @item
16251 Apply deblocking on luminance only, and switch vertical deblocking on or off
16252 automatically depending on available CPU time:
16253 @example
16254 pp=hb|y/vb|a
16255 @end example
16256 @end itemize
16257
16258 @section pp7
16259 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
16260 similar to spp = 6 with 7 point DCT, where only the center sample is
16261 used after IDCT.
16262
16263 The filter accepts the following options:
16264
16265 @table @option
16266 @item qp
16267 Force a constant quantization parameter. It accepts an integer in range
16268 0 to 63. If not set, the filter will use the QP from the video stream
16269 (if available).
16270
16271 @item mode
16272 Set thresholding mode. Available modes are:
16273
16274 @table @samp
16275 @item hard
16276 Set hard thresholding.
16277 @item soft
16278 Set soft thresholding (better de-ringing effect, but likely blurrier).
16279 @item medium
16280 Set medium thresholding (good results, default).
16281 @end table
16282 @end table
16283
16284 @section premultiply
16285 Apply alpha premultiply effect to input video stream using first plane
16286 of second stream as alpha.
16287
16288 Both streams must have same dimensions and same pixel format.
16289
16290 The filter accepts the following option:
16291
16292 @table @option
16293 @item planes
16294 Set which planes will be processed, unprocessed planes will be copied.
16295 By default value 0xf, all planes will be processed.
16296
16297 @item inplace
16298 Do not require 2nd input for processing, instead use alpha plane from input stream.
16299 @end table
16300
16301 @section prewitt
16302 Apply prewitt operator to input video stream.
16303
16304 The filter accepts the following option:
16305
16306 @table @option
16307 @item planes
16308 Set which planes will be processed, unprocessed planes will be copied.
16309 By default value 0xf, all planes will be processed.
16310
16311 @item scale
16312 Set value which will be multiplied with filtered result.
16313
16314 @item delta
16315 Set value which will be added to filtered result.
16316 @end table
16317
16318 @subsection Commands
16319
16320 This filter supports the all above options as @ref{commands}.
16321
16322 @section pseudocolor
16323
16324 Alter frame colors in video with pseudocolors.
16325
16326 This filter accepts the following options:
16327
16328 @table @option
16329 @item c0
16330 set pixel first component expression
16331
16332 @item c1
16333 set pixel second component expression
16334
16335 @item c2
16336 set pixel third component expression
16337
16338 @item c3
16339 set pixel fourth component expression, corresponds to the alpha component
16340
16341 @item i
16342 set component to use as base for altering colors
16343
16344 @item p
16345 Pick one of built-in LUTs. By default is set to none.
16346
16347 Available LUTs:
16348 @table @samp
16349 @item magma
16350 @item inferno
16351 @item plasma
16352 @item viridis
16353 @item turbo
16354 @item cividis
16355 @item range1
16356 @item range2
16357 @end table
16358
16359 @end table
16360
16361 Each of them specifies the expression to use for computing the lookup table for
16362 the corresponding pixel component values.
16363
16364 The expressions can contain the following constants and functions:
16365
16366 @table @option
16367 @item w
16368 @item h
16369 The input width and height.
16370
16371 @item val
16372 The input value for the pixel component.
16373
16374 @item ymin, umin, vmin, amin
16375 The minimum allowed component value.
16376
16377 @item ymax, umax, vmax, amax
16378 The maximum allowed component value.
16379 @end table
16380
16381 All expressions default to "val".
16382
16383 @subsection Commands
16384
16385 This filter supports the all above options as @ref{commands}.
16386
16387 @subsection Examples
16388
16389 @itemize
16390 @item
16391 Change too high luma values to gradient:
16392 @example
16393 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'"
16394 @end example
16395 @end itemize
16396
16397 @section psnr
16398
16399 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
16400 Ratio) between two input videos.
16401
16402 This filter takes in input two input videos, the first input is
16403 considered the "main" source and is passed unchanged to the
16404 output. The second input is used as a "reference" video for computing
16405 the PSNR.
16406
16407 Both video inputs must have the same resolution and pixel format for
16408 this filter to work correctly. Also it assumes that both inputs
16409 have the same number of frames, which are compared one by one.
16410
16411 The obtained average PSNR is printed through the logging system.
16412
16413 The filter stores the accumulated MSE (mean squared error) of each
16414 frame, and at the end of the processing it is averaged across all frames
16415 equally, and the following formula is applied to obtain the PSNR:
16416
16417 @example
16418 PSNR = 10*log10(MAX^2/MSE)
16419 @end example
16420
16421 Where MAX is the average of the maximum values of each component of the
16422 image.
16423
16424 The description of the accepted parameters follows.
16425
16426 @table @option
16427 @item stats_file, f
16428 If specified the filter will use the named file to save the PSNR of
16429 each individual frame. When filename equals "-" the data is sent to
16430 standard output.
16431
16432 @item stats_version
16433 Specifies which version of the stats file format to use. Details of
16434 each format are written below.
16435 Default value is 1.
16436
16437 @item stats_add_max
16438 Determines whether the max value is output to the stats log.
16439 Default value is 0.
16440 Requires stats_version >= 2. If this is set and stats_version < 2,
16441 the filter will return an error.
16442 @end table
16443
16444 This filter also supports the @ref{framesync} options.
16445
16446 The file printed if @var{stats_file} is selected, contains a sequence of
16447 key/value pairs of the form @var{key}:@var{value} for each compared
16448 couple of frames.
16449
16450 If a @var{stats_version} greater than 1 is specified, a header line precedes
16451 the list of per-frame-pair stats, with key value pairs following the frame
16452 format with the following parameters:
16453
16454 @table @option
16455 @item psnr_log_version
16456 The version of the log file format. Will match @var{stats_version}.
16457
16458 @item fields
16459 A comma separated list of the per-frame-pair parameters included in
16460 the log.
16461 @end table
16462
16463 A description of each shown per-frame-pair parameter follows:
16464
16465 @table @option
16466 @item n
16467 sequential number of the input frame, starting from 1
16468
16469 @item mse_avg
16470 Mean Square Error pixel-by-pixel average difference of the compared
16471 frames, averaged over all the image components.
16472
16473 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
16474 Mean Square Error pixel-by-pixel average difference of the compared
16475 frames for the component specified by the suffix.
16476
16477 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
16478 Peak Signal to Noise ratio of the compared frames for the component
16479 specified by the suffix.
16480
16481 @item max_avg, max_y, max_u, max_v
16482 Maximum allowed value for each channel, and average over all
16483 channels.
16484 @end table
16485
16486 @subsection Examples
16487 @itemize
16488 @item
16489 For example:
16490 @example
16491 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16492 [main][ref] psnr="stats_file=stats.log" [out]
16493 @end example
16494
16495 On this example the input file being processed is compared with the
16496 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
16497 is stored in @file{stats.log}.
16498
16499 @item
16500 Another example with different containers:
16501 @example
16502 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 -
16503 @end example
16504 @end itemize
16505
16506 @anchor{pullup}
16507 @section pullup
16508
16509 Pulldown reversal (inverse telecine) filter, capable of handling mixed
16510 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
16511 content.
16512
16513 The pullup filter is designed to take advantage of future context in making
16514 its decisions. This filter is stateless in the sense that it does not lock
16515 onto a pattern to follow, but it instead looks forward to the following
16516 fields in order to identify matches and rebuild progressive frames.
16517
16518 To produce content with an even framerate, insert the fps filter after
16519 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
16520 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
16521
16522 The filter accepts the following options:
16523
16524 @table @option
16525 @item jl
16526 @item jr
16527 @item jt
16528 @item jb
16529 These options set the amount of "junk" to ignore at the left, right, top, and
16530 bottom of the image, respectively. Left and right are in units of 8 pixels,
16531 while top and bottom are in units of 2 lines.
16532 The default is 8 pixels on each side.
16533
16534 @item sb
16535 Set the strict breaks. Setting this option to 1 will reduce the chances of
16536 filter generating an occasional mismatched frame, but it may also cause an
16537 excessive number of frames to be dropped during high motion sequences.
16538 Conversely, setting it to -1 will make filter match fields more easily.
16539 This may help processing of video where there is slight blurring between
16540 the fields, but may also cause there to be interlaced frames in the output.
16541 Default value is @code{0}.
16542
16543 @item mp
16544 Set the metric plane to use. It accepts the following values:
16545 @table @samp
16546 @item l
16547 Use luma plane.
16548
16549 @item u
16550 Use chroma blue plane.
16551
16552 @item v
16553 Use chroma red plane.
16554 @end table
16555
16556 This option may be set to use chroma plane instead of the default luma plane
16557 for doing filter's computations. This may improve accuracy on very clean
16558 source material, but more likely will decrease accuracy, especially if there
16559 is chroma noise (rainbow effect) or any grayscale video.
16560 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
16561 load and make pullup usable in realtime on slow machines.
16562 @end table
16563
16564 For best results (without duplicated frames in the output file) it is
16565 necessary to change the output frame rate. For example, to inverse
16566 telecine NTSC input:
16567 @example
16568 ffmpeg -i input -vf pullup -r 24000/1001 ...
16569 @end example
16570
16571 @section qp
16572
16573 Change video quantization parameters (QP).
16574
16575 The filter accepts the following option:
16576
16577 @table @option
16578 @item qp
16579 Set expression for quantization parameter.
16580 @end table
16581
16582 The expression is evaluated through the eval API and can contain, among others,
16583 the following constants:
16584
16585 @table @var
16586 @item known
16587 1 if index is not 129, 0 otherwise.
16588
16589 @item qp
16590 Sequential index starting from -129 to 128.
16591 @end table
16592
16593 @subsection Examples
16594
16595 @itemize
16596 @item
16597 Some equation like:
16598 @example
16599 qp=2+2*sin(PI*qp)
16600 @end example
16601 @end itemize
16602
16603 @section random
16604
16605 Flush video frames from internal cache of frames into a random order.
16606 No frame is discarded.
16607 Inspired by @ref{frei0r} nervous filter.
16608
16609 @table @option
16610 @item frames
16611 Set size in number of frames of internal cache, in range from @code{2} to
16612 @code{512}. Default is @code{30}.
16613
16614 @item seed
16615 Set seed for random number generator, must be an integer included between
16616 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16617 less than @code{0}, the filter will try to use a good random seed on a
16618 best effort basis.
16619 @end table
16620
16621 @section readeia608
16622
16623 Read closed captioning (EIA-608) information from the top lines of a video frame.
16624
16625 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
16626 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
16627 with EIA-608 data (starting from 0). A description of each metadata value follows:
16628
16629 @table @option
16630 @item lavfi.readeia608.X.cc
16631 The two bytes stored as EIA-608 data (printed in hexadecimal).
16632
16633 @item lavfi.readeia608.X.line
16634 The number of the line on which the EIA-608 data was identified and read.
16635 @end table
16636
16637 This filter accepts the following options:
16638
16639 @table @option
16640 @item scan_min
16641 Set the line to start scanning for EIA-608 data. Default is @code{0}.
16642
16643 @item scan_max
16644 Set the line to end scanning for EIA-608 data. Default is @code{29}.
16645
16646 @item spw
16647 Set the ratio of width reserved for sync code detection.
16648 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
16649
16650 @item chp
16651 Enable checking the parity bit. In the event of a parity error, the filter will output
16652 @code{0x00} for that character. Default is false.
16653
16654 @item lp
16655 Lowpass lines prior to further processing. Default is enabled.
16656 @end table
16657
16658 @subsection Commands
16659
16660 This filter supports the all above options as @ref{commands}.
16661
16662 @subsection Examples
16663
16664 @itemize
16665 @item
16666 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
16667 @example
16668 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
16669 @end example
16670 @end itemize
16671
16672 @section readvitc
16673
16674 Read vertical interval timecode (VITC) information from the top lines of a
16675 video frame.
16676
16677 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
16678 timecode value, if a valid timecode has been detected. Further metadata key
16679 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
16680 timecode data has been found or not.
16681
16682 This filter accepts the following options:
16683
16684 @table @option
16685 @item scan_max
16686 Set the maximum number of lines to scan for VITC data. If the value is set to
16687 @code{-1} the full video frame is scanned. Default is @code{45}.
16688
16689 @item thr_b
16690 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
16691 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
16692
16693 @item thr_w
16694 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16695 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16696 @end table
16697
16698 @subsection Examples
16699
16700 @itemize
16701 @item
16702 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16703 draw @code{--:--:--:--} as a placeholder:
16704 @example
16705 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16706 @end example
16707 @end itemize
16708
16709 @section remap
16710
16711 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16712
16713 Destination pixel at position (X, Y) will be picked from source (x, y) position
16714 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16715 value for pixel will be used for destination pixel.
16716
16717 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16718 will have Xmap/Ymap video stream dimensions.
16719 Xmap and Ymap input video streams are 16bit depth, single channel.
16720
16721 @table @option
16722 @item format
16723 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16724 Default is @code{color}.
16725
16726 @item fill
16727 Specify the color of the unmapped pixels. For the syntax of this option,
16728 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16729 manual,ffmpeg-utils}. Default color is @code{black}.
16730 @end table
16731
16732 @section removegrain
16733
16734 The removegrain filter is a spatial denoiser for progressive video.
16735
16736 @table @option
16737 @item m0
16738 Set mode for the first plane.
16739
16740 @item m1
16741 Set mode for the second plane.
16742
16743 @item m2
16744 Set mode for the third plane.
16745
16746 @item m3
16747 Set mode for the fourth plane.
16748 @end table
16749
16750 Range of mode is from 0 to 24. Description of each mode follows:
16751
16752 @table @var
16753 @item 0
16754 Leave input plane unchanged. Default.
16755
16756 @item 1
16757 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16758
16759 @item 2
16760 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16761
16762 @item 3
16763 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16764
16765 @item 4
16766 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
16767 This is equivalent to a median filter.
16768
16769 @item 5
16770 Line-sensitive clipping giving the minimal change.
16771
16772 @item 6
16773 Line-sensitive clipping, intermediate.
16774
16775 @item 7
16776 Line-sensitive clipping, intermediate.
16777
16778 @item 8
16779 Line-sensitive clipping, intermediate.
16780
16781 @item 9
16782 Line-sensitive clipping on a line where the neighbours pixels are the closest.
16783
16784 @item 10
16785 Replaces the target pixel with the closest neighbour.
16786
16787 @item 11
16788 [1 2 1] horizontal and vertical kernel blur.
16789
16790 @item 12
16791 Same as mode 11.
16792
16793 @item 13
16794 Bob mode, interpolates top field from the line where the neighbours
16795 pixels are the closest.
16796
16797 @item 14
16798 Bob mode, interpolates bottom field from the line where the neighbours
16799 pixels are the closest.
16800
16801 @item 15
16802 Bob mode, interpolates top field. Same as 13 but with a more complicated
16803 interpolation formula.
16804
16805 @item 16
16806 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
16807 interpolation formula.
16808
16809 @item 17
16810 Clips the pixel with the minimum and maximum of respectively the maximum and
16811 minimum of each pair of opposite neighbour pixels.
16812
16813 @item 18
16814 Line-sensitive clipping using opposite neighbours whose greatest distance from
16815 the current pixel is minimal.
16816
16817 @item 19
16818 Replaces the pixel with the average of its 8 neighbours.
16819
16820 @item 20
16821 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
16822
16823 @item 21
16824 Clips pixels using the averages of opposite neighbour.
16825
16826 @item 22
16827 Same as mode 21 but simpler and faster.
16828
16829 @item 23
16830 Small edge and halo removal, but reputed useless.
16831
16832 @item 24
16833 Similar as 23.
16834 @end table
16835
16836 @section removelogo
16837
16838 Suppress a TV station logo, using an image file to determine which
16839 pixels comprise the logo. It works by filling in the pixels that
16840 comprise the logo with neighboring pixels.
16841
16842 The filter accepts the following options:
16843
16844 @table @option
16845 @item filename, f
16846 Set the filter bitmap file, which can be any image format supported by
16847 libavformat. The width and height of the image file must match those of the
16848 video stream being processed.
16849 @end table
16850
16851 Pixels in the provided bitmap image with a value of zero are not
16852 considered part of the logo, non-zero pixels are considered part of
16853 the logo. If you use white (255) for the logo and black (0) for the
16854 rest, you will be safe. For making the filter bitmap, it is
16855 recommended to take a screen capture of a black frame with the logo
16856 visible, and then using a threshold filter followed by the erode
16857 filter once or twice.
16858
16859 If needed, little splotches can be fixed manually. Remember that if
16860 logo pixels are not covered, the filter quality will be much
16861 reduced. Marking too many pixels as part of the logo does not hurt as
16862 much, but it will increase the amount of blurring needed to cover over
16863 the image and will destroy more information than necessary, and extra
16864 pixels will slow things down on a large logo.
16865
16866 @section repeatfields
16867
16868 This filter uses the repeat_field flag from the Video ES headers and hard repeats
16869 fields based on its value.
16870
16871 @section reverse
16872
16873 Reverse a video clip.
16874
16875 Warning: This filter requires memory to buffer the entire clip, so trimming
16876 is suggested.
16877
16878 @subsection Examples
16879
16880 @itemize
16881 @item
16882 Take the first 5 seconds of a clip, and reverse it.
16883 @example
16884 trim=end=5,reverse
16885 @end example
16886 @end itemize
16887
16888 @section rgbashift
16889 Shift R/G/B/A pixels horizontally and/or vertically.
16890
16891 The filter accepts the following options:
16892 @table @option
16893 @item rh
16894 Set amount to shift red horizontally.
16895 @item rv
16896 Set amount to shift red vertically.
16897 @item gh
16898 Set amount to shift green horizontally.
16899 @item gv
16900 Set amount to shift green vertically.
16901 @item bh
16902 Set amount to shift blue horizontally.
16903 @item bv
16904 Set amount to shift blue vertically.
16905 @item ah
16906 Set amount to shift alpha horizontally.
16907 @item av
16908 Set amount to shift alpha vertically.
16909 @item edge
16910 Set edge mode, can be @var{smear}, default, or @var{warp}.
16911 @end table
16912
16913 @subsection Commands
16914
16915 This filter supports the all above options as @ref{commands}.
16916
16917 @section roberts
16918 Apply roberts cross operator to input video stream.
16919
16920 The filter accepts the following option:
16921
16922 @table @option
16923 @item planes
16924 Set which planes will be processed, unprocessed planes will be copied.
16925 By default value 0xf, all planes will be processed.
16926
16927 @item scale
16928 Set value which will be multiplied with filtered result.
16929
16930 @item delta
16931 Set value which will be added to filtered result.
16932 @end table
16933
16934 @subsection Commands
16935
16936 This filter supports the all above options as @ref{commands}.
16937
16938 @section rotate
16939
16940 Rotate video by an arbitrary angle expressed in radians.
16941
16942 The filter accepts the following options:
16943
16944 A description of the optional parameters follows.
16945 @table @option
16946 @item angle, a
16947 Set an expression for the angle by which to rotate the input video
16948 clockwise, expressed as a number of radians. A negative value will
16949 result in a counter-clockwise rotation. By default it is set to "0".
16950
16951 This expression is evaluated for each frame.
16952
16953 @item out_w, ow
16954 Set the output width expression, default value is "iw".
16955 This expression is evaluated just once during configuration.
16956
16957 @item out_h, oh
16958 Set the output height expression, default value is "ih".
16959 This expression is evaluated just once during configuration.
16960
16961 @item bilinear
16962 Enable bilinear interpolation if set to 1, a value of 0 disables
16963 it. Default value is 1.
16964
16965 @item fillcolor, c
16966 Set the color used to fill the output area not covered by the rotated
16967 image. For the general syntax of this option, check the
16968 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16969 If the special value "none" is selected then no
16970 background is printed (useful for example if the background is never shown).
16971
16972 Default value is "black".
16973 @end table
16974
16975 The expressions for the angle and the output size can contain the
16976 following constants and functions:
16977
16978 @table @option
16979 @item n
16980 sequential number of the input frame, starting from 0. It is always NAN
16981 before the first frame is filtered.
16982
16983 @item t
16984 time in seconds of the input frame, it is set to 0 when the filter is
16985 configured. It is always NAN before the first frame is filtered.
16986
16987 @item hsub
16988 @item vsub
16989 horizontal and vertical chroma subsample values. For example for the
16990 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16991
16992 @item in_w, iw
16993 @item in_h, ih
16994 the input video width and height
16995
16996 @item out_w, ow
16997 @item out_h, oh
16998 the output width and height, that is the size of the padded area as
16999 specified by the @var{width} and @var{height} expressions
17000
17001 @item rotw(a)
17002 @item roth(a)
17003 the minimal width/height required for completely containing the input
17004 video rotated by @var{a} radians.
17005
17006 These are only available when computing the @option{out_w} and
17007 @option{out_h} expressions.
17008 @end table
17009
17010 @subsection Examples
17011
17012 @itemize
17013 @item
17014 Rotate the input by PI/6 radians clockwise:
17015 @example
17016 rotate=PI/6
17017 @end example
17018
17019 @item
17020 Rotate the input by PI/6 radians counter-clockwise:
17021 @example
17022 rotate=-PI/6
17023 @end example
17024
17025 @item
17026 Rotate the input by 45 degrees clockwise:
17027 @example
17028 rotate=45*PI/180
17029 @end example
17030
17031 @item
17032 Apply a constant rotation with period T, starting from an angle of PI/3:
17033 @example
17034 rotate=PI/3+2*PI*t/T
17035 @end example
17036
17037 @item
17038 Make the input video rotation oscillating with a period of T
17039 seconds and an amplitude of A radians:
17040 @example
17041 rotate=A*sin(2*PI/T*t)
17042 @end example
17043
17044 @item
17045 Rotate the video, output size is chosen so that the whole rotating
17046 input video is always completely contained in the output:
17047 @example
17048 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
17049 @end example
17050
17051 @item
17052 Rotate the video, reduce the output size so that no background is ever
17053 shown:
17054 @example
17055 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
17056 @end example
17057 @end itemize
17058
17059 @subsection Commands
17060
17061 The filter supports the following commands:
17062
17063 @table @option
17064 @item a, angle
17065 Set the angle expression.
17066 The command accepts the same syntax of the corresponding option.
17067
17068 If the specified expression is not valid, it is kept at its current
17069 value.
17070 @end table
17071
17072 @section sab
17073
17074 Apply Shape Adaptive Blur.
17075
17076 The filter accepts the following options:
17077
17078 @table @option
17079 @item luma_radius, lr
17080 Set luma blur filter strength, must be a value in range 0.1-4.0, default
17081 value is 1.0. A greater value will result in a more blurred image, and
17082 in slower processing.
17083
17084 @item luma_pre_filter_radius, lpfr
17085 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
17086 value is 1.0.
17087
17088 @item luma_strength, ls
17089 Set luma maximum difference between pixels to still be considered, must
17090 be a value in the 0.1-100.0 range, default value is 1.0.
17091
17092 @item chroma_radius, cr
17093 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
17094 greater value will result in a more blurred image, and in slower
17095 processing.
17096
17097 @item chroma_pre_filter_radius, cpfr
17098 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
17099
17100 @item chroma_strength, cs
17101 Set chroma maximum difference between pixels to still be considered,
17102 must be a value in the -0.9-100.0 range.
17103 @end table
17104
17105 Each chroma option value, if not explicitly specified, is set to the
17106 corresponding luma option value.
17107
17108 @anchor{scale}
17109 @section scale
17110
17111 Scale (resize) the input video, using the libswscale library.
17112
17113 The scale filter forces the output display aspect ratio to be the same
17114 of the input, by changing the output sample aspect ratio.
17115
17116 If the input image format is different from the format requested by
17117 the next filter, the scale filter will convert the input to the
17118 requested format.
17119
17120 @subsection Options
17121 The filter accepts the following options, or any of the options
17122 supported by the libswscale scaler.
17123
17124 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
17125 the complete list of scaler options.
17126
17127 @table @option
17128 @item width, w
17129 @item height, h
17130 Set the output video dimension expression. Default value is the input
17131 dimension.
17132
17133 If the @var{width} or @var{w} value is 0, the input width is used for
17134 the output. If the @var{height} or @var{h} value is 0, the input height
17135 is used for the output.
17136
17137 If one and only one of the values is -n with n >= 1, the scale filter
17138 will use a value that maintains the aspect ratio of the input image,
17139 calculated from the other specified dimension. After that it will,
17140 however, make sure that the calculated dimension is divisible by n and
17141 adjust the value if necessary.
17142
17143 If both values are -n with n >= 1, the behavior will be identical to
17144 both values being set to 0 as previously detailed.
17145
17146 See below for the list of accepted constants for use in the dimension
17147 expression.
17148
17149 @item eval
17150 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
17151
17152 @table @samp
17153 @item init
17154 Only evaluate expressions once during the filter initialization or when a command is processed.
17155
17156 @item frame
17157 Evaluate expressions for each incoming frame.
17158
17159 @end table
17160
17161 Default value is @samp{init}.
17162
17163
17164 @item interl
17165 Set the interlacing mode. It accepts the following values:
17166
17167 @table @samp
17168 @item 1
17169 Force interlaced aware scaling.
17170
17171 @item 0
17172 Do not apply interlaced scaling.
17173
17174 @item -1
17175 Select interlaced aware scaling depending on whether the source frames
17176 are flagged as interlaced or not.
17177 @end table
17178
17179 Default value is @samp{0}.
17180
17181 @item flags
17182 Set libswscale scaling flags. See
17183 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
17184 complete list of values. If not explicitly specified the filter applies
17185 the default flags.
17186
17187
17188 @item param0, param1
17189 Set libswscale input parameters for scaling algorithms that need them. See
17190 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
17191 complete documentation. If not explicitly specified the filter applies
17192 empty parameters.
17193
17194
17195
17196 @item size, s
17197 Set the video size. For the syntax of this option, check the
17198 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17199
17200 @item in_color_matrix
17201 @item out_color_matrix
17202 Set in/output YCbCr color space type.
17203
17204 This allows the autodetected value to be overridden as well as allows forcing
17205 a specific value used for the output and encoder.
17206
17207 If not specified, the color space type depends on the pixel format.
17208
17209 Possible values:
17210
17211 @table @samp
17212 @item auto
17213 Choose automatically.
17214
17215 @item bt709
17216 Format conforming to International Telecommunication Union (ITU)
17217 Recommendation BT.709.
17218
17219 @item fcc
17220 Set color space conforming to the United States Federal Communications
17221 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
17222
17223 @item bt601
17224 @item bt470
17225 @item smpte170m
17226 Set color space conforming to:
17227
17228 @itemize
17229 @item
17230 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
17231
17232 @item
17233 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
17234
17235 @item
17236 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
17237
17238 @end itemize
17239
17240 @item smpte240m
17241 Set color space conforming to SMPTE ST 240:1999.
17242
17243 @item bt2020
17244 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
17245 @end table
17246
17247 @item in_range
17248 @item out_range
17249 Set in/output YCbCr sample range.
17250
17251 This allows the autodetected value to be overridden as well as allows forcing
17252 a specific value used for the output and encoder. If not specified, the
17253 range depends on the pixel format. Possible values:
17254
17255 @table @samp
17256 @item auto/unknown
17257 Choose automatically.
17258
17259 @item jpeg/full/pc
17260 Set full range (0-255 in case of 8-bit luma).
17261
17262 @item mpeg/limited/tv
17263 Set "MPEG" range (16-235 in case of 8-bit luma).
17264 @end table
17265
17266 @item force_original_aspect_ratio
17267 Enable decreasing or increasing output video width or height if necessary to
17268 keep the original aspect ratio. Possible values:
17269
17270 @table @samp
17271 @item disable
17272 Scale the video as specified and disable this feature.
17273
17274 @item decrease
17275 The output video dimensions will automatically be decreased if needed.
17276
17277 @item increase
17278 The output video dimensions will automatically be increased if needed.
17279
17280 @end table
17281
17282 One useful instance of this option is that when you know a specific device's
17283 maximum allowed resolution, you can use this to limit the output video to
17284 that, while retaining the aspect ratio. For example, device A allows
17285 1280x720 playback, and your video is 1920x800. Using this option (set it to
17286 decrease) and specifying 1280x720 to the command line makes the output
17287 1280x533.
17288
17289 Please note that this is a different thing than specifying -1 for @option{w}
17290 or @option{h}, you still need to specify the output resolution for this option
17291 to work.
17292
17293 @item force_divisible_by
17294 Ensures that both the output dimensions, width and height, are divisible by the
17295 given integer when used together with @option{force_original_aspect_ratio}. This
17296 works similar to using @code{-n} in the @option{w} and @option{h} options.
17297
17298 This option respects the value set for @option{force_original_aspect_ratio},
17299 increasing or decreasing the resolution accordingly. The video's aspect ratio
17300 may be slightly modified.
17301
17302 This option can be handy if you need to have a video fit within or exceed
17303 a defined resolution using @option{force_original_aspect_ratio} but also have
17304 encoder restrictions on width or height divisibility.
17305
17306 @end table
17307
17308 The values of the @option{w} and @option{h} options are expressions
17309 containing the following constants:
17310
17311 @table @var
17312 @item in_w
17313 @item in_h
17314 The input width and height
17315
17316 @item iw
17317 @item ih
17318 These are the same as @var{in_w} and @var{in_h}.
17319
17320 @item out_w
17321 @item out_h
17322 The output (scaled) width and height
17323
17324 @item ow
17325 @item oh
17326 These are the same as @var{out_w} and @var{out_h}
17327
17328 @item a
17329 The same as @var{iw} / @var{ih}
17330
17331 @item sar
17332 input sample aspect ratio
17333
17334 @item dar
17335 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
17336
17337 @item hsub
17338 @item vsub
17339 horizontal and vertical input chroma subsample values. For example for the
17340 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17341
17342 @item ohsub
17343 @item ovsub
17344 horizontal and vertical output chroma subsample values. For example for the
17345 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17346
17347 @item n
17348 The (sequential) number of the input frame, starting from 0.
17349 Only available with @code{eval=frame}.
17350
17351 @item t
17352 The presentation timestamp of the input frame, expressed as a number of
17353 seconds. Only available with @code{eval=frame}.
17354
17355 @item pos
17356 The position (byte offset) of the frame in the input stream, or NaN if
17357 this information is unavailable and/or meaningless (for example in case of synthetic video).
17358 Only available with @code{eval=frame}.
17359 @end table
17360
17361 @subsection Examples
17362
17363 @itemize
17364 @item
17365 Scale the input video to a size of 200x100
17366 @example
17367 scale=w=200:h=100
17368 @end example
17369
17370 This is equivalent to:
17371 @example
17372 scale=200:100
17373 @end example
17374
17375 or:
17376 @example
17377 scale=200x100
17378 @end example
17379
17380 @item
17381 Specify a size abbreviation for the output size:
17382 @example
17383 scale=qcif
17384 @end example
17385
17386 which can also be written as:
17387 @example
17388 scale=size=qcif
17389 @end example
17390
17391 @item
17392 Scale the input to 2x:
17393 @example
17394 scale=w=2*iw:h=2*ih
17395 @end example
17396
17397 @item
17398 The above is the same as:
17399 @example
17400 scale=2*in_w:2*in_h
17401 @end example
17402
17403 @item
17404 Scale the input to 2x with forced interlaced scaling:
17405 @example
17406 scale=2*iw:2*ih:interl=1
17407 @end example
17408
17409 @item
17410 Scale the input to half size:
17411 @example
17412 scale=w=iw/2:h=ih/2
17413 @end example
17414
17415 @item
17416 Increase the width, and set the height to the same size:
17417 @example
17418 scale=3/2*iw:ow
17419 @end example
17420
17421 @item
17422 Seek Greek harmony:
17423 @example
17424 scale=iw:1/PHI*iw
17425 scale=ih*PHI:ih
17426 @end example
17427
17428 @item
17429 Increase the height, and set the width to 3/2 of the height:
17430 @example
17431 scale=w=3/2*oh:h=3/5*ih
17432 @end example
17433
17434 @item
17435 Increase the size, making the size a multiple of the chroma
17436 subsample values:
17437 @example
17438 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
17439 @end example
17440
17441 @item
17442 Increase the width to a maximum of 500 pixels,
17443 keeping the same aspect ratio as the input:
17444 @example
17445 scale=w='min(500\, iw*3/2):h=-1'
17446 @end example
17447
17448 @item
17449 Make pixels square by combining scale and setsar:
17450 @example
17451 scale='trunc(ih*dar):ih',setsar=1/1
17452 @end example
17453
17454 @item
17455 Make pixels square by combining scale and setsar,
17456 making sure the resulting resolution is even (required by some codecs):
17457 @example
17458 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
17459 @end example
17460 @end itemize
17461
17462 @subsection Commands
17463
17464 This filter supports the following commands:
17465 @table @option
17466 @item width, w
17467 @item height, h
17468 Set the output video dimension expression.
17469 The command accepts the same syntax of the corresponding option.
17470
17471 If the specified expression is not valid, it is kept at its current
17472 value.
17473 @end table
17474
17475 @section scale_npp
17476
17477 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
17478 format conversion on CUDA video frames. Setting the output width and height
17479 works in the same way as for the @var{scale} filter.
17480
17481 The following additional options are accepted:
17482 @table @option
17483 @item format
17484 The pixel format of the output CUDA frames. If set to the string "same" (the
17485 default), the input format will be kept. Note that automatic format negotiation
17486 and conversion is not yet supported for hardware frames
17487
17488 @item interp_algo
17489 The interpolation algorithm used for resizing. One of the following:
17490 @table @option
17491 @item nn
17492 Nearest neighbour.
17493
17494 @item linear
17495 @item cubic
17496 @item cubic2p_bspline
17497 2-parameter cubic (B=1, C=0)
17498
17499 @item cubic2p_catmullrom
17500 2-parameter cubic (B=0, C=1/2)
17501
17502 @item cubic2p_b05c03
17503 2-parameter cubic (B=1/2, C=3/10)
17504
17505 @item super
17506 Supersampling
17507
17508 @item lanczos
17509 @end table
17510
17511 @item force_original_aspect_ratio
17512 Enable decreasing or increasing output video width or height if necessary to
17513 keep the original aspect ratio. Possible values:
17514
17515 @table @samp
17516 @item disable
17517 Scale the video as specified and disable this feature.
17518
17519 @item decrease
17520 The output video dimensions will automatically be decreased if needed.
17521
17522 @item increase
17523 The output video dimensions will automatically be increased if needed.
17524
17525 @end table
17526
17527 One useful instance of this option is that when you know a specific device's
17528 maximum allowed resolution, you can use this to limit the output video to
17529 that, while retaining the aspect ratio. For example, device A allows
17530 1280x720 playback, and your video is 1920x800. Using this option (set it to
17531 decrease) and specifying 1280x720 to the command line makes the output
17532 1280x533.
17533
17534 Please note that this is a different thing than specifying -1 for @option{w}
17535 or @option{h}, you still need to specify the output resolution for this option
17536 to work.
17537
17538 @item force_divisible_by
17539 Ensures that both the output dimensions, width and height, are divisible by the
17540 given integer when used together with @option{force_original_aspect_ratio}. This
17541 works similar to using @code{-n} in the @option{w} and @option{h} options.
17542
17543 This option respects the value set for @option{force_original_aspect_ratio},
17544 increasing or decreasing the resolution accordingly. The video's aspect ratio
17545 may be slightly modified.
17546
17547 This option can be handy if you need to have a video fit within or exceed
17548 a defined resolution using @option{force_original_aspect_ratio} but also have
17549 encoder restrictions on width or height divisibility.
17550
17551 @end table
17552
17553 @section scale2ref
17554
17555 Scale (resize) the input video, based on a reference video.
17556
17557 See the scale filter for available options, scale2ref supports the same but
17558 uses the reference video instead of the main input as basis. scale2ref also
17559 supports the following additional constants for the @option{w} and
17560 @option{h} options:
17561
17562 @table @var
17563 @item main_w
17564 @item main_h
17565 The main input video's width and height
17566
17567 @item main_a
17568 The same as @var{main_w} / @var{main_h}
17569
17570 @item main_sar
17571 The main input video's sample aspect ratio
17572
17573 @item main_dar, mdar
17574 The main input video's display aspect ratio. Calculated from
17575 @code{(main_w / main_h) * main_sar}.
17576
17577 @item main_hsub
17578 @item main_vsub
17579 The main input video's horizontal and vertical chroma subsample values.
17580 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
17581 is 1.
17582
17583 @item main_n
17584 The (sequential) number of the main input frame, starting from 0.
17585 Only available with @code{eval=frame}.
17586
17587 @item main_t
17588 The presentation timestamp of the main input frame, expressed as a number of
17589 seconds. Only available with @code{eval=frame}.
17590
17591 @item main_pos
17592 The position (byte offset) of the frame in the main input stream, or NaN if
17593 this information is unavailable and/or meaningless (for example in case of synthetic video).
17594 Only available with @code{eval=frame}.
17595 @end table
17596
17597 @subsection Examples
17598
17599 @itemize
17600 @item
17601 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
17602 @example
17603 'scale2ref[b][a];[a][b]overlay'
17604 @end example
17605
17606 @item
17607 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
17608 @example
17609 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
17610 @end example
17611 @end itemize
17612
17613 @subsection Commands
17614
17615 This filter supports the following commands:
17616 @table @option
17617 @item width, w
17618 @item height, h
17619 Set the output video dimension expression.
17620 The command accepts the same syntax of the corresponding option.
17621
17622 If the specified expression is not valid, it is kept at its current
17623 value.
17624 @end table
17625
17626 @section scroll
17627 Scroll input video horizontally and/or vertically by constant speed.
17628
17629 The filter accepts the following options:
17630 @table @option
17631 @item horizontal, h
17632 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
17633 Negative values changes scrolling direction.
17634
17635 @item vertical, v
17636 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
17637 Negative values changes scrolling direction.
17638
17639 @item hpos
17640 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
17641
17642 @item vpos
17643 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
17644 @end table
17645
17646 @subsection Commands
17647
17648 This filter supports the following @ref{commands}:
17649 @table @option
17650 @item horizontal, h
17651 Set the horizontal scrolling speed.
17652 @item vertical, v
17653 Set the vertical scrolling speed.
17654 @end table
17655
17656 @anchor{scdet}
17657 @section scdet
17658
17659 Detect video scene change.
17660
17661 This filter sets frame metadata with mafd between frame, the scene score, and
17662 forward the frame to the next filter, so they can use these metadata to detect
17663 scene change or others.
17664
17665 In addition, this filter logs a message and sets frame metadata when it detects
17666 a scene change by @option{threshold}.
17667
17668 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
17669
17670 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
17671 to detect scene change.
17672
17673 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
17674 detect scene change with @option{threshold}.
17675
17676 The filter accepts the following options:
17677
17678 @table @option
17679 @item threshold, t
17680 Set the scene change detection threshold as a percentage of maximum change. Good
17681 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
17682 @code{[0., 100.]}.
17683
17684 Default value is @code{10.}.
17685
17686 @item sc_pass, s
17687 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
17688 You can enable it if you want to get snapshot of scene change frames only.
17689 @end table
17690
17691 @anchor{selectivecolor}
17692 @section selectivecolor
17693
17694 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
17695 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
17696 by the "purity" of the color (that is, how saturated it already is).
17697
17698 This filter is similar to the Adobe Photoshop Selective Color tool.
17699
17700 The filter accepts the following options:
17701
17702 @table @option
17703 @item correction_method
17704 Select color correction method.
17705
17706 Available values are:
17707 @table @samp
17708 @item absolute
17709 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17710 component value).
17711 @item relative
17712 Specified adjustments are relative to the original component value.
17713 @end table
17714 Default is @code{absolute}.
17715 @item reds
17716 Adjustments for red pixels (pixels where the red component is the maximum)
17717 @item yellows
17718 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17719 @item greens
17720 Adjustments for green pixels (pixels where the green component is the maximum)
17721 @item cyans
17722 Adjustments for cyan pixels (pixels where the red component is the minimum)
17723 @item blues
17724 Adjustments for blue pixels (pixels where the blue component is the maximum)
17725 @item magentas
17726 Adjustments for magenta pixels (pixels where the green component is the minimum)
17727 @item whites
17728 Adjustments for white pixels (pixels where all components are greater than 128)
17729 @item neutrals
17730 Adjustments for all pixels except pure black and pure white
17731 @item blacks
17732 Adjustments for black pixels (pixels where all components are lesser than 128)
17733 @item psfile
17734 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17735 @end table
17736
17737 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17738 4 space separated floating point adjustment values in the [-1,1] range,
17739 respectively to adjust the amount of cyan, magenta, yellow and black for the
17740 pixels of its range.
17741
17742 @subsection Examples
17743
17744 @itemize
17745 @item
17746 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17747 increase magenta by 27% in blue areas:
17748 @example
17749 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17750 @end example
17751
17752 @item
17753 Use a Photoshop selective color preset:
17754 @example
17755 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17756 @end example
17757 @end itemize
17758
17759 @anchor{separatefields}
17760 @section separatefields
17761
17762 The @code{separatefields} takes a frame-based video input and splits
17763 each frame into its components fields, producing a new half height clip
17764 with twice the frame rate and twice the frame count.
17765
17766 This filter use field-dominance information in frame to decide which
17767 of each pair of fields to place first in the output.
17768 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
17769
17770 @section setdar, setsar
17771
17772 The @code{setdar} filter sets the Display Aspect Ratio for the filter
17773 output video.
17774
17775 This is done by changing the specified Sample (aka Pixel) Aspect
17776 Ratio, according to the following equation:
17777 @example
17778 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
17779 @end example
17780
17781 Keep in mind that the @code{setdar} filter does not modify the pixel
17782 dimensions of the video frame. Also, the display aspect ratio set by
17783 this filter may be changed by later filters in the filterchain,
17784 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
17785 applied.
17786
17787 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
17788 the filter output video.
17789
17790 Note that as a consequence of the application of this filter, the
17791 output display aspect ratio will change according to the equation
17792 above.
17793
17794 Keep in mind that the sample aspect ratio set by the @code{setsar}
17795 filter may be changed by later filters in the filterchain, e.g. if
17796 another "setsar" or a "setdar" filter is applied.
17797
17798 It accepts the following parameters:
17799
17800 @table @option
17801 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
17802 Set the aspect ratio used by the filter.
17803
17804 The parameter can be a floating point number string, an expression, or
17805 a string of the form @var{num}:@var{den}, where @var{num} and
17806 @var{den} are the numerator and denominator of the aspect ratio. If
17807 the parameter is not specified, it is assumed the value "0".
17808 In case the form "@var{num}:@var{den}" is used, the @code{:} character
17809 should be escaped.
17810
17811 @item max
17812 Set the maximum integer value to use for expressing numerator and
17813 denominator when reducing the expressed aspect ratio to a rational.
17814 Default value is @code{100}.
17815
17816 @end table
17817
17818 The parameter @var{sar} is an expression containing
17819 the following constants:
17820
17821 @table @option
17822 @item E, PI, PHI
17823 These are approximated values for the mathematical constants e
17824 (Euler's number), pi (Greek pi), and phi (the golden ratio).
17825
17826 @item w, h
17827 The input width and height.
17828
17829 @item a
17830 These are the same as @var{w} / @var{h}.
17831
17832 @item sar
17833 The input sample aspect ratio.
17834
17835 @item dar
17836 The input display aspect ratio. It is the same as
17837 (@var{w} / @var{h}) * @var{sar}.
17838
17839 @item hsub, vsub
17840 Horizontal and vertical chroma subsample values. For example, for the
17841 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17842 @end table
17843
17844 @subsection Examples
17845
17846 @itemize
17847
17848 @item
17849 To change the display aspect ratio to 16:9, specify one of the following:
17850 @example
17851 setdar=dar=1.77777
17852 setdar=dar=16/9
17853 @end example
17854
17855 @item
17856 To change the sample aspect ratio to 10:11, specify:
17857 @example
17858 setsar=sar=10/11
17859 @end example
17860
17861 @item
17862 To set a display aspect ratio of 16:9, and specify a maximum integer value of
17863 1000 in the aspect ratio reduction, use the command:
17864 @example
17865 setdar=ratio=16/9:max=1000
17866 @end example
17867
17868 @end itemize
17869
17870 @anchor{setfield}
17871 @section setfield
17872
17873 Force field for the output video frame.
17874
17875 The @code{setfield} filter marks the interlace type field for the
17876 output frames. It does not change the input frame, but only sets the
17877 corresponding property, which affects how the frame is treated by
17878 following filters (e.g. @code{fieldorder} or @code{yadif}).
17879
17880 The filter accepts the following options:
17881
17882 @table @option
17883
17884 @item mode
17885 Available values are:
17886
17887 @table @samp
17888 @item auto
17889 Keep the same field property.
17890
17891 @item bff
17892 Mark the frame as bottom-field-first.
17893
17894 @item tff
17895 Mark the frame as top-field-first.
17896
17897 @item prog
17898 Mark the frame as progressive.
17899 @end table
17900 @end table
17901
17902 @anchor{setparams}
17903 @section setparams
17904
17905 Force frame parameter for the output video frame.
17906
17907 The @code{setparams} filter marks interlace and color range for the
17908 output frames. It does not change the input frame, but only sets the
17909 corresponding property, which affects how the frame is treated by
17910 filters/encoders.
17911
17912 @table @option
17913 @item field_mode
17914 Available values are:
17915
17916 @table @samp
17917 @item auto
17918 Keep the same field property (default).
17919
17920 @item bff
17921 Mark the frame as bottom-field-first.
17922
17923 @item tff
17924 Mark the frame as top-field-first.
17925
17926 @item prog
17927 Mark the frame as progressive.
17928 @end table
17929
17930 @item range
17931 Available values are:
17932
17933 @table @samp
17934 @item auto
17935 Keep the same color range property (default).
17936
17937 @item unspecified, unknown
17938 Mark the frame as unspecified color range.
17939
17940 @item limited, tv, mpeg
17941 Mark the frame as limited range.
17942
17943 @item full, pc, jpeg
17944 Mark the frame as full range.
17945 @end table
17946
17947 @item color_primaries
17948 Set the color primaries.
17949 Available values are:
17950
17951 @table @samp
17952 @item auto
17953 Keep the same color primaries property (default).
17954
17955 @item bt709
17956 @item unknown
17957 @item bt470m
17958 @item bt470bg
17959 @item smpte170m
17960 @item smpte240m
17961 @item film
17962 @item bt2020
17963 @item smpte428
17964 @item smpte431
17965 @item smpte432
17966 @item jedec-p22
17967 @end table
17968
17969 @item color_trc
17970 Set the color transfer.
17971 Available values are:
17972
17973 @table @samp
17974 @item auto
17975 Keep the same color trc property (default).
17976
17977 @item bt709
17978 @item unknown
17979 @item bt470m
17980 @item bt470bg
17981 @item smpte170m
17982 @item smpte240m
17983 @item linear
17984 @item log100
17985 @item log316
17986 @item iec61966-2-4
17987 @item bt1361e
17988 @item iec61966-2-1
17989 @item bt2020-10
17990 @item bt2020-12
17991 @item smpte2084
17992 @item smpte428
17993 @item arib-std-b67
17994 @end table
17995
17996 @item colorspace
17997 Set the colorspace.
17998 Available values are:
17999
18000 @table @samp
18001 @item auto
18002 Keep the same colorspace property (default).
18003
18004 @item gbr
18005 @item bt709
18006 @item unknown
18007 @item fcc
18008 @item bt470bg
18009 @item smpte170m
18010 @item smpte240m
18011 @item ycgco
18012 @item bt2020nc
18013 @item bt2020c
18014 @item smpte2085
18015 @item chroma-derived-nc
18016 @item chroma-derived-c
18017 @item ictcp
18018 @end table
18019 @end table
18020
18021 @section shear
18022 Apply shear transform to input video.
18023
18024 This filter supports the following options:
18025
18026 @table @option
18027 @item shx
18028 Shear factor in X-direction. Default value is 0.
18029 Allowed range is from -2 to 2.
18030
18031 @item shy
18032 Shear factor in Y-direction. Default value is 0.
18033 Allowed range is from -2 to 2.
18034
18035 @item fillcolor, c
18036 Set the color used to fill the output area not covered by the transformed
18037 video. For the general syntax of this option, check the
18038 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18039 If the special value "none" is selected then no
18040 background is printed (useful for example if the background is never shown).
18041
18042 Default value is "black".
18043
18044 @item interp
18045 Set interpolation type. Can be @code{bilinear} or @code{nearest}. Default is @code{bilinear}.
18046 @end table
18047
18048 @subsection Commands
18049
18050 This filter supports the all above options as @ref{commands}.
18051
18052 @section showinfo
18053
18054 Show a line containing various information for each input video frame.
18055 The input video is not modified.
18056
18057 This filter supports the following options:
18058
18059 @table @option
18060 @item checksum
18061 Calculate checksums of each plane. By default enabled.
18062 @end table
18063
18064 The shown line contains a sequence of key/value pairs of the form
18065 @var{key}:@var{value}.
18066
18067 The following values are shown in the output:
18068
18069 @table @option
18070 @item n
18071 The (sequential) number of the input frame, starting from 0.
18072
18073 @item pts
18074 The Presentation TimeStamp of the input frame, expressed as a number of
18075 time base units. The time base unit depends on the filter input pad.
18076
18077 @item pts_time
18078 The Presentation TimeStamp of the input frame, expressed as a number of
18079 seconds.
18080
18081 @item pos
18082 The position of the frame in the input stream, or -1 if this information is
18083 unavailable and/or meaningless (for example in case of synthetic video).
18084
18085 @item fmt
18086 The pixel format name.
18087
18088 @item sar
18089 The sample aspect ratio of the input frame, expressed in the form
18090 @var{num}/@var{den}.
18091
18092 @item s
18093 The size of the input frame. For the syntax of this option, check the
18094 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18095
18096 @item i
18097 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
18098 for bottom field first).
18099
18100 @item iskey
18101 This is 1 if the frame is a key frame, 0 otherwise.
18102
18103 @item type
18104 The picture type of the input frame ("I" for an I-frame, "P" for a
18105 P-frame, "B" for a B-frame, or "?" for an unknown type).
18106 Also refer to the documentation of the @code{AVPictureType} enum and of
18107 the @code{av_get_picture_type_char} function defined in
18108 @file{libavutil/avutil.h}.
18109
18110 @item checksum
18111 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
18112
18113 @item plane_checksum
18114 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
18115 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
18116
18117 @item mean
18118 The mean value of pixels in each plane of the input frame, expressed in the form
18119 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
18120
18121 @item stdev
18122 The standard deviation of pixel values in each plane of the input frame, expressed
18123 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
18124
18125 @end table
18126
18127 @section showpalette
18128
18129 Displays the 256 colors palette of each frame. This filter is only relevant for
18130 @var{pal8} pixel format frames.
18131
18132 It accepts the following option:
18133
18134 @table @option
18135 @item s
18136 Set the size of the box used to represent one palette color entry. Default is
18137 @code{30} (for a @code{30x30} pixel box).
18138 @end table
18139
18140 @section shuffleframes
18141
18142 Reorder and/or duplicate and/or drop video frames.
18143
18144 It accepts the following parameters:
18145
18146 @table @option
18147 @item mapping
18148 Set the destination indexes of input frames.
18149 This is space or '|' separated list of indexes that maps input frames to output
18150 frames. Number of indexes also sets maximal value that each index may have.
18151 '-1' index have special meaning and that is to drop frame.
18152 @end table
18153
18154 The first frame has the index 0. The default is to keep the input unchanged.
18155
18156 @subsection Examples
18157
18158 @itemize
18159 @item
18160 Swap second and third frame of every three frames of the input:
18161 @example
18162 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
18163 @end example
18164
18165 @item
18166 Swap 10th and 1st frame of every ten frames of the input:
18167 @example
18168 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
18169 @end example
18170 @end itemize
18171
18172 @section shufflepixels
18173
18174 Reorder pixels in video frames.
18175
18176 This filter accepts the following options:
18177
18178 @table @option
18179 @item direction, d
18180 Set shuffle direction. Can be forward or inverse direction.
18181 Default direction is forward.
18182
18183 @item mode, m
18184 Set shuffle mode. Can be horizontal, vertical or block mode.
18185
18186 @item width, w
18187 @item height, h
18188 Set shuffle block_size. In case of horizontal shuffle mode only width
18189 part of size is used, and in case of vertical shuffle mode only height
18190 part of size is used.
18191
18192 @item seed, s
18193 Set random seed used with shuffling pixels. Mainly useful to set to be able
18194 to reverse filtering process to get original input.
18195 For example, to reverse forward shuffle you need to use same parameters
18196 and exact same seed and to set direction to inverse.
18197 @end table
18198
18199 @section shuffleplanes
18200
18201 Reorder and/or duplicate video planes.
18202
18203 It accepts the following parameters:
18204
18205 @table @option
18206
18207 @item map0
18208 The index of the input plane to be used as the first output plane.
18209
18210 @item map1
18211 The index of the input plane to be used as the second output plane.
18212
18213 @item map2
18214 The index of the input plane to be used as the third output plane.
18215
18216 @item map3
18217 The index of the input plane to be used as the fourth output plane.
18218
18219 @end table
18220
18221 The first plane has the index 0. The default is to keep the input unchanged.
18222
18223 @subsection Examples
18224
18225 @itemize
18226 @item
18227 Swap the second and third planes of the input:
18228 @example
18229 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
18230 @end example
18231 @end itemize
18232
18233 @anchor{signalstats}
18234 @section signalstats
18235 Evaluate various visual metrics that assist in determining issues associated
18236 with the digitization of analog video media.
18237
18238 By default the filter will log these metadata values:
18239
18240 @table @option
18241 @item YMIN
18242 Display the minimal Y value contained within the input frame. Expressed in
18243 range of [0-255].
18244
18245 @item YLOW
18246 Display the Y value at the 10% percentile within the input frame. Expressed in
18247 range of [0-255].
18248
18249 @item YAVG
18250 Display the average Y value within the input frame. Expressed in range of
18251 [0-255].
18252
18253 @item YHIGH
18254 Display the Y value at the 90% percentile within the input frame. Expressed in
18255 range of [0-255].
18256
18257 @item YMAX
18258 Display the maximum Y value contained within the input frame. Expressed in
18259 range of [0-255].
18260
18261 @item UMIN
18262 Display the minimal U value contained within the input frame. Expressed in
18263 range of [0-255].
18264
18265 @item ULOW
18266 Display the U value at the 10% percentile within the input frame. Expressed in
18267 range of [0-255].
18268
18269 @item UAVG
18270 Display the average U value within the input frame. Expressed in range of
18271 [0-255].
18272
18273 @item UHIGH
18274 Display the U value at the 90% percentile within the input frame. Expressed in
18275 range of [0-255].
18276
18277 @item UMAX
18278 Display the maximum U value contained within the input frame. Expressed in
18279 range of [0-255].
18280
18281 @item VMIN
18282 Display the minimal V value contained within the input frame. Expressed in
18283 range of [0-255].
18284
18285 @item VLOW
18286 Display the V value at the 10% percentile within the input frame. Expressed in
18287 range of [0-255].
18288
18289 @item VAVG
18290 Display the average V value within the input frame. Expressed in range of
18291 [0-255].
18292
18293 @item VHIGH
18294 Display the V value at the 90% percentile within the input frame. Expressed in
18295 range of [0-255].
18296
18297 @item VMAX
18298 Display the maximum V value contained within the input frame. Expressed in
18299 range of [0-255].
18300
18301 @item SATMIN
18302 Display the minimal saturation value contained within the input frame.
18303 Expressed in range of [0-~181.02].
18304
18305 @item SATLOW
18306 Display the saturation value at the 10% percentile within the input frame.
18307 Expressed in range of [0-~181.02].
18308
18309 @item SATAVG
18310 Display the average saturation value within the input frame. Expressed in range
18311 of [0-~181.02].
18312
18313 @item SATHIGH
18314 Display the saturation value at the 90% percentile within the input frame.
18315 Expressed in range of [0-~181.02].
18316
18317 @item SATMAX
18318 Display the maximum saturation value contained within the input frame.
18319 Expressed in range of [0-~181.02].
18320
18321 @item HUEMED
18322 Display the median value for hue within the input frame. Expressed in range of
18323 [0-360].
18324
18325 @item HUEAVG
18326 Display the average value for hue within the input frame. Expressed in range of
18327 [0-360].
18328
18329 @item YDIF
18330 Display the average of sample value difference between all values of the Y
18331 plane in the current frame and corresponding values of the previous input frame.
18332 Expressed in range of [0-255].
18333
18334 @item UDIF
18335 Display the average of sample value difference between all values of the U
18336 plane in the current frame and corresponding values of the previous input frame.
18337 Expressed in range of [0-255].
18338
18339 @item VDIF
18340 Display the average of sample value difference between all values of the V
18341 plane in the current frame and corresponding values of the previous input frame.
18342 Expressed in range of [0-255].
18343
18344 @item YBITDEPTH
18345 Display bit depth of Y plane in current frame.
18346 Expressed in range of [0-16].
18347
18348 @item UBITDEPTH
18349 Display bit depth of U plane in current frame.
18350 Expressed in range of [0-16].
18351
18352 @item VBITDEPTH
18353 Display bit depth of V plane in current frame.
18354 Expressed in range of [0-16].
18355 @end table
18356
18357 The filter accepts the following options:
18358
18359 @table @option
18360 @item stat
18361 @item out
18362
18363 @option{stat} specify an additional form of image analysis.
18364 @option{out} output video with the specified type of pixel highlighted.
18365
18366 Both options accept the following values:
18367
18368 @table @samp
18369 @item tout
18370 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
18371 unlike the neighboring pixels of the same field. Examples of temporal outliers
18372 include the results of video dropouts, head clogs, or tape tracking issues.
18373
18374 @item vrep
18375 Identify @var{vertical line repetition}. Vertical line repetition includes
18376 similar rows of pixels within a frame. In born-digital video vertical line
18377 repetition is common, but this pattern is uncommon in video digitized from an
18378 analog source. When it occurs in video that results from the digitization of an
18379 analog source it can indicate concealment from a dropout compensator.
18380
18381 @item brng
18382 Identify pixels that fall outside of legal broadcast range.
18383 @end table
18384
18385 @item color, c
18386 Set the highlight color for the @option{out} option. The default color is
18387 yellow.
18388 @end table
18389
18390 @subsection Examples
18391
18392 @itemize
18393 @item
18394 Output data of various video metrics:
18395 @example
18396 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
18397 @end example
18398
18399 @item
18400 Output specific data about the minimum and maximum values of the Y plane per frame:
18401 @example
18402 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
18403 @end example
18404
18405 @item
18406 Playback video while highlighting pixels that are outside of broadcast range in red.
18407 @example
18408 ffplay example.mov -vf signalstats="out=brng:color=red"
18409 @end example
18410
18411 @item
18412 Playback video with signalstats metadata drawn over the frame.
18413 @example
18414 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
18415 @end example
18416
18417 The contents of signalstat_drawtext.txt used in the command are:
18418 @example
18419 time %@{pts:hms@}
18420 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
18421 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
18422 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
18423 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
18424
18425 @end example
18426 @end itemize
18427
18428 @anchor{signature}
18429 @section signature
18430
18431 Calculates the MPEG-7 Video Signature. The filter can handle more than one
18432 input. In this case the matching between the inputs can be calculated additionally.
18433 The filter always passes through the first input. The signature of each stream can
18434 be written into a file.
18435
18436 It accepts the following options:
18437
18438 @table @option
18439 @item detectmode
18440 Enable or disable the matching process.
18441
18442 Available values are:
18443
18444 @table @samp
18445 @item off
18446 Disable the calculation of a matching (default).
18447 @item full
18448 Calculate the matching for the whole video and output whether the whole video
18449 matches or only parts.
18450 @item fast
18451 Calculate only until a matching is found or the video ends. Should be faster in
18452 some cases.
18453 @end table
18454
18455 @item nb_inputs
18456 Set the number of inputs. The option value must be a non negative integer.
18457 Default value is 1.
18458
18459 @item filename
18460 Set the path to which the output is written. If there is more than one input,
18461 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
18462 integer), that will be replaced with the input number. If no filename is
18463 specified, no output will be written. This is the default.
18464
18465 @item format
18466 Choose the output format.
18467
18468 Available values are:
18469
18470 @table @samp
18471 @item binary
18472 Use the specified binary representation (default).
18473 @item xml
18474 Use the specified xml representation.
18475 @end table
18476
18477 @item th_d
18478 Set threshold to detect one word as similar. The option value must be an integer
18479 greater than zero. The default value is 9000.
18480
18481 @item th_dc
18482 Set threshold to detect all words as similar. The option value must be an integer
18483 greater than zero. The default value is 60000.
18484
18485 @item th_xh
18486 Set threshold to detect frames as similar. The option value must be an integer
18487 greater than zero. The default value is 116.
18488
18489 @item th_di
18490 Set the minimum length of a sequence in frames to recognize it as matching
18491 sequence. The option value must be a non negative integer value.
18492 The default value is 0.
18493
18494 @item th_it
18495 Set the minimum relation, that matching frames to all frames must have.
18496 The option value must be a double value between 0 and 1. The default value is 0.5.
18497 @end table
18498
18499 @subsection Examples
18500
18501 @itemize
18502 @item
18503 To calculate the signature of an input video and store it in signature.bin:
18504 @example
18505 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
18506 @end example
18507
18508 @item
18509 To detect whether two videos match and store the signatures in XML format in
18510 signature0.xml and signature1.xml:
18511 @example
18512 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 -
18513 @end example
18514
18515 @end itemize
18516
18517 @anchor{smartblur}
18518 @section smartblur
18519
18520 Blur the input video without impacting the outlines.
18521
18522 It accepts the following options:
18523
18524 @table @option
18525 @item luma_radius, lr
18526 Set the luma radius. The option value must be a float number in
18527 the range [0.1,5.0] that specifies the variance of the gaussian filter
18528 used to blur the image (slower if larger). Default value is 1.0.
18529
18530 @item luma_strength, ls
18531 Set the luma strength. The option value must be a float number
18532 in the range [-1.0,1.0] that configures the blurring. A value included
18533 in [0.0,1.0] will blur the image whereas a value included in
18534 [-1.0,0.0] will sharpen the image. Default value is 1.0.
18535
18536 @item luma_threshold, lt
18537 Set the luma threshold used as a coefficient to determine
18538 whether a pixel should be blurred or not. The option value must be an
18539 integer in the range [-30,30]. A value of 0 will filter all the image,
18540 a value included in [0,30] will filter flat areas and a value included
18541 in [-30,0] will filter edges. Default value is 0.
18542
18543 @item chroma_radius, cr
18544 Set the chroma radius. The option value must be a float number in
18545 the range [0.1,5.0] that specifies the variance of the gaussian filter
18546 used to blur the image (slower if larger). Default value is @option{luma_radius}.
18547
18548 @item chroma_strength, cs
18549 Set the chroma strength. The option value must be a float number
18550 in the range [-1.0,1.0] that configures the blurring. A value included
18551 in [0.0,1.0] will blur the image whereas a value included in
18552 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
18553
18554 @item chroma_threshold, ct
18555 Set the chroma threshold used as a coefficient to determine
18556 whether a pixel should be blurred or not. The option value must be an
18557 integer in the range [-30,30]. A value of 0 will filter all the image,
18558 a value included in [0,30] will filter flat areas and a value included
18559 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
18560 @end table
18561
18562 If a chroma option is not explicitly set, the corresponding luma value
18563 is set.
18564
18565 @section sobel
18566 Apply sobel operator to input video stream.
18567
18568 The filter accepts the following option:
18569
18570 @table @option
18571 @item planes
18572 Set which planes will be processed, unprocessed planes will be copied.
18573 By default value 0xf, all planes will be processed.
18574
18575 @item scale
18576 Set value which will be multiplied with filtered result.
18577
18578 @item delta
18579 Set value which will be added to filtered result.
18580 @end table
18581
18582 @subsection Commands
18583
18584 This filter supports the all above options as @ref{commands}.
18585
18586 @anchor{spp}
18587 @section spp
18588
18589 Apply a simple postprocessing filter that compresses and decompresses the image
18590 at several (or - in the case of @option{quality} level @code{6} - all) shifts
18591 and average the results.
18592
18593 The filter accepts the following options:
18594
18595 @table @option
18596 @item quality
18597 Set quality. This option defines the number of levels for averaging. It accepts
18598 an integer in the range 0-6. If set to @code{0}, the filter will have no
18599 effect. A value of @code{6} means the higher quality. For each increment of
18600 that value the speed drops by a factor of approximately 2.  Default value is
18601 @code{3}.
18602
18603 @item qp
18604 Force a constant quantization parameter. If not set, the filter will use the QP
18605 from the video stream (if available).
18606
18607 @item mode
18608 Set thresholding mode. Available modes are:
18609
18610 @table @samp
18611 @item hard
18612 Set hard thresholding (default).
18613 @item soft
18614 Set soft thresholding (better de-ringing effect, but likely blurrier).
18615 @end table
18616
18617 @item use_bframe_qp
18618 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
18619 option may cause flicker since the B-Frames have often larger QP. Default is
18620 @code{0} (not enabled).
18621 @end table
18622
18623 @subsection Commands
18624
18625 This filter supports the following commands:
18626 @table @option
18627 @item quality, level
18628 Set quality level. The value @code{max} can be used to set the maximum level,
18629 currently @code{6}.
18630 @end table
18631
18632 @anchor{sr}
18633 @section sr
18634
18635 Scale the input by applying one of the super-resolution methods based on
18636 convolutional neural networks. Supported models:
18637
18638 @itemize
18639 @item
18640 Super-Resolution Convolutional Neural Network model (SRCNN).
18641 See @url{https://arxiv.org/abs/1501.00092}.
18642
18643 @item
18644 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
18645 See @url{https://arxiv.org/abs/1609.05158}.
18646 @end itemize
18647
18648 Training scripts as well as scripts for model file (.pb) saving can be found at
18649 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
18650 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
18651
18652 Native model files (.model) can be generated from TensorFlow model
18653 files (.pb) by using tools/python/convert.py
18654
18655 The filter accepts the following options:
18656
18657 @table @option
18658 @item dnn_backend
18659 Specify which DNN backend to use for model loading and execution. This option accepts
18660 the following values:
18661
18662 @table @samp
18663 @item native
18664 Native implementation of DNN loading and execution.
18665
18666 @item tensorflow
18667 TensorFlow backend. To enable this backend you
18668 need to install the TensorFlow for C library (see
18669 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
18670 @code{--enable-libtensorflow}
18671 @end table
18672
18673 Default value is @samp{native}.
18674
18675 @item model
18676 Set path to model file specifying network architecture and its parameters.
18677 Note that different backends use different file formats. TensorFlow backend
18678 can load files for both formats, while native backend can load files for only
18679 its format.
18680
18681 @item scale_factor
18682 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
18683 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
18684 input upscaled using bicubic upscaling with proper scale factor.
18685 @end table
18686
18687 This feature can also be finished with @ref{dnn_processing} filter.
18688
18689 @section ssim
18690
18691 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
18692
18693 This filter takes in input two input videos, the first input is
18694 considered the "main" source and is passed unchanged to the
18695 output. The second input is used as a "reference" video for computing
18696 the SSIM.
18697
18698 Both video inputs must have the same resolution and pixel format for
18699 this filter to work correctly. Also it assumes that both inputs
18700 have the same number of frames, which are compared one by one.
18701
18702 The filter stores the calculated SSIM of each frame.
18703
18704 The description of the accepted parameters follows.
18705
18706 @table @option
18707 @item stats_file, f
18708 If specified the filter will use the named file to save the SSIM of
18709 each individual frame. When filename equals "-" the data is sent to
18710 standard output.
18711 @end table
18712
18713 The file printed if @var{stats_file} is selected, contains a sequence of
18714 key/value pairs of the form @var{key}:@var{value} for each compared
18715 couple of frames.
18716
18717 A description of each shown parameter follows:
18718
18719 @table @option
18720 @item n
18721 sequential number of the input frame, starting from 1
18722
18723 @item Y, U, V, R, G, B
18724 SSIM of the compared frames for the component specified by the suffix.
18725
18726 @item All
18727 SSIM of the compared frames for the whole frame.
18728
18729 @item dB
18730 Same as above but in dB representation.
18731 @end table
18732
18733 This filter also supports the @ref{framesync} options.
18734
18735 @subsection Examples
18736 @itemize
18737 @item
18738 For example:
18739 @example
18740 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
18741 [main][ref] ssim="stats_file=stats.log" [out]
18742 @end example
18743
18744 On this example the input file being processed is compared with the
18745 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
18746 is stored in @file{stats.log}.
18747
18748 @item
18749 Another example with both psnr and ssim at same time:
18750 @example
18751 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
18752 @end example
18753
18754 @item
18755 Another example with different containers:
18756 @example
18757 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 -
18758 @end example
18759 @end itemize
18760
18761 @section stereo3d
18762
18763 Convert between different stereoscopic image formats.
18764
18765 The filters accept the following options:
18766
18767 @table @option
18768 @item in
18769 Set stereoscopic image format of input.
18770
18771 Available values for input image formats are:
18772 @table @samp
18773 @item sbsl
18774 side by side parallel (left eye left, right eye right)
18775
18776 @item sbsr
18777 side by side crosseye (right eye left, left eye right)
18778
18779 @item sbs2l
18780 side by side parallel with half width resolution
18781 (left eye left, right eye right)
18782
18783 @item sbs2r
18784 side by side crosseye with half width resolution
18785 (right eye left, left eye right)
18786
18787 @item abl
18788 @item tbl
18789 above-below (left eye above, right eye below)
18790
18791 @item abr
18792 @item tbr
18793 above-below (right eye above, left eye below)
18794
18795 @item ab2l
18796 @item tb2l
18797 above-below with half height resolution
18798 (left eye above, right eye below)
18799
18800 @item ab2r
18801 @item tb2r
18802 above-below with half height resolution
18803 (right eye above, left eye below)
18804
18805 @item al
18806 alternating frames (left eye first, right eye second)
18807
18808 @item ar
18809 alternating frames (right eye first, left eye second)
18810
18811 @item irl
18812 interleaved rows (left eye has top row, right eye starts on next row)
18813
18814 @item irr
18815 interleaved rows (right eye has top row, left eye starts on next row)
18816
18817 @item icl
18818 interleaved columns, left eye first
18819
18820 @item icr
18821 interleaved columns, right eye first
18822
18823 Default value is @samp{sbsl}.
18824 @end table
18825
18826 @item out
18827 Set stereoscopic image format of output.
18828
18829 @table @samp
18830 @item sbsl
18831 side by side parallel (left eye left, right eye right)
18832
18833 @item sbsr
18834 side by side crosseye (right eye left, left eye right)
18835
18836 @item sbs2l
18837 side by side parallel with half width resolution
18838 (left eye left, right eye right)
18839
18840 @item sbs2r
18841 side by side crosseye with half width resolution
18842 (right eye left, left eye right)
18843
18844 @item abl
18845 @item tbl
18846 above-below (left eye above, right eye below)
18847
18848 @item abr
18849 @item tbr
18850 above-below (right eye above, left eye below)
18851
18852 @item ab2l
18853 @item tb2l
18854 above-below with half height resolution
18855 (left eye above, right eye below)
18856
18857 @item ab2r
18858 @item tb2r
18859 above-below with half height resolution
18860 (right eye above, left eye below)
18861
18862 @item al
18863 alternating frames (left eye first, right eye second)
18864
18865 @item ar
18866 alternating frames (right eye first, left eye second)
18867
18868 @item irl
18869 interleaved rows (left eye has top row, right eye starts on next row)
18870
18871 @item irr
18872 interleaved rows (right eye has top row, left eye starts on next row)
18873
18874 @item arbg
18875 anaglyph red/blue gray
18876 (red filter on left eye, blue filter on right eye)
18877
18878 @item argg
18879 anaglyph red/green gray
18880 (red filter on left eye, green filter on right eye)
18881
18882 @item arcg
18883 anaglyph red/cyan gray
18884 (red filter on left eye, cyan filter on right eye)
18885
18886 @item arch
18887 anaglyph red/cyan half colored
18888 (red filter on left eye, cyan filter on right eye)
18889
18890 @item arcc
18891 anaglyph red/cyan color
18892 (red filter on left eye, cyan filter on right eye)
18893
18894 @item arcd
18895 anaglyph red/cyan color optimized with the least squares projection of dubois
18896 (red filter on left eye, cyan filter on right eye)
18897
18898 @item agmg
18899 anaglyph green/magenta gray
18900 (green filter on left eye, magenta filter on right eye)
18901
18902 @item agmh
18903 anaglyph green/magenta half colored
18904 (green filter on left eye, magenta filter on right eye)
18905
18906 @item agmc
18907 anaglyph green/magenta colored
18908 (green filter on left eye, magenta filter on right eye)
18909
18910 @item agmd
18911 anaglyph green/magenta color optimized with the least squares projection of dubois
18912 (green filter on left eye, magenta filter on right eye)
18913
18914 @item aybg
18915 anaglyph yellow/blue gray
18916 (yellow filter on left eye, blue filter on right eye)
18917
18918 @item aybh
18919 anaglyph yellow/blue half colored
18920 (yellow filter on left eye, blue filter on right eye)
18921
18922 @item aybc
18923 anaglyph yellow/blue colored
18924 (yellow filter on left eye, blue filter on right eye)
18925
18926 @item aybd
18927 anaglyph yellow/blue color optimized with the least squares projection of dubois
18928 (yellow filter on left eye, blue filter on right eye)
18929
18930 @item ml
18931 mono output (left eye only)
18932
18933 @item mr
18934 mono output (right eye only)
18935
18936 @item chl
18937 checkerboard, left eye first
18938
18939 @item chr
18940 checkerboard, right eye first
18941
18942 @item icl
18943 interleaved columns, left eye first
18944
18945 @item icr
18946 interleaved columns, right eye first
18947
18948 @item hdmi
18949 HDMI frame pack
18950 @end table
18951
18952 Default value is @samp{arcd}.
18953 @end table
18954
18955 @subsection Examples
18956
18957 @itemize
18958 @item
18959 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
18960 @example
18961 stereo3d=sbsl:aybd
18962 @end example
18963
18964 @item
18965 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
18966 @example
18967 stereo3d=abl:sbsr
18968 @end example
18969 @end itemize
18970
18971 @section streamselect, astreamselect
18972 Select video or audio streams.
18973
18974 The filter accepts the following options:
18975
18976 @table @option
18977 @item inputs
18978 Set number of inputs. Default is 2.
18979
18980 @item map
18981 Set input indexes to remap to outputs.
18982 @end table
18983
18984 @subsection Commands
18985
18986 The @code{streamselect} and @code{astreamselect} filter supports the following
18987 commands:
18988
18989 @table @option
18990 @item map
18991 Set input indexes to remap to outputs.
18992 @end table
18993
18994 @subsection Examples
18995
18996 @itemize
18997 @item
18998 Select first 5 seconds 1st stream and rest of time 2nd stream:
18999 @example
19000 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
19001 @end example
19002
19003 @item
19004 Same as above, but for audio:
19005 @example
19006 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
19007 @end example
19008 @end itemize
19009
19010 @anchor{subtitles}
19011 @section subtitles
19012
19013 Draw subtitles on top of input video using the libass library.
19014
19015 To enable compilation of this filter you need to configure FFmpeg with
19016 @code{--enable-libass}. This filter also requires a build with libavcodec and
19017 libavformat to convert the passed subtitles file to ASS (Advanced Substation
19018 Alpha) subtitles format.
19019
19020 The filter accepts the following options:
19021
19022 @table @option
19023 @item filename, f
19024 Set the filename of the subtitle file to read. It must be specified.
19025
19026 @item original_size
19027 Specify the size of the original video, the video for which the ASS file
19028 was composed. For the syntax of this option, check the
19029 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19030 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
19031 correctly scale the fonts if the aspect ratio has been changed.
19032
19033 @item fontsdir
19034 Set a directory path containing fonts that can be used by the filter.
19035 These fonts will be used in addition to whatever the font provider uses.
19036
19037 @item alpha
19038 Process alpha channel, by default alpha channel is untouched.
19039
19040 @item charenc
19041 Set subtitles input character encoding. @code{subtitles} filter only. Only
19042 useful if not UTF-8.
19043
19044 @item stream_index, si
19045 Set subtitles stream index. @code{subtitles} filter only.
19046
19047 @item force_style
19048 Override default style or script info parameters of the subtitles. It accepts a
19049 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
19050 @end table
19051
19052 If the first key is not specified, it is assumed that the first value
19053 specifies the @option{filename}.
19054
19055 For example, to render the file @file{sub.srt} on top of the input
19056 video, use the command:
19057 @example
19058 subtitles=sub.srt
19059 @end example
19060
19061 which is equivalent to:
19062 @example
19063 subtitles=filename=sub.srt
19064 @end example
19065
19066 To render the default subtitles stream from file @file{video.mkv}, use:
19067 @example
19068 subtitles=video.mkv
19069 @end example
19070
19071 To render the second subtitles stream from that file, use:
19072 @example
19073 subtitles=video.mkv:si=1
19074 @end example
19075
19076 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
19077 @code{DejaVu Serif}, use:
19078 @example
19079 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
19080 @end example
19081
19082 @section super2xsai
19083
19084 Scale the input by 2x and smooth using the Super2xSaI (Scale and
19085 Interpolate) pixel art scaling algorithm.
19086
19087 Useful for enlarging pixel art images without reducing sharpness.
19088
19089 @section swaprect
19090
19091 Swap two rectangular objects in video.
19092
19093 This filter accepts the following options:
19094
19095 @table @option
19096 @item w
19097 Set object width.
19098
19099 @item h
19100 Set object height.
19101
19102 @item x1
19103 Set 1st rect x coordinate.
19104
19105 @item y1
19106 Set 1st rect y coordinate.
19107
19108 @item x2
19109 Set 2nd rect x coordinate.
19110
19111 @item y2
19112 Set 2nd rect y coordinate.
19113
19114 All expressions are evaluated once for each frame.
19115 @end table
19116
19117 The all options are expressions containing the following constants:
19118
19119 @table @option
19120 @item w
19121 @item h
19122 The input width and height.
19123
19124 @item a
19125 same as @var{w} / @var{h}
19126
19127 @item sar
19128 input sample aspect ratio
19129
19130 @item dar
19131 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
19132
19133 @item n
19134 The number of the input frame, starting from 0.
19135
19136 @item t
19137 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
19138
19139 @item pos
19140 the position in the file of the input frame, NAN if unknown
19141 @end table
19142
19143 @section swapuv
19144 Swap U & V plane.
19145
19146 @section tblend
19147 Blend successive video frames.
19148
19149 See @ref{blend}
19150
19151 @section telecine
19152
19153 Apply telecine process to the video.
19154
19155 This filter accepts the following options:
19156
19157 @table @option
19158 @item first_field
19159 @table @samp
19160 @item top, t
19161 top field first
19162 @item bottom, b
19163 bottom field first
19164 The default value is @code{top}.
19165 @end table
19166
19167 @item pattern
19168 A string of numbers representing the pulldown pattern you wish to apply.
19169 The default value is @code{23}.
19170 @end table
19171
19172 @example
19173 Some typical patterns:
19174
19175 NTSC output (30i):
19176 27.5p: 32222
19177 24p: 23 (classic)
19178 24p: 2332 (preferred)
19179 20p: 33
19180 18p: 334
19181 16p: 3444
19182
19183 PAL output (25i):
19184 27.5p: 12222
19185 24p: 222222222223 ("Euro pulldown")
19186 16.67p: 33
19187 16p: 33333334
19188 @end example
19189
19190 @section thistogram
19191
19192 Compute and draw a color distribution histogram for the input video across time.
19193
19194 Unlike @ref{histogram} video filter which only shows histogram of single input frame
19195 at certain time, this filter shows also past histograms of number of frames defined
19196 by @code{width} option.
19197
19198 The computed histogram is a representation of the color component
19199 distribution in an image.
19200
19201 The filter accepts the following options:
19202
19203 @table @option
19204 @item width, w
19205 Set width of single color component output. Default value is @code{0}.
19206 Value of @code{0} means width will be picked from input video.
19207 This also set number of passed histograms to keep.
19208 Allowed range is [0, 8192].
19209
19210 @item display_mode, d
19211 Set display mode.
19212 It accepts the following values:
19213 @table @samp
19214 @item stack
19215 Per color component graphs are placed below each other.
19216
19217 @item parade
19218 Per color component graphs are placed side by side.
19219
19220 @item overlay
19221 Presents information identical to that in the @code{parade}, except
19222 that the graphs representing color components are superimposed directly
19223 over one another.
19224 @end table
19225 Default is @code{stack}.
19226
19227 @item levels_mode, m
19228 Set mode. Can be either @code{linear}, or @code{logarithmic}.
19229 Default is @code{linear}.
19230
19231 @item components, c
19232 Set what color components to display.
19233 Default is @code{7}.
19234
19235 @item bgopacity, b
19236 Set background opacity. Default is @code{0.9}.
19237
19238 @item envelope, e
19239 Show envelope. Default is disabled.
19240
19241 @item ecolor, ec
19242 Set envelope color. Default is @code{gold}.
19243
19244 @item slide
19245 Set slide mode.
19246
19247 Available values for slide is:
19248 @table @samp
19249 @item frame
19250 Draw new frame when right border is reached.
19251
19252 @item replace
19253 Replace old columns with new ones.
19254
19255 @item scroll
19256 Scroll from right to left.
19257
19258 @item rscroll
19259 Scroll from left to right.
19260
19261 @item picture
19262 Draw single picture.
19263 @end table
19264
19265 Default is @code{replace}.
19266 @end table
19267
19268 @section threshold
19269
19270 Apply threshold effect to video stream.
19271
19272 This filter needs four video streams to perform thresholding.
19273 First stream is stream we are filtering.
19274 Second stream is holding threshold values, third stream is holding min values,
19275 and last, fourth stream is holding max values.
19276
19277 The filter accepts the following option:
19278
19279 @table @option
19280 @item planes
19281 Set which planes will be processed, unprocessed planes will be copied.
19282 By default value 0xf, all planes will be processed.
19283 @end table
19284
19285 For example if first stream pixel's component value is less then threshold value
19286 of pixel component from 2nd threshold stream, third stream value will picked,
19287 otherwise fourth stream pixel component value will be picked.
19288
19289 Using color source filter one can perform various types of thresholding:
19290
19291 @subsection Examples
19292
19293 @itemize
19294 @item
19295 Binary threshold, using gray color as threshold:
19296 @example
19297 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
19298 @end example
19299
19300 @item
19301 Inverted binary threshold, using gray color as threshold:
19302 @example
19303 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
19304 @end example
19305
19306 @item
19307 Truncate binary threshold, using gray color as threshold:
19308 @example
19309 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
19310 @end example
19311
19312 @item
19313 Threshold to zero, using gray color as threshold:
19314 @example
19315 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
19316 @end example
19317
19318 @item
19319 Inverted threshold to zero, using gray color as threshold:
19320 @example
19321 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
19322 @end example
19323 @end itemize
19324
19325 @section thumbnail
19326 Select the most representative frame in a given sequence of consecutive frames.
19327
19328 The filter accepts the following options:
19329
19330 @table @option
19331 @item n
19332 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
19333 will pick one of them, and then handle the next batch of @var{n} frames until
19334 the end. Default is @code{100}.
19335 @end table
19336
19337 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
19338 value will result in a higher memory usage, so a high value is not recommended.
19339
19340 @subsection Examples
19341
19342 @itemize
19343 @item
19344 Extract one picture each 50 frames:
19345 @example
19346 thumbnail=50
19347 @end example
19348
19349 @item
19350 Complete example of a thumbnail creation with @command{ffmpeg}:
19351 @example
19352 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
19353 @end example
19354 @end itemize
19355
19356 @anchor{tile}
19357 @section tile
19358
19359 Tile several successive frames together.
19360
19361 The @ref{untile} filter can do the reverse.
19362
19363 The filter accepts the following options:
19364
19365 @table @option
19366
19367 @item layout
19368 Set the grid size (i.e. the number of lines and columns). For the syntax of
19369 this option, check the
19370 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19371
19372 @item nb_frames
19373 Set the maximum number of frames to render in the given area. It must be less
19374 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
19375 the area will be used.
19376
19377 @item margin
19378 Set the outer border margin in pixels.
19379
19380 @item padding
19381 Set the inner border thickness (i.e. the number of pixels between frames). For
19382 more advanced padding options (such as having different values for the edges),
19383 refer to the pad video filter.
19384
19385 @item color
19386 Specify the color of the unused area. For the syntax of this option, check the
19387 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
19388 The default value of @var{color} is "black".
19389
19390 @item overlap
19391 Set the number of frames to overlap when tiling several successive frames together.
19392 The value must be between @code{0} and @var{nb_frames - 1}.
19393
19394 @item init_padding
19395 Set the number of frames to initially be empty before displaying first output frame.
19396 This controls how soon will one get first output frame.
19397 The value must be between @code{0} and @var{nb_frames - 1}.
19398 @end table
19399
19400 @subsection Examples
19401
19402 @itemize
19403 @item
19404 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
19405 @example
19406 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
19407 @end example
19408 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
19409 duplicating each output frame to accommodate the originally detected frame
19410 rate.
19411
19412 @item
19413 Display @code{5} pictures in an area of @code{3x2} frames,
19414 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
19415 mixed flat and named options:
19416 @example
19417 tile=3x2:nb_frames=5:padding=7:margin=2
19418 @end example
19419 @end itemize
19420
19421 @section tinterlace
19422
19423 Perform various types of temporal field interlacing.
19424
19425 Frames are counted starting from 1, so the first input frame is
19426 considered odd.
19427
19428 The filter accepts the following options:
19429
19430 @table @option
19431
19432 @item mode
19433 Specify the mode of the interlacing. This option can also be specified
19434 as a value alone. See below for a list of values for this option.
19435
19436 Available values are:
19437
19438 @table @samp
19439 @item merge, 0
19440 Move odd frames into the upper field, even into the lower field,
19441 generating a double height frame at half frame rate.
19442 @example
19443  ------> time
19444 Input:
19445 Frame 1         Frame 2         Frame 3         Frame 4
19446
19447 11111           22222           33333           44444
19448 11111           22222           33333           44444
19449 11111           22222           33333           44444
19450 11111           22222           33333           44444
19451
19452 Output:
19453 11111                           33333
19454 22222                           44444
19455 11111                           33333
19456 22222                           44444
19457 11111                           33333
19458 22222                           44444
19459 11111                           33333
19460 22222                           44444
19461 @end example
19462
19463 @item drop_even, 1
19464 Only output odd frames, even frames are dropped, generating a frame with
19465 unchanged height at half frame rate.
19466
19467 @example
19468  ------> time
19469 Input:
19470 Frame 1         Frame 2         Frame 3         Frame 4
19471
19472 11111           22222           33333           44444
19473 11111           22222           33333           44444
19474 11111           22222           33333           44444
19475 11111           22222           33333           44444
19476
19477 Output:
19478 11111                           33333
19479 11111                           33333
19480 11111                           33333
19481 11111                           33333
19482 @end example
19483
19484 @item drop_odd, 2
19485 Only output even frames, odd frames are dropped, generating a frame with
19486 unchanged height at half frame rate.
19487
19488 @example
19489  ------> time
19490 Input:
19491 Frame 1         Frame 2         Frame 3         Frame 4
19492
19493 11111           22222           33333           44444
19494 11111           22222           33333           44444
19495 11111           22222           33333           44444
19496 11111           22222           33333           44444
19497
19498 Output:
19499                 22222                           44444
19500                 22222                           44444
19501                 22222                           44444
19502                 22222                           44444
19503 @end example
19504
19505 @item pad, 3
19506 Expand each frame to full height, but pad alternate lines with black,
19507 generating a frame with double height at the same input frame rate.
19508
19509 @example
19510  ------> time
19511 Input:
19512 Frame 1         Frame 2         Frame 3         Frame 4
19513
19514 11111           22222           33333           44444
19515 11111           22222           33333           44444
19516 11111           22222           33333           44444
19517 11111           22222           33333           44444
19518
19519 Output:
19520 11111           .....           33333           .....
19521 .....           22222           .....           44444
19522 11111           .....           33333           .....
19523 .....           22222           .....           44444
19524 11111           .....           33333           .....
19525 .....           22222           .....           44444
19526 11111           .....           33333           .....
19527 .....           22222           .....           44444
19528 @end example
19529
19530
19531 @item interleave_top, 4
19532 Interleave the upper field from odd frames with the lower field from
19533 even frames, generating a frame with unchanged height at half frame rate.
19534
19535 @example
19536  ------> time
19537 Input:
19538 Frame 1         Frame 2         Frame 3         Frame 4
19539
19540 11111<-         22222           33333<-         44444
19541 11111           22222<-         33333           44444<-
19542 11111<-         22222           33333<-         44444
19543 11111           22222<-         33333           44444<-
19544
19545 Output:
19546 11111                           33333
19547 22222                           44444
19548 11111                           33333
19549 22222                           44444
19550 @end example
19551
19552
19553 @item interleave_bottom, 5
19554 Interleave the lower field from odd frames with the upper field from
19555 even frames, generating a frame with unchanged height at half frame rate.
19556
19557 @example
19558  ------> time
19559 Input:
19560 Frame 1         Frame 2         Frame 3         Frame 4
19561
19562 11111           22222<-         33333           44444<-
19563 11111<-         22222           33333<-         44444
19564 11111           22222<-         33333           44444<-
19565 11111<-         22222           33333<-         44444
19566
19567 Output:
19568 22222                           44444
19569 11111                           33333
19570 22222                           44444
19571 11111                           33333
19572 @end example
19573
19574
19575 @item interlacex2, 6
19576 Double frame rate with unchanged height. Frames are inserted each
19577 containing the second temporal field from the previous input frame and
19578 the first temporal field from the next input frame. This mode relies on
19579 the top_field_first flag. Useful for interlaced video displays with no
19580 field synchronisation.
19581
19582 @example
19583  ------> time
19584 Input:
19585 Frame 1         Frame 2         Frame 3         Frame 4
19586
19587 11111           22222           33333           44444
19588  11111           22222           33333           44444
19589 11111           22222           33333           44444
19590  11111           22222           33333           44444
19591
19592 Output:
19593 11111   22222   22222   33333   33333   44444   44444
19594  11111   11111   22222   22222   33333   33333   44444
19595 11111   22222   22222   33333   33333   44444   44444
19596  11111   11111   22222   22222   33333   33333   44444
19597 @end example
19598
19599
19600 @item mergex2, 7
19601 Move odd frames into the upper field, even into the lower field,
19602 generating a double height frame at same frame rate.
19603
19604 @example
19605  ------> time
19606 Input:
19607 Frame 1         Frame 2         Frame 3         Frame 4
19608
19609 11111           22222           33333           44444
19610 11111           22222           33333           44444
19611 11111           22222           33333           44444
19612 11111           22222           33333           44444
19613
19614 Output:
19615 11111           33333           33333           55555
19616 22222           22222           44444           44444
19617 11111           33333           33333           55555
19618 22222           22222           44444           44444
19619 11111           33333           33333           55555
19620 22222           22222           44444           44444
19621 11111           33333           33333           55555
19622 22222           22222           44444           44444
19623 @end example
19624
19625 @end table
19626
19627 Numeric values are deprecated but are accepted for backward
19628 compatibility reasons.
19629
19630 Default mode is @code{merge}.
19631
19632 @item flags
19633 Specify flags influencing the filter process.
19634
19635 Available value for @var{flags} is:
19636
19637 @table @option
19638 @item low_pass_filter, vlpf
19639 Enable linear vertical low-pass filtering in the filter.
19640 Vertical low-pass filtering is required when creating an interlaced
19641 destination from a progressive source which contains high-frequency
19642 vertical detail. Filtering will reduce interlace 'twitter' and Moire
19643 patterning.
19644
19645 @item complex_filter, cvlpf
19646 Enable complex vertical low-pass filtering.
19647 This will slightly less reduce interlace 'twitter' and Moire
19648 patterning but better retain detail and subjective sharpness impression.
19649
19650 @item bypass_il
19651 Bypass already interlaced frames, only adjust the frame rate.
19652 @end table
19653
19654 Vertical low-pass filtering and bypassing already interlaced frames can only be
19655 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
19656
19657 @end table
19658
19659 @section tmedian
19660 Pick median pixels from several successive input video frames.
19661
19662 The filter accepts the following options:
19663
19664 @table @option
19665 @item radius
19666 Set radius of median filter.
19667 Default is 1. Allowed range is from 1 to 127.
19668
19669 @item planes
19670 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19671
19672 @item percentile
19673 Set median percentile. Default value is @code{0.5}.
19674 Default value of @code{0.5} will pick always median values, while @code{0} will pick
19675 minimum values, and @code{1} maximum values.
19676 @end table
19677
19678 @subsection Commands
19679
19680 This filter supports all above options as @ref{commands}, excluding option @code{radius}.
19681
19682 @section tmidequalizer
19683
19684 Apply Temporal Midway Video Equalization effect.
19685
19686 Midway Video Equalization adjusts a sequence of video frames to have the same
19687 histograms, while maintaining their dynamics as much as possible. It's
19688 useful for e.g. matching exposures from a video frames sequence.
19689
19690 This filter accepts the following option:
19691
19692 @table @option
19693 @item radius
19694 Set filtering radius. Default is @code{5}. Allowed range is from 1 to 127.
19695
19696 @item sigma
19697 Set filtering sigma. Default is @code{0.5}. This controls strength of filtering.
19698 Setting this option to 0 effectively does nothing.
19699
19700 @item planes
19701 Set which planes to process. Default is @code{15}, which is all available planes.
19702 @end table
19703
19704 @section tmix
19705
19706 Mix successive video frames.
19707
19708 A description of the accepted options follows.
19709
19710 @table @option
19711 @item frames
19712 The number of successive frames to mix. If unspecified, it defaults to 3.
19713
19714 @item weights
19715 Specify weight of each input video frame.
19716 Each weight is separated by space. If number of weights is smaller than
19717 number of @var{frames} last specified weight will be used for all remaining
19718 unset weights.
19719
19720 @item scale
19721 Specify scale, if it is set it will be multiplied with sum
19722 of each weight multiplied with pixel values to give final destination
19723 pixel value. By default @var{scale} is auto scaled to sum of weights.
19724 @end table
19725
19726 @subsection Examples
19727
19728 @itemize
19729 @item
19730 Average 7 successive frames:
19731 @example
19732 tmix=frames=7:weights="1 1 1 1 1 1 1"
19733 @end example
19734
19735 @item
19736 Apply simple temporal convolution:
19737 @example
19738 tmix=frames=3:weights="-1 3 -1"
19739 @end example
19740
19741 @item
19742 Similar as above but only showing temporal differences:
19743 @example
19744 tmix=frames=3:weights="-1 2 -1":scale=1
19745 @end example
19746 @end itemize
19747
19748 @subsection Commands
19749
19750 This filter supports the following commands:
19751 @table @option
19752 @item weights
19753 @item scale
19754 Syntax is same as option with same name.
19755 @end table
19756
19757 @anchor{tonemap}
19758 @section tonemap
19759 Tone map colors from different dynamic ranges.
19760
19761 This filter expects data in single precision floating point, as it needs to
19762 operate on (and can output) out-of-range values. Another filter, such as
19763 @ref{zscale}, is needed to convert the resulting frame to a usable format.
19764
19765 The tonemapping algorithms implemented only work on linear light, so input
19766 data should be linearized beforehand (and possibly correctly tagged).
19767
19768 @example
19769 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
19770 @end example
19771
19772 @subsection Options
19773 The filter accepts the following options.
19774
19775 @table @option
19776 @item tonemap
19777 Set the tone map algorithm to use.
19778
19779 Possible values are:
19780 @table @var
19781 @item none
19782 Do not apply any tone map, only desaturate overbright pixels.
19783
19784 @item clip
19785 Hard-clip any out-of-range values. Use it for perfect color accuracy for
19786 in-range values, while distorting out-of-range values.
19787
19788 @item linear
19789 Stretch the entire reference gamut to a linear multiple of the display.
19790
19791 @item gamma
19792 Fit a logarithmic transfer between the tone curves.
19793
19794 @item reinhard
19795 Preserve overall image brightness with a simple curve, using nonlinear
19796 contrast, which results in flattening details and degrading color accuracy.
19797
19798 @item hable
19799 Preserve both dark and bright details better than @var{reinhard}, at the cost
19800 of slightly darkening everything. Use it when detail preservation is more
19801 important than color and brightness accuracy.
19802
19803 @item mobius
19804 Smoothly map out-of-range values, while retaining contrast and colors for
19805 in-range material as much as possible. Use it when color accuracy is more
19806 important than detail preservation.
19807 @end table
19808
19809 Default is none.
19810
19811 @item param
19812 Tune the tone mapping algorithm.
19813
19814 This affects the following algorithms:
19815 @table @var
19816 @item none
19817 Ignored.
19818
19819 @item linear
19820 Specifies the scale factor to use while stretching.
19821 Default to 1.0.
19822
19823 @item gamma
19824 Specifies the exponent of the function.
19825 Default to 1.8.
19826
19827 @item clip
19828 Specify an extra linear coefficient to multiply into the signal before clipping.
19829 Default to 1.0.
19830
19831 @item reinhard
19832 Specify the local contrast coefficient at the display peak.
19833 Default to 0.5, which means that in-gamut values will be about half as bright
19834 as when clipping.
19835
19836 @item hable
19837 Ignored.
19838
19839 @item mobius
19840 Specify the transition point from linear to mobius transform. Every value
19841 below this point is guaranteed to be mapped 1:1. The higher the value, the
19842 more accurate the result will be, at the cost of losing bright details.
19843 Default to 0.3, which due to the steep initial slope still preserves in-range
19844 colors fairly accurately.
19845 @end table
19846
19847 @item desat
19848 Apply desaturation for highlights that exceed this level of brightness. The
19849 higher the parameter, the more color information will be preserved. This
19850 setting helps prevent unnaturally blown-out colors for super-highlights, by
19851 (smoothly) turning into white instead. This makes images feel more natural,
19852 at the cost of reducing information about out-of-range colors.
19853
19854 The default of 2.0 is somewhat conservative and will mostly just apply to
19855 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
19856
19857 This option works only if the input frame has a supported color tag.
19858
19859 @item peak
19860 Override signal/nominal/reference peak with this value. Useful when the
19861 embedded peak information in display metadata is not reliable or when tone
19862 mapping from a lower range to a higher range.
19863 @end table
19864
19865 @section tpad
19866
19867 Temporarily pad video frames.
19868
19869 The filter accepts the following options:
19870
19871 @table @option
19872 @item start
19873 Specify number of delay frames before input video stream. Default is 0.
19874
19875 @item stop
19876 Specify number of padding frames after input video stream.
19877 Set to -1 to pad indefinitely. Default is 0.
19878
19879 @item start_mode
19880 Set kind of frames added to beginning of stream.
19881 Can be either @var{add} or @var{clone}.
19882 With @var{add} frames of solid-color are added.
19883 With @var{clone} frames are clones of first frame.
19884 Default is @var{add}.
19885
19886 @item stop_mode
19887 Set kind of frames added to end of stream.
19888 Can be either @var{add} or @var{clone}.
19889 With @var{add} frames of solid-color are added.
19890 With @var{clone} frames are clones of last frame.
19891 Default is @var{add}.
19892
19893 @item start_duration, stop_duration
19894 Specify the duration of the start/stop delay. See
19895 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19896 for the accepted syntax.
19897 These options override @var{start} and @var{stop}. Default is 0.
19898
19899 @item color
19900 Specify the color of the padded area. For the syntax of this option,
19901 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
19902 manual,ffmpeg-utils}.
19903
19904 The default value of @var{color} is "black".
19905 @end table
19906
19907 @anchor{transpose}
19908 @section transpose
19909
19910 Transpose rows with columns in the input video and optionally flip it.
19911
19912 It accepts the following parameters:
19913
19914 @table @option
19915
19916 @item dir
19917 Specify the transposition direction.
19918
19919 Can assume the following values:
19920 @table @samp
19921 @item 0, 4, cclock_flip
19922 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
19923 @example
19924 L.R     L.l
19925 . . ->  . .
19926 l.r     R.r
19927 @end example
19928
19929 @item 1, 5, clock
19930 Rotate by 90 degrees clockwise, that is:
19931 @example
19932 L.R     l.L
19933 . . ->  . .
19934 l.r     r.R
19935 @end example
19936
19937 @item 2, 6, cclock
19938 Rotate by 90 degrees counterclockwise, that is:
19939 @example
19940 L.R     R.r
19941 . . ->  . .
19942 l.r     L.l
19943 @end example
19944
19945 @item 3, 7, clock_flip
19946 Rotate by 90 degrees clockwise and vertically flip, that is:
19947 @example
19948 L.R     r.R
19949 . . ->  . .
19950 l.r     l.L
19951 @end example
19952 @end table
19953
19954 For values between 4-7, the transposition is only done if the input
19955 video geometry is portrait and not landscape. These values are
19956 deprecated, the @code{passthrough} option should be used instead.
19957
19958 Numerical values are deprecated, and should be dropped in favor of
19959 symbolic constants.
19960
19961 @item passthrough
19962 Do not apply the transposition if the input geometry matches the one
19963 specified by the specified value. It accepts the following values:
19964 @table @samp
19965 @item none
19966 Always apply transposition.
19967 @item portrait
19968 Preserve portrait geometry (when @var{height} >= @var{width}).
19969 @item landscape
19970 Preserve landscape geometry (when @var{width} >= @var{height}).
19971 @end table
19972
19973 Default value is @code{none}.
19974 @end table
19975
19976 For example to rotate by 90 degrees clockwise and preserve portrait
19977 layout:
19978 @example
19979 transpose=dir=1:passthrough=portrait
19980 @end example
19981
19982 The command above can also be specified as:
19983 @example
19984 transpose=1:portrait
19985 @end example
19986
19987 @section transpose_npp
19988
19989 Transpose rows with columns in the input video and optionally flip it.
19990 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
19991
19992 It accepts the following parameters:
19993
19994 @table @option
19995
19996 @item dir
19997 Specify the transposition direction.
19998
19999 Can assume the following values:
20000 @table @samp
20001 @item cclock_flip
20002 Rotate by 90 degrees counterclockwise and vertically flip. (default)
20003
20004 @item clock
20005 Rotate by 90 degrees clockwise.
20006
20007 @item cclock
20008 Rotate by 90 degrees counterclockwise.
20009
20010 @item clock_flip
20011 Rotate by 90 degrees clockwise and vertically flip.
20012 @end table
20013
20014 @item passthrough
20015 Do not apply the transposition if the input geometry matches the one
20016 specified by the specified value. It accepts the following values:
20017 @table @samp
20018 @item none
20019 Always apply transposition. (default)
20020 @item portrait
20021 Preserve portrait geometry (when @var{height} >= @var{width}).
20022 @item landscape
20023 Preserve landscape geometry (when @var{width} >= @var{height}).
20024 @end table
20025
20026 @end table
20027
20028 @section trim
20029 Trim the input so that the output contains one continuous subpart of the input.
20030
20031 It accepts the following parameters:
20032 @table @option
20033 @item start
20034 Specify the time of the start of the kept section, i.e. the frame with the
20035 timestamp @var{start} will be the first frame in the output.
20036
20037 @item end
20038 Specify the time of the first frame that will be dropped, i.e. the frame
20039 immediately preceding the one with the timestamp @var{end} will be the last
20040 frame in the output.
20041
20042 @item start_pts
20043 This is the same as @var{start}, except this option sets the start timestamp
20044 in timebase units instead of seconds.
20045
20046 @item end_pts
20047 This is the same as @var{end}, except this option sets the end timestamp
20048 in timebase units instead of seconds.
20049
20050 @item duration
20051 The maximum duration of the output in seconds.
20052
20053 @item start_frame
20054 The number of the first frame that should be passed to the output.
20055
20056 @item end_frame
20057 The number of the first frame that should be dropped.
20058 @end table
20059
20060 @option{start}, @option{end}, and @option{duration} are expressed as time
20061 duration specifications; see
20062 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20063 for the accepted syntax.
20064
20065 Note that the first two sets of the start/end options and the @option{duration}
20066 option look at the frame timestamp, while the _frame variants simply count the
20067 frames that pass through the filter. Also note that this filter does not modify
20068 the timestamps. If you wish for the output timestamps to start at zero, insert a
20069 setpts filter after the trim filter.
20070
20071 If multiple start or end options are set, this filter tries to be greedy and
20072 keep all the frames that match at least one of the specified constraints. To keep
20073 only the part that matches all the constraints at once, chain multiple trim
20074 filters.
20075
20076 The defaults are such that all the input is kept. So it is possible to set e.g.
20077 just the end values to keep everything before the specified time.
20078
20079 Examples:
20080 @itemize
20081 @item
20082 Drop everything except the second minute of input:
20083 @example
20084 ffmpeg -i INPUT -vf trim=60:120
20085 @end example
20086
20087 @item
20088 Keep only the first second:
20089 @example
20090 ffmpeg -i INPUT -vf trim=duration=1
20091 @end example
20092
20093 @end itemize
20094
20095 @section unpremultiply
20096 Apply alpha unpremultiply effect to input video stream using first plane
20097 of second stream as alpha.
20098
20099 Both streams must have same dimensions and same pixel format.
20100
20101 The filter accepts the following option:
20102
20103 @table @option
20104 @item planes
20105 Set which planes will be processed, unprocessed planes will be copied.
20106 By default value 0xf, all planes will be processed.
20107
20108 If the format has 1 or 2 components, then luma is bit 0.
20109 If the format has 3 or 4 components:
20110 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
20111 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
20112 If present, the alpha channel is always the last bit.
20113
20114 @item inplace
20115 Do not require 2nd input for processing, instead use alpha plane from input stream.
20116 @end table
20117
20118 @anchor{unsharp}
20119 @section unsharp
20120
20121 Sharpen or blur the input video.
20122
20123 It accepts the following parameters:
20124
20125 @table @option
20126 @item luma_msize_x, lx
20127 Set the luma matrix horizontal size. It must be an odd integer between
20128 3 and 23. The default value is 5.
20129
20130 @item luma_msize_y, ly
20131 Set the luma matrix vertical size. It must be an odd integer between 3
20132 and 23. The default value is 5.
20133
20134 @item luma_amount, la
20135 Set the luma effect strength. It must be a floating point number, reasonable
20136 values lay between -1.5 and 1.5.
20137
20138 Negative values will blur the input video, while positive values will
20139 sharpen it, a value of zero will disable the effect.
20140
20141 Default value is 1.0.
20142
20143 @item chroma_msize_x, cx
20144 Set the chroma matrix horizontal size. It must be an odd integer
20145 between 3 and 23. The default value is 5.
20146
20147 @item chroma_msize_y, cy
20148 Set the chroma matrix vertical size. It must be an odd integer
20149 between 3 and 23. The default value is 5.
20150
20151 @item chroma_amount, ca
20152 Set the chroma effect strength. It must be a floating point number, reasonable
20153 values lay between -1.5 and 1.5.
20154
20155 Negative values will blur the input video, while positive values will
20156 sharpen it, a value of zero will disable the effect.
20157
20158 Default value is 0.0.
20159
20160 @end table
20161
20162 All parameters are optional and default to the equivalent of the
20163 string '5:5:1.0:5:5:0.0'.
20164
20165 @subsection Examples
20166
20167 @itemize
20168 @item
20169 Apply strong luma sharpen effect:
20170 @example
20171 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
20172 @end example
20173
20174 @item
20175 Apply a strong blur of both luma and chroma parameters:
20176 @example
20177 unsharp=7:7:-2:7:7:-2
20178 @end example
20179 @end itemize
20180
20181 @anchor{untile}
20182 @section untile
20183
20184 Decompose a video made of tiled images into the individual images.
20185
20186 The frame rate of the output video is the frame rate of the input video
20187 multiplied by the number of tiles.
20188
20189 This filter does the reverse of @ref{tile}.
20190
20191 The filter accepts the following options:
20192
20193 @table @option
20194
20195 @item layout
20196 Set the grid size (i.e. the number of lines and columns). For the syntax of
20197 this option, check the
20198 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20199 @end table
20200
20201 @subsection Examples
20202
20203 @itemize
20204 @item
20205 Produce a 1-second video from a still image file made of 25 frames stacked
20206 vertically, like an analogic film reel:
20207 @example
20208 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
20209 @end example
20210 @end itemize
20211
20212 @section uspp
20213
20214 Apply ultra slow/simple postprocessing filter that compresses and decompresses
20215 the image at several (or - in the case of @option{quality} level @code{8} - all)
20216 shifts and average the results.
20217
20218 The way this differs from the behavior of spp is that uspp actually encodes &
20219 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
20220 DCT similar to MJPEG.
20221
20222 The filter accepts the following options:
20223
20224 @table @option
20225 @item quality
20226 Set quality. This option defines the number of levels for averaging. It accepts
20227 an integer in the range 0-8. If set to @code{0}, the filter will have no
20228 effect. A value of @code{8} means the higher quality. For each increment of
20229 that value the speed drops by a factor of approximately 2.  Default value is
20230 @code{3}.
20231
20232 @item qp
20233 Force a constant quantization parameter. If not set, the filter will use the QP
20234 from the video stream (if available).
20235 @end table
20236
20237 @section v360
20238
20239 Convert 360 videos between various formats.
20240
20241 The filter accepts the following options:
20242
20243 @table @option
20244
20245 @item input
20246 @item output
20247 Set format of the input/output video.
20248
20249 Available formats:
20250
20251 @table @samp
20252
20253 @item e
20254 @item equirect
20255 Equirectangular projection.
20256
20257 @item c3x2
20258 @item c6x1
20259 @item c1x6
20260 Cubemap with 3x2/6x1/1x6 layout.
20261
20262 Format specific options:
20263
20264 @table @option
20265 @item in_pad
20266 @item out_pad
20267 Set padding proportion for the input/output cubemap. Values in decimals.
20268
20269 Example values:
20270 @table @samp
20271 @item 0
20272 No padding.
20273 @item 0.01
20274 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)
20275 @end table
20276
20277 Default value is @b{@samp{0}}.
20278 Maximum value is @b{@samp{0.1}}.
20279
20280 @item fin_pad
20281 @item fout_pad
20282 Set fixed padding for the input/output cubemap. Values in pixels.
20283
20284 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
20285
20286 @item in_forder
20287 @item out_forder
20288 Set order of faces for the input/output cubemap. Choose one direction for each position.
20289
20290 Designation of directions:
20291 @table @samp
20292 @item r
20293 right
20294 @item l
20295 left
20296 @item u
20297 up
20298 @item d
20299 down
20300 @item f
20301 forward
20302 @item b
20303 back
20304 @end table
20305
20306 Default value is @b{@samp{rludfb}}.
20307
20308 @item in_frot
20309 @item out_frot
20310 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
20311
20312 Designation of angles:
20313 @table @samp
20314 @item 0
20315 0 degrees clockwise
20316 @item 1
20317 90 degrees clockwise
20318 @item 2
20319 180 degrees clockwise
20320 @item 3
20321 270 degrees clockwise
20322 @end table
20323
20324 Default value is @b{@samp{000000}}.
20325 @end table
20326
20327 @item eac
20328 Equi-Angular Cubemap.
20329
20330 @item flat
20331 @item gnomonic
20332 @item rectilinear
20333 Regular video.
20334
20335 Format specific options:
20336 @table @option
20337 @item h_fov
20338 @item v_fov
20339 @item d_fov
20340 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20341
20342 If diagonal field of view is set it overrides horizontal and vertical field of view.
20343
20344 @item ih_fov
20345 @item iv_fov
20346 @item id_fov
20347 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20348
20349 If diagonal field of view is set it overrides horizontal and vertical field of view.
20350 @end table
20351
20352 @item dfisheye
20353 Dual fisheye.
20354
20355 Format specific options:
20356 @table @option
20357 @item h_fov
20358 @item v_fov
20359 @item d_fov
20360 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20361
20362 If diagonal field of view is set it overrides horizontal and vertical field of view.
20363
20364 @item ih_fov
20365 @item iv_fov
20366 @item id_fov
20367 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20368
20369 If diagonal field of view is set it overrides horizontal and vertical field of view.
20370 @end table
20371
20372 @item barrel
20373 @item fb
20374 @item barrelsplit
20375 Facebook's 360 formats.
20376
20377 @item sg
20378 Stereographic format.
20379
20380 Format specific options:
20381 @table @option
20382 @item h_fov
20383 @item v_fov
20384 @item d_fov
20385 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20386
20387 If diagonal field of view is set it overrides horizontal and vertical field of view.
20388
20389 @item ih_fov
20390 @item iv_fov
20391 @item id_fov
20392 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20393
20394 If diagonal field of view is set it overrides horizontal and vertical field of view.
20395 @end table
20396
20397 @item mercator
20398 Mercator format.
20399
20400 @item ball
20401 Ball format, gives significant distortion toward the back.
20402
20403 @item hammer
20404 Hammer-Aitoff map projection format.
20405
20406 @item sinusoidal
20407 Sinusoidal map projection format.
20408
20409 @item fisheye
20410 Fisheye projection.
20411
20412 Format specific options:
20413 @table @option
20414 @item h_fov
20415 @item v_fov
20416 @item d_fov
20417 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20418
20419 If diagonal field of view is set it overrides horizontal and vertical field of view.
20420
20421 @item ih_fov
20422 @item iv_fov
20423 @item id_fov
20424 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20425
20426 If diagonal field of view is set it overrides horizontal and vertical field of view.
20427 @end table
20428
20429 @item pannini
20430 Pannini projection.
20431
20432 Format specific options:
20433 @table @option
20434 @item h_fov
20435 Set output pannini parameter.
20436
20437 @item ih_fov
20438 Set input pannini parameter.
20439 @end table
20440
20441 @item cylindrical
20442 Cylindrical projection.
20443
20444 Format specific options:
20445 @table @option
20446 @item h_fov
20447 @item v_fov
20448 @item d_fov
20449 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20450
20451 If diagonal field of view is set it overrides horizontal and vertical field of view.
20452
20453 @item ih_fov
20454 @item iv_fov
20455 @item id_fov
20456 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20457
20458 If diagonal field of view is set it overrides horizontal and vertical field of view.
20459 @end table
20460
20461 @item perspective
20462 Perspective projection. @i{(output only)}
20463
20464 Format specific options:
20465 @table @option
20466 @item v_fov
20467 Set perspective parameter.
20468 @end table
20469
20470 @item tetrahedron
20471 Tetrahedron projection.
20472
20473 @item tsp
20474 Truncated square pyramid projection.
20475
20476 @item he
20477 @item hequirect
20478 Half equirectangular projection.
20479
20480 @item equisolid
20481 Equisolid format.
20482
20483 Format specific options:
20484 @table @option
20485 @item h_fov
20486 @item v_fov
20487 @item d_fov
20488 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20489
20490 If diagonal field of view is set it overrides horizontal and vertical field of view.
20491
20492 @item ih_fov
20493 @item iv_fov
20494 @item id_fov
20495 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20496
20497 If diagonal field of view is set it overrides horizontal and vertical field of view.
20498 @end table
20499
20500 @item og
20501 Orthographic format.
20502
20503 Format specific options:
20504 @table @option
20505 @item h_fov
20506 @item v_fov
20507 @item d_fov
20508 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20509
20510 If diagonal field of view is set it overrides horizontal and vertical field of view.
20511
20512 @item ih_fov
20513 @item iv_fov
20514 @item id_fov
20515 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20516
20517 If diagonal field of view is set it overrides horizontal and vertical field of view.
20518 @end table
20519
20520 @item octahedron
20521 Octahedron projection.
20522 @end table
20523
20524 @item interp
20525 Set interpolation method.@*
20526 @i{Note: more complex interpolation methods require much more memory to run.}
20527
20528 Available methods:
20529
20530 @table @samp
20531 @item near
20532 @item nearest
20533 Nearest neighbour.
20534 @item line
20535 @item linear
20536 Bilinear interpolation.
20537 @item lagrange9
20538 Lagrange9 interpolation.
20539 @item cube
20540 @item cubic
20541 Bicubic interpolation.
20542 @item lanc
20543 @item lanczos
20544 Lanczos interpolation.
20545 @item sp16
20546 @item spline16
20547 Spline16 interpolation.
20548 @item gauss
20549 @item gaussian
20550 Gaussian interpolation.
20551 @item mitchell
20552 Mitchell interpolation.
20553 @end table
20554
20555 Default value is @b{@samp{line}}.
20556
20557 @item w
20558 @item h
20559 Set the output video resolution.
20560
20561 Default resolution depends on formats.
20562
20563 @item in_stereo
20564 @item out_stereo
20565 Set the input/output stereo format.
20566
20567 @table @samp
20568 @item 2d
20569 2D mono
20570 @item sbs
20571 Side by side
20572 @item tb
20573 Top bottom
20574 @end table
20575
20576 Default value is @b{@samp{2d}} for input and output format.
20577
20578 @item yaw
20579 @item pitch
20580 @item roll
20581 Set rotation for the output video. Values in degrees.
20582
20583 @item rorder
20584 Set rotation order for the output video. Choose one item for each position.
20585
20586 @table @samp
20587 @item y, Y
20588 yaw
20589 @item p, P
20590 pitch
20591 @item r, R
20592 roll
20593 @end table
20594
20595 Default value is @b{@samp{ypr}}.
20596
20597 @item h_flip
20598 @item v_flip
20599 @item d_flip
20600 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
20601
20602 @item ih_flip
20603 @item iv_flip
20604 Set if input video is flipped horizontally/vertically. Boolean values.
20605
20606 @item in_trans
20607 Set if input video is transposed. Boolean value, by default disabled.
20608
20609 @item out_trans
20610 Set if output video needs to be transposed. Boolean value, by default disabled.
20611
20612 @item alpha_mask
20613 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
20614 @end table
20615
20616 @subsection Examples
20617
20618 @itemize
20619 @item
20620 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
20621 @example
20622 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
20623 @end example
20624 @item
20625 Extract back view of Equi-Angular Cubemap:
20626 @example
20627 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
20628 @end example
20629 @item
20630 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
20631 @example
20632 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
20633 @end example
20634 @end itemize
20635
20636 @subsection Commands
20637
20638 This filter supports subset of above options as @ref{commands}.
20639
20640 @section vaguedenoiser
20641
20642 Apply a wavelet based denoiser.
20643
20644 It transforms each frame from the video input into the wavelet domain,
20645 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
20646 the obtained coefficients. It does an inverse wavelet transform after.
20647 Due to wavelet properties, it should give a nice smoothed result, and
20648 reduced noise, without blurring picture features.
20649
20650 This filter accepts the following options:
20651
20652 @table @option
20653 @item threshold
20654 The filtering strength. The higher, the more filtered the video will be.
20655 Hard thresholding can use a higher threshold than soft thresholding
20656 before the video looks overfiltered. Default value is 2.
20657
20658 @item method
20659 The filtering method the filter will use.
20660
20661 It accepts the following values:
20662 @table @samp
20663 @item hard
20664 All values under the threshold will be zeroed.
20665
20666 @item soft
20667 All values under the threshold will be zeroed. All values above will be
20668 reduced by the threshold.
20669
20670 @item garrote
20671 Scales or nullifies coefficients - intermediary between (more) soft and
20672 (less) hard thresholding.
20673 @end table
20674
20675 Default is garrote.
20676
20677 @item nsteps
20678 Number of times, the wavelet will decompose the picture. Picture can't
20679 be decomposed beyond a particular point (typically, 8 for a 640x480
20680 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
20681
20682 @item percent
20683 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
20684
20685 @item planes
20686 A list of the planes to process. By default all planes are processed.
20687
20688 @item type
20689 The threshold type the filter will use.
20690
20691 It accepts the following values:
20692 @table @samp
20693 @item universal
20694 Threshold used is same for all decompositions.
20695
20696 @item bayes
20697 Threshold used depends also on each decomposition coefficients.
20698 @end table
20699
20700 Default is universal.
20701 @end table
20702
20703 @section vectorscope
20704
20705 Display 2 color component values in the two dimensional graph (which is called
20706 a vectorscope).
20707
20708 This filter accepts the following options:
20709
20710 @table @option
20711 @item mode, m
20712 Set vectorscope mode.
20713
20714 It accepts the following values:
20715 @table @samp
20716 @item gray
20717 @item tint
20718 Gray values are displayed on graph, higher brightness means more pixels have
20719 same component color value on location in graph. This is the default mode.
20720
20721 @item color
20722 Gray values are displayed on graph. Surrounding pixels values which are not
20723 present in video frame are drawn in gradient of 2 color components which are
20724 set by option @code{x} and @code{y}. The 3rd color component is static.
20725
20726 @item color2
20727 Actual color components values present in video frame are displayed on graph.
20728
20729 @item color3
20730 Similar as color2 but higher frequency of same values @code{x} and @code{y}
20731 on graph increases value of another color component, which is luminance by
20732 default values of @code{x} and @code{y}.
20733
20734 @item color4
20735 Actual colors present in video frame are displayed on graph. If two different
20736 colors map to same position on graph then color with higher value of component
20737 not present in graph is picked.
20738
20739 @item color5
20740 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
20741 component picked from radial gradient.
20742 @end table
20743
20744 @item x
20745 Set which color component will be represented on X-axis. Default is @code{1}.
20746
20747 @item y
20748 Set which color component will be represented on Y-axis. Default is @code{2}.
20749
20750 @item intensity, i
20751 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
20752 of color component which represents frequency of (X, Y) location in graph.
20753
20754 @item envelope, e
20755 @table @samp
20756 @item none
20757 No envelope, this is default.
20758
20759 @item instant
20760 Instant envelope, even darkest single pixel will be clearly highlighted.
20761
20762 @item peak
20763 Hold maximum and minimum values presented in graph over time. This way you
20764 can still spot out of range values without constantly looking at vectorscope.
20765
20766 @item peak+instant
20767 Peak and instant envelope combined together.
20768 @end table
20769
20770 @item graticule, g
20771 Set what kind of graticule to draw.
20772 @table @samp
20773 @item none
20774 @item green
20775 @item color
20776 @item invert
20777 @end table
20778
20779 @item opacity, o
20780 Set graticule opacity.
20781
20782 @item flags, f
20783 Set graticule flags.
20784
20785 @table @samp
20786 @item white
20787 Draw graticule for white point.
20788
20789 @item black
20790 Draw graticule for black point.
20791
20792 @item name
20793 Draw color points short names.
20794 @end table
20795
20796 @item bgopacity, b
20797 Set background opacity.
20798
20799 @item lthreshold, l
20800 Set low threshold for color component not represented on X or Y axis.
20801 Values lower than this value will be ignored. Default is 0.
20802 Note this value is multiplied with actual max possible value one pixel component
20803 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
20804 is 0.1 * 255 = 25.
20805
20806 @item hthreshold, h
20807 Set high threshold for color component not represented on X or Y axis.
20808 Values higher than this value will be ignored. Default is 1.
20809 Note this value is multiplied with actual max possible value one pixel component
20810 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
20811 is 0.9 * 255 = 230.
20812
20813 @item colorspace, c
20814 Set what kind of colorspace to use when drawing graticule.
20815 @table @samp
20816 @item auto
20817 @item 601
20818 @item 709
20819 @end table
20820 Default is auto.
20821
20822 @item tint0, t0
20823 @item tint1, t1
20824 Set color tint for gray/tint vectorscope mode. By default both options are zero.
20825 This means no tint, and output will remain gray.
20826 @end table
20827
20828 @anchor{vidstabdetect}
20829 @section vidstabdetect
20830
20831 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
20832 @ref{vidstabtransform} for pass 2.
20833
20834 This filter generates a file with relative translation and rotation
20835 transform information about subsequent frames, which is then used by
20836 the @ref{vidstabtransform} filter.
20837
20838 To enable compilation of this filter you need to configure FFmpeg with
20839 @code{--enable-libvidstab}.
20840
20841 This filter accepts the following options:
20842
20843 @table @option
20844 @item result
20845 Set the path to the file used to write the transforms information.
20846 Default value is @file{transforms.trf}.
20847
20848 @item shakiness
20849 Set how shaky the video is and how quick the camera is. It accepts an
20850 integer in the range 1-10, a value of 1 means little shakiness, a
20851 value of 10 means strong shakiness. Default value is 5.
20852
20853 @item accuracy
20854 Set the accuracy of the detection process. It must be a value in the
20855 range 1-15. A value of 1 means low accuracy, a value of 15 means high
20856 accuracy. Default value is 15.
20857
20858 @item stepsize
20859 Set stepsize of the search process. The region around minimum is
20860 scanned with 1 pixel resolution. Default value is 6.
20861
20862 @item mincontrast
20863 Set minimum contrast. Below this value a local measurement field is
20864 discarded. Must be a floating point value in the range 0-1. Default
20865 value is 0.3.
20866
20867 @item tripod
20868 Set reference frame number for tripod mode.
20869
20870 If enabled, the motion of the frames is compared to a reference frame
20871 in the filtered stream, identified by the specified number. The idea
20872 is to compensate all movements in a more-or-less static scene and keep
20873 the camera view absolutely still.
20874
20875 If set to 0, it is disabled. The frames are counted starting from 1.
20876
20877 @item show
20878 Show fields and transforms in the resulting frames. It accepts an
20879 integer in the range 0-2. Default value is 0, which disables any
20880 visualization.
20881 @end table
20882
20883 @subsection Examples
20884
20885 @itemize
20886 @item
20887 Use default values:
20888 @example
20889 vidstabdetect
20890 @end example
20891
20892 @item
20893 Analyze strongly shaky movie and put the results in file
20894 @file{mytransforms.trf}:
20895 @example
20896 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
20897 @end example
20898
20899 @item
20900 Visualize the result of internal transformations in the resulting
20901 video:
20902 @example
20903 vidstabdetect=show=1
20904 @end example
20905
20906 @item
20907 Analyze a video with medium shakiness using @command{ffmpeg}:
20908 @example
20909 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
20910 @end example
20911 @end itemize
20912
20913 @anchor{vidstabtransform}
20914 @section vidstabtransform
20915
20916 Video stabilization/deshaking: pass 2 of 2,
20917 see @ref{vidstabdetect} for pass 1.
20918
20919 Read a file with transform information for each frame and
20920 apply/compensate them. Together with the @ref{vidstabdetect}
20921 filter this can be used to deshake videos. See also
20922 @url{http://public.hronopik.de/vid.stab}. It is important to also use
20923 the @ref{unsharp} filter, see below.
20924
20925 To enable compilation of this filter you need to configure FFmpeg with
20926 @code{--enable-libvidstab}.
20927
20928 @subsection Options
20929
20930 @table @option
20931 @item input
20932 Set path to the file used to read the transforms. Default value is
20933 @file{transforms.trf}.
20934
20935 @item smoothing
20936 Set the number of frames (value*2 + 1) used for lowpass filtering the
20937 camera movements. Default value is 10.
20938
20939 For example a number of 10 means that 21 frames are used (10 in the
20940 past and 10 in the future) to smoothen the motion in the video. A
20941 larger value leads to a smoother video, but limits the acceleration of
20942 the camera (pan/tilt movements). 0 is a special case where a static
20943 camera is simulated.
20944
20945 @item optalgo
20946 Set the camera path optimization algorithm.
20947
20948 Accepted values are:
20949 @table @samp
20950 @item gauss
20951 gaussian kernel low-pass filter on camera motion (default)
20952 @item avg
20953 averaging on transformations
20954 @end table
20955
20956 @item maxshift
20957 Set maximal number of pixels to translate frames. Default value is -1,
20958 meaning no limit.
20959
20960 @item maxangle
20961 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
20962 value is -1, meaning no limit.
20963
20964 @item crop
20965 Specify how to deal with borders that may be visible due to movement
20966 compensation.
20967
20968 Available values are:
20969 @table @samp
20970 @item keep
20971 keep image information from previous frame (default)
20972 @item black
20973 fill the border black
20974 @end table
20975
20976 @item invert
20977 Invert transforms if set to 1. Default value is 0.
20978
20979 @item relative
20980 Consider transforms as relative to previous frame if set to 1,
20981 absolute if set to 0. Default value is 0.
20982
20983 @item zoom
20984 Set percentage to zoom. A positive value will result in a zoom-in
20985 effect, a negative value in a zoom-out effect. Default value is 0 (no
20986 zoom).
20987
20988 @item optzoom
20989 Set optimal zooming to avoid borders.
20990
20991 Accepted values are:
20992 @table @samp
20993 @item 0
20994 disabled
20995 @item 1
20996 optimal static zoom value is determined (only very strong movements
20997 will lead to visible borders) (default)
20998 @item 2
20999 optimal adaptive zoom value is determined (no borders will be
21000 visible), see @option{zoomspeed}
21001 @end table
21002
21003 Note that the value given at zoom is added to the one calculated here.
21004
21005 @item zoomspeed
21006 Set percent to zoom maximally each frame (enabled when
21007 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
21008 0.25.
21009
21010 @item interpol
21011 Specify type of interpolation.
21012
21013 Available values are:
21014 @table @samp
21015 @item no
21016 no interpolation
21017 @item linear
21018 linear only horizontal
21019 @item bilinear
21020 linear in both directions (default)
21021 @item bicubic
21022 cubic in both directions (slow)
21023 @end table
21024
21025 @item tripod
21026 Enable virtual tripod mode if set to 1, which is equivalent to
21027 @code{relative=0:smoothing=0}. Default value is 0.
21028
21029 Use also @code{tripod} option of @ref{vidstabdetect}.
21030
21031 @item debug
21032 Increase log verbosity if set to 1. Also the detected global motions
21033 are written to the temporary file @file{global_motions.trf}. Default
21034 value is 0.
21035 @end table
21036
21037 @subsection Examples
21038
21039 @itemize
21040 @item
21041 Use @command{ffmpeg} for a typical stabilization with default values:
21042 @example
21043 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
21044 @end example
21045
21046 Note the use of the @ref{unsharp} filter which is always recommended.
21047
21048 @item
21049 Zoom in a bit more and load transform data from a given file:
21050 @example
21051 vidstabtransform=zoom=5:input="mytransforms.trf"
21052 @end example
21053
21054 @item
21055 Smoothen the video even more:
21056 @example
21057 vidstabtransform=smoothing=30
21058 @end example
21059 @end itemize
21060
21061 @section vflip
21062
21063 Flip the input video vertically.
21064
21065 For example, to vertically flip a video with @command{ffmpeg}:
21066 @example
21067 ffmpeg -i in.avi -vf "vflip" out.avi
21068 @end example
21069
21070 @section vfrdet
21071
21072 Detect variable frame rate video.
21073
21074 This filter tries to detect if the input is variable or constant frame rate.
21075
21076 At end it will output number of frames detected as having variable delta pts,
21077 and ones with constant delta pts.
21078 If there was frames with variable delta, than it will also show min, max and
21079 average delta encountered.
21080
21081 @section vibrance
21082
21083 Boost or alter saturation.
21084
21085 The filter accepts the following options:
21086 @table @option
21087 @item intensity
21088 Set strength of boost if positive value or strength of alter if negative value.
21089 Default is 0. Allowed range is from -2 to 2.
21090
21091 @item rbal
21092 Set the red balance. Default is 1. Allowed range is from -10 to 10.
21093
21094 @item gbal
21095 Set the green balance. Default is 1. Allowed range is from -10 to 10.
21096
21097 @item bbal
21098 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
21099
21100 @item rlum
21101 Set the red luma coefficient.
21102
21103 @item glum
21104 Set the green luma coefficient.
21105
21106 @item blum
21107 Set the blue luma coefficient.
21108
21109 @item alternate
21110 If @code{intensity} is negative and this is set to 1, colors will change,
21111 otherwise colors will be less saturated, more towards gray.
21112 @end table
21113
21114 @subsection Commands
21115
21116 This filter supports the all above options as @ref{commands}.
21117
21118 @anchor{vignette}
21119 @section vignette
21120
21121 Make or reverse a natural vignetting effect.
21122
21123 The filter accepts the following options:
21124
21125 @table @option
21126 @item angle, a
21127 Set lens angle expression as a number of radians.
21128
21129 The value is clipped in the @code{[0,PI/2]} range.
21130
21131 Default value: @code{"PI/5"}
21132
21133 @item x0
21134 @item y0
21135 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
21136 by default.
21137
21138 @item mode
21139 Set forward/backward mode.
21140
21141 Available modes are:
21142 @table @samp
21143 @item forward
21144 The larger the distance from the central point, the darker the image becomes.
21145
21146 @item backward
21147 The larger the distance from the central point, the brighter the image becomes.
21148 This can be used to reverse a vignette effect, though there is no automatic
21149 detection to extract the lens @option{angle} and other settings (yet). It can
21150 also be used to create a burning effect.
21151 @end table
21152
21153 Default value is @samp{forward}.
21154
21155 @item eval
21156 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
21157
21158 It accepts the following values:
21159 @table @samp
21160 @item init
21161 Evaluate expressions only once during the filter initialization.
21162
21163 @item frame
21164 Evaluate expressions for each incoming frame. This is way slower than the
21165 @samp{init} mode since it requires all the scalers to be re-computed, but it
21166 allows advanced dynamic expressions.
21167 @end table
21168
21169 Default value is @samp{init}.
21170
21171 @item dither
21172 Set dithering to reduce the circular banding effects. Default is @code{1}
21173 (enabled).
21174
21175 @item aspect
21176 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
21177 Setting this value to the SAR of the input will make a rectangular vignetting
21178 following the dimensions of the video.
21179
21180 Default is @code{1/1}.
21181 @end table
21182
21183 @subsection Expressions
21184
21185 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
21186 following parameters.
21187
21188 @table @option
21189 @item w
21190 @item h
21191 input width and height
21192
21193 @item n
21194 the number of input frame, starting from 0
21195
21196 @item pts
21197 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
21198 @var{TB} units, NAN if undefined
21199
21200 @item r
21201 frame rate of the input video, NAN if the input frame rate is unknown
21202
21203 @item t
21204 the PTS (Presentation TimeStamp) of the filtered video frame,
21205 expressed in seconds, NAN if undefined
21206
21207 @item tb
21208 time base of the input video
21209 @end table
21210
21211
21212 @subsection Examples
21213
21214 @itemize
21215 @item
21216 Apply simple strong vignetting effect:
21217 @example
21218 vignette=PI/4
21219 @end example
21220
21221 @item
21222 Make a flickering vignetting:
21223 @example
21224 vignette='PI/4+random(1)*PI/50':eval=frame
21225 @end example
21226
21227 @end itemize
21228
21229 @section vmafmotion
21230
21231 Obtain the average VMAF motion score of a video.
21232 It is one of the component metrics of VMAF.
21233
21234 The obtained average motion score is printed through the logging system.
21235
21236 The filter accepts the following options:
21237
21238 @table @option
21239 @item stats_file
21240 If specified, the filter will use the named file to save the motion score of
21241 each frame with respect to the previous frame.
21242 When filename equals "-" the data is sent to standard output.
21243 @end table
21244
21245 Example:
21246 @example
21247 ffmpeg -i ref.mpg -vf vmafmotion -f null -
21248 @end example
21249
21250 @section vstack
21251 Stack input videos vertically.
21252
21253 All streams must be of same pixel format and of same width.
21254
21255 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
21256 to create same output.
21257
21258 The filter accepts the following options:
21259
21260 @table @option
21261 @item inputs
21262 Set number of input streams. Default is 2.
21263
21264 @item shortest
21265 If set to 1, force the output to terminate when the shortest input
21266 terminates. Default value is 0.
21267 @end table
21268
21269 @section w3fdif
21270
21271 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
21272 Deinterlacing Filter").
21273
21274 Based on the process described by Martin Weston for BBC R&D, and
21275 implemented based on the de-interlace algorithm written by Jim
21276 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
21277 uses filter coefficients calculated by BBC R&D.
21278
21279 This filter uses field-dominance information in frame to decide which
21280 of each pair of fields to place first in the output.
21281 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
21282
21283 There are two sets of filter coefficients, so called "simple"
21284 and "complex". Which set of filter coefficients is used can
21285 be set by passing an optional parameter:
21286
21287 @table @option
21288 @item filter
21289 Set the interlacing filter coefficients. Accepts one of the following values:
21290
21291 @table @samp
21292 @item simple
21293 Simple filter coefficient set.
21294 @item complex
21295 More-complex filter coefficient set.
21296 @end table
21297 Default value is @samp{complex}.
21298
21299 @item mode
21300 The interlacing mode to adopt. It accepts one of the following values:
21301
21302 @table @option
21303 @item frame
21304 Output one frame for each frame.
21305 @item field
21306 Output one frame for each field.
21307 @end table
21308
21309 The default value is @code{field}.
21310
21311 @item parity
21312 The picture field parity assumed for the input interlaced video. It accepts one
21313 of the following values:
21314
21315 @table @option
21316 @item tff
21317 Assume the top field is first.
21318 @item bff
21319 Assume the bottom field is first.
21320 @item auto
21321 Enable automatic detection of field parity.
21322 @end table
21323
21324 The default value is @code{auto}.
21325 If the interlacing is unknown or the decoder does not export this information,
21326 top field first will be assumed.
21327
21328 @item deint
21329 Specify which frames to deinterlace. Accepts one of the following values:
21330
21331 @table @samp
21332 @item all
21333 Deinterlace all frames,
21334 @item interlaced
21335 Only deinterlace frames marked as interlaced.
21336 @end table
21337
21338 Default value is @samp{all}.
21339 @end table
21340
21341 @subsection Commands
21342 This filter supports same @ref{commands} as options.
21343
21344 @section waveform
21345 Video waveform monitor.
21346
21347 The waveform monitor plots color component intensity. By default luminance
21348 only. Each column of the waveform corresponds to a column of pixels in the
21349 source video.
21350
21351 It accepts the following options:
21352
21353 @table @option
21354 @item mode, m
21355 Can be either @code{row}, or @code{column}. Default is @code{column}.
21356 In row mode, the graph on the left side represents color component value 0 and
21357 the right side represents value = 255. In column mode, the top side represents
21358 color component value = 0 and bottom side represents value = 255.
21359
21360 @item intensity, i
21361 Set intensity. Smaller values are useful to find out how many values of the same
21362 luminance are distributed across input rows/columns.
21363 Default value is @code{0.04}. Allowed range is [0, 1].
21364
21365 @item mirror, r
21366 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
21367 In mirrored mode, higher values will be represented on the left
21368 side for @code{row} mode and at the top for @code{column} mode. Default is
21369 @code{1} (mirrored).
21370
21371 @item display, d
21372 Set display mode.
21373 It accepts the following values:
21374 @table @samp
21375 @item overlay
21376 Presents information identical to that in the @code{parade}, except
21377 that the graphs representing color components are superimposed directly
21378 over one another.
21379
21380 This display mode makes it easier to spot relative differences or similarities
21381 in overlapping areas of the color components that are supposed to be identical,
21382 such as neutral whites, grays, or blacks.
21383
21384 @item stack
21385 Display separate graph for the color components side by side in
21386 @code{row} mode or one below the other in @code{column} mode.
21387
21388 @item parade
21389 Display separate graph for the color components side by side in
21390 @code{column} mode or one below the other in @code{row} mode.
21391
21392 Using this display mode makes it easy to spot color casts in the highlights
21393 and shadows of an image, by comparing the contours of the top and the bottom
21394 graphs of each waveform. Since whites, grays, and blacks are characterized
21395 by exactly equal amounts of red, green, and blue, neutral areas of the picture
21396 should display three waveforms of roughly equal width/height. If not, the
21397 correction is easy to perform by making level adjustments the three waveforms.
21398 @end table
21399 Default is @code{stack}.
21400
21401 @item components, c
21402 Set which color components to display. Default is 1, which means only luminance
21403 or red color component if input is in RGB colorspace. If is set for example to
21404 7 it will display all 3 (if) available color components.
21405
21406 @item envelope, e
21407 @table @samp
21408 @item none
21409 No envelope, this is default.
21410
21411 @item instant
21412 Instant envelope, minimum and maximum values presented in graph will be easily
21413 visible even with small @code{step} value.
21414
21415 @item peak
21416 Hold minimum and maximum values presented in graph across time. This way you
21417 can still spot out of range values without constantly looking at waveforms.
21418
21419 @item peak+instant
21420 Peak and instant envelope combined together.
21421 @end table
21422
21423 @item filter, f
21424 @table @samp
21425 @item lowpass
21426 No filtering, this is default.
21427
21428 @item flat
21429 Luma and chroma combined together.
21430
21431 @item aflat
21432 Similar as above, but shows difference between blue and red chroma.
21433
21434 @item xflat
21435 Similar as above, but use different colors.
21436
21437 @item yflat
21438 Similar as above, but again with different colors.
21439
21440 @item chroma
21441 Displays only chroma.
21442
21443 @item color
21444 Displays actual color value on waveform.
21445
21446 @item acolor
21447 Similar as above, but with luma showing frequency of chroma values.
21448 @end table
21449
21450 @item graticule, g
21451 Set which graticule to display.
21452
21453 @table @samp
21454 @item none
21455 Do not display graticule.
21456
21457 @item green
21458 Display green graticule showing legal broadcast ranges.
21459
21460 @item orange
21461 Display orange graticule showing legal broadcast ranges.
21462
21463 @item invert
21464 Display invert graticule showing legal broadcast ranges.
21465 @end table
21466
21467 @item opacity, o
21468 Set graticule opacity.
21469
21470 @item flags, fl
21471 Set graticule flags.
21472
21473 @table @samp
21474 @item numbers
21475 Draw numbers above lines. By default enabled.
21476
21477 @item dots
21478 Draw dots instead of lines.
21479 @end table
21480
21481 @item scale, s
21482 Set scale used for displaying graticule.
21483
21484 @table @samp
21485 @item digital
21486 @item millivolts
21487 @item ire
21488 @end table
21489 Default is digital.
21490
21491 @item bgopacity, b
21492 Set background opacity.
21493
21494 @item tint0, t0
21495 @item tint1, t1
21496 Set tint for output.
21497 Only used with lowpass filter and when display is not overlay and input
21498 pixel formats are not RGB.
21499 @end table
21500
21501 @section weave, doubleweave
21502
21503 The @code{weave} takes a field-based video input and join
21504 each two sequential fields into single frame, producing a new double
21505 height clip with half the frame rate and half the frame count.
21506
21507 The @code{doubleweave} works same as @code{weave} but without
21508 halving frame rate and frame count.
21509
21510 It accepts the following option:
21511
21512 @table @option
21513 @item first_field
21514 Set first field. Available values are:
21515
21516 @table @samp
21517 @item top, t
21518 Set the frame as top-field-first.
21519
21520 @item bottom, b
21521 Set the frame as bottom-field-first.
21522 @end table
21523 @end table
21524
21525 @subsection Examples
21526
21527 @itemize
21528 @item
21529 Interlace video using @ref{select} and @ref{separatefields} filter:
21530 @example
21531 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
21532 @end example
21533 @end itemize
21534
21535 @section xbr
21536 Apply the xBR high-quality magnification filter which is designed for pixel
21537 art. It follows a set of edge-detection rules, see
21538 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
21539
21540 It accepts the following option:
21541
21542 @table @option
21543 @item n
21544 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
21545 @code{3xBR} and @code{4} for @code{4xBR}.
21546 Default is @code{3}.
21547 @end table
21548
21549 @section xfade
21550
21551 Apply cross fade from one input video stream to another input video stream.
21552 The cross fade is applied for specified duration.
21553
21554 The filter accepts the following options:
21555
21556 @table @option
21557 @item transition
21558 Set one of available transition effects:
21559
21560 @table @samp
21561 @item custom
21562 @item fade
21563 @item wipeleft
21564 @item wiperight
21565 @item wipeup
21566 @item wipedown
21567 @item slideleft
21568 @item slideright
21569 @item slideup
21570 @item slidedown
21571 @item circlecrop
21572 @item rectcrop
21573 @item distance
21574 @item fadeblack
21575 @item fadewhite
21576 @item radial
21577 @item smoothleft
21578 @item smoothright
21579 @item smoothup
21580 @item smoothdown
21581 @item circleopen
21582 @item circleclose
21583 @item vertopen
21584 @item vertclose
21585 @item horzopen
21586 @item horzclose
21587 @item dissolve
21588 @item pixelize
21589 @item diagtl
21590 @item diagtr
21591 @item diagbl
21592 @item diagbr
21593 @item hlslice
21594 @item hrslice
21595 @item vuslice
21596 @item vdslice
21597 @item hblur
21598 @item fadegrays
21599 @item wipetl
21600 @item wipetr
21601 @item wipebl
21602 @item wipebr
21603 @item squeezeh
21604 @item squeezev
21605 @end table
21606 Default transition effect is fade.
21607
21608 @item duration
21609 Set cross fade duration in seconds.
21610 Default duration is 1 second.
21611
21612 @item offset
21613 Set cross fade start relative to first input stream in seconds.
21614 Default offset is 0.
21615
21616 @item expr
21617 Set expression for custom transition effect.
21618
21619 The expressions can use the following variables and functions:
21620
21621 @table @option
21622 @item X
21623 @item Y
21624 The coordinates of the current sample.
21625
21626 @item W
21627 @item H
21628 The width and height of the image.
21629
21630 @item P
21631 Progress of transition effect.
21632
21633 @item PLANE
21634 Currently processed plane.
21635
21636 @item A
21637 Return value of first input at current location and plane.
21638
21639 @item B
21640 Return value of second input at current location and plane.
21641
21642 @item a0(x, y)
21643 @item a1(x, y)
21644 @item a2(x, y)
21645 @item a3(x, y)
21646 Return the value of the pixel at location (@var{x},@var{y}) of the
21647 first/second/third/fourth component of first input.
21648
21649 @item b0(x, y)
21650 @item b1(x, y)
21651 @item b2(x, y)
21652 @item b3(x, y)
21653 Return the value of the pixel at location (@var{x},@var{y}) of the
21654 first/second/third/fourth component of second input.
21655 @end table
21656 @end table
21657
21658 @subsection Examples
21659
21660 @itemize
21661 @item
21662 Cross fade from one input video to another input video, with fade transition and duration of transition
21663 of 2 seconds starting at offset of 5 seconds:
21664 @example
21665 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
21666 @end example
21667 @end itemize
21668
21669 @section xmedian
21670 Pick median pixels from several input videos.
21671
21672 The filter accepts the following options:
21673
21674 @table @option
21675 @item inputs
21676 Set number of inputs.
21677 Default is 3. Allowed range is from 3 to 255.
21678 If number of inputs is even number, than result will be mean value between two median values.
21679
21680 @item planes
21681 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
21682
21683 @item percentile
21684 Set median percentile. Default value is @code{0.5}.
21685 Default value of @code{0.5} will pick always median values, while @code{0} will pick
21686 minimum values, and @code{1} maximum values.
21687 @end table
21688
21689 @subsection Commands
21690
21691 This filter supports all above options as @ref{commands}, excluding option @code{inputs}.
21692
21693 @section xstack
21694 Stack video inputs into custom layout.
21695
21696 All streams must be of same pixel format.
21697
21698 The filter accepts the following options:
21699
21700 @table @option
21701 @item inputs
21702 Set number of input streams. Default is 2.
21703
21704 @item layout
21705 Specify layout of inputs.
21706 This option requires the desired layout configuration to be explicitly set by the user.
21707 This sets position of each video input in output. Each input
21708 is separated by '|'.
21709 The first number represents the column, and the second number represents the row.
21710 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
21711 where X is video input from which to take width or height.
21712 Multiple values can be used when separated by '+'. In such
21713 case values are summed together.
21714
21715 Note that if inputs are of different sizes gaps may appear, as not all of
21716 the output video frame will be filled. Similarly, videos can overlap each
21717 other if their position doesn't leave enough space for the full frame of
21718 adjoining videos.
21719
21720 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
21721 a layout must be set by the user.
21722
21723 @item shortest
21724 If set to 1, force the output to terminate when the shortest input
21725 terminates. Default value is 0.
21726
21727 @item fill
21728 If set to valid color, all unused pixels will be filled with that color.
21729 By default fill is set to none, so it is disabled.
21730 @end table
21731
21732 @subsection Examples
21733
21734 @itemize
21735 @item
21736 Display 4 inputs into 2x2 grid.
21737
21738 Layout:
21739 @example
21740 input1(0, 0)  | input3(w0, 0)
21741 input2(0, h0) | input4(w0, h0)
21742 @end example
21743
21744 @example
21745 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
21746 @end example
21747
21748 Note that if inputs are of different sizes, gaps or overlaps may occur.
21749
21750 @item
21751 Display 4 inputs into 1x4 grid.
21752
21753 Layout:
21754 @example
21755 input1(0, 0)
21756 input2(0, h0)
21757 input3(0, h0+h1)
21758 input4(0, h0+h1+h2)
21759 @end example
21760
21761 @example
21762 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
21763 @end example
21764
21765 Note that if inputs are of different widths, unused space will appear.
21766
21767 @item
21768 Display 9 inputs into 3x3 grid.
21769
21770 Layout:
21771 @example
21772 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
21773 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
21774 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
21775 @end example
21776
21777 @example
21778 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
21779 @end example
21780
21781 Note that if inputs are of different sizes, gaps or overlaps may occur.
21782
21783 @item
21784 Display 16 inputs into 4x4 grid.
21785
21786 Layout:
21787 @example
21788 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
21789 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
21790 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
21791 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
21792 @end example
21793
21794 @example
21795 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|
21796 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
21797 @end example
21798
21799 Note that if inputs are of different sizes, gaps or overlaps may occur.
21800
21801 @end itemize
21802
21803 @anchor{yadif}
21804 @section yadif
21805
21806 Deinterlace the input video ("yadif" means "yet another deinterlacing
21807 filter").
21808
21809 It accepts the following parameters:
21810
21811
21812 @table @option
21813
21814 @item mode
21815 The interlacing mode to adopt. It accepts one of the following values:
21816
21817 @table @option
21818 @item 0, send_frame
21819 Output one frame for each frame.
21820 @item 1, send_field
21821 Output one frame for each field.
21822 @item 2, send_frame_nospatial
21823 Like @code{send_frame}, but it skips the spatial interlacing check.
21824 @item 3, send_field_nospatial
21825 Like @code{send_field}, but it skips the spatial interlacing check.
21826 @end table
21827
21828 The default value is @code{send_frame}.
21829
21830 @item parity
21831 The picture field parity assumed for the input interlaced video. It accepts one
21832 of the following values:
21833
21834 @table @option
21835 @item 0, tff
21836 Assume the top field is first.
21837 @item 1, bff
21838 Assume the bottom field is first.
21839 @item -1, auto
21840 Enable automatic detection of field parity.
21841 @end table
21842
21843 The default value is @code{auto}.
21844 If the interlacing is unknown or the decoder does not export this information,
21845 top field first will be assumed.
21846
21847 @item deint
21848 Specify which frames to deinterlace. Accepts one of the following
21849 values:
21850
21851 @table @option
21852 @item 0, all
21853 Deinterlace all frames.
21854 @item 1, interlaced
21855 Only deinterlace frames marked as interlaced.
21856 @end table
21857
21858 The default value is @code{all}.
21859 @end table
21860
21861 @section yadif_cuda
21862
21863 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
21864 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
21865 and/or nvenc.
21866
21867 It accepts the following parameters:
21868
21869
21870 @table @option
21871
21872 @item mode
21873 The interlacing mode to adopt. It accepts one of the following values:
21874
21875 @table @option
21876 @item 0, send_frame
21877 Output one frame for each frame.
21878 @item 1, send_field
21879 Output one frame for each field.
21880 @item 2, send_frame_nospatial
21881 Like @code{send_frame}, but it skips the spatial interlacing check.
21882 @item 3, send_field_nospatial
21883 Like @code{send_field}, but it skips the spatial interlacing check.
21884 @end table
21885
21886 The default value is @code{send_frame}.
21887
21888 @item parity
21889 The picture field parity assumed for the input interlaced video. It accepts one
21890 of the following values:
21891
21892 @table @option
21893 @item 0, tff
21894 Assume the top field is first.
21895 @item 1, bff
21896 Assume the bottom field is first.
21897 @item -1, auto
21898 Enable automatic detection of field parity.
21899 @end table
21900
21901 The default value is @code{auto}.
21902 If the interlacing is unknown or the decoder does not export this information,
21903 top field first will be assumed.
21904
21905 @item deint
21906 Specify which frames to deinterlace. Accepts one of the following
21907 values:
21908
21909 @table @option
21910 @item 0, all
21911 Deinterlace all frames.
21912 @item 1, interlaced
21913 Only deinterlace frames marked as interlaced.
21914 @end table
21915
21916 The default value is @code{all}.
21917 @end table
21918
21919 @section yaepblur
21920
21921 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
21922 The algorithm is described in
21923 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
21924
21925 It accepts the following parameters:
21926
21927 @table @option
21928 @item radius, r
21929 Set the window radius. Default value is 3.
21930
21931 @item planes, p
21932 Set which planes to filter. Default is only the first plane.
21933
21934 @item sigma, s
21935 Set blur strength. Default value is 128.
21936 @end table
21937
21938 @subsection Commands
21939 This filter supports same @ref{commands} as options.
21940
21941 @section zoompan
21942
21943 Apply Zoom & Pan effect.
21944
21945 This filter accepts the following options:
21946
21947 @table @option
21948 @item zoom, z
21949 Set the zoom expression. Range is 1-10. Default is 1.
21950
21951 @item x
21952 @item y
21953 Set the x and y expression. Default is 0.
21954
21955 @item d
21956 Set the duration expression in number of frames.
21957 This sets for how many number of frames effect will last for
21958 single input image.
21959
21960 @item s
21961 Set the output image size, default is 'hd720'.
21962
21963 @item fps
21964 Set the output frame rate, default is '25'.
21965 @end table
21966
21967 Each expression can contain the following constants:
21968
21969 @table @option
21970 @item in_w, iw
21971 Input width.
21972
21973 @item in_h, ih
21974 Input height.
21975
21976 @item out_w, ow
21977 Output width.
21978
21979 @item out_h, oh
21980 Output height.
21981
21982 @item in
21983 Input frame count.
21984
21985 @item on
21986 Output frame count.
21987
21988 @item in_time, it
21989 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
21990
21991 @item out_time, time, ot
21992 The output timestamp expressed in seconds.
21993
21994 @item x
21995 @item y
21996 Last calculated 'x' and 'y' position from 'x' and 'y' expression
21997 for current input frame.
21998
21999 @item px
22000 @item py
22001 'x' and 'y' of last output frame of previous input frame or 0 when there was
22002 not yet such frame (first input frame).
22003
22004 @item zoom
22005 Last calculated zoom from 'z' expression for current input frame.
22006
22007 @item pzoom
22008 Last calculated zoom of last output frame of previous input frame.
22009
22010 @item duration
22011 Number of output frames for current input frame. Calculated from 'd' expression
22012 for each input frame.
22013
22014 @item pduration
22015 number of output frames created for previous input frame
22016
22017 @item a
22018 Rational number: input width / input height
22019
22020 @item sar
22021 sample aspect ratio
22022
22023 @item dar
22024 display aspect ratio
22025
22026 @end table
22027
22028 @subsection Examples
22029
22030 @itemize
22031 @item
22032 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
22033 @example
22034 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
22035 @end example
22036
22037 @item
22038 Zoom in up to 1.5x and pan always at center of picture:
22039 @example
22040 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
22041 @end example
22042
22043 @item
22044 Same as above but without pausing:
22045 @example
22046 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
22047 @end example
22048
22049 @item
22050 Zoom in 2x into center of picture only for the first second of the input video:
22051 @example
22052 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
22053 @end example
22054
22055 @end itemize
22056
22057 @anchor{zscale}
22058 @section zscale
22059 Scale (resize) the input video, using the z.lib library:
22060 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
22061 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
22062
22063 The zscale filter forces the output display aspect ratio to be the same
22064 as the input, by changing the output sample aspect ratio.
22065
22066 If the input image format is different from the format requested by
22067 the next filter, the zscale filter will convert the input to the
22068 requested format.
22069
22070 @subsection Options
22071 The filter accepts the following options.
22072
22073 @table @option
22074 @item width, w
22075 @item height, h
22076 Set the output video dimension expression. Default value is the input
22077 dimension.
22078
22079 If the @var{width} or @var{w} value is 0, the input width is used for
22080 the output. If the @var{height} or @var{h} value is 0, the input height
22081 is used for the output.
22082
22083 If one and only one of the values is -n with n >= 1, the zscale filter
22084 will use a value that maintains the aspect ratio of the input image,
22085 calculated from the other specified dimension. After that it will,
22086 however, make sure that the calculated dimension is divisible by n and
22087 adjust the value if necessary.
22088
22089 If both values are -n with n >= 1, the behavior will be identical to
22090 both values being set to 0 as previously detailed.
22091
22092 See below for the list of accepted constants for use in the dimension
22093 expression.
22094
22095 @item size, s
22096 Set the video size. For the syntax of this option, check the
22097 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22098
22099 @item dither, d
22100 Set the dither type.
22101
22102 Possible values are:
22103 @table @var
22104 @item none
22105 @item ordered
22106 @item random
22107 @item error_diffusion
22108 @end table
22109
22110 Default is none.
22111
22112 @item filter, f
22113 Set the resize filter type.
22114
22115 Possible values are:
22116 @table @var
22117 @item point
22118 @item bilinear
22119 @item bicubic
22120 @item spline16
22121 @item spline36
22122 @item lanczos
22123 @end table
22124
22125 Default is bilinear.
22126
22127 @item range, r
22128 Set the color range.
22129
22130 Possible values are:
22131 @table @var
22132 @item input
22133 @item limited
22134 @item full
22135 @end table
22136
22137 Default is same as input.
22138
22139 @item primaries, p
22140 Set the color primaries.
22141
22142 Possible values are:
22143 @table @var
22144 @item input
22145 @item 709
22146 @item unspecified
22147 @item 170m
22148 @item 240m
22149 @item 2020
22150 @end table
22151
22152 Default is same as input.
22153
22154 @item transfer, t
22155 Set the transfer characteristics.
22156
22157 Possible values are:
22158 @table @var
22159 @item input
22160 @item 709
22161 @item unspecified
22162 @item 601
22163 @item linear
22164 @item 2020_10
22165 @item 2020_12
22166 @item smpte2084
22167 @item iec61966-2-1
22168 @item arib-std-b67
22169 @end table
22170
22171 Default is same as input.
22172
22173 @item matrix, m
22174 Set the colorspace matrix.
22175
22176 Possible value are:
22177 @table @var
22178 @item input
22179 @item 709
22180 @item unspecified
22181 @item 470bg
22182 @item 170m
22183 @item 2020_ncl
22184 @item 2020_cl
22185 @end table
22186
22187 Default is same as input.
22188
22189 @item rangein, rin
22190 Set the input color range.
22191
22192 Possible values are:
22193 @table @var
22194 @item input
22195 @item limited
22196 @item full
22197 @end table
22198
22199 Default is same as input.
22200
22201 @item primariesin, pin
22202 Set the input color primaries.
22203
22204 Possible values are:
22205 @table @var
22206 @item input
22207 @item 709
22208 @item unspecified
22209 @item 170m
22210 @item 240m
22211 @item 2020
22212 @end table
22213
22214 Default is same as input.
22215
22216 @item transferin, tin
22217 Set the input transfer characteristics.
22218
22219 Possible values are:
22220 @table @var
22221 @item input
22222 @item 709
22223 @item unspecified
22224 @item 601
22225 @item linear
22226 @item 2020_10
22227 @item 2020_12
22228 @end table
22229
22230 Default is same as input.
22231
22232 @item matrixin, min
22233 Set the input colorspace matrix.
22234
22235 Possible value are:
22236 @table @var
22237 @item input
22238 @item 709
22239 @item unspecified
22240 @item 470bg
22241 @item 170m
22242 @item 2020_ncl
22243 @item 2020_cl
22244 @end table
22245
22246 @item chromal, c
22247 Set the output chroma location.
22248
22249 Possible values are:
22250 @table @var
22251 @item input
22252 @item left
22253 @item center
22254 @item topleft
22255 @item top
22256 @item bottomleft
22257 @item bottom
22258 @end table
22259
22260 @item chromalin, cin
22261 Set the input chroma location.
22262
22263 Possible values are:
22264 @table @var
22265 @item input
22266 @item left
22267 @item center
22268 @item topleft
22269 @item top
22270 @item bottomleft
22271 @item bottom
22272 @end table
22273
22274 @item npl
22275 Set the nominal peak luminance.
22276 @end table
22277
22278 The values of the @option{w} and @option{h} options are expressions
22279 containing the following constants:
22280
22281 @table @var
22282 @item in_w
22283 @item in_h
22284 The input width and height
22285
22286 @item iw
22287 @item ih
22288 These are the same as @var{in_w} and @var{in_h}.
22289
22290 @item out_w
22291 @item out_h
22292 The output (scaled) width and height
22293
22294 @item ow
22295 @item oh
22296 These are the same as @var{out_w} and @var{out_h}
22297
22298 @item a
22299 The same as @var{iw} / @var{ih}
22300
22301 @item sar
22302 input sample aspect ratio
22303
22304 @item dar
22305 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
22306
22307 @item hsub
22308 @item vsub
22309 horizontal and vertical input chroma subsample values. For example for the
22310 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22311
22312 @item ohsub
22313 @item ovsub
22314 horizontal and vertical output chroma subsample values. For example for the
22315 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22316 @end table
22317
22318 @subsection Commands
22319
22320 This filter supports the following commands:
22321 @table @option
22322 @item width, w
22323 @item height, h
22324 Set the output video dimension expression.
22325 The command accepts the same syntax of the corresponding option.
22326
22327 If the specified expression is not valid, it is kept at its current
22328 value.
22329 @end table
22330
22331 @c man end VIDEO FILTERS
22332
22333 @chapter OpenCL Video Filters
22334 @c man begin OPENCL VIDEO FILTERS
22335
22336 Below is a description of the currently available OpenCL video filters.
22337
22338 To enable compilation of these filters you need to configure FFmpeg with
22339 @code{--enable-opencl}.
22340
22341 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
22342 @table @option
22343
22344 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
22345 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
22346 given device parameters.
22347
22348 @item -filter_hw_device @var{name}
22349 Pass the hardware device called @var{name} to all filters in any filter graph.
22350
22351 @end table
22352
22353 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
22354
22355 @itemize
22356 @item
22357 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
22358 @example
22359 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
22360 @end example
22361 @end itemize
22362
22363 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.
22364
22365 @section avgblur_opencl
22366
22367 Apply average blur filter.
22368
22369 The filter accepts the following options:
22370
22371 @table @option
22372 @item sizeX
22373 Set horizontal radius size.
22374 Range is @code{[1, 1024]} and default value is @code{1}.
22375
22376 @item planes
22377 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22378
22379 @item sizeY
22380 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
22381 @end table
22382
22383 @subsection Example
22384
22385 @itemize
22386 @item
22387 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.
22388 @example
22389 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
22390 @end example
22391 @end itemize
22392
22393 @section boxblur_opencl
22394
22395 Apply a boxblur algorithm to the input video.
22396
22397 It accepts the following parameters:
22398
22399 @table @option
22400
22401 @item luma_radius, lr
22402 @item luma_power, lp
22403 @item chroma_radius, cr
22404 @item chroma_power, cp
22405 @item alpha_radius, ar
22406 @item alpha_power, ap
22407
22408 @end table
22409
22410 A description of the accepted options follows.
22411
22412 @table @option
22413 @item luma_radius, lr
22414 @item chroma_radius, cr
22415 @item alpha_radius, ar
22416 Set an expression for the box radius in pixels used for blurring the
22417 corresponding input plane.
22418
22419 The radius value must be a non-negative number, and must not be
22420 greater than the value of the expression @code{min(w,h)/2} for the
22421 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
22422 planes.
22423
22424 Default value for @option{luma_radius} is "2". If not specified,
22425 @option{chroma_radius} and @option{alpha_radius} default to the
22426 corresponding value set for @option{luma_radius}.
22427
22428 The expressions can contain the following constants:
22429 @table @option
22430 @item w
22431 @item h
22432 The input width and height in pixels.
22433
22434 @item cw
22435 @item ch
22436 The input chroma image width and height in pixels.
22437
22438 @item hsub
22439 @item vsub
22440 The horizontal and vertical chroma subsample values. For example, for the
22441 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
22442 @end table
22443
22444 @item luma_power, lp
22445 @item chroma_power, cp
22446 @item alpha_power, ap
22447 Specify how many times the boxblur filter is applied to the
22448 corresponding plane.
22449
22450 Default value for @option{luma_power} is 2. If not specified,
22451 @option{chroma_power} and @option{alpha_power} default to the
22452 corresponding value set for @option{luma_power}.
22453
22454 A value of 0 will disable the effect.
22455 @end table
22456
22457 @subsection Examples
22458
22459 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.
22460
22461 @itemize
22462 @item
22463 Apply a boxblur filter with the luma, chroma, and alpha radius
22464 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.
22465 @example
22466 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
22467 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
22468 @end example
22469
22470 @item
22471 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.
22472
22473 For the luma plane, a 2x2 box radius will be run once.
22474
22475 For the chroma plane, a 4x4 box radius will be run 5 times.
22476
22477 For the alpha plane, a 3x3 box radius will be run 7 times.
22478 @example
22479 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
22480 @end example
22481 @end itemize
22482
22483 @section colorkey_opencl
22484 RGB colorspace color keying.
22485
22486 The filter accepts the following options:
22487
22488 @table @option
22489 @item color
22490 The color which will be replaced with transparency.
22491
22492 @item similarity
22493 Similarity percentage with the key color.
22494
22495 0.01 matches only the exact key color, while 1.0 matches everything.
22496
22497 @item blend
22498 Blend percentage.
22499
22500 0.0 makes pixels either fully transparent, or not transparent at all.
22501
22502 Higher values result in semi-transparent pixels, with a higher transparency
22503 the more similar the pixels color is to the key color.
22504 @end table
22505
22506 @subsection Examples
22507
22508 @itemize
22509 @item
22510 Make every semi-green pixel in the input transparent with some slight blending:
22511 @example
22512 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
22513 @end example
22514 @end itemize
22515
22516 @section convolution_opencl
22517
22518 Apply convolution of 3x3, 5x5, 7x7 matrix.
22519
22520 The filter accepts the following options:
22521
22522 @table @option
22523 @item 0m
22524 @item 1m
22525 @item 2m
22526 @item 3m
22527 Set matrix for each plane.
22528 Matrix is sequence of 9, 25 or 49 signed numbers.
22529 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
22530
22531 @item 0rdiv
22532 @item 1rdiv
22533 @item 2rdiv
22534 @item 3rdiv
22535 Set multiplier for calculated value for each plane.
22536 If unset or 0, it will be sum of all matrix elements.
22537 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
22538
22539 @item 0bias
22540 @item 1bias
22541 @item 2bias
22542 @item 3bias
22543 Set bias for each plane. This value is added to the result of the multiplication.
22544 Useful for making the overall image brighter or darker.
22545 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
22546
22547 @end table
22548
22549 @subsection Examples
22550
22551 @itemize
22552 @item
22553 Apply sharpen:
22554 @example
22555 -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
22556 @end example
22557
22558 @item
22559 Apply blur:
22560 @example
22561 -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
22562 @end example
22563
22564 @item
22565 Apply edge enhance:
22566 @example
22567 -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
22568 @end example
22569
22570 @item
22571 Apply edge detect:
22572 @example
22573 -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
22574 @end example
22575
22576 @item
22577 Apply laplacian edge detector which includes diagonals:
22578 @example
22579 -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
22580 @end example
22581
22582 @item
22583 Apply emboss:
22584 @example
22585 -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
22586 @end example
22587 @end itemize
22588
22589 @section erosion_opencl
22590
22591 Apply erosion effect to the video.
22592
22593 This filter replaces the pixel by the local(3x3) minimum.
22594
22595 It accepts the following options:
22596
22597 @table @option
22598 @item threshold0
22599 @item threshold1
22600 @item threshold2
22601 @item threshold3
22602 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22603 If @code{0}, plane will remain unchanged.
22604
22605 @item coordinates
22606 Flag which specifies the pixel to refer to.
22607 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22608
22609 Flags to local 3x3 coordinates region centered on @code{x}:
22610
22611     1 2 3
22612
22613     4 x 5
22614
22615     6 7 8
22616 @end table
22617
22618 @subsection Example
22619
22620 @itemize
22621 @item
22622 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.
22623 @example
22624 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22625 @end example
22626 @end itemize
22627
22628 @section deshake_opencl
22629 Feature-point based video stabilization filter.
22630
22631 The filter accepts the following options:
22632
22633 @table @option
22634 @item tripod
22635 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
22636
22637 @item debug
22638 Whether or not additional debug info should be displayed, both in the processed output and in the console.
22639
22640 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
22641
22642 Viewing point matches in the output video is only supported for RGB input.
22643
22644 Defaults to @code{0}.
22645
22646 @item adaptive_crop
22647 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
22648
22649 Defaults to @code{1}.
22650
22651 @item refine_features
22652 Whether or not feature points should be refined at a sub-pixel level.
22653
22654 This can be turned off for a slight performance gain at the cost of precision.
22655
22656 Defaults to @code{1}.
22657
22658 @item smooth_strength
22659 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
22660
22661 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
22662
22663 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
22664
22665 Defaults to @code{0.0}.
22666
22667 @item smooth_window_multiplier
22668 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
22669
22670 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
22671
22672 Acceptable values range from @code{0.1} to @code{10.0}.
22673
22674 Larger values increase the amount of motion data available for determining how to smooth the camera path,
22675 potentially improving smoothness, but also increase latency and memory usage.
22676
22677 Defaults to @code{2.0}.
22678
22679 @end table
22680
22681 @subsection Examples
22682
22683 @itemize
22684 @item
22685 Stabilize a video with a fixed, medium smoothing strength:
22686 @example
22687 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
22688 @end example
22689
22690 @item
22691 Stabilize a video with debugging (both in console and in rendered video):
22692 @example
22693 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
22694 @end example
22695 @end itemize
22696
22697 @section dilation_opencl
22698
22699 Apply dilation effect to the video.
22700
22701 This filter replaces the pixel by the local(3x3) maximum.
22702
22703 It accepts the following options:
22704
22705 @table @option
22706 @item threshold0
22707 @item threshold1
22708 @item threshold2
22709 @item threshold3
22710 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22711 If @code{0}, plane will remain unchanged.
22712
22713 @item coordinates
22714 Flag which specifies the pixel to refer to.
22715 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22716
22717 Flags to local 3x3 coordinates region centered on @code{x}:
22718
22719     1 2 3
22720
22721     4 x 5
22722
22723     6 7 8
22724 @end table
22725
22726 @subsection Example
22727
22728 @itemize
22729 @item
22730 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.
22731 @example
22732 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22733 @end example
22734 @end itemize
22735
22736 @section nlmeans_opencl
22737
22738 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
22739
22740 @section overlay_opencl
22741
22742 Overlay one video on top of another.
22743
22744 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
22745 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
22746
22747 The filter accepts the following options:
22748
22749 @table @option
22750
22751 @item x
22752 Set the x coordinate of the overlaid video on the main video.
22753 Default value is @code{0}.
22754
22755 @item y
22756 Set the y coordinate of the overlaid video on the main video.
22757 Default value is @code{0}.
22758
22759 @end table
22760
22761 @subsection Examples
22762
22763 @itemize
22764 @item
22765 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
22766 @example
22767 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22768 @end example
22769 @item
22770 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
22771 @example
22772 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22773 @end example
22774
22775 @end itemize
22776
22777 @section pad_opencl
22778
22779 Add paddings to the input image, and place the original input at the
22780 provided @var{x}, @var{y} coordinates.
22781
22782 It accepts the following options:
22783
22784 @table @option
22785 @item width, w
22786 @item height, h
22787 Specify an expression for the size of the output image with the
22788 paddings added. If the value for @var{width} or @var{height} is 0, the
22789 corresponding input size is used for the output.
22790
22791 The @var{width} expression can reference the value set by the
22792 @var{height} expression, and vice versa.
22793
22794 The default value of @var{width} and @var{height} is 0.
22795
22796 @item x
22797 @item y
22798 Specify the offsets to place the input image at within the padded area,
22799 with respect to the top/left border of the output image.
22800
22801 The @var{x} expression can reference the value set by the @var{y}
22802 expression, and vice versa.
22803
22804 The default value of @var{x} and @var{y} is 0.
22805
22806 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
22807 so the input image is centered on the padded area.
22808
22809 @item color
22810 Specify the color of the padded area. For the syntax of this option,
22811 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
22812 manual,ffmpeg-utils}.
22813
22814 @item aspect
22815 Pad to an aspect instead to a resolution.
22816 @end table
22817
22818 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
22819 options are expressions containing the following constants:
22820
22821 @table @option
22822 @item in_w
22823 @item in_h
22824 The input video width and height.
22825
22826 @item iw
22827 @item ih
22828 These are the same as @var{in_w} and @var{in_h}.
22829
22830 @item out_w
22831 @item out_h
22832 The output width and height (the size of the padded area), as
22833 specified by the @var{width} and @var{height} expressions.
22834
22835 @item ow
22836 @item oh
22837 These are the same as @var{out_w} and @var{out_h}.
22838
22839 @item x
22840 @item y
22841 The x and y offsets as specified by the @var{x} and @var{y}
22842 expressions, or NAN if not yet specified.
22843
22844 @item a
22845 same as @var{iw} / @var{ih}
22846
22847 @item sar
22848 input sample aspect ratio
22849
22850 @item dar
22851 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
22852 @end table
22853
22854 @section prewitt_opencl
22855
22856 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
22857
22858 The filter accepts the following option:
22859
22860 @table @option
22861 @item planes
22862 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22863
22864 @item scale
22865 Set value which will be multiplied with filtered result.
22866 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22867
22868 @item delta
22869 Set value which will be added to filtered result.
22870 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22871 @end table
22872
22873 @subsection Example
22874
22875 @itemize
22876 @item
22877 Apply the Prewitt operator with scale set to 2 and delta set to 10.
22878 @example
22879 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
22880 @end example
22881 @end itemize
22882
22883 @anchor{program_opencl}
22884 @section program_opencl
22885
22886 Filter video using an OpenCL program.
22887
22888 @table @option
22889
22890 @item source
22891 OpenCL program source file.
22892
22893 @item kernel
22894 Kernel name in program.
22895
22896 @item inputs
22897 Number of inputs to the filter.  Defaults to 1.
22898
22899 @item size, s
22900 Size of output frames.  Defaults to the same as the first input.
22901
22902 @end table
22903
22904 The @code{program_opencl} filter also supports the @ref{framesync} options.
22905
22906 The program source file must contain a kernel function with the given name,
22907 which will be run once for each plane of the output.  Each run on a plane
22908 gets enqueued as a separate 2D global NDRange with one work-item for each
22909 pixel to be generated.  The global ID offset for each work-item is therefore
22910 the coordinates of a pixel in the destination image.
22911
22912 The kernel function needs to take the following arguments:
22913 @itemize
22914 @item
22915 Destination image, @var{__write_only image2d_t}.
22916
22917 This image will become the output; the kernel should write all of it.
22918 @item
22919 Frame index, @var{unsigned int}.
22920
22921 This is a counter starting from zero and increasing by one for each frame.
22922 @item
22923 Source images, @var{__read_only image2d_t}.
22924
22925 These are the most recent images on each input.  The kernel may read from
22926 them to generate the output, but they can't be written to.
22927 @end itemize
22928
22929 Example programs:
22930
22931 @itemize
22932 @item
22933 Copy the input to the output (output must be the same size as the input).
22934 @verbatim
22935 __kernel void copy(__write_only image2d_t destination,
22936                    unsigned int index,
22937                    __read_only  image2d_t source)
22938 {
22939     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
22940
22941     int2 location = (int2)(get_global_id(0), get_global_id(1));
22942
22943     float4 value = read_imagef(source, sampler, location);
22944
22945     write_imagef(destination, location, value);
22946 }
22947 @end verbatim
22948
22949 @item
22950 Apply a simple transformation, rotating the input by an amount increasing
22951 with the index counter.  Pixel values are linearly interpolated by the
22952 sampler, and the output need not have the same dimensions as the input.
22953 @verbatim
22954 __kernel void rotate_image(__write_only image2d_t dst,
22955                            unsigned int index,
22956                            __read_only  image2d_t src)
22957 {
22958     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22959                                CLK_FILTER_LINEAR);
22960
22961     float angle = (float)index / 100.0f;
22962
22963     float2 dst_dim = convert_float2(get_image_dim(dst));
22964     float2 src_dim = convert_float2(get_image_dim(src));
22965
22966     float2 dst_cen = dst_dim / 2.0f;
22967     float2 src_cen = src_dim / 2.0f;
22968
22969     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
22970
22971     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
22972     float2 src_pos = {
22973         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
22974         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
22975     };
22976     src_pos = src_pos * src_dim / dst_dim;
22977
22978     float2 src_loc = src_pos + src_cen;
22979
22980     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
22981         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
22982         write_imagef(dst, dst_loc, 0.5f);
22983     else
22984         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
22985 }
22986 @end verbatim
22987
22988 @item
22989 Blend two inputs together, with the amount of each input used varying
22990 with the index counter.
22991 @verbatim
22992 __kernel void blend_images(__write_only image2d_t dst,
22993                            unsigned int index,
22994                            __read_only  image2d_t src1,
22995                            __read_only  image2d_t src2)
22996 {
22997     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22998                                CLK_FILTER_LINEAR);
22999
23000     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
23001
23002     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
23003     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
23004     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
23005
23006     float4 val1 = read_imagef(src1, sampler, src1_loc);
23007     float4 val2 = read_imagef(src2, sampler, src2_loc);
23008
23009     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
23010 }
23011 @end verbatim
23012
23013 @end itemize
23014
23015 @section roberts_opencl
23016 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
23017
23018 The filter accepts the following option:
23019
23020 @table @option
23021 @item planes
23022 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
23023
23024 @item scale
23025 Set value which will be multiplied with filtered result.
23026 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
23027
23028 @item delta
23029 Set value which will be added to filtered result.
23030 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
23031 @end table
23032
23033 @subsection Example
23034
23035 @itemize
23036 @item
23037 Apply the Roberts cross operator with scale set to 2 and delta set to 10
23038 @example
23039 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
23040 @end example
23041 @end itemize
23042
23043 @section sobel_opencl
23044
23045 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
23046
23047 The filter accepts the following option:
23048
23049 @table @option
23050 @item planes
23051 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
23052
23053 @item scale
23054 Set value which will be multiplied with filtered result.
23055 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
23056
23057 @item delta
23058 Set value which will be added to filtered result.
23059 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
23060 @end table
23061
23062 @subsection Example
23063
23064 @itemize
23065 @item
23066 Apply sobel operator with scale set to 2 and delta set to 10
23067 @example
23068 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
23069 @end example
23070 @end itemize
23071
23072 @section tonemap_opencl
23073
23074 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
23075
23076 It accepts the following parameters:
23077
23078 @table @option
23079 @item tonemap
23080 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
23081
23082 @item param
23083 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
23084
23085 @item desat
23086 Apply desaturation for highlights that exceed this level of brightness. The
23087 higher the parameter, the more color information will be preserved. This
23088 setting helps prevent unnaturally blown-out colors for super-highlights, by
23089 (smoothly) turning into white instead. This makes images feel more natural,
23090 at the cost of reducing information about out-of-range colors.
23091
23092 The default value is 0.5, and the algorithm here is a little different from
23093 the cpu version tonemap currently. A setting of 0.0 disables this option.
23094
23095 @item threshold
23096 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
23097 is used to detect whether the scene has changed or not. If the distance between
23098 the current frame average brightness and the current running average exceeds
23099 a threshold value, we would re-calculate scene average and peak brightness.
23100 The default value is 0.2.
23101
23102 @item format
23103 Specify the output pixel format.
23104
23105 Currently supported formats are:
23106 @table @var
23107 @item p010
23108 @item nv12
23109 @end table
23110
23111 @item range, r
23112 Set the output color range.
23113
23114 Possible values are:
23115 @table @var
23116 @item tv/mpeg
23117 @item pc/jpeg
23118 @end table
23119
23120 Default is same as input.
23121
23122 @item primaries, p
23123 Set the output color primaries.
23124
23125 Possible values are:
23126 @table @var
23127 @item bt709
23128 @item bt2020
23129 @end table
23130
23131 Default is same as input.
23132
23133 @item transfer, t
23134 Set the output transfer characteristics.
23135
23136 Possible values are:
23137 @table @var
23138 @item bt709
23139 @item bt2020
23140 @end table
23141
23142 Default is bt709.
23143
23144 @item matrix, m
23145 Set the output colorspace matrix.
23146
23147 Possible value are:
23148 @table @var
23149 @item bt709
23150 @item bt2020
23151 @end table
23152
23153 Default is same as input.
23154
23155 @end table
23156
23157 @subsection Example
23158
23159 @itemize
23160 @item
23161 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
23162 @example
23163 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
23164 @end example
23165 @end itemize
23166
23167 @section unsharp_opencl
23168
23169 Sharpen or blur the input video.
23170
23171 It accepts the following parameters:
23172
23173 @table @option
23174 @item luma_msize_x, lx
23175 Set the luma matrix horizontal size.
23176 Range is @code{[1, 23]} and default value is @code{5}.
23177
23178 @item luma_msize_y, ly
23179 Set the luma matrix vertical size.
23180 Range is @code{[1, 23]} and default value is @code{5}.
23181
23182 @item luma_amount, la
23183 Set the luma effect strength.
23184 Range is @code{[-10, 10]} and default value is @code{1.0}.
23185
23186 Negative values will blur the input video, while positive values will
23187 sharpen it, a value of zero will disable the effect.
23188
23189 @item chroma_msize_x, cx
23190 Set the chroma matrix horizontal size.
23191 Range is @code{[1, 23]} and default value is @code{5}.
23192
23193 @item chroma_msize_y, cy
23194 Set the chroma matrix vertical size.
23195 Range is @code{[1, 23]} and default value is @code{5}.
23196
23197 @item chroma_amount, ca
23198 Set the chroma effect strength.
23199 Range is @code{[-10, 10]} and default value is @code{0.0}.
23200
23201 Negative values will blur the input video, while positive values will
23202 sharpen it, a value of zero will disable the effect.
23203
23204 @end table
23205
23206 All parameters are optional and default to the equivalent of the
23207 string '5:5:1.0:5:5:0.0'.
23208
23209 @subsection Examples
23210
23211 @itemize
23212 @item
23213 Apply strong luma sharpen effect:
23214 @example
23215 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
23216 @end example
23217
23218 @item
23219 Apply a strong blur of both luma and chroma parameters:
23220 @example
23221 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
23222 @end example
23223 @end itemize
23224
23225 @section xfade_opencl
23226
23227 Cross fade two videos with custom transition effect by using OpenCL.
23228
23229 It accepts the following options:
23230
23231 @table @option
23232 @item transition
23233 Set one of possible transition effects.
23234
23235 @table @option
23236 @item custom
23237 Select custom transition effect, the actual transition description
23238 will be picked from source and kernel options.
23239
23240 @item fade
23241 @item wipeleft
23242 @item wiperight
23243 @item wipeup
23244 @item wipedown
23245 @item slideleft
23246 @item slideright
23247 @item slideup
23248 @item slidedown
23249
23250 Default transition is fade.
23251 @end table
23252
23253 @item source
23254 OpenCL program source file for custom transition.
23255
23256 @item kernel
23257 Set name of kernel to use for custom transition from program source file.
23258
23259 @item duration
23260 Set duration of video transition.
23261
23262 @item offset
23263 Set time of start of transition relative to first video.
23264 @end table
23265
23266 The program source file must contain a kernel function with the given name,
23267 which will be run once for each plane of the output.  Each run on a plane
23268 gets enqueued as a separate 2D global NDRange with one work-item for each
23269 pixel to be generated.  The global ID offset for each work-item is therefore
23270 the coordinates of a pixel in the destination image.
23271
23272 The kernel function needs to take the following arguments:
23273 @itemize
23274 @item
23275 Destination image, @var{__write_only image2d_t}.
23276
23277 This image will become the output; the kernel should write all of it.
23278
23279 @item
23280 First Source image, @var{__read_only image2d_t}.
23281 Second Source image, @var{__read_only image2d_t}.
23282
23283 These are the most recent images on each input.  The kernel may read from
23284 them to generate the output, but they can't be written to.
23285
23286 @item
23287 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
23288 @end itemize
23289
23290 Example programs:
23291
23292 @itemize
23293 @item
23294 Apply dots curtain transition effect:
23295 @verbatim
23296 __kernel void blend_images(__write_only image2d_t dst,
23297                            __read_only  image2d_t src1,
23298                            __read_only  image2d_t src2,
23299                            float progress)
23300 {
23301     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
23302                                CLK_FILTER_LINEAR);
23303     int2  p = (int2)(get_global_id(0), get_global_id(1));
23304     float2 rp = (float2)(get_global_id(0), get_global_id(1));
23305     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
23306     rp = rp / dim;
23307
23308     float2 dots = (float2)(20.0, 20.0);
23309     float2 center = (float2)(0,0);
23310     float2 unused;
23311
23312     float4 val1 = read_imagef(src1, sampler, p);
23313     float4 val2 = read_imagef(src2, sampler, p);
23314     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
23315
23316     write_imagef(dst, p, next ? val1 : val2);
23317 }
23318 @end verbatim
23319
23320 @end itemize
23321
23322 @c man end OPENCL VIDEO FILTERS
23323
23324 @chapter VAAPI Video Filters
23325 @c man begin VAAPI VIDEO FILTERS
23326
23327 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
23328
23329 To enable compilation of these filters you need to configure FFmpeg with
23330 @code{--enable-vaapi}.
23331
23332 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}
23333
23334 @section tonemap_vaapi
23335
23336 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
23337 It maps the dynamic range of HDR10 content to the SDR content.
23338 It currently only accepts HDR10 as input.
23339
23340 It accepts the following parameters:
23341
23342 @table @option
23343 @item format
23344 Specify the output pixel format.
23345
23346 Currently supported formats are:
23347 @table @var
23348 @item p010
23349 @item nv12
23350 @end table
23351
23352 Default is nv12.
23353
23354 @item primaries, p
23355 Set the output color primaries.
23356
23357 Default is same as input.
23358
23359 @item transfer, t
23360 Set the output transfer characteristics.
23361
23362 Default is bt709.
23363
23364 @item matrix, m
23365 Set the output colorspace matrix.
23366
23367 Default is same as input.
23368
23369 @end table
23370
23371 @subsection Example
23372
23373 @itemize
23374 @item
23375 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
23376 @example
23377 tonemap_vaapi=format=p010:t=bt2020-10
23378 @end example
23379 @end itemize
23380
23381 @c man end VAAPI VIDEO FILTERS
23382
23383 @chapter Video Sources
23384 @c man begin VIDEO SOURCES
23385
23386 Below is a description of the currently available video sources.
23387
23388 @section buffer
23389
23390 Buffer video frames, and make them available to the filter chain.
23391
23392 This source is mainly intended for a programmatic use, in particular
23393 through the interface defined in @file{libavfilter/buffersrc.h}.
23394
23395 It accepts the following parameters:
23396
23397 @table @option
23398
23399 @item video_size
23400 Specify the size (width and height) of the buffered video frames. For the
23401 syntax of this option, check the
23402 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23403
23404 @item width
23405 The input video width.
23406
23407 @item height
23408 The input video height.
23409
23410 @item pix_fmt
23411 A string representing the pixel format of the buffered video frames.
23412 It may be a number corresponding to a pixel format, or a pixel format
23413 name.
23414
23415 @item time_base
23416 Specify the timebase assumed by the timestamps of the buffered frames.
23417
23418 @item frame_rate
23419 Specify the frame rate expected for the video stream.
23420
23421 @item pixel_aspect, sar
23422 The sample (pixel) aspect ratio of the input video.
23423
23424 @item sws_param
23425 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
23426 to the filtergraph description to specify swscale flags for automatically
23427 inserted scalers. See @ref{Filtergraph syntax}.
23428
23429 @item hw_frames_ctx
23430 When using a hardware pixel format, this should be a reference to an
23431 AVHWFramesContext describing input frames.
23432 @end table
23433
23434 For example:
23435 @example
23436 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
23437 @end example
23438
23439 will instruct the source to accept video frames with size 320x240 and
23440 with format "yuv410p", assuming 1/24 as the timestamps timebase and
23441 square pixels (1:1 sample aspect ratio).
23442 Since the pixel format with name "yuv410p" corresponds to the number 6
23443 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
23444 this example corresponds to:
23445 @example
23446 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
23447 @end example
23448
23449 Alternatively, the options can be specified as a flat string, but this
23450 syntax is deprecated:
23451
23452 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
23453
23454 @section cellauto
23455
23456 Create a pattern generated by an elementary cellular automaton.
23457
23458 The initial state of the cellular automaton can be defined through the
23459 @option{filename} and @option{pattern} options. If such options are
23460 not specified an initial state is created randomly.
23461
23462 At each new frame a new row in the video is filled with the result of
23463 the cellular automaton next generation. The behavior when the whole
23464 frame is filled is defined by the @option{scroll} option.
23465
23466 This source accepts the following options:
23467
23468 @table @option
23469 @item filename, f
23470 Read the initial cellular automaton state, i.e. the starting row, from
23471 the specified file.
23472 In the file, each non-whitespace character is considered an alive
23473 cell, a newline will terminate the row, and further characters in the
23474 file will be ignored.
23475
23476 @item pattern, p
23477 Read the initial cellular automaton state, i.e. the starting row, from
23478 the specified string.
23479
23480 Each non-whitespace character in the string is considered an alive
23481 cell, a newline will terminate the row, and further characters in the
23482 string will be ignored.
23483
23484 @item rate, r
23485 Set the video rate, that is the number of frames generated per second.
23486 Default is 25.
23487
23488 @item random_fill_ratio, ratio
23489 Set the random fill ratio for the initial cellular automaton row. It
23490 is a floating point number value ranging from 0 to 1, defaults to
23491 1/PHI.
23492
23493 This option is ignored when a file or a pattern is specified.
23494
23495 @item random_seed, seed
23496 Set the seed for filling randomly the initial row, must be an integer
23497 included between 0 and UINT32_MAX. If not specified, or if explicitly
23498 set to -1, the filter will try to use a good random seed on a best
23499 effort basis.
23500
23501 @item rule
23502 Set the cellular automaton rule, it is a number ranging from 0 to 255.
23503 Default value is 110.
23504
23505 @item size, s
23506 Set the size of the output video. For the syntax of this option, check the
23507 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23508
23509 If @option{filename} or @option{pattern} is specified, the size is set
23510 by default to the width of the specified initial state row, and the
23511 height is set to @var{width} * PHI.
23512
23513 If @option{size} is set, it must contain the width of the specified
23514 pattern string, and the specified pattern will be centered in the
23515 larger row.
23516
23517 If a filename or a pattern string is not specified, the size value
23518 defaults to "320x518" (used for a randomly generated initial state).
23519
23520 @item scroll
23521 If set to 1, scroll the output upward when all the rows in the output
23522 have been already filled. If set to 0, the new generated row will be
23523 written over the top row just after the bottom row is filled.
23524 Defaults to 1.
23525
23526 @item start_full, full
23527 If set to 1, completely fill the output with generated rows before
23528 outputting the first frame.
23529 This is the default behavior, for disabling set the value to 0.
23530
23531 @item stitch
23532 If set to 1, stitch the left and right row edges together.
23533 This is the default behavior, for disabling set the value to 0.
23534 @end table
23535
23536 @subsection Examples
23537
23538 @itemize
23539 @item
23540 Read the initial state from @file{pattern}, and specify an output of
23541 size 200x400.
23542 @example
23543 cellauto=f=pattern:s=200x400
23544 @end example
23545
23546 @item
23547 Generate a random initial row with a width of 200 cells, with a fill
23548 ratio of 2/3:
23549 @example
23550 cellauto=ratio=2/3:s=200x200
23551 @end example
23552
23553 @item
23554 Create a pattern generated by rule 18 starting by a single alive cell
23555 centered on an initial row with width 100:
23556 @example
23557 cellauto=p=@@:s=100x400:full=0:rule=18
23558 @end example
23559
23560 @item
23561 Specify a more elaborated initial pattern:
23562 @example
23563 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
23564 @end example
23565
23566 @end itemize
23567
23568 @anchor{coreimagesrc}
23569 @section coreimagesrc
23570 Video source generated on GPU using Apple's CoreImage API on OSX.
23571
23572 This video source is a specialized version of the @ref{coreimage} video filter.
23573 Use a core image generator at the beginning of the applied filterchain to
23574 generate the content.
23575
23576 The coreimagesrc video source accepts the following options:
23577 @table @option
23578 @item list_generators
23579 List all available generators along with all their respective options as well as
23580 possible minimum and maximum values along with the default values.
23581 @example
23582 list_generators=true
23583 @end example
23584
23585 @item size, s
23586 Specify the size of the sourced video. For the syntax of this option, check the
23587 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23588 The default value is @code{320x240}.
23589
23590 @item rate, r
23591 Specify the frame rate of the sourced video, as the number of frames
23592 generated per second. It has to be a string in the format
23593 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23594 number or a valid video frame rate abbreviation. The default value is
23595 "25".
23596
23597 @item sar
23598 Set the sample aspect ratio of the sourced video.
23599
23600 @item duration, d
23601 Set the duration of the sourced video. See
23602 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23603 for the accepted syntax.
23604
23605 If not specified, or the expressed duration is negative, the video is
23606 supposed to be generated forever.
23607 @end table
23608
23609 Additionally, all options of the @ref{coreimage} video filter are accepted.
23610 A complete filterchain can be used for further processing of the
23611 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
23612 and examples for details.
23613
23614 @subsection Examples
23615
23616 @itemize
23617
23618 @item
23619 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
23620 given as complete and escaped command-line for Apple's standard bash shell:
23621 @example
23622 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
23623 @end example
23624 This example is equivalent to the QRCode example of @ref{coreimage} without the
23625 need for a nullsrc video source.
23626 @end itemize
23627
23628
23629 @section gradients
23630 Generate several gradients.
23631
23632 @table @option
23633 @item size, s
23634 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23635 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23636
23637 @item rate, r
23638 Set frame rate, expressed as number of frames per second. Default
23639 value is "25".
23640
23641 @item c0, c1, c2, c3, c4, c5, c6, c7
23642 Set 8 colors. Default values for colors is to pick random one.
23643
23644 @item x0, y0, y0, y1
23645 Set gradient line source and destination points. If negative or out of range, random ones
23646 are picked.
23647
23648 @item nb_colors, n
23649 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
23650
23651 @item seed
23652 Set seed for picking gradient line points.
23653
23654 @item duration, d
23655 Set the duration of the sourced video. See
23656 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23657 for the accepted syntax.
23658
23659 If not specified, or the expressed duration is negative, the video is
23660 supposed to be generated forever.
23661
23662 @item speed
23663 Set speed of gradients rotation.
23664 @end table
23665
23666
23667 @section mandelbrot
23668
23669 Generate a Mandelbrot set fractal, and progressively zoom towards the
23670 point specified with @var{start_x} and @var{start_y}.
23671
23672 This source accepts the following options:
23673
23674 @table @option
23675
23676 @item end_pts
23677 Set the terminal pts value. Default value is 400.
23678
23679 @item end_scale
23680 Set the terminal scale value.
23681 Must be a floating point value. Default value is 0.3.
23682
23683 @item inner
23684 Set the inner coloring mode, that is the algorithm used to draw the
23685 Mandelbrot fractal internal region.
23686
23687 It shall assume one of the following values:
23688 @table @option
23689 @item black
23690 Set black mode.
23691 @item convergence
23692 Show time until convergence.
23693 @item mincol
23694 Set color based on point closest to the origin of the iterations.
23695 @item period
23696 Set period mode.
23697 @end table
23698
23699 Default value is @var{mincol}.
23700
23701 @item bailout
23702 Set the bailout value. Default value is 10.0.
23703
23704 @item maxiter
23705 Set the maximum of iterations performed by the rendering
23706 algorithm. Default value is 7189.
23707
23708 @item outer
23709 Set outer coloring mode.
23710 It shall assume one of following values:
23711 @table @option
23712 @item iteration_count
23713 Set iteration count mode.
23714 @item normalized_iteration_count
23715 set normalized iteration count mode.
23716 @end table
23717 Default value is @var{normalized_iteration_count}.
23718
23719 @item rate, r
23720 Set frame rate, expressed as number of frames per second. Default
23721 value is "25".
23722
23723 @item size, s
23724 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23725 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23726
23727 @item start_scale
23728 Set the initial scale value. Default value is 3.0.
23729
23730 @item start_x
23731 Set the initial x position. Must be a floating point value between
23732 -100 and 100. Default value is -0.743643887037158704752191506114774.
23733
23734 @item start_y
23735 Set the initial y position. Must be a floating point value between
23736 -100 and 100. Default value is -0.131825904205311970493132056385139.
23737 @end table
23738
23739 @section mptestsrc
23740
23741 Generate various test patterns, as generated by the MPlayer test filter.
23742
23743 The size of the generated video is fixed, and is 256x256.
23744 This source is useful in particular for testing encoding features.
23745
23746 This source accepts the following options:
23747
23748 @table @option
23749
23750 @item rate, r
23751 Specify the frame rate of the sourced video, as the number of frames
23752 generated per second. It has to be a string in the format
23753 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23754 number or a valid video frame rate abbreviation. The default value is
23755 "25".
23756
23757 @item duration, d
23758 Set the duration of the sourced video. See
23759 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23760 for the accepted syntax.
23761
23762 If not specified, or the expressed duration is negative, the video is
23763 supposed to be generated forever.
23764
23765 @item test, t
23766
23767 Set the number or the name of the test to perform. Supported tests are:
23768 @table @option
23769 @item dc_luma
23770 @item dc_chroma
23771 @item freq_luma
23772 @item freq_chroma
23773 @item amp_luma
23774 @item amp_chroma
23775 @item cbp
23776 @item mv
23777 @item ring1
23778 @item ring2
23779 @item all
23780
23781 @item max_frames, m
23782 Set the maximum number of frames generated for each test, default value is 30.
23783
23784 @end table
23785
23786 Default value is "all", which will cycle through the list of all tests.
23787 @end table
23788
23789 Some examples:
23790 @example
23791 mptestsrc=t=dc_luma
23792 @end example
23793
23794 will generate a "dc_luma" test pattern.
23795
23796 @section frei0r_src
23797
23798 Provide a frei0r source.
23799
23800 To enable compilation of this filter you need to install the frei0r
23801 header and configure FFmpeg with @code{--enable-frei0r}.
23802
23803 This source accepts the following parameters:
23804
23805 @table @option
23806
23807 @item size
23808 The size of the video to generate. For the syntax of this option, check the
23809 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23810
23811 @item framerate
23812 The framerate of the generated video. It may be a string of the form
23813 @var{num}/@var{den} or a frame rate abbreviation.
23814
23815 @item filter_name
23816 The name to the frei0r source to load. For more information regarding frei0r and
23817 how to set the parameters, read the @ref{frei0r} section in the video filters
23818 documentation.
23819
23820 @item filter_params
23821 A '|'-separated list of parameters to pass to the frei0r source.
23822
23823 @end table
23824
23825 For example, to generate a frei0r partik0l source with size 200x200
23826 and frame rate 10 which is overlaid on the overlay filter main input:
23827 @example
23828 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
23829 @end example
23830
23831 @section life
23832
23833 Generate a life pattern.
23834
23835 This source is based on a generalization of John Conway's life game.
23836
23837 The sourced input represents a life grid, each pixel represents a cell
23838 which can be in one of two possible states, alive or dead. Every cell
23839 interacts with its eight neighbours, which are the cells that are
23840 horizontally, vertically, or diagonally adjacent.
23841
23842 At each interaction the grid evolves according to the adopted rule,
23843 which specifies the number of neighbor alive cells which will make a
23844 cell stay alive or born. The @option{rule} option allows one to specify
23845 the rule to adopt.
23846
23847 This source accepts the following options:
23848
23849 @table @option
23850 @item filename, f
23851 Set the file from which to read the initial grid state. In the file,
23852 each non-whitespace character is considered an alive cell, and newline
23853 is used to delimit the end of each row.
23854
23855 If this option is not specified, the initial grid is generated
23856 randomly.
23857
23858 @item rate, r
23859 Set the video rate, that is the number of frames generated per second.
23860 Default is 25.
23861
23862 @item random_fill_ratio, ratio
23863 Set the random fill ratio for the initial random grid. It is a
23864 floating point number value ranging from 0 to 1, defaults to 1/PHI.
23865 It is ignored when a file is specified.
23866
23867 @item random_seed, seed
23868 Set the seed for filling the initial random grid, must be an integer
23869 included between 0 and UINT32_MAX. If not specified, or if explicitly
23870 set to -1, the filter will try to use a good random seed on a best
23871 effort basis.
23872
23873 @item rule
23874 Set the life rule.
23875
23876 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
23877 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
23878 @var{NS} specifies the number of alive neighbor cells which make a
23879 live cell stay alive, and @var{NB} the number of alive neighbor cells
23880 which make a dead cell to become alive (i.e. to "born").
23881 "s" and "b" can be used in place of "S" and "B", respectively.
23882
23883 Alternatively a rule can be specified by an 18-bits integer. The 9
23884 high order bits are used to encode the next cell state if it is alive
23885 for each number of neighbor alive cells, the low order bits specify
23886 the rule for "borning" new cells. Higher order bits encode for an
23887 higher number of neighbor cells.
23888 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
23889 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
23890
23891 Default value is "S23/B3", which is the original Conway's game of life
23892 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
23893 cells, and will born a new cell if there are three alive cells around
23894 a dead cell.
23895
23896 @item size, s
23897 Set the size of the output video. For the syntax of this option, check the
23898 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23899
23900 If @option{filename} is specified, the size is set by default to the
23901 same size of the input file. If @option{size} is set, it must contain
23902 the size specified in the input file, and the initial grid defined in
23903 that file is centered in the larger resulting area.
23904
23905 If a filename is not specified, the size value defaults to "320x240"
23906 (used for a randomly generated initial grid).
23907
23908 @item stitch
23909 If set to 1, stitch the left and right grid edges together, and the
23910 top and bottom edges also. Defaults to 1.
23911
23912 @item mold
23913 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
23914 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
23915 value from 0 to 255.
23916
23917 @item life_color
23918 Set the color of living (or new born) cells.
23919
23920 @item death_color
23921 Set the color of dead cells. If @option{mold} is set, this is the first color
23922 used to represent a dead cell.
23923
23924 @item mold_color
23925 Set mold color, for definitely dead and moldy cells.
23926
23927 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
23928 ffmpeg-utils manual,ffmpeg-utils}.
23929 @end table
23930
23931 @subsection Examples
23932
23933 @itemize
23934 @item
23935 Read a grid from @file{pattern}, and center it on a grid of size
23936 300x300 pixels:
23937 @example
23938 life=f=pattern:s=300x300
23939 @end example
23940
23941 @item
23942 Generate a random grid of size 200x200, with a fill ratio of 2/3:
23943 @example
23944 life=ratio=2/3:s=200x200
23945 @end example
23946
23947 @item
23948 Specify a custom rule for evolving a randomly generated grid:
23949 @example
23950 life=rule=S14/B34
23951 @end example
23952
23953 @item
23954 Full example with slow death effect (mold) using @command{ffplay}:
23955 @example
23956 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
23957 @end example
23958 @end itemize
23959
23960 @anchor{allrgb}
23961 @anchor{allyuv}
23962 @anchor{color}
23963 @anchor{haldclutsrc}
23964 @anchor{nullsrc}
23965 @anchor{pal75bars}
23966 @anchor{pal100bars}
23967 @anchor{rgbtestsrc}
23968 @anchor{smptebars}
23969 @anchor{smptehdbars}
23970 @anchor{testsrc}
23971 @anchor{testsrc2}
23972 @anchor{yuvtestsrc}
23973 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
23974
23975 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
23976
23977 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
23978
23979 The @code{color} source provides an uniformly colored input.
23980
23981 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
23982 @ref{haldclut} filter.
23983
23984 The @code{nullsrc} source returns unprocessed video frames. It is
23985 mainly useful to be employed in analysis / debugging tools, or as the
23986 source for filters which ignore the input data.
23987
23988 The @code{pal75bars} source generates a color bars pattern, based on
23989 EBU PAL recommendations with 75% color levels.
23990
23991 The @code{pal100bars} source generates a color bars pattern, based on
23992 EBU PAL recommendations with 100% color levels.
23993
23994 The @code{rgbtestsrc} source generates an RGB test pattern useful for
23995 detecting RGB vs BGR issues. You should see a red, green and blue
23996 stripe from top to bottom.
23997
23998 The @code{smptebars} source generates a color bars pattern, based on
23999 the SMPTE Engineering Guideline EG 1-1990.
24000
24001 The @code{smptehdbars} source generates a color bars pattern, based on
24002 the SMPTE RP 219-2002.
24003
24004 The @code{testsrc} source generates a test video pattern, showing a
24005 color pattern, a scrolling gradient and a timestamp. This is mainly
24006 intended for testing purposes.
24007
24008 The @code{testsrc2} source is similar to testsrc, but supports more
24009 pixel formats instead of just @code{rgb24}. This allows using it as an
24010 input for other tests without requiring a format conversion.
24011
24012 The @code{yuvtestsrc} source generates an YUV test pattern. You should
24013 see a y, cb and cr stripe from top to bottom.
24014
24015 The sources accept the following parameters:
24016
24017 @table @option
24018
24019 @item level
24020 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
24021 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
24022 pixels to be used as identity matrix for 3D lookup tables. Each component is
24023 coded on a @code{1/(N*N)} scale.
24024
24025 @item color, c
24026 Specify the color of the source, only available in the @code{color}
24027 source. For the syntax of this option, check the
24028 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
24029
24030 @item size, s
24031 Specify the size of the sourced video. For the syntax of this option, check the
24032 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24033 The default value is @code{320x240}.
24034
24035 This option is not available with the @code{allrgb}, @code{allyuv}, and
24036 @code{haldclutsrc} filters.
24037
24038 @item rate, r
24039 Specify the frame rate of the sourced video, as the number of frames
24040 generated per second. It has to be a string in the format
24041 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
24042 number or a valid video frame rate abbreviation. The default value is
24043 "25".
24044
24045 @item duration, d
24046 Set the duration of the sourced video. See
24047 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
24048 for the accepted syntax.
24049
24050 If not specified, or the expressed duration is negative, the video is
24051 supposed to be generated forever.
24052
24053 Since the frame rate is used as time base, all frames including the last one
24054 will have their full duration. If the specified duration is not a multiple
24055 of the frame duration, it will be rounded up.
24056
24057 @item sar
24058 Set the sample aspect ratio of the sourced video.
24059
24060 @item alpha
24061 Specify the alpha (opacity) of the background, only available in the
24062 @code{testsrc2} source. The value must be between 0 (fully transparent) and
24063 255 (fully opaque, the default).
24064
24065 @item decimals, n
24066 Set the number of decimals to show in the timestamp, only available in the
24067 @code{testsrc} source.
24068
24069 The displayed timestamp value will correspond to the original
24070 timestamp value multiplied by the power of 10 of the specified
24071 value. Default value is 0.
24072 @end table
24073
24074 @subsection Examples
24075
24076 @itemize
24077 @item
24078 Generate a video with a duration of 5.3 seconds, with size
24079 176x144 and a frame rate of 10 frames per second:
24080 @example
24081 testsrc=duration=5.3:size=qcif:rate=10
24082 @end example
24083
24084 @item
24085 The following graph description will generate a red source
24086 with an opacity of 0.2, with size "qcif" and a frame rate of 10
24087 frames per second:
24088 @example
24089 color=c=red@@0.2:s=qcif:r=10
24090 @end example
24091
24092 @item
24093 If the input content is to be ignored, @code{nullsrc} can be used. The
24094 following command generates noise in the luminance plane by employing
24095 the @code{geq} filter:
24096 @example
24097 nullsrc=s=256x256, geq=random(1)*255:128:128
24098 @end example
24099 @end itemize
24100
24101 @subsection Commands
24102
24103 The @code{color} source supports the following commands:
24104
24105 @table @option
24106 @item c, color
24107 Set the color of the created image. Accepts the same syntax of the
24108 corresponding @option{color} option.
24109 @end table
24110
24111 @section openclsrc
24112
24113 Generate video using an OpenCL program.
24114
24115 @table @option
24116
24117 @item source
24118 OpenCL program source file.
24119
24120 @item kernel
24121 Kernel name in program.
24122
24123 @item size, s
24124 Size of frames to generate.  This must be set.
24125
24126 @item format
24127 Pixel format to use for the generated frames.  This must be set.
24128
24129 @item rate, r
24130 Number of frames generated every second.  Default value is '25'.
24131
24132 @end table
24133
24134 For details of how the program loading works, see the @ref{program_opencl}
24135 filter.
24136
24137 Example programs:
24138
24139 @itemize
24140 @item
24141 Generate a colour ramp by setting pixel values from the position of the pixel
24142 in the output image.  (Note that this will work with all pixel formats, but
24143 the generated output will not be the same.)
24144 @verbatim
24145 __kernel void ramp(__write_only image2d_t dst,
24146                    unsigned int index)
24147 {
24148     int2 loc = (int2)(get_global_id(0), get_global_id(1));
24149
24150     float4 val;
24151     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
24152
24153     write_imagef(dst, loc, val);
24154 }
24155 @end verbatim
24156
24157 @item
24158 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
24159 @verbatim
24160 __kernel void sierpinski_carpet(__write_only image2d_t dst,
24161                                 unsigned int index)
24162 {
24163     int2 loc = (int2)(get_global_id(0), get_global_id(1));
24164
24165     float4 value = 0.0f;
24166     int x = loc.x + index;
24167     int y = loc.y + index;
24168     while (x > 0 || y > 0) {
24169         if (x % 3 == 1 && y % 3 == 1) {
24170             value = 1.0f;
24171             break;
24172         }
24173         x /= 3;
24174         y /= 3;
24175     }
24176
24177     write_imagef(dst, loc, value);
24178 }
24179 @end verbatim
24180
24181 @end itemize
24182
24183 @section sierpinski
24184
24185 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
24186
24187 This source accepts the following options:
24188
24189 @table @option
24190 @item size, s
24191 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
24192 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
24193
24194 @item rate, r
24195 Set frame rate, expressed as number of frames per second. Default
24196 value is "25".
24197
24198 @item seed
24199 Set seed which is used for random panning.
24200
24201 @item jump
24202 Set max jump for single pan destination. Allowed range is from 1 to 10000.
24203
24204 @item type
24205 Set fractal type, can be default @code{carpet} or @code{triangle}.
24206 @end table
24207
24208 @c man end VIDEO SOURCES
24209
24210 @chapter Video Sinks
24211 @c man begin VIDEO SINKS
24212
24213 Below is a description of the currently available video sinks.
24214
24215 @section buffersink
24216
24217 Buffer video frames, and make them available to the end of the filter
24218 graph.
24219
24220 This sink is mainly intended for programmatic use, in particular
24221 through the interface defined in @file{libavfilter/buffersink.h}
24222 or the options system.
24223
24224 It accepts a pointer to an AVBufferSinkContext structure, which
24225 defines the incoming buffers' formats, to be passed as the opaque
24226 parameter to @code{avfilter_init_filter} for initialization.
24227
24228 @section nullsink
24229
24230 Null video sink: do absolutely nothing with the input video. It is
24231 mainly useful as a template and for use in analysis / debugging
24232 tools.
24233
24234 @c man end VIDEO SINKS
24235
24236 @chapter Multimedia Filters
24237 @c man begin MULTIMEDIA FILTERS
24238
24239 Below is a description of the currently available multimedia filters.
24240
24241 @section abitscope
24242
24243 Convert input audio to a video output, displaying the audio bit scope.
24244
24245 The filter accepts the following options:
24246
24247 @table @option
24248 @item rate, r
24249 Set frame rate, expressed as number of frames per second. Default
24250 value is "25".
24251
24252 @item size, s
24253 Specify the video size for the output. For the syntax of this option, check the
24254 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24255 Default value is @code{1024x256}.
24256
24257 @item colors
24258 Specify list of colors separated by space or by '|' which will be used to
24259 draw channels. Unrecognized or missing colors will be replaced
24260 by white color.
24261 @end table
24262
24263 @section adrawgraph
24264 Draw a graph using input audio metadata.
24265
24266 See @ref{drawgraph}
24267
24268 @section agraphmonitor
24269
24270 See @ref{graphmonitor}.
24271
24272 @section ahistogram
24273
24274 Convert input audio to a video output, displaying the volume histogram.
24275
24276 The filter accepts the following options:
24277
24278 @table @option
24279 @item dmode
24280 Specify how histogram is calculated.
24281
24282 It accepts the following values:
24283 @table @samp
24284 @item single
24285 Use single histogram for all channels.
24286 @item separate
24287 Use separate histogram for each channel.
24288 @end table
24289 Default is @code{single}.
24290
24291 @item rate, r
24292 Set frame rate, expressed as number of frames per second. Default
24293 value is "25".
24294
24295 @item size, s
24296 Specify the video size for the output. For the syntax of this option, check the
24297 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24298 Default value is @code{hd720}.
24299
24300 @item scale
24301 Set display scale.
24302
24303 It accepts the following values:
24304 @table @samp
24305 @item log
24306 logarithmic
24307 @item sqrt
24308 square root
24309 @item cbrt
24310 cubic root
24311 @item lin
24312 linear
24313 @item rlog
24314 reverse logarithmic
24315 @end table
24316 Default is @code{log}.
24317
24318 @item ascale
24319 Set amplitude scale.
24320
24321 It accepts the following values:
24322 @table @samp
24323 @item log
24324 logarithmic
24325 @item lin
24326 linear
24327 @end table
24328 Default is @code{log}.
24329
24330 @item acount
24331 Set how much frames to accumulate in histogram.
24332 Default is 1. Setting this to -1 accumulates all frames.
24333
24334 @item rheight
24335 Set histogram ratio of window height.
24336
24337 @item slide
24338 Set sonogram sliding.
24339
24340 It accepts the following values:
24341 @table @samp
24342 @item replace
24343 replace old rows with new ones.
24344 @item scroll
24345 scroll from top to bottom.
24346 @end table
24347 Default is @code{replace}.
24348 @end table
24349
24350 @section aphasemeter
24351
24352 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
24353 representing mean phase of current audio frame. A video output can also be produced and is
24354 enabled by default. The audio is passed through as first output.
24355
24356 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
24357 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
24358 and @code{1} means channels are in phase.
24359
24360 The filter accepts the following options, all related to its video output:
24361
24362 @table @option
24363 @item rate, r
24364 Set the output frame rate. Default value is @code{25}.
24365
24366 @item size, s
24367 Set the video size for the output. For the syntax of this option, check the
24368 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24369 Default value is @code{800x400}.
24370
24371 @item rc
24372 @item gc
24373 @item bc
24374 Specify the red, green, blue contrast. Default values are @code{2},
24375 @code{7} and @code{1}.
24376 Allowed range is @code{[0, 255]}.
24377
24378 @item mpc
24379 Set color which will be used for drawing median phase. If color is
24380 @code{none} which is default, no median phase value will be drawn.
24381
24382 @item video
24383 Enable video output. Default is enabled.
24384 @end table
24385
24386 @subsection phasing detection
24387
24388 The filter also detects out of phase and mono sequences in stereo streams.
24389 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
24390
24391 The filter accepts the following options for this detection:
24392
24393 @table @option
24394 @item phasing
24395 Enable mono and out of phase detection. Default is disabled.
24396
24397 @item tolerance, t
24398 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
24399 Allowed range is @code{[0, 1]}.
24400
24401 @item angle, a
24402 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
24403 Allowed range is @code{[90, 180]}.
24404
24405 @item duration, d
24406 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
24407 @end table
24408
24409 @subsection Examples
24410
24411 @itemize
24412 @item
24413 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
24414 @example
24415 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
24416 @end example
24417 @end itemize
24418
24419 @section avectorscope
24420
24421 Convert input audio to a video output, representing the audio vector
24422 scope.
24423
24424 The filter is used to measure the difference between channels of stereo
24425 audio stream. A monaural signal, consisting of identical left and right
24426 signal, results in straight vertical line. Any stereo separation is visible
24427 as a deviation from this line, creating a Lissajous figure.
24428 If the straight (or deviation from it) but horizontal line appears this
24429 indicates that the left and right channels are out of phase.
24430
24431 The filter accepts the following options:
24432
24433 @table @option
24434 @item mode, m
24435 Set the vectorscope mode.
24436
24437 Available values are:
24438 @table @samp
24439 @item lissajous
24440 Lissajous rotated by 45 degrees.
24441
24442 @item lissajous_xy
24443 Same as above but not rotated.
24444
24445 @item polar
24446 Shape resembling half of circle.
24447 @end table
24448
24449 Default value is @samp{lissajous}.
24450
24451 @item size, s
24452 Set the video size for the output. For the syntax of this option, check the
24453 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24454 Default value is @code{400x400}.
24455
24456 @item rate, r
24457 Set the output frame rate. Default value is @code{25}.
24458
24459 @item rc
24460 @item gc
24461 @item bc
24462 @item ac
24463 Specify the red, green, blue and alpha contrast. Default values are @code{40},
24464 @code{160}, @code{80} and @code{255}.
24465 Allowed range is @code{[0, 255]}.
24466
24467 @item rf
24468 @item gf
24469 @item bf
24470 @item af
24471 Specify the red, green, blue and alpha fade. Default values are @code{15},
24472 @code{10}, @code{5} and @code{5}.
24473 Allowed range is @code{[0, 255]}.
24474
24475 @item zoom
24476 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
24477 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
24478
24479 @item draw
24480 Set the vectorscope drawing mode.
24481
24482 Available values are:
24483 @table @samp
24484 @item dot
24485 Draw dot for each sample.
24486
24487 @item line
24488 Draw line between previous and current sample.
24489 @end table
24490
24491 Default value is @samp{dot}.
24492
24493 @item scale
24494 Specify amplitude scale of audio samples.
24495
24496 Available values are:
24497 @table @samp
24498 @item lin
24499 Linear.
24500
24501 @item sqrt
24502 Square root.
24503
24504 @item cbrt
24505 Cubic root.
24506
24507 @item log
24508 Logarithmic.
24509 @end table
24510
24511 @item swap
24512 Swap left channel axis with right channel axis.
24513
24514 @item mirror
24515 Mirror axis.
24516
24517 @table @samp
24518 @item none
24519 No mirror.
24520
24521 @item x
24522 Mirror only x axis.
24523
24524 @item y
24525 Mirror only y axis.
24526
24527 @item xy
24528 Mirror both axis.
24529 @end table
24530
24531 @end table
24532
24533 @subsection Examples
24534
24535 @itemize
24536 @item
24537 Complete example using @command{ffplay}:
24538 @example
24539 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24540              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
24541 @end example
24542 @end itemize
24543
24544 @section bench, abench
24545
24546 Benchmark part of a filtergraph.
24547
24548 The filter accepts the following options:
24549
24550 @table @option
24551 @item action
24552 Start or stop a timer.
24553
24554 Available values are:
24555 @table @samp
24556 @item start
24557 Get the current time, set it as frame metadata (using the key
24558 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
24559
24560 @item stop
24561 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
24562 the input frame metadata to get the time difference. Time difference, average,
24563 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
24564 @code{min}) are then printed. The timestamps are expressed in seconds.
24565 @end table
24566 @end table
24567
24568 @subsection Examples
24569
24570 @itemize
24571 @item
24572 Benchmark @ref{selectivecolor} filter:
24573 @example
24574 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
24575 @end example
24576 @end itemize
24577
24578 @section concat
24579
24580 Concatenate audio and video streams, joining them together one after the
24581 other.
24582
24583 The filter works on segments of synchronized video and audio streams. All
24584 segments must have the same number of streams of each type, and that will
24585 also be the number of streams at output.
24586
24587 The filter accepts the following options:
24588
24589 @table @option
24590
24591 @item n
24592 Set the number of segments. Default is 2.
24593
24594 @item v
24595 Set the number of output video streams, that is also the number of video
24596 streams in each segment. Default is 1.
24597
24598 @item a
24599 Set the number of output audio streams, that is also the number of audio
24600 streams in each segment. Default is 0.
24601
24602 @item unsafe
24603 Activate unsafe mode: do not fail if segments have a different format.
24604
24605 @end table
24606
24607 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
24608 @var{a} audio outputs.
24609
24610 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
24611 segment, in the same order as the outputs, then the inputs for the second
24612 segment, etc.
24613
24614 Related streams do not always have exactly the same duration, for various
24615 reasons including codec frame size or sloppy authoring. For that reason,
24616 related synchronized streams (e.g. a video and its audio track) should be
24617 concatenated at once. The concat filter will use the duration of the longest
24618 stream in each segment (except the last one), and if necessary pad shorter
24619 audio streams with silence.
24620
24621 For this filter to work correctly, all segments must start at timestamp 0.
24622
24623 All corresponding streams must have the same parameters in all segments; the
24624 filtering system will automatically select a common pixel format for video
24625 streams, and a common sample format, sample rate and channel layout for
24626 audio streams, but other settings, such as resolution, must be converted
24627 explicitly by the user.
24628
24629 Different frame rates are acceptable but will result in variable frame rate
24630 at output; be sure to configure the output file to handle it.
24631
24632 @subsection Examples
24633
24634 @itemize
24635 @item
24636 Concatenate an opening, an episode and an ending, all in bilingual version
24637 (video in stream 0, audio in streams 1 and 2):
24638 @example
24639 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
24640   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
24641    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
24642   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
24643 @end example
24644
24645 @item
24646 Concatenate two parts, handling audio and video separately, using the
24647 (a)movie sources, and adjusting the resolution:
24648 @example
24649 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
24650 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
24651 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
24652 @end example
24653 Note that a desync will happen at the stitch if the audio and video streams
24654 do not have exactly the same duration in the first file.
24655
24656 @end itemize
24657
24658 @subsection Commands
24659
24660 This filter supports the following commands:
24661 @table @option
24662 @item next
24663 Close the current segment and step to the next one
24664 @end table
24665
24666 @anchor{ebur128}
24667 @section ebur128
24668
24669 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
24670 level. By default, it logs a message at a frequency of 10Hz with the
24671 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
24672 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
24673
24674 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
24675 sample format is double-precision floating point. The input stream will be converted to
24676 this specification, if needed. Users may need to insert aformat and/or aresample filters
24677 after this filter to obtain the original parameters.
24678
24679 The filter also has a video output (see the @var{video} option) with a real
24680 time graph to observe the loudness evolution. The graphic contains the logged
24681 message mentioned above, so it is not printed anymore when this option is set,
24682 unless the verbose logging is set. The main graphing area contains the
24683 short-term loudness (3 seconds of analysis), and the gauge on the right is for
24684 the momentary loudness (400 milliseconds), but can optionally be configured
24685 to instead display short-term loudness (see @var{gauge}).
24686
24687 The green area marks a  +/- 1LU target range around the target loudness
24688 (-23LUFS by default, unless modified through @var{target}).
24689
24690 More information about the Loudness Recommendation EBU R128 on
24691 @url{http://tech.ebu.ch/loudness}.
24692
24693 The filter accepts the following options:
24694
24695 @table @option
24696
24697 @item video
24698 Activate the video output. The audio stream is passed unchanged whether this
24699 option is set or no. The video stream will be the first output stream if
24700 activated. Default is @code{0}.
24701
24702 @item size
24703 Set the video size. This option is for video only. For the syntax of this
24704 option, check the
24705 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24706 Default and minimum resolution is @code{640x480}.
24707
24708 @item meter
24709 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
24710 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
24711 other integer value between this range is allowed.
24712
24713 @item metadata
24714 Set metadata injection. If set to @code{1}, the audio input will be segmented
24715 into 100ms output frames, each of them containing various loudness information
24716 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
24717
24718 Default is @code{0}.
24719
24720 @item framelog
24721 Force the frame logging level.
24722
24723 Available values are:
24724 @table @samp
24725 @item info
24726 information logging level
24727 @item verbose
24728 verbose logging level
24729 @end table
24730
24731 By default, the logging level is set to @var{info}. If the @option{video} or
24732 the @option{metadata} options are set, it switches to @var{verbose}.
24733
24734 @item peak
24735 Set peak mode(s).
24736
24737 Available modes can be cumulated (the option is a @code{flag} type). Possible
24738 values are:
24739 @table @samp
24740 @item none
24741 Disable any peak mode (default).
24742 @item sample
24743 Enable sample-peak mode.
24744
24745 Simple peak mode looking for the higher sample value. It logs a message
24746 for sample-peak (identified by @code{SPK}).
24747 @item true
24748 Enable true-peak mode.
24749
24750 If enabled, the peak lookup is done on an over-sampled version of the input
24751 stream for better peak accuracy. It logs a message for true-peak.
24752 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
24753 This mode requires a build with @code{libswresample}.
24754 @end table
24755
24756 @item dualmono
24757 Treat mono input files as "dual mono". If a mono file is intended for playback
24758 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
24759 If set to @code{true}, this option will compensate for this effect.
24760 Multi-channel input files are not affected by this option.
24761
24762 @item panlaw
24763 Set a specific pan law to be used for the measurement of dual mono files.
24764 This parameter is optional, and has a default value of -3.01dB.
24765
24766 @item target
24767 Set a specific target level (in LUFS) used as relative zero in the visualization.
24768 This parameter is optional and has a default value of -23LUFS as specified
24769 by EBU R128. However, material published online may prefer a level of -16LUFS
24770 (e.g. for use with podcasts or video platforms).
24771
24772 @item gauge
24773 Set the value displayed by the gauge. Valid values are @code{momentary} and s
24774 @code{shortterm}. By default the momentary value will be used, but in certain
24775 scenarios it may be more useful to observe the short term value instead (e.g.
24776 live mixing).
24777
24778 @item scale
24779 Sets the display scale for the loudness. Valid parameters are @code{absolute}
24780 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
24781 video output, not the summary or continuous log output.
24782 @end table
24783
24784 @subsection Examples
24785
24786 @itemize
24787 @item
24788 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
24789 @example
24790 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
24791 @end example
24792
24793 @item
24794 Run an analysis with @command{ffmpeg}:
24795 @example
24796 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
24797 @end example
24798 @end itemize
24799
24800 @section interleave, ainterleave
24801
24802 Temporally interleave frames from several inputs.
24803
24804 @code{interleave} works with video inputs, @code{ainterleave} with audio.
24805
24806 These filters read frames from several inputs and send the oldest
24807 queued frame to the output.
24808
24809 Input streams must have well defined, monotonically increasing frame
24810 timestamp values.
24811
24812 In order to submit one frame to output, these filters need to enqueue
24813 at least one frame for each input, so they cannot work in case one
24814 input is not yet terminated and will not receive incoming frames.
24815
24816 For example consider the case when one input is a @code{select} filter
24817 which always drops input frames. The @code{interleave} filter will keep
24818 reading from that input, but it will never be able to send new frames
24819 to output until the input sends an end-of-stream signal.
24820
24821 Also, depending on inputs synchronization, the filters will drop
24822 frames in case one input receives more frames than the other ones, and
24823 the queue is already filled.
24824
24825 These filters accept the following options:
24826
24827 @table @option
24828 @item nb_inputs, n
24829 Set the number of different inputs, it is 2 by default.
24830
24831 @item duration
24832 How to determine the end-of-stream.
24833
24834 @table @option
24835 @item longest
24836 The duration of the longest input. (default)
24837
24838 @item shortest
24839 The duration of the shortest input.
24840
24841 @item first
24842 The duration of the first input.
24843 @end table
24844
24845 @end table
24846
24847 @subsection Examples
24848
24849 @itemize
24850 @item
24851 Interleave frames belonging to different streams using @command{ffmpeg}:
24852 @example
24853 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
24854 @end example
24855
24856 @item
24857 Add flickering blur effect:
24858 @example
24859 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
24860 @end example
24861 @end itemize
24862
24863 @section metadata, ametadata
24864
24865 Manipulate frame metadata.
24866
24867 This filter accepts the following options:
24868
24869 @table @option
24870 @item mode
24871 Set mode of operation of the filter.
24872
24873 Can be one of the following:
24874
24875 @table @samp
24876 @item select
24877 If both @code{value} and @code{key} is set, select frames
24878 which have such metadata. If only @code{key} is set, select
24879 every frame that has such key in metadata.
24880
24881 @item add
24882 Add new metadata @code{key} and @code{value}. If key is already available
24883 do nothing.
24884
24885 @item modify
24886 Modify value of already present key.
24887
24888 @item delete
24889 If @code{value} is set, delete only keys that have such value.
24890 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
24891 the frame.
24892
24893 @item print
24894 Print key and its value if metadata was found. If @code{key} is not set print all
24895 metadata values available in frame.
24896 @end table
24897
24898 @item key
24899 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
24900
24901 @item value
24902 Set metadata value which will be used. This option is mandatory for
24903 @code{modify} and @code{add} mode.
24904
24905 @item function
24906 Which function to use when comparing metadata value and @code{value}.
24907
24908 Can be one of following:
24909
24910 @table @samp
24911 @item same_str
24912 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
24913
24914 @item starts_with
24915 Values are interpreted as strings, returns true if metadata value starts with
24916 the @code{value} option string.
24917
24918 @item less
24919 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
24920
24921 @item equal
24922 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
24923
24924 @item greater
24925 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
24926
24927 @item expr
24928 Values are interpreted as floats, returns true if expression from option @code{expr}
24929 evaluates to true.
24930
24931 @item ends_with
24932 Values are interpreted as strings, returns true if metadata value ends with
24933 the @code{value} option string.
24934 @end table
24935
24936 @item expr
24937 Set expression which is used when @code{function} is set to @code{expr}.
24938 The expression is evaluated through the eval API and can contain the following
24939 constants:
24940
24941 @table @option
24942 @item VALUE1
24943 Float representation of @code{value} from metadata key.
24944
24945 @item VALUE2
24946 Float representation of @code{value} as supplied by user in @code{value} option.
24947 @end table
24948
24949 @item file
24950 If specified in @code{print} mode, output is written to the named file. Instead of
24951 plain filename any writable url can be specified. Filename ``-'' is a shorthand
24952 for standard output. If @code{file} option is not set, output is written to the log
24953 with AV_LOG_INFO loglevel.
24954
24955 @item direct
24956 Reduces buffering in print mode when output is written to a URL set using @var{file}.
24957
24958 @end table
24959
24960 @subsection Examples
24961
24962 @itemize
24963 @item
24964 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
24965 between 0 and 1.
24966 @example
24967 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
24968 @end example
24969 @item
24970 Print silencedetect output to file @file{metadata.txt}.
24971 @example
24972 silencedetect,ametadata=mode=print:file=metadata.txt
24973 @end example
24974 @item
24975 Direct all metadata to a pipe with file descriptor 4.
24976 @example
24977 metadata=mode=print:file='pipe\:4'
24978 @end example
24979 @end itemize
24980
24981 @section perms, aperms
24982
24983 Set read/write permissions for the output frames.
24984
24985 These filters are mainly aimed at developers to test direct path in the
24986 following filter in the filtergraph.
24987
24988 The filters accept the following options:
24989
24990 @table @option
24991 @item mode
24992 Select the permissions mode.
24993
24994 It accepts the following values:
24995 @table @samp
24996 @item none
24997 Do nothing. This is the default.
24998 @item ro
24999 Set all the output frames read-only.
25000 @item rw
25001 Set all the output frames directly writable.
25002 @item toggle
25003 Make the frame read-only if writable, and writable if read-only.
25004 @item random
25005 Set each output frame read-only or writable randomly.
25006 @end table
25007
25008 @item seed
25009 Set the seed for the @var{random} mode, must be an integer included between
25010 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
25011 @code{-1}, the filter will try to use a good random seed on a best effort
25012 basis.
25013 @end table
25014
25015 Note: in case of auto-inserted filter between the permission filter and the
25016 following one, the permission might not be received as expected in that
25017 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
25018 perms/aperms filter can avoid this problem.
25019
25020 @section realtime, arealtime
25021
25022 Slow down filtering to match real time approximately.
25023
25024 These filters will pause the filtering for a variable amount of time to
25025 match the output rate with the input timestamps.
25026 They are similar to the @option{re} option to @code{ffmpeg}.
25027
25028 They accept the following options:
25029
25030 @table @option
25031 @item limit
25032 Time limit for the pauses. Any pause longer than that will be considered
25033 a timestamp discontinuity and reset the timer. Default is 2 seconds.
25034 @item speed
25035 Speed factor for processing. The value must be a float larger than zero.
25036 Values larger than 1.0 will result in faster than realtime processing,
25037 smaller will slow processing down. The @var{limit} is automatically adapted
25038 accordingly. Default is 1.0.
25039
25040 A processing speed faster than what is possible without these filters cannot
25041 be achieved.
25042 @end table
25043
25044 @anchor{select}
25045 @section select, aselect
25046
25047 Select frames to pass in output.
25048
25049 This filter accepts the following options:
25050
25051 @table @option
25052
25053 @item expr, e
25054 Set expression, which is evaluated for each input frame.
25055
25056 If the expression is evaluated to zero, the frame is discarded.
25057
25058 If the evaluation result is negative or NaN, the frame is sent to the
25059 first output; otherwise it is sent to the output with index
25060 @code{ceil(val)-1}, assuming that the input index starts from 0.
25061
25062 For example a value of @code{1.2} corresponds to the output with index
25063 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
25064
25065 @item outputs, n
25066 Set the number of outputs. The output to which to send the selected
25067 frame is based on the result of the evaluation. Default value is 1.
25068 @end table
25069
25070 The expression can contain the following constants:
25071
25072 @table @option
25073 @item n
25074 The (sequential) number of the filtered frame, starting from 0.
25075
25076 @item selected_n
25077 The (sequential) number of the selected frame, starting from 0.
25078
25079 @item prev_selected_n
25080 The sequential number of the last selected frame. It's NAN if undefined.
25081
25082 @item TB
25083 The timebase of the input timestamps.
25084
25085 @item pts
25086 The PTS (Presentation TimeStamp) of the filtered video frame,
25087 expressed in @var{TB} units. It's NAN if undefined.
25088
25089 @item t
25090 The PTS of the filtered video frame,
25091 expressed in seconds. It's NAN if undefined.
25092
25093 @item prev_pts
25094 The PTS of the previously filtered video frame. It's NAN if undefined.
25095
25096 @item prev_selected_pts
25097 The PTS of the last previously filtered video frame. It's NAN if undefined.
25098
25099 @item prev_selected_t
25100 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
25101
25102 @item start_pts
25103 The PTS of the first video frame in the video. It's NAN if undefined.
25104
25105 @item start_t
25106 The time of the first video frame in the video. It's NAN if undefined.
25107
25108 @item pict_type @emph{(video only)}
25109 The type of the filtered frame. It can assume one of the following
25110 values:
25111 @table @option
25112 @item I
25113 @item P
25114 @item B
25115 @item S
25116 @item SI
25117 @item SP
25118 @item BI
25119 @end table
25120
25121 @item interlace_type @emph{(video only)}
25122 The frame interlace type. It can assume one of the following values:
25123 @table @option
25124 @item PROGRESSIVE
25125 The frame is progressive (not interlaced).
25126 @item TOPFIRST
25127 The frame is top-field-first.
25128 @item BOTTOMFIRST
25129 The frame is bottom-field-first.
25130 @end table
25131
25132 @item consumed_sample_n @emph{(audio only)}
25133 the number of selected samples before the current frame
25134
25135 @item samples_n @emph{(audio only)}
25136 the number of samples in the current frame
25137
25138 @item sample_rate @emph{(audio only)}
25139 the input sample rate
25140
25141 @item key
25142 This is 1 if the filtered frame is a key-frame, 0 otherwise.
25143
25144 @item pos
25145 the position in the file of the filtered frame, -1 if the information
25146 is not available (e.g. for synthetic video)
25147
25148 @item scene @emph{(video only)}
25149 value between 0 and 1 to indicate a new scene; a low value reflects a low
25150 probability for the current frame to introduce a new scene, while a higher
25151 value means the current frame is more likely to be one (see the example below)
25152
25153 @item concatdec_select
25154 The concat demuxer can select only part of a concat input file by setting an
25155 inpoint and an outpoint, but the output packets may not be entirely contained
25156 in the selected interval. By using this variable, it is possible to skip frames
25157 generated by the concat demuxer which are not exactly contained in the selected
25158 interval.
25159
25160 This works by comparing the frame pts against the @var{lavf.concat.start_time}
25161 and the @var{lavf.concat.duration} packet metadata values which are also
25162 present in the decoded frames.
25163
25164 The @var{concatdec_select} variable is -1 if the frame pts is at least
25165 start_time and either the duration metadata is missing or the frame pts is less
25166 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
25167 missing.
25168
25169 That basically means that an input frame is selected if its pts is within the
25170 interval set by the concat demuxer.
25171
25172 @end table
25173
25174 The default value of the select expression is "1".
25175
25176 @subsection Examples
25177
25178 @itemize
25179 @item
25180 Select all frames in input:
25181 @example
25182 select
25183 @end example
25184
25185 The example above is the same as:
25186 @example
25187 select=1
25188 @end example
25189
25190 @item
25191 Skip all frames:
25192 @example
25193 select=0
25194 @end example
25195
25196 @item
25197 Select only I-frames:
25198 @example
25199 select='eq(pict_type\,I)'
25200 @end example
25201
25202 @item
25203 Select one frame every 100:
25204 @example
25205 select='not(mod(n\,100))'
25206 @end example
25207
25208 @item
25209 Select only frames contained in the 10-20 time interval:
25210 @example
25211 select=between(t\,10\,20)
25212 @end example
25213
25214 @item
25215 Select only I-frames contained in the 10-20 time interval:
25216 @example
25217 select=between(t\,10\,20)*eq(pict_type\,I)
25218 @end example
25219
25220 @item
25221 Select frames with a minimum distance of 10 seconds:
25222 @example
25223 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
25224 @end example
25225
25226 @item
25227 Use aselect to select only audio frames with samples number > 100:
25228 @example
25229 aselect='gt(samples_n\,100)'
25230 @end example
25231
25232 @item
25233 Create a mosaic of the first scenes:
25234 @example
25235 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
25236 @end example
25237
25238 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
25239 choice.
25240
25241 @item
25242 Send even and odd frames to separate outputs, and compose them:
25243 @example
25244 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
25245 @end example
25246
25247 @item
25248 Select useful frames from an ffconcat file which is using inpoints and
25249 outpoints but where the source files are not intra frame only.
25250 @example
25251 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
25252 @end example
25253 @end itemize
25254
25255 @section sendcmd, asendcmd
25256
25257 Send commands to filters in the filtergraph.
25258
25259 These filters read commands to be sent to other filters in the
25260 filtergraph.
25261
25262 @code{sendcmd} must be inserted between two video filters,
25263 @code{asendcmd} must be inserted between two audio filters, but apart
25264 from that they act the same way.
25265
25266 The specification of commands can be provided in the filter arguments
25267 with the @var{commands} option, or in a file specified by the
25268 @var{filename} option.
25269
25270 These filters accept the following options:
25271 @table @option
25272 @item commands, c
25273 Set the commands to be read and sent to the other filters.
25274 @item filename, f
25275 Set the filename of the commands to be read and sent to the other
25276 filters.
25277 @end table
25278
25279 @subsection Commands syntax
25280
25281 A commands description consists of a sequence of interval
25282 specifications, comprising a list of commands to be executed when a
25283 particular event related to that interval occurs. The occurring event
25284 is typically the current frame time entering or leaving a given time
25285 interval.
25286
25287 An interval is specified by the following syntax:
25288 @example
25289 @var{START}[-@var{END}] @var{COMMANDS};
25290 @end example
25291
25292 The time interval is specified by the @var{START} and @var{END} times.
25293 @var{END} is optional and defaults to the maximum time.
25294
25295 The current frame time is considered within the specified interval if
25296 it is included in the interval [@var{START}, @var{END}), that is when
25297 the time is greater or equal to @var{START} and is lesser than
25298 @var{END}.
25299
25300 @var{COMMANDS} consists of a sequence of one or more command
25301 specifications, separated by ",", relating to that interval.  The
25302 syntax of a command specification is given by:
25303 @example
25304 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
25305 @end example
25306
25307 @var{FLAGS} is optional and specifies the type of events relating to
25308 the time interval which enable sending the specified command, and must
25309 be a non-null sequence of identifier flags separated by "+" or "|" and
25310 enclosed between "[" and "]".
25311
25312 The following flags are recognized:
25313 @table @option
25314 @item enter
25315 The command is sent when the current frame timestamp enters the
25316 specified interval. In other words, the command is sent when the
25317 previous frame timestamp was not in the given interval, and the
25318 current is.
25319
25320 @item leave
25321 The command is sent when the current frame timestamp leaves the
25322 specified interval. In other words, the command is sent when the
25323 previous frame timestamp was in the given interval, and the
25324 current is not.
25325
25326 @item expr
25327 The command @var{ARG} is interpreted as expression and result of
25328 expression is passed as @var{ARG}.
25329
25330 The expression is evaluated through the eval API and can contain the following
25331 constants:
25332
25333 @table @option
25334 @item POS
25335 Original position in the file of the frame, or undefined if undefined
25336 for the current frame.
25337
25338 @item PTS
25339 The presentation timestamp in input.
25340
25341 @item N
25342 The count of the input frame for video or audio, starting from 0.
25343
25344 @item T
25345 The time in seconds of the current frame.
25346
25347 @item TS
25348 The start time in seconds of the current command interval.
25349
25350 @item TE
25351 The end time in seconds of the current command interval.
25352
25353 @item TI
25354 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
25355 @end table
25356
25357 @end table
25358
25359 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
25360 assumed.
25361
25362 @var{TARGET} specifies the target of the command, usually the name of
25363 the filter class or a specific filter instance name.
25364
25365 @var{COMMAND} specifies the name of the command for the target filter.
25366
25367 @var{ARG} is optional and specifies the optional list of argument for
25368 the given @var{COMMAND}.
25369
25370 Between one interval specification and another, whitespaces, or
25371 sequences of characters starting with @code{#} until the end of line,
25372 are ignored and can be used to annotate comments.
25373
25374 A simplified BNF description of the commands specification syntax
25375 follows:
25376 @example
25377 @var{COMMAND_FLAG}  ::= "enter" | "leave"
25378 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
25379 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
25380 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
25381 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
25382 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
25383 @end example
25384
25385 @subsection Examples
25386
25387 @itemize
25388 @item
25389 Specify audio tempo change at second 4:
25390 @example
25391 asendcmd=c='4.0 atempo tempo 1.5',atempo
25392 @end example
25393
25394 @item
25395 Target a specific filter instance:
25396 @example
25397 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
25398 @end example
25399
25400 @item
25401 Specify a list of drawtext and hue commands in a file.
25402 @example
25403 # show text in the interval 5-10
25404 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
25405          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
25406
25407 # desaturate the image in the interval 15-20
25408 15.0-20.0 [enter] hue s 0,
25409           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
25410           [leave] hue s 1,
25411           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
25412
25413 # apply an exponential saturation fade-out effect, starting from time 25
25414 25 [enter] hue s exp(25-t)
25415 @end example
25416
25417 A filtergraph allowing to read and process the above command list
25418 stored in a file @file{test.cmd}, can be specified with:
25419 @example
25420 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
25421 @end example
25422 @end itemize
25423
25424 @anchor{setpts}
25425 @section setpts, asetpts
25426
25427 Change the PTS (presentation timestamp) of the input frames.
25428
25429 @code{setpts} works on video frames, @code{asetpts} on audio frames.
25430
25431 This filter accepts the following options:
25432
25433 @table @option
25434
25435 @item expr
25436 The expression which is evaluated for each frame to construct its timestamp.
25437
25438 @end table
25439
25440 The expression is evaluated through the eval API and can contain the following
25441 constants:
25442
25443 @table @option
25444 @item FRAME_RATE, FR
25445 frame rate, only defined for constant frame-rate video
25446
25447 @item PTS
25448 The presentation timestamp in input
25449
25450 @item N
25451 The count of the input frame for video or the number of consumed samples,
25452 not including the current frame for audio, starting from 0.
25453
25454 @item NB_CONSUMED_SAMPLES
25455 The number of consumed samples, not including the current frame (only
25456 audio)
25457
25458 @item NB_SAMPLES, S
25459 The number of samples in the current frame (only audio)
25460
25461 @item SAMPLE_RATE, SR
25462 The audio sample rate.
25463
25464 @item STARTPTS
25465 The PTS of the first frame.
25466
25467 @item STARTT
25468 the time in seconds of the first frame
25469
25470 @item INTERLACED
25471 State whether the current frame is interlaced.
25472
25473 @item T
25474 the time in seconds of the current frame
25475
25476 @item POS
25477 original position in the file of the frame, or undefined if undefined
25478 for the current frame
25479
25480 @item PREV_INPTS
25481 The previous input PTS.
25482
25483 @item PREV_INT
25484 previous input time in seconds
25485
25486 @item PREV_OUTPTS
25487 The previous output PTS.
25488
25489 @item PREV_OUTT
25490 previous output time in seconds
25491
25492 @item RTCTIME
25493 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
25494 instead.
25495
25496 @item RTCSTART
25497 The wallclock (RTC) time at the start of the movie in microseconds.
25498
25499 @item TB
25500 The timebase of the input timestamps.
25501
25502 @end table
25503
25504 @subsection Examples
25505
25506 @itemize
25507 @item
25508 Start counting PTS from zero
25509 @example
25510 setpts=PTS-STARTPTS
25511 @end example
25512
25513 @item
25514 Apply fast motion effect:
25515 @example
25516 setpts=0.5*PTS
25517 @end example
25518
25519 @item
25520 Apply slow motion effect:
25521 @example
25522 setpts=2.0*PTS
25523 @end example
25524
25525 @item
25526 Set fixed rate of 25 frames per second:
25527 @example
25528 setpts=N/(25*TB)
25529 @end example
25530
25531 @item
25532 Set fixed rate 25 fps with some jitter:
25533 @example
25534 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
25535 @end example
25536
25537 @item
25538 Apply an offset of 10 seconds to the input PTS:
25539 @example
25540 setpts=PTS+10/TB
25541 @end example
25542
25543 @item
25544 Generate timestamps from a "live source" and rebase onto the current timebase:
25545 @example
25546 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
25547 @end example
25548
25549 @item
25550 Generate timestamps by counting samples:
25551 @example
25552 asetpts=N/SR/TB
25553 @end example
25554
25555 @end itemize
25556
25557 @section setrange
25558
25559 Force color range for the output video frame.
25560
25561 The @code{setrange} filter marks the color range property for the
25562 output frames. It does not change the input frame, but only sets the
25563 corresponding property, which affects how the frame is treated by
25564 following filters.
25565
25566 The filter accepts the following options:
25567
25568 @table @option
25569
25570 @item range
25571 Available values are:
25572
25573 @table @samp
25574 @item auto
25575 Keep the same color range property.
25576
25577 @item unspecified, unknown
25578 Set the color range as unspecified.
25579
25580 @item limited, tv, mpeg
25581 Set the color range as limited.
25582
25583 @item full, pc, jpeg
25584 Set the color range as full.
25585 @end table
25586 @end table
25587
25588 @section settb, asettb
25589
25590 Set the timebase to use for the output frames timestamps.
25591 It is mainly useful for testing timebase configuration.
25592
25593 It accepts the following parameters:
25594
25595 @table @option
25596
25597 @item expr, tb
25598 The expression which is evaluated into the output timebase.
25599
25600 @end table
25601
25602 The value for @option{tb} is an arithmetic expression representing a
25603 rational. The expression can contain the constants "AVTB" (the default
25604 timebase), "intb" (the input timebase) and "sr" (the sample rate,
25605 audio only). Default value is "intb".
25606
25607 @subsection Examples
25608
25609 @itemize
25610 @item
25611 Set the timebase to 1/25:
25612 @example
25613 settb=expr=1/25
25614 @end example
25615
25616 @item
25617 Set the timebase to 1/10:
25618 @example
25619 settb=expr=0.1
25620 @end example
25621
25622 @item
25623 Set the timebase to 1001/1000:
25624 @example
25625 settb=1+0.001
25626 @end example
25627
25628 @item
25629 Set the timebase to 2*intb:
25630 @example
25631 settb=2*intb
25632 @end example
25633
25634 @item
25635 Set the default timebase value:
25636 @example
25637 settb=AVTB
25638 @end example
25639 @end itemize
25640
25641 @section showcqt
25642 Convert input audio to a video output representing frequency spectrum
25643 logarithmically using Brown-Puckette constant Q transform algorithm with
25644 direct frequency domain coefficient calculation (but the transform itself
25645 is not really constant Q, instead the Q factor is actually variable/clamped),
25646 with musical tone scale, from E0 to D#10.
25647
25648 The filter accepts the following options:
25649
25650 @table @option
25651 @item size, s
25652 Specify the video size for the output. It must be even. For the syntax of this option,
25653 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25654 Default value is @code{1920x1080}.
25655
25656 @item fps, rate, r
25657 Set the output frame rate. Default value is @code{25}.
25658
25659 @item bar_h
25660 Set the bargraph height. It must be even. Default value is @code{-1} which
25661 computes the bargraph height automatically.
25662
25663 @item axis_h
25664 Set the axis height. It must be even. Default value is @code{-1} which computes
25665 the axis height automatically.
25666
25667 @item sono_h
25668 Set the sonogram height. It must be even. Default value is @code{-1} which
25669 computes the sonogram height automatically.
25670
25671 @item fullhd
25672 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
25673 instead. Default value is @code{1}.
25674
25675 @item sono_v, volume
25676 Specify the sonogram volume expression. It can contain variables:
25677 @table @option
25678 @item bar_v
25679 the @var{bar_v} evaluated expression
25680 @item frequency, freq, f
25681 the frequency where it is evaluated
25682 @item timeclamp, tc
25683 the value of @var{timeclamp} option
25684 @end table
25685 and functions:
25686 @table @option
25687 @item a_weighting(f)
25688 A-weighting of equal loudness
25689 @item b_weighting(f)
25690 B-weighting of equal loudness
25691 @item c_weighting(f)
25692 C-weighting of equal loudness.
25693 @end table
25694 Default value is @code{16}.
25695
25696 @item bar_v, volume2
25697 Specify the bargraph volume expression. It can contain variables:
25698 @table @option
25699 @item sono_v
25700 the @var{sono_v} evaluated expression
25701 @item frequency, freq, f
25702 the frequency where it is evaluated
25703 @item timeclamp, tc
25704 the value of @var{timeclamp} option
25705 @end table
25706 and functions:
25707 @table @option
25708 @item a_weighting(f)
25709 A-weighting of equal loudness
25710 @item b_weighting(f)
25711 B-weighting of equal loudness
25712 @item c_weighting(f)
25713 C-weighting of equal loudness.
25714 @end table
25715 Default value is @code{sono_v}.
25716
25717 @item sono_g, gamma
25718 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
25719 higher gamma makes the spectrum having more range. Default value is @code{3}.
25720 Acceptable range is @code{[1, 7]}.
25721
25722 @item bar_g, gamma2
25723 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
25724 @code{[1, 7]}.
25725
25726 @item bar_t
25727 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
25728 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
25729
25730 @item timeclamp, tc
25731 Specify the transform timeclamp. At low frequency, there is trade-off between
25732 accuracy in time domain and frequency domain. If timeclamp is lower,
25733 event in time domain is represented more accurately (such as fast bass drum),
25734 otherwise event in frequency domain is represented more accurately
25735 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
25736
25737 @item attack
25738 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
25739 limits future samples by applying asymmetric windowing in time domain, useful
25740 when low latency is required. Accepted range is @code{[0, 1]}.
25741
25742 @item basefreq
25743 Specify the transform base frequency. Default value is @code{20.01523126408007475},
25744 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
25745
25746 @item endfreq
25747 Specify the transform end frequency. Default value is @code{20495.59681441799654},
25748 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
25749
25750 @item coeffclamp
25751 This option is deprecated and ignored.
25752
25753 @item tlength
25754 Specify the transform length in time domain. Use this option to control accuracy
25755 trade-off between time domain and frequency domain at every frequency sample.
25756 It can contain variables:
25757 @table @option
25758 @item frequency, freq, f
25759 the frequency where it is evaluated
25760 @item timeclamp, tc
25761 the value of @var{timeclamp} option.
25762 @end table
25763 Default value is @code{384*tc/(384+tc*f)}.
25764
25765 @item count
25766 Specify the transform count for every video frame. Default value is @code{6}.
25767 Acceptable range is @code{[1, 30]}.
25768
25769 @item fcount
25770 Specify the transform count for every single pixel. Default value is @code{0},
25771 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
25772
25773 @item fontfile
25774 Specify font file for use with freetype to draw the axis. If not specified,
25775 use embedded font. Note that drawing with font file or embedded font is not
25776 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
25777 option instead.
25778
25779 @item font
25780 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
25781 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
25782 escaping.
25783
25784 @item fontcolor
25785 Specify font color expression. This is arithmetic expression that should return
25786 integer value 0xRRGGBB. It can contain variables:
25787 @table @option
25788 @item frequency, freq, f
25789 the frequency where it is evaluated
25790 @item timeclamp, tc
25791 the value of @var{timeclamp} option
25792 @end table
25793 and functions:
25794 @table @option
25795 @item midi(f)
25796 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
25797 @item r(x), g(x), b(x)
25798 red, green, and blue value of intensity x.
25799 @end table
25800 Default value is @code{st(0, (midi(f)-59.5)/12);
25801 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
25802 r(1-ld(1)) + b(ld(1))}.
25803
25804 @item axisfile
25805 Specify image file to draw the axis. This option override @var{fontfile} and
25806 @var{fontcolor} option.
25807
25808 @item axis, text
25809 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
25810 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
25811 Default value is @code{1}.
25812
25813 @item csp
25814 Set colorspace. The accepted values are:
25815 @table @samp
25816 @item unspecified
25817 Unspecified (default)
25818
25819 @item bt709
25820 BT.709
25821
25822 @item fcc
25823 FCC
25824
25825 @item bt470bg
25826 BT.470BG or BT.601-6 625
25827
25828 @item smpte170m
25829 SMPTE-170M or BT.601-6 525
25830
25831 @item smpte240m
25832 SMPTE-240M
25833
25834 @item bt2020ncl
25835 BT.2020 with non-constant luminance
25836
25837 @end table
25838
25839 @item cscheme
25840 Set spectrogram color scheme. This is list of floating point values with format
25841 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
25842 The default is @code{1|0.5|0|0|0.5|1}.
25843
25844 @end table
25845
25846 @subsection Examples
25847
25848 @itemize
25849 @item
25850 Playing audio while showing the spectrum:
25851 @example
25852 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
25853 @end example
25854
25855 @item
25856 Same as above, but with frame rate 30 fps:
25857 @example
25858 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
25859 @end example
25860
25861 @item
25862 Playing at 1280x720:
25863 @example
25864 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
25865 @end example
25866
25867 @item
25868 Disable sonogram display:
25869 @example
25870 sono_h=0
25871 @end example
25872
25873 @item
25874 A1 and its harmonics: A1, A2, (near)E3, A3:
25875 @example
25876 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),
25877                  asplit[a][out1]; [a] showcqt [out0]'
25878 @end example
25879
25880 @item
25881 Same as above, but with more accuracy in frequency domain:
25882 @example
25883 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),
25884                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
25885 @end example
25886
25887 @item
25888 Custom volume:
25889 @example
25890 bar_v=10:sono_v=bar_v*a_weighting(f)
25891 @end example
25892
25893 @item
25894 Custom gamma, now spectrum is linear to the amplitude.
25895 @example
25896 bar_g=2:sono_g=2
25897 @end example
25898
25899 @item
25900 Custom tlength equation:
25901 @example
25902 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)))'
25903 @end example
25904
25905 @item
25906 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
25907 @example
25908 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
25909 @end example
25910
25911 @item
25912 Custom font using fontconfig:
25913 @example
25914 font='Courier New,Monospace,mono|bold'
25915 @end example
25916
25917 @item
25918 Custom frequency range with custom axis using image file:
25919 @example
25920 axisfile=myaxis.png:basefreq=40:endfreq=10000
25921 @end example
25922 @end itemize
25923
25924 @section showfreqs
25925
25926 Convert input audio to video output representing the audio power spectrum.
25927 Audio amplitude is on Y-axis while frequency is on X-axis.
25928
25929 The filter accepts the following options:
25930
25931 @table @option
25932 @item size, s
25933 Specify size of video. For the syntax of this option, check the
25934 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25935 Default is @code{1024x512}.
25936
25937 @item mode
25938 Set display mode.
25939 This set how each frequency bin will be represented.
25940
25941 It accepts the following values:
25942 @table @samp
25943 @item line
25944 @item bar
25945 @item dot
25946 @end table
25947 Default is @code{bar}.
25948
25949 @item ascale
25950 Set amplitude scale.
25951
25952 It accepts the following values:
25953 @table @samp
25954 @item lin
25955 Linear scale.
25956
25957 @item sqrt
25958 Square root scale.
25959
25960 @item cbrt
25961 Cubic root scale.
25962
25963 @item log
25964 Logarithmic scale.
25965 @end table
25966 Default is @code{log}.
25967
25968 @item fscale
25969 Set frequency scale.
25970
25971 It accepts the following values:
25972 @table @samp
25973 @item lin
25974 Linear scale.
25975
25976 @item log
25977 Logarithmic scale.
25978
25979 @item rlog
25980 Reverse logarithmic scale.
25981 @end table
25982 Default is @code{lin}.
25983
25984 @item win_size
25985 Set window size. Allowed range is from 16 to 65536.
25986
25987 Default is @code{2048}
25988
25989 @item win_func
25990 Set windowing function.
25991
25992 It accepts the following values:
25993 @table @samp
25994 @item rect
25995 @item bartlett
25996 @item hanning
25997 @item hamming
25998 @item blackman
25999 @item welch
26000 @item flattop
26001 @item bharris
26002 @item bnuttall
26003 @item bhann
26004 @item sine
26005 @item nuttall
26006 @item lanczos
26007 @item gauss
26008 @item tukey
26009 @item dolph
26010 @item cauchy
26011 @item parzen
26012 @item poisson
26013 @item bohman
26014 @end table
26015 Default is @code{hanning}.
26016
26017 @item overlap
26018 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
26019 which means optimal overlap for selected window function will be picked.
26020
26021 @item averaging
26022 Set time averaging. Setting this to 0 will display current maximal peaks.
26023 Default is @code{1}, which means time averaging is disabled.
26024
26025 @item colors
26026 Specify list of colors separated by space or by '|' which will be used to
26027 draw channel frequencies. Unrecognized or missing colors will be replaced
26028 by white color.
26029
26030 @item cmode
26031 Set channel display mode.
26032
26033 It accepts the following values:
26034 @table @samp
26035 @item combined
26036 @item separate
26037 @end table
26038 Default is @code{combined}.
26039
26040 @item minamp
26041 Set minimum amplitude used in @code{log} amplitude scaler.
26042
26043 @item data
26044 Set data display mode.
26045
26046 It accepts the following values:
26047 @table @samp
26048 @item magnitude
26049 @item phase
26050 @item delay
26051 @end table
26052 Default is @code{magnitude}.
26053 @end table
26054
26055 @section showspatial
26056
26057 Convert stereo input audio to a video output, representing the spatial relationship
26058 between two channels.
26059
26060 The filter accepts the following options:
26061
26062 @table @option
26063 @item size, s
26064 Specify the video size for the output. For the syntax of this option, check the
26065 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26066 Default value is @code{512x512}.
26067
26068 @item win_size
26069 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
26070
26071 @item win_func
26072 Set window function.
26073
26074 It accepts the following values:
26075 @table @samp
26076 @item rect
26077 @item bartlett
26078 @item hann
26079 @item hanning
26080 @item hamming
26081 @item blackman
26082 @item welch
26083 @item flattop
26084 @item bharris
26085 @item bnuttall
26086 @item bhann
26087 @item sine
26088 @item nuttall
26089 @item lanczos
26090 @item gauss
26091 @item tukey
26092 @item dolph
26093 @item cauchy
26094 @item parzen
26095 @item poisson
26096 @item bohman
26097 @end table
26098
26099 Default value is @code{hann}.
26100
26101 @item overlap
26102 Set ratio of overlap window. Default value is @code{0.5}.
26103 When value is @code{1} overlap is set to recommended size for specific
26104 window function currently used.
26105 @end table
26106
26107 @anchor{showspectrum}
26108 @section showspectrum
26109
26110 Convert input audio to a video output, representing the audio frequency
26111 spectrum.
26112
26113 The filter accepts the following options:
26114
26115 @table @option
26116 @item size, s
26117 Specify the video size for the output. For the syntax of this option, check the
26118 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26119 Default value is @code{640x512}.
26120
26121 @item slide
26122 Specify how the spectrum should slide along the window.
26123
26124 It accepts the following values:
26125 @table @samp
26126 @item replace
26127 the samples start again on the left when they reach the right
26128 @item scroll
26129 the samples scroll from right to left
26130 @item fullframe
26131 frames are only produced when the samples reach the right
26132 @item rscroll
26133 the samples scroll from left to right
26134 @end table
26135
26136 Default value is @code{replace}.
26137
26138 @item mode
26139 Specify display mode.
26140
26141 It accepts the following values:
26142 @table @samp
26143 @item combined
26144 all channels are displayed in the same row
26145 @item separate
26146 all channels are displayed in separate rows
26147 @end table
26148
26149 Default value is @samp{combined}.
26150
26151 @item color
26152 Specify display color mode.
26153
26154 It accepts the following values:
26155 @table @samp
26156 @item channel
26157 each channel is displayed in a separate color
26158 @item intensity
26159 each channel is displayed using the same color scheme
26160 @item rainbow
26161 each channel is displayed using the rainbow color scheme
26162 @item moreland
26163 each channel is displayed using the moreland color scheme
26164 @item nebulae
26165 each channel is displayed using the nebulae color scheme
26166 @item fire
26167 each channel is displayed using the fire color scheme
26168 @item fiery
26169 each channel is displayed using the fiery color scheme
26170 @item fruit
26171 each channel is displayed using the fruit color scheme
26172 @item cool
26173 each channel is displayed using the cool color scheme
26174 @item magma
26175 each channel is displayed using the magma color scheme
26176 @item green
26177 each channel is displayed using the green color scheme
26178 @item viridis
26179 each channel is displayed using the viridis color scheme
26180 @item plasma
26181 each channel is displayed using the plasma color scheme
26182 @item cividis
26183 each channel is displayed using the cividis color scheme
26184 @item terrain
26185 each channel is displayed using the terrain color scheme
26186 @end table
26187
26188 Default value is @samp{channel}.
26189
26190 @item scale
26191 Specify scale used for calculating intensity color values.
26192
26193 It accepts the following values:
26194 @table @samp
26195 @item lin
26196 linear
26197 @item sqrt
26198 square root, default
26199 @item cbrt
26200 cubic root
26201 @item log
26202 logarithmic
26203 @item 4thrt
26204 4th root
26205 @item 5thrt
26206 5th root
26207 @end table
26208
26209 Default value is @samp{sqrt}.
26210
26211 @item fscale
26212 Specify frequency scale.
26213
26214 It accepts the following values:
26215 @table @samp
26216 @item lin
26217 linear
26218 @item log
26219 logarithmic
26220 @end table
26221
26222 Default value is @samp{lin}.
26223
26224 @item saturation
26225 Set saturation modifier for displayed colors. Negative values provide
26226 alternative color scheme. @code{0} is no saturation at all.
26227 Saturation must be in [-10.0, 10.0] range.
26228 Default value is @code{1}.
26229
26230 @item win_func
26231 Set window function.
26232
26233 It accepts the following values:
26234 @table @samp
26235 @item rect
26236 @item bartlett
26237 @item hann
26238 @item hanning
26239 @item hamming
26240 @item blackman
26241 @item welch
26242 @item flattop
26243 @item bharris
26244 @item bnuttall
26245 @item bhann
26246 @item sine
26247 @item nuttall
26248 @item lanczos
26249 @item gauss
26250 @item tukey
26251 @item dolph
26252 @item cauchy
26253 @item parzen
26254 @item poisson
26255 @item bohman
26256 @end table
26257
26258 Default value is @code{hann}.
26259
26260 @item orientation
26261 Set orientation of time vs frequency axis. Can be @code{vertical} or
26262 @code{horizontal}. Default is @code{vertical}.
26263
26264 @item overlap
26265 Set ratio of overlap window. Default value is @code{0}.
26266 When value is @code{1} overlap is set to recommended size for specific
26267 window function currently used.
26268
26269 @item gain
26270 Set scale gain for calculating intensity color values.
26271 Default value is @code{1}.
26272
26273 @item data
26274 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
26275
26276 @item rotation
26277 Set color rotation, must be in [-1.0, 1.0] range.
26278 Default value is @code{0}.
26279
26280 @item start
26281 Set start frequency from which to display spectrogram. Default is @code{0}.
26282
26283 @item stop
26284 Set stop frequency to which to display spectrogram. Default is @code{0}.
26285
26286 @item fps
26287 Set upper frame rate limit. Default is @code{auto}, unlimited.
26288
26289 @item legend
26290 Draw time and frequency axes and legends. Default is disabled.
26291 @end table
26292
26293 The usage is very similar to the showwaves filter; see the examples in that
26294 section.
26295
26296 @subsection Examples
26297
26298 @itemize
26299 @item
26300 Large window with logarithmic color scaling:
26301 @example
26302 showspectrum=s=1280x480:scale=log
26303 @end example
26304
26305 @item
26306 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
26307 @example
26308 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
26309              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
26310 @end example
26311 @end itemize
26312
26313 @section showspectrumpic
26314
26315 Convert input audio to a single video frame, representing the audio frequency
26316 spectrum.
26317
26318 The filter accepts the following options:
26319
26320 @table @option
26321 @item size, s
26322 Specify the video size for the output. For the syntax of this option, check the
26323 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26324 Default value is @code{4096x2048}.
26325
26326 @item mode
26327 Specify display mode.
26328
26329 It accepts the following values:
26330 @table @samp
26331 @item combined
26332 all channels are displayed in the same row
26333 @item separate
26334 all channels are displayed in separate rows
26335 @end table
26336 Default value is @samp{combined}.
26337
26338 @item color
26339 Specify display color mode.
26340
26341 It accepts the following values:
26342 @table @samp
26343 @item channel
26344 each channel is displayed in a separate color
26345 @item intensity
26346 each channel is displayed using the same color scheme
26347 @item rainbow
26348 each channel is displayed using the rainbow color scheme
26349 @item moreland
26350 each channel is displayed using the moreland color scheme
26351 @item nebulae
26352 each channel is displayed using the nebulae color scheme
26353 @item fire
26354 each channel is displayed using the fire color scheme
26355 @item fiery
26356 each channel is displayed using the fiery color scheme
26357 @item fruit
26358 each channel is displayed using the fruit color scheme
26359 @item cool
26360 each channel is displayed using the cool color scheme
26361 @item magma
26362 each channel is displayed using the magma color scheme
26363 @item green
26364 each channel is displayed using the green color scheme
26365 @item viridis
26366 each channel is displayed using the viridis color scheme
26367 @item plasma
26368 each channel is displayed using the plasma color scheme
26369 @item cividis
26370 each channel is displayed using the cividis color scheme
26371 @item terrain
26372 each channel is displayed using the terrain color scheme
26373 @end table
26374 Default value is @samp{intensity}.
26375
26376 @item scale
26377 Specify scale used for calculating intensity color values.
26378
26379 It accepts the following values:
26380 @table @samp
26381 @item lin
26382 linear
26383 @item sqrt
26384 square root, default
26385 @item cbrt
26386 cubic root
26387 @item log
26388 logarithmic
26389 @item 4thrt
26390 4th root
26391 @item 5thrt
26392 5th root
26393 @end table
26394 Default value is @samp{log}.
26395
26396 @item fscale
26397 Specify frequency scale.
26398
26399 It accepts the following values:
26400 @table @samp
26401 @item lin
26402 linear
26403 @item log
26404 logarithmic
26405 @end table
26406
26407 Default value is @samp{lin}.
26408
26409 @item saturation
26410 Set saturation modifier for displayed colors. Negative values provide
26411 alternative color scheme. @code{0} is no saturation at all.
26412 Saturation must be in [-10.0, 10.0] range.
26413 Default value is @code{1}.
26414
26415 @item win_func
26416 Set window function.
26417
26418 It accepts the following values:
26419 @table @samp
26420 @item rect
26421 @item bartlett
26422 @item hann
26423 @item hanning
26424 @item hamming
26425 @item blackman
26426 @item welch
26427 @item flattop
26428 @item bharris
26429 @item bnuttall
26430 @item bhann
26431 @item sine
26432 @item nuttall
26433 @item lanczos
26434 @item gauss
26435 @item tukey
26436 @item dolph
26437 @item cauchy
26438 @item parzen
26439 @item poisson
26440 @item bohman
26441 @end table
26442 Default value is @code{hann}.
26443
26444 @item orientation
26445 Set orientation of time vs frequency axis. Can be @code{vertical} or
26446 @code{horizontal}. Default is @code{vertical}.
26447
26448 @item gain
26449 Set scale gain for calculating intensity color values.
26450 Default value is @code{1}.
26451
26452 @item legend
26453 Draw time and frequency axes and legends. Default is enabled.
26454
26455 @item rotation
26456 Set color rotation, must be in [-1.0, 1.0] range.
26457 Default value is @code{0}.
26458
26459 @item start
26460 Set start frequency from which to display spectrogram. Default is @code{0}.
26461
26462 @item stop
26463 Set stop frequency to which to display spectrogram. Default is @code{0}.
26464 @end table
26465
26466 @subsection Examples
26467
26468 @itemize
26469 @item
26470 Extract an audio spectrogram of a whole audio track
26471 in a 1024x1024 picture using @command{ffmpeg}:
26472 @example
26473 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
26474 @end example
26475 @end itemize
26476
26477 @section showvolume
26478
26479 Convert input audio volume to a video output.
26480
26481 The filter accepts the following options:
26482
26483 @table @option
26484 @item rate, r
26485 Set video rate.
26486
26487 @item b
26488 Set border width, allowed range is [0, 5]. Default is 1.
26489
26490 @item w
26491 Set channel width, allowed range is [80, 8192]. Default is 400.
26492
26493 @item h
26494 Set channel height, allowed range is [1, 900]. Default is 20.
26495
26496 @item f
26497 Set fade, allowed range is [0, 1]. Default is 0.95.
26498
26499 @item c
26500 Set volume color expression.
26501
26502 The expression can use the following variables:
26503
26504 @table @option
26505 @item VOLUME
26506 Current max volume of channel in dB.
26507
26508 @item PEAK
26509 Current peak.
26510
26511 @item CHANNEL
26512 Current channel number, starting from 0.
26513 @end table
26514
26515 @item t
26516 If set, displays channel names. Default is enabled.
26517
26518 @item v
26519 If set, displays volume values. Default is enabled.
26520
26521 @item o
26522 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
26523 default is @code{h}.
26524
26525 @item s
26526 Set step size, allowed range is [0, 5]. Default is 0, which means
26527 step is disabled.
26528
26529 @item p
26530 Set background opacity, allowed range is [0, 1]. Default is 0.
26531
26532 @item m
26533 Set metering mode, can be peak: @code{p} or rms: @code{r},
26534 default is @code{p}.
26535
26536 @item ds
26537 Set display scale, can be linear: @code{lin} or log: @code{log},
26538 default is @code{lin}.
26539
26540 @item dm
26541 In second.
26542 If set to > 0., display a line for the max level
26543 in the previous seconds.
26544 default is disabled: @code{0.}
26545
26546 @item dmc
26547 The color of the max line. Use when @code{dm} option is set to > 0.
26548 default is: @code{orange}
26549 @end table
26550
26551 @section showwaves
26552
26553 Convert input audio to a video output, representing the samples waves.
26554
26555 The filter accepts the following options:
26556
26557 @table @option
26558 @item size, s
26559 Specify the video size for the output. For the syntax of this option, check the
26560 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26561 Default value is @code{600x240}.
26562
26563 @item mode
26564 Set display mode.
26565
26566 Available values are:
26567 @table @samp
26568 @item point
26569 Draw a point for each sample.
26570
26571 @item line
26572 Draw a vertical line for each sample.
26573
26574 @item p2p
26575 Draw a point for each sample and a line between them.
26576
26577 @item cline
26578 Draw a centered vertical line for each sample.
26579 @end table
26580
26581 Default value is @code{point}.
26582
26583 @item n
26584 Set the number of samples which are printed on the same column. A
26585 larger value will decrease the frame rate. Must be a positive
26586 integer. This option can be set only if the value for @var{rate}
26587 is not explicitly specified.
26588
26589 @item rate, r
26590 Set the (approximate) output frame rate. This is done by setting the
26591 option @var{n}. Default value is "25".
26592
26593 @item split_channels
26594 Set if channels should be drawn separately or overlap. Default value is 0.
26595
26596 @item colors
26597 Set colors separated by '|' which are going to be used for drawing of each channel.
26598
26599 @item scale
26600 Set amplitude scale.
26601
26602 Available values are:
26603 @table @samp
26604 @item lin
26605 Linear.
26606
26607 @item log
26608 Logarithmic.
26609
26610 @item sqrt
26611 Square root.
26612
26613 @item cbrt
26614 Cubic root.
26615 @end table
26616
26617 Default is linear.
26618
26619 @item draw
26620 Set the draw mode. This is mostly useful to set for high @var{n}.
26621
26622 Available values are:
26623 @table @samp
26624 @item scale
26625 Scale pixel values for each drawn sample.
26626
26627 @item full
26628 Draw every sample directly.
26629 @end table
26630
26631 Default value is @code{scale}.
26632 @end table
26633
26634 @subsection Examples
26635
26636 @itemize
26637 @item
26638 Output the input file audio and the corresponding video representation
26639 at the same time:
26640 @example
26641 amovie=a.mp3,asplit[out0],showwaves[out1]
26642 @end example
26643
26644 @item
26645 Create a synthetic signal and show it with showwaves, forcing a
26646 frame rate of 30 frames per second:
26647 @example
26648 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
26649 @end example
26650 @end itemize
26651
26652 @section showwavespic
26653
26654 Convert input audio to a single video frame, representing the samples waves.
26655
26656 The filter accepts the following options:
26657
26658 @table @option
26659 @item size, s
26660 Specify the video size for the output. For the syntax of this option, check the
26661 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26662 Default value is @code{600x240}.
26663
26664 @item split_channels
26665 Set if channels should be drawn separately or overlap. Default value is 0.
26666
26667 @item colors
26668 Set colors separated by '|' which are going to be used for drawing of each channel.
26669
26670 @item scale
26671 Set amplitude scale.
26672
26673 Available values are:
26674 @table @samp
26675 @item lin
26676 Linear.
26677
26678 @item log
26679 Logarithmic.
26680
26681 @item sqrt
26682 Square root.
26683
26684 @item cbrt
26685 Cubic root.
26686 @end table
26687
26688 Default is linear.
26689
26690 @item draw
26691 Set the draw mode.
26692
26693 Available values are:
26694 @table @samp
26695 @item scale
26696 Scale pixel values for each drawn sample.
26697
26698 @item full
26699 Draw every sample directly.
26700 @end table
26701
26702 Default value is @code{scale}.
26703
26704 @item filter
26705 Set the filter mode.
26706
26707 Available values are:
26708 @table @samp
26709 @item average
26710 Use average samples values for each drawn sample.
26711
26712 @item peak
26713 Use peak samples values for each drawn sample.
26714 @end table
26715
26716 Default value is @code{average}.
26717 @end table
26718
26719 @subsection Examples
26720
26721 @itemize
26722 @item
26723 Extract a channel split representation of the wave form of a whole audio track
26724 in a 1024x800 picture using @command{ffmpeg}:
26725 @example
26726 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
26727 @end example
26728 @end itemize
26729
26730 @section sidedata, asidedata
26731
26732 Delete frame side data, or select frames based on it.
26733
26734 This filter accepts the following options:
26735
26736 @table @option
26737 @item mode
26738 Set mode of operation of the filter.
26739
26740 Can be one of the following:
26741
26742 @table @samp
26743 @item select
26744 Select every frame with side data of @code{type}.
26745
26746 @item delete
26747 Delete side data of @code{type}. If @code{type} is not set, delete all side
26748 data in the frame.
26749
26750 @end table
26751
26752 @item type
26753 Set side data type used with all modes. Must be set for @code{select} mode. For
26754 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
26755 in @file{libavutil/frame.h}. For example, to choose
26756 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
26757
26758 @end table
26759
26760 @section spectrumsynth
26761
26762 Synthesize audio from 2 input video spectrums, first input stream represents
26763 magnitude across time and second represents phase across time.
26764 The filter will transform from frequency domain as displayed in videos back
26765 to time domain as presented in audio output.
26766
26767 This filter is primarily created for reversing processed @ref{showspectrum}
26768 filter outputs, but can synthesize sound from other spectrograms too.
26769 But in such case results are going to be poor if the phase data is not
26770 available, because in such cases phase data need to be recreated, usually
26771 it's just recreated from random noise.
26772 For best results use gray only output (@code{channel} color mode in
26773 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
26774 @code{lin} scale for phase video. To produce phase, for 2nd video, use
26775 @code{data} option. Inputs videos should generally use @code{fullframe}
26776 slide mode as that saves resources needed for decoding video.
26777
26778 The filter accepts the following options:
26779
26780 @table @option
26781 @item sample_rate
26782 Specify sample rate of output audio, the sample rate of audio from which
26783 spectrum was generated may differ.
26784
26785 @item channels
26786 Set number of channels represented in input video spectrums.
26787
26788 @item scale
26789 Set scale which was used when generating magnitude input spectrum.
26790 Can be @code{lin} or @code{log}. Default is @code{log}.
26791
26792 @item slide
26793 Set slide which was used when generating inputs spectrums.
26794 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
26795 Default is @code{fullframe}.
26796
26797 @item win_func
26798 Set window function used for resynthesis.
26799
26800 @item overlap
26801 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
26802 which means optimal overlap for selected window function will be picked.
26803
26804 @item orientation
26805 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
26806 Default is @code{vertical}.
26807 @end table
26808
26809 @subsection Examples
26810
26811 @itemize
26812 @item
26813 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
26814 then resynthesize videos back to audio with spectrumsynth:
26815 @example
26816 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
26817 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
26818 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
26819 @end example
26820 @end itemize
26821
26822 @section split, asplit
26823
26824 Split input into several identical outputs.
26825
26826 @code{asplit} works with audio input, @code{split} with video.
26827
26828 The filter accepts a single parameter which specifies the number of outputs. If
26829 unspecified, it defaults to 2.
26830
26831 @subsection Examples
26832
26833 @itemize
26834 @item
26835 Create two separate outputs from the same input:
26836 @example
26837 [in] split [out0][out1]
26838 @end example
26839
26840 @item
26841 To create 3 or more outputs, you need to specify the number of
26842 outputs, like in:
26843 @example
26844 [in] asplit=3 [out0][out1][out2]
26845 @end example
26846
26847 @item
26848 Create two separate outputs from the same input, one cropped and
26849 one padded:
26850 @example
26851 [in] split [splitout1][splitout2];
26852 [splitout1] crop=100:100:0:0    [cropout];
26853 [splitout2] pad=200:200:100:100 [padout];
26854 @end example
26855
26856 @item
26857 Create 5 copies of the input audio with @command{ffmpeg}:
26858 @example
26859 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
26860 @end example
26861 @end itemize
26862
26863 @section zmq, azmq
26864
26865 Receive commands sent through a libzmq client, and forward them to
26866 filters in the filtergraph.
26867
26868 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
26869 must be inserted between two video filters, @code{azmq} between two
26870 audio filters. Both are capable to send messages to any filter type.
26871
26872 To enable these filters you need to install the libzmq library and
26873 headers and configure FFmpeg with @code{--enable-libzmq}.
26874
26875 For more information about libzmq see:
26876 @url{http://www.zeromq.org/}
26877
26878 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
26879 receives messages sent through a network interface defined by the
26880 @option{bind_address} (or the abbreviation "@option{b}") option.
26881 Default value of this option is @file{tcp://localhost:5555}. You may
26882 want to alter this value to your needs, but do not forget to escape any
26883 ':' signs (see @ref{filtergraph escaping}).
26884
26885 The received message must be in the form:
26886 @example
26887 @var{TARGET} @var{COMMAND} [@var{ARG}]
26888 @end example
26889
26890 @var{TARGET} specifies the target of the command, usually the name of
26891 the filter class or a specific filter instance name. The default
26892 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
26893 but you can override this by using the @samp{filter_name@@id} syntax
26894 (see @ref{Filtergraph syntax}).
26895
26896 @var{COMMAND} specifies the name of the command for the target filter.
26897
26898 @var{ARG} is optional and specifies the optional argument list for the
26899 given @var{COMMAND}.
26900
26901 Upon reception, the message is processed and the corresponding command
26902 is injected into the filtergraph. Depending on the result, the filter
26903 will send a reply to the client, adopting the format:
26904 @example
26905 @var{ERROR_CODE} @var{ERROR_REASON}
26906 @var{MESSAGE}
26907 @end example
26908
26909 @var{MESSAGE} is optional.
26910
26911 @subsection Examples
26912
26913 Look at @file{tools/zmqsend} for an example of a zmq client which can
26914 be used to send commands processed by these filters.
26915
26916 Consider the following filtergraph generated by @command{ffplay}.
26917 In this example the last overlay filter has an instance name. All other
26918 filters will have default instance names.
26919
26920 @example
26921 ffplay -dumpgraph 1 -f lavfi "
26922 color=s=100x100:c=red  [l];
26923 color=s=100x100:c=blue [r];
26924 nullsrc=s=200x100, zmq [bg];
26925 [bg][l]   overlay     [bg+l];
26926 [bg+l][r] overlay@@my=x=100 "
26927 @end example
26928
26929 To change the color of the left side of the video, the following
26930 command can be used:
26931 @example
26932 echo Parsed_color_0 c yellow | tools/zmqsend
26933 @end example
26934
26935 To change the right side:
26936 @example
26937 echo Parsed_color_1 c pink | tools/zmqsend
26938 @end example
26939
26940 To change the position of the right side:
26941 @example
26942 echo overlay@@my x 150 | tools/zmqsend
26943 @end example
26944
26945
26946 @c man end MULTIMEDIA FILTERS
26947
26948 @chapter Multimedia Sources
26949 @c man begin MULTIMEDIA SOURCES
26950
26951 Below is a description of the currently available multimedia sources.
26952
26953 @section amovie
26954
26955 This is the same as @ref{movie} source, except it selects an audio
26956 stream by default.
26957
26958 @anchor{movie}
26959 @section movie
26960
26961 Read audio and/or video stream(s) from a movie container.
26962
26963 It accepts the following parameters:
26964
26965 @table @option
26966 @item filename
26967 The name of the resource to read (not necessarily a file; it can also be a
26968 device or a stream accessed through some protocol).
26969
26970 @item format_name, f
26971 Specifies the format assumed for the movie to read, and can be either
26972 the name of a container or an input device. If not specified, the
26973 format is guessed from @var{movie_name} or by probing.
26974
26975 @item seek_point, sp
26976 Specifies the seek point in seconds. The frames will be output
26977 starting from this seek point. The parameter is evaluated with
26978 @code{av_strtod}, so the numerical value may be suffixed by an IS
26979 postfix. The default value is "0".
26980
26981 @item streams, s
26982 Specifies the streams to read. Several streams can be specified,
26983 separated by "+". The source will then have as many outputs, in the
26984 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
26985 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
26986 respectively the default (best suited) video and audio stream. Default
26987 is "dv", or "da" if the filter is called as "amovie".
26988
26989 @item stream_index, si
26990 Specifies the index of the video stream to read. If the value is -1,
26991 the most suitable video stream will be automatically selected. The default
26992 value is "-1". Deprecated. If the filter is called "amovie", it will select
26993 audio instead of video.
26994
26995 @item loop
26996 Specifies how many times to read the stream in sequence.
26997 If the value is 0, the stream will be looped infinitely.
26998 Default value is "1".
26999
27000 Note that when the movie is looped the source timestamps are not
27001 changed, so it will generate non monotonically increasing timestamps.
27002
27003 @item discontinuity
27004 Specifies the time difference between frames above which the point is
27005 considered a timestamp discontinuity which is removed by adjusting the later
27006 timestamps.
27007 @end table
27008
27009 It allows overlaying a second video on top of the main input of
27010 a filtergraph, as shown in this graph:
27011 @example
27012 input -----------> deltapts0 --> overlay --> output
27013                                     ^
27014                                     |
27015 movie --> scale--> deltapts1 -------+
27016 @end example
27017 @subsection Examples
27018
27019 @itemize
27020 @item
27021 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
27022 on top of the input labelled "in":
27023 @example
27024 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
27025 [in] setpts=PTS-STARTPTS [main];
27026 [main][over] overlay=16:16 [out]
27027 @end example
27028
27029 @item
27030 Read from a video4linux2 device, and overlay it on top of the input
27031 labelled "in":
27032 @example
27033 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
27034 [in] setpts=PTS-STARTPTS [main];
27035 [main][over] overlay=16:16 [out]
27036 @end example
27037
27038 @item
27039 Read the first video stream and the audio stream with id 0x81 from
27040 dvd.vob; the video is connected to the pad named "video" and the audio is
27041 connected to the pad named "audio":
27042 @example
27043 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
27044 @end example
27045 @end itemize
27046
27047 @subsection Commands
27048
27049 Both movie and amovie support the following commands:
27050 @table @option
27051 @item seek
27052 Perform seek using "av_seek_frame".
27053 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
27054 @itemize
27055 @item
27056 @var{stream_index}: If stream_index is -1, a default
27057 stream is selected, and @var{timestamp} is automatically converted
27058 from AV_TIME_BASE units to the stream specific time_base.
27059 @item
27060 @var{timestamp}: Timestamp in AVStream.time_base units
27061 or, if no stream is specified, in AV_TIME_BASE units.
27062 @item
27063 @var{flags}: Flags which select direction and seeking mode.
27064 @end itemize
27065
27066 @item get_duration
27067 Get movie duration in AV_TIME_BASE units.
27068
27069 @end table
27070
27071 @c man end MULTIMEDIA SOURCES