]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/vf_fillborders: add more fill modes
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{id}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program optionally followed by "@@@var{id}".
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{commands}
316 @chapter Changing options at runtime with a command
317
318 Some options can be changed during the operation of the filter using
319 a command. These options are marked 'T' on the output of
320 @command{ffmpeg} @option{-h filter=<name of filter>}.
321 The name of the command is the name of the option and the argument is
322 the new value.
323
324 @anchor{framesync}
325 @chapter Options for filters with several inputs (framesync)
326 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
327
328 Some filters with several inputs support a common set of options.
329 These options can only be set by name, not with the short notation.
330
331 @table @option
332 @item eof_action
333 The action to take when EOF is encountered on the secondary input; it accepts
334 one of the following values:
335
336 @table @option
337 @item repeat
338 Repeat the last frame (the default).
339 @item endall
340 End both streams.
341 @item pass
342 Pass the main input through.
343 @end table
344
345 @item shortest
346 If set to 1, force the output to terminate when the shortest input
347 terminates. Default value is 0.
348
349 @item repeatlast
350 If set to 1, force the filter to extend the last frame of secondary streams
351 until the end of the primary stream. A value of 0 disables this behavior.
352 Default value is 1.
353 @end table
354
355 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
356
357 @chapter Audio Filters
358 @c man begin AUDIO FILTERS
359
360 When you configure your FFmpeg build, you can disable any of the
361 existing filters using @code{--disable-filters}.
362 The configure output will show the audio filters included in your
363 build.
364
365 Below is a description of the currently available audio filters.
366
367 @section acompressor
368
369 A compressor is mainly used to reduce the dynamic range of a signal.
370 Especially modern music is mostly compressed at a high ratio to
371 improve the overall loudness. It's done to get the highest attention
372 of a listener, "fatten" the sound and bring more "power" to the track.
373 If a signal is compressed too much it may sound dull or "dead"
374 afterwards or it may start to "pump" (which could be a powerful effect
375 but can also destroy a track completely).
376 The right compression is the key to reach a professional sound and is
377 the high art of mixing and mastering. Because of its complex settings
378 it may take a long time to get the right feeling for this kind of effect.
379
380 Compression is done by detecting the volume above a chosen level
381 @code{threshold} and dividing it by the factor set with @code{ratio}.
382 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
383 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
384 the signal would cause distortion of the waveform the reduction can be
385 levelled over the time. This is done by setting "Attack" and "Release".
386 @code{attack} determines how long the signal has to rise above the threshold
387 before any reduction will occur and @code{release} sets the time the signal
388 has to fall below the threshold to reduce the reduction again. Shorter signals
389 than the chosen attack time will be left untouched.
390 The overall reduction of the signal can be made up afterwards with the
391 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
392 raising the makeup to this level results in a signal twice as loud than the
393 source. To gain a softer entry in the compression the @code{knee} flattens the
394 hard edge at the threshold in the range of the chosen decibels.
395
396 The filter accepts the following options:
397
398 @table @option
399 @item level_in
400 Set input gain. Default is 1. Range is between 0.015625 and 64.
401
402 @item mode
403 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
404 Default is @code{downward}.
405
406 @item threshold
407 If a signal of stream rises above this level it will affect the gain
408 reduction.
409 By default it is 0.125. Range is between 0.00097563 and 1.
410
411 @item ratio
412 Set a ratio by which the signal is reduced. 1:2 means that if the level
413 rose 4dB above the threshold, it will be only 2dB above after the reduction.
414 Default is 2. Range is between 1 and 20.
415
416 @item attack
417 Amount of milliseconds the signal has to rise above the threshold before gain
418 reduction starts. Default is 20. Range is between 0.01 and 2000.
419
420 @item release
421 Amount of milliseconds the signal has to fall below the threshold before
422 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
423
424 @item makeup
425 Set the amount by how much signal will be amplified after processing.
426 Default is 1. Range is from 1 to 64.
427
428 @item knee
429 Curve the sharp knee around the threshold to enter gain reduction more softly.
430 Default is 2.82843. Range is between 1 and 8.
431
432 @item link
433 Choose if the @code{average} level between all channels of input stream
434 or the louder(@code{maximum}) channel of input stream affects the
435 reduction. Default is @code{average}.
436
437 @item detection
438 Should the exact signal be taken in case of @code{peak} or an RMS one in case
439 of @code{rms}. Default is @code{rms} which is mostly smoother.
440
441 @item mix
442 How much to use compressed signal in output. Default is 1.
443 Range is between 0 and 1.
444 @end table
445
446 @subsection Commands
447
448 This filter supports the all above options as @ref{commands}.
449
450 @section acontrast
451 Simple audio dynamic range compression/expansion filter.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item contrast
457 Set contrast. Default is 33. Allowed range is between 0 and 100.
458 @end table
459
460 @section acopy
461
462 Copy the input audio source unchanged to the output. This is mainly useful for
463 testing purposes.
464
465 @section acrossfade
466
467 Apply cross fade from one input audio stream to another input audio stream.
468 The cross fade is applied for specified duration near the end of first stream.
469
470 The filter accepts the following options:
471
472 @table @option
473 @item nb_samples, ns
474 Specify the number of samples for which the cross fade effect has to last.
475 At the end of the cross fade effect the first input audio will be completely
476 silent. Default is 44100.
477
478 @item duration, d
479 Specify the duration of the cross fade effect. See
480 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
481 for the accepted syntax.
482 By default the duration is determined by @var{nb_samples}.
483 If set this option is used instead of @var{nb_samples}.
484
485 @item overlap, o
486 Should first stream end overlap with second stream start. Default is enabled.
487
488 @item curve1
489 Set curve for cross fade transition for first stream.
490
491 @item curve2
492 Set curve for cross fade transition for second stream.
493
494 For description of available curve types see @ref{afade} filter description.
495 @end table
496
497 @subsection Examples
498
499 @itemize
500 @item
501 Cross fade from one input to another:
502 @example
503 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
504 @end example
505
506 @item
507 Cross fade from one input to another but without overlapping:
508 @example
509 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
510 @end example
511 @end itemize
512
513 @section acrossover
514 Split audio stream into several bands.
515
516 This filter splits audio stream into two or more frequency ranges.
517 Summing all streams back will give flat output.
518
519 The filter accepts the following options:
520
521 @table @option
522 @item split
523 Set split frequencies. Those must be positive and increasing.
524
525 @item order
526 Set filter order for each band split. This controls filter roll-off or steepness
527 of filter transfer function.
528 Available values are:
529
530 @table @samp
531 @item 2nd
532 12 dB per octave.
533 @item 4th
534 24 dB per octave.
535 @item 6th
536 36 dB per octave.
537 @item 8th
538 48 dB per octave.
539 @item 10th
540 60 dB per octave.
541 @item 12th
542 72 dB per octave.
543 @item 14th
544 84 dB per octave.
545 @item 16th
546 96 dB per octave.
547 @item 18th
548 108 dB per octave.
549 @item 20th
550 120 dB per octave.
551 @end table
552
553 Default is @var{4th}.
554
555 @item level
556 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
557
558 @item gains
559 Set output gain for each band. Default value is 1 for all bands.
560 @end table
561
562 @subsection Examples
563
564 @itemize
565 @item
566 Split input audio stream into two bands (low and high) with split frequency of 1500 Hz,
567 each band will be in separate stream:
568 @example
569 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
570 @end example
571
572 @item
573 Same as above, but with higher filter order:
574 @example
575 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500:order=8th[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
576 @end example
577
578 @item
579 Same as above, but also with additional middle band (frequencies between 1500 and 8000):
580 @example
581 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500 8000:order=8th[LOW][MID][HIGH]' -map '[LOW]' low.wav -map '[MID]' mid.wav -map '[HIGH]' high.wav
582 @end example
583 @end itemize
584
585 @section acrusher
586
587 Reduce audio bit resolution.
588
589 This filter is bit crusher with enhanced functionality. A bit crusher
590 is used to audibly reduce number of bits an audio signal is sampled
591 with. This doesn't change the bit depth at all, it just produces the
592 effect. Material reduced in bit depth sounds more harsh and "digital".
593 This filter is able to even round to continuous values instead of discrete
594 bit depths.
595 Additionally it has a D/C offset which results in different crushing of
596 the lower and the upper half of the signal.
597 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
598
599 Another feature of this filter is the logarithmic mode.
600 This setting switches from linear distances between bits to logarithmic ones.
601 The result is a much more "natural" sounding crusher which doesn't gate low
602 signals for example. The human ear has a logarithmic perception,
603 so this kind of crushing is much more pleasant.
604 Logarithmic crushing is also able to get anti-aliased.
605
606 The filter accepts the following options:
607
608 @table @option
609 @item level_in
610 Set level in.
611
612 @item level_out
613 Set level out.
614
615 @item bits
616 Set bit reduction.
617
618 @item mix
619 Set mixing amount.
620
621 @item mode
622 Can be linear: @code{lin} or logarithmic: @code{log}.
623
624 @item dc
625 Set DC.
626
627 @item aa
628 Set anti-aliasing.
629
630 @item samples
631 Set sample reduction.
632
633 @item lfo
634 Enable LFO. By default disabled.
635
636 @item lforange
637 Set LFO range.
638
639 @item lforate
640 Set LFO rate.
641 @end table
642
643 @section acue
644
645 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
646 filter.
647
648 @section adeclick
649 Remove impulsive noise from input audio.
650
651 Samples detected as impulsive noise are replaced by interpolated samples using
652 autoregressive modelling.
653
654 @table @option
655 @item w
656 Set window size, in milliseconds. Allowed range is from @code{10} to
657 @code{100}. Default value is @code{55} milliseconds.
658 This sets size of window which will be processed at once.
659
660 @item o
661 Set window overlap, in percentage of window size. Allowed range is from
662 @code{50} to @code{95}. Default value is @code{75} percent.
663 Setting this to a very high value increases impulsive noise removal but makes
664 whole process much slower.
665
666 @item a
667 Set autoregression order, in percentage of window size. Allowed range is from
668 @code{0} to @code{25}. Default value is @code{2} percent. This option also
669 controls quality of interpolated samples using neighbour good samples.
670
671 @item t
672 Set threshold value. Allowed range is from @code{1} to @code{100}.
673 Default value is @code{2}.
674 This controls the strength of impulsive noise which is going to be removed.
675 The lower value, the more samples will be detected as impulsive noise.
676
677 @item b
678 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
679 @code{10}. Default value is @code{2}.
680 If any two samples detected as noise are spaced less than this value then any
681 sample between those two samples will be also detected as noise.
682
683 @item m
684 Set overlap method.
685
686 It accepts the following values:
687 @table @option
688 @item a
689 Select overlap-add method. Even not interpolated samples are slightly
690 changed with this method.
691
692 @item s
693 Select overlap-save method. Not interpolated samples remain unchanged.
694 @end table
695
696 Default value is @code{a}.
697 @end table
698
699 @section adeclip
700 Remove clipped samples from input audio.
701
702 Samples detected as clipped are replaced by interpolated samples using
703 autoregressive modelling.
704
705 @table @option
706 @item w
707 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
708 Default value is @code{55} milliseconds.
709 This sets size of window which will be processed at once.
710
711 @item o
712 Set window overlap, in percentage of window size. Allowed range is from @code{50}
713 to @code{95}. Default value is @code{75} percent.
714
715 @item a
716 Set autoregression order, in percentage of window size. Allowed range is from
717 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
718 quality of interpolated samples using neighbour good samples.
719
720 @item t
721 Set threshold value. Allowed range is from @code{1} to @code{100}.
722 Default value is @code{10}. Higher values make clip detection less aggressive.
723
724 @item n
725 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
726 Default value is @code{1000}. Higher values make clip detection less aggressive.
727
728 @item m
729 Set overlap method.
730
731 It accepts the following values:
732 @table @option
733 @item a
734 Select overlap-add method. Even not interpolated samples are slightly changed
735 with this method.
736
737 @item s
738 Select overlap-save method. Not interpolated samples remain unchanged.
739 @end table
740
741 Default value is @code{a}.
742 @end table
743
744 @section adelay
745
746 Delay one or more audio channels.
747
748 Samples in delayed channel are filled with silence.
749
750 The filter accepts the following option:
751
752 @table @option
753 @item delays
754 Set list of delays in milliseconds for each channel separated by '|'.
755 Unused delays will be silently ignored. If number of given delays is
756 smaller than number of channels all remaining channels will not be delayed.
757 If you want to delay exact number of samples, append 'S' to number.
758 If you want instead to delay in seconds, append 's' to number.
759
760 @item all
761 Use last set delay for all remaining channels. By default is disabled.
762 This option if enabled changes how option @code{delays} is interpreted.
763 @end table
764
765 @subsection Examples
766
767 @itemize
768 @item
769 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
770 the second channel (and any other channels that may be present) unchanged.
771 @example
772 adelay=1500|0|500
773 @end example
774
775 @item
776 Delay second channel by 500 samples, the third channel by 700 samples and leave
777 the first channel (and any other channels that may be present) unchanged.
778 @example
779 adelay=0|500S|700S
780 @end example
781
782 @item
783 Delay all channels by same number of samples:
784 @example
785 adelay=delays=64S:all=1
786 @end example
787 @end itemize
788
789 @section adenorm
790 Remedy denormals in audio by adding extremely low-level noise.
791
792 This filter shall be placed before any filter that can produce denormals.
793
794 A description of the accepted parameters follows.
795
796 @table @option
797 @item level
798 Set level of added noise in dB. Default is @code{-351}.
799 Allowed range is from -451 to -90.
800
801 @item type
802 Set type of added noise.
803
804 @table @option
805 @item dc
806 Add DC signal.
807 @item ac
808 Add AC signal.
809 @item square
810 Add square signal.
811 @item pulse
812 Add pulse signal.
813 @end table
814
815 Default is @code{dc}.
816 @end table
817
818 @subsection Commands
819
820 This filter supports the all above options as @ref{commands}.
821
822 @section aderivative, aintegral
823
824 Compute derivative/integral of audio stream.
825
826 Applying both filters one after another produces original audio.
827
828 @section aecho
829
830 Apply echoing to the input audio.
831
832 Echoes are reflected sound and can occur naturally amongst mountains
833 (and sometimes large buildings) when talking or shouting; digital echo
834 effects emulate this behaviour and are often used to help fill out the
835 sound of a single instrument or vocal. The time difference between the
836 original signal and the reflection is the @code{delay}, and the
837 loudness of the reflected signal is the @code{decay}.
838 Multiple echoes can have different delays and decays.
839
840 A description of the accepted parameters follows.
841
842 @table @option
843 @item in_gain
844 Set input gain of reflected signal. Default is @code{0.6}.
845
846 @item out_gain
847 Set output gain of reflected signal. Default is @code{0.3}.
848
849 @item delays
850 Set list of time intervals in milliseconds between original signal and reflections
851 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
852 Default is @code{1000}.
853
854 @item decays
855 Set list of loudness of reflected signals separated by '|'.
856 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
857 Default is @code{0.5}.
858 @end table
859
860 @subsection Examples
861
862 @itemize
863 @item
864 Make it sound as if there are twice as many instruments as are actually playing:
865 @example
866 aecho=0.8:0.88:60:0.4
867 @end example
868
869 @item
870 If delay is very short, then it sounds like a (metallic) robot playing music:
871 @example
872 aecho=0.8:0.88:6:0.4
873 @end example
874
875 @item
876 A longer delay will sound like an open air concert in the mountains:
877 @example
878 aecho=0.8:0.9:1000:0.3
879 @end example
880
881 @item
882 Same as above but with one more mountain:
883 @example
884 aecho=0.8:0.9:1000|1800:0.3|0.25
885 @end example
886 @end itemize
887
888 @section aemphasis
889 Audio emphasis filter creates or restores material directly taken from LPs or
890 emphased CDs with different filter curves. E.g. to store music on vinyl the
891 signal has to be altered by a filter first to even out the disadvantages of
892 this recording medium.
893 Once the material is played back the inverse filter has to be applied to
894 restore the distortion of the frequency response.
895
896 The filter accepts the following options:
897
898 @table @option
899 @item level_in
900 Set input gain.
901
902 @item level_out
903 Set output gain.
904
905 @item mode
906 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
907 use @code{production} mode. Default is @code{reproduction} mode.
908
909 @item type
910 Set filter type. Selects medium. Can be one of the following:
911
912 @table @option
913 @item col
914 select Columbia.
915 @item emi
916 select EMI.
917 @item bsi
918 select BSI (78RPM).
919 @item riaa
920 select RIAA.
921 @item cd
922 select Compact Disc (CD).
923 @item 50fm
924 select 50µs (FM).
925 @item 75fm
926 select 75µs (FM).
927 @item 50kf
928 select 50µs (FM-KF).
929 @item 75kf
930 select 75µs (FM-KF).
931 @end table
932 @end table
933
934 @subsection Commands
935
936 This filter supports the all above options as @ref{commands}.
937
938 @section aeval
939
940 Modify an audio signal according to the specified expressions.
941
942 This filter accepts one or more expressions (one for each channel),
943 which are evaluated and used to modify a corresponding audio signal.
944
945 It accepts the following parameters:
946
947 @table @option
948 @item exprs
949 Set the '|'-separated expressions list for each separate channel. If
950 the number of input channels is greater than the number of
951 expressions, the last specified expression is used for the remaining
952 output channels.
953
954 @item channel_layout, c
955 Set output channel layout. If not specified, the channel layout is
956 specified by the number of expressions. If set to @samp{same}, it will
957 use by default the same input channel layout.
958 @end table
959
960 Each expression in @var{exprs} can contain the following constants and functions:
961
962 @table @option
963 @item ch
964 channel number of the current expression
965
966 @item n
967 number of the evaluated sample, starting from 0
968
969 @item s
970 sample rate
971
972 @item t
973 time of the evaluated sample expressed in seconds
974
975 @item nb_in_channels
976 @item nb_out_channels
977 input and output number of channels
978
979 @item val(CH)
980 the value of input channel with number @var{CH}
981 @end table
982
983 Note: this filter is slow. For faster processing you should use a
984 dedicated filter.
985
986 @subsection Examples
987
988 @itemize
989 @item
990 Half volume:
991 @example
992 aeval=val(ch)/2:c=same
993 @end example
994
995 @item
996 Invert phase of the second channel:
997 @example
998 aeval=val(0)|-val(1)
999 @end example
1000 @end itemize
1001
1002 @anchor{afade}
1003 @section afade
1004
1005 Apply fade-in/out effect to input audio.
1006
1007 A description of the accepted parameters follows.
1008
1009 @table @option
1010 @item type, t
1011 Specify the effect type, can be either @code{in} for fade-in, or
1012 @code{out} for a fade-out effect. Default is @code{in}.
1013
1014 @item start_sample, ss
1015 Specify the number of the start sample for starting to apply the fade
1016 effect. Default is 0.
1017
1018 @item nb_samples, ns
1019 Specify the number of samples for which the fade effect has to last. At
1020 the end of the fade-in effect the output audio will have the same
1021 volume as the input audio, at the end of the fade-out transition
1022 the output audio will be silence. Default is 44100.
1023
1024 @item start_time, st
1025 Specify the start time of the fade effect. Default is 0.
1026 The value must be specified as a time duration; see
1027 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1028 for the accepted syntax.
1029 If set this option is used instead of @var{start_sample}.
1030
1031 @item duration, d
1032 Specify the duration of the fade effect. See
1033 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1034 for the accepted syntax.
1035 At the end of the fade-in effect the output audio will have the same
1036 volume as the input audio, at the end of the fade-out transition
1037 the output audio will be silence.
1038 By default the duration is determined by @var{nb_samples}.
1039 If set this option is used instead of @var{nb_samples}.
1040
1041 @item curve
1042 Set curve for fade transition.
1043
1044 It accepts the following values:
1045 @table @option
1046 @item tri
1047 select triangular, linear slope (default)
1048 @item qsin
1049 select quarter of sine wave
1050 @item hsin
1051 select half of sine wave
1052 @item esin
1053 select exponential sine wave
1054 @item log
1055 select logarithmic
1056 @item ipar
1057 select inverted parabola
1058 @item qua
1059 select quadratic
1060 @item cub
1061 select cubic
1062 @item squ
1063 select square root
1064 @item cbr
1065 select cubic root
1066 @item par
1067 select parabola
1068 @item exp
1069 select exponential
1070 @item iqsin
1071 select inverted quarter of sine wave
1072 @item ihsin
1073 select inverted half of sine wave
1074 @item dese
1075 select double-exponential seat
1076 @item desi
1077 select double-exponential sigmoid
1078 @item losi
1079 select logistic sigmoid
1080 @item sinc
1081 select sine cardinal function
1082 @item isinc
1083 select inverted sine cardinal function
1084 @item nofade
1085 no fade applied
1086 @end table
1087 @end table
1088
1089 @subsection Commands
1090
1091 This filter supports the all above options as @ref{commands}.
1092
1093 @subsection Examples
1094
1095 @itemize
1096 @item
1097 Fade in first 15 seconds of audio:
1098 @example
1099 afade=t=in:ss=0:d=15
1100 @end example
1101
1102 @item
1103 Fade out last 25 seconds of a 900 seconds audio:
1104 @example
1105 afade=t=out:st=875:d=25
1106 @end example
1107 @end itemize
1108
1109 @section afftdn
1110 Denoise audio samples with FFT.
1111
1112 A description of the accepted parameters follows.
1113
1114 @table @option
1115 @item nr
1116 Set the noise reduction in dB, allowed range is 0.01 to 97.
1117 Default value is 12 dB.
1118
1119 @item nf
1120 Set the noise floor in dB, allowed range is -80 to -20.
1121 Default value is -50 dB.
1122
1123 @item nt
1124 Set the noise type.
1125
1126 It accepts the following values:
1127 @table @option
1128 @item w
1129 Select white noise.
1130
1131 @item v
1132 Select vinyl noise.
1133
1134 @item s
1135 Select shellac noise.
1136
1137 @item c
1138 Select custom noise, defined in @code{bn} option.
1139
1140 Default value is white noise.
1141 @end table
1142
1143 @item bn
1144 Set custom band noise for every one of 15 bands.
1145 Bands are separated by ' ' or '|'.
1146
1147 @item rf
1148 Set the residual floor in dB, allowed range is -80 to -20.
1149 Default value is -38 dB.
1150
1151 @item tn
1152 Enable noise tracking. By default is disabled.
1153 With this enabled, noise floor is automatically adjusted.
1154
1155 @item tr
1156 Enable residual tracking. By default is disabled.
1157
1158 @item om
1159 Set the output mode.
1160
1161 It accepts the following values:
1162 @table @option
1163 @item i
1164 Pass input unchanged.
1165
1166 @item o
1167 Pass noise filtered out.
1168
1169 @item n
1170 Pass only noise.
1171
1172 Default value is @var{o}.
1173 @end table
1174 @end table
1175
1176 @subsection Commands
1177
1178 This filter supports the following commands:
1179 @table @option
1180 @item sample_noise, sn
1181 Start or stop measuring noise profile.
1182 Syntax for the command is : "start" or "stop" string.
1183 After measuring noise profile is stopped it will be
1184 automatically applied in filtering.
1185
1186 @item noise_reduction, nr
1187 Change noise reduction. Argument is single float number.
1188 Syntax for the command is : "@var{noise_reduction}"
1189
1190 @item noise_floor, nf
1191 Change noise floor. Argument is single float number.
1192 Syntax for the command is : "@var{noise_floor}"
1193
1194 @item output_mode, om
1195 Change output mode operation.
1196 Syntax for the command is : "i", "o" or "n" string.
1197 @end table
1198
1199 @section afftfilt
1200 Apply arbitrary expressions to samples in frequency domain.
1201
1202 @table @option
1203 @item real
1204 Set frequency domain real expression for each separate channel separated
1205 by '|'. Default is "re".
1206 If the number of input channels is greater than the number of
1207 expressions, the last specified expression is used for the remaining
1208 output channels.
1209
1210 @item imag
1211 Set frequency domain imaginary expression for each separate channel
1212 separated by '|'. Default is "im".
1213
1214 Each expression in @var{real} and @var{imag} can contain the following
1215 constants and functions:
1216
1217 @table @option
1218 @item sr
1219 sample rate
1220
1221 @item b
1222 current frequency bin number
1223
1224 @item nb
1225 number of available bins
1226
1227 @item ch
1228 channel number of the current expression
1229
1230 @item chs
1231 number of channels
1232
1233 @item pts
1234 current frame pts
1235
1236 @item re
1237 current real part of frequency bin of current channel
1238
1239 @item im
1240 current imaginary part of frequency bin of current channel
1241
1242 @item real(b, ch)
1243 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1244
1245 @item imag(b, ch)
1246 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1247 @end table
1248
1249 @item win_size
1250 Set window size. Allowed range is from 16 to 131072.
1251 Default is @code{4096}
1252
1253 @item win_func
1254 Set window function. Default is @code{hann}.
1255
1256 @item overlap
1257 Set window overlap. If set to 1, the recommended overlap for selected
1258 window function will be picked. Default is @code{0.75}.
1259 @end table
1260
1261 @subsection Examples
1262
1263 @itemize
1264 @item
1265 Leave almost only low frequencies in audio:
1266 @example
1267 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1268 @end example
1269
1270 @item
1271 Apply robotize effect:
1272 @example
1273 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1274 @end example
1275
1276 @item
1277 Apply whisper effect:
1278 @example
1279 afftfilt="real='hypot(re,im)*cos((random(0)*2-1)*2*3.14)':imag='hypot(re,im)*sin((random(1)*2-1)*2*3.14)':win_size=128:overlap=0.8"
1280 @end example
1281 @end itemize
1282
1283 @anchor{afir}
1284 @section afir
1285
1286 Apply an arbitrary Finite Impulse Response filter.
1287
1288 This filter is designed for applying long FIR filters,
1289 up to 60 seconds long.
1290
1291 It can be used as component for digital crossover filters,
1292 room equalization, cross talk cancellation, wavefield synthesis,
1293 auralization, ambiophonics, ambisonics and spatialization.
1294
1295 This filter uses the streams higher than first one as FIR coefficients.
1296 If the non-first stream holds a single channel, it will be used
1297 for all input channels in the first stream, otherwise
1298 the number of channels in the non-first stream must be same as
1299 the number of channels in the first stream.
1300
1301 It accepts the following parameters:
1302
1303 @table @option
1304 @item dry
1305 Set dry gain. This sets input gain.
1306
1307 @item wet
1308 Set wet gain. This sets final output gain.
1309
1310 @item length
1311 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1312
1313 @item gtype
1314 Enable applying gain measured from power of IR.
1315
1316 Set which approach to use for auto gain measurement.
1317
1318 @table @option
1319 @item none
1320 Do not apply any gain.
1321
1322 @item peak
1323 select peak gain, very conservative approach. This is default value.
1324
1325 @item dc
1326 select DC gain, limited application.
1327
1328 @item gn
1329 select gain to noise approach, this is most popular one.
1330 @end table
1331
1332 @item irgain
1333 Set gain to be applied to IR coefficients before filtering.
1334 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1335
1336 @item irfmt
1337 Set format of IR stream. Can be @code{mono} or @code{input}.
1338 Default is @code{input}.
1339
1340 @item maxir
1341 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1342 Allowed range is 0.1 to 60 seconds.
1343
1344 @item response
1345 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1346 By default it is disabled.
1347
1348 @item channel
1349 Set for which IR channel to display frequency response. By default is first channel
1350 displayed. This option is used only when @var{response} is enabled.
1351
1352 @item size
1353 Set video stream size. This option is used only when @var{response} is enabled.
1354
1355 @item rate
1356 Set video stream frame rate. This option is used only when @var{response} is enabled.
1357
1358 @item minp
1359 Set minimal partition size used for convolution. Default is @var{8192}.
1360 Allowed range is from @var{1} to @var{32768}.
1361 Lower values decreases latency at cost of higher CPU usage.
1362
1363 @item maxp
1364 Set maximal partition size used for convolution. Default is @var{8192}.
1365 Allowed range is from @var{8} to @var{32768}.
1366 Lower values may increase CPU usage.
1367
1368 @item nbirs
1369 Set number of input impulse responses streams which will be switchable at runtime.
1370 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1371
1372 @item ir
1373 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1374 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1375 This option can be changed at runtime via @ref{commands}.
1376 @end table
1377
1378 @subsection Examples
1379
1380 @itemize
1381 @item
1382 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1383 @example
1384 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1385 @end example
1386 @end itemize
1387
1388 @anchor{aformat}
1389 @section aformat
1390
1391 Set output format constraints for the input audio. The framework will
1392 negotiate the most appropriate format to minimize conversions.
1393
1394 It accepts the following parameters:
1395 @table @option
1396
1397 @item sample_fmts, f
1398 A '|'-separated list of requested sample formats.
1399
1400 @item sample_rates, r
1401 A '|'-separated list of requested sample rates.
1402
1403 @item channel_layouts, cl
1404 A '|'-separated list of requested channel layouts.
1405
1406 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1407 for the required syntax.
1408 @end table
1409
1410 If a parameter is omitted, all values are allowed.
1411
1412 Force the output to either unsigned 8-bit or signed 16-bit stereo
1413 @example
1414 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1415 @end example
1416
1417 @section afreqshift
1418 Apply frequency shift to input audio samples.
1419
1420 The filter accepts the following options:
1421
1422 @table @option
1423 @item shift
1424 Specify frequency shift. Allowed range is -INT_MAX to INT_MAX.
1425 Default value is 0.0.
1426
1427 @item level
1428 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
1429 Default value is 1.0.
1430 @end table
1431
1432 @subsection Commands
1433
1434 This filter supports the all above options as @ref{commands}.
1435
1436 @section agate
1437
1438 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1439 processing reduces disturbing noise between useful signals.
1440
1441 Gating is done by detecting the volume below a chosen level @var{threshold}
1442 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1443 floor is set via @var{range}. Because an exact manipulation of the signal
1444 would cause distortion of the waveform the reduction can be levelled over
1445 time. This is done by setting @var{attack} and @var{release}.
1446
1447 @var{attack} determines how long the signal has to fall below the threshold
1448 before any reduction will occur and @var{release} sets the time the signal
1449 has to rise above the threshold to reduce the reduction again.
1450 Shorter signals than the chosen attack time will be left untouched.
1451
1452 @table @option
1453 @item level_in
1454 Set input level before filtering.
1455 Default is 1. Allowed range is from 0.015625 to 64.
1456
1457 @item mode
1458 Set the mode of operation. Can be @code{upward} or @code{downward}.
1459 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1460 will be amplified, expanding dynamic range in upward direction.
1461 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1462
1463 @item range
1464 Set the level of gain reduction when the signal is below the threshold.
1465 Default is 0.06125. Allowed range is from 0 to 1.
1466 Setting this to 0 disables reduction and then filter behaves like expander.
1467
1468 @item threshold
1469 If a signal rises above this level the gain reduction is released.
1470 Default is 0.125. Allowed range is from 0 to 1.
1471
1472 @item ratio
1473 Set a ratio by which the signal is reduced.
1474 Default is 2. Allowed range is from 1 to 9000.
1475
1476 @item attack
1477 Amount of milliseconds the signal has to rise above the threshold before gain
1478 reduction stops.
1479 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1480
1481 @item release
1482 Amount of milliseconds the signal has to fall below the threshold before the
1483 reduction is increased again. Default is 250 milliseconds.
1484 Allowed range is from 0.01 to 9000.
1485
1486 @item makeup
1487 Set amount of amplification of signal after processing.
1488 Default is 1. Allowed range is from 1 to 64.
1489
1490 @item knee
1491 Curve the sharp knee around the threshold to enter gain reduction more softly.
1492 Default is 2.828427125. Allowed range is from 1 to 8.
1493
1494 @item detection
1495 Choose if exact signal should be taken for detection or an RMS like one.
1496 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1497
1498 @item link
1499 Choose if the average level between all channels or the louder channel affects
1500 the reduction.
1501 Default is @code{average}. Can be @code{average} or @code{maximum}.
1502 @end table
1503
1504 @subsection Commands
1505
1506 This filter supports the all above options as @ref{commands}.
1507
1508 @section aiir
1509
1510 Apply an arbitrary Infinite Impulse Response filter.
1511
1512 It accepts the following parameters:
1513
1514 @table @option
1515 @item zeros, z
1516 Set B/numerator/zeros/reflection coefficients.
1517
1518 @item poles, p
1519 Set A/denominator/poles/ladder coefficients.
1520
1521 @item gains, k
1522 Set channels gains.
1523
1524 @item dry_gain
1525 Set input gain.
1526
1527 @item wet_gain
1528 Set output gain.
1529
1530 @item format, f
1531 Set coefficients format.
1532
1533 @table @samp
1534 @item ll
1535 lattice-ladder function
1536 @item sf
1537 analog transfer function
1538 @item tf
1539 digital transfer function
1540 @item zp
1541 Z-plane zeros/poles, cartesian (default)
1542 @item pr
1543 Z-plane zeros/poles, polar radians
1544 @item pd
1545 Z-plane zeros/poles, polar degrees
1546 @item sp
1547 S-plane zeros/poles
1548 @end table
1549
1550 @item process, r
1551 Set type of processing.
1552
1553 @table @samp
1554 @item d
1555 direct processing
1556 @item s
1557 serial processing
1558 @item p
1559 parallel processing
1560 @end table
1561
1562 @item precision, e
1563 Set filtering precision.
1564
1565 @table @samp
1566 @item dbl
1567 double-precision floating-point (default)
1568 @item flt
1569 single-precision floating-point
1570 @item i32
1571 32-bit integers
1572 @item i16
1573 16-bit integers
1574 @end table
1575
1576 @item normalize, n
1577 Normalize filter coefficients, by default is enabled.
1578 Enabling it will normalize magnitude response at DC to 0dB.
1579
1580 @item mix
1581 How much to use filtered signal in output. Default is 1.
1582 Range is between 0 and 1.
1583
1584 @item response
1585 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1586 By default it is disabled.
1587
1588 @item channel
1589 Set for which IR channel to display frequency response. By default is first channel
1590 displayed. This option is used only when @var{response} is enabled.
1591
1592 @item size
1593 Set video stream size. This option is used only when @var{response} is enabled.
1594 @end table
1595
1596 Coefficients in @code{tf} and @code{sf} format are separated by spaces and are in ascending
1597 order.
1598
1599 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1600 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1601 imaginary unit.
1602
1603 Different coefficients and gains can be provided for every channel, in such case
1604 use '|' to separate coefficients or gains. Last provided coefficients will be
1605 used for all remaining channels.
1606
1607 @subsection Examples
1608
1609 @itemize
1610 @item
1611 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1612 @example
1613 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1614 @end example
1615
1616 @item
1617 Same as above but in @code{zp} format:
1618 @example
1619 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1620 @end example
1621
1622 @item
1623 Apply 3-rd order analog normalized Butterworth low-pass filter, using analog transfer function format:
1624 @example
1625 aiir=z=1.3057 0 0 0:p=1.3057 2.3892 2.1860 1:f=sf:r=d
1626 @end example
1627 @end itemize
1628
1629 @section alimiter
1630
1631 The limiter prevents an input signal from rising over a desired threshold.
1632 This limiter uses lookahead technology to prevent your signal from distorting.
1633 It means that there is a small delay after the signal is processed. Keep in mind
1634 that the delay it produces is the attack time you set.
1635
1636 The filter accepts the following options:
1637
1638 @table @option
1639 @item level_in
1640 Set input gain. Default is 1.
1641
1642 @item level_out
1643 Set output gain. Default is 1.
1644
1645 @item limit
1646 Don't let signals above this level pass the limiter. Default is 1.
1647
1648 @item attack
1649 The limiter will reach its attenuation level in this amount of time in
1650 milliseconds. Default is 5 milliseconds.
1651
1652 @item release
1653 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1654 Default is 50 milliseconds.
1655
1656 @item asc
1657 When gain reduction is always needed ASC takes care of releasing to an
1658 average reduction level rather than reaching a reduction of 0 in the release
1659 time.
1660
1661 @item asc_level
1662 Select how much the release time is affected by ASC, 0 means nearly no changes
1663 in release time while 1 produces higher release times.
1664
1665 @item level
1666 Auto level output signal. Default is enabled.
1667 This normalizes audio back to 0dB if enabled.
1668 @end table
1669
1670 Depending on picked setting it is recommended to upsample input 2x or 4x times
1671 with @ref{aresample} before applying this filter.
1672
1673 @section allpass
1674
1675 Apply a two-pole all-pass filter with central frequency (in Hz)
1676 @var{frequency}, and filter-width @var{width}.
1677 An all-pass filter changes the audio's frequency to phase relationship
1678 without changing its frequency to amplitude relationship.
1679
1680 The filter accepts the following options:
1681
1682 @table @option
1683 @item frequency, f
1684 Set frequency in Hz.
1685
1686 @item width_type, t
1687 Set method to specify band-width of filter.
1688 @table @option
1689 @item h
1690 Hz
1691 @item q
1692 Q-Factor
1693 @item o
1694 octave
1695 @item s
1696 slope
1697 @item k
1698 kHz
1699 @end table
1700
1701 @item width, w
1702 Specify the band-width of a filter in width_type units.
1703
1704 @item mix, m
1705 How much to use filtered signal in output. Default is 1.
1706 Range is between 0 and 1.
1707
1708 @item channels, c
1709 Specify which channels to filter, by default all available are filtered.
1710
1711 @item normalize, n
1712 Normalize biquad coefficients, by default is disabled.
1713 Enabling it will normalize magnitude response at DC to 0dB.
1714
1715 @item order, o
1716 Set the filter order, can be 1 or 2. Default is 2.
1717
1718 @item transform, a
1719 Set transform type of IIR filter.
1720 @table @option
1721 @item di
1722 @item dii
1723 @item tdii
1724 @item latt
1725 @end table
1726
1727 @item precision, r
1728 Set precison of filtering.
1729 @table @option
1730 @item auto
1731 Pick automatic sample format depending on surround filters.
1732 @item s16
1733 Always use signed 16-bit.
1734 @item s32
1735 Always use signed 32-bit.
1736 @item f32
1737 Always use float 32-bit.
1738 @item f64
1739 Always use float 64-bit.
1740 @end table
1741 @end table
1742
1743 @subsection Commands
1744
1745 This filter supports the following commands:
1746 @table @option
1747 @item frequency, f
1748 Change allpass frequency.
1749 Syntax for the command is : "@var{frequency}"
1750
1751 @item width_type, t
1752 Change allpass width_type.
1753 Syntax for the command is : "@var{width_type}"
1754
1755 @item width, w
1756 Change allpass width.
1757 Syntax for the command is : "@var{width}"
1758
1759 @item mix, m
1760 Change allpass mix.
1761 Syntax for the command is : "@var{mix}"
1762 @end table
1763
1764 @section aloop
1765
1766 Loop audio samples.
1767
1768 The filter accepts the following options:
1769
1770 @table @option
1771 @item loop
1772 Set the number of loops. Setting this value to -1 will result in infinite loops.
1773 Default is 0.
1774
1775 @item size
1776 Set maximal number of samples. Default is 0.
1777
1778 @item start
1779 Set first sample of loop. Default is 0.
1780 @end table
1781
1782 @anchor{amerge}
1783 @section amerge
1784
1785 Merge two or more audio streams into a single multi-channel stream.
1786
1787 The filter accepts the following options:
1788
1789 @table @option
1790
1791 @item inputs
1792 Set the number of inputs. Default is 2.
1793
1794 @end table
1795
1796 If the channel layouts of the inputs are disjoint, and therefore compatible,
1797 the channel layout of the output will be set accordingly and the channels
1798 will be reordered as necessary. If the channel layouts of the inputs are not
1799 disjoint, the output will have all the channels of the first input then all
1800 the channels of the second input, in that order, and the channel layout of
1801 the output will be the default value corresponding to the total number of
1802 channels.
1803
1804 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1805 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1806 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1807 first input, b1 is the first channel of the second input).
1808
1809 On the other hand, if both input are in stereo, the output channels will be
1810 in the default order: a1, a2, b1, b2, and the channel layout will be
1811 arbitrarily set to 4.0, which may or may not be the expected value.
1812
1813 All inputs must have the same sample rate, and format.
1814
1815 If inputs do not have the same duration, the output will stop with the
1816 shortest.
1817
1818 @subsection Examples
1819
1820 @itemize
1821 @item
1822 Merge two mono files into a stereo stream:
1823 @example
1824 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1825 @end example
1826
1827 @item
1828 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1829 @example
1830 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
1831 @end example
1832 @end itemize
1833
1834 @section amix
1835
1836 Mixes multiple audio inputs into a single output.
1837
1838 Note that this filter only supports float samples (the @var{amerge}
1839 and @var{pan} audio filters support many formats). If the @var{amix}
1840 input has integer samples then @ref{aresample} will be automatically
1841 inserted to perform the conversion to float samples.
1842
1843 For example
1844 @example
1845 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1846 @end example
1847 will mix 3 input audio streams to a single output with the same duration as the
1848 first input and a dropout transition time of 3 seconds.
1849
1850 It accepts the following parameters:
1851 @table @option
1852
1853 @item inputs
1854 The number of inputs. If unspecified, it defaults to 2.
1855
1856 @item duration
1857 How to determine the end-of-stream.
1858 @table @option
1859
1860 @item longest
1861 The duration of the longest input. (default)
1862
1863 @item shortest
1864 The duration of the shortest input.
1865
1866 @item first
1867 The duration of the first input.
1868
1869 @end table
1870
1871 @item dropout_transition
1872 The transition time, in seconds, for volume renormalization when an input
1873 stream ends. The default value is 2 seconds.
1874
1875 @item weights
1876 Specify weight of each input audio stream as sequence.
1877 Each weight is separated by space. By default all inputs have same weight.
1878 @end table
1879
1880 @subsection Commands
1881
1882 This filter supports the following commands:
1883 @table @option
1884 @item weights
1885 Syntax is same as option with same name.
1886 @end table
1887
1888 @section amultiply
1889
1890 Multiply first audio stream with second audio stream and store result
1891 in output audio stream. Multiplication is done by multiplying each
1892 sample from first stream with sample at same position from second stream.
1893
1894 With this element-wise multiplication one can create amplitude fades and
1895 amplitude modulations.
1896
1897 @section anequalizer
1898
1899 High-order parametric multiband equalizer for each channel.
1900
1901 It accepts the following parameters:
1902 @table @option
1903 @item params
1904
1905 This option string is in format:
1906 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1907 Each equalizer band is separated by '|'.
1908
1909 @table @option
1910 @item chn
1911 Set channel number to which equalization will be applied.
1912 If input doesn't have that channel the entry is ignored.
1913
1914 @item f
1915 Set central frequency for band.
1916 If input doesn't have that frequency the entry is ignored.
1917
1918 @item w
1919 Set band width in Hertz.
1920
1921 @item g
1922 Set band gain in dB.
1923
1924 @item t
1925 Set filter type for band, optional, can be:
1926
1927 @table @samp
1928 @item 0
1929 Butterworth, this is default.
1930
1931 @item 1
1932 Chebyshev type 1.
1933
1934 @item 2
1935 Chebyshev type 2.
1936 @end table
1937 @end table
1938
1939 @item curves
1940 With this option activated frequency response of anequalizer is displayed
1941 in video stream.
1942
1943 @item size
1944 Set video stream size. Only useful if curves option is activated.
1945
1946 @item mgain
1947 Set max gain that will be displayed. Only useful if curves option is activated.
1948 Setting this to a reasonable value makes it possible to display gain which is derived from
1949 neighbour bands which are too close to each other and thus produce higher gain
1950 when both are activated.
1951
1952 @item fscale
1953 Set frequency scale used to draw frequency response in video output.
1954 Can be linear or logarithmic. Default is logarithmic.
1955
1956 @item colors
1957 Set color for each channel curve which is going to be displayed in video stream.
1958 This is list of color names separated by space or by '|'.
1959 Unrecognised or missing colors will be replaced by white color.
1960 @end table
1961
1962 @subsection Examples
1963
1964 @itemize
1965 @item
1966 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1967 for first 2 channels using Chebyshev type 1 filter:
1968 @example
1969 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1970 @end example
1971 @end itemize
1972
1973 @subsection Commands
1974
1975 This filter supports the following commands:
1976 @table @option
1977 @item change
1978 Alter existing filter parameters.
1979 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1980
1981 @var{fN} is existing filter number, starting from 0, if no such filter is available
1982 error is returned.
1983 @var{freq} set new frequency parameter.
1984 @var{width} set new width parameter in Hertz.
1985 @var{gain} set new gain parameter in dB.
1986
1987 Full filter invocation with asendcmd may look like this:
1988 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1989 @end table
1990
1991 @section anlmdn
1992
1993 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1994
1995 Each sample is adjusted by looking for other samples with similar contexts. This
1996 context similarity is defined by comparing their surrounding patches of size
1997 @option{p}. Patches are searched in an area of @option{r} around the sample.
1998
1999 The filter accepts the following options:
2000
2001 @table @option
2002 @item s
2003 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
2004
2005 @item p
2006 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
2007 Default value is 2 milliseconds.
2008
2009 @item r
2010 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
2011 Default value is 6 milliseconds.
2012
2013 @item o
2014 Set the output mode.
2015
2016 It accepts the following values:
2017 @table @option
2018 @item i
2019 Pass input unchanged.
2020
2021 @item o
2022 Pass noise filtered out.
2023
2024 @item n
2025 Pass only noise.
2026
2027 Default value is @var{o}.
2028 @end table
2029
2030 @item m
2031 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
2032 @end table
2033
2034 @subsection Commands
2035
2036 This filter supports the all above options as @ref{commands}.
2037
2038 @section anlms
2039 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
2040
2041 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
2042 relate to producing the least mean square of the error signal (difference between the desired,
2043 2nd input audio stream and the actual signal, the 1st input audio stream).
2044
2045 A description of the accepted options follows.
2046
2047 @table @option
2048 @item order
2049 Set filter order.
2050
2051 @item mu
2052 Set filter mu.
2053
2054 @item eps
2055 Set the filter eps.
2056
2057 @item leakage
2058 Set the filter leakage.
2059
2060 @item out_mode
2061 It accepts the following values:
2062 @table @option
2063 @item i
2064 Pass the 1st input.
2065
2066 @item d
2067 Pass the 2nd input.
2068
2069 @item o
2070 Pass filtered samples.
2071
2072 @item n
2073 Pass difference between desired and filtered samples.
2074
2075 Default value is @var{o}.
2076 @end table
2077 @end table
2078
2079 @subsection Examples
2080
2081 @itemize
2082 @item
2083 One of many usages of this filter is noise reduction, input audio is filtered
2084 with same samples that are delayed by fixed amount, one such example for stereo audio is:
2085 @example
2086 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
2087 @end example
2088 @end itemize
2089
2090 @subsection Commands
2091
2092 This filter supports the same commands as options, excluding option @code{order}.
2093
2094 @section anull
2095
2096 Pass the audio source unchanged to the output.
2097
2098 @section apad
2099
2100 Pad the end of an audio stream with silence.
2101
2102 This can be used together with @command{ffmpeg} @option{-shortest} to
2103 extend audio streams to the same length as the video stream.
2104
2105 A description of the accepted options follows.
2106
2107 @table @option
2108 @item packet_size
2109 Set silence packet size. Default value is 4096.
2110
2111 @item pad_len
2112 Set the number of samples of silence to add to the end. After the
2113 value is reached, the stream is terminated. This option is mutually
2114 exclusive with @option{whole_len}.
2115
2116 @item whole_len
2117 Set the minimum total number of samples in the output audio stream. If
2118 the value is longer than the input audio length, silence is added to
2119 the end, until the value is reached. This option is mutually exclusive
2120 with @option{pad_len}.
2121
2122 @item pad_dur
2123 Specify the duration of samples of silence to add. See
2124 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2125 for the accepted syntax. Used only if set to non-zero value.
2126
2127 @item whole_dur
2128 Specify the minimum total duration in the output audio stream. See
2129 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2130 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
2131 the input audio length, silence is added to the end, until the value is reached.
2132 This option is mutually exclusive with @option{pad_dur}
2133 @end table
2134
2135 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
2136 nor @option{whole_dur} option is set, the filter will add silence to the end of
2137 the input stream indefinitely.
2138
2139 @subsection Examples
2140
2141 @itemize
2142 @item
2143 Add 1024 samples of silence to the end of the input:
2144 @example
2145 apad=pad_len=1024
2146 @end example
2147
2148 @item
2149 Make sure the audio output will contain at least 10000 samples, pad
2150 the input with silence if required:
2151 @example
2152 apad=whole_len=10000
2153 @end example
2154
2155 @item
2156 Use @command{ffmpeg} to pad the audio input with silence, so that the
2157 video stream will always result the shortest and will be converted
2158 until the end in the output file when using the @option{shortest}
2159 option:
2160 @example
2161 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
2162 @end example
2163 @end itemize
2164
2165 @section aphaser
2166 Add a phasing effect to the input audio.
2167
2168 A phaser filter creates series of peaks and troughs in the frequency spectrum.
2169 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
2170
2171 A description of the accepted parameters follows.
2172
2173 @table @option
2174 @item in_gain
2175 Set input gain. Default is 0.4.
2176
2177 @item out_gain
2178 Set output gain. Default is 0.74
2179
2180 @item delay
2181 Set delay in milliseconds. Default is 3.0.
2182
2183 @item decay
2184 Set decay. Default is 0.4.
2185
2186 @item speed
2187 Set modulation speed in Hz. Default is 0.5.
2188
2189 @item type
2190 Set modulation type. Default is triangular.
2191
2192 It accepts the following values:
2193 @table @samp
2194 @item triangular, t
2195 @item sinusoidal, s
2196 @end table
2197 @end table
2198
2199 @section aphaseshift
2200 Apply phase shift to input audio samples.
2201
2202 The filter accepts the following options:
2203
2204 @table @option
2205 @item shift
2206 Specify phase shift. Allowed range is from -1.0 to 1.0.
2207 Default value is 0.0.
2208
2209 @item level
2210 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
2211 Default value is 1.0.
2212 @end table
2213
2214 @subsection Commands
2215
2216 This filter supports the all above options as @ref{commands}.
2217
2218 @section apulsator
2219
2220 Audio pulsator is something between an autopanner and a tremolo.
2221 But it can produce funny stereo effects as well. Pulsator changes the volume
2222 of the left and right channel based on a LFO (low frequency oscillator) with
2223 different waveforms and shifted phases.
2224 This filter have the ability to define an offset between left and right
2225 channel. An offset of 0 means that both LFO shapes match each other.
2226 The left and right channel are altered equally - a conventional tremolo.
2227 An offset of 50% means that the shape of the right channel is exactly shifted
2228 in phase (or moved backwards about half of the frequency) - pulsator acts as
2229 an autopanner. At 1 both curves match again. Every setting in between moves the
2230 phase shift gapless between all stages and produces some "bypassing" sounds with
2231 sine and triangle waveforms. The more you set the offset near 1 (starting from
2232 the 0.5) the faster the signal passes from the left to the right speaker.
2233
2234 The filter accepts the following options:
2235
2236 @table @option
2237 @item level_in
2238 Set input gain. By default it is 1. Range is [0.015625 - 64].
2239
2240 @item level_out
2241 Set output gain. By default it is 1. Range is [0.015625 - 64].
2242
2243 @item mode
2244 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2245 sawup or sawdown. Default is sine.
2246
2247 @item amount
2248 Set modulation. Define how much of original signal is affected by the LFO.
2249
2250 @item offset_l
2251 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2252
2253 @item offset_r
2254 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2255
2256 @item width
2257 Set pulse width. Default is 1. Allowed range is [0 - 2].
2258
2259 @item timing
2260 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2261
2262 @item bpm
2263 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2264 is set to bpm.
2265
2266 @item ms
2267 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2268 is set to ms.
2269
2270 @item hz
2271 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2272 if timing is set to hz.
2273 @end table
2274
2275 @anchor{aresample}
2276 @section aresample
2277
2278 Resample the input audio to the specified parameters, using the
2279 libswresample library. If none are specified then the filter will
2280 automatically convert between its input and output.
2281
2282 This filter is also able to stretch/squeeze the audio data to make it match
2283 the timestamps or to inject silence / cut out audio to make it match the
2284 timestamps, do a combination of both or do neither.
2285
2286 The filter accepts the syntax
2287 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2288 expresses a sample rate and @var{resampler_options} is a list of
2289 @var{key}=@var{value} pairs, separated by ":". See the
2290 @ref{Resampler Options,,"Resampler Options" section in the
2291 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2292 for the complete list of supported options.
2293
2294 @subsection Examples
2295
2296 @itemize
2297 @item
2298 Resample the input audio to 44100Hz:
2299 @example
2300 aresample=44100
2301 @end example
2302
2303 @item
2304 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2305 samples per second compensation:
2306 @example
2307 aresample=async=1000
2308 @end example
2309 @end itemize
2310
2311 @section areverse
2312
2313 Reverse an audio clip.
2314
2315 Warning: This filter requires memory to buffer the entire clip, so trimming
2316 is suggested.
2317
2318 @subsection Examples
2319
2320 @itemize
2321 @item
2322 Take the first 5 seconds of a clip, and reverse it.
2323 @example
2324 atrim=end=5,areverse
2325 @end example
2326 @end itemize
2327
2328 @section arnndn
2329
2330 Reduce noise from speech using Recurrent Neural Networks.
2331
2332 This filter accepts the following options:
2333
2334 @table @option
2335 @item model, m
2336 Set train model file to load. This option is always required.
2337
2338 @item mix
2339 Set how much to mix filtered samples into final output.
2340 Allowed range is from -1 to 1. Default value is 1.
2341 Negative values are special, they set how much to keep filtered noise
2342 in the final filter output. Set this option to -1 to hear actual
2343 noise removed from input signal.
2344 @end table
2345
2346 @section asetnsamples
2347
2348 Set the number of samples per each output audio frame.
2349
2350 The last output packet may contain a different number of samples, as
2351 the filter will flush all the remaining samples when the input audio
2352 signals its end.
2353
2354 The filter accepts the following options:
2355
2356 @table @option
2357
2358 @item nb_out_samples, n
2359 Set the number of frames per each output audio frame. The number is
2360 intended as the number of samples @emph{per each channel}.
2361 Default value is 1024.
2362
2363 @item pad, p
2364 If set to 1, the filter will pad the last audio frame with zeroes, so
2365 that the last frame will contain the same number of samples as the
2366 previous ones. Default value is 1.
2367 @end table
2368
2369 For example, to set the number of per-frame samples to 1234 and
2370 disable padding for the last frame, use:
2371 @example
2372 asetnsamples=n=1234:p=0
2373 @end example
2374
2375 @section asetrate
2376
2377 Set the sample rate without altering the PCM data.
2378 This will result in a change of speed and pitch.
2379
2380 The filter accepts the following options:
2381
2382 @table @option
2383 @item sample_rate, r
2384 Set the output sample rate. Default is 44100 Hz.
2385 @end table
2386
2387 @section ashowinfo
2388
2389 Show a line containing various information for each input audio frame.
2390 The input audio is not modified.
2391
2392 The shown line contains a sequence of key/value pairs of the form
2393 @var{key}:@var{value}.
2394
2395 The following values are shown in the output:
2396
2397 @table @option
2398 @item n
2399 The (sequential) number of the input frame, starting from 0.
2400
2401 @item pts
2402 The presentation timestamp of the input frame, in time base units; the time base
2403 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2404
2405 @item pts_time
2406 The presentation timestamp of the input frame in seconds.
2407
2408 @item pos
2409 position of the frame in the input stream, -1 if this information in
2410 unavailable and/or meaningless (for example in case of synthetic audio)
2411
2412 @item fmt
2413 The sample format.
2414
2415 @item chlayout
2416 The channel layout.
2417
2418 @item rate
2419 The sample rate for the audio frame.
2420
2421 @item nb_samples
2422 The number of samples (per channel) in the frame.
2423
2424 @item checksum
2425 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2426 audio, the data is treated as if all the planes were concatenated.
2427
2428 @item plane_checksums
2429 A list of Adler-32 checksums for each data plane.
2430 @end table
2431
2432 @section asoftclip
2433 Apply audio soft clipping.
2434
2435 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2436 along a smooth curve, rather than the abrupt shape of hard-clipping.
2437
2438 This filter accepts the following options:
2439
2440 @table @option
2441 @item type
2442 Set type of soft-clipping.
2443
2444 It accepts the following values:
2445 @table @option
2446 @item hard
2447 @item tanh
2448 @item atan
2449 @item cubic
2450 @item exp
2451 @item alg
2452 @item quintic
2453 @item sin
2454 @item erf
2455 @end table
2456
2457 @item threshold
2458 Set threshold from where to start clipping. Default value is 0dB or 1.
2459
2460 @item output
2461 Set gain applied to output. Default value is 0dB or 1.
2462
2463 @item param
2464 Set additional parameter which controls sigmoid function.
2465
2466 @item oversample
2467 Set oversampling factor.
2468 @end table
2469
2470 @subsection Commands
2471
2472 This filter supports the all above options as @ref{commands}.
2473
2474 @section asr
2475 Automatic Speech Recognition
2476
2477 This filter uses PocketSphinx for speech recognition. To enable
2478 compilation of this filter, you need to configure FFmpeg with
2479 @code{--enable-pocketsphinx}.
2480
2481 It accepts the following options:
2482
2483 @table @option
2484 @item rate
2485 Set sampling rate of input audio. Defaults is @code{16000}.
2486 This need to match speech models, otherwise one will get poor results.
2487
2488 @item hmm
2489 Set dictionary containing acoustic model files.
2490
2491 @item dict
2492 Set pronunciation dictionary.
2493
2494 @item lm
2495 Set language model file.
2496
2497 @item lmctl
2498 Set language model set.
2499
2500 @item lmname
2501 Set which language model to use.
2502
2503 @item logfn
2504 Set output for log messages.
2505 @end table
2506
2507 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2508
2509 @anchor{astats}
2510 @section astats
2511
2512 Display time domain statistical information about the audio channels.
2513 Statistics are calculated and displayed for each audio channel and,
2514 where applicable, an overall figure is also given.
2515
2516 It accepts the following option:
2517 @table @option
2518 @item length
2519 Short window length in seconds, used for peak and trough RMS measurement.
2520 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2521
2522 @item metadata
2523
2524 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2525 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2526 disabled.
2527
2528 Available keys for each channel are:
2529 DC_offset
2530 Min_level
2531 Max_level
2532 Min_difference
2533 Max_difference
2534 Mean_difference
2535 RMS_difference
2536 Peak_level
2537 RMS_peak
2538 RMS_trough
2539 Crest_factor
2540 Flat_factor
2541 Peak_count
2542 Noise_floor
2543 Noise_floor_count
2544 Bit_depth
2545 Dynamic_range
2546 Zero_crossings
2547 Zero_crossings_rate
2548 Number_of_NaNs
2549 Number_of_Infs
2550 Number_of_denormals
2551
2552 and for Overall:
2553 DC_offset
2554 Min_level
2555 Max_level
2556 Min_difference
2557 Max_difference
2558 Mean_difference
2559 RMS_difference
2560 Peak_level
2561 RMS_level
2562 RMS_peak
2563 RMS_trough
2564 Flat_factor
2565 Peak_count
2566 Noise_floor
2567 Noise_floor_count
2568 Bit_depth
2569 Number_of_samples
2570 Number_of_NaNs
2571 Number_of_Infs
2572 Number_of_denormals
2573
2574 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2575 this @code{lavfi.astats.Overall.Peak_count}.
2576
2577 For description what each key means read below.
2578
2579 @item reset
2580 Set number of frame after which stats are going to be recalculated.
2581 Default is disabled.
2582
2583 @item measure_perchannel
2584 Select the entries which need to be measured per channel. The metadata keys can
2585 be used as flags, default is @option{all} which measures everything.
2586 @option{none} disables all per channel measurement.
2587
2588 @item measure_overall
2589 Select the entries which need to be measured overall. The metadata keys can
2590 be used as flags, default is @option{all} which measures everything.
2591 @option{none} disables all overall measurement.
2592
2593 @end table
2594
2595 A description of each shown parameter follows:
2596
2597 @table @option
2598 @item DC offset
2599 Mean amplitude displacement from zero.
2600
2601 @item Min level
2602 Minimal sample level.
2603
2604 @item Max level
2605 Maximal sample level.
2606
2607 @item Min difference
2608 Minimal difference between two consecutive samples.
2609
2610 @item Max difference
2611 Maximal difference between two consecutive samples.
2612
2613 @item Mean difference
2614 Mean difference between two consecutive samples.
2615 The average of each difference between two consecutive samples.
2616
2617 @item RMS difference
2618 Root Mean Square difference between two consecutive samples.
2619
2620 @item Peak level dB
2621 @item RMS level dB
2622 Standard peak and RMS level measured in dBFS.
2623
2624 @item RMS peak dB
2625 @item RMS trough dB
2626 Peak and trough values for RMS level measured over a short window.
2627
2628 @item Crest factor
2629 Standard ratio of peak to RMS level (note: not in dB).
2630
2631 @item Flat factor
2632 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2633 (i.e. either @var{Min level} or @var{Max level}).
2634
2635 @item Peak count
2636 Number of occasions (not the number of samples) that the signal attained either
2637 @var{Min level} or @var{Max level}.
2638
2639 @item Noise floor dB
2640 Minimum local peak measured in dBFS over a short window.
2641
2642 @item Noise floor count
2643 Number of occasions (not the number of samples) that the signal attained
2644 @var{Noise floor}.
2645
2646 @item Bit depth
2647 Overall bit depth of audio. Number of bits used for each sample.
2648
2649 @item Dynamic range
2650 Measured dynamic range of audio in dB.
2651
2652 @item Zero crossings
2653 Number of points where the waveform crosses the zero level axis.
2654
2655 @item Zero crossings rate
2656 Rate of Zero crossings and number of audio samples.
2657 @end table
2658
2659 @section asubboost
2660 Boost subwoofer frequencies.
2661
2662 The filter accepts the following options:
2663
2664 @table @option
2665 @item dry
2666 Set dry gain, how much of original signal is kept. Allowed range is from 0 to 1.
2667 Default value is 0.7.
2668
2669 @item wet
2670 Set wet gain, how much of filtered signal is kept. Allowed range is from 0 to 1.
2671 Default value is 0.7.
2672
2673 @item decay
2674 Set delay line decay gain value. Allowed range is from 0 to 1.
2675 Default value is 0.7.
2676
2677 @item feedback
2678 Set delay line feedback gain value. Allowed range is from 0 to 1.
2679 Default value is 0.9.
2680
2681 @item cutoff
2682 Set cutoff frequency in Hertz. Allowed range is 50 to 900.
2683 Default value is 100.
2684
2685 @item slope
2686 Set slope amount for cutoff frequency. Allowed range is 0.0001 to 1.
2687 Default value is 0.5.
2688
2689 @item delay
2690 Set delay. Allowed range is from 1 to 100.
2691 Default value is 20.
2692 @end table
2693
2694 @subsection Commands
2695
2696 This filter supports the all above options as @ref{commands}.
2697
2698 @section asubcut
2699 Cut subwoofer frequencies.
2700
2701 This filter allows to set custom, steeper
2702 roll off than highpass filter, and thus is able to more attenuate
2703 frequency content in stop-band.
2704
2705 The filter accepts the following options:
2706
2707 @table @option
2708 @item cutoff
2709 Set cutoff frequency in Hertz. Allowed range is 2 to 200.
2710 Default value is 20.
2711
2712 @item order
2713 Set filter order. Available values are from 3 to 20.
2714 Default value is 10.
2715
2716 @item level
2717 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2718 @end table
2719
2720 @subsection Commands
2721
2722 This filter supports the all above options as @ref{commands}.
2723
2724 @section asupercut
2725 Cut super frequencies.
2726
2727 The filter accepts the following options:
2728
2729 @table @option
2730 @item cutoff
2731 Set cutoff frequency in Hertz. Allowed range is 20000 to 192000.
2732 Default value is 20000.
2733
2734 @item order
2735 Set filter order. Available values are from 3 to 20.
2736 Default value is 10.
2737
2738 @item level
2739 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2740 @end table
2741
2742 @subsection Commands
2743
2744 This filter supports the all above options as @ref{commands}.
2745
2746 @section asuperpass
2747 Apply high order Butterworth band-pass filter.
2748
2749 The filter accepts the following options:
2750
2751 @table @option
2752 @item centerf
2753 Set center frequency in Hertz. Allowed range is 2 to 999999.
2754 Default value is 1000.
2755
2756 @item order
2757 Set filter order. Available values are from 4 to 20.
2758 Default value is 4.
2759
2760 @item qfactor
2761 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2762
2763 @item level
2764 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2765 @end table
2766
2767 @subsection Commands
2768
2769 This filter supports the all above options as @ref{commands}.
2770
2771 @section asuperstop
2772 Apply high order Butterworth band-stop filter.
2773
2774 The filter accepts the following options:
2775
2776 @table @option
2777 @item centerf
2778 Set center frequency in Hertz. Allowed range is 2 to 999999.
2779 Default value is 1000.
2780
2781 @item order
2782 Set filter order. Available values are from 4 to 20.
2783 Default value is 4.
2784
2785 @item qfactor
2786 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2787
2788 @item level
2789 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2790 @end table
2791
2792 @subsection Commands
2793
2794 This filter supports the all above options as @ref{commands}.
2795
2796 @section atempo
2797
2798 Adjust audio tempo.
2799
2800 The filter accepts exactly one parameter, the audio tempo. If not
2801 specified then the filter will assume nominal 1.0 tempo. Tempo must
2802 be in the [0.5, 100.0] range.
2803
2804 Note that tempo greater than 2 will skip some samples rather than
2805 blend them in.  If for any reason this is a concern it is always
2806 possible to daisy-chain several instances of atempo to achieve the
2807 desired product tempo.
2808
2809 @subsection Examples
2810
2811 @itemize
2812 @item
2813 Slow down audio to 80% tempo:
2814 @example
2815 atempo=0.8
2816 @end example
2817
2818 @item
2819 To speed up audio to 300% tempo:
2820 @example
2821 atempo=3
2822 @end example
2823
2824 @item
2825 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2826 @example
2827 atempo=sqrt(3),atempo=sqrt(3)
2828 @end example
2829 @end itemize
2830
2831 @subsection Commands
2832
2833 This filter supports the following commands:
2834 @table @option
2835 @item tempo
2836 Change filter tempo scale factor.
2837 Syntax for the command is : "@var{tempo}"
2838 @end table
2839
2840 @section atrim
2841
2842 Trim the input so that the output contains one continuous subpart of the input.
2843
2844 It accepts the following parameters:
2845 @table @option
2846 @item start
2847 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2848 sample with the timestamp @var{start} will be the first sample in the output.
2849
2850 @item end
2851 Specify time of the first audio sample that will be dropped, i.e. the
2852 audio sample immediately preceding the one with the timestamp @var{end} will be
2853 the last sample in the output.
2854
2855 @item start_pts
2856 Same as @var{start}, except this option sets the start timestamp in samples
2857 instead of seconds.
2858
2859 @item end_pts
2860 Same as @var{end}, except this option sets the end timestamp in samples instead
2861 of seconds.
2862
2863 @item duration
2864 The maximum duration of the output in seconds.
2865
2866 @item start_sample
2867 The number of the first sample that should be output.
2868
2869 @item end_sample
2870 The number of the first sample that should be dropped.
2871 @end table
2872
2873 @option{start}, @option{end}, and @option{duration} are expressed as time
2874 duration specifications; see
2875 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2876
2877 Note that the first two sets of the start/end options and the @option{duration}
2878 option look at the frame timestamp, while the _sample options simply count the
2879 samples that pass through the filter. So start/end_pts and start/end_sample will
2880 give different results when the timestamps are wrong, inexact or do not start at
2881 zero. Also note that this filter does not modify the timestamps. If you wish
2882 to have the output timestamps start at zero, insert the asetpts filter after the
2883 atrim filter.
2884
2885 If multiple start or end options are set, this filter tries to be greedy and
2886 keep all samples that match at least one of the specified constraints. To keep
2887 only the part that matches all the constraints at once, chain multiple atrim
2888 filters.
2889
2890 The defaults are such that all the input is kept. So it is possible to set e.g.
2891 just the end values to keep everything before the specified time.
2892
2893 Examples:
2894 @itemize
2895 @item
2896 Drop everything except the second minute of input:
2897 @example
2898 ffmpeg -i INPUT -af atrim=60:120
2899 @end example
2900
2901 @item
2902 Keep only the first 1000 samples:
2903 @example
2904 ffmpeg -i INPUT -af atrim=end_sample=1000
2905 @end example
2906
2907 @end itemize
2908
2909 @section axcorrelate
2910 Calculate normalized cross-correlation between two input audio streams.
2911
2912 Resulted samples are always between -1 and 1 inclusive.
2913 If result is 1 it means two input samples are highly correlated in that selected segment.
2914 Result 0 means they are not correlated at all.
2915 If result is -1 it means two input samples are out of phase, which means they cancel each
2916 other.
2917
2918 The filter accepts the following options:
2919
2920 @table @option
2921 @item size
2922 Set size of segment over which cross-correlation is calculated.
2923 Default is 256. Allowed range is from 2 to 131072.
2924
2925 @item algo
2926 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2927 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2928 are always zero and thus need much less calculations to make.
2929 This is generally not true, but is valid for typical audio streams.
2930 @end table
2931
2932 @subsection Examples
2933
2934 @itemize
2935 @item
2936 Calculate correlation between channels in stereo audio stream:
2937 @example
2938 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2939 @end example
2940 @end itemize
2941
2942 @section bandpass
2943
2944 Apply a two-pole Butterworth band-pass filter with central
2945 frequency @var{frequency}, and (3dB-point) band-width width.
2946 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2947 instead of the default: constant 0dB peak gain.
2948 The filter roll off at 6dB per octave (20dB per decade).
2949
2950 The filter accepts the following options:
2951
2952 @table @option
2953 @item frequency, f
2954 Set the filter's central frequency. Default is @code{3000}.
2955
2956 @item csg
2957 Constant skirt gain if set to 1. Defaults to 0.
2958
2959 @item width_type, t
2960 Set method to specify band-width of filter.
2961 @table @option
2962 @item h
2963 Hz
2964 @item q
2965 Q-Factor
2966 @item o
2967 octave
2968 @item s
2969 slope
2970 @item k
2971 kHz
2972 @end table
2973
2974 @item width, w
2975 Specify the band-width of a filter in width_type units.
2976
2977 @item mix, m
2978 How much to use filtered signal in output. Default is 1.
2979 Range is between 0 and 1.
2980
2981 @item channels, c
2982 Specify which channels to filter, by default all available are filtered.
2983
2984 @item normalize, n
2985 Normalize biquad coefficients, by default is disabled.
2986 Enabling it will normalize magnitude response at DC to 0dB.
2987
2988 @item transform, a
2989 Set transform type of IIR filter.
2990 @table @option
2991 @item di
2992 @item dii
2993 @item tdii
2994 @item latt
2995 @end table
2996
2997 @item precision, r
2998 Set precison of filtering.
2999 @table @option
3000 @item auto
3001 Pick automatic sample format depending on surround filters.
3002 @item s16
3003 Always use signed 16-bit.
3004 @item s32
3005 Always use signed 32-bit.
3006 @item f32
3007 Always use float 32-bit.
3008 @item f64
3009 Always use float 64-bit.
3010 @end table
3011 @end table
3012
3013 @subsection Commands
3014
3015 This filter supports the following commands:
3016 @table @option
3017 @item frequency, f
3018 Change bandpass frequency.
3019 Syntax for the command is : "@var{frequency}"
3020
3021 @item width_type, t
3022 Change bandpass width_type.
3023 Syntax for the command is : "@var{width_type}"
3024
3025 @item width, w
3026 Change bandpass width.
3027 Syntax for the command is : "@var{width}"
3028
3029 @item mix, m
3030 Change bandpass mix.
3031 Syntax for the command is : "@var{mix}"
3032 @end table
3033
3034 @section bandreject
3035
3036 Apply a two-pole Butterworth band-reject filter with central
3037 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
3038 The filter roll off at 6dB per octave (20dB per decade).
3039
3040 The filter accepts the following options:
3041
3042 @table @option
3043 @item frequency, f
3044 Set the filter's central frequency. Default is @code{3000}.
3045
3046 @item width_type, t
3047 Set method to specify band-width of filter.
3048 @table @option
3049 @item h
3050 Hz
3051 @item q
3052 Q-Factor
3053 @item o
3054 octave
3055 @item s
3056 slope
3057 @item k
3058 kHz
3059 @end table
3060
3061 @item width, w
3062 Specify the band-width of a filter in width_type units.
3063
3064 @item mix, m
3065 How much to use filtered signal in output. Default is 1.
3066 Range is between 0 and 1.
3067
3068 @item channels, c
3069 Specify which channels to filter, by default all available are filtered.
3070
3071 @item normalize, n
3072 Normalize biquad coefficients, by default is disabled.
3073 Enabling it will normalize magnitude response at DC to 0dB.
3074
3075 @item transform, a
3076 Set transform type of IIR filter.
3077 @table @option
3078 @item di
3079 @item dii
3080 @item tdii
3081 @item latt
3082 @end table
3083
3084 @item precision, r
3085 Set precison of filtering.
3086 @table @option
3087 @item auto
3088 Pick automatic sample format depending on surround filters.
3089 @item s16
3090 Always use signed 16-bit.
3091 @item s32
3092 Always use signed 32-bit.
3093 @item f32
3094 Always use float 32-bit.
3095 @item f64
3096 Always use float 64-bit.
3097 @end table
3098 @end table
3099
3100 @subsection Commands
3101
3102 This filter supports the following commands:
3103 @table @option
3104 @item frequency, f
3105 Change bandreject frequency.
3106 Syntax for the command is : "@var{frequency}"
3107
3108 @item width_type, t
3109 Change bandreject width_type.
3110 Syntax for the command is : "@var{width_type}"
3111
3112 @item width, w
3113 Change bandreject width.
3114 Syntax for the command is : "@var{width}"
3115
3116 @item mix, m
3117 Change bandreject mix.
3118 Syntax for the command is : "@var{mix}"
3119 @end table
3120
3121 @section bass, lowshelf
3122
3123 Boost or cut the bass (lower) frequencies of the audio using a two-pole
3124 shelving filter with a response similar to that of a standard
3125 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3126
3127 The filter accepts the following options:
3128
3129 @table @option
3130 @item gain, g
3131 Give the gain at 0 Hz. Its useful range is about -20
3132 (for a large cut) to +20 (for a large boost).
3133 Beware of clipping when using a positive gain.
3134
3135 @item frequency, f
3136 Set the filter's central frequency and so can be used
3137 to extend or reduce the frequency range to be boosted or cut.
3138 The default value is @code{100} Hz.
3139
3140 @item width_type, t
3141 Set method to specify band-width of filter.
3142 @table @option
3143 @item h
3144 Hz
3145 @item q
3146 Q-Factor
3147 @item o
3148 octave
3149 @item s
3150 slope
3151 @item k
3152 kHz
3153 @end table
3154
3155 @item width, w
3156 Determine how steep is the filter's shelf transition.
3157
3158 @item poles, p
3159 Set number of poles. Default is 2.
3160
3161 @item mix, m
3162 How much to use filtered signal in output. Default is 1.
3163 Range is between 0 and 1.
3164
3165 @item channels, c
3166 Specify which channels to filter, by default all available are filtered.
3167
3168 @item normalize, n
3169 Normalize biquad coefficients, by default is disabled.
3170 Enabling it will normalize magnitude response at DC to 0dB.
3171
3172 @item transform, a
3173 Set transform type of IIR filter.
3174 @table @option
3175 @item di
3176 @item dii
3177 @item tdii
3178 @item latt
3179 @end table
3180
3181 @item precision, r
3182 Set precison of filtering.
3183 @table @option
3184 @item auto
3185 Pick automatic sample format depending on surround filters.
3186 @item s16
3187 Always use signed 16-bit.
3188 @item s32
3189 Always use signed 32-bit.
3190 @item f32
3191 Always use float 32-bit.
3192 @item f64
3193 Always use float 64-bit.
3194 @end table
3195 @end table
3196
3197 @subsection Commands
3198
3199 This filter supports the following commands:
3200 @table @option
3201 @item frequency, f
3202 Change bass frequency.
3203 Syntax for the command is : "@var{frequency}"
3204
3205 @item width_type, t
3206 Change bass width_type.
3207 Syntax for the command is : "@var{width_type}"
3208
3209 @item width, w
3210 Change bass width.
3211 Syntax for the command is : "@var{width}"
3212
3213 @item gain, g
3214 Change bass gain.
3215 Syntax for the command is : "@var{gain}"
3216
3217 @item mix, m
3218 Change bass mix.
3219 Syntax for the command is : "@var{mix}"
3220 @end table
3221
3222 @section biquad
3223
3224 Apply a biquad IIR filter with the given coefficients.
3225 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
3226 are the numerator and denominator coefficients respectively.
3227 and @var{channels}, @var{c} specify which channels to filter, by default all
3228 available are filtered.
3229
3230 @subsection Commands
3231
3232 This filter supports the following commands:
3233 @table @option
3234 @item a0
3235 @item a1
3236 @item a2
3237 @item b0
3238 @item b1
3239 @item b2
3240 Change biquad parameter.
3241 Syntax for the command is : "@var{value}"
3242
3243 @item mix, m
3244 How much to use filtered signal in output. Default is 1.
3245 Range is between 0 and 1.
3246
3247 @item channels, c
3248 Specify which channels to filter, by default all available are filtered.
3249
3250 @item normalize, n
3251 Normalize biquad coefficients, by default is disabled.
3252 Enabling it will normalize magnitude response at DC to 0dB.
3253
3254 @item transform, a
3255 Set transform type of IIR filter.
3256 @table @option
3257 @item di
3258 @item dii
3259 @item tdii
3260 @item latt
3261 @end table
3262
3263 @item precision, r
3264 Set precison of filtering.
3265 @table @option
3266 @item auto
3267 Pick automatic sample format depending on surround filters.
3268 @item s16
3269 Always use signed 16-bit.
3270 @item s32
3271 Always use signed 32-bit.
3272 @item f32
3273 Always use float 32-bit.
3274 @item f64
3275 Always use float 64-bit.
3276 @end table
3277 @end table
3278
3279 @section bs2b
3280 Bauer stereo to binaural transformation, which improves headphone listening of
3281 stereo audio records.
3282
3283 To enable compilation of this filter you need to configure FFmpeg with
3284 @code{--enable-libbs2b}.
3285
3286 It accepts the following parameters:
3287 @table @option
3288
3289 @item profile
3290 Pre-defined crossfeed level.
3291 @table @option
3292
3293 @item default
3294 Default level (fcut=700, feed=50).
3295
3296 @item cmoy
3297 Chu Moy circuit (fcut=700, feed=60).
3298
3299 @item jmeier
3300 Jan Meier circuit (fcut=650, feed=95).
3301
3302 @end table
3303
3304 @item fcut
3305 Cut frequency (in Hz).
3306
3307 @item feed
3308 Feed level (in Hz).
3309
3310 @end table
3311
3312 @section channelmap
3313
3314 Remap input channels to new locations.
3315
3316 It accepts the following parameters:
3317 @table @option
3318 @item map
3319 Map channels from input to output. The argument is a '|'-separated list of
3320 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
3321 @var{in_channel} form. @var{in_channel} can be either the name of the input
3322 channel (e.g. FL for front left) or its index in the input channel layout.
3323 @var{out_channel} is the name of the output channel or its index in the output
3324 channel layout. If @var{out_channel} is not given then it is implicitly an
3325 index, starting with zero and increasing by one for each mapping.
3326
3327 @item channel_layout
3328 The channel layout of the output stream.
3329 @end table
3330
3331 If no mapping is present, the filter will implicitly map input channels to
3332 output channels, preserving indices.
3333
3334 @subsection Examples
3335
3336 @itemize
3337 @item
3338 For example, assuming a 5.1+downmix input MOV file,
3339 @example
3340 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
3341 @end example
3342 will create an output WAV file tagged as stereo from the downmix channels of
3343 the input.
3344
3345 @item
3346 To fix a 5.1 WAV improperly encoded in AAC's native channel order
3347 @example
3348 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
3349 @end example
3350 @end itemize
3351
3352 @section channelsplit
3353
3354 Split each channel from an input audio stream into a separate output stream.
3355
3356 It accepts the following parameters:
3357 @table @option
3358 @item channel_layout
3359 The channel layout of the input stream. The default is "stereo".
3360 @item channels
3361 A channel layout describing the channels to be extracted as separate output streams
3362 or "all" to extract each input channel as a separate stream. The default is "all".
3363
3364 Choosing channels not present in channel layout in the input will result in an error.
3365 @end table
3366
3367 @subsection Examples
3368
3369 @itemize
3370 @item
3371 For example, assuming a stereo input MP3 file,
3372 @example
3373 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
3374 @end example
3375 will create an output Matroska file with two audio streams, one containing only
3376 the left channel and the other the right channel.
3377
3378 @item
3379 Split a 5.1 WAV file into per-channel files:
3380 @example
3381 ffmpeg -i in.wav -filter_complex
3382 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
3383 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
3384 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
3385 side_right.wav
3386 @end example
3387
3388 @item
3389 Extract only LFE from a 5.1 WAV file:
3390 @example
3391 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
3392 -map '[LFE]' lfe.wav
3393 @end example
3394 @end itemize
3395
3396 @section chorus
3397 Add a chorus effect to the audio.
3398
3399 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
3400
3401 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
3402 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
3403 The modulation depth defines the range the modulated delay is played before or after
3404 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
3405 sound tuned around the original one, like in a chorus where some vocals are slightly
3406 off key.
3407
3408 It accepts the following parameters:
3409 @table @option
3410 @item in_gain
3411 Set input gain. Default is 0.4.
3412
3413 @item out_gain
3414 Set output gain. Default is 0.4.
3415
3416 @item delays
3417 Set delays. A typical delay is around 40ms to 60ms.
3418
3419 @item decays
3420 Set decays.
3421
3422 @item speeds
3423 Set speeds.
3424
3425 @item depths
3426 Set depths.
3427 @end table
3428
3429 @subsection Examples
3430
3431 @itemize
3432 @item
3433 A single delay:
3434 @example
3435 chorus=0.7:0.9:55:0.4:0.25:2
3436 @end example
3437
3438 @item
3439 Two delays:
3440 @example
3441 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
3442 @end example
3443
3444 @item
3445 Fuller sounding chorus with three delays:
3446 @example
3447 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
3448 @end example
3449 @end itemize
3450
3451 @section compand
3452 Compress or expand the audio's dynamic range.
3453
3454 It accepts the following parameters:
3455
3456 @table @option
3457
3458 @item attacks
3459 @item decays
3460 A list of times in seconds for each channel over which the instantaneous level
3461 of the input signal is averaged to determine its volume. @var{attacks} refers to
3462 increase of volume and @var{decays} refers to decrease of volume. For most
3463 situations, the attack time (response to the audio getting louder) should be
3464 shorter than the decay time, because the human ear is more sensitive to sudden
3465 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3466 a typical value for decay is 0.8 seconds.
3467 If specified number of attacks & decays is lower than number of channels, the last
3468 set attack/decay will be used for all remaining channels.
3469
3470 @item points
3471 A list of points for the transfer function, specified in dB relative to the
3472 maximum possible signal amplitude. Each key points list must be defined using
3473 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3474 @code{x0/y0 x1/y1 x2/y2 ....}
3475
3476 The input values must be in strictly increasing order but the transfer function
3477 does not have to be monotonically rising. The point @code{0/0} is assumed but
3478 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3479 function are @code{-70/-70|-60/-20|1/0}.
3480
3481 @item soft-knee
3482 Set the curve radius in dB for all joints. It defaults to 0.01.
3483
3484 @item gain
3485 Set the additional gain in dB to be applied at all points on the transfer
3486 function. This allows for easy adjustment of the overall gain.
3487 It defaults to 0.
3488
3489 @item volume
3490 Set an initial volume, in dB, to be assumed for each channel when filtering
3491 starts. This permits the user to supply a nominal level initially, so that, for
3492 example, a very large gain is not applied to initial signal levels before the
3493 companding has begun to operate. A typical value for audio which is initially
3494 quiet is -90 dB. It defaults to 0.
3495
3496 @item delay
3497 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3498 delayed before being fed to the volume adjuster. Specifying a delay
3499 approximately equal to the attack/decay times allows the filter to effectively
3500 operate in predictive rather than reactive mode. It defaults to 0.
3501
3502 @end table
3503
3504 @subsection Examples
3505
3506 @itemize
3507 @item
3508 Make music with both quiet and loud passages suitable for listening to in a
3509 noisy environment:
3510 @example
3511 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3512 @end example
3513
3514 Another example for audio with whisper and explosion parts:
3515 @example
3516 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3517 @end example
3518
3519 @item
3520 A noise gate for when the noise is at a lower level than the signal:
3521 @example
3522 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3523 @end example
3524
3525 @item
3526 Here is another noise gate, this time for when the noise is at a higher level
3527 than the signal (making it, in some ways, similar to squelch):
3528 @example
3529 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3530 @end example
3531
3532 @item
3533 2:1 compression starting at -6dB:
3534 @example
3535 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3536 @end example
3537
3538 @item
3539 2:1 compression starting at -9dB:
3540 @example
3541 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3542 @end example
3543
3544 @item
3545 2:1 compression starting at -12dB:
3546 @example
3547 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3548 @end example
3549
3550 @item
3551 2:1 compression starting at -18dB:
3552 @example
3553 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3554 @end example
3555
3556 @item
3557 3:1 compression starting at -15dB:
3558 @example
3559 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3560 @end example
3561
3562 @item
3563 Compressor/Gate:
3564 @example
3565 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3566 @end example
3567
3568 @item
3569 Expander:
3570 @example
3571 compand=attacks=0:points=-80/-169|-54/-80|-49.5/-64.6|-41.1/-41.1|-25.8/-15|-10.8/-4.5|0/0|20/8.3
3572 @end example
3573
3574 @item
3575 Hard limiter at -6dB:
3576 @example
3577 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3578 @end example
3579
3580 @item
3581 Hard limiter at -12dB:
3582 @example
3583 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3584 @end example
3585
3586 @item
3587 Hard noise gate at -35 dB:
3588 @example
3589 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3590 @end example
3591
3592 @item
3593 Soft limiter:
3594 @example
3595 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3596 @end example
3597 @end itemize
3598
3599 @section compensationdelay
3600
3601 Compensation Delay Line is a metric based delay to compensate differing
3602 positions of microphones or speakers.
3603
3604 For example, you have recorded guitar with two microphones placed in
3605 different locations. Because the front of sound wave has fixed speed in
3606 normal conditions, the phasing of microphones can vary and depends on
3607 their location and interposition. The best sound mix can be achieved when
3608 these microphones are in phase (synchronized). Note that a distance of
3609 ~30 cm between microphones makes one microphone capture the signal in
3610 antiphase to the other microphone. That makes the final mix sound moody.
3611 This filter helps to solve phasing problems by adding different delays
3612 to each microphone track and make them synchronized.
3613
3614 The best result can be reached when you take one track as base and
3615 synchronize other tracks one by one with it.
3616 Remember that synchronization/delay tolerance depends on sample rate, too.
3617 Higher sample rates will give more tolerance.
3618
3619 The filter accepts the following parameters:
3620
3621 @table @option
3622 @item mm
3623 Set millimeters distance. This is compensation distance for fine tuning.
3624 Default is 0.
3625
3626 @item cm
3627 Set cm distance. This is compensation distance for tightening distance setup.
3628 Default is 0.
3629
3630 @item m
3631 Set meters distance. This is compensation distance for hard distance setup.
3632 Default is 0.
3633
3634 @item dry
3635 Set dry amount. Amount of unprocessed (dry) signal.
3636 Default is 0.
3637
3638 @item wet
3639 Set wet amount. Amount of processed (wet) signal.
3640 Default is 1.
3641
3642 @item temp
3643 Set temperature in degrees Celsius. This is the temperature of the environment.
3644 Default is 20.
3645 @end table
3646
3647 @section crossfeed
3648 Apply headphone crossfeed filter.
3649
3650 Crossfeed is the process of blending the left and right channels of stereo
3651 audio recording.
3652 It is mainly used to reduce extreme stereo separation of low frequencies.
3653
3654 The intent is to produce more speaker like sound to the listener.
3655
3656 The filter accepts the following options:
3657
3658 @table @option
3659 @item strength
3660 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3661 This sets gain of low shelf filter for side part of stereo image.
3662 Default is -6dB. Max allowed is -30db when strength is set to 1.
3663
3664 @item range
3665 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3666 This sets cut off frequency of low shelf filter. Default is cut off near
3667 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3668
3669 @item slope
3670 Set curve slope of low shelf filter. Default is 0.5.
3671 Allowed range is from 0.01 to 1.
3672
3673 @item level_in
3674 Set input gain. Default is 0.9.
3675
3676 @item level_out
3677 Set output gain. Default is 1.
3678 @end table
3679
3680 @subsection Commands
3681
3682 This filter supports the all above options as @ref{commands}.
3683
3684 @section crystalizer
3685 Simple algorithm to expand audio dynamic range.
3686
3687 The filter accepts the following options:
3688
3689 @table @option
3690 @item i
3691 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3692 (unchanged sound) to 10.0 (maximum effect).
3693
3694 @item c
3695 Enable clipping. By default is enabled.
3696 @end table
3697
3698 @subsection Commands
3699
3700 This filter supports the all above options as @ref{commands}.
3701
3702 @section dcshift
3703 Apply a DC shift to the audio.
3704
3705 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3706 in the recording chain) from the audio. The effect of a DC offset is reduced
3707 headroom and hence volume. The @ref{astats} filter can be used to determine if
3708 a signal has a DC offset.
3709
3710 @table @option
3711 @item shift
3712 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3713 the audio.
3714
3715 @item limitergain
3716 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3717 used to prevent clipping.
3718 @end table
3719
3720 @section deesser
3721
3722 Apply de-essing to the audio samples.
3723
3724 @table @option
3725 @item i
3726 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3727 Default is 0.
3728
3729 @item m
3730 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3731 Default is 0.5.
3732
3733 @item f
3734 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3735 Default is 0.5.
3736
3737 @item s
3738 Set the output mode.
3739
3740 It accepts the following values:
3741 @table @option
3742 @item i
3743 Pass input unchanged.
3744
3745 @item o
3746 Pass ess filtered out.
3747
3748 @item e
3749 Pass only ess.
3750
3751 Default value is @var{o}.
3752 @end table
3753
3754 @end table
3755
3756 @section drmeter
3757 Measure audio dynamic range.
3758
3759 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3760 is found in transition material. And anything less that 8 have very poor dynamics
3761 and is very compressed.
3762
3763 The filter accepts the following options:
3764
3765 @table @option
3766 @item length
3767 Set window length in seconds used to split audio into segments of equal length.
3768 Default is 3 seconds.
3769 @end table
3770
3771 @section dynaudnorm
3772 Dynamic Audio Normalizer.
3773
3774 This filter applies a certain amount of gain to the input audio in order
3775 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3776 contrast to more "simple" normalization algorithms, the Dynamic Audio
3777 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3778 This allows for applying extra gain to the "quiet" sections of the audio
3779 while avoiding distortions or clipping the "loud" sections. In other words:
3780 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3781 sections, in the sense that the volume of each section is brought to the
3782 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3783 this goal *without* applying "dynamic range compressing". It will retain 100%
3784 of the dynamic range *within* each section of the audio file.
3785
3786 @table @option
3787 @item framelen, f
3788 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3789 Default is 500 milliseconds.
3790 The Dynamic Audio Normalizer processes the input audio in small chunks,
3791 referred to as frames. This is required, because a peak magnitude has no
3792 meaning for just a single sample value. Instead, we need to determine the
3793 peak magnitude for a contiguous sequence of sample values. While a "standard"
3794 normalizer would simply use the peak magnitude of the complete file, the
3795 Dynamic Audio Normalizer determines the peak magnitude individually for each
3796 frame. The length of a frame is specified in milliseconds. By default, the
3797 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3798 been found to give good results with most files.
3799 Note that the exact frame length, in number of samples, will be determined
3800 automatically, based on the sampling rate of the individual input audio file.
3801
3802 @item gausssize, g
3803 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3804 number. Default is 31.
3805 Probably the most important parameter of the Dynamic Audio Normalizer is the
3806 @code{window size} of the Gaussian smoothing filter. The filter's window size
3807 is specified in frames, centered around the current frame. For the sake of
3808 simplicity, this must be an odd number. Consequently, the default value of 31
3809 takes into account the current frame, as well as the 15 preceding frames and
3810 the 15 subsequent frames. Using a larger window results in a stronger
3811 smoothing effect and thus in less gain variation, i.e. slower gain
3812 adaptation. Conversely, using a smaller window results in a weaker smoothing
3813 effect and thus in more gain variation, i.e. faster gain adaptation.
3814 In other words, the more you increase this value, the more the Dynamic Audio
3815 Normalizer will behave like a "traditional" normalization filter. On the
3816 contrary, the more you decrease this value, the more the Dynamic Audio
3817 Normalizer will behave like a dynamic range compressor.
3818
3819 @item peak, p
3820 Set the target peak value. This specifies the highest permissible magnitude
3821 level for the normalized audio input. This filter will try to approach the
3822 target peak magnitude as closely as possible, but at the same time it also
3823 makes sure that the normalized signal will never exceed the peak magnitude.
3824 A frame's maximum local gain factor is imposed directly by the target peak
3825 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3826 It is not recommended to go above this value.
3827
3828 @item maxgain, m
3829 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3830 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3831 factor for each input frame, i.e. the maximum gain factor that does not
3832 result in clipping or distortion. The maximum gain factor is determined by
3833 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3834 additionally bounds the frame's maximum gain factor by a predetermined
3835 (global) maximum gain factor. This is done in order to avoid excessive gain
3836 factors in "silent" or almost silent frames. By default, the maximum gain
3837 factor is 10.0, For most inputs the default value should be sufficient and
3838 it usually is not recommended to increase this value. Though, for input
3839 with an extremely low overall volume level, it may be necessary to allow even
3840 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3841 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3842 Instead, a "sigmoid" threshold function will be applied. This way, the
3843 gain factors will smoothly approach the threshold value, but never exceed that
3844 value.
3845
3846 @item targetrms, r
3847 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3848 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3849 This means that the maximum local gain factor for each frame is defined
3850 (only) by the frame's highest magnitude sample. This way, the samples can
3851 be amplified as much as possible without exceeding the maximum signal
3852 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3853 Normalizer can also take into account the frame's root mean square,
3854 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3855 determine the power of a time-varying signal. It is therefore considered
3856 that the RMS is a better approximation of the "perceived loudness" than
3857 just looking at the signal's peak magnitude. Consequently, by adjusting all
3858 frames to a constant RMS value, a uniform "perceived loudness" can be
3859 established. If a target RMS value has been specified, a frame's local gain
3860 factor is defined as the factor that would result in exactly that RMS value.
3861 Note, however, that the maximum local gain factor is still restricted by the
3862 frame's highest magnitude sample, in order to prevent clipping.
3863
3864 @item coupling, n
3865 Enable channels coupling. By default is enabled.
3866 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3867 amount. This means the same gain factor will be applied to all channels, i.e.
3868 the maximum possible gain factor is determined by the "loudest" channel.
3869 However, in some recordings, it may happen that the volume of the different
3870 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3871 In this case, this option can be used to disable the channel coupling. This way,
3872 the gain factor will be determined independently for each channel, depending
3873 only on the individual channel's highest magnitude sample. This allows for
3874 harmonizing the volume of the different channels.
3875
3876 @item correctdc, c
3877 Enable DC bias correction. By default is disabled.
3878 An audio signal (in the time domain) is a sequence of sample values.
3879 In the Dynamic Audio Normalizer these sample values are represented in the
3880 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3881 audio signal, or "waveform", should be centered around the zero point.
3882 That means if we calculate the mean value of all samples in a file, or in a
3883 single frame, then the result should be 0.0 or at least very close to that
3884 value. If, however, there is a significant deviation of the mean value from
3885 0.0, in either positive or negative direction, this is referred to as a
3886 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3887 Audio Normalizer provides optional DC bias correction.
3888 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3889 the mean value, or "DC correction" offset, of each input frame and subtract
3890 that value from all of the frame's sample values which ensures those samples
3891 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3892 boundaries, the DC correction offset values will be interpolated smoothly
3893 between neighbouring frames.
3894
3895 @item altboundary, b
3896 Enable alternative boundary mode. By default is disabled.
3897 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3898 around each frame. This includes the preceding frames as well as the
3899 subsequent frames. However, for the "boundary" frames, located at the very
3900 beginning and at the very end of the audio file, not all neighbouring
3901 frames are available. In particular, for the first few frames in the audio
3902 file, the preceding frames are not known. And, similarly, for the last few
3903 frames in the audio file, the subsequent frames are not known. Thus, the
3904 question arises which gain factors should be assumed for the missing frames
3905 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3906 to deal with this situation. The default boundary mode assumes a gain factor
3907 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3908 "fade out" at the beginning and at the end of the input, respectively.
3909
3910 @item compress, s
3911 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3912 By default, the Dynamic Audio Normalizer does not apply "traditional"
3913 compression. This means that signal peaks will not be pruned and thus the
3914 full dynamic range will be retained within each local neighbourhood. However,
3915 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3916 normalization algorithm with a more "traditional" compression.
3917 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3918 (thresholding) function. If (and only if) the compression feature is enabled,
3919 all input frames will be processed by a soft knee thresholding function prior
3920 to the actual normalization process. Put simply, the thresholding function is
3921 going to prune all samples whose magnitude exceeds a certain threshold value.
3922 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3923 value. Instead, the threshold value will be adjusted for each individual
3924 frame.
3925 In general, smaller parameters result in stronger compression, and vice versa.
3926 Values below 3.0 are not recommended, because audible distortion may appear.
3927
3928 @item threshold, t
3929 Set the target threshold value. This specifies the lowest permissible
3930 magnitude level for the audio input which will be normalized.
3931 If input frame volume is above this value frame will be normalized.
3932 Otherwise frame may not be normalized at all. The default value is set
3933 to 0, which means all input frames will be normalized.
3934 This option is mostly useful if digital noise is not wanted to be amplified.
3935 @end table
3936
3937 @subsection Commands
3938
3939 This filter supports the all above options as @ref{commands}.
3940
3941 @section earwax
3942
3943 Make audio easier to listen to on headphones.
3944
3945 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3946 so that when listened to on headphones the stereo image is moved from
3947 inside your head (standard for headphones) to outside and in front of
3948 the listener (standard for speakers).
3949
3950 Ported from SoX.
3951
3952 @section equalizer
3953
3954 Apply a two-pole peaking equalisation (EQ) filter. With this
3955 filter, the signal-level at and around a selected frequency can
3956 be increased or decreased, whilst (unlike bandpass and bandreject
3957 filters) that at all other frequencies is unchanged.
3958
3959 In order to produce complex equalisation curves, this filter can
3960 be given several times, each with a different central frequency.
3961
3962 The filter accepts the following options:
3963
3964 @table @option
3965 @item frequency, f
3966 Set the filter's central frequency in Hz.
3967
3968 @item width_type, t
3969 Set method to specify band-width of filter.
3970 @table @option
3971 @item h
3972 Hz
3973 @item q
3974 Q-Factor
3975 @item o
3976 octave
3977 @item s
3978 slope
3979 @item k
3980 kHz
3981 @end table
3982
3983 @item width, w
3984 Specify the band-width of a filter in width_type units.
3985
3986 @item gain, g
3987 Set the required gain or attenuation in dB.
3988 Beware of clipping when using a positive gain.
3989
3990 @item mix, m
3991 How much to use filtered signal in output. Default is 1.
3992 Range is between 0 and 1.
3993
3994 @item channels, c
3995 Specify which channels to filter, by default all available are filtered.
3996
3997 @item normalize, n
3998 Normalize biquad coefficients, by default is disabled.
3999 Enabling it will normalize magnitude response at DC to 0dB.
4000
4001 @item transform, a
4002 Set transform type of IIR filter.
4003 @table @option
4004 @item di
4005 @item dii
4006 @item tdii
4007 @item latt
4008 @end table
4009
4010 @item precision, r
4011 Set precison of filtering.
4012 @table @option
4013 @item auto
4014 Pick automatic sample format depending on surround filters.
4015 @item s16
4016 Always use signed 16-bit.
4017 @item s32
4018 Always use signed 32-bit.
4019 @item f32
4020 Always use float 32-bit.
4021 @item f64
4022 Always use float 64-bit.
4023 @end table
4024 @end table
4025
4026 @subsection Examples
4027 @itemize
4028 @item
4029 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
4030 @example
4031 equalizer=f=1000:t=h:width=200:g=-10
4032 @end example
4033
4034 @item
4035 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
4036 @example
4037 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
4038 @end example
4039 @end itemize
4040
4041 @subsection Commands
4042
4043 This filter supports the following commands:
4044 @table @option
4045 @item frequency, f
4046 Change equalizer frequency.
4047 Syntax for the command is : "@var{frequency}"
4048
4049 @item width_type, t
4050 Change equalizer width_type.
4051 Syntax for the command is : "@var{width_type}"
4052
4053 @item width, w
4054 Change equalizer width.
4055 Syntax for the command is : "@var{width}"
4056
4057 @item gain, g
4058 Change equalizer gain.
4059 Syntax for the command is : "@var{gain}"
4060
4061 @item mix, m
4062 Change equalizer mix.
4063 Syntax for the command is : "@var{mix}"
4064 @end table
4065
4066 @section extrastereo
4067
4068 Linearly increases the difference between left and right channels which
4069 adds some sort of "live" effect to playback.
4070
4071 The filter accepts the following options:
4072
4073 @table @option
4074 @item m
4075 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
4076 (average of both channels), with 1.0 sound will be unchanged, with
4077 -1.0 left and right channels will be swapped.
4078
4079 @item c
4080 Enable clipping. By default is enabled.
4081 @end table
4082
4083 @subsection Commands
4084
4085 This filter supports the all above options as @ref{commands}.
4086
4087 @section firequalizer
4088 Apply FIR Equalization using arbitrary frequency response.
4089
4090 The filter accepts the following option:
4091
4092 @table @option
4093 @item gain
4094 Set gain curve equation (in dB). The expression can contain variables:
4095 @table @option
4096 @item f
4097 the evaluated frequency
4098 @item sr
4099 sample rate
4100 @item ch
4101 channel number, set to 0 when multichannels evaluation is disabled
4102 @item chid
4103 channel id, see libavutil/channel_layout.h, set to the first channel id when
4104 multichannels evaluation is disabled
4105 @item chs
4106 number of channels
4107 @item chlayout
4108 channel_layout, see libavutil/channel_layout.h
4109
4110 @end table
4111 and functions:
4112 @table @option
4113 @item gain_interpolate(f)
4114 interpolate gain on frequency f based on gain_entry
4115 @item cubic_interpolate(f)
4116 same as gain_interpolate, but smoother
4117 @end table
4118 This option is also available as command. Default is @code{gain_interpolate(f)}.
4119
4120 @item gain_entry
4121 Set gain entry for gain_interpolate function. The expression can
4122 contain functions:
4123 @table @option
4124 @item entry(f, g)
4125 store gain entry at frequency f with value g
4126 @end table
4127 This option is also available as command.
4128
4129 @item delay
4130 Set filter delay in seconds. Higher value means more accurate.
4131 Default is @code{0.01}.
4132
4133 @item accuracy
4134 Set filter accuracy in Hz. Lower value means more accurate.
4135 Default is @code{5}.
4136
4137 @item wfunc
4138 Set window function. Acceptable values are:
4139 @table @option
4140 @item rectangular
4141 rectangular window, useful when gain curve is already smooth
4142 @item hann
4143 hann window (default)
4144 @item hamming
4145 hamming window
4146 @item blackman
4147 blackman window
4148 @item nuttall3
4149 3-terms continuous 1st derivative nuttall window
4150 @item mnuttall3
4151 minimum 3-terms discontinuous nuttall window
4152 @item nuttall
4153 4-terms continuous 1st derivative nuttall window
4154 @item bnuttall
4155 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
4156 @item bharris
4157 blackman-harris window
4158 @item tukey
4159 tukey window
4160 @end table
4161
4162 @item fixed
4163 If enabled, use fixed number of audio samples. This improves speed when
4164 filtering with large delay. Default is disabled.
4165
4166 @item multi
4167 Enable multichannels evaluation on gain. Default is disabled.
4168
4169 @item zero_phase
4170 Enable zero phase mode by subtracting timestamp to compensate delay.
4171 Default is disabled.
4172
4173 @item scale
4174 Set scale used by gain. Acceptable values are:
4175 @table @option
4176 @item linlin
4177 linear frequency, linear gain
4178 @item linlog
4179 linear frequency, logarithmic (in dB) gain (default)
4180 @item loglin
4181 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
4182 @item loglog
4183 logarithmic frequency, logarithmic gain
4184 @end table
4185
4186 @item dumpfile
4187 Set file for dumping, suitable for gnuplot.
4188
4189 @item dumpscale
4190 Set scale for dumpfile. Acceptable values are same with scale option.
4191 Default is linlog.
4192
4193 @item fft2
4194 Enable 2-channel convolution using complex FFT. This improves speed significantly.
4195 Default is disabled.
4196
4197 @item min_phase
4198 Enable minimum phase impulse response. Default is disabled.
4199 @end table
4200
4201 @subsection Examples
4202 @itemize
4203 @item
4204 lowpass at 1000 Hz:
4205 @example
4206 firequalizer=gain='if(lt(f,1000), 0, -INF)'
4207 @end example
4208 @item
4209 lowpass at 1000 Hz with gain_entry:
4210 @example
4211 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
4212 @end example
4213 @item
4214 custom equalization:
4215 @example
4216 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
4217 @end example
4218 @item
4219 higher delay with zero phase to compensate delay:
4220 @example
4221 firequalizer=delay=0.1:fixed=on:zero_phase=on
4222 @end example
4223 @item
4224 lowpass on left channel, highpass on right channel:
4225 @example
4226 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
4227 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
4228 @end example
4229 @end itemize
4230
4231 @section flanger
4232 Apply a flanging effect to the audio.
4233
4234 The filter accepts the following options:
4235
4236 @table @option
4237 @item delay
4238 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
4239
4240 @item depth
4241 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
4242
4243 @item regen
4244 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
4245 Default value is 0.
4246
4247 @item width
4248 Set percentage of delayed signal mixed with original. Range from 0 to 100.
4249 Default value is 71.
4250
4251 @item speed
4252 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
4253
4254 @item shape
4255 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
4256 Default value is @var{sinusoidal}.
4257
4258 @item phase
4259 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
4260 Default value is 25.
4261
4262 @item interp
4263 Set delay-line interpolation, @var{linear} or @var{quadratic}.
4264 Default is @var{linear}.
4265 @end table
4266
4267 @section haas
4268 Apply Haas effect to audio.
4269
4270 Note that this makes most sense to apply on mono signals.
4271 With this filter applied to mono signals it give some directionality and
4272 stretches its stereo image.
4273
4274 The filter accepts the following options:
4275
4276 @table @option
4277 @item level_in
4278 Set input level. By default is @var{1}, or 0dB
4279
4280 @item level_out
4281 Set output level. By default is @var{1}, or 0dB.
4282
4283 @item side_gain
4284 Set gain applied to side part of signal. By default is @var{1}.
4285
4286 @item middle_source
4287 Set kind of middle source. Can be one of the following:
4288
4289 @table @samp
4290 @item left
4291 Pick left channel.
4292
4293 @item right
4294 Pick right channel.
4295
4296 @item mid
4297 Pick middle part signal of stereo image.
4298
4299 @item side
4300 Pick side part signal of stereo image.
4301 @end table
4302
4303 @item middle_phase
4304 Change middle phase. By default is disabled.
4305
4306 @item left_delay
4307 Set left channel delay. By default is @var{2.05} milliseconds.
4308
4309 @item left_balance
4310 Set left channel balance. By default is @var{-1}.
4311
4312 @item left_gain
4313 Set left channel gain. By default is @var{1}.
4314
4315 @item left_phase
4316 Change left phase. By default is disabled.
4317
4318 @item right_delay
4319 Set right channel delay. By defaults is @var{2.12} milliseconds.
4320
4321 @item right_balance
4322 Set right channel balance. By default is @var{1}.
4323
4324 @item right_gain
4325 Set right channel gain. By default is @var{1}.
4326
4327 @item right_phase
4328 Change right phase. By default is enabled.
4329 @end table
4330
4331 @section hdcd
4332
4333 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
4334 embedded HDCD codes is expanded into a 20-bit PCM stream.
4335
4336 The filter supports the Peak Extend and Low-level Gain Adjustment features
4337 of HDCD, and detects the Transient Filter flag.
4338
4339 @example
4340 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
4341 @end example
4342
4343 When using the filter with wav, note the default encoding for wav is 16-bit,
4344 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
4345 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
4346 @example
4347 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
4348 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
4349 @end example
4350
4351 The filter accepts the following options:
4352
4353 @table @option
4354 @item disable_autoconvert
4355 Disable any automatic format conversion or resampling in the filter graph.
4356
4357 @item process_stereo
4358 Process the stereo channels together. If target_gain does not match between
4359 channels, consider it invalid and use the last valid target_gain.
4360
4361 @item cdt_ms
4362 Set the code detect timer period in ms.
4363
4364 @item force_pe
4365 Always extend peaks above -3dBFS even if PE isn't signaled.
4366
4367 @item analyze_mode
4368 Replace audio with a solid tone and adjust the amplitude to signal some
4369 specific aspect of the decoding process. The output file can be loaded in
4370 an audio editor alongside the original to aid analysis.
4371
4372 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
4373
4374 Modes are:
4375 @table @samp
4376 @item 0, off
4377 Disabled
4378 @item 1, lle
4379 Gain adjustment level at each sample
4380 @item 2, pe
4381 Samples where peak extend occurs
4382 @item 3, cdt
4383 Samples where the code detect timer is active
4384 @item 4, tgm
4385 Samples where the target gain does not match between channels
4386 @end table
4387 @end table
4388
4389 @section headphone
4390
4391 Apply head-related transfer functions (HRTFs) to create virtual
4392 loudspeakers around the user for binaural listening via headphones.
4393 The HRIRs are provided via additional streams, for each channel
4394 one stereo input stream is needed.
4395
4396 The filter accepts the following options:
4397
4398 @table @option
4399 @item map
4400 Set mapping of input streams for convolution.
4401 The argument is a '|'-separated list of channel names in order as they
4402 are given as additional stream inputs for filter.
4403 This also specify number of input streams. Number of input streams
4404 must be not less than number of channels in first stream plus one.
4405
4406 @item gain
4407 Set gain applied to audio. Value is in dB. Default is 0.
4408
4409 @item type
4410 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4411 processing audio in time domain which is slow.
4412 @var{freq} is processing audio in frequency domain which is fast.
4413 Default is @var{freq}.
4414
4415 @item lfe
4416 Set custom gain for LFE channels. Value is in dB. Default is 0.
4417
4418 @item size
4419 Set size of frame in number of samples which will be processed at once.
4420 Default value is @var{1024}. Allowed range is from 1024 to 96000.
4421
4422 @item hrir
4423 Set format of hrir stream.
4424 Default value is @var{stereo}. Alternative value is @var{multich}.
4425 If value is set to @var{stereo}, number of additional streams should
4426 be greater or equal to number of input channels in first input stream.
4427 Also each additional stream should have stereo number of channels.
4428 If value is set to @var{multich}, number of additional streams should
4429 be exactly one. Also number of input channels of additional stream
4430 should be equal or greater than twice number of channels of first input
4431 stream.
4432 @end table
4433
4434 @subsection Examples
4435
4436 @itemize
4437 @item
4438 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4439 each amovie filter use stereo file with IR coefficients as input.
4440 The files give coefficients for each position of virtual loudspeaker:
4441 @example
4442 ffmpeg -i input.wav
4443 -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"
4444 output.wav
4445 @end example
4446
4447 @item
4448 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4449 but now in @var{multich} @var{hrir} format.
4450 @example
4451 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"
4452 output.wav
4453 @end example
4454 @end itemize
4455
4456 @section highpass
4457
4458 Apply a high-pass filter with 3dB point frequency.
4459 The filter can be either single-pole, or double-pole (the default).
4460 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4461
4462 The filter accepts the following options:
4463
4464 @table @option
4465 @item frequency, f
4466 Set frequency in Hz. Default is 3000.
4467
4468 @item poles, p
4469 Set number of poles. Default is 2.
4470
4471 @item width_type, t
4472 Set method to specify band-width of filter.
4473 @table @option
4474 @item h
4475 Hz
4476 @item q
4477 Q-Factor
4478 @item o
4479 octave
4480 @item s
4481 slope
4482 @item k
4483 kHz
4484 @end table
4485
4486 @item width, w
4487 Specify the band-width of a filter in width_type units.
4488 Applies only to double-pole filter.
4489 The default is 0.707q and gives a Butterworth response.
4490
4491 @item mix, m
4492 How much to use filtered signal in output. Default is 1.
4493 Range is between 0 and 1.
4494
4495 @item channels, c
4496 Specify which channels to filter, by default all available are filtered.
4497
4498 @item normalize, n
4499 Normalize biquad coefficients, by default is disabled.
4500 Enabling it will normalize magnitude response at DC to 0dB.
4501
4502 @item transform, a
4503 Set transform type of IIR filter.
4504 @table @option
4505 @item di
4506 @item dii
4507 @item tdii
4508 @item latt
4509 @end table
4510
4511 @item precision, r
4512 Set precison of filtering.
4513 @table @option
4514 @item auto
4515 Pick automatic sample format depending on surround filters.
4516 @item s16
4517 Always use signed 16-bit.
4518 @item s32
4519 Always use signed 32-bit.
4520 @item f32
4521 Always use float 32-bit.
4522 @item f64
4523 Always use float 64-bit.
4524 @end table
4525 @end table
4526
4527 @subsection Commands
4528
4529 This filter supports the following commands:
4530 @table @option
4531 @item frequency, f
4532 Change highpass frequency.
4533 Syntax for the command is : "@var{frequency}"
4534
4535 @item width_type, t
4536 Change highpass width_type.
4537 Syntax for the command is : "@var{width_type}"
4538
4539 @item width, w
4540 Change highpass width.
4541 Syntax for the command is : "@var{width}"
4542
4543 @item mix, m
4544 Change highpass mix.
4545 Syntax for the command is : "@var{mix}"
4546 @end table
4547
4548 @section join
4549
4550 Join multiple input streams into one multi-channel stream.
4551
4552 It accepts the following parameters:
4553 @table @option
4554
4555 @item inputs
4556 The number of input streams. It defaults to 2.
4557
4558 @item channel_layout
4559 The desired output channel layout. It defaults to stereo.
4560
4561 @item map
4562 Map channels from inputs to output. The argument is a '|'-separated list of
4563 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4564 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4565 can be either the name of the input channel (e.g. FL for front left) or its
4566 index in the specified input stream. @var{out_channel} is the name of the output
4567 channel.
4568 @end table
4569
4570 The filter will attempt to guess the mappings when they are not specified
4571 explicitly. It does so by first trying to find an unused matching input channel
4572 and if that fails it picks the first unused input channel.
4573
4574 Join 3 inputs (with properly set channel layouts):
4575 @example
4576 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4577 @end example
4578
4579 Build a 5.1 output from 6 single-channel streams:
4580 @example
4581 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4582 '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'
4583 out
4584 @end example
4585
4586 @section ladspa
4587
4588 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4589
4590 To enable compilation of this filter you need to configure FFmpeg with
4591 @code{--enable-ladspa}.
4592
4593 @table @option
4594 @item file, f
4595 Specifies the name of LADSPA plugin library to load. If the environment
4596 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4597 each one of the directories specified by the colon separated list in
4598 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4599 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4600 @file{/usr/lib/ladspa/}.
4601
4602 @item plugin, p
4603 Specifies the plugin within the library. Some libraries contain only
4604 one plugin, but others contain many of them. If this is not set filter
4605 will list all available plugins within the specified library.
4606
4607 @item controls, c
4608 Set the '|' separated list of controls which are zero or more floating point
4609 values that determine the behavior of the loaded plugin (for example delay,
4610 threshold or gain).
4611 Controls need to be defined using the following syntax:
4612 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4613 @var{valuei} is the value set on the @var{i}-th control.
4614 Alternatively they can be also defined using the following syntax:
4615 @var{value0}|@var{value1}|@var{value2}|..., where
4616 @var{valuei} is the value set on the @var{i}-th control.
4617 If @option{controls} is set to @code{help}, all available controls and
4618 their valid ranges are printed.
4619
4620 @item sample_rate, s
4621 Specify the sample rate, default to 44100. Only used if plugin have
4622 zero inputs.
4623
4624 @item nb_samples, n
4625 Set the number of samples per channel per each output frame, default
4626 is 1024. Only used if plugin have zero inputs.
4627
4628 @item duration, d
4629 Set the minimum duration of the sourced audio. See
4630 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4631 for the accepted syntax.
4632 Note that the resulting duration may be greater than the specified duration,
4633 as the generated audio is always cut at the end of a complete frame.
4634 If not specified, or the expressed duration is negative, the audio is
4635 supposed to be generated forever.
4636 Only used if plugin have zero inputs.
4637
4638 @item latency, l
4639 Enable latency compensation, by default is disabled.
4640 Only used if plugin have inputs.
4641 @end table
4642
4643 @subsection Examples
4644
4645 @itemize
4646 @item
4647 List all available plugins within amp (LADSPA example plugin) library:
4648 @example
4649 ladspa=file=amp
4650 @end example
4651
4652 @item
4653 List all available controls and their valid ranges for @code{vcf_notch}
4654 plugin from @code{VCF} library:
4655 @example
4656 ladspa=f=vcf:p=vcf_notch:c=help
4657 @end example
4658
4659 @item
4660 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4661 plugin library:
4662 @example
4663 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4664 @end example
4665
4666 @item
4667 Add reverberation to the audio using TAP-plugins
4668 (Tom's Audio Processing plugins):
4669 @example
4670 ladspa=file=tap_reverb:tap_reverb
4671 @end example
4672
4673 @item
4674 Generate white noise, with 0.2 amplitude:
4675 @example
4676 ladspa=file=cmt:noise_source_white:c=c0=.2
4677 @end example
4678
4679 @item
4680 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4681 @code{C* Audio Plugin Suite} (CAPS) library:
4682 @example
4683 ladspa=file=caps:Click:c=c1=20'
4684 @end example
4685
4686 @item
4687 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4688 @example
4689 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4690 @end example
4691
4692 @item
4693 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4694 @code{SWH Plugins} collection:
4695 @example
4696 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4697 @end example
4698
4699 @item
4700 Attenuate low frequencies using Multiband EQ from Steve Harris
4701 @code{SWH Plugins} collection:
4702 @example
4703 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4704 @end example
4705
4706 @item
4707 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4708 (CAPS) library:
4709 @example
4710 ladspa=caps:Narrower
4711 @end example
4712
4713 @item
4714 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4715 @example
4716 ladspa=caps:White:.2
4717 @end example
4718
4719 @item
4720 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4721 @example
4722 ladspa=caps:Fractal:c=c1=1
4723 @end example
4724
4725 @item
4726 Dynamic volume normalization using @code{VLevel} plugin:
4727 @example
4728 ladspa=vlevel-ladspa:vlevel_mono
4729 @end example
4730 @end itemize
4731
4732 @subsection Commands
4733
4734 This filter supports the following commands:
4735 @table @option
4736 @item cN
4737 Modify the @var{N}-th control value.
4738
4739 If the specified value is not valid, it is ignored and prior one is kept.
4740 @end table
4741
4742 @section loudnorm
4743
4744 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4745 Support for both single pass (livestreams, files) and double pass (files) modes.
4746 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4747 detect true peaks, the audio stream will be upsampled to 192 kHz.
4748 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4749
4750 The filter accepts the following options:
4751
4752 @table @option
4753 @item I, i
4754 Set integrated loudness target.
4755 Range is -70.0 - -5.0. Default value is -24.0.
4756
4757 @item LRA, lra
4758 Set loudness range target.
4759 Range is 1.0 - 20.0. Default value is 7.0.
4760
4761 @item TP, tp
4762 Set maximum true peak.
4763 Range is -9.0 - +0.0. Default value is -2.0.
4764
4765 @item measured_I, measured_i
4766 Measured IL of input file.
4767 Range is -99.0 - +0.0.
4768
4769 @item measured_LRA, measured_lra
4770 Measured LRA of input file.
4771 Range is  0.0 - 99.0.
4772
4773 @item measured_TP, measured_tp
4774 Measured true peak of input file.
4775 Range is  -99.0 - +99.0.
4776
4777 @item measured_thresh
4778 Measured threshold of input file.
4779 Range is -99.0 - +0.0.
4780
4781 @item offset
4782 Set offset gain. Gain is applied before the true-peak limiter.
4783 Range is  -99.0 - +99.0. Default is +0.0.
4784
4785 @item linear
4786 Normalize by linearly scaling the source audio.
4787 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4788 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4789 be lower than source LRA and the change in integrated loudness shouldn't
4790 result in a true peak which exceeds the target TP. If any of these
4791 conditions aren't met, normalization mode will revert to @var{dynamic}.
4792 Options are @code{true} or @code{false}. Default is @code{true}.
4793
4794 @item dual_mono
4795 Treat mono input files as "dual-mono". If a mono file is intended for playback
4796 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4797 If set to @code{true}, this option will compensate for this effect.
4798 Multi-channel input files are not affected by this option.
4799 Options are true or false. Default is false.
4800
4801 @item print_format
4802 Set print format for stats. Options are summary, json, or none.
4803 Default value is none.
4804 @end table
4805
4806 @section lowpass
4807
4808 Apply a low-pass filter with 3dB point frequency.
4809 The filter can be either single-pole or double-pole (the default).
4810 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4811
4812 The filter accepts the following options:
4813
4814 @table @option
4815 @item frequency, f
4816 Set frequency in Hz. Default is 500.
4817
4818 @item poles, p
4819 Set number of poles. Default is 2.
4820
4821 @item width_type, t
4822 Set method to specify band-width of filter.
4823 @table @option
4824 @item h
4825 Hz
4826 @item q
4827 Q-Factor
4828 @item o
4829 octave
4830 @item s
4831 slope
4832 @item k
4833 kHz
4834 @end table
4835
4836 @item width, w
4837 Specify the band-width of a filter in width_type units.
4838 Applies only to double-pole filter.
4839 The default is 0.707q and gives a Butterworth response.
4840
4841 @item mix, m
4842 How much to use filtered signal in output. Default is 1.
4843 Range is between 0 and 1.
4844
4845 @item channels, c
4846 Specify which channels to filter, by default all available are filtered.
4847
4848 @item normalize, n
4849 Normalize biquad coefficients, by default is disabled.
4850 Enabling it will normalize magnitude response at DC to 0dB.
4851
4852 @item transform, a
4853 Set transform type of IIR filter.
4854 @table @option
4855 @item di
4856 @item dii
4857 @item tdii
4858 @item latt
4859 @end table
4860
4861 @item precision, r
4862 Set precison of filtering.
4863 @table @option
4864 @item auto
4865 Pick automatic sample format depending on surround filters.
4866 @item s16
4867 Always use signed 16-bit.
4868 @item s32
4869 Always use signed 32-bit.
4870 @item f32
4871 Always use float 32-bit.
4872 @item f64
4873 Always use float 64-bit.
4874 @end table
4875 @end table
4876
4877 @subsection Examples
4878 @itemize
4879 @item
4880 Lowpass only LFE channel, it LFE is not present it does nothing:
4881 @example
4882 lowpass=c=LFE
4883 @end example
4884 @end itemize
4885
4886 @subsection Commands
4887
4888 This filter supports the following commands:
4889 @table @option
4890 @item frequency, f
4891 Change lowpass frequency.
4892 Syntax for the command is : "@var{frequency}"
4893
4894 @item width_type, t
4895 Change lowpass width_type.
4896 Syntax for the command is : "@var{width_type}"
4897
4898 @item width, w
4899 Change lowpass width.
4900 Syntax for the command is : "@var{width}"
4901
4902 @item mix, m
4903 Change lowpass mix.
4904 Syntax for the command is : "@var{mix}"
4905 @end table
4906
4907 @section lv2
4908
4909 Load a LV2 (LADSPA Version 2) plugin.
4910
4911 To enable compilation of this filter you need to configure FFmpeg with
4912 @code{--enable-lv2}.
4913
4914 @table @option
4915 @item plugin, p
4916 Specifies the plugin URI. You may need to escape ':'.
4917
4918 @item controls, c
4919 Set the '|' separated list of controls which are zero or more floating point
4920 values that determine the behavior of the loaded plugin (for example delay,
4921 threshold or gain).
4922 If @option{controls} is set to @code{help}, all available controls and
4923 their valid ranges are printed.
4924
4925 @item sample_rate, s
4926 Specify the sample rate, default to 44100. Only used if plugin have
4927 zero inputs.
4928
4929 @item nb_samples, n
4930 Set the number of samples per channel per each output frame, default
4931 is 1024. Only used if plugin have zero inputs.
4932
4933 @item duration, d
4934 Set the minimum duration of the sourced audio. See
4935 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4936 for the accepted syntax.
4937 Note that the resulting duration may be greater than the specified duration,
4938 as the generated audio is always cut at the end of a complete frame.
4939 If not specified, or the expressed duration is negative, the audio is
4940 supposed to be generated forever.
4941 Only used if plugin have zero inputs.
4942 @end table
4943
4944 @subsection Examples
4945
4946 @itemize
4947 @item
4948 Apply bass enhancer plugin from Calf:
4949 @example
4950 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4951 @end example
4952
4953 @item
4954 Apply vinyl plugin from Calf:
4955 @example
4956 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4957 @end example
4958
4959 @item
4960 Apply bit crusher plugin from ArtyFX:
4961 @example
4962 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4963 @end example
4964 @end itemize
4965
4966 @section mcompand
4967 Multiband Compress or expand the audio's dynamic range.
4968
4969 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4970 This is akin to the crossover of a loudspeaker, and results in flat frequency
4971 response when absent compander action.
4972
4973 It accepts the following parameters:
4974
4975 @table @option
4976 @item args
4977 This option syntax is:
4978 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4979 For explanation of each item refer to compand filter documentation.
4980 @end table
4981
4982 @anchor{pan}
4983 @section pan
4984
4985 Mix channels with specific gain levels. The filter accepts the output
4986 channel layout followed by a set of channels definitions.
4987
4988 This filter is also designed to efficiently remap the channels of an audio
4989 stream.
4990
4991 The filter accepts parameters of the form:
4992 "@var{l}|@var{outdef}|@var{outdef}|..."
4993
4994 @table @option
4995 @item l
4996 output channel layout or number of channels
4997
4998 @item outdef
4999 output channel specification, of the form:
5000 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
5001
5002 @item out_name
5003 output channel to define, either a channel name (FL, FR, etc.) or a channel
5004 number (c0, c1, etc.)
5005
5006 @item gain
5007 multiplicative coefficient for the channel, 1 leaving the volume unchanged
5008
5009 @item in_name
5010 input channel to use, see out_name for details; it is not possible to mix
5011 named and numbered input channels
5012 @end table
5013
5014 If the `=' in a channel specification is replaced by `<', then the gains for
5015 that specification will be renormalized so that the total is 1, thus
5016 avoiding clipping noise.
5017
5018 @subsection Mixing examples
5019
5020 For example, if you want to down-mix from stereo to mono, but with a bigger
5021 factor for the left channel:
5022 @example
5023 pan=1c|c0=0.9*c0+0.1*c1
5024 @end example
5025
5026 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
5027 7-channels surround:
5028 @example
5029 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
5030 @end example
5031
5032 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
5033 that should be preferred (see "-ac" option) unless you have very specific
5034 needs.
5035
5036 @subsection Remapping examples
5037
5038 The channel remapping will be effective if, and only if:
5039
5040 @itemize
5041 @item gain coefficients are zeroes or ones,
5042 @item only one input per channel output,
5043 @end itemize
5044
5045 If all these conditions are satisfied, the filter will notify the user ("Pure
5046 channel mapping detected"), and use an optimized and lossless method to do the
5047 remapping.
5048
5049 For example, if you have a 5.1 source and want a stereo audio stream by
5050 dropping the extra channels:
5051 @example
5052 pan="stereo| c0=FL | c1=FR"
5053 @end example
5054
5055 Given the same source, you can also switch front left and front right channels
5056 and keep the input channel layout:
5057 @example
5058 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
5059 @end example
5060
5061 If the input is a stereo audio stream, you can mute the front left channel (and
5062 still keep the stereo channel layout) with:
5063 @example
5064 pan="stereo|c1=c1"
5065 @end example
5066
5067 Still with a stereo audio stream input, you can copy the right channel in both
5068 front left and right:
5069 @example
5070 pan="stereo| c0=FR | c1=FR"
5071 @end example
5072
5073 @section replaygain
5074
5075 ReplayGain scanner filter. This filter takes an audio stream as an input and
5076 outputs it unchanged.
5077 At end of filtering it displays @code{track_gain} and @code{track_peak}.
5078
5079 @section resample
5080
5081 Convert the audio sample format, sample rate and channel layout. It is
5082 not meant to be used directly.
5083
5084 @section rubberband
5085 Apply time-stretching and pitch-shifting with librubberband.
5086
5087 To enable compilation of this filter, you need to configure FFmpeg with
5088 @code{--enable-librubberband}.
5089
5090 The filter accepts the following options:
5091
5092 @table @option
5093 @item tempo
5094 Set tempo scale factor.
5095
5096 @item pitch
5097 Set pitch scale factor.
5098
5099 @item transients
5100 Set transients detector.
5101 Possible values are:
5102 @table @var
5103 @item crisp
5104 @item mixed
5105 @item smooth
5106 @end table
5107
5108 @item detector
5109 Set detector.
5110 Possible values are:
5111 @table @var
5112 @item compound
5113 @item percussive
5114 @item soft
5115 @end table
5116
5117 @item phase
5118 Set phase.
5119 Possible values are:
5120 @table @var
5121 @item laminar
5122 @item independent
5123 @end table
5124
5125 @item window
5126 Set processing window size.
5127 Possible values are:
5128 @table @var
5129 @item standard
5130 @item short
5131 @item long
5132 @end table
5133
5134 @item smoothing
5135 Set smoothing.
5136 Possible values are:
5137 @table @var
5138 @item off
5139 @item on
5140 @end table
5141
5142 @item formant
5143 Enable formant preservation when shift pitching.
5144 Possible values are:
5145 @table @var
5146 @item shifted
5147 @item preserved
5148 @end table
5149
5150 @item pitchq
5151 Set pitch quality.
5152 Possible values are:
5153 @table @var
5154 @item quality
5155 @item speed
5156 @item consistency
5157 @end table
5158
5159 @item channels
5160 Set channels.
5161 Possible values are:
5162 @table @var
5163 @item apart
5164 @item together
5165 @end table
5166 @end table
5167
5168 @subsection Commands
5169
5170 This filter supports the following commands:
5171 @table @option
5172 @item tempo
5173 Change filter tempo scale factor.
5174 Syntax for the command is : "@var{tempo}"
5175
5176 @item pitch
5177 Change filter pitch scale factor.
5178 Syntax for the command is : "@var{pitch}"
5179 @end table
5180
5181 @section sidechaincompress
5182
5183 This filter acts like normal compressor but has the ability to compress
5184 detected signal using second input signal.
5185 It needs two input streams and returns one output stream.
5186 First input stream will be processed depending on second stream signal.
5187 The filtered signal then can be filtered with other filters in later stages of
5188 processing. See @ref{pan} and @ref{amerge} filter.
5189
5190 The filter accepts the following options:
5191
5192 @table @option
5193 @item level_in
5194 Set input gain. Default is 1. Range is between 0.015625 and 64.
5195
5196 @item mode
5197 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
5198 Default is @code{downward}.
5199
5200 @item threshold
5201 If a signal of second stream raises above this level it will affect the gain
5202 reduction of first stream.
5203 By default is 0.125. Range is between 0.00097563 and 1.
5204
5205 @item ratio
5206 Set a ratio about which the signal is reduced. 1:2 means that if the level
5207 raised 4dB above the threshold, it will be only 2dB above after the reduction.
5208 Default is 2. Range is between 1 and 20.
5209
5210 @item attack
5211 Amount of milliseconds the signal has to rise above the threshold before gain
5212 reduction starts. Default is 20. Range is between 0.01 and 2000.
5213
5214 @item release
5215 Amount of milliseconds the signal has to fall below the threshold before
5216 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
5217
5218 @item makeup
5219 Set the amount by how much signal will be amplified after processing.
5220 Default is 1. Range is from 1 to 64.
5221
5222 @item knee
5223 Curve the sharp knee around the threshold to enter gain reduction more softly.
5224 Default is 2.82843. Range is between 1 and 8.
5225
5226 @item link
5227 Choose if the @code{average} level between all channels of side-chain stream
5228 or the louder(@code{maximum}) channel of side-chain stream affects the
5229 reduction. Default is @code{average}.
5230
5231 @item detection
5232 Should the exact signal be taken in case of @code{peak} or an RMS one in case
5233 of @code{rms}. Default is @code{rms} which is mainly smoother.
5234
5235 @item level_sc
5236 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
5237
5238 @item mix
5239 How much to use compressed signal in output. Default is 1.
5240 Range is between 0 and 1.
5241 @end table
5242
5243 @subsection Commands
5244
5245 This filter supports the all above options as @ref{commands}.
5246
5247 @subsection Examples
5248
5249 @itemize
5250 @item
5251 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
5252 depending on the signal of 2nd input and later compressed signal to be
5253 merged with 2nd input:
5254 @example
5255 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
5256 @end example
5257 @end itemize
5258
5259 @section sidechaingate
5260
5261 A sidechain gate acts like a normal (wideband) gate but has the ability to
5262 filter the detected signal before sending it to the gain reduction stage.
5263 Normally a gate uses the full range signal to detect a level above the
5264 threshold.
5265 For example: If you cut all lower frequencies from your sidechain signal
5266 the gate will decrease the volume of your track only if not enough highs
5267 appear. With this technique you are able to reduce the resonation of a
5268 natural drum or remove "rumbling" of muted strokes from a heavily distorted
5269 guitar.
5270 It needs two input streams and returns one output stream.
5271 First input stream will be processed depending on second stream signal.
5272
5273 The filter accepts the following options:
5274
5275 @table @option
5276 @item level_in
5277 Set input level before filtering.
5278 Default is 1. Allowed range is from 0.015625 to 64.
5279
5280 @item mode
5281 Set the mode of operation. Can be @code{upward} or @code{downward}.
5282 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
5283 will be amplified, expanding dynamic range in upward direction.
5284 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
5285
5286 @item range
5287 Set the level of gain reduction when the signal is below the threshold.
5288 Default is 0.06125. Allowed range is from 0 to 1.
5289 Setting this to 0 disables reduction and then filter behaves like expander.
5290
5291 @item threshold
5292 If a signal rises above this level the gain reduction is released.
5293 Default is 0.125. Allowed range is from 0 to 1.
5294
5295 @item ratio
5296 Set a ratio about which the signal is reduced.
5297 Default is 2. Allowed range is from 1 to 9000.
5298
5299 @item attack
5300 Amount of milliseconds the signal has to rise above the threshold before gain
5301 reduction stops.
5302 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
5303
5304 @item release
5305 Amount of milliseconds the signal has to fall below the threshold before the
5306 reduction is increased again. Default is 250 milliseconds.
5307 Allowed range is from 0.01 to 9000.
5308
5309 @item makeup
5310 Set amount of amplification of signal after processing.
5311 Default is 1. Allowed range is from 1 to 64.
5312
5313 @item knee
5314 Curve the sharp knee around the threshold to enter gain reduction more softly.
5315 Default is 2.828427125. Allowed range is from 1 to 8.
5316
5317 @item detection
5318 Choose if exact signal should be taken for detection or an RMS like one.
5319 Default is rms. Can be peak or rms.
5320
5321 @item link
5322 Choose if the average level between all channels or the louder channel affects
5323 the reduction.
5324 Default is average. Can be average or maximum.
5325
5326 @item level_sc
5327 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
5328 @end table
5329
5330 @subsection Commands
5331
5332 This filter supports the all above options as @ref{commands}.
5333
5334 @section silencedetect
5335
5336 Detect silence in an audio stream.
5337
5338 This filter logs a message when it detects that the input audio volume is less
5339 or equal to a noise tolerance value for a duration greater or equal to the
5340 minimum detected noise duration.
5341
5342 The printed times and duration are expressed in seconds. The
5343 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
5344 is set on the first frame whose timestamp equals or exceeds the detection
5345 duration and it contains the timestamp of the first frame of the silence.
5346
5347 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
5348 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
5349 keys are set on the first frame after the silence. If @option{mono} is
5350 enabled, and each channel is evaluated separately, the @code{.X}
5351 suffixed keys are used, and @code{X} corresponds to the channel number.
5352
5353 The filter accepts the following options:
5354
5355 @table @option
5356 @item noise, n
5357 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
5358 specified value) or amplitude ratio. Default is -60dB, or 0.001.
5359
5360 @item duration, d
5361 Set silence duration until notification (default is 2 seconds). See
5362 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5363 for the accepted syntax.
5364
5365 @item mono, m
5366 Process each channel separately, instead of combined. By default is disabled.
5367 @end table
5368
5369 @subsection Examples
5370
5371 @itemize
5372 @item
5373 Detect 5 seconds of silence with -50dB noise tolerance:
5374 @example
5375 silencedetect=n=-50dB:d=5
5376 @end example
5377
5378 @item
5379 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
5380 tolerance in @file{silence.mp3}:
5381 @example
5382 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
5383 @end example
5384 @end itemize
5385
5386 @section silenceremove
5387
5388 Remove silence from the beginning, middle or end of the audio.
5389
5390 The filter accepts the following options:
5391
5392 @table @option
5393 @item start_periods
5394 This value is used to indicate if audio should be trimmed at beginning of
5395 the audio. A value of zero indicates no silence should be trimmed from the
5396 beginning. When specifying a non-zero value, it trims audio up until it
5397 finds non-silence. Normally, when trimming silence from beginning of audio
5398 the @var{start_periods} will be @code{1} but it can be increased to higher
5399 values to trim all audio up to specific count of non-silence periods.
5400 Default value is @code{0}.
5401
5402 @item start_duration
5403 Specify the amount of time that non-silence must be detected before it stops
5404 trimming audio. By increasing the duration, bursts of noises can be treated
5405 as silence and trimmed off. Default value is @code{0}.
5406
5407 @item start_threshold
5408 This indicates what sample value should be treated as silence. For digital
5409 audio, a value of @code{0} may be fine but for audio recorded from analog,
5410 you may wish to increase the value to account for background noise.
5411 Can be specified in dB (in case "dB" is appended to the specified value)
5412 or amplitude ratio. Default value is @code{0}.
5413
5414 @item start_silence
5415 Specify max duration of silence at beginning that will be kept after
5416 trimming. Default is 0, which is equal to trimming all samples detected
5417 as silence.
5418
5419 @item start_mode
5420 Specify mode of detection of silence end in start of multi-channel audio.
5421 Can be @var{any} or @var{all}. Default is @var{any}.
5422 With @var{any}, any sample that is detected as non-silence will cause
5423 stopped trimming of silence.
5424 With @var{all}, only if all channels are detected as non-silence will cause
5425 stopped trimming of silence.
5426
5427 @item stop_periods
5428 Set the count for trimming silence from the end of audio.
5429 To remove silence from the middle of a file, specify a @var{stop_periods}
5430 that is negative. This value is then treated as a positive value and is
5431 used to indicate the effect should restart processing as specified by
5432 @var{start_periods}, making it suitable for removing periods of silence
5433 in the middle of the audio.
5434 Default value is @code{0}.
5435
5436 @item stop_duration
5437 Specify a duration of silence that must exist before audio is not copied any
5438 more. By specifying a higher duration, silence that is wanted can be left in
5439 the audio.
5440 Default value is @code{0}.
5441
5442 @item stop_threshold
5443 This is the same as @option{start_threshold} but for trimming silence from
5444 the end of audio.
5445 Can be specified in dB (in case "dB" is appended to the specified value)
5446 or amplitude ratio. Default value is @code{0}.
5447
5448 @item stop_silence
5449 Specify max duration of silence at end that will be kept after
5450 trimming. Default is 0, which is equal to trimming all samples detected
5451 as silence.
5452
5453 @item stop_mode
5454 Specify mode of detection of silence start in end of multi-channel audio.
5455 Can be @var{any} or @var{all}. Default is @var{any}.
5456 With @var{any}, any sample that is detected as non-silence will cause
5457 stopped trimming of silence.
5458 With @var{all}, only if all channels are detected as non-silence will cause
5459 stopped trimming of silence.
5460
5461 @item detection
5462 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
5463 and works better with digital silence which is exactly 0.
5464 Default value is @code{rms}.
5465
5466 @item window
5467 Set duration in number of seconds used to calculate size of window in number
5468 of samples for detecting silence.
5469 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
5470 @end table
5471
5472 @subsection Examples
5473
5474 @itemize
5475 @item
5476 The following example shows how this filter can be used to start a recording
5477 that does not contain the delay at the start which usually occurs between
5478 pressing the record button and the start of the performance:
5479 @example
5480 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
5481 @end example
5482
5483 @item
5484 Trim all silence encountered from beginning to end where there is more than 1
5485 second of silence in audio:
5486 @example
5487 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
5488 @end example
5489
5490 @item
5491 Trim all digital silence samples, using peak detection, from beginning to end
5492 where there is more than 0 samples of digital silence in audio and digital
5493 silence is detected in all channels at same positions in stream:
5494 @example
5495 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
5496 @end example
5497 @end itemize
5498
5499 @section sofalizer
5500
5501 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
5502 loudspeakers around the user for binaural listening via headphones (audio
5503 formats up to 9 channels supported).
5504 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
5505 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
5506 Austrian Academy of Sciences.
5507
5508 To enable compilation of this filter you need to configure FFmpeg with
5509 @code{--enable-libmysofa}.
5510
5511 The filter accepts the following options:
5512
5513 @table @option
5514 @item sofa
5515 Set the SOFA file used for rendering.
5516
5517 @item gain
5518 Set gain applied to audio. Value is in dB. Default is 0.
5519
5520 @item rotation
5521 Set rotation of virtual loudspeakers in deg. Default is 0.
5522
5523 @item elevation
5524 Set elevation of virtual speakers in deg. Default is 0.
5525
5526 @item radius
5527 Set distance in meters between loudspeakers and the listener with near-field
5528 HRTFs. Default is 1.
5529
5530 @item type
5531 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
5532 processing audio in time domain which is slow.
5533 @var{freq} is processing audio in frequency domain which is fast.
5534 Default is @var{freq}.
5535
5536 @item speakers
5537 Set custom positions of virtual loudspeakers. Syntax for this option is:
5538 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5539 Each virtual loudspeaker is described with short channel name following with
5540 azimuth and elevation in degrees.
5541 Each virtual loudspeaker description is separated by '|'.
5542 For example to override front left and front right channel positions use:
5543 'speakers=FL 45 15|FR 345 15'.
5544 Descriptions with unrecognised channel names are ignored.
5545
5546 @item lfegain
5547 Set custom gain for LFE channels. Value is in dB. Default is 0.
5548
5549 @item framesize
5550 Set custom frame size in number of samples. Default is 1024.
5551 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5552 is set to @var{freq}.
5553
5554 @item normalize
5555 Should all IRs be normalized upon importing SOFA file.
5556 By default is enabled.
5557
5558 @item interpolate
5559 Should nearest IRs be interpolated with neighbor IRs if exact position
5560 does not match. By default is disabled.
5561
5562 @item minphase
5563 Minphase all IRs upon loading of SOFA file. By default is disabled.
5564
5565 @item anglestep
5566 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5567
5568 @item radstep
5569 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5570 @end table
5571
5572 @subsection Examples
5573
5574 @itemize
5575 @item
5576 Using ClubFritz6 sofa file:
5577 @example
5578 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5579 @end example
5580
5581 @item
5582 Using ClubFritz12 sofa file and bigger radius with small rotation:
5583 @example
5584 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5585 @end example
5586
5587 @item
5588 Similar as above but with custom speaker positions for front left, front right, back left and back right
5589 and also with custom gain:
5590 @example
5591 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5592 @end example
5593 @end itemize
5594
5595 @section speechnorm
5596 Speech Normalizer.
5597
5598 This filter expands or compresses each half-cycle of audio samples
5599 (local set of samples all above or all below zero and between two nearest zero crossings) depending
5600 on threshold value, so audio reaches target peak value under conditions controlled by below options.
5601
5602 The filter accepts the following options:
5603
5604 @table @option
5605 @item peak, p
5606 Set the expansion target peak value. This specifies the highest allowed absolute amplitude
5607 level for the normalized audio input. Default value is 0.95. Allowed range is from 0.0 to 1.0.
5608
5609 @item expansion, e
5610 Set the maximum expansion factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5611 This option controls maximum local half-cycle of samples expansion. The maximum expansion
5612 would be such that local peak value reaches target peak value but never to surpass it and that
5613 ratio between new and previous peak value does not surpass this option value.
5614
5615 @item compression, c
5616 Set the maximum compression factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5617 This option controls maximum local half-cycle of samples compression. This option is used
5618 only if @option{threshold} option is set to value greater than 0.0, then in such cases
5619 when local peak is lower or same as value set by @option{threshold} all samples belonging to
5620 that peak's half-cycle will be compressed by current compression factor.
5621
5622 @item threshold, t
5623 Set the threshold value. Default value is 0.0. Allowed range is from 0.0 to 1.0.
5624 This option specifies which half-cycles of samples will be compressed and which will be expanded.
5625 Any half-cycle samples with their local peak value below or same as this option value will be
5626 compressed by current compression factor, otherwise, if greater than threshold value they will be
5627 expanded with expansion factor so that it could reach peak target value but never surpass it.
5628
5629 @item raise, r
5630 Set the expansion raising amount per each half-cycle of samples. Default value is 0.001.
5631 Allowed range is from 0.0 to 1.0. This controls how fast expansion factor is raised per
5632 each new half-cycle until it reaches @option{expansion} value.
5633 Setting this options too high may lead to distortions.
5634
5635 @item fall, f
5636 Set the compression raising amount per each half-cycle of samples. Default value is 0.001.
5637 Allowed range is from 0.0 to 1.0. This controls how fast compression factor is raised per
5638 each new half-cycle until it reaches @option{compression} value.
5639
5640 @item channels, h
5641 Specify which channels to filter, by default all available channels are filtered.
5642
5643 @item invert, i
5644 Enable inverted filtering, by default is disabled. This inverts interpretation of @option{threshold}
5645 option. When enabled any half-cycle of samples with their local peak value below or same as
5646 @option{threshold} option will be expanded otherwise it will be compressed.
5647
5648 @item link, l
5649 Link channels when calculating gain applied to each filtered channel sample, by default is disabled.
5650 When disabled each filtered channel gain calculation is independent, otherwise when this option
5651 is enabled the minimum of all possible gains for each filtered channel is used.
5652 @end table
5653
5654 @subsection Commands
5655
5656 This filter supports the all above options as @ref{commands}.
5657
5658 @section stereotools
5659
5660 This filter has some handy utilities to manage stereo signals, for converting
5661 M/S stereo recordings to L/R signal while having control over the parameters
5662 or spreading the stereo image of master track.
5663
5664 The filter accepts the following options:
5665
5666 @table @option
5667 @item level_in
5668 Set input level before filtering for both channels. Defaults is 1.
5669 Allowed range is from 0.015625 to 64.
5670
5671 @item level_out
5672 Set output level after filtering for both channels. Defaults is 1.
5673 Allowed range is from 0.015625 to 64.
5674
5675 @item balance_in
5676 Set input balance between both channels. Default is 0.
5677 Allowed range is from -1 to 1.
5678
5679 @item balance_out
5680 Set output balance between both channels. Default is 0.
5681 Allowed range is from -1 to 1.
5682
5683 @item softclip
5684 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5685 clipping. Disabled by default.
5686
5687 @item mutel
5688 Mute the left channel. Disabled by default.
5689
5690 @item muter
5691 Mute the right channel. Disabled by default.
5692
5693 @item phasel
5694 Change the phase of the left channel. Disabled by default.
5695
5696 @item phaser
5697 Change the phase of the right channel. Disabled by default.
5698
5699 @item mode
5700 Set stereo mode. Available values are:
5701
5702 @table @samp
5703 @item lr>lr
5704 Left/Right to Left/Right, this is default.
5705
5706 @item lr>ms
5707 Left/Right to Mid/Side.
5708
5709 @item ms>lr
5710 Mid/Side to Left/Right.
5711
5712 @item lr>ll
5713 Left/Right to Left/Left.
5714
5715 @item lr>rr
5716 Left/Right to Right/Right.
5717
5718 @item lr>l+r
5719 Left/Right to Left + Right.
5720
5721 @item lr>rl
5722 Left/Right to Right/Left.
5723
5724 @item ms>ll
5725 Mid/Side to Left/Left.
5726
5727 @item ms>rr
5728 Mid/Side to Right/Right.
5729
5730 @item ms>rl
5731 Mid/Side to Right/Left.
5732
5733 @item lr>l-r
5734 Left/Right to Left - Right.
5735 @end table
5736
5737 @item slev
5738 Set level of side signal. Default is 1.
5739 Allowed range is from 0.015625 to 64.
5740
5741 @item sbal
5742 Set balance of side signal. Default is 0.
5743 Allowed range is from -1 to 1.
5744
5745 @item mlev
5746 Set level of the middle signal. Default is 1.
5747 Allowed range is from 0.015625 to 64.
5748
5749 @item mpan
5750 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5751
5752 @item base
5753 Set stereo base between mono and inversed channels. Default is 0.
5754 Allowed range is from -1 to 1.
5755
5756 @item delay
5757 Set delay in milliseconds how much to delay left from right channel and
5758 vice versa. Default is 0. Allowed range is from -20 to 20.
5759
5760 @item sclevel
5761 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5762
5763 @item phase
5764 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5765
5766 @item bmode_in, bmode_out
5767 Set balance mode for balance_in/balance_out option.
5768
5769 Can be one of the following:
5770
5771 @table @samp
5772 @item balance
5773 Classic balance mode. Attenuate one channel at time.
5774 Gain is raised up to 1.
5775
5776 @item amplitude
5777 Similar as classic mode above but gain is raised up to 2.
5778
5779 @item power
5780 Equal power distribution, from -6dB to +6dB range.
5781 @end table
5782 @end table
5783
5784 @subsection Commands
5785
5786 This filter supports the all above options as @ref{commands}.
5787
5788 @subsection Examples
5789
5790 @itemize
5791 @item
5792 Apply karaoke like effect:
5793 @example
5794 stereotools=mlev=0.015625
5795 @end example
5796
5797 @item
5798 Convert M/S signal to L/R:
5799 @example
5800 "stereotools=mode=ms>lr"
5801 @end example
5802 @end itemize
5803
5804 @section stereowiden
5805
5806 This filter enhance the stereo effect by suppressing signal common to both
5807 channels and by delaying the signal of left into right and vice versa,
5808 thereby widening the stereo effect.
5809
5810 The filter accepts the following options:
5811
5812 @table @option
5813 @item delay
5814 Time in milliseconds of the delay of left signal into right and vice versa.
5815 Default is 20 milliseconds.
5816
5817 @item feedback
5818 Amount of gain in delayed signal into right and vice versa. Gives a delay
5819 effect of left signal in right output and vice versa which gives widening
5820 effect. Default is 0.3.
5821
5822 @item crossfeed
5823 Cross feed of left into right with inverted phase. This helps in suppressing
5824 the mono. If the value is 1 it will cancel all the signal common to both
5825 channels. Default is 0.3.
5826
5827 @item drymix
5828 Set level of input signal of original channel. Default is 0.8.
5829 @end table
5830
5831 @subsection Commands
5832
5833 This filter supports the all above options except @code{delay} as @ref{commands}.
5834
5835 @section superequalizer
5836 Apply 18 band equalizer.
5837
5838 The filter accepts the following options:
5839 @table @option
5840 @item 1b
5841 Set 65Hz band gain.
5842 @item 2b
5843 Set 92Hz band gain.
5844 @item 3b
5845 Set 131Hz band gain.
5846 @item 4b
5847 Set 185Hz band gain.
5848 @item 5b
5849 Set 262Hz band gain.
5850 @item 6b
5851 Set 370Hz band gain.
5852 @item 7b
5853 Set 523Hz band gain.
5854 @item 8b
5855 Set 740Hz band gain.
5856 @item 9b
5857 Set 1047Hz band gain.
5858 @item 10b
5859 Set 1480Hz band gain.
5860 @item 11b
5861 Set 2093Hz band gain.
5862 @item 12b
5863 Set 2960Hz band gain.
5864 @item 13b
5865 Set 4186Hz band gain.
5866 @item 14b
5867 Set 5920Hz band gain.
5868 @item 15b
5869 Set 8372Hz band gain.
5870 @item 16b
5871 Set 11840Hz band gain.
5872 @item 17b
5873 Set 16744Hz band gain.
5874 @item 18b
5875 Set 20000Hz band gain.
5876 @end table
5877
5878 @section surround
5879 Apply audio surround upmix filter.
5880
5881 This filter allows to produce multichannel output from audio stream.
5882
5883 The filter accepts the following options:
5884
5885 @table @option
5886 @item chl_out
5887 Set output channel layout. By default, this is @var{5.1}.
5888
5889 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5890 for the required syntax.
5891
5892 @item chl_in
5893 Set input channel layout. By default, this is @var{stereo}.
5894
5895 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5896 for the required syntax.
5897
5898 @item level_in
5899 Set input volume level. By default, this is @var{1}.
5900
5901 @item level_out
5902 Set output volume level. By default, this is @var{1}.
5903
5904 @item lfe
5905 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5906
5907 @item lfe_low
5908 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5909
5910 @item lfe_high
5911 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5912
5913 @item lfe_mode
5914 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5915 In @var{add} mode, LFE channel is created from input audio and added to output.
5916 In @var{sub} mode, LFE channel is created from input audio and added to output but
5917 also all non-LFE output channels are subtracted with output LFE channel.
5918
5919 @item angle
5920 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5921 Default is @var{90}.
5922
5923 @item fc_in
5924 Set front center input volume. By default, this is @var{1}.
5925
5926 @item fc_out
5927 Set front center output volume. By default, this is @var{1}.
5928
5929 @item fl_in
5930 Set front left input volume. By default, this is @var{1}.
5931
5932 @item fl_out
5933 Set front left output volume. By default, this is @var{1}.
5934
5935 @item fr_in
5936 Set front right input volume. By default, this is @var{1}.
5937
5938 @item fr_out
5939 Set front right output volume. By default, this is @var{1}.
5940
5941 @item sl_in
5942 Set side left input volume. By default, this is @var{1}.
5943
5944 @item sl_out
5945 Set side left output volume. By default, this is @var{1}.
5946
5947 @item sr_in
5948 Set side right input volume. By default, this is @var{1}.
5949
5950 @item sr_out
5951 Set side right output volume. By default, this is @var{1}.
5952
5953 @item bl_in
5954 Set back left input volume. By default, this is @var{1}.
5955
5956 @item bl_out
5957 Set back left output volume. By default, this is @var{1}.
5958
5959 @item br_in
5960 Set back right input volume. By default, this is @var{1}.
5961
5962 @item br_out
5963 Set back right output volume. By default, this is @var{1}.
5964
5965 @item bc_in
5966 Set back center input volume. By default, this is @var{1}.
5967
5968 @item bc_out
5969 Set back center output volume. By default, this is @var{1}.
5970
5971 @item lfe_in
5972 Set LFE input volume. By default, this is @var{1}.
5973
5974 @item lfe_out
5975 Set LFE output volume. By default, this is @var{1}.
5976
5977 @item allx
5978 Set spread usage of stereo image across X axis for all channels.
5979
5980 @item ally
5981 Set spread usage of stereo image across Y axis for all channels.
5982
5983 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5984 Set spread usage of stereo image across X axis for each channel.
5985
5986 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5987 Set spread usage of stereo image across Y axis for each channel.
5988
5989 @item win_size
5990 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5991
5992 @item win_func
5993 Set window function.
5994
5995 It accepts the following values:
5996 @table @samp
5997 @item rect
5998 @item bartlett
5999 @item hann, hanning
6000 @item hamming
6001 @item blackman
6002 @item welch
6003 @item flattop
6004 @item bharris
6005 @item bnuttall
6006 @item bhann
6007 @item sine
6008 @item nuttall
6009 @item lanczos
6010 @item gauss
6011 @item tukey
6012 @item dolph
6013 @item cauchy
6014 @item parzen
6015 @item poisson
6016 @item bohman
6017 @end table
6018 Default is @code{hann}.
6019
6020 @item overlap
6021 Set window overlap. If set to 1, the recommended overlap for selected
6022 window function will be picked. Default is @code{0.5}.
6023 @end table
6024
6025 @section treble, highshelf
6026
6027 Boost or cut treble (upper) frequencies of the audio using a two-pole
6028 shelving filter with a response similar to that of a standard
6029 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
6030
6031 The filter accepts the following options:
6032
6033 @table @option
6034 @item gain, g
6035 Give the gain at whichever is the lower of ~22 kHz and the
6036 Nyquist frequency. Its useful range is about -20 (for a large cut)
6037 to +20 (for a large boost). Beware of clipping when using a positive gain.
6038
6039 @item frequency, f
6040 Set the filter's central frequency and so can be used
6041 to extend or reduce the frequency range to be boosted or cut.
6042 The default value is @code{3000} Hz.
6043
6044 @item width_type, t
6045 Set method to specify band-width of filter.
6046 @table @option
6047 @item h
6048 Hz
6049 @item q
6050 Q-Factor
6051 @item o
6052 octave
6053 @item s
6054 slope
6055 @item k
6056 kHz
6057 @end table
6058
6059 @item width, w
6060 Determine how steep is the filter's shelf transition.
6061
6062 @item poles, p
6063 Set number of poles. Default is 2.
6064
6065 @item mix, m
6066 How much to use filtered signal in output. Default is 1.
6067 Range is between 0 and 1.
6068
6069 @item channels, c
6070 Specify which channels to filter, by default all available are filtered.
6071
6072 @item normalize, n
6073 Normalize biquad coefficients, by default is disabled.
6074 Enabling it will normalize magnitude response at DC to 0dB.
6075
6076 @item transform, a
6077 Set transform type of IIR filter.
6078 @table @option
6079 @item di
6080 @item dii
6081 @item tdii
6082 @item latt
6083 @end table
6084
6085 @item precision, r
6086 Set precison of filtering.
6087 @table @option
6088 @item auto
6089 Pick automatic sample format depending on surround filters.
6090 @item s16
6091 Always use signed 16-bit.
6092 @item s32
6093 Always use signed 32-bit.
6094 @item f32
6095 Always use float 32-bit.
6096 @item f64
6097 Always use float 64-bit.
6098 @end table
6099 @end table
6100
6101 @subsection Commands
6102
6103 This filter supports the following commands:
6104 @table @option
6105 @item frequency, f
6106 Change treble frequency.
6107 Syntax for the command is : "@var{frequency}"
6108
6109 @item width_type, t
6110 Change treble width_type.
6111 Syntax for the command is : "@var{width_type}"
6112
6113 @item width, w
6114 Change treble width.
6115 Syntax for the command is : "@var{width}"
6116
6117 @item gain, g
6118 Change treble gain.
6119 Syntax for the command is : "@var{gain}"
6120
6121 @item mix, m
6122 Change treble mix.
6123 Syntax for the command is : "@var{mix}"
6124 @end table
6125
6126 @section tremolo
6127
6128 Sinusoidal amplitude modulation.
6129
6130 The filter accepts the following options:
6131
6132 @table @option
6133 @item f
6134 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
6135 (20 Hz or lower) will result in a tremolo effect.
6136 This filter may also be used as a ring modulator by specifying
6137 a modulation frequency higher than 20 Hz.
6138 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6139
6140 @item d
6141 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6142 Default value is 0.5.
6143 @end table
6144
6145 @section vibrato
6146
6147 Sinusoidal phase modulation.
6148
6149 The filter accepts the following options:
6150
6151 @table @option
6152 @item f
6153 Modulation frequency in Hertz.
6154 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6155
6156 @item d
6157 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6158 Default value is 0.5.
6159 @end table
6160
6161 @section volume
6162
6163 Adjust the input audio volume.
6164
6165 It accepts the following parameters:
6166 @table @option
6167
6168 @item volume
6169 Set audio volume expression.
6170
6171 Output values are clipped to the maximum value.
6172
6173 The output audio volume is given by the relation:
6174 @example
6175 @var{output_volume} = @var{volume} * @var{input_volume}
6176 @end example
6177
6178 The default value for @var{volume} is "1.0".
6179
6180 @item precision
6181 This parameter represents the mathematical precision.
6182
6183 It determines which input sample formats will be allowed, which affects the
6184 precision of the volume scaling.
6185
6186 @table @option
6187 @item fixed
6188 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
6189 @item float
6190 32-bit floating-point; this limits input sample format to FLT. (default)
6191 @item double
6192 64-bit floating-point; this limits input sample format to DBL.
6193 @end table
6194
6195 @item replaygain
6196 Choose the behaviour on encountering ReplayGain side data in input frames.
6197
6198 @table @option
6199 @item drop
6200 Remove ReplayGain side data, ignoring its contents (the default).
6201
6202 @item ignore
6203 Ignore ReplayGain side data, but leave it in the frame.
6204
6205 @item track
6206 Prefer the track gain, if present.
6207
6208 @item album
6209 Prefer the album gain, if present.
6210 @end table
6211
6212 @item replaygain_preamp
6213 Pre-amplification gain in dB to apply to the selected replaygain gain.
6214
6215 Default value for @var{replaygain_preamp} is 0.0.
6216
6217 @item replaygain_noclip
6218 Prevent clipping by limiting the gain applied.
6219
6220 Default value for @var{replaygain_noclip} is 1.
6221
6222 @item eval
6223 Set when the volume expression is evaluated.
6224
6225 It accepts the following values:
6226 @table @samp
6227 @item once
6228 only evaluate expression once during the filter initialization, or
6229 when the @samp{volume} command is sent
6230
6231 @item frame
6232 evaluate expression for each incoming frame
6233 @end table
6234
6235 Default value is @samp{once}.
6236 @end table
6237
6238 The volume expression can contain the following parameters.
6239
6240 @table @option
6241 @item n
6242 frame number (starting at zero)
6243 @item nb_channels
6244 number of channels
6245 @item nb_consumed_samples
6246 number of samples consumed by the filter
6247 @item nb_samples
6248 number of samples in the current frame
6249 @item pos
6250 original frame position in the file
6251 @item pts
6252 frame PTS
6253 @item sample_rate
6254 sample rate
6255 @item startpts
6256 PTS at start of stream
6257 @item startt
6258 time at start of stream
6259 @item t
6260 frame time
6261 @item tb
6262 timestamp timebase
6263 @item volume
6264 last set volume value
6265 @end table
6266
6267 Note that when @option{eval} is set to @samp{once} only the
6268 @var{sample_rate} and @var{tb} variables are available, all other
6269 variables will evaluate to NAN.
6270
6271 @subsection Commands
6272
6273 This filter supports the following commands:
6274 @table @option
6275 @item volume
6276 Modify the volume expression.
6277 The command accepts the same syntax of the corresponding option.
6278
6279 If the specified expression is not valid, it is kept at its current
6280 value.
6281 @end table
6282
6283 @subsection Examples
6284
6285 @itemize
6286 @item
6287 Halve the input audio volume:
6288 @example
6289 volume=volume=0.5
6290 volume=volume=1/2
6291 volume=volume=-6.0206dB
6292 @end example
6293
6294 In all the above example the named key for @option{volume} can be
6295 omitted, for example like in:
6296 @example
6297 volume=0.5
6298 @end example
6299
6300 @item
6301 Increase input audio power by 6 decibels using fixed-point precision:
6302 @example
6303 volume=volume=6dB:precision=fixed
6304 @end example
6305
6306 @item
6307 Fade volume after time 10 with an annihilation period of 5 seconds:
6308 @example
6309 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
6310 @end example
6311 @end itemize
6312
6313 @section volumedetect
6314
6315 Detect the volume of the input video.
6316
6317 The filter has no parameters. The input is not modified. Statistics about
6318 the volume will be printed in the log when the input stream end is reached.
6319
6320 In particular it will show the mean volume (root mean square), maximum
6321 volume (on a per-sample basis), and the beginning of a histogram of the
6322 registered volume values (from the maximum value to a cumulated 1/1000 of
6323 the samples).
6324
6325 All volumes are in decibels relative to the maximum PCM value.
6326
6327 @subsection Examples
6328
6329 Here is an excerpt of the output:
6330 @example
6331 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
6332 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
6333 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
6334 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
6335 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
6336 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
6337 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
6338 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
6339 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
6340 @end example
6341
6342 It means that:
6343 @itemize
6344 @item
6345 The mean square energy is approximately -27 dB, or 10^-2.7.
6346 @item
6347 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
6348 @item
6349 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
6350 @end itemize
6351
6352 In other words, raising the volume by +4 dB does not cause any clipping,
6353 raising it by +5 dB causes clipping for 6 samples, etc.
6354
6355 @c man end AUDIO FILTERS
6356
6357 @chapter Audio Sources
6358 @c man begin AUDIO SOURCES
6359
6360 Below is a description of the currently available audio sources.
6361
6362 @section abuffer
6363
6364 Buffer audio frames, and make them available to the filter chain.
6365
6366 This source is mainly intended for a programmatic use, in particular
6367 through the interface defined in @file{libavfilter/buffersrc.h}.
6368
6369 It accepts the following parameters:
6370 @table @option
6371
6372 @item time_base
6373 The timebase which will be used for timestamps of submitted frames. It must be
6374 either a floating-point number or in @var{numerator}/@var{denominator} form.
6375
6376 @item sample_rate
6377 The sample rate of the incoming audio buffers.
6378
6379 @item sample_fmt
6380 The sample format of the incoming audio buffers.
6381 Either a sample format name or its corresponding integer representation from
6382 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
6383
6384 @item channel_layout
6385 The channel layout of the incoming audio buffers.
6386 Either a channel layout name from channel_layout_map in
6387 @file{libavutil/channel_layout.c} or its corresponding integer representation
6388 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
6389
6390 @item channels
6391 The number of channels of the incoming audio buffers.
6392 If both @var{channels} and @var{channel_layout} are specified, then they
6393 must be consistent.
6394
6395 @end table
6396
6397 @subsection Examples
6398
6399 @example
6400 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
6401 @end example
6402
6403 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
6404 Since the sample format with name "s16p" corresponds to the number
6405 6 and the "stereo" channel layout corresponds to the value 0x3, this is
6406 equivalent to:
6407 @example
6408 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
6409 @end example
6410
6411 @section aevalsrc
6412
6413 Generate an audio signal specified by an expression.
6414
6415 This source accepts in input one or more expressions (one for each
6416 channel), which are evaluated and used to generate a corresponding
6417 audio signal.
6418
6419 This source accepts the following options:
6420
6421 @table @option
6422 @item exprs
6423 Set the '|'-separated expressions list for each separate channel. In case the
6424 @option{channel_layout} option is not specified, the selected channel layout
6425 depends on the number of provided expressions. Otherwise the last
6426 specified expression is applied to the remaining output channels.
6427
6428 @item channel_layout, c
6429 Set the channel layout. The number of channels in the specified layout
6430 must be equal to the number of specified expressions.
6431
6432 @item duration, d
6433 Set the minimum duration of the sourced audio. See
6434 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6435 for the accepted syntax.
6436 Note that the resulting duration may be greater than the specified
6437 duration, as the generated audio is always cut at the end of a
6438 complete frame.
6439
6440 If not specified, or the expressed duration is negative, the audio is
6441 supposed to be generated forever.
6442
6443 @item nb_samples, n
6444 Set the number of samples per channel per each output frame,
6445 default to 1024.
6446
6447 @item sample_rate, s
6448 Specify the sample rate, default to 44100.
6449 @end table
6450
6451 Each expression in @var{exprs} can contain the following constants:
6452
6453 @table @option
6454 @item n
6455 number of the evaluated sample, starting from 0
6456
6457 @item t
6458 time of the evaluated sample expressed in seconds, starting from 0
6459
6460 @item s
6461 sample rate
6462
6463 @end table
6464
6465 @subsection Examples
6466
6467 @itemize
6468 @item
6469 Generate silence:
6470 @example
6471 aevalsrc=0
6472 @end example
6473
6474 @item
6475 Generate a sin signal with frequency of 440 Hz, set sample rate to
6476 8000 Hz:
6477 @example
6478 aevalsrc="sin(440*2*PI*t):s=8000"
6479 @end example
6480
6481 @item
6482 Generate a two channels signal, specify the channel layout (Front
6483 Center + Back Center) explicitly:
6484 @example
6485 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
6486 @end example
6487
6488 @item
6489 Generate white noise:
6490 @example
6491 aevalsrc="-2+random(0)"
6492 @end example
6493
6494 @item
6495 Generate an amplitude modulated signal:
6496 @example
6497 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
6498 @end example
6499
6500 @item
6501 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
6502 @example
6503 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
6504 @end example
6505
6506 @end itemize
6507
6508 @section afirsrc
6509
6510 Generate a FIR coefficients using frequency sampling method.
6511
6512 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6513
6514 The filter accepts the following options:
6515
6516 @table @option
6517 @item taps, t
6518 Set number of filter coefficents in output audio stream.
6519 Default value is 1025.
6520
6521 @item frequency, f
6522 Set frequency points from where magnitude and phase are set.
6523 This must be in non decreasing order, and first element must be 0, while last element
6524 must be 1. Elements are separated by white spaces.
6525
6526 @item magnitude, m
6527 Set magnitude value for every frequency point set by @option{frequency}.
6528 Number of values must be same as number of frequency points.
6529 Values are separated by white spaces.
6530
6531 @item phase, p
6532 Set phase value for every frequency point set by @option{frequency}.
6533 Number of values must be same as number of frequency points.
6534 Values are separated by white spaces.
6535
6536 @item sample_rate, r
6537 Set sample rate, default is 44100.
6538
6539 @item nb_samples, n
6540 Set number of samples per each frame. Default is 1024.
6541
6542 @item win_func, w
6543 Set window function. Default is blackman.
6544 @end table
6545
6546 @section anullsrc
6547
6548 The null audio source, return unprocessed audio frames. It is mainly useful
6549 as a template and to be employed in analysis / debugging tools, or as
6550 the source for filters which ignore the input data (for example the sox
6551 synth filter).
6552
6553 This source accepts the following options:
6554
6555 @table @option
6556
6557 @item channel_layout, cl
6558
6559 Specifies the channel layout, and can be either an integer or a string
6560 representing a channel layout. The default value of @var{channel_layout}
6561 is "stereo".
6562
6563 Check the channel_layout_map definition in
6564 @file{libavutil/channel_layout.c} for the mapping between strings and
6565 channel layout values.
6566
6567 @item sample_rate, r
6568 Specifies the sample rate, and defaults to 44100.
6569
6570 @item nb_samples, n
6571 Set the number of samples per requested frames.
6572
6573 @item duration, d
6574 Set the duration of the sourced audio. See
6575 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6576 for the accepted syntax.
6577
6578 If not specified, or the expressed duration is negative, the audio is
6579 supposed to be generated forever.
6580 @end table
6581
6582 @subsection Examples
6583
6584 @itemize
6585 @item
6586 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
6587 @example
6588 anullsrc=r=48000:cl=4
6589 @end example
6590
6591 @item
6592 Do the same operation with a more obvious syntax:
6593 @example
6594 anullsrc=r=48000:cl=mono
6595 @end example
6596 @end itemize
6597
6598 All the parameters need to be explicitly defined.
6599
6600 @section flite
6601
6602 Synthesize a voice utterance using the libflite library.
6603
6604 To enable compilation of this filter you need to configure FFmpeg with
6605 @code{--enable-libflite}.
6606
6607 Note that versions of the flite library prior to 2.0 are not thread-safe.
6608
6609 The filter accepts the following options:
6610
6611 @table @option
6612
6613 @item list_voices
6614 If set to 1, list the names of the available voices and exit
6615 immediately. Default value is 0.
6616
6617 @item nb_samples, n
6618 Set the maximum number of samples per frame. Default value is 512.
6619
6620 @item textfile
6621 Set the filename containing the text to speak.
6622
6623 @item text
6624 Set the text to speak.
6625
6626 @item voice, v
6627 Set the voice to use for the speech synthesis. Default value is
6628 @code{kal}. See also the @var{list_voices} option.
6629 @end table
6630
6631 @subsection Examples
6632
6633 @itemize
6634 @item
6635 Read from file @file{speech.txt}, and synthesize the text using the
6636 standard flite voice:
6637 @example
6638 flite=textfile=speech.txt
6639 @end example
6640
6641 @item
6642 Read the specified text selecting the @code{slt} voice:
6643 @example
6644 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6645 @end example
6646
6647 @item
6648 Input text to ffmpeg:
6649 @example
6650 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6651 @end example
6652
6653 @item
6654 Make @file{ffplay} speak the specified text, using @code{flite} and
6655 the @code{lavfi} device:
6656 @example
6657 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6658 @end example
6659 @end itemize
6660
6661 For more information about libflite, check:
6662 @url{http://www.festvox.org/flite/}
6663
6664 @section anoisesrc
6665
6666 Generate a noise audio signal.
6667
6668 The filter accepts the following options:
6669
6670 @table @option
6671 @item sample_rate, r
6672 Specify the sample rate. Default value is 48000 Hz.
6673
6674 @item amplitude, a
6675 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6676 is 1.0.
6677
6678 @item duration, d
6679 Specify the duration of the generated audio stream. Not specifying this option
6680 results in noise with an infinite length.
6681
6682 @item color, colour, c
6683 Specify the color of noise. Available noise colors are white, pink, brown,
6684 blue, violet and velvet. Default color is white.
6685
6686 @item seed, s
6687 Specify a value used to seed the PRNG.
6688
6689 @item nb_samples, n
6690 Set the number of samples per each output frame, default is 1024.
6691 @end table
6692
6693 @subsection Examples
6694
6695 @itemize
6696
6697 @item
6698 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6699 @example
6700 anoisesrc=d=60:c=pink:r=44100:a=0.5
6701 @end example
6702 @end itemize
6703
6704 @section hilbert
6705
6706 Generate odd-tap Hilbert transform FIR coefficients.
6707
6708 The resulting stream can be used with @ref{afir} filter for phase-shifting
6709 the signal by 90 degrees.
6710
6711 This is used in many matrix coding schemes and for analytic signal generation.
6712 The process is often written as a multiplication by i (or j), the imaginary unit.
6713
6714 The filter accepts the following options:
6715
6716 @table @option
6717
6718 @item sample_rate, s
6719 Set sample rate, default is 44100.
6720
6721 @item taps, t
6722 Set length of FIR filter, default is 22051.
6723
6724 @item nb_samples, n
6725 Set number of samples per each frame.
6726
6727 @item win_func, w
6728 Set window function to be used when generating FIR coefficients.
6729 @end table
6730
6731 @section sinc
6732
6733 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6734
6735 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6736
6737 The filter accepts the following options:
6738
6739 @table @option
6740 @item sample_rate, r
6741 Set sample rate, default is 44100.
6742
6743 @item nb_samples, n
6744 Set number of samples per each frame. Default is 1024.
6745
6746 @item hp
6747 Set high-pass frequency. Default is 0.
6748
6749 @item lp
6750 Set low-pass frequency. Default is 0.
6751 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6752 is higher than 0 then filter will create band-pass filter coefficients,
6753 otherwise band-reject filter coefficients.
6754
6755 @item phase
6756 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6757
6758 @item beta
6759 Set Kaiser window beta.
6760
6761 @item att
6762 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6763
6764 @item round
6765 Enable rounding, by default is disabled.
6766
6767 @item hptaps
6768 Set number of taps for high-pass filter.
6769
6770 @item lptaps
6771 Set number of taps for low-pass filter.
6772 @end table
6773
6774 @section sine
6775
6776 Generate an audio signal made of a sine wave with amplitude 1/8.
6777
6778 The audio signal is bit-exact.
6779
6780 The filter accepts the following options:
6781
6782 @table @option
6783
6784 @item frequency, f
6785 Set the carrier frequency. Default is 440 Hz.
6786
6787 @item beep_factor, b
6788 Enable a periodic beep every second with frequency @var{beep_factor} times
6789 the carrier frequency. Default is 0, meaning the beep is disabled.
6790
6791 @item sample_rate, r
6792 Specify the sample rate, default is 44100.
6793
6794 @item duration, d
6795 Specify the duration of the generated audio stream.
6796
6797 @item samples_per_frame
6798 Set the number of samples per output frame.
6799
6800 The expression can contain the following constants:
6801
6802 @table @option
6803 @item n
6804 The (sequential) number of the output audio frame, starting from 0.
6805
6806 @item pts
6807 The PTS (Presentation TimeStamp) of the output audio frame,
6808 expressed in @var{TB} units.
6809
6810 @item t
6811 The PTS of the output audio frame, expressed in seconds.
6812
6813 @item TB
6814 The timebase of the output audio frames.
6815 @end table
6816
6817 Default is @code{1024}.
6818 @end table
6819
6820 @subsection Examples
6821
6822 @itemize
6823
6824 @item
6825 Generate a simple 440 Hz sine wave:
6826 @example
6827 sine
6828 @end example
6829
6830 @item
6831 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6832 @example
6833 sine=220:4:d=5
6834 sine=f=220:b=4:d=5
6835 sine=frequency=220:beep_factor=4:duration=5
6836 @end example
6837
6838 @item
6839 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6840 pattern:
6841 @example
6842 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6843 @end example
6844 @end itemize
6845
6846 @c man end AUDIO SOURCES
6847
6848 @chapter Audio Sinks
6849 @c man begin AUDIO SINKS
6850
6851 Below is a description of the currently available audio sinks.
6852
6853 @section abuffersink
6854
6855 Buffer audio frames, and make them available to the end of filter chain.
6856
6857 This sink is mainly intended for programmatic use, in particular
6858 through the interface defined in @file{libavfilter/buffersink.h}
6859 or the options system.
6860
6861 It accepts a pointer to an AVABufferSinkContext structure, which
6862 defines the incoming buffers' formats, to be passed as the opaque
6863 parameter to @code{avfilter_init_filter} for initialization.
6864 @section anullsink
6865
6866 Null audio sink; do absolutely nothing with the input audio. It is
6867 mainly useful as a template and for use in analysis / debugging
6868 tools.
6869
6870 @c man end AUDIO SINKS
6871
6872 @chapter Video Filters
6873 @c man begin VIDEO FILTERS
6874
6875 When you configure your FFmpeg build, you can disable any of the
6876 existing filters using @code{--disable-filters}.
6877 The configure output will show the video filters included in your
6878 build.
6879
6880 Below is a description of the currently available video filters.
6881
6882 @section addroi
6883
6884 Mark a region of interest in a video frame.
6885
6886 The frame data is passed through unchanged, but metadata is attached
6887 to the frame indicating regions of interest which can affect the
6888 behaviour of later encoding.  Multiple regions can be marked by
6889 applying the filter multiple times.
6890
6891 @table @option
6892 @item x
6893 Region distance in pixels from the left edge of the frame.
6894 @item y
6895 Region distance in pixels from the top edge of the frame.
6896 @item w
6897 Region width in pixels.
6898 @item h
6899 Region height in pixels.
6900
6901 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6902 and may contain the following variables:
6903 @table @option
6904 @item iw
6905 Width of the input frame.
6906 @item ih
6907 Height of the input frame.
6908 @end table
6909
6910 @item qoffset
6911 Quantisation offset to apply within the region.
6912
6913 This must be a real value in the range -1 to +1.  A value of zero
6914 indicates no quality change.  A negative value asks for better quality
6915 (less quantisation), while a positive value asks for worse quality
6916 (greater quantisation).
6917
6918 The range is calibrated so that the extreme values indicate the
6919 largest possible offset - if the rest of the frame is encoded with the
6920 worst possible quality, an offset of -1 indicates that this region
6921 should be encoded with the best possible quality anyway.  Intermediate
6922 values are then interpolated in some codec-dependent way.
6923
6924 For example, in 10-bit H.264 the quantisation parameter varies between
6925 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6926 this region should be encoded with a QP around one-tenth of the full
6927 range better than the rest of the frame.  So, if most of the frame
6928 were to be encoded with a QP of around 30, this region would get a QP
6929 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6930 An extreme value of -1 would indicate that this region should be
6931 encoded with the best possible quality regardless of the treatment of
6932 the rest of the frame - that is, should be encoded at a QP of -12.
6933 @item clear
6934 If set to true, remove any existing regions of interest marked on the
6935 frame before adding the new one.
6936 @end table
6937
6938 @subsection Examples
6939
6940 @itemize
6941 @item
6942 Mark the centre quarter of the frame as interesting.
6943 @example
6944 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6945 @end example
6946 @item
6947 Mark the 100-pixel-wide region on the left edge of the frame as very
6948 uninteresting (to be encoded at much lower quality than the rest of
6949 the frame).
6950 @example
6951 addroi=0:0:100:ih:+1/5
6952 @end example
6953 @end itemize
6954
6955 @section alphaextract
6956
6957 Extract the alpha component from the input as a grayscale video. This
6958 is especially useful with the @var{alphamerge} filter.
6959
6960 @section alphamerge
6961
6962 Add or replace the alpha component of the primary input with the
6963 grayscale value of a second input. This is intended for use with
6964 @var{alphaextract} to allow the transmission or storage of frame
6965 sequences that have alpha in a format that doesn't support an alpha
6966 channel.
6967
6968 For example, to reconstruct full frames from a normal YUV-encoded video
6969 and a separate video created with @var{alphaextract}, you might use:
6970 @example
6971 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6972 @end example
6973
6974 @section amplify
6975
6976 Amplify differences between current pixel and pixels of adjacent frames in
6977 same pixel location.
6978
6979 This filter accepts the following options:
6980
6981 @table @option
6982 @item radius
6983 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6984 For example radius of 3 will instruct filter to calculate average of 7 frames.
6985
6986 @item factor
6987 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6988
6989 @item threshold
6990 Set threshold for difference amplification. Any difference greater or equal to
6991 this value will not alter source pixel. Default is 10.
6992 Allowed range is from 0 to 65535.
6993
6994 @item tolerance
6995 Set tolerance for difference amplification. Any difference lower to
6996 this value will not alter source pixel. Default is 0.
6997 Allowed range is from 0 to 65535.
6998
6999 @item low
7000 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7001 This option controls maximum possible value that will decrease source pixel value.
7002
7003 @item high
7004 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7005 This option controls maximum possible value that will increase source pixel value.
7006
7007 @item planes
7008 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
7009 @end table
7010
7011 @subsection Commands
7012
7013 This filter supports the following @ref{commands} that corresponds to option of same name:
7014 @table @option
7015 @item factor
7016 @item threshold
7017 @item tolerance
7018 @item low
7019 @item high
7020 @item planes
7021 @end table
7022
7023 @section ass
7024
7025 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
7026 and libavformat to work. On the other hand, it is limited to ASS (Advanced
7027 Substation Alpha) subtitles files.
7028
7029 This filter accepts the following option in addition to the common options from
7030 the @ref{subtitles} filter:
7031
7032 @table @option
7033 @item shaping
7034 Set the shaping engine
7035
7036 Available values are:
7037 @table @samp
7038 @item auto
7039 The default libass shaping engine, which is the best available.
7040 @item simple
7041 Fast, font-agnostic shaper that can do only substitutions
7042 @item complex
7043 Slower shaper using OpenType for substitutions and positioning
7044 @end table
7045
7046 The default is @code{auto}.
7047 @end table
7048
7049 @section atadenoise
7050 Apply an Adaptive Temporal Averaging Denoiser to the video input.
7051
7052 The filter accepts the following options:
7053
7054 @table @option
7055 @item 0a
7056 Set threshold A for 1st plane. Default is 0.02.
7057 Valid range is 0 to 0.3.
7058
7059 @item 0b
7060 Set threshold B for 1st plane. Default is 0.04.
7061 Valid range is 0 to 5.
7062
7063 @item 1a
7064 Set threshold A for 2nd plane. Default is 0.02.
7065 Valid range is 0 to 0.3.
7066
7067 @item 1b
7068 Set threshold B for 2nd plane. Default is 0.04.
7069 Valid range is 0 to 5.
7070
7071 @item 2a
7072 Set threshold A for 3rd plane. Default is 0.02.
7073 Valid range is 0 to 0.3.
7074
7075 @item 2b
7076 Set threshold B for 3rd plane. Default is 0.04.
7077 Valid range is 0 to 5.
7078
7079 Threshold A is designed to react on abrupt changes in the input signal and
7080 threshold B is designed to react on continuous changes in the input signal.
7081
7082 @item s
7083 Set number of frames filter will use for averaging. Default is 9. Must be odd
7084 number in range [5, 129].
7085
7086 @item p
7087 Set what planes of frame filter will use for averaging. Default is all.
7088
7089 @item a
7090 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
7091 Alternatively can be set to @code{s} serial.
7092
7093 Parallel can be faster then serial, while other way around is never true.
7094 Parallel will abort early on first change being greater then thresholds, while serial
7095 will continue processing other side of frames if they are equal or below thresholds.
7096 @end table
7097
7098 @subsection Commands
7099 This filter supports same @ref{commands} as options except option @code{s}.
7100 The command accepts the same syntax of the corresponding option.
7101
7102 @section avgblur
7103
7104 Apply average blur filter.
7105
7106 The filter accepts the following options:
7107
7108 @table @option
7109 @item sizeX
7110 Set horizontal radius size.
7111
7112 @item planes
7113 Set which planes to filter. By default all planes are filtered.
7114
7115 @item sizeY
7116 Set vertical radius size, if zero it will be same as @code{sizeX}.
7117 Default is @code{0}.
7118 @end table
7119
7120 @subsection Commands
7121 This filter supports same commands as options.
7122 The command accepts the same syntax of the corresponding option.
7123
7124 If the specified expression is not valid, it is kept at its current
7125 value.
7126
7127 @section bbox
7128
7129 Compute the bounding box for the non-black pixels in the input frame
7130 luminance plane.
7131
7132 This filter computes the bounding box containing all the pixels with a
7133 luminance value greater than the minimum allowed value.
7134 The parameters describing the bounding box are printed on the filter
7135 log.
7136
7137 The filter accepts the following option:
7138
7139 @table @option
7140 @item min_val
7141 Set the minimal luminance value. Default is @code{16}.
7142 @end table
7143
7144 @section bilateral
7145 Apply bilateral filter, spatial smoothing while preserving edges.
7146
7147 The filter accepts the following options:
7148 @table @option
7149 @item sigmaS
7150 Set sigma of gaussian function to calculate spatial weight.
7151 Allowed range is 0 to 512. Default is 0.1.
7152
7153 @item sigmaR
7154 Set sigma of gaussian function to calculate range weight.
7155 Allowed range is 0 to 1. Default is 0.1.
7156
7157 @item planes
7158 Set planes to filter. Default is first only.
7159 @end table
7160
7161 @section bitplanenoise
7162
7163 Show and measure bit plane noise.
7164
7165 The filter accepts the following options:
7166
7167 @table @option
7168 @item bitplane
7169 Set which plane to analyze. Default is @code{1}.
7170
7171 @item filter
7172 Filter out noisy pixels from @code{bitplane} set above.
7173 Default is disabled.
7174 @end table
7175
7176 @section blackdetect
7177
7178 Detect video intervals that are (almost) completely black. Can be
7179 useful to detect chapter transitions, commercials, or invalid
7180 recordings.
7181
7182 The filter outputs its detection analysis to both the log as well as
7183 frame metadata. If a black segment of at least the specified minimum
7184 duration is found, a line with the start and end timestamps as well
7185 as duration is printed to the log with level @code{info}. In addition,
7186 a log line with level @code{debug} is printed per frame showing the
7187 black amount detected for that frame.
7188
7189 The filter also attaches metadata to the first frame of a black
7190 segment with key @code{lavfi.black_start} and to the first frame
7191 after the black segment ends with key @code{lavfi.black_end}. The
7192 value is the frame's timestamp. This metadata is added regardless
7193 of the minimum duration specified.
7194
7195 The filter accepts the following options:
7196
7197 @table @option
7198 @item black_min_duration, d
7199 Set the minimum detected black duration expressed in seconds. It must
7200 be a non-negative floating point number.
7201
7202 Default value is 2.0.
7203
7204 @item picture_black_ratio_th, pic_th
7205 Set the threshold for considering a picture "black".
7206 Express the minimum value for the ratio:
7207 @example
7208 @var{nb_black_pixels} / @var{nb_pixels}
7209 @end example
7210
7211 for which a picture is considered black.
7212 Default value is 0.98.
7213
7214 @item pixel_black_th, pix_th
7215 Set the threshold for considering a pixel "black".
7216
7217 The threshold expresses the maximum pixel luminance value for which a
7218 pixel is considered "black". The provided value is scaled according to
7219 the following equation:
7220 @example
7221 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
7222 @end example
7223
7224 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
7225 the input video format, the range is [0-255] for YUV full-range
7226 formats and [16-235] for YUV non full-range formats.
7227
7228 Default value is 0.10.
7229 @end table
7230
7231 The following example sets the maximum pixel threshold to the minimum
7232 value, and detects only black intervals of 2 or more seconds:
7233 @example
7234 blackdetect=d=2:pix_th=0.00
7235 @end example
7236
7237 @section blackframe
7238
7239 Detect frames that are (almost) completely black. Can be useful to
7240 detect chapter transitions or commercials. Output lines consist of
7241 the frame number of the detected frame, the percentage of blackness,
7242 the position in the file if known or -1 and the timestamp in seconds.
7243
7244 In order to display the output lines, you need to set the loglevel at
7245 least to the AV_LOG_INFO value.
7246
7247 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
7248 The value represents the percentage of pixels in the picture that
7249 are below the threshold value.
7250
7251 It accepts the following parameters:
7252
7253 @table @option
7254
7255 @item amount
7256 The percentage of the pixels that have to be below the threshold; it defaults to
7257 @code{98}.
7258
7259 @item threshold, thresh
7260 The threshold below which a pixel value is considered black; it defaults to
7261 @code{32}.
7262
7263 @end table
7264
7265 @anchor{blend}
7266 @section blend
7267
7268 Blend two video frames into each other.
7269
7270 The @code{blend} filter takes two input streams and outputs one
7271 stream, the first input is the "top" layer and second input is
7272 "bottom" layer.  By default, the output terminates when the longest input terminates.
7273
7274 The @code{tblend} (time blend) filter takes two consecutive frames
7275 from one single stream, and outputs the result obtained by blending
7276 the new frame on top of the old frame.
7277
7278 A description of the accepted options follows.
7279
7280 @table @option
7281 @item c0_mode
7282 @item c1_mode
7283 @item c2_mode
7284 @item c3_mode
7285 @item all_mode
7286 Set blend mode for specific pixel component or all pixel components in case
7287 of @var{all_mode}. Default value is @code{normal}.
7288
7289 Available values for component modes are:
7290 @table @samp
7291 @item addition
7292 @item grainmerge
7293 @item and
7294 @item average
7295 @item burn
7296 @item darken
7297 @item difference
7298 @item grainextract
7299 @item divide
7300 @item dodge
7301 @item freeze
7302 @item exclusion
7303 @item extremity
7304 @item glow
7305 @item hardlight
7306 @item hardmix
7307 @item heat
7308 @item lighten
7309 @item linearlight
7310 @item multiply
7311 @item multiply128
7312 @item negation
7313 @item normal
7314 @item or
7315 @item overlay
7316 @item phoenix
7317 @item pinlight
7318 @item reflect
7319 @item screen
7320 @item softlight
7321 @item subtract
7322 @item vividlight
7323 @item xor
7324 @end table
7325
7326 @item c0_opacity
7327 @item c1_opacity
7328 @item c2_opacity
7329 @item c3_opacity
7330 @item all_opacity
7331 Set blend opacity for specific pixel component or all pixel components in case
7332 of @var{all_opacity}. Only used in combination with pixel component blend modes.
7333
7334 @item c0_expr
7335 @item c1_expr
7336 @item c2_expr
7337 @item c3_expr
7338 @item all_expr
7339 Set blend expression for specific pixel component or all pixel components in case
7340 of @var{all_expr}. Note that related mode options will be ignored if those are set.
7341
7342 The expressions can use the following variables:
7343
7344 @table @option
7345 @item N
7346 The sequential number of the filtered frame, starting from @code{0}.
7347
7348 @item X
7349 @item Y
7350 the coordinates of the current sample
7351
7352 @item W
7353 @item H
7354 the width and height of currently filtered plane
7355
7356 @item SW
7357 @item SH
7358 Width and height scale for the plane being filtered. It is the
7359 ratio between the dimensions of the current plane to the luma plane,
7360 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
7361 the luma plane and @code{0.5,0.5} for the chroma planes.
7362
7363 @item T
7364 Time of the current frame, expressed in seconds.
7365
7366 @item TOP, A
7367 Value of pixel component at current location for first video frame (top layer).
7368
7369 @item BOTTOM, B
7370 Value of pixel component at current location for second video frame (bottom layer).
7371 @end table
7372 @end table
7373
7374 The @code{blend} filter also supports the @ref{framesync} options.
7375
7376 @subsection Examples
7377
7378 @itemize
7379 @item
7380 Apply transition from bottom layer to top layer in first 10 seconds:
7381 @example
7382 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
7383 @end example
7384
7385 @item
7386 Apply linear horizontal transition from top layer to bottom layer:
7387 @example
7388 blend=all_expr='A*(X/W)+B*(1-X/W)'
7389 @end example
7390
7391 @item
7392 Apply 1x1 checkerboard effect:
7393 @example
7394 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
7395 @end example
7396
7397 @item
7398 Apply uncover left effect:
7399 @example
7400 blend=all_expr='if(gte(N*SW+X,W),A,B)'
7401 @end example
7402
7403 @item
7404 Apply uncover down effect:
7405 @example
7406 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
7407 @end example
7408
7409 @item
7410 Apply uncover up-left effect:
7411 @example
7412 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
7413 @end example
7414
7415 @item
7416 Split diagonally video and shows top and bottom layer on each side:
7417 @example
7418 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
7419 @end example
7420
7421 @item
7422 Display differences between the current and the previous frame:
7423 @example
7424 tblend=all_mode=grainextract
7425 @end example
7426 @end itemize
7427
7428 @section bm3d
7429
7430 Denoise frames using Block-Matching 3D algorithm.
7431
7432 The filter accepts the following options.
7433
7434 @table @option
7435 @item sigma
7436 Set denoising strength. Default value is 1.
7437 Allowed range is from 0 to 999.9.
7438 The denoising algorithm is very sensitive to sigma, so adjust it
7439 according to the source.
7440
7441 @item block
7442 Set local patch size. This sets dimensions in 2D.
7443
7444 @item bstep
7445 Set sliding step for processing blocks. Default value is 4.
7446 Allowed range is from 1 to 64.
7447 Smaller values allows processing more reference blocks and is slower.
7448
7449 @item group
7450 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
7451 When set to 1, no block matching is done. Larger values allows more blocks
7452 in single group.
7453 Allowed range is from 1 to 256.
7454
7455 @item range
7456 Set radius for search block matching. Default is 9.
7457 Allowed range is from 1 to INT32_MAX.
7458
7459 @item mstep
7460 Set step between two search locations for block matching. Default is 1.
7461 Allowed range is from 1 to 64. Smaller is slower.
7462
7463 @item thmse
7464 Set threshold of mean square error for block matching. Valid range is 0 to
7465 INT32_MAX.
7466
7467 @item hdthr
7468 Set thresholding parameter for hard thresholding in 3D transformed domain.
7469 Larger values results in stronger hard-thresholding filtering in frequency
7470 domain.
7471
7472 @item estim
7473 Set filtering estimation mode. Can be @code{basic} or @code{final}.
7474 Default is @code{basic}.
7475
7476 @item ref
7477 If enabled, filter will use 2nd stream for block matching.
7478 Default is disabled for @code{basic} value of @var{estim} option,
7479 and always enabled if value of @var{estim} is @code{final}.
7480
7481 @item planes
7482 Set planes to filter. Default is all available except alpha.
7483 @end table
7484
7485 @subsection Examples
7486
7487 @itemize
7488 @item
7489 Basic filtering with bm3d:
7490 @example
7491 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
7492 @end example
7493
7494 @item
7495 Same as above, but filtering only luma:
7496 @example
7497 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
7498 @end example
7499
7500 @item
7501 Same as above, but with both estimation modes:
7502 @example
7503 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
7504 @end example
7505
7506 @item
7507 Same as above, but prefilter with @ref{nlmeans} filter instead:
7508 @example
7509 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
7510 @end example
7511 @end itemize
7512
7513 @section boxblur
7514
7515 Apply a boxblur algorithm to the input video.
7516
7517 It accepts the following parameters:
7518
7519 @table @option
7520
7521 @item luma_radius, lr
7522 @item luma_power, lp
7523 @item chroma_radius, cr
7524 @item chroma_power, cp
7525 @item alpha_radius, ar
7526 @item alpha_power, ap
7527
7528 @end table
7529
7530 A description of the accepted options follows.
7531
7532 @table @option
7533 @item luma_radius, lr
7534 @item chroma_radius, cr
7535 @item alpha_radius, ar
7536 Set an expression for the box radius in pixels used for blurring the
7537 corresponding input plane.
7538
7539 The radius value must be a non-negative number, and must not be
7540 greater than the value of the expression @code{min(w,h)/2} for the
7541 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
7542 planes.
7543
7544 Default value for @option{luma_radius} is "2". If not specified,
7545 @option{chroma_radius} and @option{alpha_radius} default to the
7546 corresponding value set for @option{luma_radius}.
7547
7548 The expressions can contain the following constants:
7549 @table @option
7550 @item w
7551 @item h
7552 The input width and height in pixels.
7553
7554 @item cw
7555 @item ch
7556 The input chroma image width and height in pixels.
7557
7558 @item hsub
7559 @item vsub
7560 The horizontal and vertical chroma subsample values. For example, for the
7561 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
7562 @end table
7563
7564 @item luma_power, lp
7565 @item chroma_power, cp
7566 @item alpha_power, ap
7567 Specify how many times the boxblur filter is applied to the
7568 corresponding plane.
7569
7570 Default value for @option{luma_power} is 2. If not specified,
7571 @option{chroma_power} and @option{alpha_power} default to the
7572 corresponding value set for @option{luma_power}.
7573
7574 A value of 0 will disable the effect.
7575 @end table
7576
7577 @subsection Examples
7578
7579 @itemize
7580 @item
7581 Apply a boxblur filter with the luma, chroma, and alpha radii
7582 set to 2:
7583 @example
7584 boxblur=luma_radius=2:luma_power=1
7585 boxblur=2:1
7586 @end example
7587
7588 @item
7589 Set the luma radius to 2, and alpha and chroma radius to 0:
7590 @example
7591 boxblur=2:1:cr=0:ar=0
7592 @end example
7593
7594 @item
7595 Set the luma and chroma radii to a fraction of the video dimension:
7596 @example
7597 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
7598 @end example
7599 @end itemize
7600
7601 @section bwdif
7602
7603 Deinterlace the input video ("bwdif" stands for "Bob Weaver
7604 Deinterlacing Filter").
7605
7606 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
7607 interpolation algorithms.
7608 It accepts the following parameters:
7609
7610 @table @option
7611 @item mode
7612 The interlacing mode to adopt. It accepts one of the following values:
7613
7614 @table @option
7615 @item 0, send_frame
7616 Output one frame for each frame.
7617 @item 1, send_field
7618 Output one frame for each field.
7619 @end table
7620
7621 The default value is @code{send_field}.
7622
7623 @item parity
7624 The picture field parity assumed for the input interlaced video. It accepts one
7625 of the following values:
7626
7627 @table @option
7628 @item 0, tff
7629 Assume the top field is first.
7630 @item 1, bff
7631 Assume the bottom field is first.
7632 @item -1, auto
7633 Enable automatic detection of field parity.
7634 @end table
7635
7636 The default value is @code{auto}.
7637 If the interlacing is unknown or the decoder does not export this information,
7638 top field first will be assumed.
7639
7640 @item deint
7641 Specify which frames to deinterlace. Accepts one of the following
7642 values:
7643
7644 @table @option
7645 @item 0, all
7646 Deinterlace all frames.
7647 @item 1, interlaced
7648 Only deinterlace frames marked as interlaced.
7649 @end table
7650
7651 The default value is @code{all}.
7652 @end table
7653
7654 @section cas
7655
7656 Apply Contrast Adaptive Sharpen filter to video stream.
7657
7658 The filter accepts the following options:
7659
7660 @table @option
7661 @item strength
7662 Set the sharpening strength. Default value is 0.
7663
7664 @item planes
7665 Set planes to filter. Default value is to filter all
7666 planes except alpha plane.
7667 @end table
7668
7669 @section chromahold
7670 Remove all color information for all colors except for certain one.
7671
7672 The filter accepts the following options:
7673
7674 @table @option
7675 @item color
7676 The color which will not be replaced with neutral chroma.
7677
7678 @item similarity
7679 Similarity percentage with the above color.
7680 0.01 matches only the exact key color, while 1.0 matches everything.
7681
7682 @item blend
7683 Blend percentage.
7684 0.0 makes pixels either fully gray, or not gray at all.
7685 Higher values result in more preserved color.
7686
7687 @item yuv
7688 Signals that the color passed is already in YUV instead of RGB.
7689
7690 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7691 This can be used to pass exact YUV values as hexadecimal numbers.
7692 @end table
7693
7694 @subsection Commands
7695 This filter supports same @ref{commands} as options.
7696 The command accepts the same syntax of the corresponding option.
7697
7698 If the specified expression is not valid, it is kept at its current
7699 value.
7700
7701 @section chromakey
7702 YUV colorspace color/chroma keying.
7703
7704 The filter accepts the following options:
7705
7706 @table @option
7707 @item color
7708 The color which will be replaced with transparency.
7709
7710 @item similarity
7711 Similarity percentage with the key color.
7712
7713 0.01 matches only the exact key color, while 1.0 matches everything.
7714
7715 @item blend
7716 Blend percentage.
7717
7718 0.0 makes pixels either fully transparent, or not transparent at all.
7719
7720 Higher values result in semi-transparent pixels, with a higher transparency
7721 the more similar the pixels color is to the key color.
7722
7723 @item yuv
7724 Signals that the color passed is already in YUV instead of RGB.
7725
7726 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7727 This can be used to pass exact YUV values as hexadecimal numbers.
7728 @end table
7729
7730 @subsection Commands
7731 This filter supports same @ref{commands} as options.
7732 The command accepts the same syntax of the corresponding option.
7733
7734 If the specified expression is not valid, it is kept at its current
7735 value.
7736
7737 @subsection Examples
7738
7739 @itemize
7740 @item
7741 Make every green pixel in the input image transparent:
7742 @example
7743 ffmpeg -i input.png -vf chromakey=green out.png
7744 @end example
7745
7746 @item
7747 Overlay a greenscreen-video on top of a static black background.
7748 @example
7749 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
7750 @end example
7751 @end itemize
7752
7753 @section chromanr
7754 Reduce chrominance noise.
7755
7756 The filter accepts the following options:
7757
7758 @table @option
7759 @item thres
7760 Set threshold for averaging chrominance values.
7761 Sum of absolute difference of Y, U and V pixel components of current
7762 pixel and neighbour pixels lower than this threshold will be used in
7763 averaging. Luma component is left unchanged and is copied to output.
7764 Default value is 30. Allowed range is from 1 to 200.
7765
7766 @item sizew
7767 Set horizontal radius of rectangle used for averaging.
7768 Allowed range is from 1 to 100. Default value is 5.
7769
7770 @item sizeh
7771 Set vertical radius of rectangle used for averaging.
7772 Allowed range is from 1 to 100. Default value is 5.
7773
7774 @item stepw
7775 Set horizontal step when averaging. Default value is 1.
7776 Allowed range is from 1 to 50.
7777 Mostly useful to speed-up filtering.
7778
7779 @item steph
7780 Set vertical step when averaging. Default value is 1.
7781 Allowed range is from 1 to 50.
7782 Mostly useful to speed-up filtering.
7783
7784 @item threy
7785 Set Y threshold for averaging chrominance values.
7786 Set finer control for max allowed difference between Y components
7787 of current pixel and neigbour pixels.
7788 Default value is 200. Allowed range is from 1 to 200.
7789
7790 @item threu
7791 Set U threshold for averaging chrominance values.
7792 Set finer control for max allowed difference between U components
7793 of current pixel and neigbour pixels.
7794 Default value is 200. Allowed range is from 1 to 200.
7795
7796 @item threv
7797 Set V threshold for averaging chrominance values.
7798 Set finer control for max allowed difference between V components
7799 of current pixel and neigbour pixels.
7800 Default value is 200. Allowed range is from 1 to 200.
7801 @end table
7802
7803 @subsection Commands
7804 This filter supports same @ref{commands} as options.
7805 The command accepts the same syntax of the corresponding option.
7806
7807 @section chromashift
7808 Shift chroma pixels horizontally and/or vertically.
7809
7810 The filter accepts the following options:
7811 @table @option
7812 @item cbh
7813 Set amount to shift chroma-blue horizontally.
7814 @item cbv
7815 Set amount to shift chroma-blue vertically.
7816 @item crh
7817 Set amount to shift chroma-red horizontally.
7818 @item crv
7819 Set amount to shift chroma-red vertically.
7820 @item edge
7821 Set edge mode, can be @var{smear}, default, or @var{warp}.
7822 @end table
7823
7824 @subsection Commands
7825
7826 This filter supports the all above options as @ref{commands}.
7827
7828 @section ciescope
7829
7830 Display CIE color diagram with pixels overlaid onto it.
7831
7832 The filter accepts the following options:
7833
7834 @table @option
7835 @item system
7836 Set color system.
7837
7838 @table @samp
7839 @item ntsc, 470m
7840 @item ebu, 470bg
7841 @item smpte
7842 @item 240m
7843 @item apple
7844 @item widergb
7845 @item cie1931
7846 @item rec709, hdtv
7847 @item uhdtv, rec2020
7848 @item dcip3
7849 @end table
7850
7851 @item cie
7852 Set CIE system.
7853
7854 @table @samp
7855 @item xyy
7856 @item ucs
7857 @item luv
7858 @end table
7859
7860 @item gamuts
7861 Set what gamuts to draw.
7862
7863 See @code{system} option for available values.
7864
7865 @item size, s
7866 Set ciescope size, by default set to 512.
7867
7868 @item intensity, i
7869 Set intensity used to map input pixel values to CIE diagram.
7870
7871 @item contrast
7872 Set contrast used to draw tongue colors that are out of active color system gamut.
7873
7874 @item corrgamma
7875 Correct gamma displayed on scope, by default enabled.
7876
7877 @item showwhite
7878 Show white point on CIE diagram, by default disabled.
7879
7880 @item gamma
7881 Set input gamma. Used only with XYZ input color space.
7882 @end table
7883
7884 @section codecview
7885
7886 Visualize information exported by some codecs.
7887
7888 Some codecs can export information through frames using side-data or other
7889 means. For example, some MPEG based codecs export motion vectors through the
7890 @var{export_mvs} flag in the codec @option{flags2} option.
7891
7892 The filter accepts the following option:
7893
7894 @table @option
7895 @item mv
7896 Set motion vectors to visualize.
7897
7898 Available flags for @var{mv} are:
7899
7900 @table @samp
7901 @item pf
7902 forward predicted MVs of P-frames
7903 @item bf
7904 forward predicted MVs of B-frames
7905 @item bb
7906 backward predicted MVs of B-frames
7907 @end table
7908
7909 @item qp
7910 Display quantization parameters using the chroma planes.
7911
7912 @item mv_type, mvt
7913 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7914
7915 Available flags for @var{mv_type} are:
7916
7917 @table @samp
7918 @item fp
7919 forward predicted MVs
7920 @item bp
7921 backward predicted MVs
7922 @end table
7923
7924 @item frame_type, ft
7925 Set frame type to visualize motion vectors of.
7926
7927 Available flags for @var{frame_type} are:
7928
7929 @table @samp
7930 @item if
7931 intra-coded frames (I-frames)
7932 @item pf
7933 predicted frames (P-frames)
7934 @item bf
7935 bi-directionally predicted frames (B-frames)
7936 @end table
7937 @end table
7938
7939 @subsection Examples
7940
7941 @itemize
7942 @item
7943 Visualize forward predicted MVs of all frames using @command{ffplay}:
7944 @example
7945 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7946 @end example
7947
7948 @item
7949 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7950 @example
7951 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7952 @end example
7953 @end itemize
7954
7955 @section colorbalance
7956 Modify intensity of primary colors (red, green and blue) of input frames.
7957
7958 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7959 regions for the red-cyan, green-magenta or blue-yellow balance.
7960
7961 A positive adjustment value shifts the balance towards the primary color, a negative
7962 value towards the complementary color.
7963
7964 The filter accepts the following options:
7965
7966 @table @option
7967 @item rs
7968 @item gs
7969 @item bs
7970 Adjust red, green and blue shadows (darkest pixels).
7971
7972 @item rm
7973 @item gm
7974 @item bm
7975 Adjust red, green and blue midtones (medium pixels).
7976
7977 @item rh
7978 @item gh
7979 @item bh
7980 Adjust red, green and blue highlights (brightest pixels).
7981
7982 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7983
7984 @item pl
7985 Preserve lightness when changing color balance. Default is disabled.
7986 @end table
7987
7988 @subsection Examples
7989
7990 @itemize
7991 @item
7992 Add red color cast to shadows:
7993 @example
7994 colorbalance=rs=.3
7995 @end example
7996 @end itemize
7997
7998 @subsection Commands
7999
8000 This filter supports the all above options as @ref{commands}.
8001
8002 @section colorchannelmixer
8003
8004 Adjust video input frames by re-mixing color channels.
8005
8006 This filter modifies a color channel by adding the values associated to
8007 the other channels of the same pixels. For example if the value to
8008 modify is red, the output value will be:
8009 @example
8010 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
8011 @end example
8012
8013 The filter accepts the following options:
8014
8015 @table @option
8016 @item rr
8017 @item rg
8018 @item rb
8019 @item ra
8020 Adjust contribution of input red, green, blue and alpha channels for output red channel.
8021 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
8022
8023 @item gr
8024 @item gg
8025 @item gb
8026 @item ga
8027 Adjust contribution of input red, green, blue and alpha channels for output green channel.
8028 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
8029
8030 @item br
8031 @item bg
8032 @item bb
8033 @item ba
8034 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
8035 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
8036
8037 @item ar
8038 @item ag
8039 @item ab
8040 @item aa
8041 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
8042 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
8043
8044 Allowed ranges for options are @code{[-2.0, 2.0]}.
8045 @end table
8046
8047 @subsection Examples
8048
8049 @itemize
8050 @item
8051 Convert source to grayscale:
8052 @example
8053 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
8054 @end example
8055 @item
8056 Simulate sepia tones:
8057 @example
8058 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
8059 @end example
8060 @end itemize
8061
8062 @subsection Commands
8063
8064 This filter supports the all above options as @ref{commands}.
8065
8066 @section colorkey
8067 RGB colorspace color keying.
8068
8069 The filter accepts the following options:
8070
8071 @table @option
8072 @item color
8073 The color which will be replaced with transparency.
8074
8075 @item similarity
8076 Similarity percentage with the key color.
8077
8078 0.01 matches only the exact key color, while 1.0 matches everything.
8079
8080 @item blend
8081 Blend percentage.
8082
8083 0.0 makes pixels either fully transparent, or not transparent at all.
8084
8085 Higher values result in semi-transparent pixels, with a higher transparency
8086 the more similar the pixels color is to the key color.
8087 @end table
8088
8089 @subsection Examples
8090
8091 @itemize
8092 @item
8093 Make every green pixel in the input image transparent:
8094 @example
8095 ffmpeg -i input.png -vf colorkey=green out.png
8096 @end example
8097
8098 @item
8099 Overlay a greenscreen-video on top of a static background image.
8100 @example
8101 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
8102 @end example
8103 @end itemize
8104
8105 @subsection Commands
8106 This filter supports same @ref{commands} as options.
8107 The command accepts the same syntax of the corresponding option.
8108
8109 If the specified expression is not valid, it is kept at its current
8110 value.
8111
8112 @section colorhold
8113 Remove all color information for all RGB colors except for certain one.
8114
8115 The filter accepts the following options:
8116
8117 @table @option
8118 @item color
8119 The color which will not be replaced with neutral gray.
8120
8121 @item similarity
8122 Similarity percentage with the above color.
8123 0.01 matches only the exact key color, while 1.0 matches everything.
8124
8125 @item blend
8126 Blend percentage. 0.0 makes pixels fully gray.
8127 Higher values result in more preserved color.
8128 @end table
8129
8130 @subsection Commands
8131 This filter supports same @ref{commands} as options.
8132 The command accepts the same syntax of the corresponding option.
8133
8134 If the specified expression is not valid, it is kept at its current
8135 value.
8136
8137 @section colorlevels
8138
8139 Adjust video input frames using levels.
8140
8141 The filter accepts the following options:
8142
8143 @table @option
8144 @item rimin
8145 @item gimin
8146 @item bimin
8147 @item aimin
8148 Adjust red, green, blue and alpha input black point.
8149 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8150
8151 @item rimax
8152 @item gimax
8153 @item bimax
8154 @item aimax
8155 Adjust red, green, blue and alpha input white point.
8156 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
8157
8158 Input levels are used to lighten highlights (bright tones), darken shadows
8159 (dark tones), change the balance of bright and dark tones.
8160
8161 @item romin
8162 @item gomin
8163 @item bomin
8164 @item aomin
8165 Adjust red, green, blue and alpha output black point.
8166 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
8167
8168 @item romax
8169 @item gomax
8170 @item bomax
8171 @item aomax
8172 Adjust red, green, blue and alpha output white point.
8173 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
8174
8175 Output levels allows manual selection of a constrained output level range.
8176 @end table
8177
8178 @subsection Examples
8179
8180 @itemize
8181 @item
8182 Make video output darker:
8183 @example
8184 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
8185 @end example
8186
8187 @item
8188 Increase contrast:
8189 @example
8190 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
8191 @end example
8192
8193 @item
8194 Make video output lighter:
8195 @example
8196 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
8197 @end example
8198
8199 @item
8200 Increase brightness:
8201 @example
8202 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
8203 @end example
8204 @end itemize
8205
8206 @subsection Commands
8207
8208 This filter supports the all above options as @ref{commands}.
8209
8210 @section colormatrix
8211
8212 Convert color matrix.
8213
8214 The filter accepts the following options:
8215
8216 @table @option
8217 @item src
8218 @item dst
8219 Specify the source and destination color matrix. Both values must be
8220 specified.
8221
8222 The accepted values are:
8223 @table @samp
8224 @item bt709
8225 BT.709
8226
8227 @item fcc
8228 FCC
8229
8230 @item bt601
8231 BT.601
8232
8233 @item bt470
8234 BT.470
8235
8236 @item bt470bg
8237 BT.470BG
8238
8239 @item smpte170m
8240 SMPTE-170M
8241
8242 @item smpte240m
8243 SMPTE-240M
8244
8245 @item bt2020
8246 BT.2020
8247 @end table
8248 @end table
8249
8250 For example to convert from BT.601 to SMPTE-240M, use the command:
8251 @example
8252 colormatrix=bt601:smpte240m
8253 @end example
8254
8255 @section colorspace
8256
8257 Convert colorspace, transfer characteristics or color primaries.
8258 Input video needs to have an even size.
8259
8260 The filter accepts the following options:
8261
8262 @table @option
8263 @anchor{all}
8264 @item all
8265 Specify all color properties at once.
8266
8267 The accepted values are:
8268 @table @samp
8269 @item bt470m
8270 BT.470M
8271
8272 @item bt470bg
8273 BT.470BG
8274
8275 @item bt601-6-525
8276 BT.601-6 525
8277
8278 @item bt601-6-625
8279 BT.601-6 625
8280
8281 @item bt709
8282 BT.709
8283
8284 @item smpte170m
8285 SMPTE-170M
8286
8287 @item smpte240m
8288 SMPTE-240M
8289
8290 @item bt2020
8291 BT.2020
8292
8293 @end table
8294
8295 @anchor{space}
8296 @item space
8297 Specify output colorspace.
8298
8299 The accepted values are:
8300 @table @samp
8301 @item bt709
8302 BT.709
8303
8304 @item fcc
8305 FCC
8306
8307 @item bt470bg
8308 BT.470BG or BT.601-6 625
8309
8310 @item smpte170m
8311 SMPTE-170M or BT.601-6 525
8312
8313 @item smpte240m
8314 SMPTE-240M
8315
8316 @item ycgco
8317 YCgCo
8318
8319 @item bt2020ncl
8320 BT.2020 with non-constant luminance
8321
8322 @end table
8323
8324 @anchor{trc}
8325 @item trc
8326 Specify output transfer characteristics.
8327
8328 The accepted values are:
8329 @table @samp
8330 @item bt709
8331 BT.709
8332
8333 @item bt470m
8334 BT.470M
8335
8336 @item bt470bg
8337 BT.470BG
8338
8339 @item gamma22
8340 Constant gamma of 2.2
8341
8342 @item gamma28
8343 Constant gamma of 2.8
8344
8345 @item smpte170m
8346 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8347
8348 @item smpte240m
8349 SMPTE-240M
8350
8351 @item srgb
8352 SRGB
8353
8354 @item iec61966-2-1
8355 iec61966-2-1
8356
8357 @item iec61966-2-4
8358 iec61966-2-4
8359
8360 @item xvycc
8361 xvycc
8362
8363 @item bt2020-10
8364 BT.2020 for 10-bits content
8365
8366 @item bt2020-12
8367 BT.2020 for 12-bits content
8368
8369 @end table
8370
8371 @anchor{primaries}
8372 @item primaries
8373 Specify output color primaries.
8374
8375 The accepted values are:
8376 @table @samp
8377 @item bt709
8378 BT.709
8379
8380 @item bt470m
8381 BT.470M
8382
8383 @item bt470bg
8384 BT.470BG or BT.601-6 625
8385
8386 @item smpte170m
8387 SMPTE-170M or BT.601-6 525
8388
8389 @item smpte240m
8390 SMPTE-240M
8391
8392 @item film
8393 film
8394
8395 @item smpte431
8396 SMPTE-431
8397
8398 @item smpte432
8399 SMPTE-432
8400
8401 @item bt2020
8402 BT.2020
8403
8404 @item jedec-p22
8405 JEDEC P22 phosphors
8406
8407 @end table
8408
8409 @anchor{range}
8410 @item range
8411 Specify output color range.
8412
8413 The accepted values are:
8414 @table @samp
8415 @item tv
8416 TV (restricted) range
8417
8418 @item mpeg
8419 MPEG (restricted) range
8420
8421 @item pc
8422 PC (full) range
8423
8424 @item jpeg
8425 JPEG (full) range
8426
8427 @end table
8428
8429 @item format
8430 Specify output color format.
8431
8432 The accepted values are:
8433 @table @samp
8434 @item yuv420p
8435 YUV 4:2:0 planar 8-bits
8436
8437 @item yuv420p10
8438 YUV 4:2:0 planar 10-bits
8439
8440 @item yuv420p12
8441 YUV 4:2:0 planar 12-bits
8442
8443 @item yuv422p
8444 YUV 4:2:2 planar 8-bits
8445
8446 @item yuv422p10
8447 YUV 4:2:2 planar 10-bits
8448
8449 @item yuv422p12
8450 YUV 4:2:2 planar 12-bits
8451
8452 @item yuv444p
8453 YUV 4:4:4 planar 8-bits
8454
8455 @item yuv444p10
8456 YUV 4:4:4 planar 10-bits
8457
8458 @item yuv444p12
8459 YUV 4:4:4 planar 12-bits
8460
8461 @end table
8462
8463 @item fast
8464 Do a fast conversion, which skips gamma/primary correction. This will take
8465 significantly less CPU, but will be mathematically incorrect. To get output
8466 compatible with that produced by the colormatrix filter, use fast=1.
8467
8468 @item dither
8469 Specify dithering mode.
8470
8471 The accepted values are:
8472 @table @samp
8473 @item none
8474 No dithering
8475
8476 @item fsb
8477 Floyd-Steinberg dithering
8478 @end table
8479
8480 @item wpadapt
8481 Whitepoint adaptation mode.
8482
8483 The accepted values are:
8484 @table @samp
8485 @item bradford
8486 Bradford whitepoint adaptation
8487
8488 @item vonkries
8489 von Kries whitepoint adaptation
8490
8491 @item identity
8492 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8493 @end table
8494
8495 @item iall
8496 Override all input properties at once. Same accepted values as @ref{all}.
8497
8498 @item ispace
8499 Override input colorspace. Same accepted values as @ref{space}.
8500
8501 @item iprimaries
8502 Override input color primaries. Same accepted values as @ref{primaries}.
8503
8504 @item itrc
8505 Override input transfer characteristics. Same accepted values as @ref{trc}.
8506
8507 @item irange
8508 Override input color range. Same accepted values as @ref{range}.
8509
8510 @end table
8511
8512 The filter converts the transfer characteristics, color space and color
8513 primaries to the specified user values. The output value, if not specified,
8514 is set to a default value based on the "all" property. If that property is
8515 also not specified, the filter will log an error. The output color range and
8516 format default to the same value as the input color range and format. The
8517 input transfer characteristics, color space, color primaries and color range
8518 should be set on the input data. If any of these are missing, the filter will
8519 log an error and no conversion will take place.
8520
8521 For example to convert the input to SMPTE-240M, use the command:
8522 @example
8523 colorspace=smpte240m
8524 @end example
8525
8526 @section convolution
8527
8528 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8529
8530 The filter accepts the following options:
8531
8532 @table @option
8533 @item 0m
8534 @item 1m
8535 @item 2m
8536 @item 3m
8537 Set matrix for each plane.
8538 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8539 and from 1 to 49 odd number of signed integers in @var{row} mode.
8540
8541 @item 0rdiv
8542 @item 1rdiv
8543 @item 2rdiv
8544 @item 3rdiv
8545 Set multiplier for calculated value for each plane.
8546 If unset or 0, it will be sum of all matrix elements.
8547
8548 @item 0bias
8549 @item 1bias
8550 @item 2bias
8551 @item 3bias
8552 Set bias for each plane. This value is added to the result of the multiplication.
8553 Useful for making the overall image brighter or darker. Default is 0.0.
8554
8555 @item 0mode
8556 @item 1mode
8557 @item 2mode
8558 @item 3mode
8559 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8560 Default is @var{square}.
8561 @end table
8562
8563 @subsection Commands
8564
8565 This filter supports the all above options as @ref{commands}.
8566
8567 @subsection Examples
8568
8569 @itemize
8570 @item
8571 Apply sharpen:
8572 @example
8573 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"
8574 @end example
8575
8576 @item
8577 Apply blur:
8578 @example
8579 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"
8580 @end example
8581
8582 @item
8583 Apply edge enhance:
8584 @example
8585 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"
8586 @end example
8587
8588 @item
8589 Apply edge detect:
8590 @example
8591 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"
8592 @end example
8593
8594 @item
8595 Apply laplacian edge detector which includes diagonals:
8596 @example
8597 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"
8598 @end example
8599
8600 @item
8601 Apply emboss:
8602 @example
8603 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"
8604 @end example
8605 @end itemize
8606
8607 @section convolve
8608
8609 Apply 2D convolution of video stream in frequency domain using second stream
8610 as impulse.
8611
8612 The filter accepts the following options:
8613
8614 @table @option
8615 @item planes
8616 Set which planes to process.
8617
8618 @item impulse
8619 Set which impulse video frames will be processed, can be @var{first}
8620 or @var{all}. Default is @var{all}.
8621 @end table
8622
8623 The @code{convolve} filter also supports the @ref{framesync} options.
8624
8625 @section copy
8626
8627 Copy the input video source unchanged to the output. This is mainly useful for
8628 testing purposes.
8629
8630 @anchor{coreimage}
8631 @section coreimage
8632 Video filtering on GPU using Apple's CoreImage API on OSX.
8633
8634 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8635 processed by video hardware. However, software-based OpenGL implementations
8636 exist which means there is no guarantee for hardware processing. It depends on
8637 the respective OSX.
8638
8639 There are many filters and image generators provided by Apple that come with a
8640 large variety of options. The filter has to be referenced by its name along
8641 with its options.
8642
8643 The coreimage filter accepts the following options:
8644 @table @option
8645 @item list_filters
8646 List all available filters and generators along with all their respective
8647 options as well as possible minimum and maximum values along with the default
8648 values.
8649 @example
8650 list_filters=true
8651 @end example
8652
8653 @item filter
8654 Specify all filters by their respective name and options.
8655 Use @var{list_filters} to determine all valid filter names and options.
8656 Numerical options are specified by a float value and are automatically clamped
8657 to their respective value range.  Vector and color options have to be specified
8658 by a list of space separated float values. Character escaping has to be done.
8659 A special option name @code{default} is available to use default options for a
8660 filter.
8661
8662 It is required to specify either @code{default} or at least one of the filter options.
8663 All omitted options are used with their default values.
8664 The syntax of the filter string is as follows:
8665 @example
8666 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8667 @end example
8668
8669 @item output_rect
8670 Specify a rectangle where the output of the filter chain is copied into the
8671 input image. It is given by a list of space separated float values:
8672 @example
8673 output_rect=x\ y\ width\ height
8674 @end example
8675 If not given, the output rectangle equals the dimensions of the input image.
8676 The output rectangle is automatically cropped at the borders of the input
8677 image. Negative values are valid for each component.
8678 @example
8679 output_rect=25\ 25\ 100\ 100
8680 @end example
8681 @end table
8682
8683 Several filters can be chained for successive processing without GPU-HOST
8684 transfers allowing for fast processing of complex filter chains.
8685 Currently, only filters with zero (generators) or exactly one (filters) input
8686 image and one output image are supported. Also, transition filters are not yet
8687 usable as intended.
8688
8689 Some filters generate output images with additional padding depending on the
8690 respective filter kernel. The padding is automatically removed to ensure the
8691 filter output has the same size as the input image.
8692
8693 For image generators, the size of the output image is determined by the
8694 previous output image of the filter chain or the input image of the whole
8695 filterchain, respectively. The generators do not use the pixel information of
8696 this image to generate their output. However, the generated output is
8697 blended onto this image, resulting in partial or complete coverage of the
8698 output image.
8699
8700 The @ref{coreimagesrc} video source can be used for generating input images
8701 which are directly fed into the filter chain. By using it, providing input
8702 images by another video source or an input video is not required.
8703
8704 @subsection Examples
8705
8706 @itemize
8707
8708 @item
8709 List all filters available:
8710 @example
8711 coreimage=list_filters=true
8712 @end example
8713
8714 @item
8715 Use the CIBoxBlur filter with default options to blur an image:
8716 @example
8717 coreimage=filter=CIBoxBlur@@default
8718 @end example
8719
8720 @item
8721 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8722 its center at 100x100 and a radius of 50 pixels:
8723 @example
8724 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8725 @end example
8726
8727 @item
8728 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8729 given as complete and escaped command-line for Apple's standard bash shell:
8730 @example
8731 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8732 @end example
8733 @end itemize
8734
8735 @section cover_rect
8736
8737 Cover a rectangular object
8738
8739 It accepts the following options:
8740
8741 @table @option
8742 @item cover
8743 Filepath of the optional cover image, needs to be in yuv420.
8744
8745 @item mode
8746 Set covering mode.
8747
8748 It accepts the following values:
8749 @table @samp
8750 @item cover
8751 cover it by the supplied image
8752 @item blur
8753 cover it by interpolating the surrounding pixels
8754 @end table
8755
8756 Default value is @var{blur}.
8757 @end table
8758
8759 @subsection Examples
8760
8761 @itemize
8762 @item
8763 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8764 @example
8765 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8766 @end example
8767 @end itemize
8768
8769 @section crop
8770
8771 Crop the input video to given dimensions.
8772
8773 It accepts the following parameters:
8774
8775 @table @option
8776 @item w, out_w
8777 The width of the output video. It defaults to @code{iw}.
8778 This expression is evaluated only once during the filter
8779 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8780
8781 @item h, out_h
8782 The height of the output video. It defaults to @code{ih}.
8783 This expression is evaluated only once during the filter
8784 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8785
8786 @item x
8787 The horizontal position, in the input video, of the left edge of the output
8788 video. It defaults to @code{(in_w-out_w)/2}.
8789 This expression is evaluated per-frame.
8790
8791 @item y
8792 The vertical position, in the input video, of the top edge of the output video.
8793 It defaults to @code{(in_h-out_h)/2}.
8794 This expression is evaluated per-frame.
8795
8796 @item keep_aspect
8797 If set to 1 will force the output display aspect ratio
8798 to be the same of the input, by changing the output sample aspect
8799 ratio. It defaults to 0.
8800
8801 @item exact
8802 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8803 width/height/x/y as specified and will not be rounded to nearest smaller value.
8804 It defaults to 0.
8805 @end table
8806
8807 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8808 expressions containing the following constants:
8809
8810 @table @option
8811 @item x
8812 @item y
8813 The computed values for @var{x} and @var{y}. They are evaluated for
8814 each new frame.
8815
8816 @item in_w
8817 @item in_h
8818 The input width and height.
8819
8820 @item iw
8821 @item ih
8822 These are the same as @var{in_w} and @var{in_h}.
8823
8824 @item out_w
8825 @item out_h
8826 The output (cropped) width and height.
8827
8828 @item ow
8829 @item oh
8830 These are the same as @var{out_w} and @var{out_h}.
8831
8832 @item a
8833 same as @var{iw} / @var{ih}
8834
8835 @item sar
8836 input sample aspect ratio
8837
8838 @item dar
8839 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8840
8841 @item hsub
8842 @item vsub
8843 horizontal and vertical chroma subsample values. For example for the
8844 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8845
8846 @item n
8847 The number of the input frame, starting from 0.
8848
8849 @item pos
8850 the position in the file of the input frame, NAN if unknown
8851
8852 @item t
8853 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8854
8855 @end table
8856
8857 The expression for @var{out_w} may depend on the value of @var{out_h},
8858 and the expression for @var{out_h} may depend on @var{out_w}, but they
8859 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8860 evaluated after @var{out_w} and @var{out_h}.
8861
8862 The @var{x} and @var{y} parameters specify the expressions for the
8863 position of the top-left corner of the output (non-cropped) area. They
8864 are evaluated for each frame. If the evaluated value is not valid, it
8865 is approximated to the nearest valid value.
8866
8867 The expression for @var{x} may depend on @var{y}, and the expression
8868 for @var{y} may depend on @var{x}.
8869
8870 @subsection Examples
8871
8872 @itemize
8873 @item
8874 Crop area with size 100x100 at position (12,34).
8875 @example
8876 crop=100:100:12:34
8877 @end example
8878
8879 Using named options, the example above becomes:
8880 @example
8881 crop=w=100:h=100:x=12:y=34
8882 @end example
8883
8884 @item
8885 Crop the central input area with size 100x100:
8886 @example
8887 crop=100:100
8888 @end example
8889
8890 @item
8891 Crop the central input area with size 2/3 of the input video:
8892 @example
8893 crop=2/3*in_w:2/3*in_h
8894 @end example
8895
8896 @item
8897 Crop the input video central square:
8898 @example
8899 crop=out_w=in_h
8900 crop=in_h
8901 @end example
8902
8903 @item
8904 Delimit the rectangle with the top-left corner placed at position
8905 100:100 and the right-bottom corner corresponding to the right-bottom
8906 corner of the input image.
8907 @example
8908 crop=in_w-100:in_h-100:100:100
8909 @end example
8910
8911 @item
8912 Crop 10 pixels from the left and right borders, and 20 pixels from
8913 the top and bottom borders
8914 @example
8915 crop=in_w-2*10:in_h-2*20
8916 @end example
8917
8918 @item
8919 Keep only the bottom right quarter of the input image:
8920 @example
8921 crop=in_w/2:in_h/2:in_w/2:in_h/2
8922 @end example
8923
8924 @item
8925 Crop height for getting Greek harmony:
8926 @example
8927 crop=in_w:1/PHI*in_w
8928 @end example
8929
8930 @item
8931 Apply trembling effect:
8932 @example
8933 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)
8934 @end example
8935
8936 @item
8937 Apply erratic camera effect depending on timestamp:
8938 @example
8939 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)"
8940 @end example
8941
8942 @item
8943 Set x depending on the value of y:
8944 @example
8945 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8946 @end example
8947 @end itemize
8948
8949 @subsection Commands
8950
8951 This filter supports the following commands:
8952 @table @option
8953 @item w, out_w
8954 @item h, out_h
8955 @item x
8956 @item y
8957 Set width/height of the output video and the horizontal/vertical position
8958 in the input video.
8959 The command accepts the same syntax of the corresponding option.
8960
8961 If the specified expression is not valid, it is kept at its current
8962 value.
8963 @end table
8964
8965 @section cropdetect
8966
8967 Auto-detect the crop size.
8968
8969 It calculates the necessary cropping parameters and prints the
8970 recommended parameters via the logging system. The detected dimensions
8971 correspond to the non-black area of the input video.
8972
8973 It accepts the following parameters:
8974
8975 @table @option
8976
8977 @item limit
8978 Set higher black value threshold, which can be optionally specified
8979 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8980 value greater to the set value is considered non-black. It defaults to 24.
8981 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8982 on the bitdepth of the pixel format.
8983
8984 @item round
8985 The value which the width/height should be divisible by. It defaults to
8986 16. The offset is automatically adjusted to center the video. Use 2 to
8987 get only even dimensions (needed for 4:2:2 video). 16 is best when
8988 encoding to most video codecs.
8989
8990 @item skip
8991 Set the number of initial frames for which evaluation is skipped.
8992 Default is 2. Range is 0 to INT_MAX.
8993
8994 @item reset_count, reset
8995 Set the counter that determines after how many frames cropdetect will
8996 reset the previously detected largest video area and start over to
8997 detect the current optimal crop area. Default value is 0.
8998
8999 This can be useful when channel logos distort the video area. 0
9000 indicates 'never reset', and returns the largest area encountered during
9001 playback.
9002 @end table
9003
9004 @anchor{cue}
9005 @section cue
9006
9007 Delay video filtering until a given wallclock timestamp. The filter first
9008 passes on @option{preroll} amount of frames, then it buffers at most
9009 @option{buffer} amount of frames and waits for the cue. After reaching the cue
9010 it forwards the buffered frames and also any subsequent frames coming in its
9011 input.
9012
9013 The filter can be used synchronize the output of multiple ffmpeg processes for
9014 realtime output devices like decklink. By putting the delay in the filtering
9015 chain and pre-buffering frames the process can pass on data to output almost
9016 immediately after the target wallclock timestamp is reached.
9017
9018 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
9019 some use cases.
9020
9021 @table @option
9022
9023 @item cue
9024 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
9025
9026 @item preroll
9027 The duration of content to pass on as preroll expressed in seconds. Default is 0.
9028
9029 @item buffer
9030 The maximum duration of content to buffer before waiting for the cue expressed
9031 in seconds. Default is 0.
9032
9033 @end table
9034
9035 @anchor{curves}
9036 @section curves
9037
9038 Apply color adjustments using curves.
9039
9040 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
9041 component (red, green and blue) has its values defined by @var{N} key points
9042 tied from each other using a smooth curve. The x-axis represents the pixel
9043 values from the input frame, and the y-axis the new pixel values to be set for
9044 the output frame.
9045
9046 By default, a component curve is defined by the two points @var{(0;0)} and
9047 @var{(1;1)}. This creates a straight line where each original pixel value is
9048 "adjusted" to its own value, which means no change to the image.
9049
9050 The filter allows you to redefine these two points and add some more. A new
9051 curve (using a natural cubic spline interpolation) will be define to pass
9052 smoothly through all these new coordinates. The new defined points needs to be
9053 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
9054 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
9055 the vector spaces, the values will be clipped accordingly.
9056
9057 The filter accepts the following options:
9058
9059 @table @option
9060 @item preset
9061 Select one of the available color presets. This option can be used in addition
9062 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
9063 options takes priority on the preset values.
9064 Available presets are:
9065 @table @samp
9066 @item none
9067 @item color_negative
9068 @item cross_process
9069 @item darker
9070 @item increase_contrast
9071 @item lighter
9072 @item linear_contrast
9073 @item medium_contrast
9074 @item negative
9075 @item strong_contrast
9076 @item vintage
9077 @end table
9078 Default is @code{none}.
9079 @item master, m
9080 Set the master key points. These points will define a second pass mapping. It
9081 is sometimes called a "luminance" or "value" mapping. It can be used with
9082 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
9083 post-processing LUT.
9084 @item red, r
9085 Set the key points for the red component.
9086 @item green, g
9087 Set the key points for the green component.
9088 @item blue, b
9089 Set the key points for the blue component.
9090 @item all
9091 Set the key points for all components (not including master).
9092 Can be used in addition to the other key points component
9093 options. In this case, the unset component(s) will fallback on this
9094 @option{all} setting.
9095 @item psfile
9096 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
9097 @item plot
9098 Save Gnuplot script of the curves in specified file.
9099 @end table
9100
9101 To avoid some filtergraph syntax conflicts, each key points list need to be
9102 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
9103
9104 @subsection Examples
9105
9106 @itemize
9107 @item
9108 Increase slightly the middle level of blue:
9109 @example
9110 curves=blue='0/0 0.5/0.58 1/1'
9111 @end example
9112
9113 @item
9114 Vintage effect:
9115 @example
9116 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'
9117 @end example
9118 Here we obtain the following coordinates for each components:
9119 @table @var
9120 @item red
9121 @code{(0;0.11) (0.42;0.51) (1;0.95)}
9122 @item green
9123 @code{(0;0) (0.50;0.48) (1;1)}
9124 @item blue
9125 @code{(0;0.22) (0.49;0.44) (1;0.80)}
9126 @end table
9127
9128 @item
9129 The previous example can also be achieved with the associated built-in preset:
9130 @example
9131 curves=preset=vintage
9132 @end example
9133
9134 @item
9135 Or simply:
9136 @example
9137 curves=vintage
9138 @end example
9139
9140 @item
9141 Use a Photoshop preset and redefine the points of the green component:
9142 @example
9143 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
9144 @end example
9145
9146 @item
9147 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
9148 and @command{gnuplot}:
9149 @example
9150 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
9151 gnuplot -p /tmp/curves.plt
9152 @end example
9153 @end itemize
9154
9155 @section datascope
9156
9157 Video data analysis filter.
9158
9159 This filter shows hexadecimal pixel values of part of video.
9160
9161 The filter accepts the following options:
9162
9163 @table @option
9164 @item size, s
9165 Set output video size.
9166
9167 @item x
9168 Set x offset from where to pick pixels.
9169
9170 @item y
9171 Set y offset from where to pick pixels.
9172
9173 @item mode
9174 Set scope mode, can be one of the following:
9175 @table @samp
9176 @item mono
9177 Draw hexadecimal pixel values with white color on black background.
9178
9179 @item color
9180 Draw hexadecimal pixel values with input video pixel color on black
9181 background.
9182
9183 @item color2
9184 Draw hexadecimal pixel values on color background picked from input video,
9185 the text color is picked in such way so its always visible.
9186 @end table
9187
9188 @item axis
9189 Draw rows and columns numbers on left and top of video.
9190
9191 @item opacity
9192 Set background opacity.
9193
9194 @item format
9195 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
9196 @end table
9197
9198 @section dblur
9199 Apply Directional blur filter.
9200
9201 The filter accepts the following options:
9202
9203 @table @option
9204 @item angle
9205 Set angle of directional blur. Default is @code{45}.
9206
9207 @item radius
9208 Set radius of directional blur. Default is @code{5}.
9209
9210 @item planes
9211 Set which planes to filter. By default all planes are filtered.
9212 @end table
9213
9214 @subsection Commands
9215 This filter supports same @ref{commands} as options.
9216 The command accepts the same syntax of the corresponding option.
9217
9218 If the specified expression is not valid, it is kept at its current
9219 value.
9220
9221 @section dctdnoiz
9222
9223 Denoise frames using 2D DCT (frequency domain filtering).
9224
9225 This filter is not designed for real time.
9226
9227 The filter accepts the following options:
9228
9229 @table @option
9230 @item sigma, s
9231 Set the noise sigma constant.
9232
9233 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
9234 coefficient (absolute value) below this threshold with be dropped.
9235
9236 If you need a more advanced filtering, see @option{expr}.
9237
9238 Default is @code{0}.
9239
9240 @item overlap
9241 Set number overlapping pixels for each block. Since the filter can be slow, you
9242 may want to reduce this value, at the cost of a less effective filter and the
9243 risk of various artefacts.
9244
9245 If the overlapping value doesn't permit processing the whole input width or
9246 height, a warning will be displayed and according borders won't be denoised.
9247
9248 Default value is @var{blocksize}-1, which is the best possible setting.
9249
9250 @item expr, e
9251 Set the coefficient factor expression.
9252
9253 For each coefficient of a DCT block, this expression will be evaluated as a
9254 multiplier value for the coefficient.
9255
9256 If this is option is set, the @option{sigma} option will be ignored.
9257
9258 The absolute value of the coefficient can be accessed through the @var{c}
9259 variable.
9260
9261 @item n
9262 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
9263 @var{blocksize}, which is the width and height of the processed blocks.
9264
9265 The default value is @var{3} (8x8) and can be raised to @var{4} for a
9266 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
9267 on the speed processing. Also, a larger block size does not necessarily means a
9268 better de-noising.
9269 @end table
9270
9271 @subsection Examples
9272
9273 Apply a denoise with a @option{sigma} of @code{4.5}:
9274 @example
9275 dctdnoiz=4.5
9276 @end example
9277
9278 The same operation can be achieved using the expression system:
9279 @example
9280 dctdnoiz=e='gte(c, 4.5*3)'
9281 @end example
9282
9283 Violent denoise using a block size of @code{16x16}:
9284 @example
9285 dctdnoiz=15:n=4
9286 @end example
9287
9288 @section deband
9289
9290 Remove banding artifacts from input video.
9291 It works by replacing banded pixels with average value of referenced pixels.
9292
9293 The filter accepts the following options:
9294
9295 @table @option
9296 @item 1thr
9297 @item 2thr
9298 @item 3thr
9299 @item 4thr
9300 Set banding detection threshold for each plane. Default is 0.02.
9301 Valid range is 0.00003 to 0.5.
9302 If difference between current pixel and reference pixel is less than threshold,
9303 it will be considered as banded.
9304
9305 @item range, r
9306 Banding detection range in pixels. Default is 16. If positive, random number
9307 in range 0 to set value will be used. If negative, exact absolute value
9308 will be used.
9309 The range defines square of four pixels around current pixel.
9310
9311 @item direction, d
9312 Set direction in radians from which four pixel will be compared. If positive,
9313 random direction from 0 to set direction will be picked. If negative, exact of
9314 absolute value will be picked. For example direction 0, -PI or -2*PI radians
9315 will pick only pixels on same row and -PI/2 will pick only pixels on same
9316 column.
9317
9318 @item blur, b
9319 If enabled, current pixel is compared with average value of all four
9320 surrounding pixels. The default is enabled. If disabled current pixel is
9321 compared with all four surrounding pixels. The pixel is considered banded
9322 if only all four differences with surrounding pixels are less than threshold.
9323
9324 @item coupling, c
9325 If enabled, current pixel is changed if and only if all pixel components are banded,
9326 e.g. banding detection threshold is triggered for all color components.
9327 The default is disabled.
9328 @end table
9329
9330 @section deblock
9331
9332 Remove blocking artifacts from input video.
9333
9334 The filter accepts the following options:
9335
9336 @table @option
9337 @item filter
9338 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9339 This controls what kind of deblocking is applied.
9340
9341 @item block
9342 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9343
9344 @item alpha
9345 @item beta
9346 @item gamma
9347 @item delta
9348 Set blocking detection thresholds. Allowed range is 0 to 1.
9349 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9350 Using higher threshold gives more deblocking strength.
9351 Setting @var{alpha} controls threshold detection at exact edge of block.
9352 Remaining options controls threshold detection near the edge. Each one for
9353 below/above or left/right. Setting any of those to @var{0} disables
9354 deblocking.
9355
9356 @item planes
9357 Set planes to filter. Default is to filter all available planes.
9358 @end table
9359
9360 @subsection Examples
9361
9362 @itemize
9363 @item
9364 Deblock using weak filter and block size of 4 pixels.
9365 @example
9366 deblock=filter=weak:block=4
9367 @end example
9368
9369 @item
9370 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9371 deblocking more edges.
9372 @example
9373 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9374 @end example
9375
9376 @item
9377 Similar as above, but filter only first plane.
9378 @example
9379 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9380 @end example
9381
9382 @item
9383 Similar as above, but filter only second and third plane.
9384 @example
9385 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9386 @end example
9387 @end itemize
9388
9389 @anchor{decimate}
9390 @section decimate
9391
9392 Drop duplicated frames at regular intervals.
9393
9394 The filter accepts the following options:
9395
9396 @table @option
9397 @item cycle
9398 Set the number of frames from which one will be dropped. Setting this to
9399 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9400 Default is @code{5}.
9401
9402 @item dupthresh
9403 Set the threshold for duplicate detection. If the difference metric for a frame
9404 is less than or equal to this value, then it is declared as duplicate. Default
9405 is @code{1.1}
9406
9407 @item scthresh
9408 Set scene change threshold. Default is @code{15}.
9409
9410 @item blockx
9411 @item blocky
9412 Set the size of the x and y-axis blocks used during metric calculations.
9413 Larger blocks give better noise suppression, but also give worse detection of
9414 small movements. Must be a power of two. Default is @code{32}.
9415
9416 @item ppsrc
9417 Mark main input as a pre-processed input and activate clean source input
9418 stream. This allows the input to be pre-processed with various filters to help
9419 the metrics calculation while keeping the frame selection lossless. When set to
9420 @code{1}, the first stream is for the pre-processed input, and the second
9421 stream is the clean source from where the kept frames are chosen. Default is
9422 @code{0}.
9423
9424 @item chroma
9425 Set whether or not chroma is considered in the metric calculations. Default is
9426 @code{1}.
9427 @end table
9428
9429 @section deconvolve
9430
9431 Apply 2D deconvolution of video stream in frequency domain using second stream
9432 as impulse.
9433
9434 The filter accepts the following options:
9435
9436 @table @option
9437 @item planes
9438 Set which planes to process.
9439
9440 @item impulse
9441 Set which impulse video frames will be processed, can be @var{first}
9442 or @var{all}. Default is @var{all}.
9443
9444 @item noise
9445 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9446 and height are not same and not power of 2 or if stream prior to convolving
9447 had noise.
9448 @end table
9449
9450 The @code{deconvolve} filter also supports the @ref{framesync} options.
9451
9452 @section dedot
9453
9454 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9455
9456 It accepts the following options:
9457
9458 @table @option
9459 @item m
9460 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9461 @var{rainbows} for cross-color reduction.
9462
9463 @item lt
9464 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9465
9466 @item tl
9467 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9468
9469 @item tc
9470 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9471
9472 @item ct
9473 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9474 @end table
9475
9476 @section deflate
9477
9478 Apply deflate effect to the video.
9479
9480 This filter replaces the pixel by the local(3x3) average by taking into account
9481 only values lower than the pixel.
9482
9483 It accepts the following options:
9484
9485 @table @option
9486 @item threshold0
9487 @item threshold1
9488 @item threshold2
9489 @item threshold3
9490 Limit the maximum change for each plane, default is 65535.
9491 If 0, plane will remain unchanged.
9492 @end table
9493
9494 @subsection Commands
9495
9496 This filter supports the all above options as @ref{commands}.
9497
9498 @section deflicker
9499
9500 Remove temporal frame luminance variations.
9501
9502 It accepts the following options:
9503
9504 @table @option
9505 @item size, s
9506 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9507
9508 @item mode, m
9509 Set averaging mode to smooth temporal luminance variations.
9510
9511 Available values are:
9512 @table @samp
9513 @item am
9514 Arithmetic mean
9515
9516 @item gm
9517 Geometric mean
9518
9519 @item hm
9520 Harmonic mean
9521
9522 @item qm
9523 Quadratic mean
9524
9525 @item cm
9526 Cubic mean
9527
9528 @item pm
9529 Power mean
9530
9531 @item median
9532 Median
9533 @end table
9534
9535 @item bypass
9536 Do not actually modify frame. Useful when one only wants metadata.
9537 @end table
9538
9539 @section dejudder
9540
9541 Remove judder produced by partially interlaced telecined content.
9542
9543 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9544 source was partially telecined content then the output of @code{pullup,dejudder}
9545 will have a variable frame rate. May change the recorded frame rate of the
9546 container. Aside from that change, this filter will not affect constant frame
9547 rate video.
9548
9549 The option available in this filter is:
9550 @table @option
9551
9552 @item cycle
9553 Specify the length of the window over which the judder repeats.
9554
9555 Accepts any integer greater than 1. Useful values are:
9556 @table @samp
9557
9558 @item 4
9559 If the original was telecined from 24 to 30 fps (Film to NTSC).
9560
9561 @item 5
9562 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9563
9564 @item 20
9565 If a mixture of the two.
9566 @end table
9567
9568 The default is @samp{4}.
9569 @end table
9570
9571 @section delogo
9572
9573 Suppress a TV station logo by a simple interpolation of the surrounding
9574 pixels. Just set a rectangle covering the logo and watch it disappear
9575 (and sometimes something even uglier appear - your mileage may vary).
9576
9577 It accepts the following parameters:
9578 @table @option
9579
9580 @item x
9581 @item y
9582 Specify the top left corner coordinates of the logo. They must be
9583 specified.
9584
9585 @item w
9586 @item h
9587 Specify the width and height of the logo to clear. They must be
9588 specified.
9589
9590 @item band, t
9591 Specify the thickness of the fuzzy edge of the rectangle (added to
9592 @var{w} and @var{h}). The default value is 1. This option is
9593 deprecated, setting higher values should no longer be necessary and
9594 is not recommended.
9595
9596 @item show
9597 When set to 1, a green rectangle is drawn on the screen to simplify
9598 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9599 The default value is 0.
9600
9601 The rectangle is drawn on the outermost pixels which will be (partly)
9602 replaced with interpolated values. The values of the next pixels
9603 immediately outside this rectangle in each direction will be used to
9604 compute the interpolated pixel values inside the rectangle.
9605
9606 @end table
9607
9608 @subsection Examples
9609
9610 @itemize
9611 @item
9612 Set a rectangle covering the area with top left corner coordinates 0,0
9613 and size 100x77, and a band of size 10:
9614 @example
9615 delogo=x=0:y=0:w=100:h=77:band=10
9616 @end example
9617
9618 @end itemize
9619
9620 @anchor{derain}
9621 @section derain
9622
9623 Remove the rain in the input image/video by applying the derain methods based on
9624 convolutional neural networks. Supported models:
9625
9626 @itemize
9627 @item
9628 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9629 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9630 @end itemize
9631
9632 Training as well as model generation scripts are provided in
9633 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9634
9635 Native model files (.model) can be generated from TensorFlow model
9636 files (.pb) by using tools/python/convert.py
9637
9638 The filter accepts the following options:
9639
9640 @table @option
9641 @item filter_type
9642 Specify which filter to use. This option accepts the following values:
9643
9644 @table @samp
9645 @item derain
9646 Derain filter. To conduct derain filter, you need to use a derain model.
9647
9648 @item dehaze
9649 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9650 @end table
9651 Default value is @samp{derain}.
9652
9653 @item dnn_backend
9654 Specify which DNN backend to use for model loading and execution. This option accepts
9655 the following values:
9656
9657 @table @samp
9658 @item native
9659 Native implementation of DNN loading and execution.
9660
9661 @item tensorflow
9662 TensorFlow backend. To enable this backend you
9663 need to install the TensorFlow for C library (see
9664 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9665 @code{--enable-libtensorflow}
9666 @end table
9667 Default value is @samp{native}.
9668
9669 @item model
9670 Set path to model file specifying network architecture and its parameters.
9671 Note that different backends use different file formats. TensorFlow and native
9672 backend can load files for only its format.
9673 @end table
9674
9675 It can also be finished with @ref{dnn_processing} filter.
9676
9677 @section deshake
9678
9679 Attempt to fix small changes in horizontal and/or vertical shift. This
9680 filter helps remove camera shake from hand-holding a camera, bumping a
9681 tripod, moving on a vehicle, etc.
9682
9683 The filter accepts the following options:
9684
9685 @table @option
9686
9687 @item x
9688 @item y
9689 @item w
9690 @item h
9691 Specify a rectangular area where to limit the search for motion
9692 vectors.
9693 If desired the search for motion vectors can be limited to a
9694 rectangular area of the frame defined by its top left corner, width
9695 and height. These parameters have the same meaning as the drawbox
9696 filter which can be used to visualise the position of the bounding
9697 box.
9698
9699 This is useful when simultaneous movement of subjects within the frame
9700 might be confused for camera motion by the motion vector search.
9701
9702 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9703 then the full frame is used. This allows later options to be set
9704 without specifying the bounding box for the motion vector search.
9705
9706 Default - search the whole frame.
9707
9708 @item rx
9709 @item ry
9710 Specify the maximum extent of movement in x and y directions in the
9711 range 0-64 pixels. Default 16.
9712
9713 @item edge
9714 Specify how to generate pixels to fill blanks at the edge of the
9715 frame. Available values are:
9716 @table @samp
9717 @item blank, 0
9718 Fill zeroes at blank locations
9719 @item original, 1
9720 Original image at blank locations
9721 @item clamp, 2
9722 Extruded edge value at blank locations
9723 @item mirror, 3
9724 Mirrored edge at blank locations
9725 @end table
9726 Default value is @samp{mirror}.
9727
9728 @item blocksize
9729 Specify the blocksize to use for motion search. Range 4-128 pixels,
9730 default 8.
9731
9732 @item contrast
9733 Specify the contrast threshold for blocks. Only blocks with more than
9734 the specified contrast (difference between darkest and lightest
9735 pixels) will be considered. Range 1-255, default 125.
9736
9737 @item search
9738 Specify the search strategy. Available values are:
9739 @table @samp
9740 @item exhaustive, 0
9741 Set exhaustive search
9742 @item less, 1
9743 Set less exhaustive search.
9744 @end table
9745 Default value is @samp{exhaustive}.
9746
9747 @item filename
9748 If set then a detailed log of the motion search is written to the
9749 specified file.
9750
9751 @end table
9752
9753 @section despill
9754
9755 Remove unwanted contamination of foreground colors, caused by reflected color of
9756 greenscreen or bluescreen.
9757
9758 This filter accepts the following options:
9759
9760 @table @option
9761 @item type
9762 Set what type of despill to use.
9763
9764 @item mix
9765 Set how spillmap will be generated.
9766
9767 @item expand
9768 Set how much to get rid of still remaining spill.
9769
9770 @item red
9771 Controls amount of red in spill area.
9772
9773 @item green
9774 Controls amount of green in spill area.
9775 Should be -1 for greenscreen.
9776
9777 @item blue
9778 Controls amount of blue in spill area.
9779 Should be -1 for bluescreen.
9780
9781 @item brightness
9782 Controls brightness of spill area, preserving colors.
9783
9784 @item alpha
9785 Modify alpha from generated spillmap.
9786 @end table
9787
9788 @subsection Commands
9789
9790 This filter supports the all above options as @ref{commands}.
9791
9792 @section detelecine
9793
9794 Apply an exact inverse of the telecine operation. It requires a predefined
9795 pattern specified using the pattern option which must be the same as that passed
9796 to the telecine filter.
9797
9798 This filter accepts the following options:
9799
9800 @table @option
9801 @item first_field
9802 @table @samp
9803 @item top, t
9804 top field first
9805 @item bottom, b
9806 bottom field first
9807 The default value is @code{top}.
9808 @end table
9809
9810 @item pattern
9811 A string of numbers representing the pulldown pattern you wish to apply.
9812 The default value is @code{23}.
9813
9814 @item start_frame
9815 A number representing position of the first frame with respect to the telecine
9816 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9817 @end table
9818
9819 @section dilation
9820
9821 Apply dilation effect to the video.
9822
9823 This filter replaces the pixel by the local(3x3) maximum.
9824
9825 It accepts the following options:
9826
9827 @table @option
9828 @item threshold0
9829 @item threshold1
9830 @item threshold2
9831 @item threshold3
9832 Limit the maximum change for each plane, default is 65535.
9833 If 0, plane will remain unchanged.
9834
9835 @item coordinates
9836 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9837 pixels are used.
9838
9839 Flags to local 3x3 coordinates maps like this:
9840
9841     1 2 3
9842     4   5
9843     6 7 8
9844 @end table
9845
9846 @subsection Commands
9847
9848 This filter supports the all above options as @ref{commands}.
9849
9850 @section displace
9851
9852 Displace pixels as indicated by second and third input stream.
9853
9854 It takes three input streams and outputs one stream, the first input is the
9855 source, and second and third input are displacement maps.
9856
9857 The second input specifies how much to displace pixels along the
9858 x-axis, while the third input specifies how much to displace pixels
9859 along the y-axis.
9860 If one of displacement map streams terminates, last frame from that
9861 displacement map will be used.
9862
9863 Note that once generated, displacements maps can be reused over and over again.
9864
9865 A description of the accepted options follows.
9866
9867 @table @option
9868 @item edge
9869 Set displace behavior for pixels that are out of range.
9870
9871 Available values are:
9872 @table @samp
9873 @item blank
9874 Missing pixels are replaced by black pixels.
9875
9876 @item smear
9877 Adjacent pixels will spread out to replace missing pixels.
9878
9879 @item wrap
9880 Out of range pixels are wrapped so they point to pixels of other side.
9881
9882 @item mirror
9883 Out of range pixels will be replaced with mirrored pixels.
9884 @end table
9885 Default is @samp{smear}.
9886
9887 @end table
9888
9889 @subsection Examples
9890
9891 @itemize
9892 @item
9893 Add ripple effect to rgb input of video size hd720:
9894 @example
9895 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
9896 @end example
9897
9898 @item
9899 Add wave effect to rgb input of video size hd720:
9900 @example
9901 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
9902 @end example
9903 @end itemize
9904
9905 @anchor{dnn_processing}
9906 @section dnn_processing
9907
9908 Do image processing with deep neural networks. It works together with another filter
9909 which converts the pixel format of the Frame to what the dnn network requires.
9910
9911 The filter accepts the following options:
9912
9913 @table @option
9914 @item dnn_backend
9915 Specify which DNN backend to use for model loading and execution. This option accepts
9916 the following values:
9917
9918 @table @samp
9919 @item native
9920 Native implementation of DNN loading and execution.
9921
9922 @item tensorflow
9923 TensorFlow backend. To enable this backend you
9924 need to install the TensorFlow for C library (see
9925 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9926 @code{--enable-libtensorflow}
9927
9928 @item openvino
9929 OpenVINO backend. To enable this backend you
9930 need to build and install the OpenVINO for C library (see
9931 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
9932 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
9933 be needed if the header files and libraries are not installed into system path)
9934
9935 @end table
9936
9937 Default value is @samp{native}.
9938
9939 @item model
9940 Set path to model file specifying network architecture and its parameters.
9941 Note that different backends use different file formats. TensorFlow, OpenVINO and native
9942 backend can load files for only its format.
9943
9944 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9945
9946 @item input
9947 Set the input name of the dnn network.
9948
9949 @item output
9950 Set the output name of the dnn network.
9951
9952 @end table
9953
9954 @subsection Examples
9955
9956 @itemize
9957 @item
9958 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
9959 @example
9960 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
9961 @end example
9962
9963 @item
9964 Halve the pixel value of the frame with format gray32f:
9965 @example
9966 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
9967 @end example
9968
9969 @item
9970 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
9971 @example
9972 ./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
9973 @end example
9974
9975 @item
9976 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
9977 @example
9978 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
9979 @end example
9980
9981 @end itemize
9982
9983 @section drawbox
9984
9985 Draw a colored box on the input image.
9986
9987 It accepts the following parameters:
9988
9989 @table @option
9990 @item x
9991 @item y
9992 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
9993
9994 @item width, w
9995 @item height, h
9996 The expressions which specify the width and height of the box; if 0 they are interpreted as
9997 the input width and height. It defaults to 0.
9998
9999 @item color, c
10000 Specify the color of the box to write. For the general syntax of this option,
10001 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10002 value @code{invert} is used, the box edge color is the same as the
10003 video with inverted luma.
10004
10005 @item thickness, t
10006 The expression which sets the thickness of the box edge.
10007 A value of @code{fill} will create a filled box. Default value is @code{3}.
10008
10009 See below for the list of accepted constants.
10010
10011 @item replace
10012 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
10013 will overwrite the video's color and alpha pixels.
10014 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
10015 @end table
10016
10017 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10018 following constants:
10019
10020 @table @option
10021 @item dar
10022 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10023
10024 @item hsub
10025 @item vsub
10026 horizontal and vertical chroma subsample values. For example for the
10027 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10028
10029 @item in_h, ih
10030 @item in_w, iw
10031 The input width and height.
10032
10033 @item sar
10034 The input sample aspect ratio.
10035
10036 @item x
10037 @item y
10038 The x and y offset coordinates where the box is drawn.
10039
10040 @item w
10041 @item h
10042 The width and height of the drawn box.
10043
10044 @item t
10045 The thickness of the drawn box.
10046
10047 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10048 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10049
10050 @end table
10051
10052 @subsection Examples
10053
10054 @itemize
10055 @item
10056 Draw a black box around the edge of the input image:
10057 @example
10058 drawbox
10059 @end example
10060
10061 @item
10062 Draw a box with color red and an opacity of 50%:
10063 @example
10064 drawbox=10:20:200:60:red@@0.5
10065 @end example
10066
10067 The previous example can be specified as:
10068 @example
10069 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
10070 @end example
10071
10072 @item
10073 Fill the box with pink color:
10074 @example
10075 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
10076 @end example
10077
10078 @item
10079 Draw a 2-pixel red 2.40:1 mask:
10080 @example
10081 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
10082 @end example
10083 @end itemize
10084
10085 @subsection Commands
10086 This filter supports same commands as options.
10087 The command accepts the same syntax of the corresponding option.
10088
10089 If the specified expression is not valid, it is kept at its current
10090 value.
10091
10092 @anchor{drawgraph}
10093 @section drawgraph
10094 Draw a graph using input video metadata.
10095
10096 It accepts the following parameters:
10097
10098 @table @option
10099 @item m1
10100 Set 1st frame metadata key from which metadata values will be used to draw a graph.
10101
10102 @item fg1
10103 Set 1st foreground color expression.
10104
10105 @item m2
10106 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
10107
10108 @item fg2
10109 Set 2nd foreground color expression.
10110
10111 @item m3
10112 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
10113
10114 @item fg3
10115 Set 3rd foreground color expression.
10116
10117 @item m4
10118 Set 4th frame metadata key from which metadata values will be used to draw a graph.
10119
10120 @item fg4
10121 Set 4th foreground color expression.
10122
10123 @item min
10124 Set minimal value of metadata value.
10125
10126 @item max
10127 Set maximal value of metadata value.
10128
10129 @item bg
10130 Set graph background color. Default is white.
10131
10132 @item mode
10133 Set graph mode.
10134
10135 Available values for mode is:
10136 @table @samp
10137 @item bar
10138 @item dot
10139 @item line
10140 @end table
10141
10142 Default is @code{line}.
10143
10144 @item slide
10145 Set slide mode.
10146
10147 Available values for slide is:
10148 @table @samp
10149 @item frame
10150 Draw new frame when right border is reached.
10151
10152 @item replace
10153 Replace old columns with new ones.
10154
10155 @item scroll
10156 Scroll from right to left.
10157
10158 @item rscroll
10159 Scroll from left to right.
10160
10161 @item picture
10162 Draw single picture.
10163 @end table
10164
10165 Default is @code{frame}.
10166
10167 @item size
10168 Set size of graph video. For the syntax of this option, check the
10169 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10170 The default value is @code{900x256}.
10171
10172 @item rate, r
10173 Set the output frame rate. Default value is @code{25}.
10174
10175 The foreground color expressions can use the following variables:
10176 @table @option
10177 @item MIN
10178 Minimal value of metadata value.
10179
10180 @item MAX
10181 Maximal value of metadata value.
10182
10183 @item VAL
10184 Current metadata key value.
10185 @end table
10186
10187 The color is defined as 0xAABBGGRR.
10188 @end table
10189
10190 Example using metadata from @ref{signalstats} filter:
10191 @example
10192 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
10193 @end example
10194
10195 Example using metadata from @ref{ebur128} filter:
10196 @example
10197 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
10198 @end example
10199
10200 @section drawgrid
10201
10202 Draw a grid on the input image.
10203
10204 It accepts the following parameters:
10205
10206 @table @option
10207 @item x
10208 @item y
10209 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
10210
10211 @item width, w
10212 @item height, h
10213 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
10214 input width and height, respectively, minus @code{thickness}, so image gets
10215 framed. Default to 0.
10216
10217 @item color, c
10218 Specify the color of the grid. For the general syntax of this option,
10219 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10220 value @code{invert} is used, the grid color is the same as the
10221 video with inverted luma.
10222
10223 @item thickness, t
10224 The expression which sets the thickness of the grid line. Default value is @code{1}.
10225
10226 See below for the list of accepted constants.
10227
10228 @item replace
10229 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
10230 will overwrite the video's color and alpha pixels.
10231 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
10232 @end table
10233
10234 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10235 following constants:
10236
10237 @table @option
10238 @item dar
10239 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10240
10241 @item hsub
10242 @item vsub
10243 horizontal and vertical chroma subsample values. For example for the
10244 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10245
10246 @item in_h, ih
10247 @item in_w, iw
10248 The input grid cell width and height.
10249
10250 @item sar
10251 The input sample aspect ratio.
10252
10253 @item x
10254 @item y
10255 The x and y coordinates of some point of grid intersection (meant to configure offset).
10256
10257 @item w
10258 @item h
10259 The width and height of the drawn cell.
10260
10261 @item t
10262 The thickness of the drawn cell.
10263
10264 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10265 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10266
10267 @end table
10268
10269 @subsection Examples
10270
10271 @itemize
10272 @item
10273 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
10274 @example
10275 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
10276 @end example
10277
10278 @item
10279 Draw a white 3x3 grid with an opacity of 50%:
10280 @example
10281 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
10282 @end example
10283 @end itemize
10284
10285 @subsection Commands
10286 This filter supports same commands as options.
10287 The command accepts the same syntax of the corresponding option.
10288
10289 If the specified expression is not valid, it is kept at its current
10290 value.
10291
10292 @anchor{drawtext}
10293 @section drawtext
10294
10295 Draw a text string or text from a specified file on top of a video, using the
10296 libfreetype library.
10297
10298 To enable compilation of this filter, you need to configure FFmpeg with
10299 @code{--enable-libfreetype}.
10300 To enable default font fallback and the @var{font} option you need to
10301 configure FFmpeg with @code{--enable-libfontconfig}.
10302 To enable the @var{text_shaping} option, you need to configure FFmpeg with
10303 @code{--enable-libfribidi}.
10304
10305 @subsection Syntax
10306
10307 It accepts the following parameters:
10308
10309 @table @option
10310
10311 @item box
10312 Used to draw a box around text using the background color.
10313 The value must be either 1 (enable) or 0 (disable).
10314 The default value of @var{box} is 0.
10315
10316 @item boxborderw
10317 Set the width of the border to be drawn around the box using @var{boxcolor}.
10318 The default value of @var{boxborderw} is 0.
10319
10320 @item boxcolor
10321 The color to be used for drawing box around text. For the syntax of this
10322 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10323
10324 The default value of @var{boxcolor} is "white".
10325
10326 @item line_spacing
10327 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10328 The default value of @var{line_spacing} is 0.
10329
10330 @item borderw
10331 Set the width of the border to be drawn around the text using @var{bordercolor}.
10332 The default value of @var{borderw} is 0.
10333
10334 @item bordercolor
10335 Set the color to be used for drawing border around text. For the syntax of this
10336 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10337
10338 The default value of @var{bordercolor} is "black".
10339
10340 @item expansion
10341 Select how the @var{text} is expanded. Can be either @code{none},
10342 @code{strftime} (deprecated) or
10343 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10344 below for details.
10345
10346 @item basetime
10347 Set a start time for the count. Value is in microseconds. Only applied
10348 in the deprecated strftime expansion mode. To emulate in normal expansion
10349 mode use the @code{pts} function, supplying the start time (in seconds)
10350 as the second argument.
10351
10352 @item fix_bounds
10353 If true, check and fix text coords to avoid clipping.
10354
10355 @item fontcolor
10356 The color to be used for drawing fonts. For the syntax of this option, check
10357 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10358
10359 The default value of @var{fontcolor} is "black".
10360
10361 @item fontcolor_expr
10362 String which is expanded the same way as @var{text} to obtain dynamic
10363 @var{fontcolor} value. By default this option has empty value and is not
10364 processed. When this option is set, it overrides @var{fontcolor} option.
10365
10366 @item font
10367 The font family to be used for drawing text. By default Sans.
10368
10369 @item fontfile
10370 The font file to be used for drawing text. The path must be included.
10371 This parameter is mandatory if the fontconfig support is disabled.
10372
10373 @item alpha
10374 Draw the text applying alpha blending. The value can
10375 be a number between 0.0 and 1.0.
10376 The expression accepts the same variables @var{x, y} as well.
10377 The default value is 1.
10378 Please see @var{fontcolor_expr}.
10379
10380 @item fontsize
10381 The font size to be used for drawing text.
10382 The default value of @var{fontsize} is 16.
10383
10384 @item text_shaping
10385 If set to 1, attempt to shape the text (for example, reverse the order of
10386 right-to-left text and join Arabic characters) before drawing it.
10387 Otherwise, just draw the text exactly as given.
10388 By default 1 (if supported).
10389
10390 @item ft_load_flags
10391 The flags to be used for loading the fonts.
10392
10393 The flags map the corresponding flags supported by libfreetype, and are
10394 a combination of the following values:
10395 @table @var
10396 @item default
10397 @item no_scale
10398 @item no_hinting
10399 @item render
10400 @item no_bitmap
10401 @item vertical_layout
10402 @item force_autohint
10403 @item crop_bitmap
10404 @item pedantic
10405 @item ignore_global_advance_width
10406 @item no_recurse
10407 @item ignore_transform
10408 @item monochrome
10409 @item linear_design
10410 @item no_autohint
10411 @end table
10412
10413 Default value is "default".
10414
10415 For more information consult the documentation for the FT_LOAD_*
10416 libfreetype flags.
10417
10418 @item shadowcolor
10419 The color to be used for drawing a shadow behind the drawn text. For the
10420 syntax of this option, check the @ref{color syntax,,"Color" section in the
10421 ffmpeg-utils manual,ffmpeg-utils}.
10422
10423 The default value of @var{shadowcolor} is "black".
10424
10425 @item shadowx
10426 @item shadowy
10427 The x and y offsets for the text shadow position with respect to the
10428 position of the text. They can be either positive or negative
10429 values. The default value for both is "0".
10430
10431 @item start_number
10432 The starting frame number for the n/frame_num variable. The default value
10433 is "0".
10434
10435 @item tabsize
10436 The size in number of spaces to use for rendering the tab.
10437 Default value is 4.
10438
10439 @item timecode
10440 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10441 format. It can be used with or without text parameter. @var{timecode_rate}
10442 option must be specified.
10443
10444 @item timecode_rate, rate, r
10445 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10446 integer. Minimum value is "1".
10447 Drop-frame timecode is supported for frame rates 30 & 60.
10448
10449 @item tc24hmax
10450 If set to 1, the output of the timecode option will wrap around at 24 hours.
10451 Default is 0 (disabled).
10452
10453 @item text
10454 The text string to be drawn. The text must be a sequence of UTF-8
10455 encoded characters.
10456 This parameter is mandatory if no file is specified with the parameter
10457 @var{textfile}.
10458
10459 @item textfile
10460 A text file containing text to be drawn. The text must be a sequence
10461 of UTF-8 encoded characters.
10462
10463 This parameter is mandatory if no text string is specified with the
10464 parameter @var{text}.
10465
10466 If both @var{text} and @var{textfile} are specified, an error is thrown.
10467
10468 @item reload
10469 If set to 1, the @var{textfile} will be reloaded before each frame.
10470 Be sure to update it atomically, or it may be read partially, or even fail.
10471
10472 @item x
10473 @item y
10474 The expressions which specify the offsets where text will be drawn
10475 within the video frame. They are relative to the top/left border of the
10476 output image.
10477
10478 The default value of @var{x} and @var{y} is "0".
10479
10480 See below for the list of accepted constants and functions.
10481 @end table
10482
10483 The parameters for @var{x} and @var{y} are expressions containing the
10484 following constants and functions:
10485
10486 @table @option
10487 @item dar
10488 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10489
10490 @item hsub
10491 @item vsub
10492 horizontal and vertical chroma subsample values. For example for the
10493 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10494
10495 @item line_h, lh
10496 the height of each text line
10497
10498 @item main_h, h, H
10499 the input height
10500
10501 @item main_w, w, W
10502 the input width
10503
10504 @item max_glyph_a, ascent
10505 the maximum distance from the baseline to the highest/upper grid
10506 coordinate used to place a glyph outline point, for all the rendered
10507 glyphs.
10508 It is a positive value, due to the grid's orientation with the Y axis
10509 upwards.
10510
10511 @item max_glyph_d, descent
10512 the maximum distance from the baseline to the lowest grid coordinate
10513 used to place a glyph outline point, for all the rendered glyphs.
10514 This is a negative value, due to the grid's orientation, with the Y axis
10515 upwards.
10516
10517 @item max_glyph_h
10518 maximum glyph height, that is the maximum height for all the glyphs
10519 contained in the rendered text, it is equivalent to @var{ascent} -
10520 @var{descent}.
10521
10522 @item max_glyph_w
10523 maximum glyph width, that is the maximum width for all the glyphs
10524 contained in the rendered text
10525
10526 @item n
10527 the number of input frame, starting from 0
10528
10529 @item rand(min, max)
10530 return a random number included between @var{min} and @var{max}
10531
10532 @item sar
10533 The input sample aspect ratio.
10534
10535 @item t
10536 timestamp expressed in seconds, NAN if the input timestamp is unknown
10537
10538 @item text_h, th
10539 the height of the rendered text
10540
10541 @item text_w, tw
10542 the width of the rendered text
10543
10544 @item x
10545 @item y
10546 the x and y offset coordinates where the text is drawn.
10547
10548 These parameters allow the @var{x} and @var{y} expressions to refer
10549 to each other, so you can for example specify @code{y=x/dar}.
10550
10551 @item pict_type
10552 A one character description of the current frame's picture type.
10553
10554 @item pkt_pos
10555 The current packet's position in the input file or stream
10556 (in bytes, from the start of the input). A value of -1 indicates
10557 this info is not available.
10558
10559 @item pkt_duration
10560 The current packet's duration, in seconds.
10561
10562 @item pkt_size
10563 The current packet's size (in bytes).
10564 @end table
10565
10566 @anchor{drawtext_expansion}
10567 @subsection Text expansion
10568
10569 If @option{expansion} is set to @code{strftime},
10570 the filter recognizes strftime() sequences in the provided text and
10571 expands them accordingly. Check the documentation of strftime(). This
10572 feature is deprecated.
10573
10574 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10575
10576 If @option{expansion} is set to @code{normal} (which is the default),
10577 the following expansion mechanism is used.
10578
10579 The backslash character @samp{\}, followed by any character, always expands to
10580 the second character.
10581
10582 Sequences of the form @code{%@{...@}} are expanded. The text between the
10583 braces is a function name, possibly followed by arguments separated by ':'.
10584 If the arguments contain special characters or delimiters (':' or '@}'),
10585 they should be escaped.
10586
10587 Note that they probably must also be escaped as the value for the
10588 @option{text} option in the filter argument string and as the filter
10589 argument in the filtergraph description, and possibly also for the shell,
10590 that makes up to four levels of escaping; using a text file avoids these
10591 problems.
10592
10593 The following functions are available:
10594
10595 @table @command
10596
10597 @item expr, e
10598 The expression evaluation result.
10599
10600 It must take one argument specifying the expression to be evaluated,
10601 which accepts the same constants and functions as the @var{x} and
10602 @var{y} values. Note that not all constants should be used, for
10603 example the text size is not known when evaluating the expression, so
10604 the constants @var{text_w} and @var{text_h} will have an undefined
10605 value.
10606
10607 @item expr_int_format, eif
10608 Evaluate the expression's value and output as formatted integer.
10609
10610 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10611 The second argument specifies the output format. Allowed values are @samp{x},
10612 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10613 @code{printf} function.
10614 The third parameter is optional and sets the number of positions taken by the output.
10615 It can be used to add padding with zeros from the left.
10616
10617 @item gmtime
10618 The time at which the filter is running, expressed in UTC.
10619 It can accept an argument: a strftime() format string.
10620
10621 @item localtime
10622 The time at which the filter is running, expressed in the local time zone.
10623 It can accept an argument: a strftime() format string.
10624
10625 @item metadata
10626 Frame metadata. Takes one or two arguments.
10627
10628 The first argument is mandatory and specifies the metadata key.
10629
10630 The second argument is optional and specifies a default value, used when the
10631 metadata key is not found or empty.
10632
10633 Available metadata can be identified by inspecting entries
10634 starting with TAG included within each frame section
10635 printed by running @code{ffprobe -show_frames}.
10636
10637 String metadata generated in filters leading to
10638 the drawtext filter are also available.
10639
10640 @item n, frame_num
10641 The frame number, starting from 0.
10642
10643 @item pict_type
10644 A one character description of the current picture type.
10645
10646 @item pts
10647 The timestamp of the current frame.
10648 It can take up to three arguments.
10649
10650 The first argument is the format of the timestamp; it defaults to @code{flt}
10651 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10652 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10653 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10654 @code{localtime} stands for the timestamp of the frame formatted as
10655 local time zone time.
10656
10657 The second argument is an offset added to the timestamp.
10658
10659 If the format is set to @code{hms}, a third argument @code{24HH} may be
10660 supplied to present the hour part of the formatted timestamp in 24h format
10661 (00-23).
10662
10663 If the format is set to @code{localtime} or @code{gmtime},
10664 a third argument may be supplied: a strftime() format string.
10665 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10666 @end table
10667
10668 @subsection Commands
10669
10670 This filter supports altering parameters via commands:
10671 @table @option
10672 @item reinit
10673 Alter existing filter parameters.
10674
10675 Syntax for the argument is the same as for filter invocation, e.g.
10676
10677 @example
10678 fontsize=56:fontcolor=green:text='Hello World'
10679 @end example
10680
10681 Full filter invocation with sendcmd would look like this:
10682
10683 @example
10684 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10685 @end example
10686 @end table
10687
10688 If the entire argument can't be parsed or applied as valid values then the filter will
10689 continue with its existing parameters.
10690
10691 @subsection Examples
10692
10693 @itemize
10694 @item
10695 Draw "Test Text" with font FreeSerif, using the default values for the
10696 optional parameters.
10697
10698 @example
10699 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10700 @end example
10701
10702 @item
10703 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10704 and y=50 (counting from the top-left corner of the screen), text is
10705 yellow with a red box around it. Both the text and the box have an
10706 opacity of 20%.
10707
10708 @example
10709 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10710           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10711 @end example
10712
10713 Note that the double quotes are not necessary if spaces are not used
10714 within the parameter list.
10715
10716 @item
10717 Show the text at the center of the video frame:
10718 @example
10719 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10720 @end example
10721
10722 @item
10723 Show the text at a random position, switching to a new position every 30 seconds:
10724 @example
10725 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)"
10726 @end example
10727
10728 @item
10729 Show a text line sliding from right to left in the last row of the video
10730 frame. The file @file{LONG_LINE} is assumed to contain a single line
10731 with no newlines.
10732 @example
10733 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10734 @end example
10735
10736 @item
10737 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10738 @example
10739 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10740 @end example
10741
10742 @item
10743 Draw a single green letter "g", at the center of the input video.
10744 The glyph baseline is placed at half screen height.
10745 @example
10746 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10747 @end example
10748
10749 @item
10750 Show text for 1 second every 3 seconds:
10751 @example
10752 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10753 @end example
10754
10755 @item
10756 Use fontconfig to set the font. Note that the colons need to be escaped.
10757 @example
10758 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10759 @end example
10760
10761 @item
10762 Draw "Test Text" with font size dependent on height of the video.
10763 @example
10764 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
10765 @end example
10766
10767 @item
10768 Print the date of a real-time encoding (see strftime(3)):
10769 @example
10770 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10771 @end example
10772
10773 @item
10774 Show text fading in and out (appearing/disappearing):
10775 @example
10776 #!/bin/sh
10777 DS=1.0 # display start
10778 DE=10.0 # display end
10779 FID=1.5 # fade in duration
10780 FOD=5 # fade out duration
10781 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 @}"
10782 @end example
10783
10784 @item
10785 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10786 and the @option{fontsize} value are included in the @option{y} offset.
10787 @example
10788 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10789 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10790 @end example
10791
10792 @item
10793 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10794 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10795 must have option @option{-export_path_metadata 1} for the special metadata fields
10796 to be available for filters.
10797 @example
10798 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10799 @end example
10800
10801 @end itemize
10802
10803 For more information about libfreetype, check:
10804 @url{http://www.freetype.org/}.
10805
10806 For more information about fontconfig, check:
10807 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10808
10809 For more information about libfribidi, check:
10810 @url{http://fribidi.org/}.
10811
10812 @section edgedetect
10813
10814 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10815
10816 The filter accepts the following options:
10817
10818 @table @option
10819 @item low
10820 @item high
10821 Set low and high threshold values used by the Canny thresholding
10822 algorithm.
10823
10824 The high threshold selects the "strong" edge pixels, which are then
10825 connected through 8-connectivity with the "weak" edge pixels selected
10826 by the low threshold.
10827
10828 @var{low} and @var{high} threshold values must be chosen in the range
10829 [0,1], and @var{low} should be lesser or equal to @var{high}.
10830
10831 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10832 is @code{50/255}.
10833
10834 @item mode
10835 Define the drawing mode.
10836
10837 @table @samp
10838 @item wires
10839 Draw white/gray wires on black background.
10840
10841 @item colormix
10842 Mix the colors to create a paint/cartoon effect.
10843
10844 @item canny
10845 Apply Canny edge detector on all selected planes.
10846 @end table
10847 Default value is @var{wires}.
10848
10849 @item planes
10850 Select planes for filtering. By default all available planes are filtered.
10851 @end table
10852
10853 @subsection Examples
10854
10855 @itemize
10856 @item
10857 Standard edge detection with custom values for the hysteresis thresholding:
10858 @example
10859 edgedetect=low=0.1:high=0.4
10860 @end example
10861
10862 @item
10863 Painting effect without thresholding:
10864 @example
10865 edgedetect=mode=colormix:high=0
10866 @end example
10867 @end itemize
10868
10869 @section elbg
10870
10871 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10872
10873 For each input image, the filter will compute the optimal mapping from
10874 the input to the output given the codebook length, that is the number
10875 of distinct output colors.
10876
10877 This filter accepts the following options.
10878
10879 @table @option
10880 @item codebook_length, l
10881 Set codebook length. The value must be a positive integer, and
10882 represents the number of distinct output colors. Default value is 256.
10883
10884 @item nb_steps, n
10885 Set the maximum number of iterations to apply for computing the optimal
10886 mapping. The higher the value the better the result and the higher the
10887 computation time. Default value is 1.
10888
10889 @item seed, s
10890 Set a random seed, must be an integer included between 0 and
10891 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10892 will try to use a good random seed on a best effort basis.
10893
10894 @item pal8
10895 Set pal8 output pixel format. This option does not work with codebook
10896 length greater than 256.
10897 @end table
10898
10899 @section entropy
10900
10901 Measure graylevel entropy in histogram of color channels of video frames.
10902
10903 It accepts the following parameters:
10904
10905 @table @option
10906 @item mode
10907 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10908
10909 @var{diff} mode measures entropy of histogram delta values, absolute differences
10910 between neighbour histogram values.
10911 @end table
10912
10913 @section eq
10914 Set brightness, contrast, saturation and approximate gamma adjustment.
10915
10916 The filter accepts the following options:
10917
10918 @table @option
10919 @item contrast
10920 Set the contrast expression. The value must be a float value in range
10921 @code{-1000.0} to @code{1000.0}. The default value is "1".
10922
10923 @item brightness
10924 Set the brightness expression. The value must be a float value in
10925 range @code{-1.0} to @code{1.0}. The default value is "0".
10926
10927 @item saturation
10928 Set the saturation expression. The value must be a float in
10929 range @code{0.0} to @code{3.0}. The default value is "1".
10930
10931 @item gamma
10932 Set the gamma expression. The value must be a float in range
10933 @code{0.1} to @code{10.0}.  The default value is "1".
10934
10935 @item gamma_r
10936 Set the gamma expression for red. The value must be a float in
10937 range @code{0.1} to @code{10.0}. The default value is "1".
10938
10939 @item gamma_g
10940 Set the gamma expression for green. The value must be a float in range
10941 @code{0.1} to @code{10.0}. The default value is "1".
10942
10943 @item gamma_b
10944 Set the gamma expression for blue. The value must be a float in range
10945 @code{0.1} to @code{10.0}. The default value is "1".
10946
10947 @item gamma_weight
10948 Set the gamma weight expression. It can be used to reduce the effect
10949 of a high gamma value on bright image areas, e.g. keep them from
10950 getting overamplified and just plain white. The value must be a float
10951 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10952 gamma correction all the way down while @code{1.0} leaves it at its
10953 full strength. Default is "1".
10954
10955 @item eval
10956 Set when the expressions for brightness, contrast, saturation and
10957 gamma expressions are evaluated.
10958
10959 It accepts the following values:
10960 @table @samp
10961 @item init
10962 only evaluate expressions once during the filter initialization or
10963 when a command is processed
10964
10965 @item frame
10966 evaluate expressions for each incoming frame
10967 @end table
10968
10969 Default value is @samp{init}.
10970 @end table
10971
10972 The expressions accept the following parameters:
10973 @table @option
10974 @item n
10975 frame count of the input frame starting from 0
10976
10977 @item pos
10978 byte position of the corresponding packet in the input file, NAN if
10979 unspecified
10980
10981 @item r
10982 frame rate of the input video, NAN if the input frame rate is unknown
10983
10984 @item t
10985 timestamp expressed in seconds, NAN if the input timestamp is unknown
10986 @end table
10987
10988 @subsection Commands
10989 The filter supports the following commands:
10990
10991 @table @option
10992 @item contrast
10993 Set the contrast expression.
10994
10995 @item brightness
10996 Set the brightness expression.
10997
10998 @item saturation
10999 Set the saturation expression.
11000
11001 @item gamma
11002 Set the gamma expression.
11003
11004 @item gamma_r
11005 Set the gamma_r expression.
11006
11007 @item gamma_g
11008 Set gamma_g expression.
11009
11010 @item gamma_b
11011 Set gamma_b expression.
11012
11013 @item gamma_weight
11014 Set gamma_weight expression.
11015
11016 The command accepts the same syntax of the corresponding option.
11017
11018 If the specified expression is not valid, it is kept at its current
11019 value.
11020
11021 @end table
11022
11023 @section erosion
11024
11025 Apply erosion effect to the video.
11026
11027 This filter replaces the pixel by the local(3x3) minimum.
11028
11029 It accepts the following options:
11030
11031 @table @option
11032 @item threshold0
11033 @item threshold1
11034 @item threshold2
11035 @item threshold3
11036 Limit the maximum change for each plane, default is 65535.
11037 If 0, plane will remain unchanged.
11038
11039 @item coordinates
11040 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
11041 pixels are used.
11042
11043 Flags to local 3x3 coordinates maps like this:
11044
11045     1 2 3
11046     4   5
11047     6 7 8
11048 @end table
11049
11050 @subsection Commands
11051
11052 This filter supports the all above options as @ref{commands}.
11053
11054 @section extractplanes
11055
11056 Extract color channel components from input video stream into
11057 separate grayscale video streams.
11058
11059 The filter accepts the following option:
11060
11061 @table @option
11062 @item planes
11063 Set plane(s) to extract.
11064
11065 Available values for planes are:
11066 @table @samp
11067 @item y
11068 @item u
11069 @item v
11070 @item a
11071 @item r
11072 @item g
11073 @item b
11074 @end table
11075
11076 Choosing planes not available in the input will result in an error.
11077 That means you cannot select @code{r}, @code{g}, @code{b} planes
11078 with @code{y}, @code{u}, @code{v} planes at same time.
11079 @end table
11080
11081 @subsection Examples
11082
11083 @itemize
11084 @item
11085 Extract luma, u and v color channel component from input video frame
11086 into 3 grayscale outputs:
11087 @example
11088 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
11089 @end example
11090 @end itemize
11091
11092 @section fade
11093
11094 Apply a fade-in/out effect to the input video.
11095
11096 It accepts the following parameters:
11097
11098 @table @option
11099 @item type, t
11100 The effect type can be either "in" for a fade-in, or "out" for a fade-out
11101 effect.
11102 Default is @code{in}.
11103
11104 @item start_frame, s
11105 Specify the number of the frame to start applying the fade
11106 effect at. Default is 0.
11107
11108 @item nb_frames, n
11109 The number of frames that the fade effect lasts. At the end of the
11110 fade-in effect, the output video will have the same intensity as the input video.
11111 At the end of the fade-out transition, the output video will be filled with the
11112 selected @option{color}.
11113 Default is 25.
11114
11115 @item alpha
11116 If set to 1, fade only alpha channel, if one exists on the input.
11117 Default value is 0.
11118
11119 @item start_time, st
11120 Specify the timestamp (in seconds) of the frame to start to apply the fade
11121 effect. If both start_frame and start_time are specified, the fade will start at
11122 whichever comes last.  Default is 0.
11123
11124 @item duration, d
11125 The number of seconds for which the fade effect has to last. At the end of the
11126 fade-in effect the output video will have the same intensity as the input video,
11127 at the end of the fade-out transition the output video will be filled with the
11128 selected @option{color}.
11129 If both duration and nb_frames are specified, duration is used. Default is 0
11130 (nb_frames is used by default).
11131
11132 @item color, c
11133 Specify the color of the fade. Default is "black".
11134 @end table
11135
11136 @subsection Examples
11137
11138 @itemize
11139 @item
11140 Fade in the first 30 frames of video:
11141 @example
11142 fade=in:0:30
11143 @end example
11144
11145 The command above is equivalent to:
11146 @example
11147 fade=t=in:s=0:n=30
11148 @end example
11149
11150 @item
11151 Fade out the last 45 frames of a 200-frame video:
11152 @example
11153 fade=out:155:45
11154 fade=type=out:start_frame=155:nb_frames=45
11155 @end example
11156
11157 @item
11158 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
11159 @example
11160 fade=in:0:25, fade=out:975:25
11161 @end example
11162
11163 @item
11164 Make the first 5 frames yellow, then fade in from frame 5-24:
11165 @example
11166 fade=in:5:20:color=yellow
11167 @end example
11168
11169 @item
11170 Fade in alpha over first 25 frames of video:
11171 @example
11172 fade=in:0:25:alpha=1
11173 @end example
11174
11175 @item
11176 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
11177 @example
11178 fade=t=in:st=5.5:d=0.5
11179 @end example
11180
11181 @end itemize
11182
11183 @section fftdnoiz
11184 Denoise frames using 3D FFT (frequency domain filtering).
11185
11186 The filter accepts the following options:
11187
11188 @table @option
11189 @item sigma
11190 Set the noise sigma constant. This sets denoising strength.
11191 Default value is 1. Allowed range is from 0 to 30.
11192 Using very high sigma with low overlap may give blocking artifacts.
11193
11194 @item amount
11195 Set amount of denoising. By default all detected noise is reduced.
11196 Default value is 1. Allowed range is from 0 to 1.
11197
11198 @item block
11199 Set size of block, Default is 4, can be 3, 4, 5 or 6.
11200 Actual size of block in pixels is 2 to power of @var{block}, so by default
11201 block size in pixels is 2^4 which is 16.
11202
11203 @item overlap
11204 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
11205
11206 @item prev
11207 Set number of previous frames to use for denoising. By default is set to 0.
11208
11209 @item next
11210 Set number of next frames to to use for denoising. By default is set to 0.
11211
11212 @item planes
11213 Set planes which will be filtered, by default are all available filtered
11214 except alpha.
11215 @end table
11216
11217 @section fftfilt
11218 Apply arbitrary expressions to samples in frequency domain
11219
11220 @table @option
11221 @item dc_Y
11222 Adjust the dc value (gain) of the luma plane of the image. The filter
11223 accepts an integer value in range @code{0} to @code{1000}. The default
11224 value is set to @code{0}.
11225
11226 @item dc_U
11227 Adjust the dc value (gain) of the 1st chroma plane of the image. The
11228 filter accepts an integer value in range @code{0} to @code{1000}. The
11229 default value is set to @code{0}.
11230
11231 @item dc_V
11232 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
11233 filter accepts an integer value in range @code{0} to @code{1000}. The
11234 default value is set to @code{0}.
11235
11236 @item weight_Y
11237 Set the frequency domain weight expression for the luma plane.
11238
11239 @item weight_U
11240 Set the frequency domain weight expression for the 1st chroma plane.
11241
11242 @item weight_V
11243 Set the frequency domain weight expression for the 2nd chroma plane.
11244
11245 @item eval
11246 Set when the expressions are evaluated.
11247
11248 It accepts the following values:
11249 @table @samp
11250 @item init
11251 Only evaluate expressions once during the filter initialization.
11252
11253 @item frame
11254 Evaluate expressions for each incoming frame.
11255 @end table
11256
11257 Default value is @samp{init}.
11258
11259 The filter accepts the following variables:
11260 @item X
11261 @item Y
11262 The coordinates of the current sample.
11263
11264 @item W
11265 @item H
11266 The width and height of the image.
11267
11268 @item N
11269 The number of input frame, starting from 0.
11270 @end table
11271
11272 @subsection Examples
11273
11274 @itemize
11275 @item
11276 High-pass:
11277 @example
11278 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
11279 @end example
11280
11281 @item
11282 Low-pass:
11283 @example
11284 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
11285 @end example
11286
11287 @item
11288 Sharpen:
11289 @example
11290 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
11291 @end example
11292
11293 @item
11294 Blur:
11295 @example
11296 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
11297 @end example
11298
11299 @end itemize
11300
11301 @section field
11302
11303 Extract a single field from an interlaced image using stride
11304 arithmetic to avoid wasting CPU time. The output frames are marked as
11305 non-interlaced.
11306
11307 The filter accepts the following options:
11308
11309 @table @option
11310 @item type
11311 Specify whether to extract the top (if the value is @code{0} or
11312 @code{top}) or the bottom field (if the value is @code{1} or
11313 @code{bottom}).
11314 @end table
11315
11316 @section fieldhint
11317
11318 Create new frames by copying the top and bottom fields from surrounding frames
11319 supplied as numbers by the hint file.
11320
11321 @table @option
11322 @item hint
11323 Set file containing hints: absolute/relative frame numbers.
11324
11325 There must be one line for each frame in a clip. Each line must contain two
11326 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11327 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11328 is current frame number for @code{absolute} mode or out of [-1, 1] range
11329 for @code{relative} mode. First number tells from which frame to pick up top
11330 field and second number tells from which frame to pick up bottom field.
11331
11332 If optionally followed by @code{+} output frame will be marked as interlaced,
11333 else if followed by @code{-} output frame will be marked as progressive, else
11334 it will be marked same as input frame.
11335 If optionally followed by @code{t} output frame will use only top field, or in
11336 case of @code{b} it will use only bottom field.
11337 If line starts with @code{#} or @code{;} that line is skipped.
11338
11339 @item mode
11340 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11341 @end table
11342
11343 Example of first several lines of @code{hint} file for @code{relative} mode:
11344 @example
11345 0,0 - # first frame
11346 1,0 - # second frame, use third's frame top field and second's frame bottom field
11347 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11348 1,0 -
11349 0,0 -
11350 0,0 -
11351 1,0 -
11352 1,0 -
11353 1,0 -
11354 0,0 -
11355 0,0 -
11356 1,0 -
11357 1,0 -
11358 1,0 -
11359 0,0 -
11360 @end example
11361
11362 @section fieldmatch
11363
11364 Field matching filter for inverse telecine. It is meant to reconstruct the
11365 progressive frames from a telecined stream. The filter does not drop duplicated
11366 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11367 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11368
11369 The separation of the field matching and the decimation is notably motivated by
11370 the possibility of inserting a de-interlacing filter fallback between the two.
11371 If the source has mixed telecined and real interlaced content,
11372 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11373 But these remaining combed frames will be marked as interlaced, and thus can be
11374 de-interlaced by a later filter such as @ref{yadif} before decimation.
11375
11376 In addition to the various configuration options, @code{fieldmatch} can take an
11377 optional second stream, activated through the @option{ppsrc} option. If
11378 enabled, the frames reconstruction will be based on the fields and frames from
11379 this second stream. This allows the first input to be pre-processed in order to
11380 help the various algorithms of the filter, while keeping the output lossless
11381 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11382 or brightness/contrast adjustments can help.
11383
11384 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11385 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11386 which @code{fieldmatch} is based on. While the semantic and usage are very
11387 close, some behaviour and options names can differ.
11388
11389 The @ref{decimate} filter currently only works for constant frame rate input.
11390 If your input has mixed telecined (30fps) and progressive content with a lower
11391 framerate like 24fps use the following filterchain to produce the necessary cfr
11392 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11393
11394 The filter accepts the following options:
11395
11396 @table @option
11397 @item order
11398 Specify the assumed field order of the input stream. Available values are:
11399
11400 @table @samp
11401 @item auto
11402 Auto detect parity (use FFmpeg's internal parity value).
11403 @item bff
11404 Assume bottom field first.
11405 @item tff
11406 Assume top field first.
11407 @end table
11408
11409 Note that it is sometimes recommended not to trust the parity announced by the
11410 stream.
11411
11412 Default value is @var{auto}.
11413
11414 @item mode
11415 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11416 sense that it won't risk creating jerkiness due to duplicate frames when
11417 possible, but if there are bad edits or blended fields it will end up
11418 outputting combed frames when a good match might actually exist. On the other
11419 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11420 but will almost always find a good frame if there is one. The other values are
11421 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11422 jerkiness and creating duplicate frames versus finding good matches in sections
11423 with bad edits, orphaned fields, blended fields, etc.
11424
11425 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11426
11427 Available values are:
11428
11429 @table @samp
11430 @item pc
11431 2-way matching (p/c)
11432 @item pc_n
11433 2-way matching, and trying 3rd match if still combed (p/c + n)
11434 @item pc_u
11435 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11436 @item pc_n_ub
11437 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11438 still combed (p/c + n + u/b)
11439 @item pcn
11440 3-way matching (p/c/n)
11441 @item pcn_ub
11442 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11443 detected as combed (p/c/n + u/b)
11444 @end table
11445
11446 The parenthesis at the end indicate the matches that would be used for that
11447 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11448 @var{top}).
11449
11450 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11451 the slowest.
11452
11453 Default value is @var{pc_n}.
11454
11455 @item ppsrc
11456 Mark the main input stream as a pre-processed input, and enable the secondary
11457 input stream as the clean source to pick the fields from. See the filter
11458 introduction for more details. It is similar to the @option{clip2} feature from
11459 VFM/TFM.
11460
11461 Default value is @code{0} (disabled).
11462
11463 @item field
11464 Set the field to match from. It is recommended to set this to the same value as
11465 @option{order} unless you experience matching failures with that setting. In
11466 certain circumstances changing the field that is used to match from can have a
11467 large impact on matching performance. Available values are:
11468
11469 @table @samp
11470 @item auto
11471 Automatic (same value as @option{order}).
11472 @item bottom
11473 Match from the bottom field.
11474 @item top
11475 Match from the top field.
11476 @end table
11477
11478 Default value is @var{auto}.
11479
11480 @item mchroma
11481 Set whether or not chroma is included during the match comparisons. In most
11482 cases it is recommended to leave this enabled. You should set this to @code{0}
11483 only if your clip has bad chroma problems such as heavy rainbowing or other
11484 artifacts. Setting this to @code{0} could also be used to speed things up at
11485 the cost of some accuracy.
11486
11487 Default value is @code{1}.
11488
11489 @item y0
11490 @item y1
11491 These define an exclusion band which excludes the lines between @option{y0} and
11492 @option{y1} from being included in the field matching decision. An exclusion
11493 band can be used to ignore subtitles, a logo, or other things that may
11494 interfere with the matching. @option{y0} sets the starting scan line and
11495 @option{y1} sets the ending line; all lines in between @option{y0} and
11496 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11497 @option{y0} and @option{y1} to the same value will disable the feature.
11498 @option{y0} and @option{y1} defaults to @code{0}.
11499
11500 @item scthresh
11501 Set the scene change detection threshold as a percentage of maximum change on
11502 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11503 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11504 @option{scthresh} is @code{[0.0, 100.0]}.
11505
11506 Default value is @code{12.0}.
11507
11508 @item combmatch
11509 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11510 account the combed scores of matches when deciding what match to use as the
11511 final match. Available values are:
11512
11513 @table @samp
11514 @item none
11515 No final matching based on combed scores.
11516 @item sc
11517 Combed scores are only used when a scene change is detected.
11518 @item full
11519 Use combed scores all the time.
11520 @end table
11521
11522 Default is @var{sc}.
11523
11524 @item combdbg
11525 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11526 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11527 Available values are:
11528
11529 @table @samp
11530 @item none
11531 No forced calculation.
11532 @item pcn
11533 Force p/c/n calculations.
11534 @item pcnub
11535 Force p/c/n/u/b calculations.
11536 @end table
11537
11538 Default value is @var{none}.
11539
11540 @item cthresh
11541 This is the area combing threshold used for combed frame detection. This
11542 essentially controls how "strong" or "visible" combing must be to be detected.
11543 Larger values mean combing must be more visible and smaller values mean combing
11544 can be less visible or strong and still be detected. Valid settings are from
11545 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11546 be detected as combed). This is basically a pixel difference value. A good
11547 range is @code{[8, 12]}.
11548
11549 Default value is @code{9}.
11550
11551 @item chroma
11552 Sets whether or not chroma is considered in the combed frame decision.  Only
11553 disable this if your source has chroma problems (rainbowing, etc.) that are
11554 causing problems for the combed frame detection with chroma enabled. Actually,
11555 using @option{chroma}=@var{0} is usually more reliable, except for the case
11556 where there is chroma only combing in the source.
11557
11558 Default value is @code{0}.
11559
11560 @item blockx
11561 @item blocky
11562 Respectively set the x-axis and y-axis size of the window used during combed
11563 frame detection. This has to do with the size of the area in which
11564 @option{combpel} pixels are required to be detected as combed for a frame to be
11565 declared combed. See the @option{combpel} parameter description for more info.
11566 Possible values are any number that is a power of 2 starting at 4 and going up
11567 to 512.
11568
11569 Default value is @code{16}.
11570
11571 @item combpel
11572 The number of combed pixels inside any of the @option{blocky} by
11573 @option{blockx} size blocks on the frame for the frame to be detected as
11574 combed. While @option{cthresh} controls how "visible" the combing must be, this
11575 setting controls "how much" combing there must be in any localized area (a
11576 window defined by the @option{blockx} and @option{blocky} settings) on the
11577 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11578 which point no frames will ever be detected as combed). This setting is known
11579 as @option{MI} in TFM/VFM vocabulary.
11580
11581 Default value is @code{80}.
11582 @end table
11583
11584 @anchor{p/c/n/u/b meaning}
11585 @subsection p/c/n/u/b meaning
11586
11587 @subsubsection p/c/n
11588
11589 We assume the following telecined stream:
11590
11591 @example
11592 Top fields:     1 2 2 3 4
11593 Bottom fields:  1 2 3 4 4
11594 @end example
11595
11596 The numbers correspond to the progressive frame the fields relate to. Here, the
11597 first two frames are progressive, the 3rd and 4th are combed, and so on.
11598
11599 When @code{fieldmatch} is configured to run a matching from bottom
11600 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11601
11602 @example
11603 Input stream:
11604                 T     1 2 2 3 4
11605                 B     1 2 3 4 4   <-- matching reference
11606
11607 Matches:              c c n n c
11608
11609 Output stream:
11610                 T     1 2 3 4 4
11611                 B     1 2 3 4 4
11612 @end example
11613
11614 As a result of the field matching, we can see that some frames get duplicated.
11615 To perform a complete inverse telecine, you need to rely on a decimation filter
11616 after this operation. See for instance the @ref{decimate} filter.
11617
11618 The same operation now matching from top fields (@option{field}=@var{top})
11619 looks like this:
11620
11621 @example
11622 Input stream:
11623                 T     1 2 2 3 4   <-- matching reference
11624                 B     1 2 3 4 4
11625
11626 Matches:              c c p p c
11627
11628 Output stream:
11629                 T     1 2 2 3 4
11630                 B     1 2 2 3 4
11631 @end example
11632
11633 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
11634 basically, they refer to the frame and field of the opposite parity:
11635
11636 @itemize
11637 @item @var{p} matches the field of the opposite parity in the previous frame
11638 @item @var{c} matches the field of the opposite parity in the current frame
11639 @item @var{n} matches the field of the opposite parity in the next frame
11640 @end itemize
11641
11642 @subsubsection u/b
11643
11644 The @var{u} and @var{b} matching are a bit special in the sense that they match
11645 from the opposite parity flag. In the following examples, we assume that we are
11646 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
11647 'x' is placed above and below each matched fields.
11648
11649 With bottom matching (@option{field}=@var{bottom}):
11650 @example
11651 Match:           c         p           n          b          u
11652
11653                  x       x               x        x          x
11654   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11655   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11656                  x         x           x        x              x
11657
11658 Output frames:
11659                  2          1          2          2          2
11660                  2          2          2          1          3
11661 @end example
11662
11663 With top matching (@option{field}=@var{top}):
11664 @example
11665 Match:           c         p           n          b          u
11666
11667                  x         x           x        x              x
11668   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11669   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11670                  x       x               x        x          x
11671
11672 Output frames:
11673                  2          2          2          1          2
11674                  2          1          3          2          2
11675 @end example
11676
11677 @subsection Examples
11678
11679 Simple IVTC of a top field first telecined stream:
11680 @example
11681 fieldmatch=order=tff:combmatch=none, decimate
11682 @end example
11683
11684 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
11685 @example
11686 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
11687 @end example
11688
11689 @section fieldorder
11690
11691 Transform the field order of the input video.
11692
11693 It accepts the following parameters:
11694
11695 @table @option
11696
11697 @item order
11698 The output field order. Valid values are @var{tff} for top field first or @var{bff}
11699 for bottom field first.
11700 @end table
11701
11702 The default value is @samp{tff}.
11703
11704 The transformation is done by shifting the picture content up or down
11705 by one line, and filling the remaining line with appropriate picture content.
11706 This method is consistent with most broadcast field order converters.
11707
11708 If the input video is not flagged as being interlaced, or it is already
11709 flagged as being of the required output field order, then this filter does
11710 not alter the incoming video.
11711
11712 It is very useful when converting to or from PAL DV material,
11713 which is bottom field first.
11714
11715 For example:
11716 @example
11717 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
11718 @end example
11719
11720 @section fifo, afifo
11721
11722 Buffer input images and send them when they are requested.
11723
11724 It is mainly useful when auto-inserted by the libavfilter
11725 framework.
11726
11727 It does not take parameters.
11728
11729 @section fillborders
11730
11731 Fill borders of the input video, without changing video stream dimensions.
11732 Sometimes video can have garbage at the four edges and you may not want to
11733 crop video input to keep size multiple of some number.
11734
11735 This filter accepts the following options:
11736
11737 @table @option
11738 @item left
11739 Number of pixels to fill from left border.
11740
11741 @item right
11742 Number of pixels to fill from right border.
11743
11744 @item top
11745 Number of pixels to fill from top border.
11746
11747 @item bottom
11748 Number of pixels to fill from bottom border.
11749
11750 @item mode
11751 Set fill mode.
11752
11753 It accepts the following values:
11754 @table @samp
11755 @item smear
11756 fill pixels using outermost pixels
11757
11758 @item mirror
11759 fill pixels using mirroring (half sample symmetric)
11760
11761 @item fixed
11762 fill pixels with constant value
11763
11764 @item reflect
11765 fill pixels using reflecting (whole sample symmetric)
11766
11767 @item wrap
11768 fill pixels using wrapping
11769 @end table
11770
11771 Default is @var{smear}.
11772
11773 @item color
11774 Set color for pixels in fixed mode. Default is @var{black}.
11775 @end table
11776
11777 @subsection Commands
11778 This filter supports same @ref{commands} as options.
11779 The command accepts the same syntax of the corresponding option.
11780
11781 If the specified expression is not valid, it is kept at its current
11782 value.
11783
11784 @section find_rect
11785
11786 Find a rectangular object
11787
11788 It accepts the following options:
11789
11790 @table @option
11791 @item object
11792 Filepath of the object image, needs to be in gray8.
11793
11794 @item threshold
11795 Detection threshold, default is 0.5.
11796
11797 @item mipmaps
11798 Number of mipmaps, default is 3.
11799
11800 @item xmin, ymin, xmax, ymax
11801 Specifies the rectangle in which to search.
11802 @end table
11803
11804 @subsection Examples
11805
11806 @itemize
11807 @item
11808 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11809 @example
11810 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11811 @end example
11812 @end itemize
11813
11814 @section floodfill
11815
11816 Flood area with values of same pixel components with another values.
11817
11818 It accepts the following options:
11819 @table @option
11820 @item x
11821 Set pixel x coordinate.
11822
11823 @item y
11824 Set pixel y coordinate.
11825
11826 @item s0
11827 Set source #0 component value.
11828
11829 @item s1
11830 Set source #1 component value.
11831
11832 @item s2
11833 Set source #2 component value.
11834
11835 @item s3
11836 Set source #3 component value.
11837
11838 @item d0
11839 Set destination #0 component value.
11840
11841 @item d1
11842 Set destination #1 component value.
11843
11844 @item d2
11845 Set destination #2 component value.
11846
11847 @item d3
11848 Set destination #3 component value.
11849 @end table
11850
11851 @anchor{format}
11852 @section format
11853
11854 Convert the input video to one of the specified pixel formats.
11855 Libavfilter will try to pick one that is suitable as input to
11856 the next filter.
11857
11858 It accepts the following parameters:
11859 @table @option
11860
11861 @item pix_fmts
11862 A '|'-separated list of pixel format names, such as
11863 "pix_fmts=yuv420p|monow|rgb24".
11864
11865 @end table
11866
11867 @subsection Examples
11868
11869 @itemize
11870 @item
11871 Convert the input video to the @var{yuv420p} format
11872 @example
11873 format=pix_fmts=yuv420p
11874 @end example
11875
11876 Convert the input video to any of the formats in the list
11877 @example
11878 format=pix_fmts=yuv420p|yuv444p|yuv410p
11879 @end example
11880 @end itemize
11881
11882 @anchor{fps}
11883 @section fps
11884
11885 Convert the video to specified constant frame rate by duplicating or dropping
11886 frames as necessary.
11887
11888 It accepts the following parameters:
11889 @table @option
11890
11891 @item fps
11892 The desired output frame rate. The default is @code{25}.
11893
11894 @item start_time
11895 Assume the first PTS should be the given value, in seconds. This allows for
11896 padding/trimming at the start of stream. By default, no assumption is made
11897 about the first frame's expected PTS, so no padding or trimming is done.
11898 For example, this could be set to 0 to pad the beginning with duplicates of
11899 the first frame if a video stream starts after the audio stream or to trim any
11900 frames with a negative PTS.
11901
11902 @item round
11903 Timestamp (PTS) rounding method.
11904
11905 Possible values are:
11906 @table @option
11907 @item zero
11908 round towards 0
11909 @item inf
11910 round away from 0
11911 @item down
11912 round towards -infinity
11913 @item up
11914 round towards +infinity
11915 @item near
11916 round to nearest
11917 @end table
11918 The default is @code{near}.
11919
11920 @item eof_action
11921 Action performed when reading the last frame.
11922
11923 Possible values are:
11924 @table @option
11925 @item round
11926 Use same timestamp rounding method as used for other frames.
11927 @item pass
11928 Pass through last frame if input duration has not been reached yet.
11929 @end table
11930 The default is @code{round}.
11931
11932 @end table
11933
11934 Alternatively, the options can be specified as a flat string:
11935 @var{fps}[:@var{start_time}[:@var{round}]].
11936
11937 See also the @ref{setpts} filter.
11938
11939 @subsection Examples
11940
11941 @itemize
11942 @item
11943 A typical usage in order to set the fps to 25:
11944 @example
11945 fps=fps=25
11946 @end example
11947
11948 @item
11949 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
11950 @example
11951 fps=fps=film:round=near
11952 @end example
11953 @end itemize
11954
11955 @section framepack
11956
11957 Pack two different video streams into a stereoscopic video, setting proper
11958 metadata on supported codecs. The two views should have the same size and
11959 framerate and processing will stop when the shorter video ends. Please note
11960 that you may conveniently adjust view properties with the @ref{scale} and
11961 @ref{fps} filters.
11962
11963 It accepts the following parameters:
11964 @table @option
11965
11966 @item format
11967 The desired packing format. Supported values are:
11968
11969 @table @option
11970
11971 @item sbs
11972 The views are next to each other (default).
11973
11974 @item tab
11975 The views are on top of each other.
11976
11977 @item lines
11978 The views are packed by line.
11979
11980 @item columns
11981 The views are packed by column.
11982
11983 @item frameseq
11984 The views are temporally interleaved.
11985
11986 @end table
11987
11988 @end table
11989
11990 Some examples:
11991
11992 @example
11993 # Convert left and right views into a frame-sequential video
11994 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
11995
11996 # Convert views into a side-by-side video with the same output resolution as the input
11997 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
11998 @end example
11999
12000 @section framerate
12001
12002 Change the frame rate by interpolating new video output frames from the source
12003 frames.
12004
12005 This filter is not designed to function correctly with interlaced media. If
12006 you wish to change the frame rate of interlaced media then you are required
12007 to deinterlace before this filter and re-interlace after this filter.
12008
12009 A description of the accepted options follows.
12010
12011 @table @option
12012 @item fps
12013 Specify the output frames per second. This option can also be specified
12014 as a value alone. The default is @code{50}.
12015
12016 @item interp_start
12017 Specify the start of a range where the output frame will be created as a
12018 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12019 the default is @code{15}.
12020
12021 @item interp_end
12022 Specify the end of a range where the output frame will be created as a
12023 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12024 the default is @code{240}.
12025
12026 @item scene
12027 Specify the level at which a scene change is detected as a value between
12028 0 and 100 to indicate a new scene; a low value reflects a low
12029 probability for the current frame to introduce a new scene, while a higher
12030 value means the current frame is more likely to be one.
12031 The default is @code{8.2}.
12032
12033 @item flags
12034 Specify flags influencing the filter process.
12035
12036 Available value for @var{flags} is:
12037
12038 @table @option
12039 @item scene_change_detect, scd
12040 Enable scene change detection using the value of the option @var{scene}.
12041 This flag is enabled by default.
12042 @end table
12043 @end table
12044
12045 @section framestep
12046
12047 Select one frame every N-th frame.
12048
12049 This filter accepts the following option:
12050 @table @option
12051 @item step
12052 Select frame after every @code{step} frames.
12053 Allowed values are positive integers higher than 0. Default value is @code{1}.
12054 @end table
12055
12056 @section freezedetect
12057
12058 Detect frozen video.
12059
12060 This filter logs a message and sets frame metadata when it detects that the
12061 input video has no significant change in content during a specified duration.
12062 Video freeze detection calculates the mean average absolute difference of all
12063 the components of video frames and compares it to a noise floor.
12064
12065 The printed times and duration are expressed in seconds. The
12066 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
12067 whose timestamp equals or exceeds the detection duration and it contains the
12068 timestamp of the first frame of the freeze. The
12069 @code{lavfi.freezedetect.freeze_duration} and
12070 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
12071 after the freeze.
12072
12073 The filter accepts the following options:
12074
12075 @table @option
12076 @item noise, n
12077 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
12078 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
12079 0.001.
12080
12081 @item duration, d
12082 Set freeze duration until notification (default is 2 seconds).
12083 @end table
12084
12085 @section freezeframes
12086
12087 Freeze video frames.
12088
12089 This filter freezes video frames using frame from 2nd input.
12090
12091 The filter accepts the following options:
12092
12093 @table @option
12094 @item first
12095 Set number of first frame from which to start freeze.
12096
12097 @item last
12098 Set number of last frame from which to end freeze.
12099
12100 @item replace
12101 Set number of frame from 2nd input which will be used instead of replaced frames.
12102 @end table
12103
12104 @anchor{frei0r}
12105 @section frei0r
12106
12107 Apply a frei0r effect to the input video.
12108
12109 To enable the compilation of this filter, you need to install the frei0r
12110 header and configure FFmpeg with @code{--enable-frei0r}.
12111
12112 It accepts the following parameters:
12113
12114 @table @option
12115
12116 @item filter_name
12117 The name of the frei0r effect to load. If the environment variable
12118 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
12119 directories specified by the colon-separated list in @env{FREI0R_PATH}.
12120 Otherwise, the standard frei0r paths are searched, in this order:
12121 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
12122 @file{/usr/lib/frei0r-1/}.
12123
12124 @item filter_params
12125 A '|'-separated list of parameters to pass to the frei0r effect.
12126
12127 @end table
12128
12129 A frei0r effect parameter can be a boolean (its value is either
12130 "y" or "n"), a double, a color (specified as
12131 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
12132 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
12133 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
12134 a position (specified as @var{X}/@var{Y}, where
12135 @var{X} and @var{Y} are floating point numbers) and/or a string.
12136
12137 The number and types of parameters depend on the loaded effect. If an
12138 effect parameter is not specified, the default value is set.
12139
12140 @subsection Examples
12141
12142 @itemize
12143 @item
12144 Apply the distort0r effect, setting the first two double parameters:
12145 @example
12146 frei0r=filter_name=distort0r:filter_params=0.5|0.01
12147 @end example
12148
12149 @item
12150 Apply the colordistance effect, taking a color as the first parameter:
12151 @example
12152 frei0r=colordistance:0.2/0.3/0.4
12153 frei0r=colordistance:violet
12154 frei0r=colordistance:0x112233
12155 @end example
12156
12157 @item
12158 Apply the perspective effect, specifying the top left and top right image
12159 positions:
12160 @example
12161 frei0r=perspective:0.2/0.2|0.8/0.2
12162 @end example
12163 @end itemize
12164
12165 For more information, see
12166 @url{http://frei0r.dyne.org}
12167
12168 @subsection Commands
12169
12170 This filter supports the @option{filter_params} option as @ref{commands}.
12171
12172 @section fspp
12173
12174 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
12175
12176 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
12177 processing filter, one of them is performed once per block, not per pixel.
12178 This allows for much higher speed.
12179
12180 The filter accepts the following options:
12181
12182 @table @option
12183 @item quality
12184 Set quality. This option defines the number of levels for averaging. It accepts
12185 an integer in the range 4-5. Default value is @code{4}.
12186
12187 @item qp
12188 Force a constant quantization parameter. It accepts an integer in range 0-63.
12189 If not set, the filter will use the QP from the video stream (if available).
12190
12191 @item strength
12192 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
12193 more details but also more artifacts, while higher values make the image smoother
12194 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
12195
12196 @item use_bframe_qp
12197 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12198 option may cause flicker since the B-Frames have often larger QP. Default is
12199 @code{0} (not enabled).
12200
12201 @end table
12202
12203 @section gblur
12204
12205 Apply Gaussian blur filter.
12206
12207 The filter accepts the following options:
12208
12209 @table @option
12210 @item sigma
12211 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
12212
12213 @item steps
12214 Set number of steps for Gaussian approximation. Default is @code{1}.
12215
12216 @item planes
12217 Set which planes to filter. By default all planes are filtered.
12218
12219 @item sigmaV
12220 Set vertical sigma, if negative it will be same as @code{sigma}.
12221 Default is @code{-1}.
12222 @end table
12223
12224 @subsection Commands
12225 This filter supports same commands as options.
12226 The command accepts the same syntax of the corresponding option.
12227
12228 If the specified expression is not valid, it is kept at its current
12229 value.
12230
12231 @section geq
12232
12233 Apply generic equation to each pixel.
12234
12235 The filter accepts the following options:
12236
12237 @table @option
12238 @item lum_expr, lum
12239 Set the luminance expression.
12240 @item cb_expr, cb
12241 Set the chrominance blue expression.
12242 @item cr_expr, cr
12243 Set the chrominance red expression.
12244 @item alpha_expr, a
12245 Set the alpha expression.
12246 @item red_expr, r
12247 Set the red expression.
12248 @item green_expr, g
12249 Set the green expression.
12250 @item blue_expr, b
12251 Set the blue expression.
12252 @end table
12253
12254 The colorspace is selected according to the specified options. If one
12255 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
12256 options is specified, the filter will automatically select a YCbCr
12257 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
12258 @option{blue_expr} options is specified, it will select an RGB
12259 colorspace.
12260
12261 If one of the chrominance expression is not defined, it falls back on the other
12262 one. If no alpha expression is specified it will evaluate to opaque value.
12263 If none of chrominance expressions are specified, they will evaluate
12264 to the luminance expression.
12265
12266 The expressions can use the following variables and functions:
12267
12268 @table @option
12269 @item N
12270 The sequential number of the filtered frame, starting from @code{0}.
12271
12272 @item X
12273 @item Y
12274 The coordinates of the current sample.
12275
12276 @item W
12277 @item H
12278 The width and height of the image.
12279
12280 @item SW
12281 @item SH
12282 Width and height scale depending on the currently filtered plane. It is the
12283 ratio between the corresponding luma plane number of pixels and the current
12284 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
12285 @code{0.5,0.5} for chroma planes.
12286
12287 @item T
12288 Time of the current frame, expressed in seconds.
12289
12290 @item p(x, y)
12291 Return the value of the pixel at location (@var{x},@var{y}) of the current
12292 plane.
12293
12294 @item lum(x, y)
12295 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
12296 plane.
12297
12298 @item cb(x, y)
12299 Return the value of the pixel at location (@var{x},@var{y}) of the
12300 blue-difference chroma plane. Return 0 if there is no such plane.
12301
12302 @item cr(x, y)
12303 Return the value of the pixel at location (@var{x},@var{y}) of the
12304 red-difference chroma plane. Return 0 if there is no such plane.
12305
12306 @item r(x, y)
12307 @item g(x, y)
12308 @item b(x, y)
12309 Return the value of the pixel at location (@var{x},@var{y}) of the
12310 red/green/blue component. Return 0 if there is no such component.
12311
12312 @item alpha(x, y)
12313 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
12314 plane. Return 0 if there is no such plane.
12315
12316 @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)
12317 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
12318 sums of samples within a rectangle. See the functions without the sum postfix.
12319
12320 @item interpolation
12321 Set one of interpolation methods:
12322 @table @option
12323 @item nearest, n
12324 @item bilinear, b
12325 @end table
12326 Default is bilinear.
12327 @end table
12328
12329 For functions, if @var{x} and @var{y} are outside the area, the value will be
12330 automatically clipped to the closer edge.
12331
12332 Please note that this filter can use multiple threads in which case each slice
12333 will have its own expression state. If you want to use only a single expression
12334 state because your expressions depend on previous state then you should limit
12335 the number of filter threads to 1.
12336
12337 @subsection Examples
12338
12339 @itemize
12340 @item
12341 Flip the image horizontally:
12342 @example
12343 geq=p(W-X\,Y)
12344 @end example
12345
12346 @item
12347 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12348 wavelength of 100 pixels:
12349 @example
12350 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12351 @end example
12352
12353 @item
12354 Generate a fancy enigmatic moving light:
12355 @example
12356 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
12357 @end example
12358
12359 @item
12360 Generate a quick emboss effect:
12361 @example
12362 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12363 @end example
12364
12365 @item
12366 Modify RGB components depending on pixel position:
12367 @example
12368 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12369 @end example
12370
12371 @item
12372 Create a radial gradient that is the same size as the input (also see
12373 the @ref{vignette} filter):
12374 @example
12375 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12376 @end example
12377 @end itemize
12378
12379 @section gradfun
12380
12381 Fix the banding artifacts that are sometimes introduced into nearly flat
12382 regions by truncation to 8-bit color depth.
12383 Interpolate the gradients that should go where the bands are, and
12384 dither them.
12385
12386 It is designed for playback only.  Do not use it prior to
12387 lossy compression, because compression tends to lose the dither and
12388 bring back the bands.
12389
12390 It accepts the following parameters:
12391
12392 @table @option
12393
12394 @item strength
12395 The maximum amount by which the filter will change any one pixel. This is also
12396 the threshold for detecting nearly flat regions. Acceptable values range from
12397 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12398 valid range.
12399
12400 @item radius
12401 The neighborhood to fit the gradient to. A larger radius makes for smoother
12402 gradients, but also prevents the filter from modifying the pixels near detailed
12403 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12404 values will be clipped to the valid range.
12405
12406 @end table
12407
12408 Alternatively, the options can be specified as a flat string:
12409 @var{strength}[:@var{radius}]
12410
12411 @subsection Examples
12412
12413 @itemize
12414 @item
12415 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12416 @example
12417 gradfun=3.5:8
12418 @end example
12419
12420 @item
12421 Specify radius, omitting the strength (which will fall-back to the default
12422 value):
12423 @example
12424 gradfun=radius=8
12425 @end example
12426
12427 @end itemize
12428
12429 @anchor{graphmonitor}
12430 @section graphmonitor
12431 Show various filtergraph stats.
12432
12433 With this filter one can debug complete filtergraph.
12434 Especially issues with links filling with queued frames.
12435
12436 The filter accepts the following options:
12437
12438 @table @option
12439 @item size, s
12440 Set video output size. Default is @var{hd720}.
12441
12442 @item opacity, o
12443 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12444
12445 @item mode, m
12446 Set output mode, can be @var{fulll} or @var{compact}.
12447 In @var{compact} mode only filters with some queued frames have displayed stats.
12448
12449 @item flags, f
12450 Set flags which enable which stats are shown in video.
12451
12452 Available values for flags are:
12453 @table @samp
12454 @item queue
12455 Display number of queued frames in each link.
12456
12457 @item frame_count_in
12458 Display number of frames taken from filter.
12459
12460 @item frame_count_out
12461 Display number of frames given out from filter.
12462
12463 @item pts
12464 Display current filtered frame pts.
12465
12466 @item time
12467 Display current filtered frame time.
12468
12469 @item timebase
12470 Display time base for filter link.
12471
12472 @item format
12473 Display used format for filter link.
12474
12475 @item size
12476 Display video size or number of audio channels in case of audio used by filter link.
12477
12478 @item rate
12479 Display video frame rate or sample rate in case of audio used by filter link.
12480
12481 @item eof
12482 Display link output status.
12483 @end table
12484
12485 @item rate, r
12486 Set upper limit for video rate of output stream, Default value is @var{25}.
12487 This guarantee that output video frame rate will not be higher than this value.
12488 @end table
12489
12490 @section greyedge
12491 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12492 and corrects the scene colors accordingly.
12493
12494 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12495
12496 The filter accepts the following options:
12497
12498 @table @option
12499 @item difford
12500 The order of differentiation to be applied on the scene. Must be chosen in the range
12501 [0,2] and default value is 1.
12502
12503 @item minknorm
12504 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12505 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12506 max value instead of calculating Minkowski distance.
12507
12508 @item sigma
12509 The standard deviation of Gaussian blur to be applied on the scene. Must be
12510 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12511 can't be equal to 0 if @var{difford} is greater than 0.
12512 @end table
12513
12514 @subsection Examples
12515 @itemize
12516
12517 @item
12518 Grey Edge:
12519 @example
12520 greyedge=difford=1:minknorm=5:sigma=2
12521 @end example
12522
12523 @item
12524 Max Edge:
12525 @example
12526 greyedge=difford=1:minknorm=0:sigma=2
12527 @end example
12528
12529 @end itemize
12530
12531 @anchor{haldclut}
12532 @section haldclut
12533
12534 Apply a Hald CLUT to a video stream.
12535
12536 First input is the video stream to process, and second one is the Hald CLUT.
12537 The Hald CLUT input can be a simple picture or a complete video stream.
12538
12539 The filter accepts the following options:
12540
12541 @table @option
12542 @item shortest
12543 Force termination when the shortest input terminates. Default is @code{0}.
12544 @item repeatlast
12545 Continue applying the last CLUT after the end of the stream. A value of
12546 @code{0} disable the filter after the last frame of the CLUT is reached.
12547 Default is @code{1}.
12548 @end table
12549
12550 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12551 filters share the same internals).
12552
12553 This filter also supports the @ref{framesync} options.
12554
12555 More information about the Hald CLUT can be found on Eskil Steenberg's website
12556 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12557
12558 @subsection Workflow examples
12559
12560 @subsubsection Hald CLUT video stream
12561
12562 Generate an identity Hald CLUT stream altered with various effects:
12563 @example
12564 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
12565 @end example
12566
12567 Note: make sure you use a lossless codec.
12568
12569 Then use it with @code{haldclut} to apply it on some random stream:
12570 @example
12571 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12572 @end example
12573
12574 The Hald CLUT will be applied to the 10 first seconds (duration of
12575 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12576 to the remaining frames of the @code{mandelbrot} stream.
12577
12578 @subsubsection Hald CLUT with preview
12579
12580 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12581 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12582 biggest possible square starting at the top left of the picture. The remaining
12583 padding pixels (bottom or right) will be ignored. This area can be used to add
12584 a preview of the Hald CLUT.
12585
12586 Typically, the following generated Hald CLUT will be supported by the
12587 @code{haldclut} filter:
12588
12589 @example
12590 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12591    pad=iw+320 [padded_clut];
12592    smptebars=s=320x256, split [a][b];
12593    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12594    [main][b] overlay=W-320" -frames:v 1 clut.png
12595 @end example
12596
12597 It contains the original and a preview of the effect of the CLUT: SMPTE color
12598 bars are displayed on the right-top, and below the same color bars processed by
12599 the color changes.
12600
12601 Then, the effect of this Hald CLUT can be visualized with:
12602 @example
12603 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12604 @end example
12605
12606 @section hflip
12607
12608 Flip the input video horizontally.
12609
12610 For example, to horizontally flip the input video with @command{ffmpeg}:
12611 @example
12612 ffmpeg -i in.avi -vf "hflip" out.avi
12613 @end example
12614
12615 @section histeq
12616 This filter applies a global color histogram equalization on a
12617 per-frame basis.
12618
12619 It can be used to correct video that has a compressed range of pixel
12620 intensities.  The filter redistributes the pixel intensities to
12621 equalize their distribution across the intensity range. It may be
12622 viewed as an "automatically adjusting contrast filter". This filter is
12623 useful only for correcting degraded or poorly captured source
12624 video.
12625
12626 The filter accepts the following options:
12627
12628 @table @option
12629 @item strength
12630 Determine the amount of equalization to be applied.  As the strength
12631 is reduced, the distribution of pixel intensities more-and-more
12632 approaches that of the input frame. The value must be a float number
12633 in the range [0,1] and defaults to 0.200.
12634
12635 @item intensity
12636 Set the maximum intensity that can generated and scale the output
12637 values appropriately.  The strength should be set as desired and then
12638 the intensity can be limited if needed to avoid washing-out. The value
12639 must be a float number in the range [0,1] and defaults to 0.210.
12640
12641 @item antibanding
12642 Set the antibanding level. If enabled the filter will randomly vary
12643 the luminance of output pixels by a small amount to avoid banding of
12644 the histogram. Possible values are @code{none}, @code{weak} or
12645 @code{strong}. It defaults to @code{none}.
12646 @end table
12647
12648 @anchor{histogram}
12649 @section histogram
12650
12651 Compute and draw a color distribution histogram for the input video.
12652
12653 The computed histogram is a representation of the color component
12654 distribution in an image.
12655
12656 Standard histogram displays the color components distribution in an image.
12657 Displays color graph for each color component. Shows distribution of
12658 the Y, U, V, A or R, G, B components, depending on input format, in the
12659 current frame. Below each graph a color component scale meter is shown.
12660
12661 The filter accepts the following options:
12662
12663 @table @option
12664 @item level_height
12665 Set height of level. Default value is @code{200}.
12666 Allowed range is [50, 2048].
12667
12668 @item scale_height
12669 Set height of color scale. Default value is @code{12}.
12670 Allowed range is [0, 40].
12671
12672 @item display_mode
12673 Set display mode.
12674 It accepts the following values:
12675 @table @samp
12676 @item stack
12677 Per color component graphs are placed below each other.
12678
12679 @item parade
12680 Per color component graphs are placed side by side.
12681
12682 @item overlay
12683 Presents information identical to that in the @code{parade}, except
12684 that the graphs representing color components are superimposed directly
12685 over one another.
12686 @end table
12687 Default is @code{stack}.
12688
12689 @item levels_mode
12690 Set mode. Can be either @code{linear}, or @code{logarithmic}.
12691 Default is @code{linear}.
12692
12693 @item components
12694 Set what color components to display.
12695 Default is @code{7}.
12696
12697 @item fgopacity
12698 Set foreground opacity. Default is @code{0.7}.
12699
12700 @item bgopacity
12701 Set background opacity. Default is @code{0.5}.
12702 @end table
12703
12704 @subsection Examples
12705
12706 @itemize
12707
12708 @item
12709 Calculate and draw histogram:
12710 @example
12711 ffplay -i input -vf histogram
12712 @end example
12713
12714 @end itemize
12715
12716 @anchor{hqdn3d}
12717 @section hqdn3d
12718
12719 This is a high precision/quality 3d denoise filter. It aims to reduce
12720 image noise, producing smooth images and making still images really
12721 still. It should enhance compressibility.
12722
12723 It accepts the following optional parameters:
12724
12725 @table @option
12726 @item luma_spatial
12727 A non-negative floating point number which specifies spatial luma strength.
12728 It defaults to 4.0.
12729
12730 @item chroma_spatial
12731 A non-negative floating point number which specifies spatial chroma strength.
12732 It defaults to 3.0*@var{luma_spatial}/4.0.
12733
12734 @item luma_tmp
12735 A floating point number which specifies luma temporal strength. It defaults to
12736 6.0*@var{luma_spatial}/4.0.
12737
12738 @item chroma_tmp
12739 A floating point number which specifies chroma temporal strength. It defaults to
12740 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
12741 @end table
12742
12743 @subsection Commands
12744 This filter supports same @ref{commands} as options.
12745 The command accepts the same syntax of the corresponding option.
12746
12747 If the specified expression is not valid, it is kept at its current
12748 value.
12749
12750 @anchor{hwdownload}
12751 @section hwdownload
12752
12753 Download hardware frames to system memory.
12754
12755 The input must be in hardware frames, and the output a non-hardware format.
12756 Not all formats will be supported on the output - it may be necessary to insert
12757 an additional @option{format} filter immediately following in the graph to get
12758 the output in a supported format.
12759
12760 @section hwmap
12761
12762 Map hardware frames to system memory or to another device.
12763
12764 This filter has several different modes of operation; which one is used depends
12765 on the input and output formats:
12766 @itemize
12767 @item
12768 Hardware frame input, normal frame output
12769
12770 Map the input frames to system memory and pass them to the output.  If the
12771 original hardware frame is later required (for example, after overlaying
12772 something else on part of it), the @option{hwmap} filter can be used again
12773 in the next mode to retrieve it.
12774 @item
12775 Normal frame input, hardware frame output
12776
12777 If the input is actually a software-mapped hardware frame, then unmap it -
12778 that is, return the original hardware frame.
12779
12780 Otherwise, a device must be provided.  Create new hardware surfaces on that
12781 device for the output, then map them back to the software format at the input
12782 and give those frames to the preceding filter.  This will then act like the
12783 @option{hwupload} filter, but may be able to avoid an additional copy when
12784 the input is already in a compatible format.
12785 @item
12786 Hardware frame input and output
12787
12788 A device must be supplied for the output, either directly or with the
12789 @option{derive_device} option.  The input and output devices must be of
12790 different types and compatible - the exact meaning of this is
12791 system-dependent, but typically it means that they must refer to the same
12792 underlying hardware context (for example, refer to the same graphics card).
12793
12794 If the input frames were originally created on the output device, then unmap
12795 to retrieve the original frames.
12796
12797 Otherwise, map the frames to the output device - create new hardware frames
12798 on the output corresponding to the frames on the input.
12799 @end itemize
12800
12801 The following additional parameters are accepted:
12802
12803 @table @option
12804 @item mode
12805 Set the frame mapping mode.  Some combination of:
12806 @table @var
12807 @item read
12808 The mapped frame should be readable.
12809 @item write
12810 The mapped frame should be writeable.
12811 @item overwrite
12812 The mapping will always overwrite the entire frame.
12813
12814 This may improve performance in some cases, as the original contents of the
12815 frame need not be loaded.
12816 @item direct
12817 The mapping must not involve any copying.
12818
12819 Indirect mappings to copies of frames are created in some cases where either
12820 direct mapping is not possible or it would have unexpected properties.
12821 Setting this flag ensures that the mapping is direct and will fail if that is
12822 not possible.
12823 @end table
12824 Defaults to @var{read+write} if not specified.
12825
12826 @item derive_device @var{type}
12827 Rather than using the device supplied at initialisation, instead derive a new
12828 device of type @var{type} from the device the input frames exist on.
12829
12830 @item reverse
12831 In a hardware to hardware mapping, map in reverse - create frames in the sink
12832 and map them back to the source.  This may be necessary in some cases where
12833 a mapping in one direction is required but only the opposite direction is
12834 supported by the devices being used.
12835
12836 This option is dangerous - it may break the preceding filter in undefined
12837 ways if there are any additional constraints on that filter's output.
12838 Do not use it without fully understanding the implications of its use.
12839 @end table
12840
12841 @anchor{hwupload}
12842 @section hwupload
12843
12844 Upload system memory frames to hardware surfaces.
12845
12846 The device to upload to must be supplied when the filter is initialised.  If
12847 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12848 option or with the @option{derive_device} option.  The input and output devices
12849 must be of different types and compatible - the exact meaning of this is
12850 system-dependent, but typically it means that they must refer to the same
12851 underlying hardware context (for example, refer to the same graphics card).
12852
12853 The following additional parameters are accepted:
12854
12855 @table @option
12856 @item derive_device @var{type}
12857 Rather than using the device supplied at initialisation, instead derive a new
12858 device of type @var{type} from the device the input frames exist on.
12859 @end table
12860
12861 @anchor{hwupload_cuda}
12862 @section hwupload_cuda
12863
12864 Upload system memory frames to a CUDA device.
12865
12866 It accepts the following optional parameters:
12867
12868 @table @option
12869 @item device
12870 The number of the CUDA device to use
12871 @end table
12872
12873 @section hqx
12874
12875 Apply a high-quality magnification filter designed for pixel art. This filter
12876 was originally created by Maxim Stepin.
12877
12878 It accepts the following option:
12879
12880 @table @option
12881 @item n
12882 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
12883 @code{hq3x} and @code{4} for @code{hq4x}.
12884 Default is @code{3}.
12885 @end table
12886
12887 @section hstack
12888 Stack input videos horizontally.
12889
12890 All streams must be of same pixel format and of same height.
12891
12892 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12893 to create same output.
12894
12895 The filter accepts the following option:
12896
12897 @table @option
12898 @item inputs
12899 Set number of input streams. Default is 2.
12900
12901 @item shortest
12902 If set to 1, force the output to terminate when the shortest input
12903 terminates. Default value is 0.
12904 @end table
12905
12906 @section hue
12907
12908 Modify the hue and/or the saturation of the input.
12909
12910 It accepts the following parameters:
12911
12912 @table @option
12913 @item h
12914 Specify the hue angle as a number of degrees. It accepts an expression,
12915 and defaults to "0".
12916
12917 @item s
12918 Specify the saturation in the [-10,10] range. It accepts an expression and
12919 defaults to "1".
12920
12921 @item H
12922 Specify the hue angle as a number of radians. It accepts an
12923 expression, and defaults to "0".
12924
12925 @item b
12926 Specify the brightness in the [-10,10] range. It accepts an expression and
12927 defaults to "0".
12928 @end table
12929
12930 @option{h} and @option{H} are mutually exclusive, and can't be
12931 specified at the same time.
12932
12933 The @option{b}, @option{h}, @option{H} and @option{s} option values are
12934 expressions containing the following constants:
12935
12936 @table @option
12937 @item n
12938 frame count of the input frame starting from 0
12939
12940 @item pts
12941 presentation timestamp of the input frame expressed in time base units
12942
12943 @item r
12944 frame rate of the input video, NAN if the input frame rate is unknown
12945
12946 @item t
12947 timestamp expressed in seconds, NAN if the input timestamp is unknown
12948
12949 @item tb
12950 time base of the input video
12951 @end table
12952
12953 @subsection Examples
12954
12955 @itemize
12956 @item
12957 Set the hue to 90 degrees and the saturation to 1.0:
12958 @example
12959 hue=h=90:s=1
12960 @end example
12961
12962 @item
12963 Same command but expressing the hue in radians:
12964 @example
12965 hue=H=PI/2:s=1
12966 @end example
12967
12968 @item
12969 Rotate hue and make the saturation swing between 0
12970 and 2 over a period of 1 second:
12971 @example
12972 hue="H=2*PI*t: s=sin(2*PI*t)+1"
12973 @end example
12974
12975 @item
12976 Apply a 3 seconds saturation fade-in effect starting at 0:
12977 @example
12978 hue="s=min(t/3\,1)"
12979 @end example
12980
12981 The general fade-in expression can be written as:
12982 @example
12983 hue="s=min(0\, max((t-START)/DURATION\, 1))"
12984 @end example
12985
12986 @item
12987 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
12988 @example
12989 hue="s=max(0\, min(1\, (8-t)/3))"
12990 @end example
12991
12992 The general fade-out expression can be written as:
12993 @example
12994 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
12995 @end example
12996
12997 @end itemize
12998
12999 @subsection Commands
13000
13001 This filter supports the following commands:
13002 @table @option
13003 @item b
13004 @item s
13005 @item h
13006 @item H
13007 Modify the hue and/or the saturation and/or brightness of the input video.
13008 The command accepts the same syntax of the corresponding option.
13009
13010 If the specified expression is not valid, it is kept at its current
13011 value.
13012 @end table
13013
13014 @section hysteresis
13015
13016 Grow first stream into second stream by connecting components.
13017 This makes it possible to build more robust edge masks.
13018
13019 This filter accepts the following options:
13020
13021 @table @option
13022 @item planes
13023 Set which planes will be processed as bitmap, unprocessed planes will be
13024 copied from first stream.
13025 By default value 0xf, all planes will be processed.
13026
13027 @item threshold
13028 Set threshold which is used in filtering. If pixel component value is higher than
13029 this value filter algorithm for connecting components is activated.
13030 By default value is 0.
13031 @end table
13032
13033 The @code{hysteresis} filter also supports the @ref{framesync} options.
13034
13035 @section idet
13036
13037 Detect video interlacing type.
13038
13039 This filter tries to detect if the input frames are interlaced, progressive,
13040 top or bottom field first. It will also try to detect fields that are
13041 repeated between adjacent frames (a sign of telecine).
13042
13043 Single frame detection considers only immediately adjacent frames when classifying each frame.
13044 Multiple frame detection incorporates the classification history of previous frames.
13045
13046 The filter will log these metadata values:
13047
13048 @table @option
13049 @item single.current_frame
13050 Detected type of current frame using single-frame detection. One of:
13051 ``tff'' (top field first), ``bff'' (bottom field first),
13052 ``progressive'', or ``undetermined''
13053
13054 @item single.tff
13055 Cumulative number of frames detected as top field first using single-frame detection.
13056
13057 @item multiple.tff
13058 Cumulative number of frames detected as top field first using multiple-frame detection.
13059
13060 @item single.bff
13061 Cumulative number of frames detected as bottom field first using single-frame detection.
13062
13063 @item multiple.current_frame
13064 Detected type of current frame using multiple-frame detection. One of:
13065 ``tff'' (top field first), ``bff'' (bottom field first),
13066 ``progressive'', or ``undetermined''
13067
13068 @item multiple.bff
13069 Cumulative number of frames detected as bottom field first using multiple-frame detection.
13070
13071 @item single.progressive
13072 Cumulative number of frames detected as progressive using single-frame detection.
13073
13074 @item multiple.progressive
13075 Cumulative number of frames detected as progressive using multiple-frame detection.
13076
13077 @item single.undetermined
13078 Cumulative number of frames that could not be classified using single-frame detection.
13079
13080 @item multiple.undetermined
13081 Cumulative number of frames that could not be classified using multiple-frame detection.
13082
13083 @item repeated.current_frame
13084 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
13085
13086 @item repeated.neither
13087 Cumulative number of frames with no repeated field.
13088
13089 @item repeated.top
13090 Cumulative number of frames with the top field repeated from the previous frame's top field.
13091
13092 @item repeated.bottom
13093 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
13094 @end table
13095
13096 The filter accepts the following options:
13097
13098 @table @option
13099 @item intl_thres
13100 Set interlacing threshold.
13101 @item prog_thres
13102 Set progressive threshold.
13103 @item rep_thres
13104 Threshold for repeated field detection.
13105 @item half_life
13106 Number of frames after which a given frame's contribution to the
13107 statistics is halved (i.e., it contributes only 0.5 to its
13108 classification). The default of 0 means that all frames seen are given
13109 full weight of 1.0 forever.
13110 @item analyze_interlaced_flag
13111 When this is not 0 then idet will use the specified number of frames to determine
13112 if the interlaced flag is accurate, it will not count undetermined frames.
13113 If the flag is found to be accurate it will be used without any further
13114 computations, if it is found to be inaccurate it will be cleared without any
13115 further computations. This allows inserting the idet filter as a low computational
13116 method to clean up the interlaced flag
13117 @end table
13118
13119 @section il
13120
13121 Deinterleave or interleave fields.
13122
13123 This filter allows one to process interlaced images fields without
13124 deinterlacing them. Deinterleaving splits the input frame into 2
13125 fields (so called half pictures). Odd lines are moved to the top
13126 half of the output image, even lines to the bottom half.
13127 You can process (filter) them independently and then re-interleave them.
13128
13129 The filter accepts the following options:
13130
13131 @table @option
13132 @item luma_mode, l
13133 @item chroma_mode, c
13134 @item alpha_mode, a
13135 Available values for @var{luma_mode}, @var{chroma_mode} and
13136 @var{alpha_mode} are:
13137
13138 @table @samp
13139 @item none
13140 Do nothing.
13141
13142 @item deinterleave, d
13143 Deinterleave fields, placing one above the other.
13144
13145 @item interleave, i
13146 Interleave fields. Reverse the effect of deinterleaving.
13147 @end table
13148 Default value is @code{none}.
13149
13150 @item luma_swap, ls
13151 @item chroma_swap, cs
13152 @item alpha_swap, as
13153 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
13154 @end table
13155
13156 @subsection Commands
13157
13158 This filter supports the all above options as @ref{commands}.
13159
13160 @section inflate
13161
13162 Apply inflate effect to the video.
13163
13164 This filter replaces the pixel by the local(3x3) average by taking into account
13165 only values higher than the pixel.
13166
13167 It accepts the following options:
13168
13169 @table @option
13170 @item threshold0
13171 @item threshold1
13172 @item threshold2
13173 @item threshold3
13174 Limit the maximum change for each plane, default is 65535.
13175 If 0, plane will remain unchanged.
13176 @end table
13177
13178 @subsection Commands
13179
13180 This filter supports the all above options as @ref{commands}.
13181
13182 @section interlace
13183
13184 Simple interlacing filter from progressive contents. This interleaves upper (or
13185 lower) lines from odd frames with lower (or upper) lines from even frames,
13186 halving the frame rate and preserving image height.
13187
13188 @example
13189    Original        Original             New Frame
13190    Frame 'j'      Frame 'j+1'             (tff)
13191   ==========      ===========       ==================
13192     Line 0  -------------------->    Frame 'j' Line 0
13193     Line 1          Line 1  ---->   Frame 'j+1' Line 1
13194     Line 2 --------------------->    Frame 'j' Line 2
13195     Line 3          Line 3  ---->   Frame 'j+1' Line 3
13196      ...             ...                   ...
13197 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
13198 @end example
13199
13200 It accepts the following optional parameters:
13201
13202 @table @option
13203 @item scan
13204 This determines whether the interlaced frame is taken from the even
13205 (tff - default) or odd (bff) lines of the progressive frame.
13206
13207 @item lowpass
13208 Vertical lowpass filter to avoid twitter interlacing and
13209 reduce moire patterns.
13210
13211 @table @samp
13212 @item 0, off
13213 Disable vertical lowpass filter
13214
13215 @item 1, linear
13216 Enable linear filter (default)
13217
13218 @item 2, complex
13219 Enable complex filter. This will slightly less reduce twitter and moire
13220 but better retain detail and subjective sharpness impression.
13221
13222 @end table
13223 @end table
13224
13225 @section kerndeint
13226
13227 Deinterlace input video by applying Donald Graft's adaptive kernel
13228 deinterling. Work on interlaced parts of a video to produce
13229 progressive frames.
13230
13231 The description of the accepted parameters follows.
13232
13233 @table @option
13234 @item thresh
13235 Set the threshold which affects the filter's tolerance when
13236 determining if a pixel line must be processed. It must be an integer
13237 in the range [0,255] and defaults to 10. A value of 0 will result in
13238 applying the process on every pixels.
13239
13240 @item map
13241 Paint pixels exceeding the threshold value to white if set to 1.
13242 Default is 0.
13243
13244 @item order
13245 Set the fields order. Swap fields if set to 1, leave fields alone if
13246 0. Default is 0.
13247
13248 @item sharp
13249 Enable additional sharpening if set to 1. Default is 0.
13250
13251 @item twoway
13252 Enable twoway sharpening if set to 1. Default is 0.
13253 @end table
13254
13255 @subsection Examples
13256
13257 @itemize
13258 @item
13259 Apply default values:
13260 @example
13261 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
13262 @end example
13263
13264 @item
13265 Enable additional sharpening:
13266 @example
13267 kerndeint=sharp=1
13268 @end example
13269
13270 @item
13271 Paint processed pixels in white:
13272 @example
13273 kerndeint=map=1
13274 @end example
13275 @end itemize
13276
13277 @section lagfun
13278
13279 Slowly update darker pixels.
13280
13281 This filter makes short flashes of light appear longer.
13282 This filter accepts the following options:
13283
13284 @table @option
13285 @item decay
13286 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
13287
13288 @item planes
13289 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
13290 @end table
13291
13292 @section lenscorrection
13293
13294 Correct radial lens distortion
13295
13296 This filter can be used to correct for radial distortion as can result from the use
13297 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
13298 one can use tools available for example as part of opencv or simply trial-and-error.
13299 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
13300 and extract the k1 and k2 coefficients from the resulting matrix.
13301
13302 Note that effectively the same filter is available in the open-source tools Krita and
13303 Digikam from the KDE project.
13304
13305 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
13306 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
13307 brightness distribution, so you may want to use both filters together in certain
13308 cases, though you will have to take care of ordering, i.e. whether vignetting should
13309 be applied before or after lens correction.
13310
13311 @subsection Options
13312
13313 The filter accepts the following options:
13314
13315 @table @option
13316 @item cx
13317 Relative x-coordinate of the focal point of the image, and thereby the center of the
13318 distortion. This value has a range [0,1] and is expressed as fractions of the image
13319 width. Default is 0.5.
13320 @item cy
13321 Relative y-coordinate of the focal point of the image, and thereby the center of the
13322 distortion. This value has a range [0,1] and is expressed as fractions of the image
13323 height. Default is 0.5.
13324 @item k1
13325 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
13326 no correction. Default is 0.
13327 @item k2
13328 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13329 0 means no correction. Default is 0.
13330 @end table
13331
13332 The formula that generates the correction is:
13333
13334 @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)
13335
13336 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13337 distances from the focal point in the source and target images, respectively.
13338
13339 @section lensfun
13340
13341 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13342
13343 The @code{lensfun} filter requires the camera make, camera model, and lens model
13344 to apply the lens correction. The filter will load the lensfun database and
13345 query it to find the corresponding camera and lens entries in the database. As
13346 long as these entries can be found with the given options, the filter can
13347 perform corrections on frames. Note that incomplete strings will result in the
13348 filter choosing the best match with the given options, and the filter will
13349 output the chosen camera and lens models (logged with level "info"). You must
13350 provide the make, camera model, and lens model as they are required.
13351
13352 The filter accepts the following options:
13353
13354 @table @option
13355 @item make
13356 The make of the camera (for example, "Canon"). This option is required.
13357
13358 @item model
13359 The model of the camera (for example, "Canon EOS 100D"). This option is
13360 required.
13361
13362 @item lens_model
13363 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13364 option is required.
13365
13366 @item mode
13367 The type of correction to apply. The following values are valid options:
13368
13369 @table @samp
13370 @item vignetting
13371 Enables fixing lens vignetting.
13372
13373 @item geometry
13374 Enables fixing lens geometry. This is the default.
13375
13376 @item subpixel
13377 Enables fixing chromatic aberrations.
13378
13379 @item vig_geo
13380 Enables fixing lens vignetting and lens geometry.
13381
13382 @item vig_subpixel
13383 Enables fixing lens vignetting and chromatic aberrations.
13384
13385 @item distortion
13386 Enables fixing both lens geometry and chromatic aberrations.
13387
13388 @item all
13389 Enables all possible corrections.
13390
13391 @end table
13392 @item focal_length
13393 The focal length of the image/video (zoom; expected constant for video). For
13394 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13395 range should be chosen when using that lens. Default 18.
13396
13397 @item aperture
13398 The aperture of the image/video (expected constant for video). Note that
13399 aperture is only used for vignetting correction. Default 3.5.
13400
13401 @item focus_distance
13402 The focus distance of the image/video (expected constant for video). Note that
13403 focus distance is only used for vignetting and only slightly affects the
13404 vignetting correction process. If unknown, leave it at the default value (which
13405 is 1000).
13406
13407 @item scale
13408 The scale factor which is applied after transformation. After correction the
13409 video is no longer necessarily rectangular. This parameter controls how much of
13410 the resulting image is visible. The value 0 means that a value will be chosen
13411 automatically such that there is little or no unmapped area in the output
13412 image. 1.0 means that no additional scaling is done. Lower values may result
13413 in more of the corrected image being visible, while higher values may avoid
13414 unmapped areas in the output.
13415
13416 @item target_geometry
13417 The target geometry of the output image/video. The following values are valid
13418 options:
13419
13420 @table @samp
13421 @item rectilinear (default)
13422 @item fisheye
13423 @item panoramic
13424 @item equirectangular
13425 @item fisheye_orthographic
13426 @item fisheye_stereographic
13427 @item fisheye_equisolid
13428 @item fisheye_thoby
13429 @end table
13430 @item reverse
13431 Apply the reverse of image correction (instead of correcting distortion, apply
13432 it).
13433
13434 @item interpolation
13435 The type of interpolation used when correcting distortion. The following values
13436 are valid options:
13437
13438 @table @samp
13439 @item nearest
13440 @item linear (default)
13441 @item lanczos
13442 @end table
13443 @end table
13444
13445 @subsection Examples
13446
13447 @itemize
13448 @item
13449 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13450 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13451 aperture of "8.0".
13452
13453 @example
13454 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
13455 @end example
13456
13457 @item
13458 Apply the same as before, but only for the first 5 seconds of video.
13459
13460 @example
13461 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
13462 @end example
13463
13464 @end itemize
13465
13466 @section libvmaf
13467
13468 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13469 score between two input videos.
13470
13471 The obtained VMAF score is printed through the logging system.
13472
13473 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13474 After installing the library it can be enabled using:
13475 @code{./configure --enable-libvmaf}.
13476 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13477
13478 The filter has following options:
13479
13480 @table @option
13481 @item model_path
13482 Set the model path which is to be used for SVM.
13483 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13484
13485 @item log_path
13486 Set the file path to be used to store logs.
13487
13488 @item log_fmt
13489 Set the format of the log file (csv, json or xml).
13490
13491 @item enable_transform
13492 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13493 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13494 Default value: @code{false}
13495
13496 @item phone_model
13497 Invokes the phone model which will generate VMAF scores higher than in the
13498 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13499 Default value: @code{false}
13500
13501 @item psnr
13502 Enables computing psnr along with vmaf.
13503 Default value: @code{false}
13504
13505 @item ssim
13506 Enables computing ssim along with vmaf.
13507 Default value: @code{false}
13508
13509 @item ms_ssim
13510 Enables computing ms_ssim along with vmaf.
13511 Default value: @code{false}
13512
13513 @item pool
13514 Set the pool method to be used for computing vmaf.
13515 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13516
13517 @item n_threads
13518 Set number of threads to be used when computing vmaf.
13519 Default value: @code{0}, which makes use of all available logical processors.
13520
13521 @item n_subsample
13522 Set interval for frame subsampling used when computing vmaf.
13523 Default value: @code{1}
13524
13525 @item enable_conf_interval
13526 Enables confidence interval.
13527 Default value: @code{false}
13528 @end table
13529
13530 This filter also supports the @ref{framesync} options.
13531
13532 @subsection Examples
13533 @itemize
13534 @item
13535 On the below examples the input file @file{main.mpg} being processed is
13536 compared with the reference file @file{ref.mpg}.
13537
13538 @example
13539 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13540 @end example
13541
13542 @item
13543 Example with options:
13544 @example
13545 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13546 @end example
13547
13548 @item
13549 Example with options and different containers:
13550 @example
13551 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 -
13552 @end example
13553 @end itemize
13554
13555 @section limiter
13556
13557 Limits the pixel components values to the specified range [min, max].
13558
13559 The filter accepts the following options:
13560
13561 @table @option
13562 @item min
13563 Lower bound. Defaults to the lowest allowed value for the input.
13564
13565 @item max
13566 Upper bound. Defaults to the highest allowed value for the input.
13567
13568 @item planes
13569 Specify which planes will be processed. Defaults to all available.
13570 @end table
13571
13572 @subsection Commands
13573
13574 This filter supports the all above options as @ref{commands}.
13575
13576 @section loop
13577
13578 Loop video frames.
13579
13580 The filter accepts the following options:
13581
13582 @table @option
13583 @item loop
13584 Set the number of loops. Setting this value to -1 will result in infinite loops.
13585 Default is 0.
13586
13587 @item size
13588 Set maximal size in number of frames. Default is 0.
13589
13590 @item start
13591 Set first frame of loop. Default is 0.
13592 @end table
13593
13594 @subsection Examples
13595
13596 @itemize
13597 @item
13598 Loop single first frame infinitely:
13599 @example
13600 loop=loop=-1:size=1:start=0
13601 @end example
13602
13603 @item
13604 Loop single first frame 10 times:
13605 @example
13606 loop=loop=10:size=1:start=0
13607 @end example
13608
13609 @item
13610 Loop 10 first frames 5 times:
13611 @example
13612 loop=loop=5:size=10:start=0
13613 @end example
13614 @end itemize
13615
13616 @section lut1d
13617
13618 Apply a 1D LUT to an input video.
13619
13620 The filter accepts the following options:
13621
13622 @table @option
13623 @item file
13624 Set the 1D LUT file name.
13625
13626 Currently supported formats:
13627 @table @samp
13628 @item cube
13629 Iridas
13630 @item csp
13631 cineSpace
13632 @end table
13633
13634 @item interp
13635 Select interpolation mode.
13636
13637 Available values are:
13638
13639 @table @samp
13640 @item nearest
13641 Use values from the nearest defined point.
13642 @item linear
13643 Interpolate values using the linear interpolation.
13644 @item cosine
13645 Interpolate values using the cosine interpolation.
13646 @item cubic
13647 Interpolate values using the cubic interpolation.
13648 @item spline
13649 Interpolate values using the spline interpolation.
13650 @end table
13651 @end table
13652
13653 @anchor{lut3d}
13654 @section lut3d
13655
13656 Apply a 3D LUT to an input video.
13657
13658 The filter accepts the following options:
13659
13660 @table @option
13661 @item file
13662 Set the 3D LUT file name.
13663
13664 Currently supported formats:
13665 @table @samp
13666 @item 3dl
13667 AfterEffects
13668 @item cube
13669 Iridas
13670 @item dat
13671 DaVinci
13672 @item m3d
13673 Pandora
13674 @item csp
13675 cineSpace
13676 @end table
13677 @item interp
13678 Select interpolation mode.
13679
13680 Available values are:
13681
13682 @table @samp
13683 @item nearest
13684 Use values from the nearest defined point.
13685 @item trilinear
13686 Interpolate values using the 8 points defining a cube.
13687 @item tetrahedral
13688 Interpolate values using a tetrahedron.
13689 @end table
13690 @end table
13691
13692 @section lumakey
13693
13694 Turn certain luma values into transparency.
13695
13696 The filter accepts the following options:
13697
13698 @table @option
13699 @item threshold
13700 Set the luma which will be used as base for transparency.
13701 Default value is @code{0}.
13702
13703 @item tolerance
13704 Set the range of luma values to be keyed out.
13705 Default value is @code{0.01}.
13706
13707 @item softness
13708 Set the range of softness. Default value is @code{0}.
13709 Use this to control gradual transition from zero to full transparency.
13710 @end table
13711
13712 @subsection Commands
13713 This filter supports same @ref{commands} as options.
13714 The command accepts the same syntax of the corresponding option.
13715
13716 If the specified expression is not valid, it is kept at its current
13717 value.
13718
13719 @section lut, lutrgb, lutyuv
13720
13721 Compute a look-up table for binding each pixel component input value
13722 to an output value, and apply it to the input video.
13723
13724 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
13725 to an RGB input video.
13726
13727 These filters accept the following parameters:
13728 @table @option
13729 @item c0
13730 set first pixel component expression
13731 @item c1
13732 set second pixel component expression
13733 @item c2
13734 set third pixel component expression
13735 @item c3
13736 set fourth pixel component expression, corresponds to the alpha component
13737
13738 @item r
13739 set red component expression
13740 @item g
13741 set green component expression
13742 @item b
13743 set blue component expression
13744 @item a
13745 alpha component expression
13746
13747 @item y
13748 set Y/luminance component expression
13749 @item u
13750 set U/Cb component expression
13751 @item v
13752 set V/Cr component expression
13753 @end table
13754
13755 Each of them specifies the expression to use for computing the lookup table for
13756 the corresponding pixel component values.
13757
13758 The exact component associated to each of the @var{c*} options depends on the
13759 format in input.
13760
13761 The @var{lut} filter requires either YUV or RGB pixel formats in input,
13762 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
13763
13764 The expressions can contain the following constants and functions:
13765
13766 @table @option
13767 @item w
13768 @item h
13769 The input width and height.
13770
13771 @item val
13772 The input value for the pixel component.
13773
13774 @item clipval
13775 The input value, clipped to the @var{minval}-@var{maxval} range.
13776
13777 @item maxval
13778 The maximum value for the pixel component.
13779
13780 @item minval
13781 The minimum value for the pixel component.
13782
13783 @item negval
13784 The negated value for the pixel component value, clipped to the
13785 @var{minval}-@var{maxval} range; it corresponds to the expression
13786 "maxval-clipval+minval".
13787
13788 @item clip(val)
13789 The computed value in @var{val}, clipped to the
13790 @var{minval}-@var{maxval} range.
13791
13792 @item gammaval(gamma)
13793 The computed gamma correction value of the pixel component value,
13794 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13795 expression
13796 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13797
13798 @end table
13799
13800 All expressions default to "val".
13801
13802 @subsection Examples
13803
13804 @itemize
13805 @item
13806 Negate input video:
13807 @example
13808 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13809 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13810 @end example
13811
13812 The above is the same as:
13813 @example
13814 lutrgb="r=negval:g=negval:b=negval"
13815 lutyuv="y=negval:u=negval:v=negval"
13816 @end example
13817
13818 @item
13819 Negate luminance:
13820 @example
13821 lutyuv=y=negval
13822 @end example
13823
13824 @item
13825 Remove chroma components, turning the video into a graytone image:
13826 @example
13827 lutyuv="u=128:v=128"
13828 @end example
13829
13830 @item
13831 Apply a luma burning effect:
13832 @example
13833 lutyuv="y=2*val"
13834 @end example
13835
13836 @item
13837 Remove green and blue components:
13838 @example
13839 lutrgb="g=0:b=0"
13840 @end example
13841
13842 @item
13843 Set a constant alpha channel value on input:
13844 @example
13845 format=rgba,lutrgb=a="maxval-minval/2"
13846 @end example
13847
13848 @item
13849 Correct luminance gamma by a factor of 0.5:
13850 @example
13851 lutyuv=y=gammaval(0.5)
13852 @end example
13853
13854 @item
13855 Discard least significant bits of luma:
13856 @example
13857 lutyuv=y='bitand(val, 128+64+32)'
13858 @end example
13859
13860 @item
13861 Technicolor like effect:
13862 @example
13863 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
13864 @end example
13865 @end itemize
13866
13867 @section lut2, tlut2
13868
13869 The @code{lut2} filter takes two input streams and outputs one
13870 stream.
13871
13872 The @code{tlut2} (time lut2) filter takes two consecutive frames
13873 from one single stream.
13874
13875 This filter accepts the following parameters:
13876 @table @option
13877 @item c0
13878 set first pixel component expression
13879 @item c1
13880 set second pixel component expression
13881 @item c2
13882 set third pixel component expression
13883 @item c3
13884 set fourth pixel component expression, corresponds to the alpha component
13885
13886 @item d
13887 set output bit depth, only available for @code{lut2} filter. By default is 0,
13888 which means bit depth is automatically picked from first input format.
13889 @end table
13890
13891 The @code{lut2} filter also supports the @ref{framesync} options.
13892
13893 Each of them specifies the expression to use for computing the lookup table for
13894 the corresponding pixel component values.
13895
13896 The exact component associated to each of the @var{c*} options depends on the
13897 format in inputs.
13898
13899 The expressions can contain the following constants:
13900
13901 @table @option
13902 @item w
13903 @item h
13904 The input width and height.
13905
13906 @item x
13907 The first input value for the pixel component.
13908
13909 @item y
13910 The second input value for the pixel component.
13911
13912 @item bdx
13913 The first input video bit depth.
13914
13915 @item bdy
13916 The second input video bit depth.
13917 @end table
13918
13919 All expressions default to "x".
13920
13921 @subsection Examples
13922
13923 @itemize
13924 @item
13925 Highlight differences between two RGB video streams:
13926 @example
13927 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)'
13928 @end example
13929
13930 @item
13931 Highlight differences between two YUV video streams:
13932 @example
13933 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)'
13934 @end example
13935
13936 @item
13937 Show max difference between two video streams:
13938 @example
13939 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)))'
13940 @end example
13941 @end itemize
13942
13943 @section maskedclamp
13944
13945 Clamp the first input stream with the second input and third input stream.
13946
13947 Returns the value of first stream to be between second input
13948 stream - @code{undershoot} and third input stream + @code{overshoot}.
13949
13950 This filter accepts the following options:
13951 @table @option
13952 @item undershoot
13953 Default value is @code{0}.
13954
13955 @item overshoot
13956 Default value is @code{0}.
13957
13958 @item planes
13959 Set which planes will be processed as bitmap, unprocessed planes will be
13960 copied from first stream.
13961 By default value 0xf, all planes will be processed.
13962 @end table
13963
13964 @section maskedmax
13965
13966 Merge the second and third input stream into output stream using absolute differences
13967 between second input stream and first input stream and absolute difference between
13968 third input stream and first input stream. The picked value will be from second input
13969 stream if second absolute difference is greater than first one or from third input stream
13970 otherwise.
13971
13972 This filter accepts the following options:
13973 @table @option
13974 @item planes
13975 Set which planes will be processed as bitmap, unprocessed planes will be
13976 copied from first stream.
13977 By default value 0xf, all planes will be processed.
13978 @end table
13979
13980 @section maskedmerge
13981
13982 Merge the first input stream with the second input stream using per pixel
13983 weights in the third input stream.
13984
13985 A value of 0 in the third stream pixel component means that pixel component
13986 from first stream is returned unchanged, while maximum value (eg. 255 for
13987 8-bit videos) means that pixel component from second stream is returned
13988 unchanged. Intermediate values define the amount of merging between both
13989 input stream's pixel components.
13990
13991 This filter accepts the following options:
13992 @table @option
13993 @item planes
13994 Set which planes will be processed as bitmap, unprocessed planes will be
13995 copied from first stream.
13996 By default value 0xf, all planes will be processed.
13997 @end table
13998
13999 @section maskedmin
14000
14001 Merge the second and third input stream into output stream using absolute differences
14002 between second input stream and first input stream and absolute difference between
14003 third input stream and first input stream. The picked value will be from second input
14004 stream if second absolute difference is less than first one or from third input stream
14005 otherwise.
14006
14007 This filter accepts the following options:
14008 @table @option
14009 @item planes
14010 Set which planes will be processed as bitmap, unprocessed planes will be
14011 copied from first stream.
14012 By default value 0xf, all planes will be processed.
14013 @end table
14014
14015 @section maskedthreshold
14016 Pick pixels comparing absolute difference of two video streams with fixed
14017 threshold.
14018
14019 If absolute difference between pixel component of first and second video
14020 stream is equal or lower than user supplied threshold than pixel component
14021 from first video stream is picked, otherwise pixel component from second
14022 video stream is picked.
14023
14024 This filter accepts the following options:
14025 @table @option
14026 @item threshold
14027 Set threshold used when picking pixels from absolute difference from two input
14028 video streams.
14029
14030 @item planes
14031 Set which planes will be processed as bitmap, unprocessed planes will be
14032 copied from second stream.
14033 By default value 0xf, all planes will be processed.
14034 @end table
14035
14036 @section maskfun
14037 Create mask from input video.
14038
14039 For example it is useful to create motion masks after @code{tblend} filter.
14040
14041 This filter accepts the following options:
14042
14043 @table @option
14044 @item low
14045 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
14046
14047 @item high
14048 Set high threshold. Any pixel component higher than this value will be set to max value
14049 allowed for current pixel format.
14050
14051 @item planes
14052 Set planes to filter, by default all available planes are filtered.
14053
14054 @item fill
14055 Fill all frame pixels with this value.
14056
14057 @item sum
14058 Set max average pixel value for frame. If sum of all pixel components is higher that this
14059 average, output frame will be completely filled with value set by @var{fill} option.
14060 Typically useful for scene changes when used in combination with @code{tblend} filter.
14061 @end table
14062
14063 @section mcdeint
14064
14065 Apply motion-compensation deinterlacing.
14066
14067 It needs one field per frame as input and must thus be used together
14068 with yadif=1/3 or equivalent.
14069
14070 This filter accepts the following options:
14071 @table @option
14072 @item mode
14073 Set the deinterlacing mode.
14074
14075 It accepts one of the following values:
14076 @table @samp
14077 @item fast
14078 @item medium
14079 @item slow
14080 use iterative motion estimation
14081 @item extra_slow
14082 like @samp{slow}, but use multiple reference frames.
14083 @end table
14084 Default value is @samp{fast}.
14085
14086 @item parity
14087 Set the picture field parity assumed for the input video. It must be
14088 one of the following values:
14089
14090 @table @samp
14091 @item 0, tff
14092 assume top field first
14093 @item 1, bff
14094 assume bottom field first
14095 @end table
14096
14097 Default value is @samp{bff}.
14098
14099 @item qp
14100 Set per-block quantization parameter (QP) used by the internal
14101 encoder.
14102
14103 Higher values should result in a smoother motion vector field but less
14104 optimal individual vectors. Default value is 1.
14105 @end table
14106
14107 @section median
14108
14109 Pick median pixel from certain rectangle defined by radius.
14110
14111 This filter accepts the following options:
14112
14113 @table @option
14114 @item radius
14115 Set horizontal radius size. Default value is @code{1}.
14116 Allowed range is integer from 1 to 127.
14117
14118 @item planes
14119 Set which planes to process. Default is @code{15}, which is all available planes.
14120
14121 @item radiusV
14122 Set vertical radius size. Default value is @code{0}.
14123 Allowed range is integer from 0 to 127.
14124 If it is 0, value will be picked from horizontal @code{radius} option.
14125
14126 @item percentile
14127 Set median percentile. Default value is @code{0.5}.
14128 Default value of @code{0.5} will pick always median values, while @code{0} will pick
14129 minimum values, and @code{1} maximum values.
14130 @end table
14131
14132 @subsection Commands
14133 This filter supports same @ref{commands} as options.
14134 The command accepts the same syntax of the corresponding option.
14135
14136 If the specified expression is not valid, it is kept at its current
14137 value.
14138
14139 @section mergeplanes
14140
14141 Merge color channel components from several video streams.
14142
14143 The filter accepts up to 4 input streams, and merge selected input
14144 planes to the output video.
14145
14146 This filter accepts the following options:
14147 @table @option
14148 @item mapping
14149 Set input to output plane mapping. Default is @code{0}.
14150
14151 The mappings is specified as a bitmap. It should be specified as a
14152 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
14153 mapping for the first plane of the output stream. 'A' sets the number of
14154 the input stream to use (from 0 to 3), and 'a' the plane number of the
14155 corresponding input to use (from 0 to 3). The rest of the mappings is
14156 similar, 'Bb' describes the mapping for the output stream second
14157 plane, 'Cc' describes the mapping for the output stream third plane and
14158 'Dd' describes the mapping for the output stream fourth plane.
14159
14160 @item format
14161 Set output pixel format. Default is @code{yuva444p}.
14162 @end table
14163
14164 @subsection Examples
14165
14166 @itemize
14167 @item
14168 Merge three gray video streams of same width and height into single video stream:
14169 @example
14170 [a0][a1][a2]mergeplanes=0x001020:yuv444p
14171 @end example
14172
14173 @item
14174 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
14175 @example
14176 [a0][a1]mergeplanes=0x00010210:yuva444p
14177 @end example
14178
14179 @item
14180 Swap Y and A plane in yuva444p stream:
14181 @example
14182 format=yuva444p,mergeplanes=0x03010200:yuva444p
14183 @end example
14184
14185 @item
14186 Swap U and V plane in yuv420p stream:
14187 @example
14188 format=yuv420p,mergeplanes=0x000201:yuv420p
14189 @end example
14190
14191 @item
14192 Cast a rgb24 clip to yuv444p:
14193 @example
14194 format=rgb24,mergeplanes=0x000102:yuv444p
14195 @end example
14196 @end itemize
14197
14198 @section mestimate
14199
14200 Estimate and export motion vectors using block matching algorithms.
14201 Motion vectors are stored in frame side data to be used by other filters.
14202
14203 This filter accepts the following options:
14204 @table @option
14205 @item method
14206 Specify the motion estimation method. Accepts one of the following values:
14207
14208 @table @samp
14209 @item esa
14210 Exhaustive search algorithm.
14211 @item tss
14212 Three step search algorithm.
14213 @item tdls
14214 Two dimensional logarithmic search algorithm.
14215 @item ntss
14216 New three step search algorithm.
14217 @item fss
14218 Four step search algorithm.
14219 @item ds
14220 Diamond search algorithm.
14221 @item hexbs
14222 Hexagon-based search algorithm.
14223 @item epzs
14224 Enhanced predictive zonal search algorithm.
14225 @item umh
14226 Uneven multi-hexagon search algorithm.
14227 @end table
14228 Default value is @samp{esa}.
14229
14230 @item mb_size
14231 Macroblock size. Default @code{16}.
14232
14233 @item search_param
14234 Search parameter. Default @code{7}.
14235 @end table
14236
14237 @section midequalizer
14238
14239 Apply Midway Image Equalization effect using two video streams.
14240
14241 Midway Image Equalization adjusts a pair of images to have the same
14242 histogram, while maintaining their dynamics as much as possible. It's
14243 useful for e.g. matching exposures from a pair of stereo cameras.
14244
14245 This filter has two inputs and one output, which must be of same pixel format, but
14246 may be of different sizes. The output of filter is first input adjusted with
14247 midway histogram of both inputs.
14248
14249 This filter accepts the following option:
14250
14251 @table @option
14252 @item planes
14253 Set which planes to process. Default is @code{15}, which is all available planes.
14254 @end table
14255
14256 @section minterpolate
14257
14258 Convert the video to specified frame rate using motion interpolation.
14259
14260 This filter accepts the following options:
14261 @table @option
14262 @item fps
14263 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}.
14264
14265 @item mi_mode
14266 Motion interpolation mode. Following values are accepted:
14267 @table @samp
14268 @item dup
14269 Duplicate previous or next frame for interpolating new ones.
14270 @item blend
14271 Blend source frames. Interpolated frame is mean of previous and next frames.
14272 @item mci
14273 Motion compensated interpolation. Following options are effective when this mode is selected:
14274
14275 @table @samp
14276 @item mc_mode
14277 Motion compensation mode. Following values are accepted:
14278 @table @samp
14279 @item obmc
14280 Overlapped block motion compensation.
14281 @item aobmc
14282 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
14283 @end table
14284 Default mode is @samp{obmc}.
14285
14286 @item me_mode
14287 Motion estimation mode. Following values are accepted:
14288 @table @samp
14289 @item bidir
14290 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
14291 @item bilat
14292 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
14293 @end table
14294 Default mode is @samp{bilat}.
14295
14296 @item me
14297 The algorithm to be used for motion estimation. Following values are accepted:
14298 @table @samp
14299 @item esa
14300 Exhaustive search algorithm.
14301 @item tss
14302 Three step search algorithm.
14303 @item tdls
14304 Two dimensional logarithmic search algorithm.
14305 @item ntss
14306 New three step search algorithm.
14307 @item fss
14308 Four step search algorithm.
14309 @item ds
14310 Diamond search algorithm.
14311 @item hexbs
14312 Hexagon-based search algorithm.
14313 @item epzs
14314 Enhanced predictive zonal search algorithm.
14315 @item umh
14316 Uneven multi-hexagon search algorithm.
14317 @end table
14318 Default algorithm is @samp{epzs}.
14319
14320 @item mb_size
14321 Macroblock size. Default @code{16}.
14322
14323 @item search_param
14324 Motion estimation search parameter. Default @code{32}.
14325
14326 @item vsbmc
14327 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).
14328 @end table
14329 @end table
14330
14331 @item scd
14332 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:
14333 @table @samp
14334 @item none
14335 Disable scene change detection.
14336 @item fdiff
14337 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14338 @end table
14339 Default method is @samp{fdiff}.
14340
14341 @item scd_threshold
14342 Scene change detection threshold. Default is @code{10.}.
14343 @end table
14344
14345 @section mix
14346
14347 Mix several video input streams into one video stream.
14348
14349 A description of the accepted options follows.
14350
14351 @table @option
14352 @item nb_inputs
14353 The number of inputs. If unspecified, it defaults to 2.
14354
14355 @item weights
14356 Specify weight of each input video stream as sequence.
14357 Each weight is separated by space. If number of weights
14358 is smaller than number of @var{frames} last specified
14359 weight will be used for all remaining unset weights.
14360
14361 @item scale
14362 Specify scale, if it is set it will be multiplied with sum
14363 of each weight multiplied with pixel values to give final destination
14364 pixel value. By default @var{scale} is auto scaled to sum of weights.
14365
14366 @item duration
14367 Specify how end of stream is determined.
14368 @table @samp
14369 @item longest
14370 The duration of the longest input. (default)
14371
14372 @item shortest
14373 The duration of the shortest input.
14374
14375 @item first
14376 The duration of the first input.
14377 @end table
14378 @end table
14379
14380 @section mpdecimate
14381
14382 Drop frames that do not differ greatly from the previous frame in
14383 order to reduce frame rate.
14384
14385 The main use of this filter is for very-low-bitrate encoding
14386 (e.g. streaming over dialup modem), but it could in theory be used for
14387 fixing movies that were inverse-telecined incorrectly.
14388
14389 A description of the accepted options follows.
14390
14391 @table @option
14392 @item max
14393 Set the maximum number of consecutive frames which can be dropped (if
14394 positive), or the minimum interval between dropped frames (if
14395 negative). If the value is 0, the frame is dropped disregarding the
14396 number of previous sequentially dropped frames.
14397
14398 Default value is 0.
14399
14400 @item hi
14401 @item lo
14402 @item frac
14403 Set the dropping threshold values.
14404
14405 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14406 represent actual pixel value differences, so a threshold of 64
14407 corresponds to 1 unit of difference for each pixel, or the same spread
14408 out differently over the block.
14409
14410 A frame is a candidate for dropping if no 8x8 blocks differ by more
14411 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14412 meaning the whole image) differ by more than a threshold of @option{lo}.
14413
14414 Default value for @option{hi} is 64*12, default value for @option{lo} is
14415 64*5, and default value for @option{frac} is 0.33.
14416 @end table
14417
14418
14419 @section negate
14420
14421 Negate (invert) the input video.
14422
14423 It accepts the following option:
14424
14425 @table @option
14426
14427 @item negate_alpha
14428 With value 1, it negates the alpha component, if present. Default value is 0.
14429 @end table
14430
14431 @anchor{nlmeans}
14432 @section nlmeans
14433
14434 Denoise frames using Non-Local Means algorithm.
14435
14436 Each pixel is adjusted by looking for other pixels with similar contexts. This
14437 context similarity is defined by comparing their surrounding patches of size
14438 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14439 around the pixel.
14440
14441 Note that the research area defines centers for patches, which means some
14442 patches will be made of pixels outside that research area.
14443
14444 The filter accepts the following options.
14445
14446 @table @option
14447 @item s
14448 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
14449
14450 @item p
14451 Set patch size. Default is 7. Must be odd number in range [0, 99].
14452
14453 @item pc
14454 Same as @option{p} but for chroma planes.
14455
14456 The default value is @var{0} and means automatic.
14457
14458 @item r
14459 Set research size. Default is 15. Must be odd number in range [0, 99].
14460
14461 @item rc
14462 Same as @option{r} but for chroma planes.
14463
14464 The default value is @var{0} and means automatic.
14465 @end table
14466
14467 @section nnedi
14468
14469 Deinterlace video using neural network edge directed interpolation.
14470
14471 This filter accepts the following options:
14472
14473 @table @option
14474 @item weights
14475 Mandatory option, without binary file filter can not work.
14476 Currently file can be found here:
14477 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
14478
14479 @item deint
14480 Set which frames to deinterlace, by default it is @code{all}.
14481 Can be @code{all} or @code{interlaced}.
14482
14483 @item field
14484 Set mode of operation.
14485
14486 Can be one of the following:
14487
14488 @table @samp
14489 @item af
14490 Use frame flags, both fields.
14491 @item a
14492 Use frame flags, single field.
14493 @item t
14494 Use top field only.
14495 @item b
14496 Use bottom field only.
14497 @item tf
14498 Use both fields, top first.
14499 @item bf
14500 Use both fields, bottom first.
14501 @end table
14502
14503 @item planes
14504 Set which planes to process, by default filter process all frames.
14505
14506 @item nsize
14507 Set size of local neighborhood around each pixel, used by the predictor neural
14508 network.
14509
14510 Can be one of the following:
14511
14512 @table @samp
14513 @item s8x6
14514 @item s16x6
14515 @item s32x6
14516 @item s48x6
14517 @item s8x4
14518 @item s16x4
14519 @item s32x4
14520 @end table
14521
14522 @item nns
14523 Set the number of neurons in predictor neural network.
14524 Can be one of the following:
14525
14526 @table @samp
14527 @item n16
14528 @item n32
14529 @item n64
14530 @item n128
14531 @item n256
14532 @end table
14533
14534 @item qual
14535 Controls the number of different neural network predictions that are blended
14536 together to compute the final output value. Can be @code{fast}, default or
14537 @code{slow}.
14538
14539 @item etype
14540 Set which set of weights to use in the predictor.
14541 Can be one of the following:
14542
14543 @table @samp
14544 @item a
14545 weights trained to minimize absolute error
14546 @item s
14547 weights trained to minimize squared error
14548 @end table
14549
14550 @item pscrn
14551 Controls whether or not the prescreener neural network is used to decide
14552 which pixels should be processed by the predictor neural network and which
14553 can be handled by simple cubic interpolation.
14554 The prescreener is trained to know whether cubic interpolation will be
14555 sufficient for a pixel or whether it should be predicted by the predictor nn.
14556 The computational complexity of the prescreener nn is much less than that of
14557 the predictor nn. Since most pixels can be handled by cubic interpolation,
14558 using the prescreener generally results in much faster processing.
14559 The prescreener is pretty accurate, so the difference between using it and not
14560 using it is almost always unnoticeable.
14561
14562 Can be one of the following:
14563
14564 @table @samp
14565 @item none
14566 @item original
14567 @item new
14568 @end table
14569
14570 Default is @code{new}.
14571
14572 @item fapprox
14573 Set various debugging flags.
14574 @end table
14575
14576 @section noformat
14577
14578 Force libavfilter not to use any of the specified pixel formats for the
14579 input to the next filter.
14580
14581 It accepts the following parameters:
14582 @table @option
14583
14584 @item pix_fmts
14585 A '|'-separated list of pixel format names, such as
14586 pix_fmts=yuv420p|monow|rgb24".
14587
14588 @end table
14589
14590 @subsection Examples
14591
14592 @itemize
14593 @item
14594 Force libavfilter to use a format different from @var{yuv420p} for the
14595 input to the vflip filter:
14596 @example
14597 noformat=pix_fmts=yuv420p,vflip
14598 @end example
14599
14600 @item
14601 Convert the input video to any of the formats not contained in the list:
14602 @example
14603 noformat=yuv420p|yuv444p|yuv410p
14604 @end example
14605 @end itemize
14606
14607 @section noise
14608
14609 Add noise on video input frame.
14610
14611 The filter accepts the following options:
14612
14613 @table @option
14614 @item all_seed
14615 @item c0_seed
14616 @item c1_seed
14617 @item c2_seed
14618 @item c3_seed
14619 Set noise seed for specific pixel component or all pixel components in case
14620 of @var{all_seed}. Default value is @code{123457}.
14621
14622 @item all_strength, alls
14623 @item c0_strength, c0s
14624 @item c1_strength, c1s
14625 @item c2_strength, c2s
14626 @item c3_strength, c3s
14627 Set noise strength for specific pixel component or all pixel components in case
14628 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
14629
14630 @item all_flags, allf
14631 @item c0_flags, c0f
14632 @item c1_flags, c1f
14633 @item c2_flags, c2f
14634 @item c3_flags, c3f
14635 Set pixel component flags or set flags for all components if @var{all_flags}.
14636 Available values for component flags are:
14637 @table @samp
14638 @item a
14639 averaged temporal noise (smoother)
14640 @item p
14641 mix random noise with a (semi)regular pattern
14642 @item t
14643 temporal noise (noise pattern changes between frames)
14644 @item u
14645 uniform noise (gaussian otherwise)
14646 @end table
14647 @end table
14648
14649 @subsection Examples
14650
14651 Add temporal and uniform noise to input video:
14652 @example
14653 noise=alls=20:allf=t+u
14654 @end example
14655
14656 @section normalize
14657
14658 Normalize RGB video (aka histogram stretching, contrast stretching).
14659 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
14660
14661 For each channel of each frame, the filter computes the input range and maps
14662 it linearly to the user-specified output range. The output range defaults
14663 to the full dynamic range from pure black to pure white.
14664
14665 Temporal smoothing can be used on the input range to reduce flickering (rapid
14666 changes in brightness) caused when small dark or bright objects enter or leave
14667 the scene. This is similar to the auto-exposure (automatic gain control) on a
14668 video camera, and, like a video camera, it may cause a period of over- or
14669 under-exposure of the video.
14670
14671 The R,G,B channels can be normalized independently, which may cause some
14672 color shifting, or linked together as a single channel, which prevents
14673 color shifting. Linked normalization preserves hue. Independent normalization
14674 does not, so it can be used to remove some color casts. Independent and linked
14675 normalization can be combined in any ratio.
14676
14677 The normalize filter accepts the following options:
14678
14679 @table @option
14680 @item blackpt
14681 @item whitept
14682 Colors which define the output range. The minimum input value is mapped to
14683 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
14684 The defaults are black and white respectively. Specifying white for
14685 @var{blackpt} and black for @var{whitept} will give color-inverted,
14686 normalized video. Shades of grey can be used to reduce the dynamic range
14687 (contrast). Specifying saturated colors here can create some interesting
14688 effects.
14689
14690 @item smoothing
14691 The number of previous frames to use for temporal smoothing. The input range
14692 of each channel is smoothed using a rolling average over the current frame
14693 and the @var{smoothing} previous frames. The default is 0 (no temporal
14694 smoothing).
14695
14696 @item independence
14697 Controls the ratio of independent (color shifting) channel normalization to
14698 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
14699 independent. Defaults to 1.0 (fully independent).
14700
14701 @item strength
14702 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
14703 expensive no-op. Defaults to 1.0 (full strength).
14704
14705 @end table
14706
14707 @subsection Commands
14708 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
14709 The command accepts the same syntax of the corresponding option.
14710
14711 If the specified expression is not valid, it is kept at its current
14712 value.
14713
14714 @subsection Examples
14715
14716 Stretch video contrast to use the full dynamic range, with no temporal
14717 smoothing; may flicker depending on the source content:
14718 @example
14719 normalize=blackpt=black:whitept=white:smoothing=0
14720 @end example
14721
14722 As above, but with 50 frames of temporal smoothing; flicker should be
14723 reduced, depending on the source content:
14724 @example
14725 normalize=blackpt=black:whitept=white:smoothing=50
14726 @end example
14727
14728 As above, but with hue-preserving linked channel normalization:
14729 @example
14730 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
14731 @end example
14732
14733 As above, but with half strength:
14734 @example
14735 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
14736 @end example
14737
14738 Map the darkest input color to red, the brightest input color to cyan:
14739 @example
14740 normalize=blackpt=red:whitept=cyan
14741 @end example
14742
14743 @section null
14744
14745 Pass the video source unchanged to the output.
14746
14747 @section ocr
14748 Optical Character Recognition
14749
14750 This filter uses Tesseract for optical character recognition. To enable
14751 compilation of this filter, you need to configure FFmpeg with
14752 @code{--enable-libtesseract}.
14753
14754 It accepts the following options:
14755
14756 @table @option
14757 @item datapath
14758 Set datapath to tesseract data. Default is to use whatever was
14759 set at installation.
14760
14761 @item language
14762 Set language, default is "eng".
14763
14764 @item whitelist
14765 Set character whitelist.
14766
14767 @item blacklist
14768 Set character blacklist.
14769 @end table
14770
14771 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
14772 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
14773
14774 @section ocv
14775
14776 Apply a video transform using libopencv.
14777
14778 To enable this filter, install the libopencv library and headers and
14779 configure FFmpeg with @code{--enable-libopencv}.
14780
14781 It accepts the following parameters:
14782
14783 @table @option
14784
14785 @item filter_name
14786 The name of the libopencv filter to apply.
14787
14788 @item filter_params
14789 The parameters to pass to the libopencv filter. If not specified, the default
14790 values are assumed.
14791
14792 @end table
14793
14794 Refer to the official libopencv documentation for more precise
14795 information:
14796 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
14797
14798 Several libopencv filters are supported; see the following subsections.
14799
14800 @anchor{dilate}
14801 @subsection dilate
14802
14803 Dilate an image by using a specific structuring element.
14804 It corresponds to the libopencv function @code{cvDilate}.
14805
14806 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
14807
14808 @var{struct_el} represents a structuring element, and has the syntax:
14809 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
14810
14811 @var{cols} and @var{rows} represent the number of columns and rows of
14812 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
14813 point, and @var{shape} the shape for the structuring element. @var{shape}
14814 must be "rect", "cross", "ellipse", or "custom".
14815
14816 If the value for @var{shape} is "custom", it must be followed by a
14817 string of the form "=@var{filename}". The file with name
14818 @var{filename} is assumed to represent a binary image, with each
14819 printable character corresponding to a bright pixel. When a custom
14820 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
14821 or columns and rows of the read file are assumed instead.
14822
14823 The default value for @var{struct_el} is "3x3+0x0/rect".
14824
14825 @var{nb_iterations} specifies the number of times the transform is
14826 applied to the image, and defaults to 1.
14827
14828 Some examples:
14829 @example
14830 # Use the default values
14831 ocv=dilate
14832
14833 # Dilate using a structuring element with a 5x5 cross, iterating two times
14834 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
14835
14836 # Read the shape from the file diamond.shape, iterating two times.
14837 # The file diamond.shape may contain a pattern of characters like this
14838 #   *
14839 #  ***
14840 # *****
14841 #  ***
14842 #   *
14843 # The specified columns and rows are ignored
14844 # but the anchor point coordinates are not
14845 ocv=dilate:0x0+2x2/custom=diamond.shape|2
14846 @end example
14847
14848 @subsection erode
14849
14850 Erode an image by using a specific structuring element.
14851 It corresponds to the libopencv function @code{cvErode}.
14852
14853 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
14854 with the same syntax and semantics as the @ref{dilate} filter.
14855
14856 @subsection smooth
14857
14858 Smooth the input video.
14859
14860 The filter takes the following parameters:
14861 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
14862
14863 @var{type} is the type of smooth filter to apply, and must be one of
14864 the following values: "blur", "blur_no_scale", "median", "gaussian",
14865 or "bilateral". The default value is "gaussian".
14866
14867 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
14868 depends on the smooth type. @var{param1} and
14869 @var{param2} accept integer positive values or 0. @var{param3} and
14870 @var{param4} accept floating point values.
14871
14872 The default value for @var{param1} is 3. The default value for the
14873 other parameters is 0.
14874
14875 These parameters correspond to the parameters assigned to the
14876 libopencv function @code{cvSmooth}.
14877
14878 @section oscilloscope
14879
14880 2D Video Oscilloscope.
14881
14882 Useful to measure spatial impulse, step responses, chroma delays, etc.
14883
14884 It accepts the following parameters:
14885
14886 @table @option
14887 @item x
14888 Set scope center x position.
14889
14890 @item y
14891 Set scope center y position.
14892
14893 @item s
14894 Set scope size, relative to frame diagonal.
14895
14896 @item t
14897 Set scope tilt/rotation.
14898
14899 @item o
14900 Set trace opacity.
14901
14902 @item tx
14903 Set trace center x position.
14904
14905 @item ty
14906 Set trace center y position.
14907
14908 @item tw
14909 Set trace width, relative to width of frame.
14910
14911 @item th
14912 Set trace height, relative to height of frame.
14913
14914 @item c
14915 Set which components to trace. By default it traces first three components.
14916
14917 @item g
14918 Draw trace grid. By default is enabled.
14919
14920 @item st
14921 Draw some statistics. By default is enabled.
14922
14923 @item sc
14924 Draw scope. By default is enabled.
14925 @end table
14926
14927 @subsection Commands
14928 This filter supports same @ref{commands} as options.
14929 The command accepts the same syntax of the corresponding option.
14930
14931 If the specified expression is not valid, it is kept at its current
14932 value.
14933
14934 @subsection Examples
14935
14936 @itemize
14937 @item
14938 Inspect full first row of video frame.
14939 @example
14940 oscilloscope=x=0.5:y=0:s=1
14941 @end example
14942
14943 @item
14944 Inspect full last row of video frame.
14945 @example
14946 oscilloscope=x=0.5:y=1:s=1
14947 @end example
14948
14949 @item
14950 Inspect full 5th line of video frame of height 1080.
14951 @example
14952 oscilloscope=x=0.5:y=5/1080:s=1
14953 @end example
14954
14955 @item
14956 Inspect full last column of video frame.
14957 @example
14958 oscilloscope=x=1:y=0.5:s=1:t=1
14959 @end example
14960
14961 @end itemize
14962
14963 @anchor{overlay}
14964 @section overlay
14965
14966 Overlay one video on top of another.
14967
14968 It takes two inputs and has one output. The first input is the "main"
14969 video on which the second input is overlaid.
14970
14971 It accepts the following parameters:
14972
14973 A description of the accepted options follows.
14974
14975 @table @option
14976 @item x
14977 @item y
14978 Set the expression for the x and y coordinates of the overlaid video
14979 on the main video. Default value is "0" for both expressions. In case
14980 the expression is invalid, it is set to a huge value (meaning that the
14981 overlay will not be displayed within the output visible area).
14982
14983 @item eof_action
14984 See @ref{framesync}.
14985
14986 @item eval
14987 Set when the expressions for @option{x}, and @option{y} are evaluated.
14988
14989 It accepts the following values:
14990 @table @samp
14991 @item init
14992 only evaluate expressions once during the filter initialization or
14993 when a command is processed
14994
14995 @item frame
14996 evaluate expressions for each incoming frame
14997 @end table
14998
14999 Default value is @samp{frame}.
15000
15001 @item shortest
15002 See @ref{framesync}.
15003
15004 @item format
15005 Set the format for the output video.
15006
15007 It accepts the following values:
15008 @table @samp
15009 @item yuv420
15010 force YUV420 output
15011
15012 @item yuv420p10
15013 force YUV420p10 output
15014
15015 @item yuv422
15016 force YUV422 output
15017
15018 @item yuv422p10
15019 force YUV422p10 output
15020
15021 @item yuv444
15022 force YUV444 output
15023
15024 @item rgb
15025 force packed RGB output
15026
15027 @item gbrp
15028 force planar RGB output
15029
15030 @item auto
15031 automatically pick format
15032 @end table
15033
15034 Default value is @samp{yuv420}.
15035
15036 @item repeatlast
15037 See @ref{framesync}.
15038
15039 @item alpha
15040 Set format of alpha of the overlaid video, it can be @var{straight} or
15041 @var{premultiplied}. Default is @var{straight}.
15042 @end table
15043
15044 The @option{x}, and @option{y} expressions can contain the following
15045 parameters.
15046
15047 @table @option
15048 @item main_w, W
15049 @item main_h, H
15050 The main input width and height.
15051
15052 @item overlay_w, w
15053 @item overlay_h, h
15054 The overlay input width and height.
15055
15056 @item x
15057 @item y
15058 The computed values for @var{x} and @var{y}. They are evaluated for
15059 each new frame.
15060
15061 @item hsub
15062 @item vsub
15063 horizontal and vertical chroma subsample values of the output
15064 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
15065 @var{vsub} is 1.
15066
15067 @item n
15068 the number of input frame, starting from 0
15069
15070 @item pos
15071 the position in the file of the input frame, NAN if unknown
15072
15073 @item t
15074 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
15075
15076 @end table
15077
15078 This filter also supports the @ref{framesync} options.
15079
15080 Note that the @var{n}, @var{pos}, @var{t} variables are available only
15081 when evaluation is done @emph{per frame}, and will evaluate to NAN
15082 when @option{eval} is set to @samp{init}.
15083
15084 Be aware that frames are taken from each input video in timestamp
15085 order, hence, if their initial timestamps differ, it is a good idea
15086 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
15087 have them begin in the same zero timestamp, as the example for
15088 the @var{movie} filter does.
15089
15090 You can chain together more overlays but you should test the
15091 efficiency of such approach.
15092
15093 @subsection Commands
15094
15095 This filter supports the following commands:
15096 @table @option
15097 @item x
15098 @item y
15099 Modify the x and y of the overlay input.
15100 The command accepts the same syntax of the corresponding option.
15101
15102 If the specified expression is not valid, it is kept at its current
15103 value.
15104 @end table
15105
15106 @subsection Examples
15107
15108 @itemize
15109 @item
15110 Draw the overlay at 10 pixels from the bottom right corner of the main
15111 video:
15112 @example
15113 overlay=main_w-overlay_w-10:main_h-overlay_h-10
15114 @end example
15115
15116 Using named options the example above becomes:
15117 @example
15118 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
15119 @end example
15120
15121 @item
15122 Insert a transparent PNG logo in the bottom left corner of the input,
15123 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
15124 @example
15125 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
15126 @end example
15127
15128 @item
15129 Insert 2 different transparent PNG logos (second logo on bottom
15130 right corner) using the @command{ffmpeg} tool:
15131 @example
15132 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
15133 @end example
15134
15135 @item
15136 Add a transparent color layer on top of the main video; @code{WxH}
15137 must specify the size of the main input to the overlay filter:
15138 @example
15139 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
15140 @end example
15141
15142 @item
15143 Play an original video and a filtered version (here with the deshake
15144 filter) side by side using the @command{ffplay} tool:
15145 @example
15146 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
15147 @end example
15148
15149 The above command is the same as:
15150 @example
15151 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
15152 @end example
15153
15154 @item
15155 Make a sliding overlay appearing from the left to the right top part of the
15156 screen starting since time 2:
15157 @example
15158 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
15159 @end example
15160
15161 @item
15162 Compose output by putting two input videos side to side:
15163 @example
15164 ffmpeg -i left.avi -i right.avi -filter_complex "
15165 nullsrc=size=200x100 [background];
15166 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
15167 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
15168 [background][left]       overlay=shortest=1       [background+left];
15169 [background+left][right] overlay=shortest=1:x=100 [left+right]
15170 "
15171 @end example
15172
15173 @item
15174 Mask 10-20 seconds of a video by applying the delogo filter to a section
15175 @example
15176 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
15177 -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]'
15178 masked.avi
15179 @end example
15180
15181 @item
15182 Chain several overlays in cascade:
15183 @example
15184 nullsrc=s=200x200 [bg];
15185 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
15186 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
15187 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
15188 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
15189 [in3] null,       [mid2] overlay=100:100 [out0]
15190 @end example
15191
15192 @end itemize
15193
15194 @anchor{overlay_cuda}
15195 @section overlay_cuda
15196
15197 Overlay one video on top of another.
15198
15199 This is the CUDA variant of the @ref{overlay} filter.
15200 It only accepts CUDA frames. The underlying input pixel formats have to match.
15201
15202 It takes two inputs and has one output. The first input is the "main"
15203 video on which the second input is overlaid.
15204
15205 It accepts the following parameters:
15206
15207 @table @option
15208 @item x
15209 @item y
15210 Set the x and y coordinates of the overlaid video on the main video.
15211 Default value is "0" for both expressions.
15212
15213 @item eof_action
15214 See @ref{framesync}.
15215
15216 @item shortest
15217 See @ref{framesync}.
15218
15219 @item repeatlast
15220 See @ref{framesync}.
15221
15222 @end table
15223
15224 This filter also supports the @ref{framesync} options.
15225
15226 @section owdenoise
15227
15228 Apply Overcomplete Wavelet denoiser.
15229
15230 The filter accepts the following options:
15231
15232 @table @option
15233 @item depth
15234 Set depth.
15235
15236 Larger depth values will denoise lower frequency components more, but
15237 slow down filtering.
15238
15239 Must be an int in the range 8-16, default is @code{8}.
15240
15241 @item luma_strength, ls
15242 Set luma strength.
15243
15244 Must be a double value in the range 0-1000, default is @code{1.0}.
15245
15246 @item chroma_strength, cs
15247 Set chroma strength.
15248
15249 Must be a double value in the range 0-1000, default is @code{1.0}.
15250 @end table
15251
15252 @anchor{pad}
15253 @section pad
15254
15255 Add paddings to the input image, and place the original input at the
15256 provided @var{x}, @var{y} coordinates.
15257
15258 It accepts the following parameters:
15259
15260 @table @option
15261 @item width, w
15262 @item height, h
15263 Specify an expression for the size of the output image with the
15264 paddings added. If the value for @var{width} or @var{height} is 0, the
15265 corresponding input size is used for the output.
15266
15267 The @var{width} expression can reference the value set by the
15268 @var{height} expression, and vice versa.
15269
15270 The default value of @var{width} and @var{height} is 0.
15271
15272 @item x
15273 @item y
15274 Specify the offsets to place the input image at within the padded area,
15275 with respect to the top/left border of the output image.
15276
15277 The @var{x} expression can reference the value set by the @var{y}
15278 expression, and vice versa.
15279
15280 The default value of @var{x} and @var{y} is 0.
15281
15282 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
15283 so the input image is centered on the padded area.
15284
15285 @item color
15286 Specify the color of the padded area. For the syntax of this option,
15287 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15288 manual,ffmpeg-utils}.
15289
15290 The default value of @var{color} is "black".
15291
15292 @item eval
15293 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
15294
15295 It accepts the following values:
15296
15297 @table @samp
15298 @item init
15299 Only evaluate expressions once during the filter initialization or when
15300 a command is processed.
15301
15302 @item frame
15303 Evaluate expressions for each incoming frame.
15304
15305 @end table
15306
15307 Default value is @samp{init}.
15308
15309 @item aspect
15310 Pad to aspect instead to a resolution.
15311
15312 @end table
15313
15314 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
15315 options are expressions containing the following constants:
15316
15317 @table @option
15318 @item in_w
15319 @item in_h
15320 The input video width and height.
15321
15322 @item iw
15323 @item ih
15324 These are the same as @var{in_w} and @var{in_h}.
15325
15326 @item out_w
15327 @item out_h
15328 The output width and height (the size of the padded area), as
15329 specified by the @var{width} and @var{height} expressions.
15330
15331 @item ow
15332 @item oh
15333 These are the same as @var{out_w} and @var{out_h}.
15334
15335 @item x
15336 @item y
15337 The x and y offsets as specified by the @var{x} and @var{y}
15338 expressions, or NAN if not yet specified.
15339
15340 @item a
15341 same as @var{iw} / @var{ih}
15342
15343 @item sar
15344 input sample aspect ratio
15345
15346 @item dar
15347 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15348
15349 @item hsub
15350 @item vsub
15351 The horizontal and vertical chroma subsample values. For example for the
15352 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15353 @end table
15354
15355 @subsection Examples
15356
15357 @itemize
15358 @item
15359 Add paddings with the color "violet" to the input video. The output video
15360 size is 640x480, and the top-left corner of the input video is placed at
15361 column 0, row 40
15362 @example
15363 pad=640:480:0:40:violet
15364 @end example
15365
15366 The example above is equivalent to the following command:
15367 @example
15368 pad=width=640:height=480:x=0:y=40:color=violet
15369 @end example
15370
15371 @item
15372 Pad the input to get an output with dimensions increased by 3/2,
15373 and put the input video at the center of the padded area:
15374 @example
15375 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15376 @end example
15377
15378 @item
15379 Pad the input to get a squared output with size equal to the maximum
15380 value between the input width and height, and put the input video at
15381 the center of the padded area:
15382 @example
15383 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15384 @end example
15385
15386 @item
15387 Pad the input to get a final w/h ratio of 16:9:
15388 @example
15389 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15390 @end example
15391
15392 @item
15393 In case of anamorphic video, in order to set the output display aspect
15394 correctly, it is necessary to use @var{sar} in the expression,
15395 according to the relation:
15396 @example
15397 (ih * X / ih) * sar = output_dar
15398 X = output_dar / sar
15399 @end example
15400
15401 Thus the previous example needs to be modified to:
15402 @example
15403 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15404 @end example
15405
15406 @item
15407 Double the output size and put the input video in the bottom-right
15408 corner of the output padded area:
15409 @example
15410 pad="2*iw:2*ih:ow-iw:oh-ih"
15411 @end example
15412 @end itemize
15413
15414 @anchor{palettegen}
15415 @section palettegen
15416
15417 Generate one palette for a whole video stream.
15418
15419 It accepts the following options:
15420
15421 @table @option
15422 @item max_colors
15423 Set the maximum number of colors to quantize in the palette.
15424 Note: the palette will still contain 256 colors; the unused palette entries
15425 will be black.
15426
15427 @item reserve_transparent
15428 Create a palette of 255 colors maximum and reserve the last one for
15429 transparency. Reserving the transparency color is useful for GIF optimization.
15430 If not set, the maximum of colors in the palette will be 256. You probably want
15431 to disable this option for a standalone image.
15432 Set by default.
15433
15434 @item transparency_color
15435 Set the color that will be used as background for transparency.
15436
15437 @item stats_mode
15438 Set statistics mode.
15439
15440 It accepts the following values:
15441 @table @samp
15442 @item full
15443 Compute full frame histograms.
15444 @item diff
15445 Compute histograms only for the part that differs from previous frame. This
15446 might be relevant to give more importance to the moving part of your input if
15447 the background is static.
15448 @item single
15449 Compute new histogram for each frame.
15450 @end table
15451
15452 Default value is @var{full}.
15453 @end table
15454
15455 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
15456 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
15457 color quantization of the palette. This information is also visible at
15458 @var{info} logging level.
15459
15460 @subsection Examples
15461
15462 @itemize
15463 @item
15464 Generate a representative palette of a given video using @command{ffmpeg}:
15465 @example
15466 ffmpeg -i input.mkv -vf palettegen palette.png
15467 @end example
15468 @end itemize
15469
15470 @section paletteuse
15471
15472 Use a palette to downsample an input video stream.
15473
15474 The filter takes two inputs: one video stream and a palette. The palette must
15475 be a 256 pixels image.
15476
15477 It accepts the following options:
15478
15479 @table @option
15480 @item dither
15481 Select dithering mode. Available algorithms are:
15482 @table @samp
15483 @item bayer
15484 Ordered 8x8 bayer dithering (deterministic)
15485 @item heckbert
15486 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
15487 Note: this dithering is sometimes considered "wrong" and is included as a
15488 reference.
15489 @item floyd_steinberg
15490 Floyd and Steingberg dithering (error diffusion)
15491 @item sierra2
15492 Frankie Sierra dithering v2 (error diffusion)
15493 @item sierra2_4a
15494 Frankie Sierra dithering v2 "Lite" (error diffusion)
15495 @end table
15496
15497 Default is @var{sierra2_4a}.
15498
15499 @item bayer_scale
15500 When @var{bayer} dithering is selected, this option defines the scale of the
15501 pattern (how much the crosshatch pattern is visible). A low value means more
15502 visible pattern for less banding, and higher value means less visible pattern
15503 at the cost of more banding.
15504
15505 The option must be an integer value in the range [0,5]. Default is @var{2}.
15506
15507 @item diff_mode
15508 If set, define the zone to process
15509
15510 @table @samp
15511 @item rectangle
15512 Only the changing rectangle will be reprocessed. This is similar to GIF
15513 cropping/offsetting compression mechanism. This option can be useful for speed
15514 if only a part of the image is changing, and has use cases such as limiting the
15515 scope of the error diffusal @option{dither} to the rectangle that bounds the
15516 moving scene (it leads to more deterministic output if the scene doesn't change
15517 much, and as a result less moving noise and better GIF compression).
15518 @end table
15519
15520 Default is @var{none}.
15521
15522 @item new
15523 Take new palette for each output frame.
15524
15525 @item alpha_threshold
15526 Sets the alpha threshold for transparency. Alpha values above this threshold
15527 will be treated as completely opaque, and values below this threshold will be
15528 treated as completely transparent.
15529
15530 The option must be an integer value in the range [0,255]. Default is @var{128}.
15531 @end table
15532
15533 @subsection Examples
15534
15535 @itemize
15536 @item
15537 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
15538 using @command{ffmpeg}:
15539 @example
15540 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
15541 @end example
15542 @end itemize
15543
15544 @section perspective
15545
15546 Correct perspective of video not recorded perpendicular to the screen.
15547
15548 A description of the accepted parameters follows.
15549
15550 @table @option
15551 @item x0
15552 @item y0
15553 @item x1
15554 @item y1
15555 @item x2
15556 @item y2
15557 @item x3
15558 @item y3
15559 Set coordinates expression for top left, top right, bottom left and bottom right corners.
15560 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
15561 If the @code{sense} option is set to @code{source}, then the specified points will be sent
15562 to the corners of the destination. If the @code{sense} option is set to @code{destination},
15563 then the corners of the source will be sent to the specified coordinates.
15564
15565 The expressions can use the following variables:
15566
15567 @table @option
15568 @item W
15569 @item H
15570 the width and height of video frame.
15571 @item in
15572 Input frame count.
15573 @item on
15574 Output frame count.
15575 @end table
15576
15577 @item interpolation
15578 Set interpolation for perspective correction.
15579
15580 It accepts the following values:
15581 @table @samp
15582 @item linear
15583 @item cubic
15584 @end table
15585
15586 Default value is @samp{linear}.
15587
15588 @item sense
15589 Set interpretation of coordinate options.
15590
15591 It accepts the following values:
15592 @table @samp
15593 @item 0, source
15594
15595 Send point in the source specified by the given coordinates to
15596 the corners of the destination.
15597
15598 @item 1, destination
15599
15600 Send the corners of the source to the point in the destination specified
15601 by the given coordinates.
15602
15603 Default value is @samp{source}.
15604 @end table
15605
15606 @item eval
15607 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
15608
15609 It accepts the following values:
15610 @table @samp
15611 @item init
15612 only evaluate expressions once during the filter initialization or
15613 when a command is processed
15614
15615 @item frame
15616 evaluate expressions for each incoming frame
15617 @end table
15618
15619 Default value is @samp{init}.
15620 @end table
15621
15622 @section phase
15623
15624 Delay interlaced video by one field time so that the field order changes.
15625
15626 The intended use is to fix PAL movies that have been captured with the
15627 opposite field order to the film-to-video transfer.
15628
15629 A description of the accepted parameters follows.
15630
15631 @table @option
15632 @item mode
15633 Set phase mode.
15634
15635 It accepts the following values:
15636 @table @samp
15637 @item t
15638 Capture field order top-first, transfer bottom-first.
15639 Filter will delay the bottom field.
15640
15641 @item b
15642 Capture field order bottom-first, transfer top-first.
15643 Filter will delay the top field.
15644
15645 @item p
15646 Capture and transfer with the same field order. This mode only exists
15647 for the documentation of the other options to refer to, but if you
15648 actually select it, the filter will faithfully do nothing.
15649
15650 @item a
15651 Capture field order determined automatically by field flags, transfer
15652 opposite.
15653 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
15654 basis using field flags. If no field information is available,
15655 then this works just like @samp{u}.
15656
15657 @item u
15658 Capture unknown or varying, transfer opposite.
15659 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
15660 analyzing the images and selecting the alternative that produces best
15661 match between the fields.
15662
15663 @item T
15664 Capture top-first, transfer unknown or varying.
15665 Filter selects among @samp{t} and @samp{p} using image analysis.
15666
15667 @item B
15668 Capture bottom-first, transfer unknown or varying.
15669 Filter selects among @samp{b} and @samp{p} using image analysis.
15670
15671 @item A
15672 Capture determined by field flags, transfer unknown or varying.
15673 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
15674 image analysis. If no field information is available, then this works just
15675 like @samp{U}. This is the default mode.
15676
15677 @item U
15678 Both capture and transfer unknown or varying.
15679 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
15680 @end table
15681 @end table
15682
15683 @section photosensitivity
15684 Reduce various flashes in video, so to help users with epilepsy.
15685
15686 It accepts the following options:
15687 @table @option
15688 @item frames, f
15689 Set how many frames to use when filtering. Default is 30.
15690
15691 @item threshold, t
15692 Set detection threshold factor. Default is 1.
15693 Lower is stricter.
15694
15695 @item skip
15696 Set how many pixels to skip when sampling frames. Default is 1.
15697 Allowed range is from 1 to 1024.
15698
15699 @item bypass
15700 Leave frames unchanged. Default is disabled.
15701 @end table
15702
15703 @section pixdesctest
15704
15705 Pixel format descriptor test filter, mainly useful for internal
15706 testing. The output video should be equal to the input video.
15707
15708 For example:
15709 @example
15710 format=monow, pixdesctest
15711 @end example
15712
15713 can be used to test the monowhite pixel format descriptor definition.
15714
15715 @section pixscope
15716
15717 Display sample values of color channels. Mainly useful for checking color
15718 and levels. Minimum supported resolution is 640x480.
15719
15720 The filters accept the following options:
15721
15722 @table @option
15723 @item x
15724 Set scope X position, relative offset on X axis.
15725
15726 @item y
15727 Set scope Y position, relative offset on Y axis.
15728
15729 @item w
15730 Set scope width.
15731
15732 @item h
15733 Set scope height.
15734
15735 @item o
15736 Set window opacity. This window also holds statistics about pixel area.
15737
15738 @item wx
15739 Set window X position, relative offset on X axis.
15740
15741 @item wy
15742 Set window Y position, relative offset on Y axis.
15743 @end table
15744
15745 @section pp
15746
15747 Enable the specified chain of postprocessing subfilters using libpostproc. This
15748 library should be automatically selected with a GPL build (@code{--enable-gpl}).
15749 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
15750 Each subfilter and some options have a short and a long name that can be used
15751 interchangeably, i.e. dr/dering are the same.
15752
15753 The filters accept the following options:
15754
15755 @table @option
15756 @item subfilters
15757 Set postprocessing subfilters string.
15758 @end table
15759
15760 All subfilters share common options to determine their scope:
15761
15762 @table @option
15763 @item a/autoq
15764 Honor the quality commands for this subfilter.
15765
15766 @item c/chrom
15767 Do chrominance filtering, too (default).
15768
15769 @item y/nochrom
15770 Do luminance filtering only (no chrominance).
15771
15772 @item n/noluma
15773 Do chrominance filtering only (no luminance).
15774 @end table
15775
15776 These options can be appended after the subfilter name, separated by a '|'.
15777
15778 Available subfilters are:
15779
15780 @table @option
15781 @item hb/hdeblock[|difference[|flatness]]
15782 Horizontal deblocking filter
15783 @table @option
15784 @item difference
15785 Difference factor where higher values mean more deblocking (default: @code{32}).
15786 @item flatness
15787 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15788 @end table
15789
15790 @item vb/vdeblock[|difference[|flatness]]
15791 Vertical deblocking filter
15792 @table @option
15793 @item difference
15794 Difference factor where higher values mean more deblocking (default: @code{32}).
15795 @item flatness
15796 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15797 @end table
15798
15799 @item ha/hadeblock[|difference[|flatness]]
15800 Accurate horizontal deblocking filter
15801 @table @option
15802 @item difference
15803 Difference factor where higher values mean more deblocking (default: @code{32}).
15804 @item flatness
15805 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15806 @end table
15807
15808 @item va/vadeblock[|difference[|flatness]]
15809 Accurate vertical deblocking filter
15810 @table @option
15811 @item difference
15812 Difference factor where higher values mean more deblocking (default: @code{32}).
15813 @item flatness
15814 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15815 @end table
15816 @end table
15817
15818 The horizontal and vertical deblocking filters share the difference and
15819 flatness values so you cannot set different horizontal and vertical
15820 thresholds.
15821
15822 @table @option
15823 @item h1/x1hdeblock
15824 Experimental horizontal deblocking filter
15825
15826 @item v1/x1vdeblock
15827 Experimental vertical deblocking filter
15828
15829 @item dr/dering
15830 Deringing filter
15831
15832 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
15833 @table @option
15834 @item threshold1
15835 larger -> stronger filtering
15836 @item threshold2
15837 larger -> stronger filtering
15838 @item threshold3
15839 larger -> stronger filtering
15840 @end table
15841
15842 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15843 @table @option
15844 @item f/fullyrange
15845 Stretch luminance to @code{0-255}.
15846 @end table
15847
15848 @item lb/linblenddeint
15849 Linear blend deinterlacing filter that deinterlaces the given block by
15850 filtering all lines with a @code{(1 2 1)} filter.
15851
15852 @item li/linipoldeint
15853 Linear interpolating deinterlacing filter that deinterlaces the given block by
15854 linearly interpolating every second line.
15855
15856 @item ci/cubicipoldeint
15857 Cubic interpolating deinterlacing filter deinterlaces the given block by
15858 cubically interpolating every second line.
15859
15860 @item md/mediandeint
15861 Median deinterlacing filter that deinterlaces the given block by applying a
15862 median filter to every second line.
15863
15864 @item fd/ffmpegdeint
15865 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
15866 second line with a @code{(-1 4 2 4 -1)} filter.
15867
15868 @item l5/lowpass5
15869 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
15870 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
15871
15872 @item fq/forceQuant[|quantizer]
15873 Overrides the quantizer table from the input with the constant quantizer you
15874 specify.
15875 @table @option
15876 @item quantizer
15877 Quantizer to use
15878 @end table
15879
15880 @item de/default
15881 Default pp filter combination (@code{hb|a,vb|a,dr|a})
15882
15883 @item fa/fast
15884 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
15885
15886 @item ac
15887 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
15888 @end table
15889
15890 @subsection Examples
15891
15892 @itemize
15893 @item
15894 Apply horizontal and vertical deblocking, deringing and automatic
15895 brightness/contrast:
15896 @example
15897 pp=hb/vb/dr/al
15898 @end example
15899
15900 @item
15901 Apply default filters without brightness/contrast correction:
15902 @example
15903 pp=de/-al
15904 @end example
15905
15906 @item
15907 Apply default filters and temporal denoiser:
15908 @example
15909 pp=default/tmpnoise|1|2|3
15910 @end example
15911
15912 @item
15913 Apply deblocking on luminance only, and switch vertical deblocking on or off
15914 automatically depending on available CPU time:
15915 @example
15916 pp=hb|y/vb|a
15917 @end example
15918 @end itemize
15919
15920 @section pp7
15921 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
15922 similar to spp = 6 with 7 point DCT, where only the center sample is
15923 used after IDCT.
15924
15925 The filter accepts the following options:
15926
15927 @table @option
15928 @item qp
15929 Force a constant quantization parameter. It accepts an integer in range
15930 0 to 63. If not set, the filter will use the QP from the video stream
15931 (if available).
15932
15933 @item mode
15934 Set thresholding mode. Available modes are:
15935
15936 @table @samp
15937 @item hard
15938 Set hard thresholding.
15939 @item soft
15940 Set soft thresholding (better de-ringing effect, but likely blurrier).
15941 @item medium
15942 Set medium thresholding (good results, default).
15943 @end table
15944 @end table
15945
15946 @section premultiply
15947 Apply alpha premultiply effect to input video stream using first plane
15948 of second stream as alpha.
15949
15950 Both streams must have same dimensions and same pixel format.
15951
15952 The filter accepts the following option:
15953
15954 @table @option
15955 @item planes
15956 Set which planes will be processed, unprocessed planes will be copied.
15957 By default value 0xf, all planes will be processed.
15958
15959 @item inplace
15960 Do not require 2nd input for processing, instead use alpha plane from input stream.
15961 @end table
15962
15963 @section prewitt
15964 Apply prewitt operator to input video stream.
15965
15966 The filter accepts the following option:
15967
15968 @table @option
15969 @item planes
15970 Set which planes will be processed, unprocessed planes will be copied.
15971 By default value 0xf, all planes will be processed.
15972
15973 @item scale
15974 Set value which will be multiplied with filtered result.
15975
15976 @item delta
15977 Set value which will be added to filtered result.
15978 @end table
15979
15980 @subsection Commands
15981
15982 This filter supports the all above options as @ref{commands}.
15983
15984 @section pseudocolor
15985
15986 Alter frame colors in video with pseudocolors.
15987
15988 This filter accepts the following options:
15989
15990 @table @option
15991 @item c0
15992 set pixel first component expression
15993
15994 @item c1
15995 set pixel second component expression
15996
15997 @item c2
15998 set pixel third component expression
15999
16000 @item c3
16001 set pixel fourth component expression, corresponds to the alpha component
16002
16003 @item i
16004 set component to use as base for altering colors
16005 @end table
16006
16007 Each of them specifies the expression to use for computing the lookup table for
16008 the corresponding pixel component values.
16009
16010 The expressions can contain the following constants and functions:
16011
16012 @table @option
16013 @item w
16014 @item h
16015 The input width and height.
16016
16017 @item val
16018 The input value for the pixel component.
16019
16020 @item ymin, umin, vmin, amin
16021 The minimum allowed component value.
16022
16023 @item ymax, umax, vmax, amax
16024 The maximum allowed component value.
16025 @end table
16026
16027 All expressions default to "val".
16028
16029 @subsection Examples
16030
16031 @itemize
16032 @item
16033 Change too high luma values to gradient:
16034 @example
16035 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'"
16036 @end example
16037 @end itemize
16038
16039 @section psnr
16040
16041 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
16042 Ratio) between two input videos.
16043
16044 This filter takes in input two input videos, the first input is
16045 considered the "main" source and is passed unchanged to the
16046 output. The second input is used as a "reference" video for computing
16047 the PSNR.
16048
16049 Both video inputs must have the same resolution and pixel format for
16050 this filter to work correctly. Also it assumes that both inputs
16051 have the same number of frames, which are compared one by one.
16052
16053 The obtained average PSNR is printed through the logging system.
16054
16055 The filter stores the accumulated MSE (mean squared error) of each
16056 frame, and at the end of the processing it is averaged across all frames
16057 equally, and the following formula is applied to obtain the PSNR:
16058
16059 @example
16060 PSNR = 10*log10(MAX^2/MSE)
16061 @end example
16062
16063 Where MAX is the average of the maximum values of each component of the
16064 image.
16065
16066 The description of the accepted parameters follows.
16067
16068 @table @option
16069 @item stats_file, f
16070 If specified the filter will use the named file to save the PSNR of
16071 each individual frame. When filename equals "-" the data is sent to
16072 standard output.
16073
16074 @item stats_version
16075 Specifies which version of the stats file format to use. Details of
16076 each format are written below.
16077 Default value is 1.
16078
16079 @item stats_add_max
16080 Determines whether the max value is output to the stats log.
16081 Default value is 0.
16082 Requires stats_version >= 2. If this is set and stats_version < 2,
16083 the filter will return an error.
16084 @end table
16085
16086 This filter also supports the @ref{framesync} options.
16087
16088 The file printed if @var{stats_file} is selected, contains a sequence of
16089 key/value pairs of the form @var{key}:@var{value} for each compared
16090 couple of frames.
16091
16092 If a @var{stats_version} greater than 1 is specified, a header line precedes
16093 the list of per-frame-pair stats, with key value pairs following the frame
16094 format with the following parameters:
16095
16096 @table @option
16097 @item psnr_log_version
16098 The version of the log file format. Will match @var{stats_version}.
16099
16100 @item fields
16101 A comma separated list of the per-frame-pair parameters included in
16102 the log.
16103 @end table
16104
16105 A description of each shown per-frame-pair parameter follows:
16106
16107 @table @option
16108 @item n
16109 sequential number of the input frame, starting from 1
16110
16111 @item mse_avg
16112 Mean Square Error pixel-by-pixel average difference of the compared
16113 frames, averaged over all the image components.
16114
16115 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
16116 Mean Square Error pixel-by-pixel average difference of the compared
16117 frames for the component specified by the suffix.
16118
16119 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
16120 Peak Signal to Noise ratio of the compared frames for the component
16121 specified by the suffix.
16122
16123 @item max_avg, max_y, max_u, max_v
16124 Maximum allowed value for each channel, and average over all
16125 channels.
16126 @end table
16127
16128 @subsection Examples
16129 @itemize
16130 @item
16131 For example:
16132 @example
16133 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16134 [main][ref] psnr="stats_file=stats.log" [out]
16135 @end example
16136
16137 On this example the input file being processed is compared with the
16138 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
16139 is stored in @file{stats.log}.
16140
16141 @item
16142 Another example with different containers:
16143 @example
16144 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 -
16145 @end example
16146 @end itemize
16147
16148 @anchor{pullup}
16149 @section pullup
16150
16151 Pulldown reversal (inverse telecine) filter, capable of handling mixed
16152 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
16153 content.
16154
16155 The pullup filter is designed to take advantage of future context in making
16156 its decisions. This filter is stateless in the sense that it does not lock
16157 onto a pattern to follow, but it instead looks forward to the following
16158 fields in order to identify matches and rebuild progressive frames.
16159
16160 To produce content with an even framerate, insert the fps filter after
16161 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
16162 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
16163
16164 The filter accepts the following options:
16165
16166 @table @option
16167 @item jl
16168 @item jr
16169 @item jt
16170 @item jb
16171 These options set the amount of "junk" to ignore at the left, right, top, and
16172 bottom of the image, respectively. Left and right are in units of 8 pixels,
16173 while top and bottom are in units of 2 lines.
16174 The default is 8 pixels on each side.
16175
16176 @item sb
16177 Set the strict breaks. Setting this option to 1 will reduce the chances of
16178 filter generating an occasional mismatched frame, but it may also cause an
16179 excessive number of frames to be dropped during high motion sequences.
16180 Conversely, setting it to -1 will make filter match fields more easily.
16181 This may help processing of video where there is slight blurring between
16182 the fields, but may also cause there to be interlaced frames in the output.
16183 Default value is @code{0}.
16184
16185 @item mp
16186 Set the metric plane to use. It accepts the following values:
16187 @table @samp
16188 @item l
16189 Use luma plane.
16190
16191 @item u
16192 Use chroma blue plane.
16193
16194 @item v
16195 Use chroma red plane.
16196 @end table
16197
16198 This option may be set to use chroma plane instead of the default luma plane
16199 for doing filter's computations. This may improve accuracy on very clean
16200 source material, but more likely will decrease accuracy, especially if there
16201 is chroma noise (rainbow effect) or any grayscale video.
16202 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
16203 load and make pullup usable in realtime on slow machines.
16204 @end table
16205
16206 For best results (without duplicated frames in the output file) it is
16207 necessary to change the output frame rate. For example, to inverse
16208 telecine NTSC input:
16209 @example
16210 ffmpeg -i input -vf pullup -r 24000/1001 ...
16211 @end example
16212
16213 @section qp
16214
16215 Change video quantization parameters (QP).
16216
16217 The filter accepts the following option:
16218
16219 @table @option
16220 @item qp
16221 Set expression for quantization parameter.
16222 @end table
16223
16224 The expression is evaluated through the eval API and can contain, among others,
16225 the following constants:
16226
16227 @table @var
16228 @item known
16229 1 if index is not 129, 0 otherwise.
16230
16231 @item qp
16232 Sequential index starting from -129 to 128.
16233 @end table
16234
16235 @subsection Examples
16236
16237 @itemize
16238 @item
16239 Some equation like:
16240 @example
16241 qp=2+2*sin(PI*qp)
16242 @end example
16243 @end itemize
16244
16245 @section random
16246
16247 Flush video frames from internal cache of frames into a random order.
16248 No frame is discarded.
16249 Inspired by @ref{frei0r} nervous filter.
16250
16251 @table @option
16252 @item frames
16253 Set size in number of frames of internal cache, in range from @code{2} to
16254 @code{512}. Default is @code{30}.
16255
16256 @item seed
16257 Set seed for random number generator, must be an integer included between
16258 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16259 less than @code{0}, the filter will try to use a good random seed on a
16260 best effort basis.
16261 @end table
16262
16263 @section readeia608
16264
16265 Read closed captioning (EIA-608) information from the top lines of a video frame.
16266
16267 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
16268 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
16269 with EIA-608 data (starting from 0). A description of each metadata value follows:
16270
16271 @table @option
16272 @item lavfi.readeia608.X.cc
16273 The two bytes stored as EIA-608 data (printed in hexadecimal).
16274
16275 @item lavfi.readeia608.X.line
16276 The number of the line on which the EIA-608 data was identified and read.
16277 @end table
16278
16279 This filter accepts the following options:
16280
16281 @table @option
16282 @item scan_min
16283 Set the line to start scanning for EIA-608 data. Default is @code{0}.
16284
16285 @item scan_max
16286 Set the line to end scanning for EIA-608 data. Default is @code{29}.
16287
16288 @item spw
16289 Set the ratio of width reserved for sync code detection.
16290 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
16291
16292 @item chp
16293 Enable checking the parity bit. In the event of a parity error, the filter will output
16294 @code{0x00} for that character. Default is false.
16295
16296 @item lp
16297 Lowpass lines prior to further processing. Default is enabled.
16298 @end table
16299
16300 @subsection Commands
16301
16302 This filter supports the all above options as @ref{commands}.
16303
16304 @subsection Examples
16305
16306 @itemize
16307 @item
16308 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
16309 @example
16310 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
16311 @end example
16312 @end itemize
16313
16314 @section readvitc
16315
16316 Read vertical interval timecode (VITC) information from the top lines of a
16317 video frame.
16318
16319 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
16320 timecode value, if a valid timecode has been detected. Further metadata key
16321 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
16322 timecode data has been found or not.
16323
16324 This filter accepts the following options:
16325
16326 @table @option
16327 @item scan_max
16328 Set the maximum number of lines to scan for VITC data. If the value is set to
16329 @code{-1} the full video frame is scanned. Default is @code{45}.
16330
16331 @item thr_b
16332 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
16333 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
16334
16335 @item thr_w
16336 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16337 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16338 @end table
16339
16340 @subsection Examples
16341
16342 @itemize
16343 @item
16344 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16345 draw @code{--:--:--:--} as a placeholder:
16346 @example
16347 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16348 @end example
16349 @end itemize
16350
16351 @section remap
16352
16353 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16354
16355 Destination pixel at position (X, Y) will be picked from source (x, y) position
16356 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16357 value for pixel will be used for destination pixel.
16358
16359 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16360 will have Xmap/Ymap video stream dimensions.
16361 Xmap and Ymap input video streams are 16bit depth, single channel.
16362
16363 @table @option
16364 @item format
16365 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16366 Default is @code{color}.
16367
16368 @item fill
16369 Specify the color of the unmapped pixels. For the syntax of this option,
16370 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16371 manual,ffmpeg-utils}. Default color is @code{black}.
16372 @end table
16373
16374 @section removegrain
16375
16376 The removegrain filter is a spatial denoiser for progressive video.
16377
16378 @table @option
16379 @item m0
16380 Set mode for the first plane.
16381
16382 @item m1
16383 Set mode for the second plane.
16384
16385 @item m2
16386 Set mode for the third plane.
16387
16388 @item m3
16389 Set mode for the fourth plane.
16390 @end table
16391
16392 Range of mode is from 0 to 24. Description of each mode follows:
16393
16394 @table @var
16395 @item 0
16396 Leave input plane unchanged. Default.
16397
16398 @item 1
16399 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16400
16401 @item 2
16402 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16403
16404 @item 3
16405 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16406
16407 @item 4
16408 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
16409 This is equivalent to a median filter.
16410
16411 @item 5
16412 Line-sensitive clipping giving the minimal change.
16413
16414 @item 6
16415 Line-sensitive clipping, intermediate.
16416
16417 @item 7
16418 Line-sensitive clipping, intermediate.
16419
16420 @item 8
16421 Line-sensitive clipping, intermediate.
16422
16423 @item 9
16424 Line-sensitive clipping on a line where the neighbours pixels are the closest.
16425
16426 @item 10
16427 Replaces the target pixel with the closest neighbour.
16428
16429 @item 11
16430 [1 2 1] horizontal and vertical kernel blur.
16431
16432 @item 12
16433 Same as mode 11.
16434
16435 @item 13
16436 Bob mode, interpolates top field from the line where the neighbours
16437 pixels are the closest.
16438
16439 @item 14
16440 Bob mode, interpolates bottom field from the line where the neighbours
16441 pixels are the closest.
16442
16443 @item 15
16444 Bob mode, interpolates top field. Same as 13 but with a more complicated
16445 interpolation formula.
16446
16447 @item 16
16448 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
16449 interpolation formula.
16450
16451 @item 17
16452 Clips the pixel with the minimum and maximum of respectively the maximum and
16453 minimum of each pair of opposite neighbour pixels.
16454
16455 @item 18
16456 Line-sensitive clipping using opposite neighbours whose greatest distance from
16457 the current pixel is minimal.
16458
16459 @item 19
16460 Replaces the pixel with the average of its 8 neighbours.
16461
16462 @item 20
16463 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
16464
16465 @item 21
16466 Clips pixels using the averages of opposite neighbour.
16467
16468 @item 22
16469 Same as mode 21 but simpler and faster.
16470
16471 @item 23
16472 Small edge and halo removal, but reputed useless.
16473
16474 @item 24
16475 Similar as 23.
16476 @end table
16477
16478 @section removelogo
16479
16480 Suppress a TV station logo, using an image file to determine which
16481 pixels comprise the logo. It works by filling in the pixels that
16482 comprise the logo with neighboring pixels.
16483
16484 The filter accepts the following options:
16485
16486 @table @option
16487 @item filename, f
16488 Set the filter bitmap file, which can be any image format supported by
16489 libavformat. The width and height of the image file must match those of the
16490 video stream being processed.
16491 @end table
16492
16493 Pixels in the provided bitmap image with a value of zero are not
16494 considered part of the logo, non-zero pixels are considered part of
16495 the logo. If you use white (255) for the logo and black (0) for the
16496 rest, you will be safe. For making the filter bitmap, it is
16497 recommended to take a screen capture of a black frame with the logo
16498 visible, and then using a threshold filter followed by the erode
16499 filter once or twice.
16500
16501 If needed, little splotches can be fixed manually. Remember that if
16502 logo pixels are not covered, the filter quality will be much
16503 reduced. Marking too many pixels as part of the logo does not hurt as
16504 much, but it will increase the amount of blurring needed to cover over
16505 the image and will destroy more information than necessary, and extra
16506 pixels will slow things down on a large logo.
16507
16508 @section repeatfields
16509
16510 This filter uses the repeat_field flag from the Video ES headers and hard repeats
16511 fields based on its value.
16512
16513 @section reverse
16514
16515 Reverse a video clip.
16516
16517 Warning: This filter requires memory to buffer the entire clip, so trimming
16518 is suggested.
16519
16520 @subsection Examples
16521
16522 @itemize
16523 @item
16524 Take the first 5 seconds of a clip, and reverse it.
16525 @example
16526 trim=end=5,reverse
16527 @end example
16528 @end itemize
16529
16530 @section rgbashift
16531 Shift R/G/B/A pixels horizontally and/or vertically.
16532
16533 The filter accepts the following options:
16534 @table @option
16535 @item rh
16536 Set amount to shift red horizontally.
16537 @item rv
16538 Set amount to shift red vertically.
16539 @item gh
16540 Set amount to shift green horizontally.
16541 @item gv
16542 Set amount to shift green vertically.
16543 @item bh
16544 Set amount to shift blue horizontally.
16545 @item bv
16546 Set amount to shift blue vertically.
16547 @item ah
16548 Set amount to shift alpha horizontally.
16549 @item av
16550 Set amount to shift alpha vertically.
16551 @item edge
16552 Set edge mode, can be @var{smear}, default, or @var{warp}.
16553 @end table
16554
16555 @subsection Commands
16556
16557 This filter supports the all above options as @ref{commands}.
16558
16559 @section roberts
16560 Apply roberts cross operator to input video stream.
16561
16562 The filter accepts the following option:
16563
16564 @table @option
16565 @item planes
16566 Set which planes will be processed, unprocessed planes will be copied.
16567 By default value 0xf, all planes will be processed.
16568
16569 @item scale
16570 Set value which will be multiplied with filtered result.
16571
16572 @item delta
16573 Set value which will be added to filtered result.
16574 @end table
16575
16576 @subsection Commands
16577
16578 This filter supports the all above options as @ref{commands}.
16579
16580 @section rotate
16581
16582 Rotate video by an arbitrary angle expressed in radians.
16583
16584 The filter accepts the following options:
16585
16586 A description of the optional parameters follows.
16587 @table @option
16588 @item angle, a
16589 Set an expression for the angle by which to rotate the input video
16590 clockwise, expressed as a number of radians. A negative value will
16591 result in a counter-clockwise rotation. By default it is set to "0".
16592
16593 This expression is evaluated for each frame.
16594
16595 @item out_w, ow
16596 Set the output width expression, default value is "iw".
16597 This expression is evaluated just once during configuration.
16598
16599 @item out_h, oh
16600 Set the output height expression, default value is "ih".
16601 This expression is evaluated just once during configuration.
16602
16603 @item bilinear
16604 Enable bilinear interpolation if set to 1, a value of 0 disables
16605 it. Default value is 1.
16606
16607 @item fillcolor, c
16608 Set the color used to fill the output area not covered by the rotated
16609 image. For the general syntax of this option, check the
16610 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16611 If the special value "none" is selected then no
16612 background is printed (useful for example if the background is never shown).
16613
16614 Default value is "black".
16615 @end table
16616
16617 The expressions for the angle and the output size can contain the
16618 following constants and functions:
16619
16620 @table @option
16621 @item n
16622 sequential number of the input frame, starting from 0. It is always NAN
16623 before the first frame is filtered.
16624
16625 @item t
16626 time in seconds of the input frame, it is set to 0 when the filter is
16627 configured. It is always NAN before the first frame is filtered.
16628
16629 @item hsub
16630 @item vsub
16631 horizontal and vertical chroma subsample values. For example for the
16632 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16633
16634 @item in_w, iw
16635 @item in_h, ih
16636 the input video width and height
16637
16638 @item out_w, ow
16639 @item out_h, oh
16640 the output width and height, that is the size of the padded area as
16641 specified by the @var{width} and @var{height} expressions
16642
16643 @item rotw(a)
16644 @item roth(a)
16645 the minimal width/height required for completely containing the input
16646 video rotated by @var{a} radians.
16647
16648 These are only available when computing the @option{out_w} and
16649 @option{out_h} expressions.
16650 @end table
16651
16652 @subsection Examples
16653
16654 @itemize
16655 @item
16656 Rotate the input by PI/6 radians clockwise:
16657 @example
16658 rotate=PI/6
16659 @end example
16660
16661 @item
16662 Rotate the input by PI/6 radians counter-clockwise:
16663 @example
16664 rotate=-PI/6
16665 @end example
16666
16667 @item
16668 Rotate the input by 45 degrees clockwise:
16669 @example
16670 rotate=45*PI/180
16671 @end example
16672
16673 @item
16674 Apply a constant rotation with period T, starting from an angle of PI/3:
16675 @example
16676 rotate=PI/3+2*PI*t/T
16677 @end example
16678
16679 @item
16680 Make the input video rotation oscillating with a period of T
16681 seconds and an amplitude of A radians:
16682 @example
16683 rotate=A*sin(2*PI/T*t)
16684 @end example
16685
16686 @item
16687 Rotate the video, output size is chosen so that the whole rotating
16688 input video is always completely contained in the output:
16689 @example
16690 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
16691 @end example
16692
16693 @item
16694 Rotate the video, reduce the output size so that no background is ever
16695 shown:
16696 @example
16697 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
16698 @end example
16699 @end itemize
16700
16701 @subsection Commands
16702
16703 The filter supports the following commands:
16704
16705 @table @option
16706 @item a, angle
16707 Set the angle expression.
16708 The command accepts the same syntax of the corresponding option.
16709
16710 If the specified expression is not valid, it is kept at its current
16711 value.
16712 @end table
16713
16714 @section sab
16715
16716 Apply Shape Adaptive Blur.
16717
16718 The filter accepts the following options:
16719
16720 @table @option
16721 @item luma_radius, lr
16722 Set luma blur filter strength, must be a value in range 0.1-4.0, default
16723 value is 1.0. A greater value will result in a more blurred image, and
16724 in slower processing.
16725
16726 @item luma_pre_filter_radius, lpfr
16727 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
16728 value is 1.0.
16729
16730 @item luma_strength, ls
16731 Set luma maximum difference between pixels to still be considered, must
16732 be a value in the 0.1-100.0 range, default value is 1.0.
16733
16734 @item chroma_radius, cr
16735 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
16736 greater value will result in a more blurred image, and in slower
16737 processing.
16738
16739 @item chroma_pre_filter_radius, cpfr
16740 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
16741
16742 @item chroma_strength, cs
16743 Set chroma maximum difference between pixels to still be considered,
16744 must be a value in the -0.9-100.0 range.
16745 @end table
16746
16747 Each chroma option value, if not explicitly specified, is set to the
16748 corresponding luma option value.
16749
16750 @anchor{scale}
16751 @section scale
16752
16753 Scale (resize) the input video, using the libswscale library.
16754
16755 The scale filter forces the output display aspect ratio to be the same
16756 of the input, by changing the output sample aspect ratio.
16757
16758 If the input image format is different from the format requested by
16759 the next filter, the scale filter will convert the input to the
16760 requested format.
16761
16762 @subsection Options
16763 The filter accepts the following options, or any of the options
16764 supported by the libswscale scaler.
16765
16766 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
16767 the complete list of scaler options.
16768
16769 @table @option
16770 @item width, w
16771 @item height, h
16772 Set the output video dimension expression. Default value is the input
16773 dimension.
16774
16775 If the @var{width} or @var{w} value is 0, the input width is used for
16776 the output. If the @var{height} or @var{h} value is 0, the input height
16777 is used for the output.
16778
16779 If one and only one of the values is -n with n >= 1, the scale filter
16780 will use a value that maintains the aspect ratio of the input image,
16781 calculated from the other specified dimension. After that it will,
16782 however, make sure that the calculated dimension is divisible by n and
16783 adjust the value if necessary.
16784
16785 If both values are -n with n >= 1, the behavior will be identical to
16786 both values being set to 0 as previously detailed.
16787
16788 See below for the list of accepted constants for use in the dimension
16789 expression.
16790
16791 @item eval
16792 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
16793
16794 @table @samp
16795 @item init
16796 Only evaluate expressions once during the filter initialization or when a command is processed.
16797
16798 @item frame
16799 Evaluate expressions for each incoming frame.
16800
16801 @end table
16802
16803 Default value is @samp{init}.
16804
16805
16806 @item interl
16807 Set the interlacing mode. It accepts the following values:
16808
16809 @table @samp
16810 @item 1
16811 Force interlaced aware scaling.
16812
16813 @item 0
16814 Do not apply interlaced scaling.
16815
16816 @item -1
16817 Select interlaced aware scaling depending on whether the source frames
16818 are flagged as interlaced or not.
16819 @end table
16820
16821 Default value is @samp{0}.
16822
16823 @item flags
16824 Set libswscale scaling flags. See
16825 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16826 complete list of values. If not explicitly specified the filter applies
16827 the default flags.
16828
16829
16830 @item param0, param1
16831 Set libswscale input parameters for scaling algorithms that need them. See
16832 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16833 complete documentation. If not explicitly specified the filter applies
16834 empty parameters.
16835
16836
16837
16838 @item size, s
16839 Set the video size. For the syntax of this option, check the
16840 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16841
16842 @item in_color_matrix
16843 @item out_color_matrix
16844 Set in/output YCbCr color space type.
16845
16846 This allows the autodetected value to be overridden as well as allows forcing
16847 a specific value used for the output and encoder.
16848
16849 If not specified, the color space type depends on the pixel format.
16850
16851 Possible values:
16852
16853 @table @samp
16854 @item auto
16855 Choose automatically.
16856
16857 @item bt709
16858 Format conforming to International Telecommunication Union (ITU)
16859 Recommendation BT.709.
16860
16861 @item fcc
16862 Set color space conforming to the United States Federal Communications
16863 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16864
16865 @item bt601
16866 @item bt470
16867 @item smpte170m
16868 Set color space conforming to:
16869
16870 @itemize
16871 @item
16872 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16873
16874 @item
16875 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16876
16877 @item
16878 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16879
16880 @end itemize
16881
16882 @item smpte240m
16883 Set color space conforming to SMPTE ST 240:1999.
16884
16885 @item bt2020
16886 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16887 @end table
16888
16889 @item in_range
16890 @item out_range
16891 Set in/output YCbCr sample range.
16892
16893 This allows the autodetected value to be overridden as well as allows forcing
16894 a specific value used for the output and encoder. If not specified, the
16895 range depends on the pixel format. Possible values:
16896
16897 @table @samp
16898 @item auto/unknown
16899 Choose automatically.
16900
16901 @item jpeg/full/pc
16902 Set full range (0-255 in case of 8-bit luma).
16903
16904 @item mpeg/limited/tv
16905 Set "MPEG" range (16-235 in case of 8-bit luma).
16906 @end table
16907
16908 @item force_original_aspect_ratio
16909 Enable decreasing or increasing output video width or height if necessary to
16910 keep the original aspect ratio. Possible values:
16911
16912 @table @samp
16913 @item disable
16914 Scale the video as specified and disable this feature.
16915
16916 @item decrease
16917 The output video dimensions will automatically be decreased if needed.
16918
16919 @item increase
16920 The output video dimensions will automatically be increased if needed.
16921
16922 @end table
16923
16924 One useful instance of this option is that when you know a specific device's
16925 maximum allowed resolution, you can use this to limit the output video to
16926 that, while retaining the aspect ratio. For example, device A allows
16927 1280x720 playback, and your video is 1920x800. Using this option (set it to
16928 decrease) and specifying 1280x720 to the command line makes the output
16929 1280x533.
16930
16931 Please note that this is a different thing than specifying -1 for @option{w}
16932 or @option{h}, you still need to specify the output resolution for this option
16933 to work.
16934
16935 @item force_divisible_by
16936 Ensures that both the output dimensions, width and height, are divisible by the
16937 given integer when used together with @option{force_original_aspect_ratio}. This
16938 works similar to using @code{-n} in the @option{w} and @option{h} options.
16939
16940 This option respects the value set for @option{force_original_aspect_ratio},
16941 increasing or decreasing the resolution accordingly. The video's aspect ratio
16942 may be slightly modified.
16943
16944 This option can be handy if you need to have a video fit within or exceed
16945 a defined resolution using @option{force_original_aspect_ratio} but also have
16946 encoder restrictions on width or height divisibility.
16947
16948 @end table
16949
16950 The values of the @option{w} and @option{h} options are expressions
16951 containing the following constants:
16952
16953 @table @var
16954 @item in_w
16955 @item in_h
16956 The input width and height
16957
16958 @item iw
16959 @item ih
16960 These are the same as @var{in_w} and @var{in_h}.
16961
16962 @item out_w
16963 @item out_h
16964 The output (scaled) width and height
16965
16966 @item ow
16967 @item oh
16968 These are the same as @var{out_w} and @var{out_h}
16969
16970 @item a
16971 The same as @var{iw} / @var{ih}
16972
16973 @item sar
16974 input sample aspect ratio
16975
16976 @item dar
16977 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16978
16979 @item hsub
16980 @item vsub
16981 horizontal and vertical input chroma subsample values. For example for the
16982 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16983
16984 @item ohsub
16985 @item ovsub
16986 horizontal and vertical output chroma subsample values. For example for the
16987 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16988
16989 @item n
16990 The (sequential) number of the input frame, starting from 0.
16991 Only available with @code{eval=frame}.
16992
16993 @item t
16994 The presentation timestamp of the input frame, expressed as a number of
16995 seconds. Only available with @code{eval=frame}.
16996
16997 @item pos
16998 The position (byte offset) of the frame in the input stream, or NaN if
16999 this information is unavailable and/or meaningless (for example in case of synthetic video).
17000 Only available with @code{eval=frame}.
17001 @end table
17002
17003 @subsection Examples
17004
17005 @itemize
17006 @item
17007 Scale the input video to a size of 200x100
17008 @example
17009 scale=w=200:h=100
17010 @end example
17011
17012 This is equivalent to:
17013 @example
17014 scale=200:100
17015 @end example
17016
17017 or:
17018 @example
17019 scale=200x100
17020 @end example
17021
17022 @item
17023 Specify a size abbreviation for the output size:
17024 @example
17025 scale=qcif
17026 @end example
17027
17028 which can also be written as:
17029 @example
17030 scale=size=qcif
17031 @end example
17032
17033 @item
17034 Scale the input to 2x:
17035 @example
17036 scale=w=2*iw:h=2*ih
17037 @end example
17038
17039 @item
17040 The above is the same as:
17041 @example
17042 scale=2*in_w:2*in_h
17043 @end example
17044
17045 @item
17046 Scale the input to 2x with forced interlaced scaling:
17047 @example
17048 scale=2*iw:2*ih:interl=1
17049 @end example
17050
17051 @item
17052 Scale the input to half size:
17053 @example
17054 scale=w=iw/2:h=ih/2
17055 @end example
17056
17057 @item
17058 Increase the width, and set the height to the same size:
17059 @example
17060 scale=3/2*iw:ow
17061 @end example
17062
17063 @item
17064 Seek Greek harmony:
17065 @example
17066 scale=iw:1/PHI*iw
17067 scale=ih*PHI:ih
17068 @end example
17069
17070 @item
17071 Increase the height, and set the width to 3/2 of the height:
17072 @example
17073 scale=w=3/2*oh:h=3/5*ih
17074 @end example
17075
17076 @item
17077 Increase the size, making the size a multiple of the chroma
17078 subsample values:
17079 @example
17080 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
17081 @end example
17082
17083 @item
17084 Increase the width to a maximum of 500 pixels,
17085 keeping the same aspect ratio as the input:
17086 @example
17087 scale=w='min(500\, iw*3/2):h=-1'
17088 @end example
17089
17090 @item
17091 Make pixels square by combining scale and setsar:
17092 @example
17093 scale='trunc(ih*dar):ih',setsar=1/1
17094 @end example
17095
17096 @item
17097 Make pixels square by combining scale and setsar,
17098 making sure the resulting resolution is even (required by some codecs):
17099 @example
17100 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
17101 @end example
17102 @end itemize
17103
17104 @subsection Commands
17105
17106 This filter supports the following commands:
17107 @table @option
17108 @item width, w
17109 @item height, h
17110 Set the output video dimension expression.
17111 The command accepts the same syntax of the corresponding option.
17112
17113 If the specified expression is not valid, it is kept at its current
17114 value.
17115 @end table
17116
17117 @section scale_npp
17118
17119 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
17120 format conversion on CUDA video frames. Setting the output width and height
17121 works in the same way as for the @var{scale} filter.
17122
17123 The following additional options are accepted:
17124 @table @option
17125 @item format
17126 The pixel format of the output CUDA frames. If set to the string "same" (the
17127 default), the input format will be kept. Note that automatic format negotiation
17128 and conversion is not yet supported for hardware frames
17129
17130 @item interp_algo
17131 The interpolation algorithm used for resizing. One of the following:
17132 @table @option
17133 @item nn
17134 Nearest neighbour.
17135
17136 @item linear
17137 @item cubic
17138 @item cubic2p_bspline
17139 2-parameter cubic (B=1, C=0)
17140
17141 @item cubic2p_catmullrom
17142 2-parameter cubic (B=0, C=1/2)
17143
17144 @item cubic2p_b05c03
17145 2-parameter cubic (B=1/2, C=3/10)
17146
17147 @item super
17148 Supersampling
17149
17150 @item lanczos
17151 @end table
17152
17153 @item force_original_aspect_ratio
17154 Enable decreasing or increasing output video width or height if necessary to
17155 keep the original aspect ratio. Possible values:
17156
17157 @table @samp
17158 @item disable
17159 Scale the video as specified and disable this feature.
17160
17161 @item decrease
17162 The output video dimensions will automatically be decreased if needed.
17163
17164 @item increase
17165 The output video dimensions will automatically be increased if needed.
17166
17167 @end table
17168
17169 One useful instance of this option is that when you know a specific device's
17170 maximum allowed resolution, you can use this to limit the output video to
17171 that, while retaining the aspect ratio. For example, device A allows
17172 1280x720 playback, and your video is 1920x800. Using this option (set it to
17173 decrease) and specifying 1280x720 to the command line makes the output
17174 1280x533.
17175
17176 Please note that this is a different thing than specifying -1 for @option{w}
17177 or @option{h}, you still need to specify the output resolution for this option
17178 to work.
17179
17180 @item force_divisible_by
17181 Ensures that both the output dimensions, width and height, are divisible by the
17182 given integer when used together with @option{force_original_aspect_ratio}. This
17183 works similar to using @code{-n} in the @option{w} and @option{h} options.
17184
17185 This option respects the value set for @option{force_original_aspect_ratio},
17186 increasing or decreasing the resolution accordingly. The video's aspect ratio
17187 may be slightly modified.
17188
17189 This option can be handy if you need to have a video fit within or exceed
17190 a defined resolution using @option{force_original_aspect_ratio} but also have
17191 encoder restrictions on width or height divisibility.
17192
17193 @end table
17194
17195 @section scale2ref
17196
17197 Scale (resize) the input video, based on a reference video.
17198
17199 See the scale filter for available options, scale2ref supports the same but
17200 uses the reference video instead of the main input as basis. scale2ref also
17201 supports the following additional constants for the @option{w} and
17202 @option{h} options:
17203
17204 @table @var
17205 @item main_w
17206 @item main_h
17207 The main input video's width and height
17208
17209 @item main_a
17210 The same as @var{main_w} / @var{main_h}
17211
17212 @item main_sar
17213 The main input video's sample aspect ratio
17214
17215 @item main_dar, mdar
17216 The main input video's display aspect ratio. Calculated from
17217 @code{(main_w / main_h) * main_sar}.
17218
17219 @item main_hsub
17220 @item main_vsub
17221 The main input video's horizontal and vertical chroma subsample values.
17222 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
17223 is 1.
17224
17225 @item main_n
17226 The (sequential) number of the main input frame, starting from 0.
17227 Only available with @code{eval=frame}.
17228
17229 @item main_t
17230 The presentation timestamp of the main input frame, expressed as a number of
17231 seconds. Only available with @code{eval=frame}.
17232
17233 @item main_pos
17234 The position (byte offset) of the frame in the main input stream, or NaN if
17235 this information is unavailable and/or meaningless (for example in case of synthetic video).
17236 Only available with @code{eval=frame}.
17237 @end table
17238
17239 @subsection Examples
17240
17241 @itemize
17242 @item
17243 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
17244 @example
17245 'scale2ref[b][a];[a][b]overlay'
17246 @end example
17247
17248 @item
17249 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
17250 @example
17251 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
17252 @end example
17253 @end itemize
17254
17255 @subsection Commands
17256
17257 This filter supports the following commands:
17258 @table @option
17259 @item width, w
17260 @item height, h
17261 Set the output video dimension expression.
17262 The command accepts the same syntax of the corresponding option.
17263
17264 If the specified expression is not valid, it is kept at its current
17265 value.
17266 @end table
17267
17268 @section scroll
17269 Scroll input video horizontally and/or vertically by constant speed.
17270
17271 The filter accepts the following options:
17272 @table @option
17273 @item horizontal, h
17274 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
17275 Negative values changes scrolling direction.
17276
17277 @item vertical, v
17278 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
17279 Negative values changes scrolling direction.
17280
17281 @item hpos
17282 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
17283
17284 @item vpos
17285 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
17286 @end table
17287
17288 @subsection Commands
17289
17290 This filter supports the following @ref{commands}:
17291 @table @option
17292 @item horizontal, h
17293 Set the horizontal scrolling speed.
17294 @item vertical, v
17295 Set the vertical scrolling speed.
17296 @end table
17297
17298 @anchor{scdet}
17299 @section scdet
17300
17301 Detect video scene change.
17302
17303 This filter sets frame metadata with mafd between frame, the scene score, and
17304 forward the frame to the next filter, so they can use these metadata to detect
17305 scene change or others.
17306
17307 In addition, this filter logs a message and sets frame metadata when it detects
17308 a scene change by @option{threshold}.
17309
17310 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
17311
17312 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
17313 to detect scene change.
17314
17315 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
17316 detect scene change with @option{threshold}.
17317
17318 The filter accepts the following options:
17319
17320 @table @option
17321 @item threshold, t
17322 Set the scene change detection threshold as a percentage of maximum change. Good
17323 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
17324 @code{[0., 100.]}.
17325
17326 Default value is @code{10.}.
17327
17328 @item sc_pass, s
17329 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
17330 You can enable it if you want to get snapshot of scene change frames only.
17331 @end table
17332
17333 @anchor{selectivecolor}
17334 @section selectivecolor
17335
17336 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
17337 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
17338 by the "purity" of the color (that is, how saturated it already is).
17339
17340 This filter is similar to the Adobe Photoshop Selective Color tool.
17341
17342 The filter accepts the following options:
17343
17344 @table @option
17345 @item correction_method
17346 Select color correction method.
17347
17348 Available values are:
17349 @table @samp
17350 @item absolute
17351 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17352 component value).
17353 @item relative
17354 Specified adjustments are relative to the original component value.
17355 @end table
17356 Default is @code{absolute}.
17357 @item reds
17358 Adjustments for red pixels (pixels where the red component is the maximum)
17359 @item yellows
17360 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17361 @item greens
17362 Adjustments for green pixels (pixels where the green component is the maximum)
17363 @item cyans
17364 Adjustments for cyan pixels (pixels where the red component is the minimum)
17365 @item blues
17366 Adjustments for blue pixels (pixels where the blue component is the maximum)
17367 @item magentas
17368 Adjustments for magenta pixels (pixels where the green component is the minimum)
17369 @item whites
17370 Adjustments for white pixels (pixels where all components are greater than 128)
17371 @item neutrals
17372 Adjustments for all pixels except pure black and pure white
17373 @item blacks
17374 Adjustments for black pixels (pixels where all components are lesser than 128)
17375 @item psfile
17376 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17377 @end table
17378
17379 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17380 4 space separated floating point adjustment values in the [-1,1] range,
17381 respectively to adjust the amount of cyan, magenta, yellow and black for the
17382 pixels of its range.
17383
17384 @subsection Examples
17385
17386 @itemize
17387 @item
17388 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17389 increase magenta by 27% in blue areas:
17390 @example
17391 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17392 @end example
17393
17394 @item
17395 Use a Photoshop selective color preset:
17396 @example
17397 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17398 @end example
17399 @end itemize
17400
17401 @anchor{separatefields}
17402 @section separatefields
17403
17404 The @code{separatefields} takes a frame-based video input and splits
17405 each frame into its components fields, producing a new half height clip
17406 with twice the frame rate and twice the frame count.
17407
17408 This filter use field-dominance information in frame to decide which
17409 of each pair of fields to place first in the output.
17410 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
17411
17412 @section setdar, setsar
17413
17414 The @code{setdar} filter sets the Display Aspect Ratio for the filter
17415 output video.
17416
17417 This is done by changing the specified Sample (aka Pixel) Aspect
17418 Ratio, according to the following equation:
17419 @example
17420 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
17421 @end example
17422
17423 Keep in mind that the @code{setdar} filter does not modify the pixel
17424 dimensions of the video frame. Also, the display aspect ratio set by
17425 this filter may be changed by later filters in the filterchain,
17426 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
17427 applied.
17428
17429 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
17430 the filter output video.
17431
17432 Note that as a consequence of the application of this filter, the
17433 output display aspect ratio will change according to the equation
17434 above.
17435
17436 Keep in mind that the sample aspect ratio set by the @code{setsar}
17437 filter may be changed by later filters in the filterchain, e.g. if
17438 another "setsar" or a "setdar" filter is applied.
17439
17440 It accepts the following parameters:
17441
17442 @table @option
17443 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
17444 Set the aspect ratio used by the filter.
17445
17446 The parameter can be a floating point number string, an expression, or
17447 a string of the form @var{num}:@var{den}, where @var{num} and
17448 @var{den} are the numerator and denominator of the aspect ratio. If
17449 the parameter is not specified, it is assumed the value "0".
17450 In case the form "@var{num}:@var{den}" is used, the @code{:} character
17451 should be escaped.
17452
17453 @item max
17454 Set the maximum integer value to use for expressing numerator and
17455 denominator when reducing the expressed aspect ratio to a rational.
17456 Default value is @code{100}.
17457
17458 @end table
17459
17460 The parameter @var{sar} is an expression containing
17461 the following constants:
17462
17463 @table @option
17464 @item E, PI, PHI
17465 These are approximated values for the mathematical constants e
17466 (Euler's number), pi (Greek pi), and phi (the golden ratio).
17467
17468 @item w, h
17469 The input width and height.
17470
17471 @item a
17472 These are the same as @var{w} / @var{h}.
17473
17474 @item sar
17475 The input sample aspect ratio.
17476
17477 @item dar
17478 The input display aspect ratio. It is the same as
17479 (@var{w} / @var{h}) * @var{sar}.
17480
17481 @item hsub, vsub
17482 Horizontal and vertical chroma subsample values. For example, for the
17483 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17484 @end table
17485
17486 @subsection Examples
17487
17488 @itemize
17489
17490 @item
17491 To change the display aspect ratio to 16:9, specify one of the following:
17492 @example
17493 setdar=dar=1.77777
17494 setdar=dar=16/9
17495 @end example
17496
17497 @item
17498 To change the sample aspect ratio to 10:11, specify:
17499 @example
17500 setsar=sar=10/11
17501 @end example
17502
17503 @item
17504 To set a display aspect ratio of 16:9, and specify a maximum integer value of
17505 1000 in the aspect ratio reduction, use the command:
17506 @example
17507 setdar=ratio=16/9:max=1000
17508 @end example
17509
17510 @end itemize
17511
17512 @anchor{setfield}
17513 @section setfield
17514
17515 Force field for the output video frame.
17516
17517 The @code{setfield} filter marks the interlace type field for the
17518 output frames. It does not change the input frame, but only sets the
17519 corresponding property, which affects how the frame is treated by
17520 following filters (e.g. @code{fieldorder} or @code{yadif}).
17521
17522 The filter accepts the following options:
17523
17524 @table @option
17525
17526 @item mode
17527 Available values are:
17528
17529 @table @samp
17530 @item auto
17531 Keep the same field property.
17532
17533 @item bff
17534 Mark the frame as bottom-field-first.
17535
17536 @item tff
17537 Mark the frame as top-field-first.
17538
17539 @item prog
17540 Mark the frame as progressive.
17541 @end table
17542 @end table
17543
17544 @anchor{setparams}
17545 @section setparams
17546
17547 Force frame parameter for the output video frame.
17548
17549 The @code{setparams} filter marks interlace and color range for the
17550 output frames. It does not change the input frame, but only sets the
17551 corresponding property, which affects how the frame is treated by
17552 filters/encoders.
17553
17554 @table @option
17555 @item field_mode
17556 Available values are:
17557
17558 @table @samp
17559 @item auto
17560 Keep the same field property (default).
17561
17562 @item bff
17563 Mark the frame as bottom-field-first.
17564
17565 @item tff
17566 Mark the frame as top-field-first.
17567
17568 @item prog
17569 Mark the frame as progressive.
17570 @end table
17571
17572 @item range
17573 Available values are:
17574
17575 @table @samp
17576 @item auto
17577 Keep the same color range property (default).
17578
17579 @item unspecified, unknown
17580 Mark the frame as unspecified color range.
17581
17582 @item limited, tv, mpeg
17583 Mark the frame as limited range.
17584
17585 @item full, pc, jpeg
17586 Mark the frame as full range.
17587 @end table
17588
17589 @item color_primaries
17590 Set the color primaries.
17591 Available values are:
17592
17593 @table @samp
17594 @item auto
17595 Keep the same color primaries property (default).
17596
17597 @item bt709
17598 @item unknown
17599 @item bt470m
17600 @item bt470bg
17601 @item smpte170m
17602 @item smpte240m
17603 @item film
17604 @item bt2020
17605 @item smpte428
17606 @item smpte431
17607 @item smpte432
17608 @item jedec-p22
17609 @end table
17610
17611 @item color_trc
17612 Set the color transfer.
17613 Available values are:
17614
17615 @table @samp
17616 @item auto
17617 Keep the same color trc property (default).
17618
17619 @item bt709
17620 @item unknown
17621 @item bt470m
17622 @item bt470bg
17623 @item smpte170m
17624 @item smpte240m
17625 @item linear
17626 @item log100
17627 @item log316
17628 @item iec61966-2-4
17629 @item bt1361e
17630 @item iec61966-2-1
17631 @item bt2020-10
17632 @item bt2020-12
17633 @item smpte2084
17634 @item smpte428
17635 @item arib-std-b67
17636 @end table
17637
17638 @item colorspace
17639 Set the colorspace.
17640 Available values are:
17641
17642 @table @samp
17643 @item auto
17644 Keep the same colorspace property (default).
17645
17646 @item gbr
17647 @item bt709
17648 @item unknown
17649 @item fcc
17650 @item bt470bg
17651 @item smpte170m
17652 @item smpte240m
17653 @item ycgco
17654 @item bt2020nc
17655 @item bt2020c
17656 @item smpte2085
17657 @item chroma-derived-nc
17658 @item chroma-derived-c
17659 @item ictcp
17660 @end table
17661 @end table
17662
17663 @section showinfo
17664
17665 Show a line containing various information for each input video frame.
17666 The input video is not modified.
17667
17668 This filter supports the following options:
17669
17670 @table @option
17671 @item checksum
17672 Calculate checksums of each plane. By default enabled.
17673 @end table
17674
17675 The shown line contains a sequence of key/value pairs of the form
17676 @var{key}:@var{value}.
17677
17678 The following values are shown in the output:
17679
17680 @table @option
17681 @item n
17682 The (sequential) number of the input frame, starting from 0.
17683
17684 @item pts
17685 The Presentation TimeStamp of the input frame, expressed as a number of
17686 time base units. The time base unit depends on the filter input pad.
17687
17688 @item pts_time
17689 The Presentation TimeStamp of the input frame, expressed as a number of
17690 seconds.
17691
17692 @item pos
17693 The position of the frame in the input stream, or -1 if this information is
17694 unavailable and/or meaningless (for example in case of synthetic video).
17695
17696 @item fmt
17697 The pixel format name.
17698
17699 @item sar
17700 The sample aspect ratio of the input frame, expressed in the form
17701 @var{num}/@var{den}.
17702
17703 @item s
17704 The size of the input frame. For the syntax of this option, check the
17705 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17706
17707 @item i
17708 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
17709 for bottom field first).
17710
17711 @item iskey
17712 This is 1 if the frame is a key frame, 0 otherwise.
17713
17714 @item type
17715 The picture type of the input frame ("I" for an I-frame, "P" for a
17716 P-frame, "B" for a B-frame, or "?" for an unknown type).
17717 Also refer to the documentation of the @code{AVPictureType} enum and of
17718 the @code{av_get_picture_type_char} function defined in
17719 @file{libavutil/avutil.h}.
17720
17721 @item checksum
17722 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
17723
17724 @item plane_checksum
17725 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
17726 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
17727
17728 @item mean
17729 The mean value of pixels in each plane of the input frame, expressed in the form
17730 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
17731
17732 @item stdev
17733 The standard deviation of pixel values in each plane of the input frame, expressed
17734 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
17735
17736 @end table
17737
17738 @section showpalette
17739
17740 Displays the 256 colors palette of each frame. This filter is only relevant for
17741 @var{pal8} pixel format frames.
17742
17743 It accepts the following option:
17744
17745 @table @option
17746 @item s
17747 Set the size of the box used to represent one palette color entry. Default is
17748 @code{30} (for a @code{30x30} pixel box).
17749 @end table
17750
17751 @section shuffleframes
17752
17753 Reorder and/or duplicate and/or drop video frames.
17754
17755 It accepts the following parameters:
17756
17757 @table @option
17758 @item mapping
17759 Set the destination indexes of input frames.
17760 This is space or '|' separated list of indexes that maps input frames to output
17761 frames. Number of indexes also sets maximal value that each index may have.
17762 '-1' index have special meaning and that is to drop frame.
17763 @end table
17764
17765 The first frame has the index 0. The default is to keep the input unchanged.
17766
17767 @subsection Examples
17768
17769 @itemize
17770 @item
17771 Swap second and third frame of every three frames of the input:
17772 @example
17773 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
17774 @end example
17775
17776 @item
17777 Swap 10th and 1st frame of every ten frames of the input:
17778 @example
17779 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
17780 @end example
17781 @end itemize
17782
17783 @section shuffleplanes
17784
17785 Reorder and/or duplicate video planes.
17786
17787 It accepts the following parameters:
17788
17789 @table @option
17790
17791 @item map0
17792 The index of the input plane to be used as the first output plane.
17793
17794 @item map1
17795 The index of the input plane to be used as the second output plane.
17796
17797 @item map2
17798 The index of the input plane to be used as the third output plane.
17799
17800 @item map3
17801 The index of the input plane to be used as the fourth output plane.
17802
17803 @end table
17804
17805 The first plane has the index 0. The default is to keep the input unchanged.
17806
17807 @subsection Examples
17808
17809 @itemize
17810 @item
17811 Swap the second and third planes of the input:
17812 @example
17813 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
17814 @end example
17815 @end itemize
17816
17817 @anchor{signalstats}
17818 @section signalstats
17819 Evaluate various visual metrics that assist in determining issues associated
17820 with the digitization of analog video media.
17821
17822 By default the filter will log these metadata values:
17823
17824 @table @option
17825 @item YMIN
17826 Display the minimal Y value contained within the input frame. Expressed in
17827 range of [0-255].
17828
17829 @item YLOW
17830 Display the Y value at the 10% percentile within the input frame. Expressed in
17831 range of [0-255].
17832
17833 @item YAVG
17834 Display the average Y value within the input frame. Expressed in range of
17835 [0-255].
17836
17837 @item YHIGH
17838 Display the Y value at the 90% percentile within the input frame. Expressed in
17839 range of [0-255].
17840
17841 @item YMAX
17842 Display the maximum Y value contained within the input frame. Expressed in
17843 range of [0-255].
17844
17845 @item UMIN
17846 Display the minimal U value contained within the input frame. Expressed in
17847 range of [0-255].
17848
17849 @item ULOW
17850 Display the U value at the 10% percentile within the input frame. Expressed in
17851 range of [0-255].
17852
17853 @item UAVG
17854 Display the average U value within the input frame. Expressed in range of
17855 [0-255].
17856
17857 @item UHIGH
17858 Display the U value at the 90% percentile within the input frame. Expressed in
17859 range of [0-255].
17860
17861 @item UMAX
17862 Display the maximum U value contained within the input frame. Expressed in
17863 range of [0-255].
17864
17865 @item VMIN
17866 Display the minimal V value contained within the input frame. Expressed in
17867 range of [0-255].
17868
17869 @item VLOW
17870 Display the V value at the 10% percentile within the input frame. Expressed in
17871 range of [0-255].
17872
17873 @item VAVG
17874 Display the average V value within the input frame. Expressed in range of
17875 [0-255].
17876
17877 @item VHIGH
17878 Display the V value at the 90% percentile within the input frame. Expressed in
17879 range of [0-255].
17880
17881 @item VMAX
17882 Display the maximum V value contained within the input frame. Expressed in
17883 range of [0-255].
17884
17885 @item SATMIN
17886 Display the minimal saturation value contained within the input frame.
17887 Expressed in range of [0-~181.02].
17888
17889 @item SATLOW
17890 Display the saturation value at the 10% percentile within the input frame.
17891 Expressed in range of [0-~181.02].
17892
17893 @item SATAVG
17894 Display the average saturation value within the input frame. Expressed in range
17895 of [0-~181.02].
17896
17897 @item SATHIGH
17898 Display the saturation value at the 90% percentile within the input frame.
17899 Expressed in range of [0-~181.02].
17900
17901 @item SATMAX
17902 Display the maximum saturation value contained within the input frame.
17903 Expressed in range of [0-~181.02].
17904
17905 @item HUEMED
17906 Display the median value for hue within the input frame. Expressed in range of
17907 [0-360].
17908
17909 @item HUEAVG
17910 Display the average value for hue within the input frame. Expressed in range of
17911 [0-360].
17912
17913 @item YDIF
17914 Display the average of sample value difference between all values of the Y
17915 plane in the current frame and corresponding values of the previous input frame.
17916 Expressed in range of [0-255].
17917
17918 @item UDIF
17919 Display the average of sample value difference between all values of the U
17920 plane in the current frame and corresponding values of the previous input frame.
17921 Expressed in range of [0-255].
17922
17923 @item VDIF
17924 Display the average of sample value difference between all values of the V
17925 plane in the current frame and corresponding values of the previous input frame.
17926 Expressed in range of [0-255].
17927
17928 @item YBITDEPTH
17929 Display bit depth of Y plane in current frame.
17930 Expressed in range of [0-16].
17931
17932 @item UBITDEPTH
17933 Display bit depth of U plane in current frame.
17934 Expressed in range of [0-16].
17935
17936 @item VBITDEPTH
17937 Display bit depth of V plane in current frame.
17938 Expressed in range of [0-16].
17939 @end table
17940
17941 The filter accepts the following options:
17942
17943 @table @option
17944 @item stat
17945 @item out
17946
17947 @option{stat} specify an additional form of image analysis.
17948 @option{out} output video with the specified type of pixel highlighted.
17949
17950 Both options accept the following values:
17951
17952 @table @samp
17953 @item tout
17954 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
17955 unlike the neighboring pixels of the same field. Examples of temporal outliers
17956 include the results of video dropouts, head clogs, or tape tracking issues.
17957
17958 @item vrep
17959 Identify @var{vertical line repetition}. Vertical line repetition includes
17960 similar rows of pixels within a frame. In born-digital video vertical line
17961 repetition is common, but this pattern is uncommon in video digitized from an
17962 analog source. When it occurs in video that results from the digitization of an
17963 analog source it can indicate concealment from a dropout compensator.
17964
17965 @item brng
17966 Identify pixels that fall outside of legal broadcast range.
17967 @end table
17968
17969 @item color, c
17970 Set the highlight color for the @option{out} option. The default color is
17971 yellow.
17972 @end table
17973
17974 @subsection Examples
17975
17976 @itemize
17977 @item
17978 Output data of various video metrics:
17979 @example
17980 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
17981 @end example
17982
17983 @item
17984 Output specific data about the minimum and maximum values of the Y plane per frame:
17985 @example
17986 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
17987 @end example
17988
17989 @item
17990 Playback video while highlighting pixels that are outside of broadcast range in red.
17991 @example
17992 ffplay example.mov -vf signalstats="out=brng:color=red"
17993 @end example
17994
17995 @item
17996 Playback video with signalstats metadata drawn over the frame.
17997 @example
17998 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
17999 @end example
18000
18001 The contents of signalstat_drawtext.txt used in the command are:
18002 @example
18003 time %@{pts:hms@}
18004 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
18005 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
18006 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
18007 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
18008
18009 @end example
18010 @end itemize
18011
18012 @anchor{signature}
18013 @section signature
18014
18015 Calculates the MPEG-7 Video Signature. The filter can handle more than one
18016 input. In this case the matching between the inputs can be calculated additionally.
18017 The filter always passes through the first input. The signature of each stream can
18018 be written into a file.
18019
18020 It accepts the following options:
18021
18022 @table @option
18023 @item detectmode
18024 Enable or disable the matching process.
18025
18026 Available values are:
18027
18028 @table @samp
18029 @item off
18030 Disable the calculation of a matching (default).
18031 @item full
18032 Calculate the matching for the whole video and output whether the whole video
18033 matches or only parts.
18034 @item fast
18035 Calculate only until a matching is found or the video ends. Should be faster in
18036 some cases.
18037 @end table
18038
18039 @item nb_inputs
18040 Set the number of inputs. The option value must be a non negative integer.
18041 Default value is 1.
18042
18043 @item filename
18044 Set the path to which the output is written. If there is more than one input,
18045 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
18046 integer), that will be replaced with the input number. If no filename is
18047 specified, no output will be written. This is the default.
18048
18049 @item format
18050 Choose the output format.
18051
18052 Available values are:
18053
18054 @table @samp
18055 @item binary
18056 Use the specified binary representation (default).
18057 @item xml
18058 Use the specified xml representation.
18059 @end table
18060
18061 @item th_d
18062 Set threshold to detect one word as similar. The option value must be an integer
18063 greater than zero. The default value is 9000.
18064
18065 @item th_dc
18066 Set threshold to detect all words as similar. The option value must be an integer
18067 greater than zero. The default value is 60000.
18068
18069 @item th_xh
18070 Set threshold to detect frames as similar. The option value must be an integer
18071 greater than zero. The default value is 116.
18072
18073 @item th_di
18074 Set the minimum length of a sequence in frames to recognize it as matching
18075 sequence. The option value must be a non negative integer value.
18076 The default value is 0.
18077
18078 @item th_it
18079 Set the minimum relation, that matching frames to all frames must have.
18080 The option value must be a double value between 0 and 1. The default value is 0.5.
18081 @end table
18082
18083 @subsection Examples
18084
18085 @itemize
18086 @item
18087 To calculate the signature of an input video and store it in signature.bin:
18088 @example
18089 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
18090 @end example
18091
18092 @item
18093 To detect whether two videos match and store the signatures in XML format in
18094 signature0.xml and signature1.xml:
18095 @example
18096 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 -
18097 @end example
18098
18099 @end itemize
18100
18101 @anchor{smartblur}
18102 @section smartblur
18103
18104 Blur the input video without impacting the outlines.
18105
18106 It accepts the following options:
18107
18108 @table @option
18109 @item luma_radius, lr
18110 Set the luma radius. The option value must be a float number in
18111 the range [0.1,5.0] that specifies the variance of the gaussian filter
18112 used to blur the image (slower if larger). Default value is 1.0.
18113
18114 @item luma_strength, ls
18115 Set the luma strength. The option value must be a float number
18116 in the range [-1.0,1.0] that configures the blurring. A value included
18117 in [0.0,1.0] will blur the image whereas a value included in
18118 [-1.0,0.0] will sharpen the image. Default value is 1.0.
18119
18120 @item luma_threshold, lt
18121 Set the luma threshold used as a coefficient to determine
18122 whether a pixel should be blurred or not. The option value must be an
18123 integer in the range [-30,30]. A value of 0 will filter all the image,
18124 a value included in [0,30] will filter flat areas and a value included
18125 in [-30,0] will filter edges. Default value is 0.
18126
18127 @item chroma_radius, cr
18128 Set the chroma radius. The option value must be a float number in
18129 the range [0.1,5.0] that specifies the variance of the gaussian filter
18130 used to blur the image (slower if larger). Default value is @option{luma_radius}.
18131
18132 @item chroma_strength, cs
18133 Set the chroma strength. The option value must be a float number
18134 in the range [-1.0,1.0] that configures the blurring. A value included
18135 in [0.0,1.0] will blur the image whereas a value included in
18136 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
18137
18138 @item chroma_threshold, ct
18139 Set the chroma threshold used as a coefficient to determine
18140 whether a pixel should be blurred or not. The option value must be an
18141 integer in the range [-30,30]. A value of 0 will filter all the image,
18142 a value included in [0,30] will filter flat areas and a value included
18143 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
18144 @end table
18145
18146 If a chroma option is not explicitly set, the corresponding luma value
18147 is set.
18148
18149 @section sobel
18150 Apply sobel operator to input video stream.
18151
18152 The filter accepts the following option:
18153
18154 @table @option
18155 @item planes
18156 Set which planes will be processed, unprocessed planes will be copied.
18157 By default value 0xf, all planes will be processed.
18158
18159 @item scale
18160 Set value which will be multiplied with filtered result.
18161
18162 @item delta
18163 Set value which will be added to filtered result.
18164 @end table
18165
18166 @subsection Commands
18167
18168 This filter supports the all above options as @ref{commands}.
18169
18170 @anchor{spp}
18171 @section spp
18172
18173 Apply a simple postprocessing filter that compresses and decompresses the image
18174 at several (or - in the case of @option{quality} level @code{6} - all) shifts
18175 and average the results.
18176
18177 The filter accepts the following options:
18178
18179 @table @option
18180 @item quality
18181 Set quality. This option defines the number of levels for averaging. It accepts
18182 an integer in the range 0-6. If set to @code{0}, the filter will have no
18183 effect. A value of @code{6} means the higher quality. For each increment of
18184 that value the speed drops by a factor of approximately 2.  Default value is
18185 @code{3}.
18186
18187 @item qp
18188 Force a constant quantization parameter. If not set, the filter will use the QP
18189 from the video stream (if available).
18190
18191 @item mode
18192 Set thresholding mode. Available modes are:
18193
18194 @table @samp
18195 @item hard
18196 Set hard thresholding (default).
18197 @item soft
18198 Set soft thresholding (better de-ringing effect, but likely blurrier).
18199 @end table
18200
18201 @item use_bframe_qp
18202 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
18203 option may cause flicker since the B-Frames have often larger QP. Default is
18204 @code{0} (not enabled).
18205 @end table
18206
18207 @subsection Commands
18208
18209 This filter supports the following commands:
18210 @table @option
18211 @item quality, level
18212 Set quality level. The value @code{max} can be used to set the maximum level,
18213 currently @code{6}.
18214 @end table
18215
18216 @anchor{sr}
18217 @section sr
18218
18219 Scale the input by applying one of the super-resolution methods based on
18220 convolutional neural networks. Supported models:
18221
18222 @itemize
18223 @item
18224 Super-Resolution Convolutional Neural Network model (SRCNN).
18225 See @url{https://arxiv.org/abs/1501.00092}.
18226
18227 @item
18228 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
18229 See @url{https://arxiv.org/abs/1609.05158}.
18230 @end itemize
18231
18232 Training scripts as well as scripts for model file (.pb) saving can be found at
18233 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
18234 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
18235
18236 Native model files (.model) can be generated from TensorFlow model
18237 files (.pb) by using tools/python/convert.py
18238
18239 The filter accepts the following options:
18240
18241 @table @option
18242 @item dnn_backend
18243 Specify which DNN backend to use for model loading and execution. This option accepts
18244 the following values:
18245
18246 @table @samp
18247 @item native
18248 Native implementation of DNN loading and execution.
18249
18250 @item tensorflow
18251 TensorFlow backend. To enable this backend you
18252 need to install the TensorFlow for C library (see
18253 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
18254 @code{--enable-libtensorflow}
18255 @end table
18256
18257 Default value is @samp{native}.
18258
18259 @item model
18260 Set path to model file specifying network architecture and its parameters.
18261 Note that different backends use different file formats. TensorFlow backend
18262 can load files for both formats, while native backend can load files for only
18263 its format.
18264
18265 @item scale_factor
18266 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
18267 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
18268 input upscaled using bicubic upscaling with proper scale factor.
18269 @end table
18270
18271 This feature can also be finished with @ref{dnn_processing} filter.
18272
18273 @section ssim
18274
18275 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
18276
18277 This filter takes in input two input videos, the first input is
18278 considered the "main" source and is passed unchanged to the
18279 output. The second input is used as a "reference" video for computing
18280 the SSIM.
18281
18282 Both video inputs must have the same resolution and pixel format for
18283 this filter to work correctly. Also it assumes that both inputs
18284 have the same number of frames, which are compared one by one.
18285
18286 The filter stores the calculated SSIM of each frame.
18287
18288 The description of the accepted parameters follows.
18289
18290 @table @option
18291 @item stats_file, f
18292 If specified the filter will use the named file to save the SSIM of
18293 each individual frame. When filename equals "-" the data is sent to
18294 standard output.
18295 @end table
18296
18297 The file printed if @var{stats_file} is selected, contains a sequence of
18298 key/value pairs of the form @var{key}:@var{value} for each compared
18299 couple of frames.
18300
18301 A description of each shown parameter follows:
18302
18303 @table @option
18304 @item n
18305 sequential number of the input frame, starting from 1
18306
18307 @item Y, U, V, R, G, B
18308 SSIM of the compared frames for the component specified by the suffix.
18309
18310 @item All
18311 SSIM of the compared frames for the whole frame.
18312
18313 @item dB
18314 Same as above but in dB representation.
18315 @end table
18316
18317 This filter also supports the @ref{framesync} options.
18318
18319 @subsection Examples
18320 @itemize
18321 @item
18322 For example:
18323 @example
18324 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
18325 [main][ref] ssim="stats_file=stats.log" [out]
18326 @end example
18327
18328 On this example the input file being processed is compared with the
18329 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
18330 is stored in @file{stats.log}.
18331
18332 @item
18333 Another example with both psnr and ssim at same time:
18334 @example
18335 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
18336 @end example
18337
18338 @item
18339 Another example with different containers:
18340 @example
18341 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 -
18342 @end example
18343 @end itemize
18344
18345 @section stereo3d
18346
18347 Convert between different stereoscopic image formats.
18348
18349 The filters accept the following options:
18350
18351 @table @option
18352 @item in
18353 Set stereoscopic image format of input.
18354
18355 Available values for input image formats are:
18356 @table @samp
18357 @item sbsl
18358 side by side parallel (left eye left, right eye right)
18359
18360 @item sbsr
18361 side by side crosseye (right eye left, left eye right)
18362
18363 @item sbs2l
18364 side by side parallel with half width resolution
18365 (left eye left, right eye right)
18366
18367 @item sbs2r
18368 side by side crosseye with half width resolution
18369 (right eye left, left eye right)
18370
18371 @item abl
18372 @item tbl
18373 above-below (left eye above, right eye below)
18374
18375 @item abr
18376 @item tbr
18377 above-below (right eye above, left eye below)
18378
18379 @item ab2l
18380 @item tb2l
18381 above-below with half height resolution
18382 (left eye above, right eye below)
18383
18384 @item ab2r
18385 @item tb2r
18386 above-below with half height resolution
18387 (right eye above, left eye below)
18388
18389 @item al
18390 alternating frames (left eye first, right eye second)
18391
18392 @item ar
18393 alternating frames (right eye first, left eye second)
18394
18395 @item irl
18396 interleaved rows (left eye has top row, right eye starts on next row)
18397
18398 @item irr
18399 interleaved rows (right eye has top row, left eye starts on next row)
18400
18401 @item icl
18402 interleaved columns, left eye first
18403
18404 @item icr
18405 interleaved columns, right eye first
18406
18407 Default value is @samp{sbsl}.
18408 @end table
18409
18410 @item out
18411 Set stereoscopic image format of output.
18412
18413 @table @samp
18414 @item sbsl
18415 side by side parallel (left eye left, right eye right)
18416
18417 @item sbsr
18418 side by side crosseye (right eye left, left eye right)
18419
18420 @item sbs2l
18421 side by side parallel with half width resolution
18422 (left eye left, right eye right)
18423
18424 @item sbs2r
18425 side by side crosseye with half width resolution
18426 (right eye left, left eye right)
18427
18428 @item abl
18429 @item tbl
18430 above-below (left eye above, right eye below)
18431
18432 @item abr
18433 @item tbr
18434 above-below (right eye above, left eye below)
18435
18436 @item ab2l
18437 @item tb2l
18438 above-below with half height resolution
18439 (left eye above, right eye below)
18440
18441 @item ab2r
18442 @item tb2r
18443 above-below with half height resolution
18444 (right eye above, left eye below)
18445
18446 @item al
18447 alternating frames (left eye first, right eye second)
18448
18449 @item ar
18450 alternating frames (right eye first, left eye second)
18451
18452 @item irl
18453 interleaved rows (left eye has top row, right eye starts on next row)
18454
18455 @item irr
18456 interleaved rows (right eye has top row, left eye starts on next row)
18457
18458 @item arbg
18459 anaglyph red/blue gray
18460 (red filter on left eye, blue filter on right eye)
18461
18462 @item argg
18463 anaglyph red/green gray
18464 (red filter on left eye, green filter on right eye)
18465
18466 @item arcg
18467 anaglyph red/cyan gray
18468 (red filter on left eye, cyan filter on right eye)
18469
18470 @item arch
18471 anaglyph red/cyan half colored
18472 (red filter on left eye, cyan filter on right eye)
18473
18474 @item arcc
18475 anaglyph red/cyan color
18476 (red filter on left eye, cyan filter on right eye)
18477
18478 @item arcd
18479 anaglyph red/cyan color optimized with the least squares projection of dubois
18480 (red filter on left eye, cyan filter on right eye)
18481
18482 @item agmg
18483 anaglyph green/magenta gray
18484 (green filter on left eye, magenta filter on right eye)
18485
18486 @item agmh
18487 anaglyph green/magenta half colored
18488 (green filter on left eye, magenta filter on right eye)
18489
18490 @item agmc
18491 anaglyph green/magenta colored
18492 (green filter on left eye, magenta filter on right eye)
18493
18494 @item agmd
18495 anaglyph green/magenta color optimized with the least squares projection of dubois
18496 (green filter on left eye, magenta filter on right eye)
18497
18498 @item aybg
18499 anaglyph yellow/blue gray
18500 (yellow filter on left eye, blue filter on right eye)
18501
18502 @item aybh
18503 anaglyph yellow/blue half colored
18504 (yellow filter on left eye, blue filter on right eye)
18505
18506 @item aybc
18507 anaglyph yellow/blue colored
18508 (yellow filter on left eye, blue filter on right eye)
18509
18510 @item aybd
18511 anaglyph yellow/blue color optimized with the least squares projection of dubois
18512 (yellow filter on left eye, blue filter on right eye)
18513
18514 @item ml
18515 mono output (left eye only)
18516
18517 @item mr
18518 mono output (right eye only)
18519
18520 @item chl
18521 checkerboard, left eye first
18522
18523 @item chr
18524 checkerboard, right eye first
18525
18526 @item icl
18527 interleaved columns, left eye first
18528
18529 @item icr
18530 interleaved columns, right eye first
18531
18532 @item hdmi
18533 HDMI frame pack
18534 @end table
18535
18536 Default value is @samp{arcd}.
18537 @end table
18538
18539 @subsection Examples
18540
18541 @itemize
18542 @item
18543 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
18544 @example
18545 stereo3d=sbsl:aybd
18546 @end example
18547
18548 @item
18549 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
18550 @example
18551 stereo3d=abl:sbsr
18552 @end example
18553 @end itemize
18554
18555 @section streamselect, astreamselect
18556 Select video or audio streams.
18557
18558 The filter accepts the following options:
18559
18560 @table @option
18561 @item inputs
18562 Set number of inputs. Default is 2.
18563
18564 @item map
18565 Set input indexes to remap to outputs.
18566 @end table
18567
18568 @subsection Commands
18569
18570 The @code{streamselect} and @code{astreamselect} filter supports the following
18571 commands:
18572
18573 @table @option
18574 @item map
18575 Set input indexes to remap to outputs.
18576 @end table
18577
18578 @subsection Examples
18579
18580 @itemize
18581 @item
18582 Select first 5 seconds 1st stream and rest of time 2nd stream:
18583 @example
18584 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
18585 @end example
18586
18587 @item
18588 Same as above, but for audio:
18589 @example
18590 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
18591 @end example
18592 @end itemize
18593
18594 @anchor{subtitles}
18595 @section subtitles
18596
18597 Draw subtitles on top of input video using the libass library.
18598
18599 To enable compilation of this filter you need to configure FFmpeg with
18600 @code{--enable-libass}. This filter also requires a build with libavcodec and
18601 libavformat to convert the passed subtitles file to ASS (Advanced Substation
18602 Alpha) subtitles format.
18603
18604 The filter accepts the following options:
18605
18606 @table @option
18607 @item filename, f
18608 Set the filename of the subtitle file to read. It must be specified.
18609
18610 @item original_size
18611 Specify the size of the original video, the video for which the ASS file
18612 was composed. For the syntax of this option, check the
18613 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18614 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
18615 correctly scale the fonts if the aspect ratio has been changed.
18616
18617 @item fontsdir
18618 Set a directory path containing fonts that can be used by the filter.
18619 These fonts will be used in addition to whatever the font provider uses.
18620
18621 @item alpha
18622 Process alpha channel, by default alpha channel is untouched.
18623
18624 @item charenc
18625 Set subtitles input character encoding. @code{subtitles} filter only. Only
18626 useful if not UTF-8.
18627
18628 @item stream_index, si
18629 Set subtitles stream index. @code{subtitles} filter only.
18630
18631 @item force_style
18632 Override default style or script info parameters of the subtitles. It accepts a
18633 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
18634 @end table
18635
18636 If the first key is not specified, it is assumed that the first value
18637 specifies the @option{filename}.
18638
18639 For example, to render the file @file{sub.srt} on top of the input
18640 video, use the command:
18641 @example
18642 subtitles=sub.srt
18643 @end example
18644
18645 which is equivalent to:
18646 @example
18647 subtitles=filename=sub.srt
18648 @end example
18649
18650 To render the default subtitles stream from file @file{video.mkv}, use:
18651 @example
18652 subtitles=video.mkv
18653 @end example
18654
18655 To render the second subtitles stream from that file, use:
18656 @example
18657 subtitles=video.mkv:si=1
18658 @end example
18659
18660 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
18661 @code{DejaVu Serif}, use:
18662 @example
18663 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
18664 @end example
18665
18666 @section super2xsai
18667
18668 Scale the input by 2x and smooth using the Super2xSaI (Scale and
18669 Interpolate) pixel art scaling algorithm.
18670
18671 Useful for enlarging pixel art images without reducing sharpness.
18672
18673 @section swaprect
18674
18675 Swap two rectangular objects in video.
18676
18677 This filter accepts the following options:
18678
18679 @table @option
18680 @item w
18681 Set object width.
18682
18683 @item h
18684 Set object height.
18685
18686 @item x1
18687 Set 1st rect x coordinate.
18688
18689 @item y1
18690 Set 1st rect y coordinate.
18691
18692 @item x2
18693 Set 2nd rect x coordinate.
18694
18695 @item y2
18696 Set 2nd rect y coordinate.
18697
18698 All expressions are evaluated once for each frame.
18699 @end table
18700
18701 The all options are expressions containing the following constants:
18702
18703 @table @option
18704 @item w
18705 @item h
18706 The input width and height.
18707
18708 @item a
18709 same as @var{w} / @var{h}
18710
18711 @item sar
18712 input sample aspect ratio
18713
18714 @item dar
18715 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
18716
18717 @item n
18718 The number of the input frame, starting from 0.
18719
18720 @item t
18721 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
18722
18723 @item pos
18724 the position in the file of the input frame, NAN if unknown
18725 @end table
18726
18727 @section swapuv
18728 Swap U & V plane.
18729
18730 @section tblend
18731 Blend successive video frames.
18732
18733 See @ref{blend}
18734
18735 @section telecine
18736
18737 Apply telecine process to the video.
18738
18739 This filter accepts the following options:
18740
18741 @table @option
18742 @item first_field
18743 @table @samp
18744 @item top, t
18745 top field first
18746 @item bottom, b
18747 bottom field first
18748 The default value is @code{top}.
18749 @end table
18750
18751 @item pattern
18752 A string of numbers representing the pulldown pattern you wish to apply.
18753 The default value is @code{23}.
18754 @end table
18755
18756 @example
18757 Some typical patterns:
18758
18759 NTSC output (30i):
18760 27.5p: 32222
18761 24p: 23 (classic)
18762 24p: 2332 (preferred)
18763 20p: 33
18764 18p: 334
18765 16p: 3444
18766
18767 PAL output (25i):
18768 27.5p: 12222
18769 24p: 222222222223 ("Euro pulldown")
18770 16.67p: 33
18771 16p: 33333334
18772 @end example
18773
18774 @section thistogram
18775
18776 Compute and draw a color distribution histogram for the input video across time.
18777
18778 Unlike @ref{histogram} video filter which only shows histogram of single input frame
18779 at certain time, this filter shows also past histograms of number of frames defined
18780 by @code{width} option.
18781
18782 The computed histogram is a representation of the color component
18783 distribution in an image.
18784
18785 The filter accepts the following options:
18786
18787 @table @option
18788 @item width, w
18789 Set width of single color component output. Default value is @code{0}.
18790 Value of @code{0} means width will be picked from input video.
18791 This also set number of passed histograms to keep.
18792 Allowed range is [0, 8192].
18793
18794 @item display_mode, d
18795 Set display mode.
18796 It accepts the following values:
18797 @table @samp
18798 @item stack
18799 Per color component graphs are placed below each other.
18800
18801 @item parade
18802 Per color component graphs are placed side by side.
18803
18804 @item overlay
18805 Presents information identical to that in the @code{parade}, except
18806 that the graphs representing color components are superimposed directly
18807 over one another.
18808 @end table
18809 Default is @code{stack}.
18810
18811 @item levels_mode, m
18812 Set mode. Can be either @code{linear}, or @code{logarithmic}.
18813 Default is @code{linear}.
18814
18815 @item components, c
18816 Set what color components to display.
18817 Default is @code{7}.
18818
18819 @item bgopacity, b
18820 Set background opacity. Default is @code{0.9}.
18821
18822 @item envelope, e
18823 Show envelope. Default is disabled.
18824
18825 @item ecolor, ec
18826 Set envelope color. Default is @code{gold}.
18827
18828 @item slide
18829 Set slide mode.
18830
18831 Available values for slide is:
18832 @table @samp
18833 @item frame
18834 Draw new frame when right border is reached.
18835
18836 @item replace
18837 Replace old columns with new ones.
18838
18839 @item scroll
18840 Scroll from right to left.
18841
18842 @item rscroll
18843 Scroll from left to right.
18844
18845 @item picture
18846 Draw single picture.
18847 @end table
18848
18849 Default is @code{replace}.
18850 @end table
18851
18852 @section threshold
18853
18854 Apply threshold effect to video stream.
18855
18856 This filter needs four video streams to perform thresholding.
18857 First stream is stream we are filtering.
18858 Second stream is holding threshold values, third stream is holding min values,
18859 and last, fourth stream is holding max values.
18860
18861 The filter accepts the following option:
18862
18863 @table @option
18864 @item planes
18865 Set which planes will be processed, unprocessed planes will be copied.
18866 By default value 0xf, all planes will be processed.
18867 @end table
18868
18869 For example if first stream pixel's component value is less then threshold value
18870 of pixel component from 2nd threshold stream, third stream value will picked,
18871 otherwise fourth stream pixel component value will be picked.
18872
18873 Using color source filter one can perform various types of thresholding:
18874
18875 @subsection Examples
18876
18877 @itemize
18878 @item
18879 Binary threshold, using gray color as threshold:
18880 @example
18881 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
18882 @end example
18883
18884 @item
18885 Inverted binary threshold, using gray color as threshold:
18886 @example
18887 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
18888 @end example
18889
18890 @item
18891 Truncate binary threshold, using gray color as threshold:
18892 @example
18893 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
18894 @end example
18895
18896 @item
18897 Threshold to zero, using gray color as threshold:
18898 @example
18899 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
18900 @end example
18901
18902 @item
18903 Inverted threshold to zero, using gray color as threshold:
18904 @example
18905 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
18906 @end example
18907 @end itemize
18908
18909 @section thumbnail
18910 Select the most representative frame in a given sequence of consecutive frames.
18911
18912 The filter accepts the following options:
18913
18914 @table @option
18915 @item n
18916 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
18917 will pick one of them, and then handle the next batch of @var{n} frames until
18918 the end. Default is @code{100}.
18919 @end table
18920
18921 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
18922 value will result in a higher memory usage, so a high value is not recommended.
18923
18924 @subsection Examples
18925
18926 @itemize
18927 @item
18928 Extract one picture each 50 frames:
18929 @example
18930 thumbnail=50
18931 @end example
18932
18933 @item
18934 Complete example of a thumbnail creation with @command{ffmpeg}:
18935 @example
18936 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
18937 @end example
18938 @end itemize
18939
18940 @anchor{tile}
18941 @section tile
18942
18943 Tile several successive frames together.
18944
18945 The @ref{untile} filter can do the reverse.
18946
18947 The filter accepts the following options:
18948
18949 @table @option
18950
18951 @item layout
18952 Set the grid size (i.e. the number of lines and columns). For the syntax of
18953 this option, check the
18954 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18955
18956 @item nb_frames
18957 Set the maximum number of frames to render in the given area. It must be less
18958 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
18959 the area will be used.
18960
18961 @item margin
18962 Set the outer border margin in pixels.
18963
18964 @item padding
18965 Set the inner border thickness (i.e. the number of pixels between frames). For
18966 more advanced padding options (such as having different values for the edges),
18967 refer to the pad video filter.
18968
18969 @item color
18970 Specify the color of the unused area. For the syntax of this option, check the
18971 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18972 The default value of @var{color} is "black".
18973
18974 @item overlap
18975 Set the number of frames to overlap when tiling several successive frames together.
18976 The value must be between @code{0} and @var{nb_frames - 1}.
18977
18978 @item init_padding
18979 Set the number of frames to initially be empty before displaying first output frame.
18980 This controls how soon will one get first output frame.
18981 The value must be between @code{0} and @var{nb_frames - 1}.
18982 @end table
18983
18984 @subsection Examples
18985
18986 @itemize
18987 @item
18988 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
18989 @example
18990 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
18991 @end example
18992 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
18993 duplicating each output frame to accommodate the originally detected frame
18994 rate.
18995
18996 @item
18997 Display @code{5} pictures in an area of @code{3x2} frames,
18998 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
18999 mixed flat and named options:
19000 @example
19001 tile=3x2:nb_frames=5:padding=7:margin=2
19002 @end example
19003 @end itemize
19004
19005 @section tinterlace
19006
19007 Perform various types of temporal field interlacing.
19008
19009 Frames are counted starting from 1, so the first input frame is
19010 considered odd.
19011
19012 The filter accepts the following options:
19013
19014 @table @option
19015
19016 @item mode
19017 Specify the mode of the interlacing. This option can also be specified
19018 as a value alone. See below for a list of values for this option.
19019
19020 Available values are:
19021
19022 @table @samp
19023 @item merge, 0
19024 Move odd frames into the upper field, even into the lower field,
19025 generating a double height frame at half frame rate.
19026 @example
19027  ------> time
19028 Input:
19029 Frame 1         Frame 2         Frame 3         Frame 4
19030
19031 11111           22222           33333           44444
19032 11111           22222           33333           44444
19033 11111           22222           33333           44444
19034 11111           22222           33333           44444
19035
19036 Output:
19037 11111                           33333
19038 22222                           44444
19039 11111                           33333
19040 22222                           44444
19041 11111                           33333
19042 22222                           44444
19043 11111                           33333
19044 22222                           44444
19045 @end example
19046
19047 @item drop_even, 1
19048 Only output odd frames, even frames are dropped, generating a frame with
19049 unchanged height at half frame rate.
19050
19051 @example
19052  ------> time
19053 Input:
19054 Frame 1         Frame 2         Frame 3         Frame 4
19055
19056 11111           22222           33333           44444
19057 11111           22222           33333           44444
19058 11111           22222           33333           44444
19059 11111           22222           33333           44444
19060
19061 Output:
19062 11111                           33333
19063 11111                           33333
19064 11111                           33333
19065 11111                           33333
19066 @end example
19067
19068 @item drop_odd, 2
19069 Only output even frames, odd frames are dropped, generating a frame with
19070 unchanged height at half frame rate.
19071
19072 @example
19073  ------> time
19074 Input:
19075 Frame 1         Frame 2         Frame 3         Frame 4
19076
19077 11111           22222           33333           44444
19078 11111           22222           33333           44444
19079 11111           22222           33333           44444
19080 11111           22222           33333           44444
19081
19082 Output:
19083                 22222                           44444
19084                 22222                           44444
19085                 22222                           44444
19086                 22222                           44444
19087 @end example
19088
19089 @item pad, 3
19090 Expand each frame to full height, but pad alternate lines with black,
19091 generating a frame with double height at the same input frame rate.
19092
19093 @example
19094  ------> time
19095 Input:
19096 Frame 1         Frame 2         Frame 3         Frame 4
19097
19098 11111           22222           33333           44444
19099 11111           22222           33333           44444
19100 11111           22222           33333           44444
19101 11111           22222           33333           44444
19102
19103 Output:
19104 11111           .....           33333           .....
19105 .....           22222           .....           44444
19106 11111           .....           33333           .....
19107 .....           22222           .....           44444
19108 11111           .....           33333           .....
19109 .....           22222           .....           44444
19110 11111           .....           33333           .....
19111 .....           22222           .....           44444
19112 @end example
19113
19114
19115 @item interleave_top, 4
19116 Interleave the upper field from odd frames with the lower field from
19117 even frames, generating a frame with unchanged height at half frame rate.
19118
19119 @example
19120  ------> time
19121 Input:
19122 Frame 1         Frame 2         Frame 3         Frame 4
19123
19124 11111<-         22222           33333<-         44444
19125 11111           22222<-         33333           44444<-
19126 11111<-         22222           33333<-         44444
19127 11111           22222<-         33333           44444<-
19128
19129 Output:
19130 11111                           33333
19131 22222                           44444
19132 11111                           33333
19133 22222                           44444
19134 @end example
19135
19136
19137 @item interleave_bottom, 5
19138 Interleave the lower field from odd frames with the upper field from
19139 even frames, generating a frame with unchanged height at half frame rate.
19140
19141 @example
19142  ------> time
19143 Input:
19144 Frame 1         Frame 2         Frame 3         Frame 4
19145
19146 11111           22222<-         33333           44444<-
19147 11111<-         22222           33333<-         44444
19148 11111           22222<-         33333           44444<-
19149 11111<-         22222           33333<-         44444
19150
19151 Output:
19152 22222                           44444
19153 11111                           33333
19154 22222                           44444
19155 11111                           33333
19156 @end example
19157
19158
19159 @item interlacex2, 6
19160 Double frame rate with unchanged height. Frames are inserted each
19161 containing the second temporal field from the previous input frame and
19162 the first temporal field from the next input frame. This mode relies on
19163 the top_field_first flag. Useful for interlaced video displays with no
19164 field synchronisation.
19165
19166 @example
19167  ------> time
19168 Input:
19169 Frame 1         Frame 2         Frame 3         Frame 4
19170
19171 11111           22222           33333           44444
19172  11111           22222           33333           44444
19173 11111           22222           33333           44444
19174  11111           22222           33333           44444
19175
19176 Output:
19177 11111   22222   22222   33333   33333   44444   44444
19178  11111   11111   22222   22222   33333   33333   44444
19179 11111   22222   22222   33333   33333   44444   44444
19180  11111   11111   22222   22222   33333   33333   44444
19181 @end example
19182
19183
19184 @item mergex2, 7
19185 Move odd frames into the upper field, even into the lower field,
19186 generating a double height frame at same frame rate.
19187
19188 @example
19189  ------> time
19190 Input:
19191 Frame 1         Frame 2         Frame 3         Frame 4
19192
19193 11111           22222           33333           44444
19194 11111           22222           33333           44444
19195 11111           22222           33333           44444
19196 11111           22222           33333           44444
19197
19198 Output:
19199 11111           33333           33333           55555
19200 22222           22222           44444           44444
19201 11111           33333           33333           55555
19202 22222           22222           44444           44444
19203 11111           33333           33333           55555
19204 22222           22222           44444           44444
19205 11111           33333           33333           55555
19206 22222           22222           44444           44444
19207 @end example
19208
19209 @end table
19210
19211 Numeric values are deprecated but are accepted for backward
19212 compatibility reasons.
19213
19214 Default mode is @code{merge}.
19215
19216 @item flags
19217 Specify flags influencing the filter process.
19218
19219 Available value for @var{flags} is:
19220
19221 @table @option
19222 @item low_pass_filter, vlpf
19223 Enable linear vertical low-pass filtering in the filter.
19224 Vertical low-pass filtering is required when creating an interlaced
19225 destination from a progressive source which contains high-frequency
19226 vertical detail. Filtering will reduce interlace 'twitter' and Moire
19227 patterning.
19228
19229 @item complex_filter, cvlpf
19230 Enable complex vertical low-pass filtering.
19231 This will slightly less reduce interlace 'twitter' and Moire
19232 patterning but better retain detail and subjective sharpness impression.
19233
19234 @item bypass_il
19235 Bypass already interlaced frames, only adjust the frame rate.
19236 @end table
19237
19238 Vertical low-pass filtering and bypassing already interlaced frames can only be
19239 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
19240
19241 @end table
19242
19243 @section tmedian
19244 Pick median pixels from several successive input video frames.
19245
19246 The filter accepts the following options:
19247
19248 @table @option
19249 @item radius
19250 Set radius of median filter.
19251 Default is 1. Allowed range is from 1 to 127.
19252
19253 @item planes
19254 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19255
19256 @item percentile
19257 Set median percentile. Default value is @code{0.5}.
19258 Default value of @code{0.5} will pick always median values, while @code{0} will pick
19259 minimum values, and @code{1} maximum values.
19260 @end table
19261
19262 @section tmix
19263
19264 Mix successive video frames.
19265
19266 A description of the accepted options follows.
19267
19268 @table @option
19269 @item frames
19270 The number of successive frames to mix. If unspecified, it defaults to 3.
19271
19272 @item weights
19273 Specify weight of each input video frame.
19274 Each weight is separated by space. If number of weights is smaller than
19275 number of @var{frames} last specified weight will be used for all remaining
19276 unset weights.
19277
19278 @item scale
19279 Specify scale, if it is set it will be multiplied with sum
19280 of each weight multiplied with pixel values to give final destination
19281 pixel value. By default @var{scale} is auto scaled to sum of weights.
19282 @end table
19283
19284 @subsection Examples
19285
19286 @itemize
19287 @item
19288 Average 7 successive frames:
19289 @example
19290 tmix=frames=7:weights="1 1 1 1 1 1 1"
19291 @end example
19292
19293 @item
19294 Apply simple temporal convolution:
19295 @example
19296 tmix=frames=3:weights="-1 3 -1"
19297 @end example
19298
19299 @item
19300 Similar as above but only showing temporal differences:
19301 @example
19302 tmix=frames=3:weights="-1 2 -1":scale=1
19303 @end example
19304 @end itemize
19305
19306 @anchor{tonemap}
19307 @section tonemap
19308 Tone map colors from different dynamic ranges.
19309
19310 This filter expects data in single precision floating point, as it needs to
19311 operate on (and can output) out-of-range values. Another filter, such as
19312 @ref{zscale}, is needed to convert the resulting frame to a usable format.
19313
19314 The tonemapping algorithms implemented only work on linear light, so input
19315 data should be linearized beforehand (and possibly correctly tagged).
19316
19317 @example
19318 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
19319 @end example
19320
19321 @subsection Options
19322 The filter accepts the following options.
19323
19324 @table @option
19325 @item tonemap
19326 Set the tone map algorithm to use.
19327
19328 Possible values are:
19329 @table @var
19330 @item none
19331 Do not apply any tone map, only desaturate overbright pixels.
19332
19333 @item clip
19334 Hard-clip any out-of-range values. Use it for perfect color accuracy for
19335 in-range values, while distorting out-of-range values.
19336
19337 @item linear
19338 Stretch the entire reference gamut to a linear multiple of the display.
19339
19340 @item gamma
19341 Fit a logarithmic transfer between the tone curves.
19342
19343 @item reinhard
19344 Preserve overall image brightness with a simple curve, using nonlinear
19345 contrast, which results in flattening details and degrading color accuracy.
19346
19347 @item hable
19348 Preserve both dark and bright details better than @var{reinhard}, at the cost
19349 of slightly darkening everything. Use it when detail preservation is more
19350 important than color and brightness accuracy.
19351
19352 @item mobius
19353 Smoothly map out-of-range values, while retaining contrast and colors for
19354 in-range material as much as possible. Use it when color accuracy is more
19355 important than detail preservation.
19356 @end table
19357
19358 Default is none.
19359
19360 @item param
19361 Tune the tone mapping algorithm.
19362
19363 This affects the following algorithms:
19364 @table @var
19365 @item none
19366 Ignored.
19367
19368 @item linear
19369 Specifies the scale factor to use while stretching.
19370 Default to 1.0.
19371
19372 @item gamma
19373 Specifies the exponent of the function.
19374 Default to 1.8.
19375
19376 @item clip
19377 Specify an extra linear coefficient to multiply into the signal before clipping.
19378 Default to 1.0.
19379
19380 @item reinhard
19381 Specify the local contrast coefficient at the display peak.
19382 Default to 0.5, which means that in-gamut values will be about half as bright
19383 as when clipping.
19384
19385 @item hable
19386 Ignored.
19387
19388 @item mobius
19389 Specify the transition point from linear to mobius transform. Every value
19390 below this point is guaranteed to be mapped 1:1. The higher the value, the
19391 more accurate the result will be, at the cost of losing bright details.
19392 Default to 0.3, which due to the steep initial slope still preserves in-range
19393 colors fairly accurately.
19394 @end table
19395
19396 @item desat
19397 Apply desaturation for highlights that exceed this level of brightness. The
19398 higher the parameter, the more color information will be preserved. This
19399 setting helps prevent unnaturally blown-out colors for super-highlights, by
19400 (smoothly) turning into white instead. This makes images feel more natural,
19401 at the cost of reducing information about out-of-range colors.
19402
19403 The default of 2.0 is somewhat conservative and will mostly just apply to
19404 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
19405
19406 This option works only if the input frame has a supported color tag.
19407
19408 @item peak
19409 Override signal/nominal/reference peak with this value. Useful when the
19410 embedded peak information in display metadata is not reliable or when tone
19411 mapping from a lower range to a higher range.
19412 @end table
19413
19414 @section tpad
19415
19416 Temporarily pad video frames.
19417
19418 The filter accepts the following options:
19419
19420 @table @option
19421 @item start
19422 Specify number of delay frames before input video stream. Default is 0.
19423
19424 @item stop
19425 Specify number of padding frames after input video stream.
19426 Set to -1 to pad indefinitely. Default is 0.
19427
19428 @item start_mode
19429 Set kind of frames added to beginning of stream.
19430 Can be either @var{add} or @var{clone}.
19431 With @var{add} frames of solid-color are added.
19432 With @var{clone} frames are clones of first frame.
19433 Default is @var{add}.
19434
19435 @item stop_mode
19436 Set kind of frames added to end of stream.
19437 Can be either @var{add} or @var{clone}.
19438 With @var{add} frames of solid-color are added.
19439 With @var{clone} frames are clones of last frame.
19440 Default is @var{add}.
19441
19442 @item start_duration, stop_duration
19443 Specify the duration of the start/stop delay. See
19444 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19445 for the accepted syntax.
19446 These options override @var{start} and @var{stop}. Default is 0.
19447
19448 @item color
19449 Specify the color of the padded area. For the syntax of this option,
19450 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
19451 manual,ffmpeg-utils}.
19452
19453 The default value of @var{color} is "black".
19454 @end table
19455
19456 @anchor{transpose}
19457 @section transpose
19458
19459 Transpose rows with columns in the input video and optionally flip it.
19460
19461 It accepts the following parameters:
19462
19463 @table @option
19464
19465 @item dir
19466 Specify the transposition direction.
19467
19468 Can assume the following values:
19469 @table @samp
19470 @item 0, 4, cclock_flip
19471 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
19472 @example
19473 L.R     L.l
19474 . . ->  . .
19475 l.r     R.r
19476 @end example
19477
19478 @item 1, 5, clock
19479 Rotate by 90 degrees clockwise, that is:
19480 @example
19481 L.R     l.L
19482 . . ->  . .
19483 l.r     r.R
19484 @end example
19485
19486 @item 2, 6, cclock
19487 Rotate by 90 degrees counterclockwise, that is:
19488 @example
19489 L.R     R.r
19490 . . ->  . .
19491 l.r     L.l
19492 @end example
19493
19494 @item 3, 7, clock_flip
19495 Rotate by 90 degrees clockwise and vertically flip, that is:
19496 @example
19497 L.R     r.R
19498 . . ->  . .
19499 l.r     l.L
19500 @end example
19501 @end table
19502
19503 For values between 4-7, the transposition is only done if the input
19504 video geometry is portrait and not landscape. These values are
19505 deprecated, the @code{passthrough} option should be used instead.
19506
19507 Numerical values are deprecated, and should be dropped in favor of
19508 symbolic constants.
19509
19510 @item passthrough
19511 Do not apply the transposition if the input geometry matches the one
19512 specified by the specified value. It accepts the following values:
19513 @table @samp
19514 @item none
19515 Always apply transposition.
19516 @item portrait
19517 Preserve portrait geometry (when @var{height} >= @var{width}).
19518 @item landscape
19519 Preserve landscape geometry (when @var{width} >= @var{height}).
19520 @end table
19521
19522 Default value is @code{none}.
19523 @end table
19524
19525 For example to rotate by 90 degrees clockwise and preserve portrait
19526 layout:
19527 @example
19528 transpose=dir=1:passthrough=portrait
19529 @end example
19530
19531 The command above can also be specified as:
19532 @example
19533 transpose=1:portrait
19534 @end example
19535
19536 @section transpose_npp
19537
19538 Transpose rows with columns in the input video and optionally flip it.
19539 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
19540
19541 It accepts the following parameters:
19542
19543 @table @option
19544
19545 @item dir
19546 Specify the transposition direction.
19547
19548 Can assume the following values:
19549 @table @samp
19550 @item cclock_flip
19551 Rotate by 90 degrees counterclockwise and vertically flip. (default)
19552
19553 @item clock
19554 Rotate by 90 degrees clockwise.
19555
19556 @item cclock
19557 Rotate by 90 degrees counterclockwise.
19558
19559 @item clock_flip
19560 Rotate by 90 degrees clockwise and vertically flip.
19561 @end table
19562
19563 @item passthrough
19564 Do not apply the transposition if the input geometry matches the one
19565 specified by the specified value. It accepts the following values:
19566 @table @samp
19567 @item none
19568 Always apply transposition. (default)
19569 @item portrait
19570 Preserve portrait geometry (when @var{height} >= @var{width}).
19571 @item landscape
19572 Preserve landscape geometry (when @var{width} >= @var{height}).
19573 @end table
19574
19575 @end table
19576
19577 @section trim
19578 Trim the input so that the output contains one continuous subpart of the input.
19579
19580 It accepts the following parameters:
19581 @table @option
19582 @item start
19583 Specify the time of the start of the kept section, i.e. the frame with the
19584 timestamp @var{start} will be the first frame in the output.
19585
19586 @item end
19587 Specify the time of the first frame that will be dropped, i.e. the frame
19588 immediately preceding the one with the timestamp @var{end} will be the last
19589 frame in the output.
19590
19591 @item start_pts
19592 This is the same as @var{start}, except this option sets the start timestamp
19593 in timebase units instead of seconds.
19594
19595 @item end_pts
19596 This is the same as @var{end}, except this option sets the end timestamp
19597 in timebase units instead of seconds.
19598
19599 @item duration
19600 The maximum duration of the output in seconds.
19601
19602 @item start_frame
19603 The number of the first frame that should be passed to the output.
19604
19605 @item end_frame
19606 The number of the first frame that should be dropped.
19607 @end table
19608
19609 @option{start}, @option{end}, and @option{duration} are expressed as time
19610 duration specifications; see
19611 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19612 for the accepted syntax.
19613
19614 Note that the first two sets of the start/end options and the @option{duration}
19615 option look at the frame timestamp, while the _frame variants simply count the
19616 frames that pass through the filter. Also note that this filter does not modify
19617 the timestamps. If you wish for the output timestamps to start at zero, insert a
19618 setpts filter after the trim filter.
19619
19620 If multiple start or end options are set, this filter tries to be greedy and
19621 keep all the frames that match at least one of the specified constraints. To keep
19622 only the part that matches all the constraints at once, chain multiple trim
19623 filters.
19624
19625 The defaults are such that all the input is kept. So it is possible to set e.g.
19626 just the end values to keep everything before the specified time.
19627
19628 Examples:
19629 @itemize
19630 @item
19631 Drop everything except the second minute of input:
19632 @example
19633 ffmpeg -i INPUT -vf trim=60:120
19634 @end example
19635
19636 @item
19637 Keep only the first second:
19638 @example
19639 ffmpeg -i INPUT -vf trim=duration=1
19640 @end example
19641
19642 @end itemize
19643
19644 @section unpremultiply
19645 Apply alpha unpremultiply effect to input video stream using first plane
19646 of second stream as alpha.
19647
19648 Both streams must have same dimensions and same pixel format.
19649
19650 The filter accepts the following option:
19651
19652 @table @option
19653 @item planes
19654 Set which planes will be processed, unprocessed planes will be copied.
19655 By default value 0xf, all planes will be processed.
19656
19657 If the format has 1 or 2 components, then luma is bit 0.
19658 If the format has 3 or 4 components:
19659 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
19660 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
19661 If present, the alpha channel is always the last bit.
19662
19663 @item inplace
19664 Do not require 2nd input for processing, instead use alpha plane from input stream.
19665 @end table
19666
19667 @anchor{unsharp}
19668 @section unsharp
19669
19670 Sharpen or blur the input video.
19671
19672 It accepts the following parameters:
19673
19674 @table @option
19675 @item luma_msize_x, lx
19676 Set the luma matrix horizontal size. It must be an odd integer between
19677 3 and 23. The default value is 5.
19678
19679 @item luma_msize_y, ly
19680 Set the luma matrix vertical size. It must be an odd integer between 3
19681 and 23. The default value is 5.
19682
19683 @item luma_amount, la
19684 Set the luma effect strength. It must be a floating point number, reasonable
19685 values lay between -1.5 and 1.5.
19686
19687 Negative values will blur the input video, while positive values will
19688 sharpen it, a value of zero will disable the effect.
19689
19690 Default value is 1.0.
19691
19692 @item chroma_msize_x, cx
19693 Set the chroma matrix horizontal size. It must be an odd integer
19694 between 3 and 23. The default value is 5.
19695
19696 @item chroma_msize_y, cy
19697 Set the chroma matrix vertical size. It must be an odd integer
19698 between 3 and 23. The default value is 5.
19699
19700 @item chroma_amount, ca
19701 Set the chroma effect strength. It must be a floating point number, reasonable
19702 values lay between -1.5 and 1.5.
19703
19704 Negative values will blur the input video, while positive values will
19705 sharpen it, a value of zero will disable the effect.
19706
19707 Default value is 0.0.
19708
19709 @end table
19710
19711 All parameters are optional and default to the equivalent of the
19712 string '5:5:1.0:5:5:0.0'.
19713
19714 @subsection Examples
19715
19716 @itemize
19717 @item
19718 Apply strong luma sharpen effect:
19719 @example
19720 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
19721 @end example
19722
19723 @item
19724 Apply a strong blur of both luma and chroma parameters:
19725 @example
19726 unsharp=7:7:-2:7:7:-2
19727 @end example
19728 @end itemize
19729
19730 @anchor{untile}
19731 @section untile
19732
19733 Decompose a video made of tiled images into the individual images.
19734
19735 The frame rate of the output video is the frame rate of the input video
19736 multiplied by the number of tiles.
19737
19738 This filter does the reverse of @ref{tile}.
19739
19740 The filter accepts the following options:
19741
19742 @table @option
19743
19744 @item layout
19745 Set the grid size (i.e. the number of lines and columns). For the syntax of
19746 this option, check the
19747 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19748 @end table
19749
19750 @subsection Examples
19751
19752 @itemize
19753 @item
19754 Produce a 1-second video from a still image file made of 25 frames stacked
19755 vertically, like an analogic film reel:
19756 @example
19757 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
19758 @end example
19759 @end itemize
19760
19761 @section uspp
19762
19763 Apply ultra slow/simple postprocessing filter that compresses and decompresses
19764 the image at several (or - in the case of @option{quality} level @code{8} - all)
19765 shifts and average the results.
19766
19767 The way this differs from the behavior of spp is that uspp actually encodes &
19768 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
19769 DCT similar to MJPEG.
19770
19771 The filter accepts the following options:
19772
19773 @table @option
19774 @item quality
19775 Set quality. This option defines the number of levels for averaging. It accepts
19776 an integer in the range 0-8. If set to @code{0}, the filter will have no
19777 effect. A value of @code{8} means the higher quality. For each increment of
19778 that value the speed drops by a factor of approximately 2.  Default value is
19779 @code{3}.
19780
19781 @item qp
19782 Force a constant quantization parameter. If not set, the filter will use the QP
19783 from the video stream (if available).
19784 @end table
19785
19786 @section v360
19787
19788 Convert 360 videos between various formats.
19789
19790 The filter accepts the following options:
19791
19792 @table @option
19793
19794 @item input
19795 @item output
19796 Set format of the input/output video.
19797
19798 Available formats:
19799
19800 @table @samp
19801
19802 @item e
19803 @item equirect
19804 Equirectangular projection.
19805
19806 @item c3x2
19807 @item c6x1
19808 @item c1x6
19809 Cubemap with 3x2/6x1/1x6 layout.
19810
19811 Format specific options:
19812
19813 @table @option
19814 @item in_pad
19815 @item out_pad
19816 Set padding proportion for the input/output cubemap. Values in decimals.
19817
19818 Example values:
19819 @table @samp
19820 @item 0
19821 No padding.
19822 @item 0.01
19823 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)
19824 @end table
19825
19826 Default value is @b{@samp{0}}.
19827 Maximum value is @b{@samp{0.1}}.
19828
19829 @item fin_pad
19830 @item fout_pad
19831 Set fixed padding for the input/output cubemap. Values in pixels.
19832
19833 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
19834
19835 @item in_forder
19836 @item out_forder
19837 Set order of faces for the input/output cubemap. Choose one direction for each position.
19838
19839 Designation of directions:
19840 @table @samp
19841 @item r
19842 right
19843 @item l
19844 left
19845 @item u
19846 up
19847 @item d
19848 down
19849 @item f
19850 forward
19851 @item b
19852 back
19853 @end table
19854
19855 Default value is @b{@samp{rludfb}}.
19856
19857 @item in_frot
19858 @item out_frot
19859 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
19860
19861 Designation of angles:
19862 @table @samp
19863 @item 0
19864 0 degrees clockwise
19865 @item 1
19866 90 degrees clockwise
19867 @item 2
19868 180 degrees clockwise
19869 @item 3
19870 270 degrees clockwise
19871 @end table
19872
19873 Default value is @b{@samp{000000}}.
19874 @end table
19875
19876 @item eac
19877 Equi-Angular Cubemap.
19878
19879 @item flat
19880 @item gnomonic
19881 @item rectilinear
19882 Regular video.
19883
19884 Format specific options:
19885 @table @option
19886 @item h_fov
19887 @item v_fov
19888 @item d_fov
19889 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19890
19891 If diagonal field of view is set it overrides horizontal and vertical field of view.
19892
19893 @item ih_fov
19894 @item iv_fov
19895 @item id_fov
19896 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19897
19898 If diagonal field of view is set it overrides horizontal and vertical field of view.
19899 @end table
19900
19901 @item dfisheye
19902 Dual fisheye.
19903
19904 Format specific options:
19905 @table @option
19906 @item h_fov
19907 @item v_fov
19908 @item d_fov
19909 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19910
19911 If diagonal field of view is set it overrides horizontal and vertical field of view.
19912
19913 @item ih_fov
19914 @item iv_fov
19915 @item id_fov
19916 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19917
19918 If diagonal field of view is set it overrides horizontal and vertical field of view.
19919 @end table
19920
19921 @item barrel
19922 @item fb
19923 @item barrelsplit
19924 Facebook's 360 formats.
19925
19926 @item sg
19927 Stereographic format.
19928
19929 Format specific options:
19930 @table @option
19931 @item h_fov
19932 @item v_fov
19933 @item d_fov
19934 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19935
19936 If diagonal field of view is set it overrides horizontal and vertical field of view.
19937
19938 @item ih_fov
19939 @item iv_fov
19940 @item id_fov
19941 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19942
19943 If diagonal field of view is set it overrides horizontal and vertical field of view.
19944 @end table
19945
19946 @item mercator
19947 Mercator format.
19948
19949 @item ball
19950 Ball format, gives significant distortion toward the back.
19951
19952 @item hammer
19953 Hammer-Aitoff map projection format.
19954
19955 @item sinusoidal
19956 Sinusoidal map projection format.
19957
19958 @item fisheye
19959 Fisheye projection.
19960
19961 Format specific options:
19962 @table @option
19963 @item h_fov
19964 @item v_fov
19965 @item d_fov
19966 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19967
19968 If diagonal field of view is set it overrides horizontal and vertical field of view.
19969
19970 @item ih_fov
19971 @item iv_fov
19972 @item id_fov
19973 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19974
19975 If diagonal field of view is set it overrides horizontal and vertical field of view.
19976 @end table
19977
19978 @item pannini
19979 Pannini projection.
19980
19981 Format specific options:
19982 @table @option
19983 @item h_fov
19984 Set output pannini parameter.
19985
19986 @item ih_fov
19987 Set input pannini parameter.
19988 @end table
19989
19990 @item cylindrical
19991 Cylindrical projection.
19992
19993 Format specific options:
19994 @table @option
19995 @item h_fov
19996 @item v_fov
19997 @item d_fov
19998 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19999
20000 If diagonal field of view is set it overrides horizontal and vertical field of view.
20001
20002 @item ih_fov
20003 @item iv_fov
20004 @item id_fov
20005 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20006
20007 If diagonal field of view is set it overrides horizontal and vertical field of view.
20008 @end table
20009
20010 @item perspective
20011 Perspective projection. @i{(output only)}
20012
20013 Format specific options:
20014 @table @option
20015 @item v_fov
20016 Set perspective parameter.
20017 @end table
20018
20019 @item tetrahedron
20020 Tetrahedron projection.
20021
20022 @item tsp
20023 Truncated square pyramid projection.
20024
20025 @item he
20026 @item hequirect
20027 Half equirectangular projection.
20028
20029 @item equisolid
20030 Equisolid format.
20031
20032 Format specific options:
20033 @table @option
20034 @item h_fov
20035 @item v_fov
20036 @item d_fov
20037 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20038
20039 If diagonal field of view is set it overrides horizontal and vertical field of view.
20040
20041 @item ih_fov
20042 @item iv_fov
20043 @item id_fov
20044 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20045
20046 If diagonal field of view is set it overrides horizontal and vertical field of view.
20047 @end table
20048
20049 @item og
20050 Orthographic format.
20051
20052 Format specific options:
20053 @table @option
20054 @item h_fov
20055 @item v_fov
20056 @item d_fov
20057 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20058
20059 If diagonal field of view is set it overrides horizontal and vertical field of view.
20060
20061 @item ih_fov
20062 @item iv_fov
20063 @item id_fov
20064 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20065
20066 If diagonal field of view is set it overrides horizontal and vertical field of view.
20067 @end table
20068
20069 @item octahedron
20070 Octahedron projection.
20071 @end table
20072
20073 @item interp
20074 Set interpolation method.@*
20075 @i{Note: more complex interpolation methods require much more memory to run.}
20076
20077 Available methods:
20078
20079 @table @samp
20080 @item near
20081 @item nearest
20082 Nearest neighbour.
20083 @item line
20084 @item linear
20085 Bilinear interpolation.
20086 @item lagrange9
20087 Lagrange9 interpolation.
20088 @item cube
20089 @item cubic
20090 Bicubic interpolation.
20091 @item lanc
20092 @item lanczos
20093 Lanczos interpolation.
20094 @item sp16
20095 @item spline16
20096 Spline16 interpolation.
20097 @item gauss
20098 @item gaussian
20099 Gaussian interpolation.
20100 @item mitchell
20101 Mitchell interpolation.
20102 @end table
20103
20104 Default value is @b{@samp{line}}.
20105
20106 @item w
20107 @item h
20108 Set the output video resolution.
20109
20110 Default resolution depends on formats.
20111
20112 @item in_stereo
20113 @item out_stereo
20114 Set the input/output stereo format.
20115
20116 @table @samp
20117 @item 2d
20118 2D mono
20119 @item sbs
20120 Side by side
20121 @item tb
20122 Top bottom
20123 @end table
20124
20125 Default value is @b{@samp{2d}} for input and output format.
20126
20127 @item yaw
20128 @item pitch
20129 @item roll
20130 Set rotation for the output video. Values in degrees.
20131
20132 @item rorder
20133 Set rotation order for the output video. Choose one item for each position.
20134
20135 @table @samp
20136 @item y, Y
20137 yaw
20138 @item p, P
20139 pitch
20140 @item r, R
20141 roll
20142 @end table
20143
20144 Default value is @b{@samp{ypr}}.
20145
20146 @item h_flip
20147 @item v_flip
20148 @item d_flip
20149 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
20150
20151 @item ih_flip
20152 @item iv_flip
20153 Set if input video is flipped horizontally/vertically. Boolean values.
20154
20155 @item in_trans
20156 Set if input video is transposed. Boolean value, by default disabled.
20157
20158 @item out_trans
20159 Set if output video needs to be transposed. Boolean value, by default disabled.
20160
20161 @item alpha_mask
20162 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
20163 @end table
20164
20165 @subsection Examples
20166
20167 @itemize
20168 @item
20169 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
20170 @example
20171 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
20172 @end example
20173 @item
20174 Extract back view of Equi-Angular Cubemap:
20175 @example
20176 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
20177 @end example
20178 @item
20179 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
20180 @example
20181 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
20182 @end example
20183 @end itemize
20184
20185 @subsection Commands
20186
20187 This filter supports subset of above options as @ref{commands}.
20188
20189 @section vaguedenoiser
20190
20191 Apply a wavelet based denoiser.
20192
20193 It transforms each frame from the video input into the wavelet domain,
20194 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
20195 the obtained coefficients. It does an inverse wavelet transform after.
20196 Due to wavelet properties, it should give a nice smoothed result, and
20197 reduced noise, without blurring picture features.
20198
20199 This filter accepts the following options:
20200
20201 @table @option
20202 @item threshold
20203 The filtering strength. The higher, the more filtered the video will be.
20204 Hard thresholding can use a higher threshold than soft thresholding
20205 before the video looks overfiltered. Default value is 2.
20206
20207 @item method
20208 The filtering method the filter will use.
20209
20210 It accepts the following values:
20211 @table @samp
20212 @item hard
20213 All values under the threshold will be zeroed.
20214
20215 @item soft
20216 All values under the threshold will be zeroed. All values above will be
20217 reduced by the threshold.
20218
20219 @item garrote
20220 Scales or nullifies coefficients - intermediary between (more) soft and
20221 (less) hard thresholding.
20222 @end table
20223
20224 Default is garrote.
20225
20226 @item nsteps
20227 Number of times, the wavelet will decompose the picture. Picture can't
20228 be decomposed beyond a particular point (typically, 8 for a 640x480
20229 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
20230
20231 @item percent
20232 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
20233
20234 @item planes
20235 A list of the planes to process. By default all planes are processed.
20236
20237 @item type
20238 The threshold type the filter will use.
20239
20240 It accepts the following values:
20241 @table @samp
20242 @item universal
20243 Threshold used is same for all decompositions.
20244
20245 @item bayes
20246 Threshold used depends also on each decomposition coefficients.
20247 @end table
20248
20249 Default is universal.
20250 @end table
20251
20252 @section vectorscope
20253
20254 Display 2 color component values in the two dimensional graph (which is called
20255 a vectorscope).
20256
20257 This filter accepts the following options:
20258
20259 @table @option
20260 @item mode, m
20261 Set vectorscope mode.
20262
20263 It accepts the following values:
20264 @table @samp
20265 @item gray
20266 @item tint
20267 Gray values are displayed on graph, higher brightness means more pixels have
20268 same component color value on location in graph. This is the default mode.
20269
20270 @item color
20271 Gray values are displayed on graph. Surrounding pixels values which are not
20272 present in video frame are drawn in gradient of 2 color components which are
20273 set by option @code{x} and @code{y}. The 3rd color component is static.
20274
20275 @item color2
20276 Actual color components values present in video frame are displayed on graph.
20277
20278 @item color3
20279 Similar as color2 but higher frequency of same values @code{x} and @code{y}
20280 on graph increases value of another color component, which is luminance by
20281 default values of @code{x} and @code{y}.
20282
20283 @item color4
20284 Actual colors present in video frame are displayed on graph. If two different
20285 colors map to same position on graph then color with higher value of component
20286 not present in graph is picked.
20287
20288 @item color5
20289 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
20290 component picked from radial gradient.
20291 @end table
20292
20293 @item x
20294 Set which color component will be represented on X-axis. Default is @code{1}.
20295
20296 @item y
20297 Set which color component will be represented on Y-axis. Default is @code{2}.
20298
20299 @item intensity, i
20300 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
20301 of color component which represents frequency of (X, Y) location in graph.
20302
20303 @item envelope, e
20304 @table @samp
20305 @item none
20306 No envelope, this is default.
20307
20308 @item instant
20309 Instant envelope, even darkest single pixel will be clearly highlighted.
20310
20311 @item peak
20312 Hold maximum and minimum values presented in graph over time. This way you
20313 can still spot out of range values without constantly looking at vectorscope.
20314
20315 @item peak+instant
20316 Peak and instant envelope combined together.
20317 @end table
20318
20319 @item graticule, g
20320 Set what kind of graticule to draw.
20321 @table @samp
20322 @item none
20323 @item green
20324 @item color
20325 @item invert
20326 @end table
20327
20328 @item opacity, o
20329 Set graticule opacity.
20330
20331 @item flags, f
20332 Set graticule flags.
20333
20334 @table @samp
20335 @item white
20336 Draw graticule for white point.
20337
20338 @item black
20339 Draw graticule for black point.
20340
20341 @item name
20342 Draw color points short names.
20343 @end table
20344
20345 @item bgopacity, b
20346 Set background opacity.
20347
20348 @item lthreshold, l
20349 Set low threshold for color component not represented on X or Y axis.
20350 Values lower than this value will be ignored. Default is 0.
20351 Note this value is multiplied with actual max possible value one pixel component
20352 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
20353 is 0.1 * 255 = 25.
20354
20355 @item hthreshold, h
20356 Set high threshold for color component not represented on X or Y axis.
20357 Values higher than this value will be ignored. Default is 1.
20358 Note this value is multiplied with actual max possible value one pixel component
20359 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
20360 is 0.9 * 255 = 230.
20361
20362 @item colorspace, c
20363 Set what kind of colorspace to use when drawing graticule.
20364 @table @samp
20365 @item auto
20366 @item 601
20367 @item 709
20368 @end table
20369 Default is auto.
20370
20371 @item tint0, t0
20372 @item tint1, t1
20373 Set color tint for gray/tint vectorscope mode. By default both options are zero.
20374 This means no tint, and output will remain gray.
20375 @end table
20376
20377 @anchor{vidstabdetect}
20378 @section vidstabdetect
20379
20380 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
20381 @ref{vidstabtransform} for pass 2.
20382
20383 This filter generates a file with relative translation and rotation
20384 transform information about subsequent frames, which is then used by
20385 the @ref{vidstabtransform} filter.
20386
20387 To enable compilation of this filter you need to configure FFmpeg with
20388 @code{--enable-libvidstab}.
20389
20390 This filter accepts the following options:
20391
20392 @table @option
20393 @item result
20394 Set the path to the file used to write the transforms information.
20395 Default value is @file{transforms.trf}.
20396
20397 @item shakiness
20398 Set how shaky the video is and how quick the camera is. It accepts an
20399 integer in the range 1-10, a value of 1 means little shakiness, a
20400 value of 10 means strong shakiness. Default value is 5.
20401
20402 @item accuracy
20403 Set the accuracy of the detection process. It must be a value in the
20404 range 1-15. A value of 1 means low accuracy, a value of 15 means high
20405 accuracy. Default value is 15.
20406
20407 @item stepsize
20408 Set stepsize of the search process. The region around minimum is
20409 scanned with 1 pixel resolution. Default value is 6.
20410
20411 @item mincontrast
20412 Set minimum contrast. Below this value a local measurement field is
20413 discarded. Must be a floating point value in the range 0-1. Default
20414 value is 0.3.
20415
20416 @item tripod
20417 Set reference frame number for tripod mode.
20418
20419 If enabled, the motion of the frames is compared to a reference frame
20420 in the filtered stream, identified by the specified number. The idea
20421 is to compensate all movements in a more-or-less static scene and keep
20422 the camera view absolutely still.
20423
20424 If set to 0, it is disabled. The frames are counted starting from 1.
20425
20426 @item show
20427 Show fields and transforms in the resulting frames. It accepts an
20428 integer in the range 0-2. Default value is 0, which disables any
20429 visualization.
20430 @end table
20431
20432 @subsection Examples
20433
20434 @itemize
20435 @item
20436 Use default values:
20437 @example
20438 vidstabdetect
20439 @end example
20440
20441 @item
20442 Analyze strongly shaky movie and put the results in file
20443 @file{mytransforms.trf}:
20444 @example
20445 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
20446 @end example
20447
20448 @item
20449 Visualize the result of internal transformations in the resulting
20450 video:
20451 @example
20452 vidstabdetect=show=1
20453 @end example
20454
20455 @item
20456 Analyze a video with medium shakiness using @command{ffmpeg}:
20457 @example
20458 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
20459 @end example
20460 @end itemize
20461
20462 @anchor{vidstabtransform}
20463 @section vidstabtransform
20464
20465 Video stabilization/deshaking: pass 2 of 2,
20466 see @ref{vidstabdetect} for pass 1.
20467
20468 Read a file with transform information for each frame and
20469 apply/compensate them. Together with the @ref{vidstabdetect}
20470 filter this can be used to deshake videos. See also
20471 @url{http://public.hronopik.de/vid.stab}. It is important to also use
20472 the @ref{unsharp} filter, see below.
20473
20474 To enable compilation of this filter you need to configure FFmpeg with
20475 @code{--enable-libvidstab}.
20476
20477 @subsection Options
20478
20479 @table @option
20480 @item input
20481 Set path to the file used to read the transforms. Default value is
20482 @file{transforms.trf}.
20483
20484 @item smoothing
20485 Set the number of frames (value*2 + 1) used for lowpass filtering the
20486 camera movements. Default value is 10.
20487
20488 For example a number of 10 means that 21 frames are used (10 in the
20489 past and 10 in the future) to smoothen the motion in the video. A
20490 larger value leads to a smoother video, but limits the acceleration of
20491 the camera (pan/tilt movements). 0 is a special case where a static
20492 camera is simulated.
20493
20494 @item optalgo
20495 Set the camera path optimization algorithm.
20496
20497 Accepted values are:
20498 @table @samp
20499 @item gauss
20500 gaussian kernel low-pass filter on camera motion (default)
20501 @item avg
20502 averaging on transformations
20503 @end table
20504
20505 @item maxshift
20506 Set maximal number of pixels to translate frames. Default value is -1,
20507 meaning no limit.
20508
20509 @item maxangle
20510 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
20511 value is -1, meaning no limit.
20512
20513 @item crop
20514 Specify how to deal with borders that may be visible due to movement
20515 compensation.
20516
20517 Available values are:
20518 @table @samp
20519 @item keep
20520 keep image information from previous frame (default)
20521 @item black
20522 fill the border black
20523 @end table
20524
20525 @item invert
20526 Invert transforms if set to 1. Default value is 0.
20527
20528 @item relative
20529 Consider transforms as relative to previous frame if set to 1,
20530 absolute if set to 0. Default value is 0.
20531
20532 @item zoom
20533 Set percentage to zoom. A positive value will result in a zoom-in
20534 effect, a negative value in a zoom-out effect. Default value is 0 (no
20535 zoom).
20536
20537 @item optzoom
20538 Set optimal zooming to avoid borders.
20539
20540 Accepted values are:
20541 @table @samp
20542 @item 0
20543 disabled
20544 @item 1
20545 optimal static zoom value is determined (only very strong movements
20546 will lead to visible borders) (default)
20547 @item 2
20548 optimal adaptive zoom value is determined (no borders will be
20549 visible), see @option{zoomspeed}
20550 @end table
20551
20552 Note that the value given at zoom is added to the one calculated here.
20553
20554 @item zoomspeed
20555 Set percent to zoom maximally each frame (enabled when
20556 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
20557 0.25.
20558
20559 @item interpol
20560 Specify type of interpolation.
20561
20562 Available values are:
20563 @table @samp
20564 @item no
20565 no interpolation
20566 @item linear
20567 linear only horizontal
20568 @item bilinear
20569 linear in both directions (default)
20570 @item bicubic
20571 cubic in both directions (slow)
20572 @end table
20573
20574 @item tripod
20575 Enable virtual tripod mode if set to 1, which is equivalent to
20576 @code{relative=0:smoothing=0}. Default value is 0.
20577
20578 Use also @code{tripod} option of @ref{vidstabdetect}.
20579
20580 @item debug
20581 Increase log verbosity if set to 1. Also the detected global motions
20582 are written to the temporary file @file{global_motions.trf}. Default
20583 value is 0.
20584 @end table
20585
20586 @subsection Examples
20587
20588 @itemize
20589 @item
20590 Use @command{ffmpeg} for a typical stabilization with default values:
20591 @example
20592 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
20593 @end example
20594
20595 Note the use of the @ref{unsharp} filter which is always recommended.
20596
20597 @item
20598 Zoom in a bit more and load transform data from a given file:
20599 @example
20600 vidstabtransform=zoom=5:input="mytransforms.trf"
20601 @end example
20602
20603 @item
20604 Smoothen the video even more:
20605 @example
20606 vidstabtransform=smoothing=30
20607 @end example
20608 @end itemize
20609
20610 @section vflip
20611
20612 Flip the input video vertically.
20613
20614 For example, to vertically flip a video with @command{ffmpeg}:
20615 @example
20616 ffmpeg -i in.avi -vf "vflip" out.avi
20617 @end example
20618
20619 @section vfrdet
20620
20621 Detect variable frame rate video.
20622
20623 This filter tries to detect if the input is variable or constant frame rate.
20624
20625 At end it will output number of frames detected as having variable delta pts,
20626 and ones with constant delta pts.
20627 If there was frames with variable delta, than it will also show min, max and
20628 average delta encountered.
20629
20630 @section vibrance
20631
20632 Boost or alter saturation.
20633
20634 The filter accepts the following options:
20635 @table @option
20636 @item intensity
20637 Set strength of boost if positive value or strength of alter if negative value.
20638 Default is 0. Allowed range is from -2 to 2.
20639
20640 @item rbal
20641 Set the red balance. Default is 1. Allowed range is from -10 to 10.
20642
20643 @item gbal
20644 Set the green balance. Default is 1. Allowed range is from -10 to 10.
20645
20646 @item bbal
20647 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
20648
20649 @item rlum
20650 Set the red luma coefficient.
20651
20652 @item glum
20653 Set the green luma coefficient.
20654
20655 @item blum
20656 Set the blue luma coefficient.
20657
20658 @item alternate
20659 If @code{intensity} is negative and this is set to 1, colors will change,
20660 otherwise colors will be less saturated, more towards gray.
20661 @end table
20662
20663 @subsection Commands
20664
20665 This filter supports the all above options as @ref{commands}.
20666
20667 @anchor{vignette}
20668 @section vignette
20669
20670 Make or reverse a natural vignetting effect.
20671
20672 The filter accepts the following options:
20673
20674 @table @option
20675 @item angle, a
20676 Set lens angle expression as a number of radians.
20677
20678 The value is clipped in the @code{[0,PI/2]} range.
20679
20680 Default value: @code{"PI/5"}
20681
20682 @item x0
20683 @item y0
20684 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
20685 by default.
20686
20687 @item mode
20688 Set forward/backward mode.
20689
20690 Available modes are:
20691 @table @samp
20692 @item forward
20693 The larger the distance from the central point, the darker the image becomes.
20694
20695 @item backward
20696 The larger the distance from the central point, the brighter the image becomes.
20697 This can be used to reverse a vignette effect, though there is no automatic
20698 detection to extract the lens @option{angle} and other settings (yet). It can
20699 also be used to create a burning effect.
20700 @end table
20701
20702 Default value is @samp{forward}.
20703
20704 @item eval
20705 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
20706
20707 It accepts the following values:
20708 @table @samp
20709 @item init
20710 Evaluate expressions only once during the filter initialization.
20711
20712 @item frame
20713 Evaluate expressions for each incoming frame. This is way slower than the
20714 @samp{init} mode since it requires all the scalers to be re-computed, but it
20715 allows advanced dynamic expressions.
20716 @end table
20717
20718 Default value is @samp{init}.
20719
20720 @item dither
20721 Set dithering to reduce the circular banding effects. Default is @code{1}
20722 (enabled).
20723
20724 @item aspect
20725 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
20726 Setting this value to the SAR of the input will make a rectangular vignetting
20727 following the dimensions of the video.
20728
20729 Default is @code{1/1}.
20730 @end table
20731
20732 @subsection Expressions
20733
20734 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
20735 following parameters.
20736
20737 @table @option
20738 @item w
20739 @item h
20740 input width and height
20741
20742 @item n
20743 the number of input frame, starting from 0
20744
20745 @item pts
20746 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
20747 @var{TB} units, NAN if undefined
20748
20749 @item r
20750 frame rate of the input video, NAN if the input frame rate is unknown
20751
20752 @item t
20753 the PTS (Presentation TimeStamp) of the filtered video frame,
20754 expressed in seconds, NAN if undefined
20755
20756 @item tb
20757 time base of the input video
20758 @end table
20759
20760
20761 @subsection Examples
20762
20763 @itemize
20764 @item
20765 Apply simple strong vignetting effect:
20766 @example
20767 vignette=PI/4
20768 @end example
20769
20770 @item
20771 Make a flickering vignetting:
20772 @example
20773 vignette='PI/4+random(1)*PI/50':eval=frame
20774 @end example
20775
20776 @end itemize
20777
20778 @section vmafmotion
20779
20780 Obtain the average VMAF motion score of a video.
20781 It is one of the component metrics of VMAF.
20782
20783 The obtained average motion score is printed through the logging system.
20784
20785 The filter accepts the following options:
20786
20787 @table @option
20788 @item stats_file
20789 If specified, the filter will use the named file to save the motion score of
20790 each frame with respect to the previous frame.
20791 When filename equals "-" the data is sent to standard output.
20792 @end table
20793
20794 Example:
20795 @example
20796 ffmpeg -i ref.mpg -vf vmafmotion -f null -
20797 @end example
20798
20799 @section vstack
20800 Stack input videos vertically.
20801
20802 All streams must be of same pixel format and of same width.
20803
20804 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
20805 to create same output.
20806
20807 The filter accepts the following options:
20808
20809 @table @option
20810 @item inputs
20811 Set number of input streams. Default is 2.
20812
20813 @item shortest
20814 If set to 1, force the output to terminate when the shortest input
20815 terminates. Default value is 0.
20816 @end table
20817
20818 @section w3fdif
20819
20820 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
20821 Deinterlacing Filter").
20822
20823 Based on the process described by Martin Weston for BBC R&D, and
20824 implemented based on the de-interlace algorithm written by Jim
20825 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
20826 uses filter coefficients calculated by BBC R&D.
20827
20828 This filter uses field-dominance information in frame to decide which
20829 of each pair of fields to place first in the output.
20830 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
20831
20832 There are two sets of filter coefficients, so called "simple"
20833 and "complex". Which set of filter coefficients is used can
20834 be set by passing an optional parameter:
20835
20836 @table @option
20837 @item filter
20838 Set the interlacing filter coefficients. Accepts one of the following values:
20839
20840 @table @samp
20841 @item simple
20842 Simple filter coefficient set.
20843 @item complex
20844 More-complex filter coefficient set.
20845 @end table
20846 Default value is @samp{complex}.
20847
20848 @item deint
20849 Specify which frames to deinterlace. Accepts one of the following values:
20850
20851 @table @samp
20852 @item all
20853 Deinterlace all frames,
20854 @item interlaced
20855 Only deinterlace frames marked as interlaced.
20856 @end table
20857
20858 Default value is @samp{all}.
20859 @end table
20860
20861 @section waveform
20862 Video waveform monitor.
20863
20864 The waveform monitor plots color component intensity. By default luminance
20865 only. Each column of the waveform corresponds to a column of pixels in the
20866 source video.
20867
20868 It accepts the following options:
20869
20870 @table @option
20871 @item mode, m
20872 Can be either @code{row}, or @code{column}. Default is @code{column}.
20873 In row mode, the graph on the left side represents color component value 0 and
20874 the right side represents value = 255. In column mode, the top side represents
20875 color component value = 0 and bottom side represents value = 255.
20876
20877 @item intensity, i
20878 Set intensity. Smaller values are useful to find out how many values of the same
20879 luminance are distributed across input rows/columns.
20880 Default value is @code{0.04}. Allowed range is [0, 1].
20881
20882 @item mirror, r
20883 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
20884 In mirrored mode, higher values will be represented on the left
20885 side for @code{row} mode and at the top for @code{column} mode. Default is
20886 @code{1} (mirrored).
20887
20888 @item display, d
20889 Set display mode.
20890 It accepts the following values:
20891 @table @samp
20892 @item overlay
20893 Presents information identical to that in the @code{parade}, except
20894 that the graphs representing color components are superimposed directly
20895 over one another.
20896
20897 This display mode makes it easier to spot relative differences or similarities
20898 in overlapping areas of the color components that are supposed to be identical,
20899 such as neutral whites, grays, or blacks.
20900
20901 @item stack
20902 Display separate graph for the color components side by side in
20903 @code{row} mode or one below the other in @code{column} mode.
20904
20905 @item parade
20906 Display separate graph for the color components side by side in
20907 @code{column} mode or one below the other in @code{row} mode.
20908
20909 Using this display mode makes it easy to spot color casts in the highlights
20910 and shadows of an image, by comparing the contours of the top and the bottom
20911 graphs of each waveform. Since whites, grays, and blacks are characterized
20912 by exactly equal amounts of red, green, and blue, neutral areas of the picture
20913 should display three waveforms of roughly equal width/height. If not, the
20914 correction is easy to perform by making level adjustments the three waveforms.
20915 @end table
20916 Default is @code{stack}.
20917
20918 @item components, c
20919 Set which color components to display. Default is 1, which means only luminance
20920 or red color component if input is in RGB colorspace. If is set for example to
20921 7 it will display all 3 (if) available color components.
20922
20923 @item envelope, e
20924 @table @samp
20925 @item none
20926 No envelope, this is default.
20927
20928 @item instant
20929 Instant envelope, minimum and maximum values presented in graph will be easily
20930 visible even with small @code{step} value.
20931
20932 @item peak
20933 Hold minimum and maximum values presented in graph across time. This way you
20934 can still spot out of range values without constantly looking at waveforms.
20935
20936 @item peak+instant
20937 Peak and instant envelope combined together.
20938 @end table
20939
20940 @item filter, f
20941 @table @samp
20942 @item lowpass
20943 No filtering, this is default.
20944
20945 @item flat
20946 Luma and chroma combined together.
20947
20948 @item aflat
20949 Similar as above, but shows difference between blue and red chroma.
20950
20951 @item xflat
20952 Similar as above, but use different colors.
20953
20954 @item yflat
20955 Similar as above, but again with different colors.
20956
20957 @item chroma
20958 Displays only chroma.
20959
20960 @item color
20961 Displays actual color value on waveform.
20962
20963 @item acolor
20964 Similar as above, but with luma showing frequency of chroma values.
20965 @end table
20966
20967 @item graticule, g
20968 Set which graticule to display.
20969
20970 @table @samp
20971 @item none
20972 Do not display graticule.
20973
20974 @item green
20975 Display green graticule showing legal broadcast ranges.
20976
20977 @item orange
20978 Display orange graticule showing legal broadcast ranges.
20979
20980 @item invert
20981 Display invert graticule showing legal broadcast ranges.
20982 @end table
20983
20984 @item opacity, o
20985 Set graticule opacity.
20986
20987 @item flags, fl
20988 Set graticule flags.
20989
20990 @table @samp
20991 @item numbers
20992 Draw numbers above lines. By default enabled.
20993
20994 @item dots
20995 Draw dots instead of lines.
20996 @end table
20997
20998 @item scale, s
20999 Set scale used for displaying graticule.
21000
21001 @table @samp
21002 @item digital
21003 @item millivolts
21004 @item ire
21005 @end table
21006 Default is digital.
21007
21008 @item bgopacity, b
21009 Set background opacity.
21010
21011 @item tint0, t0
21012 @item tint1, t1
21013 Set tint for output.
21014 Only used with lowpass filter and when display is not overlay and input
21015 pixel formats are not RGB.
21016 @end table
21017
21018 @section weave, doubleweave
21019
21020 The @code{weave} takes a field-based video input and join
21021 each two sequential fields into single frame, producing a new double
21022 height clip with half the frame rate and half the frame count.
21023
21024 The @code{doubleweave} works same as @code{weave} but without
21025 halving frame rate and frame count.
21026
21027 It accepts the following option:
21028
21029 @table @option
21030 @item first_field
21031 Set first field. Available values are:
21032
21033 @table @samp
21034 @item top, t
21035 Set the frame as top-field-first.
21036
21037 @item bottom, b
21038 Set the frame as bottom-field-first.
21039 @end table
21040 @end table
21041
21042 @subsection Examples
21043
21044 @itemize
21045 @item
21046 Interlace video using @ref{select} and @ref{separatefields} filter:
21047 @example
21048 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
21049 @end example
21050 @end itemize
21051
21052 @section xbr
21053 Apply the xBR high-quality magnification filter which is designed for pixel
21054 art. It follows a set of edge-detection rules, see
21055 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
21056
21057 It accepts the following option:
21058
21059 @table @option
21060 @item n
21061 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
21062 @code{3xBR} and @code{4} for @code{4xBR}.
21063 Default is @code{3}.
21064 @end table
21065
21066 @section xfade
21067
21068 Apply cross fade from one input video stream to another input video stream.
21069 The cross fade is applied for specified duration.
21070
21071 The filter accepts the following options:
21072
21073 @table @option
21074 @item transition
21075 Set one of available transition effects:
21076
21077 @table @samp
21078 @item custom
21079 @item fade
21080 @item wipeleft
21081 @item wiperight
21082 @item wipeup
21083 @item wipedown
21084 @item slideleft
21085 @item slideright
21086 @item slideup
21087 @item slidedown
21088 @item circlecrop
21089 @item rectcrop
21090 @item distance
21091 @item fadeblack
21092 @item fadewhite
21093 @item radial
21094 @item smoothleft
21095 @item smoothright
21096 @item smoothup
21097 @item smoothdown
21098 @item circleopen
21099 @item circleclose
21100 @item vertopen
21101 @item vertclose
21102 @item horzopen
21103 @item horzclose
21104 @item dissolve
21105 @item pixelize
21106 @item diagtl
21107 @item diagtr
21108 @item diagbl
21109 @item diagbr
21110 @item hlslice
21111 @item hrslice
21112 @item vuslice
21113 @item vdslice
21114 @item hblur
21115 @item fadegrays
21116 @item wipetl
21117 @item wipetr
21118 @item wipebl
21119 @item wipebr
21120 @item squeezeh
21121 @item squeezev
21122 @end table
21123 Default transition effect is fade.
21124
21125 @item duration
21126 Set cross fade duration in seconds.
21127 Default duration is 1 second.
21128
21129 @item offset
21130 Set cross fade start relative to first input stream in seconds.
21131 Default offset is 0.
21132
21133 @item expr
21134 Set expression for custom transition effect.
21135
21136 The expressions can use the following variables and functions:
21137
21138 @table @option
21139 @item X
21140 @item Y
21141 The coordinates of the current sample.
21142
21143 @item W
21144 @item H
21145 The width and height of the image.
21146
21147 @item P
21148 Progress of transition effect.
21149
21150 @item PLANE
21151 Currently processed plane.
21152
21153 @item A
21154 Return value of first input at current location and plane.
21155
21156 @item B
21157 Return value of second input at current location and plane.
21158
21159 @item a0(x, y)
21160 @item a1(x, y)
21161 @item a2(x, y)
21162 @item a3(x, y)
21163 Return the value of the pixel at location (@var{x},@var{y}) of the
21164 first/second/third/fourth component of first input.
21165
21166 @item b0(x, y)
21167 @item b1(x, y)
21168 @item b2(x, y)
21169 @item b3(x, y)
21170 Return the value of the pixel at location (@var{x},@var{y}) of the
21171 first/second/third/fourth component of second input.
21172 @end table
21173 @end table
21174
21175 @subsection Examples
21176
21177 @itemize
21178 @item
21179 Cross fade from one input video to another input video, with fade transition and duration of transition
21180 of 2 seconds starting at offset of 5 seconds:
21181 @example
21182 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
21183 @end example
21184 @end itemize
21185
21186 @section xmedian
21187 Pick median pixels from several input videos.
21188
21189 The filter accepts the following options:
21190
21191 @table @option
21192 @item inputs
21193 Set number of inputs.
21194 Default is 3. Allowed range is from 3 to 255.
21195 If number of inputs is even number, than result will be mean value between two median values.
21196
21197 @item planes
21198 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
21199
21200 @item percentile
21201 Set median percentile. Default value is @code{0.5}.
21202 Default value of @code{0.5} will pick always median values, while @code{0} will pick
21203 minimum values, and @code{1} maximum values.
21204 @end table
21205
21206 @section xstack
21207 Stack video inputs into custom layout.
21208
21209 All streams must be of same pixel format.
21210
21211 The filter accepts the following options:
21212
21213 @table @option
21214 @item inputs
21215 Set number of input streams. Default is 2.
21216
21217 @item layout
21218 Specify layout of inputs.
21219 This option requires the desired layout configuration to be explicitly set by the user.
21220 This sets position of each video input in output. Each input
21221 is separated by '|'.
21222 The first number represents the column, and the second number represents the row.
21223 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
21224 where X is video input from which to take width or height.
21225 Multiple values can be used when separated by '+'. In such
21226 case values are summed together.
21227
21228 Note that if inputs are of different sizes gaps may appear, as not all of
21229 the output video frame will be filled. Similarly, videos can overlap each
21230 other if their position doesn't leave enough space for the full frame of
21231 adjoining videos.
21232
21233 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
21234 a layout must be set by the user.
21235
21236 @item shortest
21237 If set to 1, force the output to terminate when the shortest input
21238 terminates. Default value is 0.
21239
21240 @item fill
21241 If set to valid color, all unused pixels will be filled with that color.
21242 By default fill is set to none, so it is disabled.
21243 @end table
21244
21245 @subsection Examples
21246
21247 @itemize
21248 @item
21249 Display 4 inputs into 2x2 grid.
21250
21251 Layout:
21252 @example
21253 input1(0, 0)  | input3(w0, 0)
21254 input2(0, h0) | input4(w0, h0)
21255 @end example
21256
21257 @example
21258 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
21259 @end example
21260
21261 Note that if inputs are of different sizes, gaps or overlaps may occur.
21262
21263 @item
21264 Display 4 inputs into 1x4 grid.
21265
21266 Layout:
21267 @example
21268 input1(0, 0)
21269 input2(0, h0)
21270 input3(0, h0+h1)
21271 input4(0, h0+h1+h2)
21272 @end example
21273
21274 @example
21275 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
21276 @end example
21277
21278 Note that if inputs are of different widths, unused space will appear.
21279
21280 @item
21281 Display 9 inputs into 3x3 grid.
21282
21283 Layout:
21284 @example
21285 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
21286 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
21287 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
21288 @end example
21289
21290 @example
21291 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
21292 @end example
21293
21294 Note that if inputs are of different sizes, gaps or overlaps may occur.
21295
21296 @item
21297 Display 16 inputs into 4x4 grid.
21298
21299 Layout:
21300 @example
21301 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
21302 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
21303 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
21304 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
21305 @end example
21306
21307 @example
21308 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|
21309 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
21310 @end example
21311
21312 Note that if inputs are of different sizes, gaps or overlaps may occur.
21313
21314 @end itemize
21315
21316 @anchor{yadif}
21317 @section yadif
21318
21319 Deinterlace the input video ("yadif" means "yet another deinterlacing
21320 filter").
21321
21322 It accepts the following parameters:
21323
21324
21325 @table @option
21326
21327 @item mode
21328 The interlacing mode to adopt. It accepts one of the following values:
21329
21330 @table @option
21331 @item 0, send_frame
21332 Output one frame for each frame.
21333 @item 1, send_field
21334 Output one frame for each field.
21335 @item 2, send_frame_nospatial
21336 Like @code{send_frame}, but it skips the spatial interlacing check.
21337 @item 3, send_field_nospatial
21338 Like @code{send_field}, but it skips the spatial interlacing check.
21339 @end table
21340
21341 The default value is @code{send_frame}.
21342
21343 @item parity
21344 The picture field parity assumed for the input interlaced video. It accepts one
21345 of the following values:
21346
21347 @table @option
21348 @item 0, tff
21349 Assume the top field is first.
21350 @item 1, bff
21351 Assume the bottom field is first.
21352 @item -1, auto
21353 Enable automatic detection of field parity.
21354 @end table
21355
21356 The default value is @code{auto}.
21357 If the interlacing is unknown or the decoder does not export this information,
21358 top field first will be assumed.
21359
21360 @item deint
21361 Specify which frames to deinterlace. Accepts one of the following
21362 values:
21363
21364 @table @option
21365 @item 0, all
21366 Deinterlace all frames.
21367 @item 1, interlaced
21368 Only deinterlace frames marked as interlaced.
21369 @end table
21370
21371 The default value is @code{all}.
21372 @end table
21373
21374 @section yadif_cuda
21375
21376 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
21377 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
21378 and/or nvenc.
21379
21380 It accepts the following parameters:
21381
21382
21383 @table @option
21384
21385 @item mode
21386 The interlacing mode to adopt. It accepts one of the following values:
21387
21388 @table @option
21389 @item 0, send_frame
21390 Output one frame for each frame.
21391 @item 1, send_field
21392 Output one frame for each field.
21393 @item 2, send_frame_nospatial
21394 Like @code{send_frame}, but it skips the spatial interlacing check.
21395 @item 3, send_field_nospatial
21396 Like @code{send_field}, but it skips the spatial interlacing check.
21397 @end table
21398
21399 The default value is @code{send_frame}.
21400
21401 @item parity
21402 The picture field parity assumed for the input interlaced video. It accepts one
21403 of the following values:
21404
21405 @table @option
21406 @item 0, tff
21407 Assume the top field is first.
21408 @item 1, bff
21409 Assume the bottom field is first.
21410 @item -1, auto
21411 Enable automatic detection of field parity.
21412 @end table
21413
21414 The default value is @code{auto}.
21415 If the interlacing is unknown or the decoder does not export this information,
21416 top field first will be assumed.
21417
21418 @item deint
21419 Specify which frames to deinterlace. Accepts one of the following
21420 values:
21421
21422 @table @option
21423 @item 0, all
21424 Deinterlace all frames.
21425 @item 1, interlaced
21426 Only deinterlace frames marked as interlaced.
21427 @end table
21428
21429 The default value is @code{all}.
21430 @end table
21431
21432 @section yaepblur
21433
21434 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
21435 The algorithm is described in
21436 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
21437
21438 It accepts the following parameters:
21439
21440 @table @option
21441 @item radius, r
21442 Set the window radius. Default value is 3.
21443
21444 @item planes, p
21445 Set which planes to filter. Default is only the first plane.
21446
21447 @item sigma, s
21448 Set blur strength. Default value is 128.
21449 @end table
21450
21451 @subsection Commands
21452 This filter supports same @ref{commands} as options.
21453
21454 @section zoompan
21455
21456 Apply Zoom & Pan effect.
21457
21458 This filter accepts the following options:
21459
21460 @table @option
21461 @item zoom, z
21462 Set the zoom expression. Range is 1-10. Default is 1.
21463
21464 @item x
21465 @item y
21466 Set the x and y expression. Default is 0.
21467
21468 @item d
21469 Set the duration expression in number of frames.
21470 This sets for how many number of frames effect will last for
21471 single input image.
21472
21473 @item s
21474 Set the output image size, default is 'hd720'.
21475
21476 @item fps
21477 Set the output frame rate, default is '25'.
21478 @end table
21479
21480 Each expression can contain the following constants:
21481
21482 @table @option
21483 @item in_w, iw
21484 Input width.
21485
21486 @item in_h, ih
21487 Input height.
21488
21489 @item out_w, ow
21490 Output width.
21491
21492 @item out_h, oh
21493 Output height.
21494
21495 @item in
21496 Input frame count.
21497
21498 @item on
21499 Output frame count.
21500
21501 @item in_time, it
21502 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
21503
21504 @item out_time, time, ot
21505 The output timestamp expressed in seconds.
21506
21507 @item x
21508 @item y
21509 Last calculated 'x' and 'y' position from 'x' and 'y' expression
21510 for current input frame.
21511
21512 @item px
21513 @item py
21514 'x' and 'y' of last output frame of previous input frame or 0 when there was
21515 not yet such frame (first input frame).
21516
21517 @item zoom
21518 Last calculated zoom from 'z' expression for current input frame.
21519
21520 @item pzoom
21521 Last calculated zoom of last output frame of previous input frame.
21522
21523 @item duration
21524 Number of output frames for current input frame. Calculated from 'd' expression
21525 for each input frame.
21526
21527 @item pduration
21528 number of output frames created for previous input frame
21529
21530 @item a
21531 Rational number: input width / input height
21532
21533 @item sar
21534 sample aspect ratio
21535
21536 @item dar
21537 display aspect ratio
21538
21539 @end table
21540
21541 @subsection Examples
21542
21543 @itemize
21544 @item
21545 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
21546 @example
21547 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
21548 @end example
21549
21550 @item
21551 Zoom in up to 1.5x and pan always at center of picture:
21552 @example
21553 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21554 @end example
21555
21556 @item
21557 Same as above but without pausing:
21558 @example
21559 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21560 @end example
21561
21562 @item
21563 Zoom in 2x into center of picture only for the first second of the input video:
21564 @example
21565 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21566 @end example
21567
21568 @end itemize
21569
21570 @anchor{zscale}
21571 @section zscale
21572 Scale (resize) the input video, using the z.lib library:
21573 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
21574 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
21575
21576 The zscale filter forces the output display aspect ratio to be the same
21577 as the input, by changing the output sample aspect ratio.
21578
21579 If the input image format is different from the format requested by
21580 the next filter, the zscale filter will convert the input to the
21581 requested format.
21582
21583 @subsection Options
21584 The filter accepts the following options.
21585
21586 @table @option
21587 @item width, w
21588 @item height, h
21589 Set the output video dimension expression. Default value is the input
21590 dimension.
21591
21592 If the @var{width} or @var{w} value is 0, the input width is used for
21593 the output. If the @var{height} or @var{h} value is 0, the input height
21594 is used for the output.
21595
21596 If one and only one of the values is -n with n >= 1, the zscale filter
21597 will use a value that maintains the aspect ratio of the input image,
21598 calculated from the other specified dimension. After that it will,
21599 however, make sure that the calculated dimension is divisible by n and
21600 adjust the value if necessary.
21601
21602 If both values are -n with n >= 1, the behavior will be identical to
21603 both values being set to 0 as previously detailed.
21604
21605 See below for the list of accepted constants for use in the dimension
21606 expression.
21607
21608 @item size, s
21609 Set the video size. For the syntax of this option, check the
21610 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21611
21612 @item dither, d
21613 Set the dither type.
21614
21615 Possible values are:
21616 @table @var
21617 @item none
21618 @item ordered
21619 @item random
21620 @item error_diffusion
21621 @end table
21622
21623 Default is none.
21624
21625 @item filter, f
21626 Set the resize filter type.
21627
21628 Possible values are:
21629 @table @var
21630 @item point
21631 @item bilinear
21632 @item bicubic
21633 @item spline16
21634 @item spline36
21635 @item lanczos
21636 @end table
21637
21638 Default is bilinear.
21639
21640 @item range, r
21641 Set the color range.
21642
21643 Possible values are:
21644 @table @var
21645 @item input
21646 @item limited
21647 @item full
21648 @end table
21649
21650 Default is same as input.
21651
21652 @item primaries, p
21653 Set the color primaries.
21654
21655 Possible values are:
21656 @table @var
21657 @item input
21658 @item 709
21659 @item unspecified
21660 @item 170m
21661 @item 240m
21662 @item 2020
21663 @end table
21664
21665 Default is same as input.
21666
21667 @item transfer, t
21668 Set the transfer characteristics.
21669
21670 Possible values are:
21671 @table @var
21672 @item input
21673 @item 709
21674 @item unspecified
21675 @item 601
21676 @item linear
21677 @item 2020_10
21678 @item 2020_12
21679 @item smpte2084
21680 @item iec61966-2-1
21681 @item arib-std-b67
21682 @end table
21683
21684 Default is same as input.
21685
21686 @item matrix, m
21687 Set the colorspace matrix.
21688
21689 Possible value are:
21690 @table @var
21691 @item input
21692 @item 709
21693 @item unspecified
21694 @item 470bg
21695 @item 170m
21696 @item 2020_ncl
21697 @item 2020_cl
21698 @end table
21699
21700 Default is same as input.
21701
21702 @item rangein, rin
21703 Set the input color range.
21704
21705 Possible values are:
21706 @table @var
21707 @item input
21708 @item limited
21709 @item full
21710 @end table
21711
21712 Default is same as input.
21713
21714 @item primariesin, pin
21715 Set the input color primaries.
21716
21717 Possible values are:
21718 @table @var
21719 @item input
21720 @item 709
21721 @item unspecified
21722 @item 170m
21723 @item 240m
21724 @item 2020
21725 @end table
21726
21727 Default is same as input.
21728
21729 @item transferin, tin
21730 Set the input transfer characteristics.
21731
21732 Possible values are:
21733 @table @var
21734 @item input
21735 @item 709
21736 @item unspecified
21737 @item 601
21738 @item linear
21739 @item 2020_10
21740 @item 2020_12
21741 @end table
21742
21743 Default is same as input.
21744
21745 @item matrixin, min
21746 Set the input colorspace matrix.
21747
21748 Possible value are:
21749 @table @var
21750 @item input
21751 @item 709
21752 @item unspecified
21753 @item 470bg
21754 @item 170m
21755 @item 2020_ncl
21756 @item 2020_cl
21757 @end table
21758
21759 @item chromal, c
21760 Set the output chroma location.
21761
21762 Possible values are:
21763 @table @var
21764 @item input
21765 @item left
21766 @item center
21767 @item topleft
21768 @item top
21769 @item bottomleft
21770 @item bottom
21771 @end table
21772
21773 @item chromalin, cin
21774 Set the input chroma location.
21775
21776 Possible values are:
21777 @table @var
21778 @item input
21779 @item left
21780 @item center
21781 @item topleft
21782 @item top
21783 @item bottomleft
21784 @item bottom
21785 @end table
21786
21787 @item npl
21788 Set the nominal peak luminance.
21789 @end table
21790
21791 The values of the @option{w} and @option{h} options are expressions
21792 containing the following constants:
21793
21794 @table @var
21795 @item in_w
21796 @item in_h
21797 The input width and height
21798
21799 @item iw
21800 @item ih
21801 These are the same as @var{in_w} and @var{in_h}.
21802
21803 @item out_w
21804 @item out_h
21805 The output (scaled) width and height
21806
21807 @item ow
21808 @item oh
21809 These are the same as @var{out_w} and @var{out_h}
21810
21811 @item a
21812 The same as @var{iw} / @var{ih}
21813
21814 @item sar
21815 input sample aspect ratio
21816
21817 @item dar
21818 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
21819
21820 @item hsub
21821 @item vsub
21822 horizontal and vertical input chroma subsample values. For example for the
21823 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
21824
21825 @item ohsub
21826 @item ovsub
21827 horizontal and vertical output chroma subsample values. For example for the
21828 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
21829 @end table
21830
21831 @subsection Commands
21832
21833 This filter supports the following commands:
21834 @table @option
21835 @item width, w
21836 @item height, h
21837 Set the output video dimension expression.
21838 The command accepts the same syntax of the corresponding option.
21839
21840 If the specified expression is not valid, it is kept at its current
21841 value.
21842 @end table
21843
21844 @c man end VIDEO FILTERS
21845
21846 @chapter OpenCL Video Filters
21847 @c man begin OPENCL VIDEO FILTERS
21848
21849 Below is a description of the currently available OpenCL video filters.
21850
21851 To enable compilation of these filters you need to configure FFmpeg with
21852 @code{--enable-opencl}.
21853
21854 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
21855 @table @option
21856
21857 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
21858 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
21859 given device parameters.
21860
21861 @item -filter_hw_device @var{name}
21862 Pass the hardware device called @var{name} to all filters in any filter graph.
21863
21864 @end table
21865
21866 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
21867
21868 @itemize
21869 @item
21870 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
21871 @example
21872 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
21873 @end example
21874 @end itemize
21875
21876 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.
21877
21878 @section avgblur_opencl
21879
21880 Apply average blur filter.
21881
21882 The filter accepts the following options:
21883
21884 @table @option
21885 @item sizeX
21886 Set horizontal radius size.
21887 Range is @code{[1, 1024]} and default value is @code{1}.
21888
21889 @item planes
21890 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21891
21892 @item sizeY
21893 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
21894 @end table
21895
21896 @subsection Example
21897
21898 @itemize
21899 @item
21900 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.
21901 @example
21902 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
21903 @end example
21904 @end itemize
21905
21906 @section boxblur_opencl
21907
21908 Apply a boxblur algorithm to the input video.
21909
21910 It accepts the following parameters:
21911
21912 @table @option
21913
21914 @item luma_radius, lr
21915 @item luma_power, lp
21916 @item chroma_radius, cr
21917 @item chroma_power, cp
21918 @item alpha_radius, ar
21919 @item alpha_power, ap
21920
21921 @end table
21922
21923 A description of the accepted options follows.
21924
21925 @table @option
21926 @item luma_radius, lr
21927 @item chroma_radius, cr
21928 @item alpha_radius, ar
21929 Set an expression for the box radius in pixels used for blurring the
21930 corresponding input plane.
21931
21932 The radius value must be a non-negative number, and must not be
21933 greater than the value of the expression @code{min(w,h)/2} for the
21934 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
21935 planes.
21936
21937 Default value for @option{luma_radius} is "2". If not specified,
21938 @option{chroma_radius} and @option{alpha_radius} default to the
21939 corresponding value set for @option{luma_radius}.
21940
21941 The expressions can contain the following constants:
21942 @table @option
21943 @item w
21944 @item h
21945 The input width and height in pixels.
21946
21947 @item cw
21948 @item ch
21949 The input chroma image width and height in pixels.
21950
21951 @item hsub
21952 @item vsub
21953 The horizontal and vertical chroma subsample values. For example, for the
21954 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
21955 @end table
21956
21957 @item luma_power, lp
21958 @item chroma_power, cp
21959 @item alpha_power, ap
21960 Specify how many times the boxblur filter is applied to the
21961 corresponding plane.
21962
21963 Default value for @option{luma_power} is 2. If not specified,
21964 @option{chroma_power} and @option{alpha_power} default to the
21965 corresponding value set for @option{luma_power}.
21966
21967 A value of 0 will disable the effect.
21968 @end table
21969
21970 @subsection Examples
21971
21972 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.
21973
21974 @itemize
21975 @item
21976 Apply a boxblur filter with the luma, chroma, and alpha radius
21977 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.
21978 @example
21979 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
21980 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
21981 @end example
21982
21983 @item
21984 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.
21985
21986 For the luma plane, a 2x2 box radius will be run once.
21987
21988 For the chroma plane, a 4x4 box radius will be run 5 times.
21989
21990 For the alpha plane, a 3x3 box radius will be run 7 times.
21991 @example
21992 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
21993 @end example
21994 @end itemize
21995
21996 @section colorkey_opencl
21997 RGB colorspace color keying.
21998
21999 The filter accepts the following options:
22000
22001 @table @option
22002 @item color
22003 The color which will be replaced with transparency.
22004
22005 @item similarity
22006 Similarity percentage with the key color.
22007
22008 0.01 matches only the exact key color, while 1.0 matches everything.
22009
22010 @item blend
22011 Blend percentage.
22012
22013 0.0 makes pixels either fully transparent, or not transparent at all.
22014
22015 Higher values result in semi-transparent pixels, with a higher transparency
22016 the more similar the pixels color is to the key color.
22017 @end table
22018
22019 @subsection Examples
22020
22021 @itemize
22022 @item
22023 Make every semi-green pixel in the input transparent with some slight blending:
22024 @example
22025 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
22026 @end example
22027 @end itemize
22028
22029 @section convolution_opencl
22030
22031 Apply convolution of 3x3, 5x5, 7x7 matrix.
22032
22033 The filter accepts the following options:
22034
22035 @table @option
22036 @item 0m
22037 @item 1m
22038 @item 2m
22039 @item 3m
22040 Set matrix for each plane.
22041 Matrix is sequence of 9, 25 or 49 signed numbers.
22042 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
22043
22044 @item 0rdiv
22045 @item 1rdiv
22046 @item 2rdiv
22047 @item 3rdiv
22048 Set multiplier for calculated value for each plane.
22049 If unset or 0, it will be sum of all matrix elements.
22050 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
22051
22052 @item 0bias
22053 @item 1bias
22054 @item 2bias
22055 @item 3bias
22056 Set bias for each plane. This value is added to the result of the multiplication.
22057 Useful for making the overall image brighter or darker.
22058 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
22059
22060 @end table
22061
22062 @subsection Examples
22063
22064 @itemize
22065 @item
22066 Apply sharpen:
22067 @example
22068 -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
22069 @end example
22070
22071 @item
22072 Apply blur:
22073 @example
22074 -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
22075 @end example
22076
22077 @item
22078 Apply edge enhance:
22079 @example
22080 -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
22081 @end example
22082
22083 @item
22084 Apply edge detect:
22085 @example
22086 -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
22087 @end example
22088
22089 @item
22090 Apply laplacian edge detector which includes diagonals:
22091 @example
22092 -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
22093 @end example
22094
22095 @item
22096 Apply emboss:
22097 @example
22098 -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
22099 @end example
22100 @end itemize
22101
22102 @section erosion_opencl
22103
22104 Apply erosion effect to the video.
22105
22106 This filter replaces the pixel by the local(3x3) minimum.
22107
22108 It accepts the following options:
22109
22110 @table @option
22111 @item threshold0
22112 @item threshold1
22113 @item threshold2
22114 @item threshold3
22115 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22116 If @code{0}, plane will remain unchanged.
22117
22118 @item coordinates
22119 Flag which specifies the pixel to refer to.
22120 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22121
22122 Flags to local 3x3 coordinates region centered on @code{x}:
22123
22124     1 2 3
22125
22126     4 x 5
22127
22128     6 7 8
22129 @end table
22130
22131 @subsection Example
22132
22133 @itemize
22134 @item
22135 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.
22136 @example
22137 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22138 @end example
22139 @end itemize
22140
22141 @section deshake_opencl
22142 Feature-point based video stabilization filter.
22143
22144 The filter accepts the following options:
22145
22146 @table @option
22147 @item tripod
22148 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
22149
22150 @item debug
22151 Whether or not additional debug info should be displayed, both in the processed output and in the console.
22152
22153 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
22154
22155 Viewing point matches in the output video is only supported for RGB input.
22156
22157 Defaults to @code{0}.
22158
22159 @item adaptive_crop
22160 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
22161
22162 Defaults to @code{1}.
22163
22164 @item refine_features
22165 Whether or not feature points should be refined at a sub-pixel level.
22166
22167 This can be turned off for a slight performance gain at the cost of precision.
22168
22169 Defaults to @code{1}.
22170
22171 @item smooth_strength
22172 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
22173
22174 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
22175
22176 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
22177
22178 Defaults to @code{0.0}.
22179
22180 @item smooth_window_multiplier
22181 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
22182
22183 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
22184
22185 Acceptable values range from @code{0.1} to @code{10.0}.
22186
22187 Larger values increase the amount of motion data available for determining how to smooth the camera path,
22188 potentially improving smoothness, but also increase latency and memory usage.
22189
22190 Defaults to @code{2.0}.
22191
22192 @end table
22193
22194 @subsection Examples
22195
22196 @itemize
22197 @item
22198 Stabilize a video with a fixed, medium smoothing strength:
22199 @example
22200 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
22201 @end example
22202
22203 @item
22204 Stabilize a video with debugging (both in console and in rendered video):
22205 @example
22206 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
22207 @end example
22208 @end itemize
22209
22210 @section dilation_opencl
22211
22212 Apply dilation effect to the video.
22213
22214 This filter replaces the pixel by the local(3x3) maximum.
22215
22216 It accepts the following options:
22217
22218 @table @option
22219 @item threshold0
22220 @item threshold1
22221 @item threshold2
22222 @item threshold3
22223 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22224 If @code{0}, plane will remain unchanged.
22225
22226 @item coordinates
22227 Flag which specifies the pixel to refer to.
22228 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22229
22230 Flags to local 3x3 coordinates region centered on @code{x}:
22231
22232     1 2 3
22233
22234     4 x 5
22235
22236     6 7 8
22237 @end table
22238
22239 @subsection Example
22240
22241 @itemize
22242 @item
22243 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.
22244 @example
22245 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22246 @end example
22247 @end itemize
22248
22249 @section nlmeans_opencl
22250
22251 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
22252
22253 @section overlay_opencl
22254
22255 Overlay one video on top of another.
22256
22257 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
22258 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
22259
22260 The filter accepts the following options:
22261
22262 @table @option
22263
22264 @item x
22265 Set the x coordinate of the overlaid video on the main video.
22266 Default value is @code{0}.
22267
22268 @item y
22269 Set the y coordinate of the overlaid video on the main video.
22270 Default value is @code{0}.
22271
22272 @end table
22273
22274 @subsection Examples
22275
22276 @itemize
22277 @item
22278 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
22279 @example
22280 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22281 @end example
22282 @item
22283 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
22284 @example
22285 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22286 @end example
22287
22288 @end itemize
22289
22290 @section pad_opencl
22291
22292 Add paddings to the input image, and place the original input at the
22293 provided @var{x}, @var{y} coordinates.
22294
22295 It accepts the following options:
22296
22297 @table @option
22298 @item width, w
22299 @item height, h
22300 Specify an expression for the size of the output image with the
22301 paddings added. If the value for @var{width} or @var{height} is 0, the
22302 corresponding input size is used for the output.
22303
22304 The @var{width} expression can reference the value set by the
22305 @var{height} expression, and vice versa.
22306
22307 The default value of @var{width} and @var{height} is 0.
22308
22309 @item x
22310 @item y
22311 Specify the offsets to place the input image at within the padded area,
22312 with respect to the top/left border of the output image.
22313
22314 The @var{x} expression can reference the value set by the @var{y}
22315 expression, and vice versa.
22316
22317 The default value of @var{x} and @var{y} is 0.
22318
22319 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
22320 so the input image is centered on the padded area.
22321
22322 @item color
22323 Specify the color of the padded area. For the syntax of this option,
22324 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
22325 manual,ffmpeg-utils}.
22326
22327 @item aspect
22328 Pad to an aspect instead to a resolution.
22329 @end table
22330
22331 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
22332 options are expressions containing the following constants:
22333
22334 @table @option
22335 @item in_w
22336 @item in_h
22337 The input video width and height.
22338
22339 @item iw
22340 @item ih
22341 These are the same as @var{in_w} and @var{in_h}.
22342
22343 @item out_w
22344 @item out_h
22345 The output width and height (the size of the padded area), as
22346 specified by the @var{width} and @var{height} expressions.
22347
22348 @item ow
22349 @item oh
22350 These are the same as @var{out_w} and @var{out_h}.
22351
22352 @item x
22353 @item y
22354 The x and y offsets as specified by the @var{x} and @var{y}
22355 expressions, or NAN if not yet specified.
22356
22357 @item a
22358 same as @var{iw} / @var{ih}
22359
22360 @item sar
22361 input sample aspect ratio
22362
22363 @item dar
22364 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
22365 @end table
22366
22367 @section prewitt_opencl
22368
22369 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
22370
22371 The filter accepts the following option:
22372
22373 @table @option
22374 @item planes
22375 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22376
22377 @item scale
22378 Set value which will be multiplied with filtered result.
22379 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22380
22381 @item delta
22382 Set value which will be added to filtered result.
22383 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22384 @end table
22385
22386 @subsection Example
22387
22388 @itemize
22389 @item
22390 Apply the Prewitt operator with scale set to 2 and delta set to 10.
22391 @example
22392 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
22393 @end example
22394 @end itemize
22395
22396 @anchor{program_opencl}
22397 @section program_opencl
22398
22399 Filter video using an OpenCL program.
22400
22401 @table @option
22402
22403 @item source
22404 OpenCL program source file.
22405
22406 @item kernel
22407 Kernel name in program.
22408
22409 @item inputs
22410 Number of inputs to the filter.  Defaults to 1.
22411
22412 @item size, s
22413 Size of output frames.  Defaults to the same as the first input.
22414
22415 @end table
22416
22417 The @code{program_opencl} filter also supports the @ref{framesync} options.
22418
22419 The program source file must contain a kernel function with the given name,
22420 which will be run once for each plane of the output.  Each run on a plane
22421 gets enqueued as a separate 2D global NDRange with one work-item for each
22422 pixel to be generated.  The global ID offset for each work-item is therefore
22423 the coordinates of a pixel in the destination image.
22424
22425 The kernel function needs to take the following arguments:
22426 @itemize
22427 @item
22428 Destination image, @var{__write_only image2d_t}.
22429
22430 This image will become the output; the kernel should write all of it.
22431 @item
22432 Frame index, @var{unsigned int}.
22433
22434 This is a counter starting from zero and increasing by one for each frame.
22435 @item
22436 Source images, @var{__read_only image2d_t}.
22437
22438 These are the most recent images on each input.  The kernel may read from
22439 them to generate the output, but they can't be written to.
22440 @end itemize
22441
22442 Example programs:
22443
22444 @itemize
22445 @item
22446 Copy the input to the output (output must be the same size as the input).
22447 @verbatim
22448 __kernel void copy(__write_only image2d_t destination,
22449                    unsigned int index,
22450                    __read_only  image2d_t source)
22451 {
22452     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
22453
22454     int2 location = (int2)(get_global_id(0), get_global_id(1));
22455
22456     float4 value = read_imagef(source, sampler, location);
22457
22458     write_imagef(destination, location, value);
22459 }
22460 @end verbatim
22461
22462 @item
22463 Apply a simple transformation, rotating the input by an amount increasing
22464 with the index counter.  Pixel values are linearly interpolated by the
22465 sampler, and the output need not have the same dimensions as the input.
22466 @verbatim
22467 __kernel void rotate_image(__write_only image2d_t dst,
22468                            unsigned int index,
22469                            __read_only  image2d_t src)
22470 {
22471     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22472                                CLK_FILTER_LINEAR);
22473
22474     float angle = (float)index / 100.0f;
22475
22476     float2 dst_dim = convert_float2(get_image_dim(dst));
22477     float2 src_dim = convert_float2(get_image_dim(src));
22478
22479     float2 dst_cen = dst_dim / 2.0f;
22480     float2 src_cen = src_dim / 2.0f;
22481
22482     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
22483
22484     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
22485     float2 src_pos = {
22486         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
22487         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
22488     };
22489     src_pos = src_pos * src_dim / dst_dim;
22490
22491     float2 src_loc = src_pos + src_cen;
22492
22493     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
22494         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
22495         write_imagef(dst, dst_loc, 0.5f);
22496     else
22497         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
22498 }
22499 @end verbatim
22500
22501 @item
22502 Blend two inputs together, with the amount of each input used varying
22503 with the index counter.
22504 @verbatim
22505 __kernel void blend_images(__write_only image2d_t dst,
22506                            unsigned int index,
22507                            __read_only  image2d_t src1,
22508                            __read_only  image2d_t src2)
22509 {
22510     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22511                                CLK_FILTER_LINEAR);
22512
22513     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
22514
22515     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
22516     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
22517     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
22518
22519     float4 val1 = read_imagef(src1, sampler, src1_loc);
22520     float4 val2 = read_imagef(src2, sampler, src2_loc);
22521
22522     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
22523 }
22524 @end verbatim
22525
22526 @end itemize
22527
22528 @section roberts_opencl
22529 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
22530
22531 The filter accepts the following option:
22532
22533 @table @option
22534 @item planes
22535 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22536
22537 @item scale
22538 Set value which will be multiplied with filtered result.
22539 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22540
22541 @item delta
22542 Set value which will be added to filtered result.
22543 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22544 @end table
22545
22546 @subsection Example
22547
22548 @itemize
22549 @item
22550 Apply the Roberts cross operator with scale set to 2 and delta set to 10
22551 @example
22552 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
22553 @end example
22554 @end itemize
22555
22556 @section sobel_opencl
22557
22558 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
22559
22560 The filter accepts the following option:
22561
22562 @table @option
22563 @item planes
22564 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22565
22566 @item scale
22567 Set value which will be multiplied with filtered result.
22568 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22569
22570 @item delta
22571 Set value which will be added to filtered result.
22572 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22573 @end table
22574
22575 @subsection Example
22576
22577 @itemize
22578 @item
22579 Apply sobel operator with scale set to 2 and delta set to 10
22580 @example
22581 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
22582 @end example
22583 @end itemize
22584
22585 @section tonemap_opencl
22586
22587 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
22588
22589 It accepts the following parameters:
22590
22591 @table @option
22592 @item tonemap
22593 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
22594
22595 @item param
22596 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
22597
22598 @item desat
22599 Apply desaturation for highlights that exceed this level of brightness. The
22600 higher the parameter, the more color information will be preserved. This
22601 setting helps prevent unnaturally blown-out colors for super-highlights, by
22602 (smoothly) turning into white instead. This makes images feel more natural,
22603 at the cost of reducing information about out-of-range colors.
22604
22605 The default value is 0.5, and the algorithm here is a little different from
22606 the cpu version tonemap currently. A setting of 0.0 disables this option.
22607
22608 @item threshold
22609 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
22610 is used to detect whether the scene has changed or not. If the distance between
22611 the current frame average brightness and the current running average exceeds
22612 a threshold value, we would re-calculate scene average and peak brightness.
22613 The default value is 0.2.
22614
22615 @item format
22616 Specify the output pixel format.
22617
22618 Currently supported formats are:
22619 @table @var
22620 @item p010
22621 @item nv12
22622 @end table
22623
22624 @item range, r
22625 Set the output color range.
22626
22627 Possible values are:
22628 @table @var
22629 @item tv/mpeg
22630 @item pc/jpeg
22631 @end table
22632
22633 Default is same as input.
22634
22635 @item primaries, p
22636 Set the output color primaries.
22637
22638 Possible values are:
22639 @table @var
22640 @item bt709
22641 @item bt2020
22642 @end table
22643
22644 Default is same as input.
22645
22646 @item transfer, t
22647 Set the output transfer characteristics.
22648
22649 Possible values are:
22650 @table @var
22651 @item bt709
22652 @item bt2020
22653 @end table
22654
22655 Default is bt709.
22656
22657 @item matrix, m
22658 Set the output colorspace matrix.
22659
22660 Possible value are:
22661 @table @var
22662 @item bt709
22663 @item bt2020
22664 @end table
22665
22666 Default is same as input.
22667
22668 @end table
22669
22670 @subsection Example
22671
22672 @itemize
22673 @item
22674 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
22675 @example
22676 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
22677 @end example
22678 @end itemize
22679
22680 @section unsharp_opencl
22681
22682 Sharpen or blur the input video.
22683
22684 It accepts the following parameters:
22685
22686 @table @option
22687 @item luma_msize_x, lx
22688 Set the luma matrix horizontal size.
22689 Range is @code{[1, 23]} and default value is @code{5}.
22690
22691 @item luma_msize_y, ly
22692 Set the luma matrix vertical size.
22693 Range is @code{[1, 23]} and default value is @code{5}.
22694
22695 @item luma_amount, la
22696 Set the luma effect strength.
22697 Range is @code{[-10, 10]} and default value is @code{1.0}.
22698
22699 Negative values will blur the input video, while positive values will
22700 sharpen it, a value of zero will disable the effect.
22701
22702 @item chroma_msize_x, cx
22703 Set the chroma matrix horizontal size.
22704 Range is @code{[1, 23]} and default value is @code{5}.
22705
22706 @item chroma_msize_y, cy
22707 Set the chroma matrix vertical size.
22708 Range is @code{[1, 23]} and default value is @code{5}.
22709
22710 @item chroma_amount, ca
22711 Set the chroma effect strength.
22712 Range is @code{[-10, 10]} and default value is @code{0.0}.
22713
22714 Negative values will blur the input video, while positive values will
22715 sharpen it, a value of zero will disable the effect.
22716
22717 @end table
22718
22719 All parameters are optional and default to the equivalent of the
22720 string '5:5:1.0:5:5:0.0'.
22721
22722 @subsection Examples
22723
22724 @itemize
22725 @item
22726 Apply strong luma sharpen effect:
22727 @example
22728 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
22729 @end example
22730
22731 @item
22732 Apply a strong blur of both luma and chroma parameters:
22733 @example
22734 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
22735 @end example
22736 @end itemize
22737
22738 @section xfade_opencl
22739
22740 Cross fade two videos with custom transition effect by using OpenCL.
22741
22742 It accepts the following options:
22743
22744 @table @option
22745 @item transition
22746 Set one of possible transition effects.
22747
22748 @table @option
22749 @item custom
22750 Select custom transition effect, the actual transition description
22751 will be picked from source and kernel options.
22752
22753 @item fade
22754 @item wipeleft
22755 @item wiperight
22756 @item wipeup
22757 @item wipedown
22758 @item slideleft
22759 @item slideright
22760 @item slideup
22761 @item slidedown
22762
22763 Default transition is fade.
22764 @end table
22765
22766 @item source
22767 OpenCL program source file for custom transition.
22768
22769 @item kernel
22770 Set name of kernel to use for custom transition from program source file.
22771
22772 @item duration
22773 Set duration of video transition.
22774
22775 @item offset
22776 Set time of start of transition relative to first video.
22777 @end table
22778
22779 The program source file must contain a kernel function with the given name,
22780 which will be run once for each plane of the output.  Each run on a plane
22781 gets enqueued as a separate 2D global NDRange with one work-item for each
22782 pixel to be generated.  The global ID offset for each work-item is therefore
22783 the coordinates of a pixel in the destination image.
22784
22785 The kernel function needs to take the following arguments:
22786 @itemize
22787 @item
22788 Destination image, @var{__write_only image2d_t}.
22789
22790 This image will become the output; the kernel should write all of it.
22791
22792 @item
22793 First Source image, @var{__read_only image2d_t}.
22794 Second Source image, @var{__read_only image2d_t}.
22795
22796 These are the most recent images on each input.  The kernel may read from
22797 them to generate the output, but they can't be written to.
22798
22799 @item
22800 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
22801 @end itemize
22802
22803 Example programs:
22804
22805 @itemize
22806 @item
22807 Apply dots curtain transition effect:
22808 @verbatim
22809 __kernel void blend_images(__write_only image2d_t dst,
22810                            __read_only  image2d_t src1,
22811                            __read_only  image2d_t src2,
22812                            float progress)
22813 {
22814     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22815                                CLK_FILTER_LINEAR);
22816     int2  p = (int2)(get_global_id(0), get_global_id(1));
22817     float2 rp = (float2)(get_global_id(0), get_global_id(1));
22818     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
22819     rp = rp / dim;
22820
22821     float2 dots = (float2)(20.0, 20.0);
22822     float2 center = (float2)(0,0);
22823     float2 unused;
22824
22825     float4 val1 = read_imagef(src1, sampler, p);
22826     float4 val2 = read_imagef(src2, sampler, p);
22827     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
22828
22829     write_imagef(dst, p, next ? val1 : val2);
22830 }
22831 @end verbatim
22832
22833 @end itemize
22834
22835 @c man end OPENCL VIDEO FILTERS
22836
22837 @chapter VAAPI Video Filters
22838 @c man begin VAAPI VIDEO FILTERS
22839
22840 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
22841
22842 To enable compilation of these filters you need to configure FFmpeg with
22843 @code{--enable-vaapi}.
22844
22845 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}
22846
22847 @section tonemap_vaapi
22848
22849 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
22850 It maps the dynamic range of HDR10 content to the SDR content.
22851 It currently only accepts HDR10 as input.
22852
22853 It accepts the following parameters:
22854
22855 @table @option
22856 @item format
22857 Specify the output pixel format.
22858
22859 Currently supported formats are:
22860 @table @var
22861 @item p010
22862 @item nv12
22863 @end table
22864
22865 Default is nv12.
22866
22867 @item primaries, p
22868 Set the output color primaries.
22869
22870 Default is same as input.
22871
22872 @item transfer, t
22873 Set the output transfer characteristics.
22874
22875 Default is bt709.
22876
22877 @item matrix, m
22878 Set the output colorspace matrix.
22879
22880 Default is same as input.
22881
22882 @end table
22883
22884 @subsection Example
22885
22886 @itemize
22887 @item
22888 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
22889 @example
22890 tonemap_vaapi=format=p010:t=bt2020-10
22891 @end example
22892 @end itemize
22893
22894 @c man end VAAPI VIDEO FILTERS
22895
22896 @chapter Video Sources
22897 @c man begin VIDEO SOURCES
22898
22899 Below is a description of the currently available video sources.
22900
22901 @section buffer
22902
22903 Buffer video frames, and make them available to the filter chain.
22904
22905 This source is mainly intended for a programmatic use, in particular
22906 through the interface defined in @file{libavfilter/buffersrc.h}.
22907
22908 It accepts the following parameters:
22909
22910 @table @option
22911
22912 @item video_size
22913 Specify the size (width and height) of the buffered video frames. For the
22914 syntax of this option, check the
22915 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22916
22917 @item width
22918 The input video width.
22919
22920 @item height
22921 The input video height.
22922
22923 @item pix_fmt
22924 A string representing the pixel format of the buffered video frames.
22925 It may be a number corresponding to a pixel format, or a pixel format
22926 name.
22927
22928 @item time_base
22929 Specify the timebase assumed by the timestamps of the buffered frames.
22930
22931 @item frame_rate
22932 Specify the frame rate expected for the video stream.
22933
22934 @item pixel_aspect, sar
22935 The sample (pixel) aspect ratio of the input video.
22936
22937 @item sws_param
22938 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
22939 to the filtergraph description to specify swscale flags for automatically
22940 inserted scalers. See @ref{Filtergraph syntax}.
22941
22942 @item hw_frames_ctx
22943 When using a hardware pixel format, this should be a reference to an
22944 AVHWFramesContext describing input frames.
22945 @end table
22946
22947 For example:
22948 @example
22949 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
22950 @end example
22951
22952 will instruct the source to accept video frames with size 320x240 and
22953 with format "yuv410p", assuming 1/24 as the timestamps timebase and
22954 square pixels (1:1 sample aspect ratio).
22955 Since the pixel format with name "yuv410p" corresponds to the number 6
22956 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
22957 this example corresponds to:
22958 @example
22959 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
22960 @end example
22961
22962 Alternatively, the options can be specified as a flat string, but this
22963 syntax is deprecated:
22964
22965 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
22966
22967 @section cellauto
22968
22969 Create a pattern generated by an elementary cellular automaton.
22970
22971 The initial state of the cellular automaton can be defined through the
22972 @option{filename} and @option{pattern} options. If such options are
22973 not specified an initial state is created randomly.
22974
22975 At each new frame a new row in the video is filled with the result of
22976 the cellular automaton next generation. The behavior when the whole
22977 frame is filled is defined by the @option{scroll} option.
22978
22979 This source accepts the following options:
22980
22981 @table @option
22982 @item filename, f
22983 Read the initial cellular automaton state, i.e. the starting row, from
22984 the specified file.
22985 In the file, each non-whitespace character is considered an alive
22986 cell, a newline will terminate the row, and further characters in the
22987 file will be ignored.
22988
22989 @item pattern, p
22990 Read the initial cellular automaton state, i.e. the starting row, from
22991 the specified string.
22992
22993 Each non-whitespace character in the string is considered an alive
22994 cell, a newline will terminate the row, and further characters in the
22995 string will be ignored.
22996
22997 @item rate, r
22998 Set the video rate, that is the number of frames generated per second.
22999 Default is 25.
23000
23001 @item random_fill_ratio, ratio
23002 Set the random fill ratio for the initial cellular automaton row. It
23003 is a floating point number value ranging from 0 to 1, defaults to
23004 1/PHI.
23005
23006 This option is ignored when a file or a pattern is specified.
23007
23008 @item random_seed, seed
23009 Set the seed for filling randomly the initial row, must be an integer
23010 included between 0 and UINT32_MAX. If not specified, or if explicitly
23011 set to -1, the filter will try to use a good random seed on a best
23012 effort basis.
23013
23014 @item rule
23015 Set the cellular automaton rule, it is a number ranging from 0 to 255.
23016 Default value is 110.
23017
23018 @item size, s
23019 Set the size of the output video. For the syntax of this option, check the
23020 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23021
23022 If @option{filename} or @option{pattern} is specified, the size is set
23023 by default to the width of the specified initial state row, and the
23024 height is set to @var{width} * PHI.
23025
23026 If @option{size} is set, it must contain the width of the specified
23027 pattern string, and the specified pattern will be centered in the
23028 larger row.
23029
23030 If a filename or a pattern string is not specified, the size value
23031 defaults to "320x518" (used for a randomly generated initial state).
23032
23033 @item scroll
23034 If set to 1, scroll the output upward when all the rows in the output
23035 have been already filled. If set to 0, the new generated row will be
23036 written over the top row just after the bottom row is filled.
23037 Defaults to 1.
23038
23039 @item start_full, full
23040 If set to 1, completely fill the output with generated rows before
23041 outputting the first frame.
23042 This is the default behavior, for disabling set the value to 0.
23043
23044 @item stitch
23045 If set to 1, stitch the left and right row edges together.
23046 This is the default behavior, for disabling set the value to 0.
23047 @end table
23048
23049 @subsection Examples
23050
23051 @itemize
23052 @item
23053 Read the initial state from @file{pattern}, and specify an output of
23054 size 200x400.
23055 @example
23056 cellauto=f=pattern:s=200x400
23057 @end example
23058
23059 @item
23060 Generate a random initial row with a width of 200 cells, with a fill
23061 ratio of 2/3:
23062 @example
23063 cellauto=ratio=2/3:s=200x200
23064 @end example
23065
23066 @item
23067 Create a pattern generated by rule 18 starting by a single alive cell
23068 centered on an initial row with width 100:
23069 @example
23070 cellauto=p=@@:s=100x400:full=0:rule=18
23071 @end example
23072
23073 @item
23074 Specify a more elaborated initial pattern:
23075 @example
23076 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
23077 @end example
23078
23079 @end itemize
23080
23081 @anchor{coreimagesrc}
23082 @section coreimagesrc
23083 Video source generated on GPU using Apple's CoreImage API on OSX.
23084
23085 This video source is a specialized version of the @ref{coreimage} video filter.
23086 Use a core image generator at the beginning of the applied filterchain to
23087 generate the content.
23088
23089 The coreimagesrc video source accepts the following options:
23090 @table @option
23091 @item list_generators
23092 List all available generators along with all their respective options as well as
23093 possible minimum and maximum values along with the default values.
23094 @example
23095 list_generators=true
23096 @end example
23097
23098 @item size, s
23099 Specify the size of the sourced video. For the syntax of this option, check the
23100 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23101 The default value is @code{320x240}.
23102
23103 @item rate, r
23104 Specify the frame rate of the sourced video, as the number of frames
23105 generated per second. It has to be a string in the format
23106 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23107 number or a valid video frame rate abbreviation. The default value is
23108 "25".
23109
23110 @item sar
23111 Set the sample aspect ratio of the sourced video.
23112
23113 @item duration, d
23114 Set the duration of the sourced video. See
23115 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23116 for the accepted syntax.
23117
23118 If not specified, or the expressed duration is negative, the video is
23119 supposed to be generated forever.
23120 @end table
23121
23122 Additionally, all options of the @ref{coreimage} video filter are accepted.
23123 A complete filterchain can be used for further processing of the
23124 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
23125 and examples for details.
23126
23127 @subsection Examples
23128
23129 @itemize
23130
23131 @item
23132 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
23133 given as complete and escaped command-line for Apple's standard bash shell:
23134 @example
23135 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
23136 @end example
23137 This example is equivalent to the QRCode example of @ref{coreimage} without the
23138 need for a nullsrc video source.
23139 @end itemize
23140
23141
23142 @section gradients
23143 Generate several gradients.
23144
23145 @table @option
23146 @item size, s
23147 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23148 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23149
23150 @item rate, r
23151 Set frame rate, expressed as number of frames per second. Default
23152 value is "25".
23153
23154 @item c0, c1, c2, c3, c4, c5, c6, c7
23155 Set 8 colors. Default values for colors is to pick random one.
23156
23157 @item x0, y0, y0, y1
23158 Set gradient line source and destination points. If negative or out of range, random ones
23159 are picked.
23160
23161 @item nb_colors, n
23162 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
23163
23164 @item seed
23165 Set seed for picking gradient line points.
23166
23167 @item duration, d
23168 Set the duration of the sourced video. See
23169 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23170 for the accepted syntax.
23171
23172 If not specified, or the expressed duration is negative, the video is
23173 supposed to be generated forever.
23174
23175 @item speed
23176 Set speed of gradients rotation.
23177 @end table
23178
23179
23180 @section mandelbrot
23181
23182 Generate a Mandelbrot set fractal, and progressively zoom towards the
23183 point specified with @var{start_x} and @var{start_y}.
23184
23185 This source accepts the following options:
23186
23187 @table @option
23188
23189 @item end_pts
23190 Set the terminal pts value. Default value is 400.
23191
23192 @item end_scale
23193 Set the terminal scale value.
23194 Must be a floating point value. Default value is 0.3.
23195
23196 @item inner
23197 Set the inner coloring mode, that is the algorithm used to draw the
23198 Mandelbrot fractal internal region.
23199
23200 It shall assume one of the following values:
23201 @table @option
23202 @item black
23203 Set black mode.
23204 @item convergence
23205 Show time until convergence.
23206 @item mincol
23207 Set color based on point closest to the origin of the iterations.
23208 @item period
23209 Set period mode.
23210 @end table
23211
23212 Default value is @var{mincol}.
23213
23214 @item bailout
23215 Set the bailout value. Default value is 10.0.
23216
23217 @item maxiter
23218 Set the maximum of iterations performed by the rendering
23219 algorithm. Default value is 7189.
23220
23221 @item outer
23222 Set outer coloring mode.
23223 It shall assume one of following values:
23224 @table @option
23225 @item iteration_count
23226 Set iteration count mode.
23227 @item normalized_iteration_count
23228 set normalized iteration count mode.
23229 @end table
23230 Default value is @var{normalized_iteration_count}.
23231
23232 @item rate, r
23233 Set frame rate, expressed as number of frames per second. Default
23234 value is "25".
23235
23236 @item size, s
23237 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23238 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23239
23240 @item start_scale
23241 Set the initial scale value. Default value is 3.0.
23242
23243 @item start_x
23244 Set the initial x position. Must be a floating point value between
23245 -100 and 100. Default value is -0.743643887037158704752191506114774.
23246
23247 @item start_y
23248 Set the initial y position. Must be a floating point value between
23249 -100 and 100. Default value is -0.131825904205311970493132056385139.
23250 @end table
23251
23252 @section mptestsrc
23253
23254 Generate various test patterns, as generated by the MPlayer test filter.
23255
23256 The size of the generated video is fixed, and is 256x256.
23257 This source is useful in particular for testing encoding features.
23258
23259 This source accepts the following options:
23260
23261 @table @option
23262
23263 @item rate, r
23264 Specify the frame rate of the sourced video, as the number of frames
23265 generated per second. It has to be a string in the format
23266 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23267 number or a valid video frame rate abbreviation. The default value is
23268 "25".
23269
23270 @item duration, d
23271 Set the duration of the sourced video. See
23272 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23273 for the accepted syntax.
23274
23275 If not specified, or the expressed duration is negative, the video is
23276 supposed to be generated forever.
23277
23278 @item test, t
23279
23280 Set the number or the name of the test to perform. Supported tests are:
23281 @table @option
23282 @item dc_luma
23283 @item dc_chroma
23284 @item freq_luma
23285 @item freq_chroma
23286 @item amp_luma
23287 @item amp_chroma
23288 @item cbp
23289 @item mv
23290 @item ring1
23291 @item ring2
23292 @item all
23293
23294 @item max_frames, m
23295 Set the maximum number of frames generated for each test, default value is 30.
23296
23297 @end table
23298
23299 Default value is "all", which will cycle through the list of all tests.
23300 @end table
23301
23302 Some examples:
23303 @example
23304 mptestsrc=t=dc_luma
23305 @end example
23306
23307 will generate a "dc_luma" test pattern.
23308
23309 @section frei0r_src
23310
23311 Provide a frei0r source.
23312
23313 To enable compilation of this filter you need to install the frei0r
23314 header and configure FFmpeg with @code{--enable-frei0r}.
23315
23316 This source accepts the following parameters:
23317
23318 @table @option
23319
23320 @item size
23321 The size of the video to generate. For the syntax of this option, check the
23322 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23323
23324 @item framerate
23325 The framerate of the generated video. It may be a string of the form
23326 @var{num}/@var{den} or a frame rate abbreviation.
23327
23328 @item filter_name
23329 The name to the frei0r source to load. For more information regarding frei0r and
23330 how to set the parameters, read the @ref{frei0r} section in the video filters
23331 documentation.
23332
23333 @item filter_params
23334 A '|'-separated list of parameters to pass to the frei0r source.
23335
23336 @end table
23337
23338 For example, to generate a frei0r partik0l source with size 200x200
23339 and frame rate 10 which is overlaid on the overlay filter main input:
23340 @example
23341 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
23342 @end example
23343
23344 @section life
23345
23346 Generate a life pattern.
23347
23348 This source is based on a generalization of John Conway's life game.
23349
23350 The sourced input represents a life grid, each pixel represents a cell
23351 which can be in one of two possible states, alive or dead. Every cell
23352 interacts with its eight neighbours, which are the cells that are
23353 horizontally, vertically, or diagonally adjacent.
23354
23355 At each interaction the grid evolves according to the adopted rule,
23356 which specifies the number of neighbor alive cells which will make a
23357 cell stay alive or born. The @option{rule} option allows one to specify
23358 the rule to adopt.
23359
23360 This source accepts the following options:
23361
23362 @table @option
23363 @item filename, f
23364 Set the file from which to read the initial grid state. In the file,
23365 each non-whitespace character is considered an alive cell, and newline
23366 is used to delimit the end of each row.
23367
23368 If this option is not specified, the initial grid is generated
23369 randomly.
23370
23371 @item rate, r
23372 Set the video rate, that is the number of frames generated per second.
23373 Default is 25.
23374
23375 @item random_fill_ratio, ratio
23376 Set the random fill ratio for the initial random grid. It is a
23377 floating point number value ranging from 0 to 1, defaults to 1/PHI.
23378 It is ignored when a file is specified.
23379
23380 @item random_seed, seed
23381 Set the seed for filling the initial random grid, must be an integer
23382 included between 0 and UINT32_MAX. If not specified, or if explicitly
23383 set to -1, the filter will try to use a good random seed on a best
23384 effort basis.
23385
23386 @item rule
23387 Set the life rule.
23388
23389 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
23390 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
23391 @var{NS} specifies the number of alive neighbor cells which make a
23392 live cell stay alive, and @var{NB} the number of alive neighbor cells
23393 which make a dead cell to become alive (i.e. to "born").
23394 "s" and "b" can be used in place of "S" and "B", respectively.
23395
23396 Alternatively a rule can be specified by an 18-bits integer. The 9
23397 high order bits are used to encode the next cell state if it is alive
23398 for each number of neighbor alive cells, the low order bits specify
23399 the rule for "borning" new cells. Higher order bits encode for an
23400 higher number of neighbor cells.
23401 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
23402 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
23403
23404 Default value is "S23/B3", which is the original Conway's game of life
23405 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
23406 cells, and will born a new cell if there are three alive cells around
23407 a dead cell.
23408
23409 @item size, s
23410 Set the size of the output video. For the syntax of this option, check the
23411 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23412
23413 If @option{filename} is specified, the size is set by default to the
23414 same size of the input file. If @option{size} is set, it must contain
23415 the size specified in the input file, and the initial grid defined in
23416 that file is centered in the larger resulting area.
23417
23418 If a filename is not specified, the size value defaults to "320x240"
23419 (used for a randomly generated initial grid).
23420
23421 @item stitch
23422 If set to 1, stitch the left and right grid edges together, and the
23423 top and bottom edges also. Defaults to 1.
23424
23425 @item mold
23426 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
23427 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
23428 value from 0 to 255.
23429
23430 @item life_color
23431 Set the color of living (or new born) cells.
23432
23433 @item death_color
23434 Set the color of dead cells. If @option{mold} is set, this is the first color
23435 used to represent a dead cell.
23436
23437 @item mold_color
23438 Set mold color, for definitely dead and moldy cells.
23439
23440 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
23441 ffmpeg-utils manual,ffmpeg-utils}.
23442 @end table
23443
23444 @subsection Examples
23445
23446 @itemize
23447 @item
23448 Read a grid from @file{pattern}, and center it on a grid of size
23449 300x300 pixels:
23450 @example
23451 life=f=pattern:s=300x300
23452 @end example
23453
23454 @item
23455 Generate a random grid of size 200x200, with a fill ratio of 2/3:
23456 @example
23457 life=ratio=2/3:s=200x200
23458 @end example
23459
23460 @item
23461 Specify a custom rule for evolving a randomly generated grid:
23462 @example
23463 life=rule=S14/B34
23464 @end example
23465
23466 @item
23467 Full example with slow death effect (mold) using @command{ffplay}:
23468 @example
23469 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
23470 @end example
23471 @end itemize
23472
23473 @anchor{allrgb}
23474 @anchor{allyuv}
23475 @anchor{color}
23476 @anchor{haldclutsrc}
23477 @anchor{nullsrc}
23478 @anchor{pal75bars}
23479 @anchor{pal100bars}
23480 @anchor{rgbtestsrc}
23481 @anchor{smptebars}
23482 @anchor{smptehdbars}
23483 @anchor{testsrc}
23484 @anchor{testsrc2}
23485 @anchor{yuvtestsrc}
23486 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
23487
23488 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
23489
23490 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
23491
23492 The @code{color} source provides an uniformly colored input.
23493
23494 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
23495 @ref{haldclut} filter.
23496
23497 The @code{nullsrc} source returns unprocessed video frames. It is
23498 mainly useful to be employed in analysis / debugging tools, or as the
23499 source for filters which ignore the input data.
23500
23501 The @code{pal75bars} source generates a color bars pattern, based on
23502 EBU PAL recommendations with 75% color levels.
23503
23504 The @code{pal100bars} source generates a color bars pattern, based on
23505 EBU PAL recommendations with 100% color levels.
23506
23507 The @code{rgbtestsrc} source generates an RGB test pattern useful for
23508 detecting RGB vs BGR issues. You should see a red, green and blue
23509 stripe from top to bottom.
23510
23511 The @code{smptebars} source generates a color bars pattern, based on
23512 the SMPTE Engineering Guideline EG 1-1990.
23513
23514 The @code{smptehdbars} source generates a color bars pattern, based on
23515 the SMPTE RP 219-2002.
23516
23517 The @code{testsrc} source generates a test video pattern, showing a
23518 color pattern, a scrolling gradient and a timestamp. This is mainly
23519 intended for testing purposes.
23520
23521 The @code{testsrc2} source is similar to testsrc, but supports more
23522 pixel formats instead of just @code{rgb24}. This allows using it as an
23523 input for other tests without requiring a format conversion.
23524
23525 The @code{yuvtestsrc} source generates an YUV test pattern. You should
23526 see a y, cb and cr stripe from top to bottom.
23527
23528 The sources accept the following parameters:
23529
23530 @table @option
23531
23532 @item level
23533 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
23534 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
23535 pixels to be used as identity matrix for 3D lookup tables. Each component is
23536 coded on a @code{1/(N*N)} scale.
23537
23538 @item color, c
23539 Specify the color of the source, only available in the @code{color}
23540 source. For the syntax of this option, check the
23541 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
23542
23543 @item size, s
23544 Specify the size of the sourced video. For the syntax of this option, check the
23545 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23546 The default value is @code{320x240}.
23547
23548 This option is not available with the @code{allrgb}, @code{allyuv}, and
23549 @code{haldclutsrc} filters.
23550
23551 @item rate, r
23552 Specify the frame rate of the sourced video, as the number of frames
23553 generated per second. It has to be a string in the format
23554 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23555 number or a valid video frame rate abbreviation. The default value is
23556 "25".
23557
23558 @item duration, d
23559 Set the duration of the sourced video. See
23560 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23561 for the accepted syntax.
23562
23563 If not specified, or the expressed duration is negative, the video is
23564 supposed to be generated forever.
23565
23566 Since the frame rate is used as time base, all frames including the last one
23567 will have their full duration. If the specified duration is not a multiple
23568 of the frame duration, it will be rounded up.
23569
23570 @item sar
23571 Set the sample aspect ratio of the sourced video.
23572
23573 @item alpha
23574 Specify the alpha (opacity) of the background, only available in the
23575 @code{testsrc2} source. The value must be between 0 (fully transparent) and
23576 255 (fully opaque, the default).
23577
23578 @item decimals, n
23579 Set the number of decimals to show in the timestamp, only available in the
23580 @code{testsrc} source.
23581
23582 The displayed timestamp value will correspond to the original
23583 timestamp value multiplied by the power of 10 of the specified
23584 value. Default value is 0.
23585 @end table
23586
23587 @subsection Examples
23588
23589 @itemize
23590 @item
23591 Generate a video with a duration of 5.3 seconds, with size
23592 176x144 and a frame rate of 10 frames per second:
23593 @example
23594 testsrc=duration=5.3:size=qcif:rate=10
23595 @end example
23596
23597 @item
23598 The following graph description will generate a red source
23599 with an opacity of 0.2, with size "qcif" and a frame rate of 10
23600 frames per second:
23601 @example
23602 color=c=red@@0.2:s=qcif:r=10
23603 @end example
23604
23605 @item
23606 If the input content is to be ignored, @code{nullsrc} can be used. The
23607 following command generates noise in the luminance plane by employing
23608 the @code{geq} filter:
23609 @example
23610 nullsrc=s=256x256, geq=random(1)*255:128:128
23611 @end example
23612 @end itemize
23613
23614 @subsection Commands
23615
23616 The @code{color} source supports the following commands:
23617
23618 @table @option
23619 @item c, color
23620 Set the color of the created image. Accepts the same syntax of the
23621 corresponding @option{color} option.
23622 @end table
23623
23624 @section openclsrc
23625
23626 Generate video using an OpenCL program.
23627
23628 @table @option
23629
23630 @item source
23631 OpenCL program source file.
23632
23633 @item kernel
23634 Kernel name in program.
23635
23636 @item size, s
23637 Size of frames to generate.  This must be set.
23638
23639 @item format
23640 Pixel format to use for the generated frames.  This must be set.
23641
23642 @item rate, r
23643 Number of frames generated every second.  Default value is '25'.
23644
23645 @end table
23646
23647 For details of how the program loading works, see the @ref{program_opencl}
23648 filter.
23649
23650 Example programs:
23651
23652 @itemize
23653 @item
23654 Generate a colour ramp by setting pixel values from the position of the pixel
23655 in the output image.  (Note that this will work with all pixel formats, but
23656 the generated output will not be the same.)
23657 @verbatim
23658 __kernel void ramp(__write_only image2d_t dst,
23659                    unsigned int index)
23660 {
23661     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23662
23663     float4 val;
23664     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
23665
23666     write_imagef(dst, loc, val);
23667 }
23668 @end verbatim
23669
23670 @item
23671 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
23672 @verbatim
23673 __kernel void sierpinski_carpet(__write_only image2d_t dst,
23674                                 unsigned int index)
23675 {
23676     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23677
23678     float4 value = 0.0f;
23679     int x = loc.x + index;
23680     int y = loc.y + index;
23681     while (x > 0 || y > 0) {
23682         if (x % 3 == 1 && y % 3 == 1) {
23683             value = 1.0f;
23684             break;
23685         }
23686         x /= 3;
23687         y /= 3;
23688     }
23689
23690     write_imagef(dst, loc, value);
23691 }
23692 @end verbatim
23693
23694 @end itemize
23695
23696 @section sierpinski
23697
23698 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
23699
23700 This source accepts the following options:
23701
23702 @table @option
23703 @item size, s
23704 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23705 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23706
23707 @item rate, r
23708 Set frame rate, expressed as number of frames per second. Default
23709 value is "25".
23710
23711 @item seed
23712 Set seed which is used for random panning.
23713
23714 @item jump
23715 Set max jump for single pan destination. Allowed range is from 1 to 10000.
23716
23717 @item type
23718 Set fractal type, can be default @code{carpet} or @code{triangle}.
23719 @end table
23720
23721 @c man end VIDEO SOURCES
23722
23723 @chapter Video Sinks
23724 @c man begin VIDEO SINKS
23725
23726 Below is a description of the currently available video sinks.
23727
23728 @section buffersink
23729
23730 Buffer video frames, and make them available to the end of the filter
23731 graph.
23732
23733 This sink is mainly intended for programmatic use, in particular
23734 through the interface defined in @file{libavfilter/buffersink.h}
23735 or the options system.
23736
23737 It accepts a pointer to an AVBufferSinkContext structure, which
23738 defines the incoming buffers' formats, to be passed as the opaque
23739 parameter to @code{avfilter_init_filter} for initialization.
23740
23741 @section nullsink
23742
23743 Null video sink: do absolutely nothing with the input video. It is
23744 mainly useful as a template and for use in analysis / debugging
23745 tools.
23746
23747 @c man end VIDEO SINKS
23748
23749 @chapter Multimedia Filters
23750 @c man begin MULTIMEDIA FILTERS
23751
23752 Below is a description of the currently available multimedia filters.
23753
23754 @section abitscope
23755
23756 Convert input audio to a video output, displaying the audio bit scope.
23757
23758 The filter accepts the following options:
23759
23760 @table @option
23761 @item rate, r
23762 Set frame rate, expressed as number of frames per second. Default
23763 value is "25".
23764
23765 @item size, s
23766 Specify the video size for the output. For the syntax of this option, check the
23767 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23768 Default value is @code{1024x256}.
23769
23770 @item colors
23771 Specify list of colors separated by space or by '|' which will be used to
23772 draw channels. Unrecognized or missing colors will be replaced
23773 by white color.
23774 @end table
23775
23776 @section adrawgraph
23777 Draw a graph using input audio metadata.
23778
23779 See @ref{drawgraph}
23780
23781 @section agraphmonitor
23782
23783 See @ref{graphmonitor}.
23784
23785 @section ahistogram
23786
23787 Convert input audio to a video output, displaying the volume histogram.
23788
23789 The filter accepts the following options:
23790
23791 @table @option
23792 @item dmode
23793 Specify how histogram is calculated.
23794
23795 It accepts the following values:
23796 @table @samp
23797 @item single
23798 Use single histogram for all channels.
23799 @item separate
23800 Use separate histogram for each channel.
23801 @end table
23802 Default is @code{single}.
23803
23804 @item rate, r
23805 Set frame rate, expressed as number of frames per second. Default
23806 value is "25".
23807
23808 @item size, s
23809 Specify the video size for the output. For the syntax of this option, check the
23810 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23811 Default value is @code{hd720}.
23812
23813 @item scale
23814 Set display scale.
23815
23816 It accepts the following values:
23817 @table @samp
23818 @item log
23819 logarithmic
23820 @item sqrt
23821 square root
23822 @item cbrt
23823 cubic root
23824 @item lin
23825 linear
23826 @item rlog
23827 reverse logarithmic
23828 @end table
23829 Default is @code{log}.
23830
23831 @item ascale
23832 Set amplitude scale.
23833
23834 It accepts the following values:
23835 @table @samp
23836 @item log
23837 logarithmic
23838 @item lin
23839 linear
23840 @end table
23841 Default is @code{log}.
23842
23843 @item acount
23844 Set how much frames to accumulate in histogram.
23845 Default is 1. Setting this to -1 accumulates all frames.
23846
23847 @item rheight
23848 Set histogram ratio of window height.
23849
23850 @item slide
23851 Set sonogram sliding.
23852
23853 It accepts the following values:
23854 @table @samp
23855 @item replace
23856 replace old rows with new ones.
23857 @item scroll
23858 scroll from top to bottom.
23859 @end table
23860 Default is @code{replace}.
23861 @end table
23862
23863 @section aphasemeter
23864
23865 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
23866 representing mean phase of current audio frame. A video output can also be produced and is
23867 enabled by default. The audio is passed through as first output.
23868
23869 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
23870 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
23871 and @code{1} means channels are in phase.
23872
23873 The filter accepts the following options, all related to its video output:
23874
23875 @table @option
23876 @item rate, r
23877 Set the output frame rate. Default value is @code{25}.
23878
23879 @item size, s
23880 Set the video size for the output. For the syntax of this option, check the
23881 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23882 Default value is @code{800x400}.
23883
23884 @item rc
23885 @item gc
23886 @item bc
23887 Specify the red, green, blue contrast. Default values are @code{2},
23888 @code{7} and @code{1}.
23889 Allowed range is @code{[0, 255]}.
23890
23891 @item mpc
23892 Set color which will be used for drawing median phase. If color is
23893 @code{none} which is default, no median phase value will be drawn.
23894
23895 @item video
23896 Enable video output. Default is enabled.
23897 @end table
23898
23899 @subsection phasing detection
23900
23901 The filter also detects out of phase and mono sequences in stereo streams.
23902 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
23903
23904 The filter accepts the following options for this detection:
23905
23906 @table @option
23907 @item phasing
23908 Enable mono and out of phase detection. Default is disabled.
23909
23910 @item tolerance, t
23911 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
23912 Allowed range is @code{[0, 1]}.
23913
23914 @item angle, a
23915 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
23916 Allowed range is @code{[90, 180]}.
23917
23918 @item duration, d
23919 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
23920 @end table
23921
23922 @subsection Examples
23923
23924 @itemize
23925 @item
23926 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
23927 @example
23928 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
23929 @end example
23930 @end itemize
23931
23932 @section avectorscope
23933
23934 Convert input audio to a video output, representing the audio vector
23935 scope.
23936
23937 The filter is used to measure the difference between channels of stereo
23938 audio stream. A monaural signal, consisting of identical left and right
23939 signal, results in straight vertical line. Any stereo separation is visible
23940 as a deviation from this line, creating a Lissajous figure.
23941 If the straight (or deviation from it) but horizontal line appears this
23942 indicates that the left and right channels are out of phase.
23943
23944 The filter accepts the following options:
23945
23946 @table @option
23947 @item mode, m
23948 Set the vectorscope mode.
23949
23950 Available values are:
23951 @table @samp
23952 @item lissajous
23953 Lissajous rotated by 45 degrees.
23954
23955 @item lissajous_xy
23956 Same as above but not rotated.
23957
23958 @item polar
23959 Shape resembling half of circle.
23960 @end table
23961
23962 Default value is @samp{lissajous}.
23963
23964 @item size, s
23965 Set the video size for the output. For the syntax of this option, check the
23966 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23967 Default value is @code{400x400}.
23968
23969 @item rate, r
23970 Set the output frame rate. Default value is @code{25}.
23971
23972 @item rc
23973 @item gc
23974 @item bc
23975 @item ac
23976 Specify the red, green, blue and alpha contrast. Default values are @code{40},
23977 @code{160}, @code{80} and @code{255}.
23978 Allowed range is @code{[0, 255]}.
23979
23980 @item rf
23981 @item gf
23982 @item bf
23983 @item af
23984 Specify the red, green, blue and alpha fade. Default values are @code{15},
23985 @code{10}, @code{5} and @code{5}.
23986 Allowed range is @code{[0, 255]}.
23987
23988 @item zoom
23989 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
23990 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
23991
23992 @item draw
23993 Set the vectorscope drawing mode.
23994
23995 Available values are:
23996 @table @samp
23997 @item dot
23998 Draw dot for each sample.
23999
24000 @item line
24001 Draw line between previous and current sample.
24002 @end table
24003
24004 Default value is @samp{dot}.
24005
24006 @item scale
24007 Specify amplitude scale of audio samples.
24008
24009 Available values are:
24010 @table @samp
24011 @item lin
24012 Linear.
24013
24014 @item sqrt
24015 Square root.
24016
24017 @item cbrt
24018 Cubic root.
24019
24020 @item log
24021 Logarithmic.
24022 @end table
24023
24024 @item swap
24025 Swap left channel axis with right channel axis.
24026
24027 @item mirror
24028 Mirror axis.
24029
24030 @table @samp
24031 @item none
24032 No mirror.
24033
24034 @item x
24035 Mirror only x axis.
24036
24037 @item y
24038 Mirror only y axis.
24039
24040 @item xy
24041 Mirror both axis.
24042 @end table
24043
24044 @end table
24045
24046 @subsection Examples
24047
24048 @itemize
24049 @item
24050 Complete example using @command{ffplay}:
24051 @example
24052 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24053              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
24054 @end example
24055 @end itemize
24056
24057 @section bench, abench
24058
24059 Benchmark part of a filtergraph.
24060
24061 The filter accepts the following options:
24062
24063 @table @option
24064 @item action
24065 Start or stop a timer.
24066
24067 Available values are:
24068 @table @samp
24069 @item start
24070 Get the current time, set it as frame metadata (using the key
24071 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
24072
24073 @item stop
24074 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
24075 the input frame metadata to get the time difference. Time difference, average,
24076 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
24077 @code{min}) are then printed. The timestamps are expressed in seconds.
24078 @end table
24079 @end table
24080
24081 @subsection Examples
24082
24083 @itemize
24084 @item
24085 Benchmark @ref{selectivecolor} filter:
24086 @example
24087 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
24088 @end example
24089 @end itemize
24090
24091 @section concat
24092
24093 Concatenate audio and video streams, joining them together one after the
24094 other.
24095
24096 The filter works on segments of synchronized video and audio streams. All
24097 segments must have the same number of streams of each type, and that will
24098 also be the number of streams at output.
24099
24100 The filter accepts the following options:
24101
24102 @table @option
24103
24104 @item n
24105 Set the number of segments. Default is 2.
24106
24107 @item v
24108 Set the number of output video streams, that is also the number of video
24109 streams in each segment. Default is 1.
24110
24111 @item a
24112 Set the number of output audio streams, that is also the number of audio
24113 streams in each segment. Default is 0.
24114
24115 @item unsafe
24116 Activate unsafe mode: do not fail if segments have a different format.
24117
24118 @end table
24119
24120 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
24121 @var{a} audio outputs.
24122
24123 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
24124 segment, in the same order as the outputs, then the inputs for the second
24125 segment, etc.
24126
24127 Related streams do not always have exactly the same duration, for various
24128 reasons including codec frame size or sloppy authoring. For that reason,
24129 related synchronized streams (e.g. a video and its audio track) should be
24130 concatenated at once. The concat filter will use the duration of the longest
24131 stream in each segment (except the last one), and if necessary pad shorter
24132 audio streams with silence.
24133
24134 For this filter to work correctly, all segments must start at timestamp 0.
24135
24136 All corresponding streams must have the same parameters in all segments; the
24137 filtering system will automatically select a common pixel format for video
24138 streams, and a common sample format, sample rate and channel layout for
24139 audio streams, but other settings, such as resolution, must be converted
24140 explicitly by the user.
24141
24142 Different frame rates are acceptable but will result in variable frame rate
24143 at output; be sure to configure the output file to handle it.
24144
24145 @subsection Examples
24146
24147 @itemize
24148 @item
24149 Concatenate an opening, an episode and an ending, all in bilingual version
24150 (video in stream 0, audio in streams 1 and 2):
24151 @example
24152 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
24153   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
24154    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
24155   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
24156 @end example
24157
24158 @item
24159 Concatenate two parts, handling audio and video separately, using the
24160 (a)movie sources, and adjusting the resolution:
24161 @example
24162 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
24163 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
24164 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
24165 @end example
24166 Note that a desync will happen at the stitch if the audio and video streams
24167 do not have exactly the same duration in the first file.
24168
24169 @end itemize
24170
24171 @subsection Commands
24172
24173 This filter supports the following commands:
24174 @table @option
24175 @item next
24176 Close the current segment and step to the next one
24177 @end table
24178
24179 @anchor{ebur128}
24180 @section ebur128
24181
24182 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
24183 level. By default, it logs a message at a frequency of 10Hz with the
24184 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
24185 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
24186
24187 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
24188 sample format is double-precision floating point. The input stream will be converted to
24189 this specification, if needed. Users may need to insert aformat and/or aresample filters
24190 after this filter to obtain the original parameters.
24191
24192 The filter also has a video output (see the @var{video} option) with a real
24193 time graph to observe the loudness evolution. The graphic contains the logged
24194 message mentioned above, so it is not printed anymore when this option is set,
24195 unless the verbose logging is set. The main graphing area contains the
24196 short-term loudness (3 seconds of analysis), and the gauge on the right is for
24197 the momentary loudness (400 milliseconds), but can optionally be configured
24198 to instead display short-term loudness (see @var{gauge}).
24199
24200 The green area marks a  +/- 1LU target range around the target loudness
24201 (-23LUFS by default, unless modified through @var{target}).
24202
24203 More information about the Loudness Recommendation EBU R128 on
24204 @url{http://tech.ebu.ch/loudness}.
24205
24206 The filter accepts the following options:
24207
24208 @table @option
24209
24210 @item video
24211 Activate the video output. The audio stream is passed unchanged whether this
24212 option is set or no. The video stream will be the first output stream if
24213 activated. Default is @code{0}.
24214
24215 @item size
24216 Set the video size. This option is for video only. For the syntax of this
24217 option, check the
24218 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24219 Default and minimum resolution is @code{640x480}.
24220
24221 @item meter
24222 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
24223 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
24224 other integer value between this range is allowed.
24225
24226 @item metadata
24227 Set metadata injection. If set to @code{1}, the audio input will be segmented
24228 into 100ms output frames, each of them containing various loudness information
24229 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
24230
24231 Default is @code{0}.
24232
24233 @item framelog
24234 Force the frame logging level.
24235
24236 Available values are:
24237 @table @samp
24238 @item info
24239 information logging level
24240 @item verbose
24241 verbose logging level
24242 @end table
24243
24244 By default, the logging level is set to @var{info}. If the @option{video} or
24245 the @option{metadata} options are set, it switches to @var{verbose}.
24246
24247 @item peak
24248 Set peak mode(s).
24249
24250 Available modes can be cumulated (the option is a @code{flag} type). Possible
24251 values are:
24252 @table @samp
24253 @item none
24254 Disable any peak mode (default).
24255 @item sample
24256 Enable sample-peak mode.
24257
24258 Simple peak mode looking for the higher sample value. It logs a message
24259 for sample-peak (identified by @code{SPK}).
24260 @item true
24261 Enable true-peak mode.
24262
24263 If enabled, the peak lookup is done on an over-sampled version of the input
24264 stream for better peak accuracy. It logs a message for true-peak.
24265 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
24266 This mode requires a build with @code{libswresample}.
24267 @end table
24268
24269 @item dualmono
24270 Treat mono input files as "dual mono". If a mono file is intended for playback
24271 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
24272 If set to @code{true}, this option will compensate for this effect.
24273 Multi-channel input files are not affected by this option.
24274
24275 @item panlaw
24276 Set a specific pan law to be used for the measurement of dual mono files.
24277 This parameter is optional, and has a default value of -3.01dB.
24278
24279 @item target
24280 Set a specific target level (in LUFS) used as relative zero in the visualization.
24281 This parameter is optional and has a default value of -23LUFS as specified
24282 by EBU R128. However, material published online may prefer a level of -16LUFS
24283 (e.g. for use with podcasts or video platforms).
24284
24285 @item gauge
24286 Set the value displayed by the gauge. Valid values are @code{momentary} and s
24287 @code{shortterm}. By default the momentary value will be used, but in certain
24288 scenarios it may be more useful to observe the short term value instead (e.g.
24289 live mixing).
24290
24291 @item scale
24292 Sets the display scale for the loudness. Valid parameters are @code{absolute}
24293 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
24294 video output, not the summary or continuous log output.
24295 @end table
24296
24297 @subsection Examples
24298
24299 @itemize
24300 @item
24301 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
24302 @example
24303 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
24304 @end example
24305
24306 @item
24307 Run an analysis with @command{ffmpeg}:
24308 @example
24309 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
24310 @end example
24311 @end itemize
24312
24313 @section interleave, ainterleave
24314
24315 Temporally interleave frames from several inputs.
24316
24317 @code{interleave} works with video inputs, @code{ainterleave} with audio.
24318
24319 These filters read frames from several inputs and send the oldest
24320 queued frame to the output.
24321
24322 Input streams must have well defined, monotonically increasing frame
24323 timestamp values.
24324
24325 In order to submit one frame to output, these filters need to enqueue
24326 at least one frame for each input, so they cannot work in case one
24327 input is not yet terminated and will not receive incoming frames.
24328
24329 For example consider the case when one input is a @code{select} filter
24330 which always drops input frames. The @code{interleave} filter will keep
24331 reading from that input, but it will never be able to send new frames
24332 to output until the input sends an end-of-stream signal.
24333
24334 Also, depending on inputs synchronization, the filters will drop
24335 frames in case one input receives more frames than the other ones, and
24336 the queue is already filled.
24337
24338 These filters accept the following options:
24339
24340 @table @option
24341 @item nb_inputs, n
24342 Set the number of different inputs, it is 2 by default.
24343
24344 @item duration
24345 How to determine the end-of-stream.
24346
24347 @table @option
24348 @item longest
24349 The duration of the longest input. (default)
24350
24351 @item shortest
24352 The duration of the shortest input.
24353
24354 @item first
24355 The duration of the first input.
24356 @end table
24357
24358 @end table
24359
24360 @subsection Examples
24361
24362 @itemize
24363 @item
24364 Interleave frames belonging to different streams using @command{ffmpeg}:
24365 @example
24366 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
24367 @end example
24368
24369 @item
24370 Add flickering blur effect:
24371 @example
24372 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
24373 @end example
24374 @end itemize
24375
24376 @section metadata, ametadata
24377
24378 Manipulate frame metadata.
24379
24380 This filter accepts the following options:
24381
24382 @table @option
24383 @item mode
24384 Set mode of operation of the filter.
24385
24386 Can be one of the following:
24387
24388 @table @samp
24389 @item select
24390 If both @code{value} and @code{key} is set, select frames
24391 which have such metadata. If only @code{key} is set, select
24392 every frame that has such key in metadata.
24393
24394 @item add
24395 Add new metadata @code{key} and @code{value}. If key is already available
24396 do nothing.
24397
24398 @item modify
24399 Modify value of already present key.
24400
24401 @item delete
24402 If @code{value} is set, delete only keys that have such value.
24403 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
24404 the frame.
24405
24406 @item print
24407 Print key and its value if metadata was found. If @code{key} is not set print all
24408 metadata values available in frame.
24409 @end table
24410
24411 @item key
24412 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
24413
24414 @item value
24415 Set metadata value which will be used. This option is mandatory for
24416 @code{modify} and @code{add} mode.
24417
24418 @item function
24419 Which function to use when comparing metadata value and @code{value}.
24420
24421 Can be one of following:
24422
24423 @table @samp
24424 @item same_str
24425 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
24426
24427 @item starts_with
24428 Values are interpreted as strings, returns true if metadata value starts with
24429 the @code{value} option string.
24430
24431 @item less
24432 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
24433
24434 @item equal
24435 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
24436
24437 @item greater
24438 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
24439
24440 @item expr
24441 Values are interpreted as floats, returns true if expression from option @code{expr}
24442 evaluates to true.
24443
24444 @item ends_with
24445 Values are interpreted as strings, returns true if metadata value ends with
24446 the @code{value} option string.
24447 @end table
24448
24449 @item expr
24450 Set expression which is used when @code{function} is set to @code{expr}.
24451 The expression is evaluated through the eval API and can contain the following
24452 constants:
24453
24454 @table @option
24455 @item VALUE1
24456 Float representation of @code{value} from metadata key.
24457
24458 @item VALUE2
24459 Float representation of @code{value} as supplied by user in @code{value} option.
24460 @end table
24461
24462 @item file
24463 If specified in @code{print} mode, output is written to the named file. Instead of
24464 plain filename any writable url can be specified. Filename ``-'' is a shorthand
24465 for standard output. If @code{file} option is not set, output is written to the log
24466 with AV_LOG_INFO loglevel.
24467
24468 @item direct
24469 Reduces buffering in print mode when output is written to a URL set using @var{file}.
24470
24471 @end table
24472
24473 @subsection Examples
24474
24475 @itemize
24476 @item
24477 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
24478 between 0 and 1.
24479 @example
24480 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
24481 @end example
24482 @item
24483 Print silencedetect output to file @file{metadata.txt}.
24484 @example
24485 silencedetect,ametadata=mode=print:file=metadata.txt
24486 @end example
24487 @item
24488 Direct all metadata to a pipe with file descriptor 4.
24489 @example
24490 metadata=mode=print:file='pipe\:4'
24491 @end example
24492 @end itemize
24493
24494 @section perms, aperms
24495
24496 Set read/write permissions for the output frames.
24497
24498 These filters are mainly aimed at developers to test direct path in the
24499 following filter in the filtergraph.
24500
24501 The filters accept the following options:
24502
24503 @table @option
24504 @item mode
24505 Select the permissions mode.
24506
24507 It accepts the following values:
24508 @table @samp
24509 @item none
24510 Do nothing. This is the default.
24511 @item ro
24512 Set all the output frames read-only.
24513 @item rw
24514 Set all the output frames directly writable.
24515 @item toggle
24516 Make the frame read-only if writable, and writable if read-only.
24517 @item random
24518 Set each output frame read-only or writable randomly.
24519 @end table
24520
24521 @item seed
24522 Set the seed for the @var{random} mode, must be an integer included between
24523 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
24524 @code{-1}, the filter will try to use a good random seed on a best effort
24525 basis.
24526 @end table
24527
24528 Note: in case of auto-inserted filter between the permission filter and the
24529 following one, the permission might not be received as expected in that
24530 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
24531 perms/aperms filter can avoid this problem.
24532
24533 @section realtime, arealtime
24534
24535 Slow down filtering to match real time approximately.
24536
24537 These filters will pause the filtering for a variable amount of time to
24538 match the output rate with the input timestamps.
24539 They are similar to the @option{re} option to @code{ffmpeg}.
24540
24541 They accept the following options:
24542
24543 @table @option
24544 @item limit
24545 Time limit for the pauses. Any pause longer than that will be considered
24546 a timestamp discontinuity and reset the timer. Default is 2 seconds.
24547 @item speed
24548 Speed factor for processing. The value must be a float larger than zero.
24549 Values larger than 1.0 will result in faster than realtime processing,
24550 smaller will slow processing down. The @var{limit} is automatically adapted
24551 accordingly. Default is 1.0.
24552
24553 A processing speed faster than what is possible without these filters cannot
24554 be achieved.
24555 @end table
24556
24557 @anchor{select}
24558 @section select, aselect
24559
24560 Select frames to pass in output.
24561
24562 This filter accepts the following options:
24563
24564 @table @option
24565
24566 @item expr, e
24567 Set expression, which is evaluated for each input frame.
24568
24569 If the expression is evaluated to zero, the frame is discarded.
24570
24571 If the evaluation result is negative or NaN, the frame is sent to the
24572 first output; otherwise it is sent to the output with index
24573 @code{ceil(val)-1}, assuming that the input index starts from 0.
24574
24575 For example a value of @code{1.2} corresponds to the output with index
24576 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
24577
24578 @item outputs, n
24579 Set the number of outputs. The output to which to send the selected
24580 frame is based on the result of the evaluation. Default value is 1.
24581 @end table
24582
24583 The expression can contain the following constants:
24584
24585 @table @option
24586 @item n
24587 The (sequential) number of the filtered frame, starting from 0.
24588
24589 @item selected_n
24590 The (sequential) number of the selected frame, starting from 0.
24591
24592 @item prev_selected_n
24593 The sequential number of the last selected frame. It's NAN if undefined.
24594
24595 @item TB
24596 The timebase of the input timestamps.
24597
24598 @item pts
24599 The PTS (Presentation TimeStamp) of the filtered video frame,
24600 expressed in @var{TB} units. It's NAN if undefined.
24601
24602 @item t
24603 The PTS of the filtered video frame,
24604 expressed in seconds. It's NAN if undefined.
24605
24606 @item prev_pts
24607 The PTS of the previously filtered video frame. It's NAN if undefined.
24608
24609 @item prev_selected_pts
24610 The PTS of the last previously filtered video frame. It's NAN if undefined.
24611
24612 @item prev_selected_t
24613 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
24614
24615 @item start_pts
24616 The PTS of the first video frame in the video. It's NAN if undefined.
24617
24618 @item start_t
24619 The time of the first video frame in the video. It's NAN if undefined.
24620
24621 @item pict_type @emph{(video only)}
24622 The type of the filtered frame. It can assume one of the following
24623 values:
24624 @table @option
24625 @item I
24626 @item P
24627 @item B
24628 @item S
24629 @item SI
24630 @item SP
24631 @item BI
24632 @end table
24633
24634 @item interlace_type @emph{(video only)}
24635 The frame interlace type. It can assume one of the following values:
24636 @table @option
24637 @item PROGRESSIVE
24638 The frame is progressive (not interlaced).
24639 @item TOPFIRST
24640 The frame is top-field-first.
24641 @item BOTTOMFIRST
24642 The frame is bottom-field-first.
24643 @end table
24644
24645 @item consumed_sample_n @emph{(audio only)}
24646 the number of selected samples before the current frame
24647
24648 @item samples_n @emph{(audio only)}
24649 the number of samples in the current frame
24650
24651 @item sample_rate @emph{(audio only)}
24652 the input sample rate
24653
24654 @item key
24655 This is 1 if the filtered frame is a key-frame, 0 otherwise.
24656
24657 @item pos
24658 the position in the file of the filtered frame, -1 if the information
24659 is not available (e.g. for synthetic video)
24660
24661 @item scene @emph{(video only)}
24662 value between 0 and 1 to indicate a new scene; a low value reflects a low
24663 probability for the current frame to introduce a new scene, while a higher
24664 value means the current frame is more likely to be one (see the example below)
24665
24666 @item concatdec_select
24667 The concat demuxer can select only part of a concat input file by setting an
24668 inpoint and an outpoint, but the output packets may not be entirely contained
24669 in the selected interval. By using this variable, it is possible to skip frames
24670 generated by the concat demuxer which are not exactly contained in the selected
24671 interval.
24672
24673 This works by comparing the frame pts against the @var{lavf.concat.start_time}
24674 and the @var{lavf.concat.duration} packet metadata values which are also
24675 present in the decoded frames.
24676
24677 The @var{concatdec_select} variable is -1 if the frame pts is at least
24678 start_time and either the duration metadata is missing or the frame pts is less
24679 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
24680 missing.
24681
24682 That basically means that an input frame is selected if its pts is within the
24683 interval set by the concat demuxer.
24684
24685 @end table
24686
24687 The default value of the select expression is "1".
24688
24689 @subsection Examples
24690
24691 @itemize
24692 @item
24693 Select all frames in input:
24694 @example
24695 select
24696 @end example
24697
24698 The example above is the same as:
24699 @example
24700 select=1
24701 @end example
24702
24703 @item
24704 Skip all frames:
24705 @example
24706 select=0
24707 @end example
24708
24709 @item
24710 Select only I-frames:
24711 @example
24712 select='eq(pict_type\,I)'
24713 @end example
24714
24715 @item
24716 Select one frame every 100:
24717 @example
24718 select='not(mod(n\,100))'
24719 @end example
24720
24721 @item
24722 Select only frames contained in the 10-20 time interval:
24723 @example
24724 select=between(t\,10\,20)
24725 @end example
24726
24727 @item
24728 Select only I-frames contained in the 10-20 time interval:
24729 @example
24730 select=between(t\,10\,20)*eq(pict_type\,I)
24731 @end example
24732
24733 @item
24734 Select frames with a minimum distance of 10 seconds:
24735 @example
24736 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
24737 @end example
24738
24739 @item
24740 Use aselect to select only audio frames with samples number > 100:
24741 @example
24742 aselect='gt(samples_n\,100)'
24743 @end example
24744
24745 @item
24746 Create a mosaic of the first scenes:
24747 @example
24748 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
24749 @end example
24750
24751 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
24752 choice.
24753
24754 @item
24755 Send even and odd frames to separate outputs, and compose them:
24756 @example
24757 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
24758 @end example
24759
24760 @item
24761 Select useful frames from an ffconcat file which is using inpoints and
24762 outpoints but where the source files are not intra frame only.
24763 @example
24764 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
24765 @end example
24766 @end itemize
24767
24768 @section sendcmd, asendcmd
24769
24770 Send commands to filters in the filtergraph.
24771
24772 These filters read commands to be sent to other filters in the
24773 filtergraph.
24774
24775 @code{sendcmd} must be inserted between two video filters,
24776 @code{asendcmd} must be inserted between two audio filters, but apart
24777 from that they act the same way.
24778
24779 The specification of commands can be provided in the filter arguments
24780 with the @var{commands} option, or in a file specified by the
24781 @var{filename} option.
24782
24783 These filters accept the following options:
24784 @table @option
24785 @item commands, c
24786 Set the commands to be read and sent to the other filters.
24787 @item filename, f
24788 Set the filename of the commands to be read and sent to the other
24789 filters.
24790 @end table
24791
24792 @subsection Commands syntax
24793
24794 A commands description consists of a sequence of interval
24795 specifications, comprising a list of commands to be executed when a
24796 particular event related to that interval occurs. The occurring event
24797 is typically the current frame time entering or leaving a given time
24798 interval.
24799
24800 An interval is specified by the following syntax:
24801 @example
24802 @var{START}[-@var{END}] @var{COMMANDS};
24803 @end example
24804
24805 The time interval is specified by the @var{START} and @var{END} times.
24806 @var{END} is optional and defaults to the maximum time.
24807
24808 The current frame time is considered within the specified interval if
24809 it is included in the interval [@var{START}, @var{END}), that is when
24810 the time is greater or equal to @var{START} and is lesser than
24811 @var{END}.
24812
24813 @var{COMMANDS} consists of a sequence of one or more command
24814 specifications, separated by ",", relating to that interval.  The
24815 syntax of a command specification is given by:
24816 @example
24817 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
24818 @end example
24819
24820 @var{FLAGS} is optional and specifies the type of events relating to
24821 the time interval which enable sending the specified command, and must
24822 be a non-null sequence of identifier flags separated by "+" or "|" and
24823 enclosed between "[" and "]".
24824
24825 The following flags are recognized:
24826 @table @option
24827 @item enter
24828 The command is sent when the current frame timestamp enters the
24829 specified interval. In other words, the command is sent when the
24830 previous frame timestamp was not in the given interval, and the
24831 current is.
24832
24833 @item leave
24834 The command is sent when the current frame timestamp leaves the
24835 specified interval. In other words, the command is sent when the
24836 previous frame timestamp was in the given interval, and the
24837 current is not.
24838
24839 @item expr
24840 The command @var{ARG} is interpreted as expression and result of
24841 expression is passed as @var{ARG}.
24842
24843 The expression is evaluated through the eval API and can contain the following
24844 constants:
24845
24846 @table @option
24847 @item POS
24848 Original position in the file of the frame, or undefined if undefined
24849 for the current frame.
24850
24851 @item PTS
24852 The presentation timestamp in input.
24853
24854 @item N
24855 The count of the input frame for video or audio, starting from 0.
24856
24857 @item T
24858 The time in seconds of the current frame.
24859
24860 @item TS
24861 The start time in seconds of the current command interval.
24862
24863 @item TE
24864 The end time in seconds of the current command interval.
24865
24866 @item TI
24867 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
24868 @end table
24869
24870 @end table
24871
24872 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
24873 assumed.
24874
24875 @var{TARGET} specifies the target of the command, usually the name of
24876 the filter class or a specific filter instance name.
24877
24878 @var{COMMAND} specifies the name of the command for the target filter.
24879
24880 @var{ARG} is optional and specifies the optional list of argument for
24881 the given @var{COMMAND}.
24882
24883 Between one interval specification and another, whitespaces, or
24884 sequences of characters starting with @code{#} until the end of line,
24885 are ignored and can be used to annotate comments.
24886
24887 A simplified BNF description of the commands specification syntax
24888 follows:
24889 @example
24890 @var{COMMAND_FLAG}  ::= "enter" | "leave"
24891 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
24892 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
24893 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
24894 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
24895 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
24896 @end example
24897
24898 @subsection Examples
24899
24900 @itemize
24901 @item
24902 Specify audio tempo change at second 4:
24903 @example
24904 asendcmd=c='4.0 atempo tempo 1.5',atempo
24905 @end example
24906
24907 @item
24908 Target a specific filter instance:
24909 @example
24910 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
24911 @end example
24912
24913 @item
24914 Specify a list of drawtext and hue commands in a file.
24915 @example
24916 # show text in the interval 5-10
24917 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
24918          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
24919
24920 # desaturate the image in the interval 15-20
24921 15.0-20.0 [enter] hue s 0,
24922           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
24923           [leave] hue s 1,
24924           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
24925
24926 # apply an exponential saturation fade-out effect, starting from time 25
24927 25 [enter] hue s exp(25-t)
24928 @end example
24929
24930 A filtergraph allowing to read and process the above command list
24931 stored in a file @file{test.cmd}, can be specified with:
24932 @example
24933 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
24934 @end example
24935 @end itemize
24936
24937 @anchor{setpts}
24938 @section setpts, asetpts
24939
24940 Change the PTS (presentation timestamp) of the input frames.
24941
24942 @code{setpts} works on video frames, @code{asetpts} on audio frames.
24943
24944 This filter accepts the following options:
24945
24946 @table @option
24947
24948 @item expr
24949 The expression which is evaluated for each frame to construct its timestamp.
24950
24951 @end table
24952
24953 The expression is evaluated through the eval API and can contain the following
24954 constants:
24955
24956 @table @option
24957 @item FRAME_RATE, FR
24958 frame rate, only defined for constant frame-rate video
24959
24960 @item PTS
24961 The presentation timestamp in input
24962
24963 @item N
24964 The count of the input frame for video or the number of consumed samples,
24965 not including the current frame for audio, starting from 0.
24966
24967 @item NB_CONSUMED_SAMPLES
24968 The number of consumed samples, not including the current frame (only
24969 audio)
24970
24971 @item NB_SAMPLES, S
24972 The number of samples in the current frame (only audio)
24973
24974 @item SAMPLE_RATE, SR
24975 The audio sample rate.
24976
24977 @item STARTPTS
24978 The PTS of the first frame.
24979
24980 @item STARTT
24981 the time in seconds of the first frame
24982
24983 @item INTERLACED
24984 State whether the current frame is interlaced.
24985
24986 @item T
24987 the time in seconds of the current frame
24988
24989 @item POS
24990 original position in the file of the frame, or undefined if undefined
24991 for the current frame
24992
24993 @item PREV_INPTS
24994 The previous input PTS.
24995
24996 @item PREV_INT
24997 previous input time in seconds
24998
24999 @item PREV_OUTPTS
25000 The previous output PTS.
25001
25002 @item PREV_OUTT
25003 previous output time in seconds
25004
25005 @item RTCTIME
25006 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
25007 instead.
25008
25009 @item RTCSTART
25010 The wallclock (RTC) time at the start of the movie in microseconds.
25011
25012 @item TB
25013 The timebase of the input timestamps.
25014
25015 @end table
25016
25017 @subsection Examples
25018
25019 @itemize
25020 @item
25021 Start counting PTS from zero
25022 @example
25023 setpts=PTS-STARTPTS
25024 @end example
25025
25026 @item
25027 Apply fast motion effect:
25028 @example
25029 setpts=0.5*PTS
25030 @end example
25031
25032 @item
25033 Apply slow motion effect:
25034 @example
25035 setpts=2.0*PTS
25036 @end example
25037
25038 @item
25039 Set fixed rate of 25 frames per second:
25040 @example
25041 setpts=N/(25*TB)
25042 @end example
25043
25044 @item
25045 Set fixed rate 25 fps with some jitter:
25046 @example
25047 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
25048 @end example
25049
25050 @item
25051 Apply an offset of 10 seconds to the input PTS:
25052 @example
25053 setpts=PTS+10/TB
25054 @end example
25055
25056 @item
25057 Generate timestamps from a "live source" and rebase onto the current timebase:
25058 @example
25059 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
25060 @end example
25061
25062 @item
25063 Generate timestamps by counting samples:
25064 @example
25065 asetpts=N/SR/TB
25066 @end example
25067
25068 @end itemize
25069
25070 @section setrange
25071
25072 Force color range for the output video frame.
25073
25074 The @code{setrange} filter marks the color range property for the
25075 output frames. It does not change the input frame, but only sets the
25076 corresponding property, which affects how the frame is treated by
25077 following filters.
25078
25079 The filter accepts the following options:
25080
25081 @table @option
25082
25083 @item range
25084 Available values are:
25085
25086 @table @samp
25087 @item auto
25088 Keep the same color range property.
25089
25090 @item unspecified, unknown
25091 Set the color range as unspecified.
25092
25093 @item limited, tv, mpeg
25094 Set the color range as limited.
25095
25096 @item full, pc, jpeg
25097 Set the color range as full.
25098 @end table
25099 @end table
25100
25101 @section settb, asettb
25102
25103 Set the timebase to use for the output frames timestamps.
25104 It is mainly useful for testing timebase configuration.
25105
25106 It accepts the following parameters:
25107
25108 @table @option
25109
25110 @item expr, tb
25111 The expression which is evaluated into the output timebase.
25112
25113 @end table
25114
25115 The value for @option{tb} is an arithmetic expression representing a
25116 rational. The expression can contain the constants "AVTB" (the default
25117 timebase), "intb" (the input timebase) and "sr" (the sample rate,
25118 audio only). Default value is "intb".
25119
25120 @subsection Examples
25121
25122 @itemize
25123 @item
25124 Set the timebase to 1/25:
25125 @example
25126 settb=expr=1/25
25127 @end example
25128
25129 @item
25130 Set the timebase to 1/10:
25131 @example
25132 settb=expr=0.1
25133 @end example
25134
25135 @item
25136 Set the timebase to 1001/1000:
25137 @example
25138 settb=1+0.001
25139 @end example
25140
25141 @item
25142 Set the timebase to 2*intb:
25143 @example
25144 settb=2*intb
25145 @end example
25146
25147 @item
25148 Set the default timebase value:
25149 @example
25150 settb=AVTB
25151 @end example
25152 @end itemize
25153
25154 @section showcqt
25155 Convert input audio to a video output representing frequency spectrum
25156 logarithmically using Brown-Puckette constant Q transform algorithm with
25157 direct frequency domain coefficient calculation (but the transform itself
25158 is not really constant Q, instead the Q factor is actually variable/clamped),
25159 with musical tone scale, from E0 to D#10.
25160
25161 The filter accepts the following options:
25162
25163 @table @option
25164 @item size, s
25165 Specify the video size for the output. It must be even. For the syntax of this option,
25166 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25167 Default value is @code{1920x1080}.
25168
25169 @item fps, rate, r
25170 Set the output frame rate. Default value is @code{25}.
25171
25172 @item bar_h
25173 Set the bargraph height. It must be even. Default value is @code{-1} which
25174 computes the bargraph height automatically.
25175
25176 @item axis_h
25177 Set the axis height. It must be even. Default value is @code{-1} which computes
25178 the axis height automatically.
25179
25180 @item sono_h
25181 Set the sonogram height. It must be even. Default value is @code{-1} which
25182 computes the sonogram height automatically.
25183
25184 @item fullhd
25185 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
25186 instead. Default value is @code{1}.
25187
25188 @item sono_v, volume
25189 Specify the sonogram volume expression. It can contain variables:
25190 @table @option
25191 @item bar_v
25192 the @var{bar_v} evaluated expression
25193 @item frequency, freq, f
25194 the frequency where it is evaluated
25195 @item timeclamp, tc
25196 the value of @var{timeclamp} option
25197 @end table
25198 and functions:
25199 @table @option
25200 @item a_weighting(f)
25201 A-weighting of equal loudness
25202 @item b_weighting(f)
25203 B-weighting of equal loudness
25204 @item c_weighting(f)
25205 C-weighting of equal loudness.
25206 @end table
25207 Default value is @code{16}.
25208
25209 @item bar_v, volume2
25210 Specify the bargraph volume expression. It can contain variables:
25211 @table @option
25212 @item sono_v
25213 the @var{sono_v} evaluated expression
25214 @item frequency, freq, f
25215 the frequency where it is evaluated
25216 @item timeclamp, tc
25217 the value of @var{timeclamp} option
25218 @end table
25219 and functions:
25220 @table @option
25221 @item a_weighting(f)
25222 A-weighting of equal loudness
25223 @item b_weighting(f)
25224 B-weighting of equal loudness
25225 @item c_weighting(f)
25226 C-weighting of equal loudness.
25227 @end table
25228 Default value is @code{sono_v}.
25229
25230 @item sono_g, gamma
25231 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
25232 higher gamma makes the spectrum having more range. Default value is @code{3}.
25233 Acceptable range is @code{[1, 7]}.
25234
25235 @item bar_g, gamma2
25236 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
25237 @code{[1, 7]}.
25238
25239 @item bar_t
25240 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
25241 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
25242
25243 @item timeclamp, tc
25244 Specify the transform timeclamp. At low frequency, there is trade-off between
25245 accuracy in time domain and frequency domain. If timeclamp is lower,
25246 event in time domain is represented more accurately (such as fast bass drum),
25247 otherwise event in frequency domain is represented more accurately
25248 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
25249
25250 @item attack
25251 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
25252 limits future samples by applying asymmetric windowing in time domain, useful
25253 when low latency is required. Accepted range is @code{[0, 1]}.
25254
25255 @item basefreq
25256 Specify the transform base frequency. Default value is @code{20.01523126408007475},
25257 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
25258
25259 @item endfreq
25260 Specify the transform end frequency. Default value is @code{20495.59681441799654},
25261 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
25262
25263 @item coeffclamp
25264 This option is deprecated and ignored.
25265
25266 @item tlength
25267 Specify the transform length in time domain. Use this option to control accuracy
25268 trade-off between time domain and frequency domain at every frequency sample.
25269 It can contain variables:
25270 @table @option
25271 @item frequency, freq, f
25272 the frequency where it is evaluated
25273 @item timeclamp, tc
25274 the value of @var{timeclamp} option.
25275 @end table
25276 Default value is @code{384*tc/(384+tc*f)}.
25277
25278 @item count
25279 Specify the transform count for every video frame. Default value is @code{6}.
25280 Acceptable range is @code{[1, 30]}.
25281
25282 @item fcount
25283 Specify the transform count for every single pixel. Default value is @code{0},
25284 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
25285
25286 @item fontfile
25287 Specify font file for use with freetype to draw the axis. If not specified,
25288 use embedded font. Note that drawing with font file or embedded font is not
25289 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
25290 option instead.
25291
25292 @item font
25293 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
25294 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
25295 escaping.
25296
25297 @item fontcolor
25298 Specify font color expression. This is arithmetic expression that should return
25299 integer value 0xRRGGBB. It can contain variables:
25300 @table @option
25301 @item frequency, freq, f
25302 the frequency where it is evaluated
25303 @item timeclamp, tc
25304 the value of @var{timeclamp} option
25305 @end table
25306 and functions:
25307 @table @option
25308 @item midi(f)
25309 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
25310 @item r(x), g(x), b(x)
25311 red, green, and blue value of intensity x.
25312 @end table
25313 Default value is @code{st(0, (midi(f)-59.5)/12);
25314 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
25315 r(1-ld(1)) + b(ld(1))}.
25316
25317 @item axisfile
25318 Specify image file to draw the axis. This option override @var{fontfile} and
25319 @var{fontcolor} option.
25320
25321 @item axis, text
25322 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
25323 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
25324 Default value is @code{1}.
25325
25326 @item csp
25327 Set colorspace. The accepted values are:
25328 @table @samp
25329 @item unspecified
25330 Unspecified (default)
25331
25332 @item bt709
25333 BT.709
25334
25335 @item fcc
25336 FCC
25337
25338 @item bt470bg
25339 BT.470BG or BT.601-6 625
25340
25341 @item smpte170m
25342 SMPTE-170M or BT.601-6 525
25343
25344 @item smpte240m
25345 SMPTE-240M
25346
25347 @item bt2020ncl
25348 BT.2020 with non-constant luminance
25349
25350 @end table
25351
25352 @item cscheme
25353 Set spectrogram color scheme. This is list of floating point values with format
25354 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
25355 The default is @code{1|0.5|0|0|0.5|1}.
25356
25357 @end table
25358
25359 @subsection Examples
25360
25361 @itemize
25362 @item
25363 Playing audio while showing the spectrum:
25364 @example
25365 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
25366 @end example
25367
25368 @item
25369 Same as above, but with frame rate 30 fps:
25370 @example
25371 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
25372 @end example
25373
25374 @item
25375 Playing at 1280x720:
25376 @example
25377 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
25378 @end example
25379
25380 @item
25381 Disable sonogram display:
25382 @example
25383 sono_h=0
25384 @end example
25385
25386 @item
25387 A1 and its harmonics: A1, A2, (near)E3, A3:
25388 @example
25389 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),
25390                  asplit[a][out1]; [a] showcqt [out0]'
25391 @end example
25392
25393 @item
25394 Same as above, but with more accuracy in frequency domain:
25395 @example
25396 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),
25397                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
25398 @end example
25399
25400 @item
25401 Custom volume:
25402 @example
25403 bar_v=10:sono_v=bar_v*a_weighting(f)
25404 @end example
25405
25406 @item
25407 Custom gamma, now spectrum is linear to the amplitude.
25408 @example
25409 bar_g=2:sono_g=2
25410 @end example
25411
25412 @item
25413 Custom tlength equation:
25414 @example
25415 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)))'
25416 @end example
25417
25418 @item
25419 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
25420 @example
25421 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
25422 @end example
25423
25424 @item
25425 Custom font using fontconfig:
25426 @example
25427 font='Courier New,Monospace,mono|bold'
25428 @end example
25429
25430 @item
25431 Custom frequency range with custom axis using image file:
25432 @example
25433 axisfile=myaxis.png:basefreq=40:endfreq=10000
25434 @end example
25435 @end itemize
25436
25437 @section showfreqs
25438
25439 Convert input audio to video output representing the audio power spectrum.
25440 Audio amplitude is on Y-axis while frequency is on X-axis.
25441
25442 The filter accepts the following options:
25443
25444 @table @option
25445 @item size, s
25446 Specify size of video. For the syntax of this option, check the
25447 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25448 Default is @code{1024x512}.
25449
25450 @item mode
25451 Set display mode.
25452 This set how each frequency bin will be represented.
25453
25454 It accepts the following values:
25455 @table @samp
25456 @item line
25457 @item bar
25458 @item dot
25459 @end table
25460 Default is @code{bar}.
25461
25462 @item ascale
25463 Set amplitude scale.
25464
25465 It accepts the following values:
25466 @table @samp
25467 @item lin
25468 Linear scale.
25469
25470 @item sqrt
25471 Square root scale.
25472
25473 @item cbrt
25474 Cubic root scale.
25475
25476 @item log
25477 Logarithmic scale.
25478 @end table
25479 Default is @code{log}.
25480
25481 @item fscale
25482 Set frequency scale.
25483
25484 It accepts the following values:
25485 @table @samp
25486 @item lin
25487 Linear scale.
25488
25489 @item log
25490 Logarithmic scale.
25491
25492 @item rlog
25493 Reverse logarithmic scale.
25494 @end table
25495 Default is @code{lin}.
25496
25497 @item win_size
25498 Set window size. Allowed range is from 16 to 65536.
25499
25500 Default is @code{2048}
25501
25502 @item win_func
25503 Set windowing function.
25504
25505 It accepts the following values:
25506 @table @samp
25507 @item rect
25508 @item bartlett
25509 @item hanning
25510 @item hamming
25511 @item blackman
25512 @item welch
25513 @item flattop
25514 @item bharris
25515 @item bnuttall
25516 @item bhann
25517 @item sine
25518 @item nuttall
25519 @item lanczos
25520 @item gauss
25521 @item tukey
25522 @item dolph
25523 @item cauchy
25524 @item parzen
25525 @item poisson
25526 @item bohman
25527 @end table
25528 Default is @code{hanning}.
25529
25530 @item overlap
25531 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25532 which means optimal overlap for selected window function will be picked.
25533
25534 @item averaging
25535 Set time averaging. Setting this to 0 will display current maximal peaks.
25536 Default is @code{1}, which means time averaging is disabled.
25537
25538 @item colors
25539 Specify list of colors separated by space or by '|' which will be used to
25540 draw channel frequencies. Unrecognized or missing colors will be replaced
25541 by white color.
25542
25543 @item cmode
25544 Set channel display mode.
25545
25546 It accepts the following values:
25547 @table @samp
25548 @item combined
25549 @item separate
25550 @end table
25551 Default is @code{combined}.
25552
25553 @item minamp
25554 Set minimum amplitude used in @code{log} amplitude scaler.
25555
25556 @item data
25557 Set data display mode.
25558
25559 It accepts the following values:
25560 @table @samp
25561 @item magnitude
25562 @item phase
25563 @item delay
25564 @end table
25565 Default is @code{magnitude}.
25566 @end table
25567
25568 @section showspatial
25569
25570 Convert stereo input audio to a video output, representing the spatial relationship
25571 between two channels.
25572
25573 The filter accepts the following options:
25574
25575 @table @option
25576 @item size, s
25577 Specify the video size for the output. For the syntax of this option, check the
25578 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25579 Default value is @code{512x512}.
25580
25581 @item win_size
25582 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
25583
25584 @item win_func
25585 Set window function.
25586
25587 It accepts the following values:
25588 @table @samp
25589 @item rect
25590 @item bartlett
25591 @item hann
25592 @item hanning
25593 @item hamming
25594 @item blackman
25595 @item welch
25596 @item flattop
25597 @item bharris
25598 @item bnuttall
25599 @item bhann
25600 @item sine
25601 @item nuttall
25602 @item lanczos
25603 @item gauss
25604 @item tukey
25605 @item dolph
25606 @item cauchy
25607 @item parzen
25608 @item poisson
25609 @item bohman
25610 @end table
25611
25612 Default value is @code{hann}.
25613
25614 @item overlap
25615 Set ratio of overlap window. Default value is @code{0.5}.
25616 When value is @code{1} overlap is set to recommended size for specific
25617 window function currently used.
25618 @end table
25619
25620 @anchor{showspectrum}
25621 @section showspectrum
25622
25623 Convert input audio to a video output, representing the audio frequency
25624 spectrum.
25625
25626 The filter accepts the following options:
25627
25628 @table @option
25629 @item size, s
25630 Specify the video size for the output. For the syntax of this option, check the
25631 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25632 Default value is @code{640x512}.
25633
25634 @item slide
25635 Specify how the spectrum should slide along the window.
25636
25637 It accepts the following values:
25638 @table @samp
25639 @item replace
25640 the samples start again on the left when they reach the right
25641 @item scroll
25642 the samples scroll from right to left
25643 @item fullframe
25644 frames are only produced when the samples reach the right
25645 @item rscroll
25646 the samples scroll from left to right
25647 @end table
25648
25649 Default value is @code{replace}.
25650
25651 @item mode
25652 Specify display mode.
25653
25654 It accepts the following values:
25655 @table @samp
25656 @item combined
25657 all channels are displayed in the same row
25658 @item separate
25659 all channels are displayed in separate rows
25660 @end table
25661
25662 Default value is @samp{combined}.
25663
25664 @item color
25665 Specify display color mode.
25666
25667 It accepts the following values:
25668 @table @samp
25669 @item channel
25670 each channel is displayed in a separate color
25671 @item intensity
25672 each channel is displayed using the same color scheme
25673 @item rainbow
25674 each channel is displayed using the rainbow color scheme
25675 @item moreland
25676 each channel is displayed using the moreland color scheme
25677 @item nebulae
25678 each channel is displayed using the nebulae color scheme
25679 @item fire
25680 each channel is displayed using the fire color scheme
25681 @item fiery
25682 each channel is displayed using the fiery color scheme
25683 @item fruit
25684 each channel is displayed using the fruit color scheme
25685 @item cool
25686 each channel is displayed using the cool color scheme
25687 @item magma
25688 each channel is displayed using the magma color scheme
25689 @item green
25690 each channel is displayed using the green color scheme
25691 @item viridis
25692 each channel is displayed using the viridis color scheme
25693 @item plasma
25694 each channel is displayed using the plasma color scheme
25695 @item cividis
25696 each channel is displayed using the cividis color scheme
25697 @item terrain
25698 each channel is displayed using the terrain color scheme
25699 @end table
25700
25701 Default value is @samp{channel}.
25702
25703 @item scale
25704 Specify scale used for calculating intensity color values.
25705
25706 It accepts the following values:
25707 @table @samp
25708 @item lin
25709 linear
25710 @item sqrt
25711 square root, default
25712 @item cbrt
25713 cubic root
25714 @item log
25715 logarithmic
25716 @item 4thrt
25717 4th root
25718 @item 5thrt
25719 5th root
25720 @end table
25721
25722 Default value is @samp{sqrt}.
25723
25724 @item fscale
25725 Specify frequency scale.
25726
25727 It accepts the following values:
25728 @table @samp
25729 @item lin
25730 linear
25731 @item log
25732 logarithmic
25733 @end table
25734
25735 Default value is @samp{lin}.
25736
25737 @item saturation
25738 Set saturation modifier for displayed colors. Negative values provide
25739 alternative color scheme. @code{0} is no saturation at all.
25740 Saturation must be in [-10.0, 10.0] range.
25741 Default value is @code{1}.
25742
25743 @item win_func
25744 Set window function.
25745
25746 It accepts the following values:
25747 @table @samp
25748 @item rect
25749 @item bartlett
25750 @item hann
25751 @item hanning
25752 @item hamming
25753 @item blackman
25754 @item welch
25755 @item flattop
25756 @item bharris
25757 @item bnuttall
25758 @item bhann
25759 @item sine
25760 @item nuttall
25761 @item lanczos
25762 @item gauss
25763 @item tukey
25764 @item dolph
25765 @item cauchy
25766 @item parzen
25767 @item poisson
25768 @item bohman
25769 @end table
25770
25771 Default value is @code{hann}.
25772
25773 @item orientation
25774 Set orientation of time vs frequency axis. Can be @code{vertical} or
25775 @code{horizontal}. Default is @code{vertical}.
25776
25777 @item overlap
25778 Set ratio of overlap window. Default value is @code{0}.
25779 When value is @code{1} overlap is set to recommended size for specific
25780 window function currently used.
25781
25782 @item gain
25783 Set scale gain for calculating intensity color values.
25784 Default value is @code{1}.
25785
25786 @item data
25787 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
25788
25789 @item rotation
25790 Set color rotation, must be in [-1.0, 1.0] range.
25791 Default value is @code{0}.
25792
25793 @item start
25794 Set start frequency from which to display spectrogram. Default is @code{0}.
25795
25796 @item stop
25797 Set stop frequency to which to display spectrogram. Default is @code{0}.
25798
25799 @item fps
25800 Set upper frame rate limit. Default is @code{auto}, unlimited.
25801
25802 @item legend
25803 Draw time and frequency axes and legends. Default is disabled.
25804 @end table
25805
25806 The usage is very similar to the showwaves filter; see the examples in that
25807 section.
25808
25809 @subsection Examples
25810
25811 @itemize
25812 @item
25813 Large window with logarithmic color scaling:
25814 @example
25815 showspectrum=s=1280x480:scale=log
25816 @end example
25817
25818 @item
25819 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
25820 @example
25821 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
25822              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
25823 @end example
25824 @end itemize
25825
25826 @section showspectrumpic
25827
25828 Convert input audio to a single video frame, representing the audio frequency
25829 spectrum.
25830
25831 The filter accepts the following options:
25832
25833 @table @option
25834 @item size, s
25835 Specify the video size for the output. For the syntax of this option, check the
25836 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25837 Default value is @code{4096x2048}.
25838
25839 @item mode
25840 Specify display mode.
25841
25842 It accepts the following values:
25843 @table @samp
25844 @item combined
25845 all channels are displayed in the same row
25846 @item separate
25847 all channels are displayed in separate rows
25848 @end table
25849 Default value is @samp{combined}.
25850
25851 @item color
25852 Specify display color mode.
25853
25854 It accepts the following values:
25855 @table @samp
25856 @item channel
25857 each channel is displayed in a separate color
25858 @item intensity
25859 each channel is displayed using the same color scheme
25860 @item rainbow
25861 each channel is displayed using the rainbow color scheme
25862 @item moreland
25863 each channel is displayed using the moreland color scheme
25864 @item nebulae
25865 each channel is displayed using the nebulae color scheme
25866 @item fire
25867 each channel is displayed using the fire color scheme
25868 @item fiery
25869 each channel is displayed using the fiery color scheme
25870 @item fruit
25871 each channel is displayed using the fruit color scheme
25872 @item cool
25873 each channel is displayed using the cool color scheme
25874 @item magma
25875 each channel is displayed using the magma color scheme
25876 @item green
25877 each channel is displayed using the green color scheme
25878 @item viridis
25879 each channel is displayed using the viridis color scheme
25880 @item plasma
25881 each channel is displayed using the plasma color scheme
25882 @item cividis
25883 each channel is displayed using the cividis color scheme
25884 @item terrain
25885 each channel is displayed using the terrain color scheme
25886 @end table
25887 Default value is @samp{intensity}.
25888
25889 @item scale
25890 Specify scale used for calculating intensity color values.
25891
25892 It accepts the following values:
25893 @table @samp
25894 @item lin
25895 linear
25896 @item sqrt
25897 square root, default
25898 @item cbrt
25899 cubic root
25900 @item log
25901 logarithmic
25902 @item 4thrt
25903 4th root
25904 @item 5thrt
25905 5th root
25906 @end table
25907 Default value is @samp{log}.
25908
25909 @item fscale
25910 Specify frequency scale.
25911
25912 It accepts the following values:
25913 @table @samp
25914 @item lin
25915 linear
25916 @item log
25917 logarithmic
25918 @end table
25919
25920 Default value is @samp{lin}.
25921
25922 @item saturation
25923 Set saturation modifier for displayed colors. Negative values provide
25924 alternative color scheme. @code{0} is no saturation at all.
25925 Saturation must be in [-10.0, 10.0] range.
25926 Default value is @code{1}.
25927
25928 @item win_func
25929 Set window function.
25930
25931 It accepts the following values:
25932 @table @samp
25933 @item rect
25934 @item bartlett
25935 @item hann
25936 @item hanning
25937 @item hamming
25938 @item blackman
25939 @item welch
25940 @item flattop
25941 @item bharris
25942 @item bnuttall
25943 @item bhann
25944 @item sine
25945 @item nuttall
25946 @item lanczos
25947 @item gauss
25948 @item tukey
25949 @item dolph
25950 @item cauchy
25951 @item parzen
25952 @item poisson
25953 @item bohman
25954 @end table
25955 Default value is @code{hann}.
25956
25957 @item orientation
25958 Set orientation of time vs frequency axis. Can be @code{vertical} or
25959 @code{horizontal}. Default is @code{vertical}.
25960
25961 @item gain
25962 Set scale gain for calculating intensity color values.
25963 Default value is @code{1}.
25964
25965 @item legend
25966 Draw time and frequency axes and legends. Default is enabled.
25967
25968 @item rotation
25969 Set color rotation, must be in [-1.0, 1.0] range.
25970 Default value is @code{0}.
25971
25972 @item start
25973 Set start frequency from which to display spectrogram. Default is @code{0}.
25974
25975 @item stop
25976 Set stop frequency to which to display spectrogram. Default is @code{0}.
25977 @end table
25978
25979 @subsection Examples
25980
25981 @itemize
25982 @item
25983 Extract an audio spectrogram of a whole audio track
25984 in a 1024x1024 picture using @command{ffmpeg}:
25985 @example
25986 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
25987 @end example
25988 @end itemize
25989
25990 @section showvolume
25991
25992 Convert input audio volume to a video output.
25993
25994 The filter accepts the following options:
25995
25996 @table @option
25997 @item rate, r
25998 Set video rate.
25999
26000 @item b
26001 Set border width, allowed range is [0, 5]. Default is 1.
26002
26003 @item w
26004 Set channel width, allowed range is [80, 8192]. Default is 400.
26005
26006 @item h
26007 Set channel height, allowed range is [1, 900]. Default is 20.
26008
26009 @item f
26010 Set fade, allowed range is [0, 1]. Default is 0.95.
26011
26012 @item c
26013 Set volume color expression.
26014
26015 The expression can use the following variables:
26016
26017 @table @option
26018 @item VOLUME
26019 Current max volume of channel in dB.
26020
26021 @item PEAK
26022 Current peak.
26023
26024 @item CHANNEL
26025 Current channel number, starting from 0.
26026 @end table
26027
26028 @item t
26029 If set, displays channel names. Default is enabled.
26030
26031 @item v
26032 If set, displays volume values. Default is enabled.
26033
26034 @item o
26035 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
26036 default is @code{h}.
26037
26038 @item s
26039 Set step size, allowed range is [0, 5]. Default is 0, which means
26040 step is disabled.
26041
26042 @item p
26043 Set background opacity, allowed range is [0, 1]. Default is 0.
26044
26045 @item m
26046 Set metering mode, can be peak: @code{p} or rms: @code{r},
26047 default is @code{p}.
26048
26049 @item ds
26050 Set display scale, can be linear: @code{lin} or log: @code{log},
26051 default is @code{lin}.
26052
26053 @item dm
26054 In second.
26055 If set to > 0., display a line for the max level
26056 in the previous seconds.
26057 default is disabled: @code{0.}
26058
26059 @item dmc
26060 The color of the max line. Use when @code{dm} option is set to > 0.
26061 default is: @code{orange}
26062 @end table
26063
26064 @section showwaves
26065
26066 Convert input audio to a video output, representing the samples waves.
26067
26068 The filter accepts the following options:
26069
26070 @table @option
26071 @item size, s
26072 Specify the video size for the output. For the syntax of this option, check the
26073 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26074 Default value is @code{600x240}.
26075
26076 @item mode
26077 Set display mode.
26078
26079 Available values are:
26080 @table @samp
26081 @item point
26082 Draw a point for each sample.
26083
26084 @item line
26085 Draw a vertical line for each sample.
26086
26087 @item p2p
26088 Draw a point for each sample and a line between them.
26089
26090 @item cline
26091 Draw a centered vertical line for each sample.
26092 @end table
26093
26094 Default value is @code{point}.
26095
26096 @item n
26097 Set the number of samples which are printed on the same column. A
26098 larger value will decrease the frame rate. Must be a positive
26099 integer. This option can be set only if the value for @var{rate}
26100 is not explicitly specified.
26101
26102 @item rate, r
26103 Set the (approximate) output frame rate. This is done by setting the
26104 option @var{n}. Default value is "25".
26105
26106 @item split_channels
26107 Set if channels should be drawn separately or overlap. Default value is 0.
26108
26109 @item colors
26110 Set colors separated by '|' which are going to be used for drawing of each channel.
26111
26112 @item scale
26113 Set amplitude scale.
26114
26115 Available values are:
26116 @table @samp
26117 @item lin
26118 Linear.
26119
26120 @item log
26121 Logarithmic.
26122
26123 @item sqrt
26124 Square root.
26125
26126 @item cbrt
26127 Cubic root.
26128 @end table
26129
26130 Default is linear.
26131
26132 @item draw
26133 Set the draw mode. This is mostly useful to set for high @var{n}.
26134
26135 Available values are:
26136 @table @samp
26137 @item scale
26138 Scale pixel values for each drawn sample.
26139
26140 @item full
26141 Draw every sample directly.
26142 @end table
26143
26144 Default value is @code{scale}.
26145 @end table
26146
26147 @subsection Examples
26148
26149 @itemize
26150 @item
26151 Output the input file audio and the corresponding video representation
26152 at the same time:
26153 @example
26154 amovie=a.mp3,asplit[out0],showwaves[out1]
26155 @end example
26156
26157 @item
26158 Create a synthetic signal and show it with showwaves, forcing a
26159 frame rate of 30 frames per second:
26160 @example
26161 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
26162 @end example
26163 @end itemize
26164
26165 @section showwavespic
26166
26167 Convert input audio to a single video frame, representing the samples waves.
26168
26169 The filter accepts the following options:
26170
26171 @table @option
26172 @item size, s
26173 Specify the video size for the output. For the syntax of this option, check the
26174 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26175 Default value is @code{600x240}.
26176
26177 @item split_channels
26178 Set if channels should be drawn separately or overlap. Default value is 0.
26179
26180 @item colors
26181 Set colors separated by '|' which are going to be used for drawing of each channel.
26182
26183 @item scale
26184 Set amplitude scale.
26185
26186 Available values are:
26187 @table @samp
26188 @item lin
26189 Linear.
26190
26191 @item log
26192 Logarithmic.
26193
26194 @item sqrt
26195 Square root.
26196
26197 @item cbrt
26198 Cubic root.
26199 @end table
26200
26201 Default is linear.
26202
26203 @item draw
26204 Set the draw mode.
26205
26206 Available values are:
26207 @table @samp
26208 @item scale
26209 Scale pixel values for each drawn sample.
26210
26211 @item full
26212 Draw every sample directly.
26213 @end table
26214
26215 Default value is @code{scale}.
26216
26217 @item filter
26218 Set the filter mode.
26219
26220 Available values are:
26221 @table @samp
26222 @item average
26223 Use average samples values for each drawn sample.
26224
26225 @item peak
26226 Use peak samples values for each drawn sample.
26227 @end table
26228
26229 Default value is @code{average}.
26230 @end table
26231
26232 @subsection Examples
26233
26234 @itemize
26235 @item
26236 Extract a channel split representation of the wave form of a whole audio track
26237 in a 1024x800 picture using @command{ffmpeg}:
26238 @example
26239 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
26240 @end example
26241 @end itemize
26242
26243 @section sidedata, asidedata
26244
26245 Delete frame side data, or select frames based on it.
26246
26247 This filter accepts the following options:
26248
26249 @table @option
26250 @item mode
26251 Set mode of operation of the filter.
26252
26253 Can be one of the following:
26254
26255 @table @samp
26256 @item select
26257 Select every frame with side data of @code{type}.
26258
26259 @item delete
26260 Delete side data of @code{type}. If @code{type} is not set, delete all side
26261 data in the frame.
26262
26263 @end table
26264
26265 @item type
26266 Set side data type used with all modes. Must be set for @code{select} mode. For
26267 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
26268 in @file{libavutil/frame.h}. For example, to choose
26269 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
26270
26271 @end table
26272
26273 @section spectrumsynth
26274
26275 Synthesize audio from 2 input video spectrums, first input stream represents
26276 magnitude across time and second represents phase across time.
26277 The filter will transform from frequency domain as displayed in videos back
26278 to time domain as presented in audio output.
26279
26280 This filter is primarily created for reversing processed @ref{showspectrum}
26281 filter outputs, but can synthesize sound from other spectrograms too.
26282 But in such case results are going to be poor if the phase data is not
26283 available, because in such cases phase data need to be recreated, usually
26284 it's just recreated from random noise.
26285 For best results use gray only output (@code{channel} color mode in
26286 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
26287 @code{lin} scale for phase video. To produce phase, for 2nd video, use
26288 @code{data} option. Inputs videos should generally use @code{fullframe}
26289 slide mode as that saves resources needed for decoding video.
26290
26291 The filter accepts the following options:
26292
26293 @table @option
26294 @item sample_rate
26295 Specify sample rate of output audio, the sample rate of audio from which
26296 spectrum was generated may differ.
26297
26298 @item channels
26299 Set number of channels represented in input video spectrums.
26300
26301 @item scale
26302 Set scale which was used when generating magnitude input spectrum.
26303 Can be @code{lin} or @code{log}. Default is @code{log}.
26304
26305 @item slide
26306 Set slide which was used when generating inputs spectrums.
26307 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
26308 Default is @code{fullframe}.
26309
26310 @item win_func
26311 Set window function used for resynthesis.
26312
26313 @item overlap
26314 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
26315 which means optimal overlap for selected window function will be picked.
26316
26317 @item orientation
26318 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
26319 Default is @code{vertical}.
26320 @end table
26321
26322 @subsection Examples
26323
26324 @itemize
26325 @item
26326 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
26327 then resynthesize videos back to audio with spectrumsynth:
26328 @example
26329 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
26330 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
26331 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
26332 @end example
26333 @end itemize
26334
26335 @section split, asplit
26336
26337 Split input into several identical outputs.
26338
26339 @code{asplit} works with audio input, @code{split} with video.
26340
26341 The filter accepts a single parameter which specifies the number of outputs. If
26342 unspecified, it defaults to 2.
26343
26344 @subsection Examples
26345
26346 @itemize
26347 @item
26348 Create two separate outputs from the same input:
26349 @example
26350 [in] split [out0][out1]
26351 @end example
26352
26353 @item
26354 To create 3 or more outputs, you need to specify the number of
26355 outputs, like in:
26356 @example
26357 [in] asplit=3 [out0][out1][out2]
26358 @end example
26359
26360 @item
26361 Create two separate outputs from the same input, one cropped and
26362 one padded:
26363 @example
26364 [in] split [splitout1][splitout2];
26365 [splitout1] crop=100:100:0:0    [cropout];
26366 [splitout2] pad=200:200:100:100 [padout];
26367 @end example
26368
26369 @item
26370 Create 5 copies of the input audio with @command{ffmpeg}:
26371 @example
26372 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
26373 @end example
26374 @end itemize
26375
26376 @section zmq, azmq
26377
26378 Receive commands sent through a libzmq client, and forward them to
26379 filters in the filtergraph.
26380
26381 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
26382 must be inserted between two video filters, @code{azmq} between two
26383 audio filters. Both are capable to send messages to any filter type.
26384
26385 To enable these filters you need to install the libzmq library and
26386 headers and configure FFmpeg with @code{--enable-libzmq}.
26387
26388 For more information about libzmq see:
26389 @url{http://www.zeromq.org/}
26390
26391 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
26392 receives messages sent through a network interface defined by the
26393 @option{bind_address} (or the abbreviation "@option{b}") option.
26394 Default value of this option is @file{tcp://localhost:5555}. You may
26395 want to alter this value to your needs, but do not forget to escape any
26396 ':' signs (see @ref{filtergraph escaping}).
26397
26398 The received message must be in the form:
26399 @example
26400 @var{TARGET} @var{COMMAND} [@var{ARG}]
26401 @end example
26402
26403 @var{TARGET} specifies the target of the command, usually the name of
26404 the filter class or a specific filter instance name. The default
26405 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
26406 but you can override this by using the @samp{filter_name@@id} syntax
26407 (see @ref{Filtergraph syntax}).
26408
26409 @var{COMMAND} specifies the name of the command for the target filter.
26410
26411 @var{ARG} is optional and specifies the optional argument list for the
26412 given @var{COMMAND}.
26413
26414 Upon reception, the message is processed and the corresponding command
26415 is injected into the filtergraph. Depending on the result, the filter
26416 will send a reply to the client, adopting the format:
26417 @example
26418 @var{ERROR_CODE} @var{ERROR_REASON}
26419 @var{MESSAGE}
26420 @end example
26421
26422 @var{MESSAGE} is optional.
26423
26424 @subsection Examples
26425
26426 Look at @file{tools/zmqsend} for an example of a zmq client which can
26427 be used to send commands processed by these filters.
26428
26429 Consider the following filtergraph generated by @command{ffplay}.
26430 In this example the last overlay filter has an instance name. All other
26431 filters will have default instance names.
26432
26433 @example
26434 ffplay -dumpgraph 1 -f lavfi "
26435 color=s=100x100:c=red  [l];
26436 color=s=100x100:c=blue [r];
26437 nullsrc=s=200x100, zmq [bg];
26438 [bg][l]   overlay     [bg+l];
26439 [bg+l][r] overlay@@my=x=100 "
26440 @end example
26441
26442 To change the color of the left side of the video, the following
26443 command can be used:
26444 @example
26445 echo Parsed_color_0 c yellow | tools/zmqsend
26446 @end example
26447
26448 To change the right side:
26449 @example
26450 echo Parsed_color_1 c pink | tools/zmqsend
26451 @end example
26452
26453 To change the position of the right side:
26454 @example
26455 echo overlay@@my x 150 | tools/zmqsend
26456 @end example
26457
26458
26459 @c man end MULTIMEDIA FILTERS
26460
26461 @chapter Multimedia Sources
26462 @c man begin MULTIMEDIA SOURCES
26463
26464 Below is a description of the currently available multimedia sources.
26465
26466 @section amovie
26467
26468 This is the same as @ref{movie} source, except it selects an audio
26469 stream by default.
26470
26471 @anchor{movie}
26472 @section movie
26473
26474 Read audio and/or video stream(s) from a movie container.
26475
26476 It accepts the following parameters:
26477
26478 @table @option
26479 @item filename
26480 The name of the resource to read (not necessarily a file; it can also be a
26481 device or a stream accessed through some protocol).
26482
26483 @item format_name, f
26484 Specifies the format assumed for the movie to read, and can be either
26485 the name of a container or an input device. If not specified, the
26486 format is guessed from @var{movie_name} or by probing.
26487
26488 @item seek_point, sp
26489 Specifies the seek point in seconds. The frames will be output
26490 starting from this seek point. The parameter is evaluated with
26491 @code{av_strtod}, so the numerical value may be suffixed by an IS
26492 postfix. The default value is "0".
26493
26494 @item streams, s
26495 Specifies the streams to read. Several streams can be specified,
26496 separated by "+". The source will then have as many outputs, in the
26497 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
26498 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
26499 respectively the default (best suited) video and audio stream. Default
26500 is "dv", or "da" if the filter is called as "amovie".
26501
26502 @item stream_index, si
26503 Specifies the index of the video stream to read. If the value is -1,
26504 the most suitable video stream will be automatically selected. The default
26505 value is "-1". Deprecated. If the filter is called "amovie", it will select
26506 audio instead of video.
26507
26508 @item loop
26509 Specifies how many times to read the stream in sequence.
26510 If the value is 0, the stream will be looped infinitely.
26511 Default value is "1".
26512
26513 Note that when the movie is looped the source timestamps are not
26514 changed, so it will generate non monotonically increasing timestamps.
26515
26516 @item discontinuity
26517 Specifies the time difference between frames above which the point is
26518 considered a timestamp discontinuity which is removed by adjusting the later
26519 timestamps.
26520 @end table
26521
26522 It allows overlaying a second video on top of the main input of
26523 a filtergraph, as shown in this graph:
26524 @example
26525 input -----------> deltapts0 --> overlay --> output
26526                                     ^
26527                                     |
26528 movie --> scale--> deltapts1 -------+
26529 @end example
26530 @subsection Examples
26531
26532 @itemize
26533 @item
26534 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
26535 on top of the input labelled "in":
26536 @example
26537 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
26538 [in] setpts=PTS-STARTPTS [main];
26539 [main][over] overlay=16:16 [out]
26540 @end example
26541
26542 @item
26543 Read from a video4linux2 device, and overlay it on top of the input
26544 labelled "in":
26545 @example
26546 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
26547 [in] setpts=PTS-STARTPTS [main];
26548 [main][over] overlay=16:16 [out]
26549 @end example
26550
26551 @item
26552 Read the first video stream and the audio stream with id 0x81 from
26553 dvd.vob; the video is connected to the pad named "video" and the audio is
26554 connected to the pad named "audio":
26555 @example
26556 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
26557 @end example
26558 @end itemize
26559
26560 @subsection Commands
26561
26562 Both movie and amovie support the following commands:
26563 @table @option
26564 @item seek
26565 Perform seek using "av_seek_frame".
26566 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
26567 @itemize
26568 @item
26569 @var{stream_index}: If stream_index is -1, a default
26570 stream is selected, and @var{timestamp} is automatically converted
26571 from AV_TIME_BASE units to the stream specific time_base.
26572 @item
26573 @var{timestamp}: Timestamp in AVStream.time_base units
26574 or, if no stream is specified, in AV_TIME_BASE units.
26575 @item
26576 @var{flags}: Flags which select direction and seeking mode.
26577 @end itemize
26578
26579 @item get_duration
26580 Get movie duration in AV_TIME_BASE units.
26581
26582 @end table
26583
26584 @c man end MULTIMEDIA SOURCES