]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/af_asubboost: make wet option apply to final output
[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. Available values are:
527
528 @table @samp
529 @item 2nd
530 @item 4th
531 @item 6th
532 @item 8th
533 @item 10th
534 @item 12th
535 @item 14th
536 @item 16th
537 @item 18th
538 @item 20th
539 @end table
540
541 Default is @var{4th}.
542
543 @item level
544 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
545 @end table
546
547 @subsection Examples
548
549 @itemize
550 @item
551 Split input audio stream into two bands (low and high) with split frequency of 1500 Hz,
552 each band will be in separate stream:
553 @example
554 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
555 @end example
556
557 @item
558 Same as above, but with higher filter order:
559 @example
560 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500:order=8th[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
561 @end example
562
563 @item
564 Same as above, but also with additional middle band (frequencies between 1500 and 8000):
565 @example
566 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
567 @end example
568 @end itemize
569
570 @section acrusher
571
572 Reduce audio bit resolution.
573
574 This filter is bit crusher with enhanced functionality. A bit crusher
575 is used to audibly reduce number of bits an audio signal is sampled
576 with. This doesn't change the bit depth at all, it just produces the
577 effect. Material reduced in bit depth sounds more harsh and "digital".
578 This filter is able to even round to continuous values instead of discrete
579 bit depths.
580 Additionally it has a D/C offset which results in different crushing of
581 the lower and the upper half of the signal.
582 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
583
584 Another feature of this filter is the logarithmic mode.
585 This setting switches from linear distances between bits to logarithmic ones.
586 The result is a much more "natural" sounding crusher which doesn't gate low
587 signals for example. The human ear has a logarithmic perception,
588 so this kind of crushing is much more pleasant.
589 Logarithmic crushing is also able to get anti-aliased.
590
591 The filter accepts the following options:
592
593 @table @option
594 @item level_in
595 Set level in.
596
597 @item level_out
598 Set level out.
599
600 @item bits
601 Set bit reduction.
602
603 @item mix
604 Set mixing amount.
605
606 @item mode
607 Can be linear: @code{lin} or logarithmic: @code{log}.
608
609 @item dc
610 Set DC.
611
612 @item aa
613 Set anti-aliasing.
614
615 @item samples
616 Set sample reduction.
617
618 @item lfo
619 Enable LFO. By default disabled.
620
621 @item lforange
622 Set LFO range.
623
624 @item lforate
625 Set LFO rate.
626 @end table
627
628 @section acue
629
630 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
631 filter.
632
633 @section adeclick
634 Remove impulsive noise from input audio.
635
636 Samples detected as impulsive noise are replaced by interpolated samples using
637 autoregressive modelling.
638
639 @table @option
640 @item w
641 Set window size, in milliseconds. Allowed range is from @code{10} to
642 @code{100}. Default value is @code{55} milliseconds.
643 This sets size of window which will be processed at once.
644
645 @item o
646 Set window overlap, in percentage of window size. Allowed range is from
647 @code{50} to @code{95}. Default value is @code{75} percent.
648 Setting this to a very high value increases impulsive noise removal but makes
649 whole process much slower.
650
651 @item a
652 Set autoregression order, in percentage of window size. Allowed range is from
653 @code{0} to @code{25}. Default value is @code{2} percent. This option also
654 controls quality of interpolated samples using neighbour good samples.
655
656 @item t
657 Set threshold value. Allowed range is from @code{1} to @code{100}.
658 Default value is @code{2}.
659 This controls the strength of impulsive noise which is going to be removed.
660 The lower value, the more samples will be detected as impulsive noise.
661
662 @item b
663 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
664 @code{10}. Default value is @code{2}.
665 If any two samples detected as noise are spaced less than this value then any
666 sample between those two samples will be also detected as noise.
667
668 @item m
669 Set overlap method.
670
671 It accepts the following values:
672 @table @option
673 @item a
674 Select overlap-add method. Even not interpolated samples are slightly
675 changed with this method.
676
677 @item s
678 Select overlap-save method. Not interpolated samples remain unchanged.
679 @end table
680
681 Default value is @code{a}.
682 @end table
683
684 @section adeclip
685 Remove clipped samples from input audio.
686
687 Samples detected as clipped are replaced by interpolated samples using
688 autoregressive modelling.
689
690 @table @option
691 @item w
692 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
693 Default value is @code{55} milliseconds.
694 This sets size of window which will be processed at once.
695
696 @item o
697 Set window overlap, in percentage of window size. Allowed range is from @code{50}
698 to @code{95}. Default value is @code{75} percent.
699
700 @item a
701 Set autoregression order, in percentage of window size. Allowed range is from
702 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
703 quality of interpolated samples using neighbour good samples.
704
705 @item t
706 Set threshold value. Allowed range is from @code{1} to @code{100}.
707 Default value is @code{10}. Higher values make clip detection less aggressive.
708
709 @item n
710 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
711 Default value is @code{1000}. Higher values make clip detection less aggressive.
712
713 @item m
714 Set overlap method.
715
716 It accepts the following values:
717 @table @option
718 @item a
719 Select overlap-add method. Even not interpolated samples are slightly changed
720 with this method.
721
722 @item s
723 Select overlap-save method. Not interpolated samples remain unchanged.
724 @end table
725
726 Default value is @code{a}.
727 @end table
728
729 @section adelay
730
731 Delay one or more audio channels.
732
733 Samples in delayed channel are filled with silence.
734
735 The filter accepts the following option:
736
737 @table @option
738 @item delays
739 Set list of delays in milliseconds for each channel separated by '|'.
740 Unused delays will be silently ignored. If number of given delays is
741 smaller than number of channels all remaining channels will not be delayed.
742 If you want to delay exact number of samples, append 'S' to number.
743 If you want instead to delay in seconds, append 's' to number.
744
745 @item all
746 Use last set delay for all remaining channels. By default is disabled.
747 This option if enabled changes how option @code{delays} is interpreted.
748 @end table
749
750 @subsection Examples
751
752 @itemize
753 @item
754 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
755 the second channel (and any other channels that may be present) unchanged.
756 @example
757 adelay=1500|0|500
758 @end example
759
760 @item
761 Delay second channel by 500 samples, the third channel by 700 samples and leave
762 the first channel (and any other channels that may be present) unchanged.
763 @example
764 adelay=0|500S|700S
765 @end example
766
767 @item
768 Delay all channels by same number of samples:
769 @example
770 adelay=delays=64S:all=1
771 @end example
772 @end itemize
773
774 @section adenorm
775 Remedy denormals in audio by adding extremely low-level noise.
776
777 This filter shall be placed before any filter that can produce denormals.
778
779 A description of the accepted parameters follows.
780
781 @table @option
782 @item level
783 Set level of added noise in dB. Default is @code{-351}.
784 Allowed range is from -451 to -90.
785
786 @item type
787 Set type of added noise.
788
789 @table @option
790 @item dc
791 Add DC signal.
792 @item ac
793 Add AC signal.
794 @item square
795 Add square signal.
796 @item pulse
797 Add pulse signal.
798 @end table
799
800 Default is @code{dc}.
801 @end table
802
803 @subsection Commands
804
805 This filter supports the all above options as @ref{commands}.
806
807 @section aderivative, aintegral
808
809 Compute derivative/integral of audio stream.
810
811 Applying both filters one after another produces original audio.
812
813 @section aecho
814
815 Apply echoing to the input audio.
816
817 Echoes are reflected sound and can occur naturally amongst mountains
818 (and sometimes large buildings) when talking or shouting; digital echo
819 effects emulate this behaviour and are often used to help fill out the
820 sound of a single instrument or vocal. The time difference between the
821 original signal and the reflection is the @code{delay}, and the
822 loudness of the reflected signal is the @code{decay}.
823 Multiple echoes can have different delays and decays.
824
825 A description of the accepted parameters follows.
826
827 @table @option
828 @item in_gain
829 Set input gain of reflected signal. Default is @code{0.6}.
830
831 @item out_gain
832 Set output gain of reflected signal. Default is @code{0.3}.
833
834 @item delays
835 Set list of time intervals in milliseconds between original signal and reflections
836 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
837 Default is @code{1000}.
838
839 @item decays
840 Set list of loudness of reflected signals separated by '|'.
841 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
842 Default is @code{0.5}.
843 @end table
844
845 @subsection Examples
846
847 @itemize
848 @item
849 Make it sound as if there are twice as many instruments as are actually playing:
850 @example
851 aecho=0.8:0.88:60:0.4
852 @end example
853
854 @item
855 If delay is very short, then it sounds like a (metallic) robot playing music:
856 @example
857 aecho=0.8:0.88:6:0.4
858 @end example
859
860 @item
861 A longer delay will sound like an open air concert in the mountains:
862 @example
863 aecho=0.8:0.9:1000:0.3
864 @end example
865
866 @item
867 Same as above but with one more mountain:
868 @example
869 aecho=0.8:0.9:1000|1800:0.3|0.25
870 @end example
871 @end itemize
872
873 @section aemphasis
874 Audio emphasis filter creates or restores material directly taken from LPs or
875 emphased CDs with different filter curves. E.g. to store music on vinyl the
876 signal has to be altered by a filter first to even out the disadvantages of
877 this recording medium.
878 Once the material is played back the inverse filter has to be applied to
879 restore the distortion of the frequency response.
880
881 The filter accepts the following options:
882
883 @table @option
884 @item level_in
885 Set input gain.
886
887 @item level_out
888 Set output gain.
889
890 @item mode
891 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
892 use @code{production} mode. Default is @code{reproduction} mode.
893
894 @item type
895 Set filter type. Selects medium. Can be one of the following:
896
897 @table @option
898 @item col
899 select Columbia.
900 @item emi
901 select EMI.
902 @item bsi
903 select BSI (78RPM).
904 @item riaa
905 select RIAA.
906 @item cd
907 select Compact Disc (CD).
908 @item 50fm
909 select 50µs (FM).
910 @item 75fm
911 select 75µs (FM).
912 @item 50kf
913 select 50µs (FM-KF).
914 @item 75kf
915 select 75µs (FM-KF).
916 @end table
917 @end table
918
919 @subsection Commands
920
921 This filter supports the all above options as @ref{commands}.
922
923 @section aeval
924
925 Modify an audio signal according to the specified expressions.
926
927 This filter accepts one or more expressions (one for each channel),
928 which are evaluated and used to modify a corresponding audio signal.
929
930 It accepts the following parameters:
931
932 @table @option
933 @item exprs
934 Set the '|'-separated expressions list for each separate channel. If
935 the number of input channels is greater than the number of
936 expressions, the last specified expression is used for the remaining
937 output channels.
938
939 @item channel_layout, c
940 Set output channel layout. If not specified, the channel layout is
941 specified by the number of expressions. If set to @samp{same}, it will
942 use by default the same input channel layout.
943 @end table
944
945 Each expression in @var{exprs} can contain the following constants and functions:
946
947 @table @option
948 @item ch
949 channel number of the current expression
950
951 @item n
952 number of the evaluated sample, starting from 0
953
954 @item s
955 sample rate
956
957 @item t
958 time of the evaluated sample expressed in seconds
959
960 @item nb_in_channels
961 @item nb_out_channels
962 input and output number of channels
963
964 @item val(CH)
965 the value of input channel with number @var{CH}
966 @end table
967
968 Note: this filter is slow. For faster processing you should use a
969 dedicated filter.
970
971 @subsection Examples
972
973 @itemize
974 @item
975 Half volume:
976 @example
977 aeval=val(ch)/2:c=same
978 @end example
979
980 @item
981 Invert phase of the second channel:
982 @example
983 aeval=val(0)|-val(1)
984 @end example
985 @end itemize
986
987 @anchor{afade}
988 @section afade
989
990 Apply fade-in/out effect to input audio.
991
992 A description of the accepted parameters follows.
993
994 @table @option
995 @item type, t
996 Specify the effect type, can be either @code{in} for fade-in, or
997 @code{out} for a fade-out effect. Default is @code{in}.
998
999 @item start_sample, ss
1000 Specify the number of the start sample for starting to apply the fade
1001 effect. Default is 0.
1002
1003 @item nb_samples, ns
1004 Specify the number of samples for which the fade effect has to last. At
1005 the end of the fade-in effect the output audio will have the same
1006 volume as the input audio, at the end of the fade-out transition
1007 the output audio will be silence. Default is 44100.
1008
1009 @item start_time, st
1010 Specify the start time of the fade effect. Default is 0.
1011 The value must be specified as a time duration; see
1012 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1013 for the accepted syntax.
1014 If set this option is used instead of @var{start_sample}.
1015
1016 @item duration, d
1017 Specify the duration of the fade effect. See
1018 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1019 for the accepted syntax.
1020 At 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.
1023 By default the duration is determined by @var{nb_samples}.
1024 If set this option is used instead of @var{nb_samples}.
1025
1026 @item curve
1027 Set curve for fade transition.
1028
1029 It accepts the following values:
1030 @table @option
1031 @item tri
1032 select triangular, linear slope (default)
1033 @item qsin
1034 select quarter of sine wave
1035 @item hsin
1036 select half of sine wave
1037 @item esin
1038 select exponential sine wave
1039 @item log
1040 select logarithmic
1041 @item ipar
1042 select inverted parabola
1043 @item qua
1044 select quadratic
1045 @item cub
1046 select cubic
1047 @item squ
1048 select square root
1049 @item cbr
1050 select cubic root
1051 @item par
1052 select parabola
1053 @item exp
1054 select exponential
1055 @item iqsin
1056 select inverted quarter of sine wave
1057 @item ihsin
1058 select inverted half of sine wave
1059 @item dese
1060 select double-exponential seat
1061 @item desi
1062 select double-exponential sigmoid
1063 @item losi
1064 select logistic sigmoid
1065 @item sinc
1066 select sine cardinal function
1067 @item isinc
1068 select inverted sine cardinal function
1069 @item nofade
1070 no fade applied
1071 @end table
1072 @end table
1073
1074 @subsection Examples
1075
1076 @itemize
1077 @item
1078 Fade in first 15 seconds of audio:
1079 @example
1080 afade=t=in:ss=0:d=15
1081 @end example
1082
1083 @item
1084 Fade out last 25 seconds of a 900 seconds audio:
1085 @example
1086 afade=t=out:st=875:d=25
1087 @end example
1088 @end itemize
1089
1090 @section afftdn
1091 Denoise audio samples with FFT.
1092
1093 A description of the accepted parameters follows.
1094
1095 @table @option
1096 @item nr
1097 Set the noise reduction in dB, allowed range is 0.01 to 97.
1098 Default value is 12 dB.
1099
1100 @item nf
1101 Set the noise floor in dB, allowed range is -80 to -20.
1102 Default value is -50 dB.
1103
1104 @item nt
1105 Set the noise type.
1106
1107 It accepts the following values:
1108 @table @option
1109 @item w
1110 Select white noise.
1111
1112 @item v
1113 Select vinyl noise.
1114
1115 @item s
1116 Select shellac noise.
1117
1118 @item c
1119 Select custom noise, defined in @code{bn} option.
1120
1121 Default value is white noise.
1122 @end table
1123
1124 @item bn
1125 Set custom band noise for every one of 15 bands.
1126 Bands are separated by ' ' or '|'.
1127
1128 @item rf
1129 Set the residual floor in dB, allowed range is -80 to -20.
1130 Default value is -38 dB.
1131
1132 @item tn
1133 Enable noise tracking. By default is disabled.
1134 With this enabled, noise floor is automatically adjusted.
1135
1136 @item tr
1137 Enable residual tracking. By default is disabled.
1138
1139 @item om
1140 Set the output mode.
1141
1142 It accepts the following values:
1143 @table @option
1144 @item i
1145 Pass input unchanged.
1146
1147 @item o
1148 Pass noise filtered out.
1149
1150 @item n
1151 Pass only noise.
1152
1153 Default value is @var{o}.
1154 @end table
1155 @end table
1156
1157 @subsection Commands
1158
1159 This filter supports the following commands:
1160 @table @option
1161 @item sample_noise, sn
1162 Start or stop measuring noise profile.
1163 Syntax for the command is : "start" or "stop" string.
1164 After measuring noise profile is stopped it will be
1165 automatically applied in filtering.
1166
1167 @item noise_reduction, nr
1168 Change noise reduction. Argument is single float number.
1169 Syntax for the command is : "@var{noise_reduction}"
1170
1171 @item noise_floor, nf
1172 Change noise floor. Argument is single float number.
1173 Syntax for the command is : "@var{noise_floor}"
1174
1175 @item output_mode, om
1176 Change output mode operation.
1177 Syntax for the command is : "i", "o" or "n" string.
1178 @end table
1179
1180 @section afftfilt
1181 Apply arbitrary expressions to samples in frequency domain.
1182
1183 @table @option
1184 @item real
1185 Set frequency domain real expression for each separate channel separated
1186 by '|'. Default is "re".
1187 If the number of input channels is greater than the number of
1188 expressions, the last specified expression is used for the remaining
1189 output channels.
1190
1191 @item imag
1192 Set frequency domain imaginary expression for each separate channel
1193 separated by '|'. Default is "im".
1194
1195 Each expression in @var{real} and @var{imag} can contain the following
1196 constants and functions:
1197
1198 @table @option
1199 @item sr
1200 sample rate
1201
1202 @item b
1203 current frequency bin number
1204
1205 @item nb
1206 number of available bins
1207
1208 @item ch
1209 channel number of the current expression
1210
1211 @item chs
1212 number of channels
1213
1214 @item pts
1215 current frame pts
1216
1217 @item re
1218 current real part of frequency bin of current channel
1219
1220 @item im
1221 current imaginary part of frequency bin of current channel
1222
1223 @item real(b, ch)
1224 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1225
1226 @item imag(b, ch)
1227 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1228 @end table
1229
1230 @item win_size
1231 Set window size. Allowed range is from 16 to 131072.
1232 Default is @code{4096}
1233
1234 @item win_func
1235 Set window function. Default is @code{hann}.
1236
1237 @item overlap
1238 Set window overlap. If set to 1, the recommended overlap for selected
1239 window function will be picked. Default is @code{0.75}.
1240 @end table
1241
1242 @subsection Examples
1243
1244 @itemize
1245 @item
1246 Leave almost only low frequencies in audio:
1247 @example
1248 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1249 @end example
1250
1251 @item
1252 Apply robotize effect:
1253 @example
1254 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1255 @end example
1256
1257 @item
1258 Apply whisper effect:
1259 @example
1260 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"
1261 @end example
1262 @end itemize
1263
1264 @anchor{afir}
1265 @section afir
1266
1267 Apply an arbitrary Finite Impulse Response filter.
1268
1269 This filter is designed for applying long FIR filters,
1270 up to 60 seconds long.
1271
1272 It can be used as component for digital crossover filters,
1273 room equalization, cross talk cancellation, wavefield synthesis,
1274 auralization, ambiophonics, ambisonics and spatialization.
1275
1276 This filter uses the streams higher than first one as FIR coefficients.
1277 If the non-first stream holds a single channel, it will be used
1278 for all input channels in the first stream, otherwise
1279 the number of channels in the non-first stream must be same as
1280 the number of channels in the first stream.
1281
1282 It accepts the following parameters:
1283
1284 @table @option
1285 @item dry
1286 Set dry gain. This sets input gain.
1287
1288 @item wet
1289 Set wet gain. This sets final output gain.
1290
1291 @item length
1292 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1293
1294 @item gtype
1295 Enable applying gain measured from power of IR.
1296
1297 Set which approach to use for auto gain measurement.
1298
1299 @table @option
1300 @item none
1301 Do not apply any gain.
1302
1303 @item peak
1304 select peak gain, very conservative approach. This is default value.
1305
1306 @item dc
1307 select DC gain, limited application.
1308
1309 @item gn
1310 select gain to noise approach, this is most popular one.
1311 @end table
1312
1313 @item irgain
1314 Set gain to be applied to IR coefficients before filtering.
1315 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1316
1317 @item irfmt
1318 Set format of IR stream. Can be @code{mono} or @code{input}.
1319 Default is @code{input}.
1320
1321 @item maxir
1322 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1323 Allowed range is 0.1 to 60 seconds.
1324
1325 @item response
1326 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1327 By default it is disabled.
1328
1329 @item channel
1330 Set for which IR channel to display frequency response. By default is first channel
1331 displayed. This option is used only when @var{response} is enabled.
1332
1333 @item size
1334 Set video stream size. This option is used only when @var{response} is enabled.
1335
1336 @item rate
1337 Set video stream frame rate. This option is used only when @var{response} is enabled.
1338
1339 @item minp
1340 Set minimal partition size used for convolution. Default is @var{8192}.
1341 Allowed range is from @var{1} to @var{32768}.
1342 Lower values decreases latency at cost of higher CPU usage.
1343
1344 @item maxp
1345 Set maximal partition size used for convolution. Default is @var{8192}.
1346 Allowed range is from @var{8} to @var{32768}.
1347 Lower values may increase CPU usage.
1348
1349 @item nbirs
1350 Set number of input impulse responses streams which will be switchable at runtime.
1351 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1352
1353 @item ir
1354 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1355 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1356 This option can be changed at runtime via @ref{commands}.
1357 @end table
1358
1359 @subsection Examples
1360
1361 @itemize
1362 @item
1363 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1364 @example
1365 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1366 @end example
1367 @end itemize
1368
1369 @anchor{aformat}
1370 @section aformat
1371
1372 Set output format constraints for the input audio. The framework will
1373 negotiate the most appropriate format to minimize conversions.
1374
1375 It accepts the following parameters:
1376 @table @option
1377
1378 @item sample_fmts, f
1379 A '|'-separated list of requested sample formats.
1380
1381 @item sample_rates, r
1382 A '|'-separated list of requested sample rates.
1383
1384 @item channel_layouts, cl
1385 A '|'-separated list of requested channel layouts.
1386
1387 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1388 for the required syntax.
1389 @end table
1390
1391 If a parameter is omitted, all values are allowed.
1392
1393 Force the output to either unsigned 8-bit or signed 16-bit stereo
1394 @example
1395 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1396 @end example
1397
1398 @section afreqshift
1399 Apply frequency shift to input audio samples.
1400
1401 The filter accepts the following options:
1402
1403 @table @option
1404 @item shift
1405 Specify frequency shift. Allowed range is -INT_MAX to INT_MAX.
1406 Default value is 0.0.
1407 @end table
1408
1409 @subsection Commands
1410
1411 This filter supports the above option as @ref{commands}.
1412
1413 @section agate
1414
1415 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1416 processing reduces disturbing noise between useful signals.
1417
1418 Gating is done by detecting the volume below a chosen level @var{threshold}
1419 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1420 floor is set via @var{range}. Because an exact manipulation of the signal
1421 would cause distortion of the waveform the reduction can be levelled over
1422 time. This is done by setting @var{attack} and @var{release}.
1423
1424 @var{attack} determines how long the signal has to fall below the threshold
1425 before any reduction will occur and @var{release} sets the time the signal
1426 has to rise above the threshold to reduce the reduction again.
1427 Shorter signals than the chosen attack time will be left untouched.
1428
1429 @table @option
1430 @item level_in
1431 Set input level before filtering.
1432 Default is 1. Allowed range is from 0.015625 to 64.
1433
1434 @item mode
1435 Set the mode of operation. Can be @code{upward} or @code{downward}.
1436 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1437 will be amplified, expanding dynamic range in upward direction.
1438 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1439
1440 @item range
1441 Set the level of gain reduction when the signal is below the threshold.
1442 Default is 0.06125. Allowed range is from 0 to 1.
1443 Setting this to 0 disables reduction and then filter behaves like expander.
1444
1445 @item threshold
1446 If a signal rises above this level the gain reduction is released.
1447 Default is 0.125. Allowed range is from 0 to 1.
1448
1449 @item ratio
1450 Set a ratio by which the signal is reduced.
1451 Default is 2. Allowed range is from 1 to 9000.
1452
1453 @item attack
1454 Amount of milliseconds the signal has to rise above the threshold before gain
1455 reduction stops.
1456 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1457
1458 @item release
1459 Amount of milliseconds the signal has to fall below the threshold before the
1460 reduction is increased again. Default is 250 milliseconds.
1461 Allowed range is from 0.01 to 9000.
1462
1463 @item makeup
1464 Set amount of amplification of signal after processing.
1465 Default is 1. Allowed range is from 1 to 64.
1466
1467 @item knee
1468 Curve the sharp knee around the threshold to enter gain reduction more softly.
1469 Default is 2.828427125. Allowed range is from 1 to 8.
1470
1471 @item detection
1472 Choose if exact signal should be taken for detection or an RMS like one.
1473 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1474
1475 @item link
1476 Choose if the average level between all channels or the louder channel affects
1477 the reduction.
1478 Default is @code{average}. Can be @code{average} or @code{maximum}.
1479 @end table
1480
1481 @section aiir
1482
1483 Apply an arbitrary Infinite Impulse Response filter.
1484
1485 It accepts the following parameters:
1486
1487 @table @option
1488 @item zeros, z
1489 Set B/numerator/zeros/reflection coefficients.
1490
1491 @item poles, p
1492 Set A/denominator/poles/ladder coefficients.
1493
1494 @item gains, k
1495 Set channels gains.
1496
1497 @item dry_gain
1498 Set input gain.
1499
1500 @item wet_gain
1501 Set output gain.
1502
1503 @item format, f
1504 Set coefficients format.
1505
1506 @table @samp
1507 @item ll
1508 lattice-ladder function
1509 @item sf
1510 analog transfer function
1511 @item tf
1512 digital transfer function
1513 @item zp
1514 Z-plane zeros/poles, cartesian (default)
1515 @item pr
1516 Z-plane zeros/poles, polar radians
1517 @item pd
1518 Z-plane zeros/poles, polar degrees
1519 @item sp
1520 S-plane zeros/poles
1521 @end table
1522
1523 @item process, r
1524 Set type of processing.
1525
1526 @table @samp
1527 @item d
1528 direct processing
1529 @item s
1530 serial processing
1531 @item p
1532 parallel processing
1533 @end table
1534
1535 @item precision, e
1536 Set filtering precision.
1537
1538 @table @samp
1539 @item dbl
1540 double-precision floating-point (default)
1541 @item flt
1542 single-precision floating-point
1543 @item i32
1544 32-bit integers
1545 @item i16
1546 16-bit integers
1547 @end table
1548
1549 @item normalize, n
1550 Normalize filter coefficients, by default is enabled.
1551 Enabling it will normalize magnitude response at DC to 0dB.
1552
1553 @item mix
1554 How much to use filtered signal in output. Default is 1.
1555 Range is between 0 and 1.
1556
1557 @item response
1558 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1559 By default it is disabled.
1560
1561 @item channel
1562 Set for which IR channel to display frequency response. By default is first channel
1563 displayed. This option is used only when @var{response} is enabled.
1564
1565 @item size
1566 Set video stream size. This option is used only when @var{response} is enabled.
1567 @end table
1568
1569 Coefficients in @code{tf} and @code{sf} format are separated by spaces and are in ascending
1570 order.
1571
1572 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1573 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1574 imaginary unit.
1575
1576 Different coefficients and gains can be provided for every channel, in such case
1577 use '|' to separate coefficients or gains. Last provided coefficients will be
1578 used for all remaining channels.
1579
1580 @subsection Examples
1581
1582 @itemize
1583 @item
1584 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1585 @example
1586 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
1587 @end example
1588
1589 @item
1590 Same as above but in @code{zp} format:
1591 @example
1592 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
1593 @end example
1594
1595 @item
1596 Apply 3-rd order analog normalized Butterworth low-pass filter, using analog transfer function format:
1597 @example
1598 aiir=z=1.3057 0 0 0:p=1.3057 2.3892 2.1860 1:f=sf:r=d
1599 @end example
1600 @end itemize
1601
1602 @section alimiter
1603
1604 The limiter prevents an input signal from rising over a desired threshold.
1605 This limiter uses lookahead technology to prevent your signal from distorting.
1606 It means that there is a small delay after the signal is processed. Keep in mind
1607 that the delay it produces is the attack time you set.
1608
1609 The filter accepts the following options:
1610
1611 @table @option
1612 @item level_in
1613 Set input gain. Default is 1.
1614
1615 @item level_out
1616 Set output gain. Default is 1.
1617
1618 @item limit
1619 Don't let signals above this level pass the limiter. Default is 1.
1620
1621 @item attack
1622 The limiter will reach its attenuation level in this amount of time in
1623 milliseconds. Default is 5 milliseconds.
1624
1625 @item release
1626 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1627 Default is 50 milliseconds.
1628
1629 @item asc
1630 When gain reduction is always needed ASC takes care of releasing to an
1631 average reduction level rather than reaching a reduction of 0 in the release
1632 time.
1633
1634 @item asc_level
1635 Select how much the release time is affected by ASC, 0 means nearly no changes
1636 in release time while 1 produces higher release times.
1637
1638 @item level
1639 Auto level output signal. Default is enabled.
1640 This normalizes audio back to 0dB if enabled.
1641 @end table
1642
1643 Depending on picked setting it is recommended to upsample input 2x or 4x times
1644 with @ref{aresample} before applying this filter.
1645
1646 @section allpass
1647
1648 Apply a two-pole all-pass filter with central frequency (in Hz)
1649 @var{frequency}, and filter-width @var{width}.
1650 An all-pass filter changes the audio's frequency to phase relationship
1651 without changing its frequency to amplitude relationship.
1652
1653 The filter accepts the following options:
1654
1655 @table @option
1656 @item frequency, f
1657 Set frequency in Hz.
1658
1659 @item width_type, t
1660 Set method to specify band-width of filter.
1661 @table @option
1662 @item h
1663 Hz
1664 @item q
1665 Q-Factor
1666 @item o
1667 octave
1668 @item s
1669 slope
1670 @item k
1671 kHz
1672 @end table
1673
1674 @item width, w
1675 Specify the band-width of a filter in width_type units.
1676
1677 @item mix, m
1678 How much to use filtered signal in output. Default is 1.
1679 Range is between 0 and 1.
1680
1681 @item channels, c
1682 Specify which channels to filter, by default all available are filtered.
1683
1684 @item normalize, n
1685 Normalize biquad coefficients, by default is disabled.
1686 Enabling it will normalize magnitude response at DC to 0dB.
1687
1688 @item order, o
1689 Set the filter order, can be 1 or 2. Default is 2.
1690
1691 @item transform, a
1692 Set transform type of IIR filter.
1693 @table @option
1694 @item di
1695 @item dii
1696 @item tdii
1697 @item latt
1698 @end table
1699 @end table
1700
1701 @subsection Commands
1702
1703 This filter supports the following commands:
1704 @table @option
1705 @item frequency, f
1706 Change allpass frequency.
1707 Syntax for the command is : "@var{frequency}"
1708
1709 @item width_type, t
1710 Change allpass width_type.
1711 Syntax for the command is : "@var{width_type}"
1712
1713 @item width, w
1714 Change allpass width.
1715 Syntax for the command is : "@var{width}"
1716
1717 @item mix, m
1718 Change allpass mix.
1719 Syntax for the command is : "@var{mix}"
1720 @end table
1721
1722 @section aloop
1723
1724 Loop audio samples.
1725
1726 The filter accepts the following options:
1727
1728 @table @option
1729 @item loop
1730 Set the number of loops. Setting this value to -1 will result in infinite loops.
1731 Default is 0.
1732
1733 @item size
1734 Set maximal number of samples. Default is 0.
1735
1736 @item start
1737 Set first sample of loop. Default is 0.
1738 @end table
1739
1740 @anchor{amerge}
1741 @section amerge
1742
1743 Merge two or more audio streams into a single multi-channel stream.
1744
1745 The filter accepts the following options:
1746
1747 @table @option
1748
1749 @item inputs
1750 Set the number of inputs. Default is 2.
1751
1752 @end table
1753
1754 If the channel layouts of the inputs are disjoint, and therefore compatible,
1755 the channel layout of the output will be set accordingly and the channels
1756 will be reordered as necessary. If the channel layouts of the inputs are not
1757 disjoint, the output will have all the channels of the first input then all
1758 the channels of the second input, in that order, and the channel layout of
1759 the output will be the default value corresponding to the total number of
1760 channels.
1761
1762 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1763 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1764 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1765 first input, b1 is the first channel of the second input).
1766
1767 On the other hand, if both input are in stereo, the output channels will be
1768 in the default order: a1, a2, b1, b2, and the channel layout will be
1769 arbitrarily set to 4.0, which may or may not be the expected value.
1770
1771 All inputs must have the same sample rate, and format.
1772
1773 If inputs do not have the same duration, the output will stop with the
1774 shortest.
1775
1776 @subsection Examples
1777
1778 @itemize
1779 @item
1780 Merge two mono files into a stereo stream:
1781 @example
1782 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1783 @end example
1784
1785 @item
1786 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1787 @example
1788 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
1789 @end example
1790 @end itemize
1791
1792 @section amix
1793
1794 Mixes multiple audio inputs into a single output.
1795
1796 Note that this filter only supports float samples (the @var{amerge}
1797 and @var{pan} audio filters support many formats). If the @var{amix}
1798 input has integer samples then @ref{aresample} will be automatically
1799 inserted to perform the conversion to float samples.
1800
1801 For example
1802 @example
1803 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1804 @end example
1805 will mix 3 input audio streams to a single output with the same duration as the
1806 first input and a dropout transition time of 3 seconds.
1807
1808 It accepts the following parameters:
1809 @table @option
1810
1811 @item inputs
1812 The number of inputs. If unspecified, it defaults to 2.
1813
1814 @item duration
1815 How to determine the end-of-stream.
1816 @table @option
1817
1818 @item longest
1819 The duration of the longest input. (default)
1820
1821 @item shortest
1822 The duration of the shortest input.
1823
1824 @item first
1825 The duration of the first input.
1826
1827 @end table
1828
1829 @item dropout_transition
1830 The transition time, in seconds, for volume renormalization when an input
1831 stream ends. The default value is 2 seconds.
1832
1833 @item weights
1834 Specify weight of each input audio stream as sequence.
1835 Each weight is separated by space. By default all inputs have same weight.
1836 @end table
1837
1838 @subsection Commands
1839
1840 This filter supports the following commands:
1841 @table @option
1842 @item weights
1843 Syntax is same as option with same name.
1844 @end table
1845
1846 @section amultiply
1847
1848 Multiply first audio stream with second audio stream and store result
1849 in output audio stream. Multiplication is done by multiplying each
1850 sample from first stream with sample at same position from second stream.
1851
1852 With this element-wise multiplication one can create amplitude fades and
1853 amplitude modulations.
1854
1855 @section anequalizer
1856
1857 High-order parametric multiband equalizer for each channel.
1858
1859 It accepts the following parameters:
1860 @table @option
1861 @item params
1862
1863 This option string is in format:
1864 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1865 Each equalizer band is separated by '|'.
1866
1867 @table @option
1868 @item chn
1869 Set channel number to which equalization will be applied.
1870 If input doesn't have that channel the entry is ignored.
1871
1872 @item f
1873 Set central frequency for band.
1874 If input doesn't have that frequency the entry is ignored.
1875
1876 @item w
1877 Set band width in Hertz.
1878
1879 @item g
1880 Set band gain in dB.
1881
1882 @item t
1883 Set filter type for band, optional, can be:
1884
1885 @table @samp
1886 @item 0
1887 Butterworth, this is default.
1888
1889 @item 1
1890 Chebyshev type 1.
1891
1892 @item 2
1893 Chebyshev type 2.
1894 @end table
1895 @end table
1896
1897 @item curves
1898 With this option activated frequency response of anequalizer is displayed
1899 in video stream.
1900
1901 @item size
1902 Set video stream size. Only useful if curves option is activated.
1903
1904 @item mgain
1905 Set max gain that will be displayed. Only useful if curves option is activated.
1906 Setting this to a reasonable value makes it possible to display gain which is derived from
1907 neighbour bands which are too close to each other and thus produce higher gain
1908 when both are activated.
1909
1910 @item fscale
1911 Set frequency scale used to draw frequency response in video output.
1912 Can be linear or logarithmic. Default is logarithmic.
1913
1914 @item colors
1915 Set color for each channel curve which is going to be displayed in video stream.
1916 This is list of color names separated by space or by '|'.
1917 Unrecognised or missing colors will be replaced by white color.
1918 @end table
1919
1920 @subsection Examples
1921
1922 @itemize
1923 @item
1924 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1925 for first 2 channels using Chebyshev type 1 filter:
1926 @example
1927 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1928 @end example
1929 @end itemize
1930
1931 @subsection Commands
1932
1933 This filter supports the following commands:
1934 @table @option
1935 @item change
1936 Alter existing filter parameters.
1937 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1938
1939 @var{fN} is existing filter number, starting from 0, if no such filter is available
1940 error is returned.
1941 @var{freq} set new frequency parameter.
1942 @var{width} set new width parameter in Hertz.
1943 @var{gain} set new gain parameter in dB.
1944
1945 Full filter invocation with asendcmd may look like this:
1946 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1947 @end table
1948
1949 @section anlmdn
1950
1951 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1952
1953 Each sample is adjusted by looking for other samples with similar contexts. This
1954 context similarity is defined by comparing their surrounding patches of size
1955 @option{p}. Patches are searched in an area of @option{r} around the sample.
1956
1957 The filter accepts the following options:
1958
1959 @table @option
1960 @item s
1961 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1962
1963 @item p
1964 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1965 Default value is 2 milliseconds.
1966
1967 @item r
1968 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1969 Default value is 6 milliseconds.
1970
1971 @item o
1972 Set the output mode.
1973
1974 It accepts the following values:
1975 @table @option
1976 @item i
1977 Pass input unchanged.
1978
1979 @item o
1980 Pass noise filtered out.
1981
1982 @item n
1983 Pass only noise.
1984
1985 Default value is @var{o}.
1986 @end table
1987
1988 @item m
1989 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
1990 @end table
1991
1992 @subsection Commands
1993
1994 This filter supports the all above options as @ref{commands}.
1995
1996 @section anlms
1997 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
1998
1999 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
2000 relate to producing the least mean square of the error signal (difference between the desired,
2001 2nd input audio stream and the actual signal, the 1st input audio stream).
2002
2003 A description of the accepted options follows.
2004
2005 @table @option
2006 @item order
2007 Set filter order.
2008
2009 @item mu
2010 Set filter mu.
2011
2012 @item eps
2013 Set the filter eps.
2014
2015 @item leakage
2016 Set the filter leakage.
2017
2018 @item out_mode
2019 It accepts the following values:
2020 @table @option
2021 @item i
2022 Pass the 1st input.
2023
2024 @item d
2025 Pass the 2nd input.
2026
2027 @item o
2028 Pass filtered samples.
2029
2030 @item n
2031 Pass difference between desired and filtered samples.
2032
2033 Default value is @var{o}.
2034 @end table
2035 @end table
2036
2037 @subsection Examples
2038
2039 @itemize
2040 @item
2041 One of many usages of this filter is noise reduction, input audio is filtered
2042 with same samples that are delayed by fixed amount, one such example for stereo audio is:
2043 @example
2044 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
2045 @end example
2046 @end itemize
2047
2048 @subsection Commands
2049
2050 This filter supports the same commands as options, excluding option @code{order}.
2051
2052 @section anull
2053
2054 Pass the audio source unchanged to the output.
2055
2056 @section apad
2057
2058 Pad the end of an audio stream with silence.
2059
2060 This can be used together with @command{ffmpeg} @option{-shortest} to
2061 extend audio streams to the same length as the video stream.
2062
2063 A description of the accepted options follows.
2064
2065 @table @option
2066 @item packet_size
2067 Set silence packet size. Default value is 4096.
2068
2069 @item pad_len
2070 Set the number of samples of silence to add to the end. After the
2071 value is reached, the stream is terminated. This option is mutually
2072 exclusive with @option{whole_len}.
2073
2074 @item whole_len
2075 Set the minimum total number of samples in the output audio stream. If
2076 the value is longer than the input audio length, silence is added to
2077 the end, until the value is reached. This option is mutually exclusive
2078 with @option{pad_len}.
2079
2080 @item pad_dur
2081 Specify the duration of samples of silence to add. See
2082 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2083 for the accepted syntax. Used only if set to non-zero value.
2084
2085 @item whole_dur
2086 Specify the minimum total duration in the output audio stream. See
2087 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2088 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
2089 the input audio length, silence is added to the end, until the value is reached.
2090 This option is mutually exclusive with @option{pad_dur}
2091 @end table
2092
2093 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
2094 nor @option{whole_dur} option is set, the filter will add silence to the end of
2095 the input stream indefinitely.
2096
2097 @subsection Examples
2098
2099 @itemize
2100 @item
2101 Add 1024 samples of silence to the end of the input:
2102 @example
2103 apad=pad_len=1024
2104 @end example
2105
2106 @item
2107 Make sure the audio output will contain at least 10000 samples, pad
2108 the input with silence if required:
2109 @example
2110 apad=whole_len=10000
2111 @end example
2112
2113 @item
2114 Use @command{ffmpeg} to pad the audio input with silence, so that the
2115 video stream will always result the shortest and will be converted
2116 until the end in the output file when using the @option{shortest}
2117 option:
2118 @example
2119 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
2120 @end example
2121 @end itemize
2122
2123 @section aphaser
2124 Add a phasing effect to the input audio.
2125
2126 A phaser filter creates series of peaks and troughs in the frequency spectrum.
2127 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
2128
2129 A description of the accepted parameters follows.
2130
2131 @table @option
2132 @item in_gain
2133 Set input gain. Default is 0.4.
2134
2135 @item out_gain
2136 Set output gain. Default is 0.74
2137
2138 @item delay
2139 Set delay in milliseconds. Default is 3.0.
2140
2141 @item decay
2142 Set decay. Default is 0.4.
2143
2144 @item speed
2145 Set modulation speed in Hz. Default is 0.5.
2146
2147 @item type
2148 Set modulation type. Default is triangular.
2149
2150 It accepts the following values:
2151 @table @samp
2152 @item triangular, t
2153 @item sinusoidal, s
2154 @end table
2155 @end table
2156
2157 @section aphaseshift
2158 Apply phase shift to input audio samples.
2159
2160 The filter accepts the following options:
2161
2162 @table @option
2163 @item shift
2164 Specify phase shift. Allowed range is from -1.0 to 1.0.
2165 Default value is 0.0.
2166 @end table
2167
2168 @subsection Commands
2169
2170 This filter supports the above option as @ref{commands}.
2171
2172 @section apulsator
2173
2174 Audio pulsator is something between an autopanner and a tremolo.
2175 But it can produce funny stereo effects as well. Pulsator changes the volume
2176 of the left and right channel based on a LFO (low frequency oscillator) with
2177 different waveforms and shifted phases.
2178 This filter have the ability to define an offset between left and right
2179 channel. An offset of 0 means that both LFO shapes match each other.
2180 The left and right channel are altered equally - a conventional tremolo.
2181 An offset of 50% means that the shape of the right channel is exactly shifted
2182 in phase (or moved backwards about half of the frequency) - pulsator acts as
2183 an autopanner. At 1 both curves match again. Every setting in between moves the
2184 phase shift gapless between all stages and produces some "bypassing" sounds with
2185 sine and triangle waveforms. The more you set the offset near 1 (starting from
2186 the 0.5) the faster the signal passes from the left to the right speaker.
2187
2188 The filter accepts the following options:
2189
2190 @table @option
2191 @item level_in
2192 Set input gain. By default it is 1. Range is [0.015625 - 64].
2193
2194 @item level_out
2195 Set output gain. By default it is 1. Range is [0.015625 - 64].
2196
2197 @item mode
2198 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2199 sawup or sawdown. Default is sine.
2200
2201 @item amount
2202 Set modulation. Define how much of original signal is affected by the LFO.
2203
2204 @item offset_l
2205 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2206
2207 @item offset_r
2208 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2209
2210 @item width
2211 Set pulse width. Default is 1. Allowed range is [0 - 2].
2212
2213 @item timing
2214 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2215
2216 @item bpm
2217 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2218 is set to bpm.
2219
2220 @item ms
2221 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2222 is set to ms.
2223
2224 @item hz
2225 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2226 if timing is set to hz.
2227 @end table
2228
2229 @anchor{aresample}
2230 @section aresample
2231
2232 Resample the input audio to the specified parameters, using the
2233 libswresample library. If none are specified then the filter will
2234 automatically convert between its input and output.
2235
2236 This filter is also able to stretch/squeeze the audio data to make it match
2237 the timestamps or to inject silence / cut out audio to make it match the
2238 timestamps, do a combination of both or do neither.
2239
2240 The filter accepts the syntax
2241 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2242 expresses a sample rate and @var{resampler_options} is a list of
2243 @var{key}=@var{value} pairs, separated by ":". See the
2244 @ref{Resampler Options,,"Resampler Options" section in the
2245 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2246 for the complete list of supported options.
2247
2248 @subsection Examples
2249
2250 @itemize
2251 @item
2252 Resample the input audio to 44100Hz:
2253 @example
2254 aresample=44100
2255 @end example
2256
2257 @item
2258 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2259 samples per second compensation:
2260 @example
2261 aresample=async=1000
2262 @end example
2263 @end itemize
2264
2265 @section areverse
2266
2267 Reverse an audio clip.
2268
2269 Warning: This filter requires memory to buffer the entire clip, so trimming
2270 is suggested.
2271
2272 @subsection Examples
2273
2274 @itemize
2275 @item
2276 Take the first 5 seconds of a clip, and reverse it.
2277 @example
2278 atrim=end=5,areverse
2279 @end example
2280 @end itemize
2281
2282 @section arnndn
2283
2284 Reduce noise from speech using Recurrent Neural Networks.
2285
2286 This filter accepts the following options:
2287
2288 @table @option
2289 @item model, m
2290 Set train model file to load. This option is always required.
2291 @end table
2292
2293 @section asetnsamples
2294
2295 Set the number of samples per each output audio frame.
2296
2297 The last output packet may contain a different number of samples, as
2298 the filter will flush all the remaining samples when the input audio
2299 signals its end.
2300
2301 The filter accepts the following options:
2302
2303 @table @option
2304
2305 @item nb_out_samples, n
2306 Set the number of frames per each output audio frame. The number is
2307 intended as the number of samples @emph{per each channel}.
2308 Default value is 1024.
2309
2310 @item pad, p
2311 If set to 1, the filter will pad the last audio frame with zeroes, so
2312 that the last frame will contain the same number of samples as the
2313 previous ones. Default value is 1.
2314 @end table
2315
2316 For example, to set the number of per-frame samples to 1234 and
2317 disable padding for the last frame, use:
2318 @example
2319 asetnsamples=n=1234:p=0
2320 @end example
2321
2322 @section asetrate
2323
2324 Set the sample rate without altering the PCM data.
2325 This will result in a change of speed and pitch.
2326
2327 The filter accepts the following options:
2328
2329 @table @option
2330 @item sample_rate, r
2331 Set the output sample rate. Default is 44100 Hz.
2332 @end table
2333
2334 @section ashowinfo
2335
2336 Show a line containing various information for each input audio frame.
2337 The input audio is not modified.
2338
2339 The shown line contains a sequence of key/value pairs of the form
2340 @var{key}:@var{value}.
2341
2342 The following values are shown in the output:
2343
2344 @table @option
2345 @item n
2346 The (sequential) number of the input frame, starting from 0.
2347
2348 @item pts
2349 The presentation timestamp of the input frame, in time base units; the time base
2350 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2351
2352 @item pts_time
2353 The presentation timestamp of the input frame in seconds.
2354
2355 @item pos
2356 position of the frame in the input stream, -1 if this information in
2357 unavailable and/or meaningless (for example in case of synthetic audio)
2358
2359 @item fmt
2360 The sample format.
2361
2362 @item chlayout
2363 The channel layout.
2364
2365 @item rate
2366 The sample rate for the audio frame.
2367
2368 @item nb_samples
2369 The number of samples (per channel) in the frame.
2370
2371 @item checksum
2372 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2373 audio, the data is treated as if all the planes were concatenated.
2374
2375 @item plane_checksums
2376 A list of Adler-32 checksums for each data plane.
2377 @end table
2378
2379 @section asoftclip
2380 Apply audio soft clipping.
2381
2382 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2383 along a smooth curve, rather than the abrupt shape of hard-clipping.
2384
2385 This filter accepts the following options:
2386
2387 @table @option
2388 @item type
2389 Set type of soft-clipping.
2390
2391 It accepts the following values:
2392 @table @option
2393 @item hard
2394 @item tanh
2395 @item atan
2396 @item cubic
2397 @item exp
2398 @item alg
2399 @item quintic
2400 @item sin
2401 @item erf
2402 @end table
2403
2404 @item param
2405 Set additional parameter which controls sigmoid function.
2406
2407 @item oversample
2408 Set oversampling factor.
2409 @end table
2410
2411 @subsection Commands
2412
2413 This filter supports the all above options as @ref{commands}.
2414
2415 @section asr
2416 Automatic Speech Recognition
2417
2418 This filter uses PocketSphinx for speech recognition. To enable
2419 compilation of this filter, you need to configure FFmpeg with
2420 @code{--enable-pocketsphinx}.
2421
2422 It accepts the following options:
2423
2424 @table @option
2425 @item rate
2426 Set sampling rate of input audio. Defaults is @code{16000}.
2427 This need to match speech models, otherwise one will get poor results.
2428
2429 @item hmm
2430 Set dictionary containing acoustic model files.
2431
2432 @item dict
2433 Set pronunciation dictionary.
2434
2435 @item lm
2436 Set language model file.
2437
2438 @item lmctl
2439 Set language model set.
2440
2441 @item lmname
2442 Set which language model to use.
2443
2444 @item logfn
2445 Set output for log messages.
2446 @end table
2447
2448 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2449
2450 @anchor{astats}
2451 @section astats
2452
2453 Display time domain statistical information about the audio channels.
2454 Statistics are calculated and displayed for each audio channel and,
2455 where applicable, an overall figure is also given.
2456
2457 It accepts the following option:
2458 @table @option
2459 @item length
2460 Short window length in seconds, used for peak and trough RMS measurement.
2461 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2462
2463 @item metadata
2464
2465 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2466 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2467 disabled.
2468
2469 Available keys for each channel are:
2470 DC_offset
2471 Min_level
2472 Max_level
2473 Min_difference
2474 Max_difference
2475 Mean_difference
2476 RMS_difference
2477 Peak_level
2478 RMS_peak
2479 RMS_trough
2480 Crest_factor
2481 Flat_factor
2482 Peak_count
2483 Noise_floor
2484 Noise_floor_count
2485 Bit_depth
2486 Dynamic_range
2487 Zero_crossings
2488 Zero_crossings_rate
2489 Number_of_NaNs
2490 Number_of_Infs
2491 Number_of_denormals
2492
2493 and for Overall:
2494 DC_offset
2495 Min_level
2496 Max_level
2497 Min_difference
2498 Max_difference
2499 Mean_difference
2500 RMS_difference
2501 Peak_level
2502 RMS_level
2503 RMS_peak
2504 RMS_trough
2505 Flat_factor
2506 Peak_count
2507 Noise_floor
2508 Noise_floor_count
2509 Bit_depth
2510 Number_of_samples
2511 Number_of_NaNs
2512 Number_of_Infs
2513 Number_of_denormals
2514
2515 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2516 this @code{lavfi.astats.Overall.Peak_count}.
2517
2518 For description what each key means read below.
2519
2520 @item reset
2521 Set number of frame after which stats are going to be recalculated.
2522 Default is disabled.
2523
2524 @item measure_perchannel
2525 Select the entries which need to be measured per channel. The metadata keys can
2526 be used as flags, default is @option{all} which measures everything.
2527 @option{none} disables all per channel measurement.
2528
2529 @item measure_overall
2530 Select the entries which need to be measured overall. The metadata keys can
2531 be used as flags, default is @option{all} which measures everything.
2532 @option{none} disables all overall measurement.
2533
2534 @end table
2535
2536 A description of each shown parameter follows:
2537
2538 @table @option
2539 @item DC offset
2540 Mean amplitude displacement from zero.
2541
2542 @item Min level
2543 Minimal sample level.
2544
2545 @item Max level
2546 Maximal sample level.
2547
2548 @item Min difference
2549 Minimal difference between two consecutive samples.
2550
2551 @item Max difference
2552 Maximal difference between two consecutive samples.
2553
2554 @item Mean difference
2555 Mean difference between two consecutive samples.
2556 The average of each difference between two consecutive samples.
2557
2558 @item RMS difference
2559 Root Mean Square difference between two consecutive samples.
2560
2561 @item Peak level dB
2562 @item RMS level dB
2563 Standard peak and RMS level measured in dBFS.
2564
2565 @item RMS peak dB
2566 @item RMS trough dB
2567 Peak and trough values for RMS level measured over a short window.
2568
2569 @item Crest factor
2570 Standard ratio of peak to RMS level (note: not in dB).
2571
2572 @item Flat factor
2573 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2574 (i.e. either @var{Min level} or @var{Max level}).
2575
2576 @item Peak count
2577 Number of occasions (not the number of samples) that the signal attained either
2578 @var{Min level} or @var{Max level}.
2579
2580 @item Noise floor dB
2581 Minimum local peak measured in dBFS over a short window.
2582
2583 @item Noise floor count
2584 Number of occasions (not the number of samples) that the signal attained
2585 @var{Noise floor}.
2586
2587 @item Bit depth
2588 Overall bit depth of audio. Number of bits used for each sample.
2589
2590 @item Dynamic range
2591 Measured dynamic range of audio in dB.
2592
2593 @item Zero crossings
2594 Number of points where the waveform crosses the zero level axis.
2595
2596 @item Zero crossings rate
2597 Rate of Zero crossings and number of audio samples.
2598 @end table
2599
2600 @section asubboost
2601 Boost subwoofer frequencies.
2602
2603 The filter accepts the following options:
2604
2605 @table @option
2606 @item dry
2607 Set dry gain, how much of original signal is kept. Allowed range is from 0 to 1.
2608 Default value is 0.7.
2609
2610 @item wet
2611 Set wet gain, how much of filtered signal is kept. Allowed range is from 0 to 1.
2612 Default value is 0.7.
2613
2614 @item decay
2615 Set delay line decay gain value. Allowed range is from 0 to 1.
2616 Default value is 0.7.
2617
2618 @item feedback
2619 Set delay line feedback gain value. Allowed range is from 0 to 1.
2620 Default value is 0.9.
2621
2622 @item cutoff
2623 Set cutoff frequency in Hertz. Allowed range is 50 to 900.
2624 Default value is 100.
2625
2626 @item slope
2627 Set slope amount for cutoff frequency. Allowed range is 0.0001 to 1.
2628 Default value is 0.5.
2629
2630 @item delay
2631 Set delay. Allowed range is from 1 to 100.
2632 Default value is 20.
2633 @end table
2634
2635 @subsection Commands
2636
2637 This filter supports the all above options as @ref{commands}.
2638
2639 @section asupercut
2640 Cut super frequencies.
2641
2642 The filter accepts the following options:
2643
2644 @table @option
2645 @item cutoff
2646 Set cutoff frequency in Hertz. Allowed range is 20000 to 192000.
2647 Default value is 20000.
2648 @end table
2649
2650 @subsection Commands
2651
2652 This filter supports the all above options as @ref{commands}.
2653
2654 @section atempo
2655
2656 Adjust audio tempo.
2657
2658 The filter accepts exactly one parameter, the audio tempo. If not
2659 specified then the filter will assume nominal 1.0 tempo. Tempo must
2660 be in the [0.5, 100.0] range.
2661
2662 Note that tempo greater than 2 will skip some samples rather than
2663 blend them in.  If for any reason this is a concern it is always
2664 possible to daisy-chain several instances of atempo to achieve the
2665 desired product tempo.
2666
2667 @subsection Examples
2668
2669 @itemize
2670 @item
2671 Slow down audio to 80% tempo:
2672 @example
2673 atempo=0.8
2674 @end example
2675
2676 @item
2677 To speed up audio to 300% tempo:
2678 @example
2679 atempo=3
2680 @end example
2681
2682 @item
2683 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2684 @example
2685 atempo=sqrt(3),atempo=sqrt(3)
2686 @end example
2687 @end itemize
2688
2689 @subsection Commands
2690
2691 This filter supports the following commands:
2692 @table @option
2693 @item tempo
2694 Change filter tempo scale factor.
2695 Syntax for the command is : "@var{tempo}"
2696 @end table
2697
2698 @section atrim
2699
2700 Trim the input so that the output contains one continuous subpart of the input.
2701
2702 It accepts the following parameters:
2703 @table @option
2704 @item start
2705 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2706 sample with the timestamp @var{start} will be the first sample in the output.
2707
2708 @item end
2709 Specify time of the first audio sample that will be dropped, i.e. the
2710 audio sample immediately preceding the one with the timestamp @var{end} will be
2711 the last sample in the output.
2712
2713 @item start_pts
2714 Same as @var{start}, except this option sets the start timestamp in samples
2715 instead of seconds.
2716
2717 @item end_pts
2718 Same as @var{end}, except this option sets the end timestamp in samples instead
2719 of seconds.
2720
2721 @item duration
2722 The maximum duration of the output in seconds.
2723
2724 @item start_sample
2725 The number of the first sample that should be output.
2726
2727 @item end_sample
2728 The number of the first sample that should be dropped.
2729 @end table
2730
2731 @option{start}, @option{end}, and @option{duration} are expressed as time
2732 duration specifications; see
2733 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2734
2735 Note that the first two sets of the start/end options and the @option{duration}
2736 option look at the frame timestamp, while the _sample options simply count the
2737 samples that pass through the filter. So start/end_pts and start/end_sample will
2738 give different results when the timestamps are wrong, inexact or do not start at
2739 zero. Also note that this filter does not modify the timestamps. If you wish
2740 to have the output timestamps start at zero, insert the asetpts filter after the
2741 atrim filter.
2742
2743 If multiple start or end options are set, this filter tries to be greedy and
2744 keep all samples that match at least one of the specified constraints. To keep
2745 only the part that matches all the constraints at once, chain multiple atrim
2746 filters.
2747
2748 The defaults are such that all the input is kept. So it is possible to set e.g.
2749 just the end values to keep everything before the specified time.
2750
2751 Examples:
2752 @itemize
2753 @item
2754 Drop everything except the second minute of input:
2755 @example
2756 ffmpeg -i INPUT -af atrim=60:120
2757 @end example
2758
2759 @item
2760 Keep only the first 1000 samples:
2761 @example
2762 ffmpeg -i INPUT -af atrim=end_sample=1000
2763 @end example
2764
2765 @end itemize
2766
2767 @section axcorrelate
2768 Calculate normalized cross-correlation between two input audio streams.
2769
2770 Resulted samples are always between -1 and 1 inclusive.
2771 If result is 1 it means two input samples are highly correlated in that selected segment.
2772 Result 0 means they are not correlated at all.
2773 If result is -1 it means two input samples are out of phase, which means they cancel each
2774 other.
2775
2776 The filter accepts the following options:
2777
2778 @table @option
2779 @item size
2780 Set size of segment over which cross-correlation is calculated.
2781 Default is 256. Allowed range is from 2 to 131072.
2782
2783 @item algo
2784 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2785 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2786 are always zero and thus need much less calculations to make.
2787 This is generally not true, but is valid for typical audio streams.
2788 @end table
2789
2790 @subsection Examples
2791
2792 @itemize
2793 @item
2794 Calculate correlation between channels in stereo audio stream:
2795 @example
2796 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2797 @end example
2798 @end itemize
2799
2800 @section bandpass
2801
2802 Apply a two-pole Butterworth band-pass filter with central
2803 frequency @var{frequency}, and (3dB-point) band-width width.
2804 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2805 instead of the default: constant 0dB peak gain.
2806 The filter roll off at 6dB per octave (20dB per decade).
2807
2808 The filter accepts the following options:
2809
2810 @table @option
2811 @item frequency, f
2812 Set the filter's central frequency. Default is @code{3000}.
2813
2814 @item csg
2815 Constant skirt gain if set to 1. Defaults to 0.
2816
2817 @item width_type, t
2818 Set method to specify band-width of filter.
2819 @table @option
2820 @item h
2821 Hz
2822 @item q
2823 Q-Factor
2824 @item o
2825 octave
2826 @item s
2827 slope
2828 @item k
2829 kHz
2830 @end table
2831
2832 @item width, w
2833 Specify the band-width of a filter in width_type units.
2834
2835 @item mix, m
2836 How much to use filtered signal in output. Default is 1.
2837 Range is between 0 and 1.
2838
2839 @item channels, c
2840 Specify which channels to filter, by default all available are filtered.
2841
2842 @item normalize, n
2843 Normalize biquad coefficients, by default is disabled.
2844 Enabling it will normalize magnitude response at DC to 0dB.
2845
2846 @item transform, a
2847 Set transform type of IIR filter.
2848 @table @option
2849 @item di
2850 @item dii
2851 @item tdii
2852 @item latt
2853 @end table
2854 @end table
2855
2856 @subsection Commands
2857
2858 This filter supports the following commands:
2859 @table @option
2860 @item frequency, f
2861 Change bandpass frequency.
2862 Syntax for the command is : "@var{frequency}"
2863
2864 @item width_type, t
2865 Change bandpass width_type.
2866 Syntax for the command is : "@var{width_type}"
2867
2868 @item width, w
2869 Change bandpass width.
2870 Syntax for the command is : "@var{width}"
2871
2872 @item mix, m
2873 Change bandpass mix.
2874 Syntax for the command is : "@var{mix}"
2875 @end table
2876
2877 @section bandreject
2878
2879 Apply a two-pole Butterworth band-reject filter with central
2880 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2881 The filter roll off at 6dB per octave (20dB per decade).
2882
2883 The filter accepts the following options:
2884
2885 @table @option
2886 @item frequency, f
2887 Set the filter's central frequency. Default is @code{3000}.
2888
2889 @item width_type, t
2890 Set method to specify band-width of filter.
2891 @table @option
2892 @item h
2893 Hz
2894 @item q
2895 Q-Factor
2896 @item o
2897 octave
2898 @item s
2899 slope
2900 @item k
2901 kHz
2902 @end table
2903
2904 @item width, w
2905 Specify the band-width of a filter in width_type units.
2906
2907 @item mix, m
2908 How much to use filtered signal in output. Default is 1.
2909 Range is between 0 and 1.
2910
2911 @item channels, c
2912 Specify which channels to filter, by default all available are filtered.
2913
2914 @item normalize, n
2915 Normalize biquad coefficients, by default is disabled.
2916 Enabling it will normalize magnitude response at DC to 0dB.
2917
2918 @item transform, a
2919 Set transform type of IIR filter.
2920 @table @option
2921 @item di
2922 @item dii
2923 @item tdii
2924 @item latt
2925 @end table
2926 @end table
2927
2928 @subsection Commands
2929
2930 This filter supports the following commands:
2931 @table @option
2932 @item frequency, f
2933 Change bandreject frequency.
2934 Syntax for the command is : "@var{frequency}"
2935
2936 @item width_type, t
2937 Change bandreject width_type.
2938 Syntax for the command is : "@var{width_type}"
2939
2940 @item width, w
2941 Change bandreject width.
2942 Syntax for the command is : "@var{width}"
2943
2944 @item mix, m
2945 Change bandreject mix.
2946 Syntax for the command is : "@var{mix}"
2947 @end table
2948
2949 @section bass, lowshelf
2950
2951 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2952 shelving filter with a response similar to that of a standard
2953 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2954
2955 The filter accepts the following options:
2956
2957 @table @option
2958 @item gain, g
2959 Give the gain at 0 Hz. Its useful range is about -20
2960 (for a large cut) to +20 (for a large boost).
2961 Beware of clipping when using a positive gain.
2962
2963 @item frequency, f
2964 Set the filter's central frequency and so can be used
2965 to extend or reduce the frequency range to be boosted or cut.
2966 The default value is @code{100} Hz.
2967
2968 @item width_type, t
2969 Set method to specify band-width of filter.
2970 @table @option
2971 @item h
2972 Hz
2973 @item q
2974 Q-Factor
2975 @item o
2976 octave
2977 @item s
2978 slope
2979 @item k
2980 kHz
2981 @end table
2982
2983 @item width, w
2984 Determine how steep is the filter's shelf transition.
2985
2986 @item mix, m
2987 How much to use filtered signal in output. Default is 1.
2988 Range is between 0 and 1.
2989
2990 @item channels, c
2991 Specify which channels to filter, by default all available are filtered.
2992
2993 @item normalize, n
2994 Normalize biquad coefficients, by default is disabled.
2995 Enabling it will normalize magnitude response at DC to 0dB.
2996
2997 @item transform, a
2998 Set transform type of IIR filter.
2999 @table @option
3000 @item di
3001 @item dii
3002 @item tdii
3003 @item latt
3004 @end table
3005 @end table
3006
3007 @subsection Commands
3008
3009 This filter supports the following commands:
3010 @table @option
3011 @item frequency, f
3012 Change bass frequency.
3013 Syntax for the command is : "@var{frequency}"
3014
3015 @item width_type, t
3016 Change bass width_type.
3017 Syntax for the command is : "@var{width_type}"
3018
3019 @item width, w
3020 Change bass width.
3021 Syntax for the command is : "@var{width}"
3022
3023 @item gain, g
3024 Change bass gain.
3025 Syntax for the command is : "@var{gain}"
3026
3027 @item mix, m
3028 Change bass mix.
3029 Syntax for the command is : "@var{mix}"
3030 @end table
3031
3032 @section biquad
3033
3034 Apply a biquad IIR filter with the given coefficients.
3035 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
3036 are the numerator and denominator coefficients respectively.
3037 and @var{channels}, @var{c} specify which channels to filter, by default all
3038 available are filtered.
3039
3040 @subsection Commands
3041
3042 This filter supports the following commands:
3043 @table @option
3044 @item a0
3045 @item a1
3046 @item a2
3047 @item b0
3048 @item b1
3049 @item b2
3050 Change biquad parameter.
3051 Syntax for the command is : "@var{value}"
3052
3053 @item mix, m
3054 How much to use filtered signal in output. Default is 1.
3055 Range is between 0 and 1.
3056
3057 @item channels, c
3058 Specify which channels to filter, by default all available are filtered.
3059
3060 @item normalize, n
3061 Normalize biquad coefficients, by default is disabled.
3062 Enabling it will normalize magnitude response at DC to 0dB.
3063
3064 @item transform, a
3065 Set transform type of IIR filter.
3066 @table @option
3067 @item di
3068 @item dii
3069 @item tdii
3070 @item latt
3071 @end table
3072 @end table
3073
3074 @section bs2b
3075 Bauer stereo to binaural transformation, which improves headphone listening of
3076 stereo audio records.
3077
3078 To enable compilation of this filter you need to configure FFmpeg with
3079 @code{--enable-libbs2b}.
3080
3081 It accepts the following parameters:
3082 @table @option
3083
3084 @item profile
3085 Pre-defined crossfeed level.
3086 @table @option
3087
3088 @item default
3089 Default level (fcut=700, feed=50).
3090
3091 @item cmoy
3092 Chu Moy circuit (fcut=700, feed=60).
3093
3094 @item jmeier
3095 Jan Meier circuit (fcut=650, feed=95).
3096
3097 @end table
3098
3099 @item fcut
3100 Cut frequency (in Hz).
3101
3102 @item feed
3103 Feed level (in Hz).
3104
3105 @end table
3106
3107 @section channelmap
3108
3109 Remap input channels to new locations.
3110
3111 It accepts the following parameters:
3112 @table @option
3113 @item map
3114 Map channels from input to output. The argument is a '|'-separated list of
3115 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
3116 @var{in_channel} form. @var{in_channel} can be either the name of the input
3117 channel (e.g. FL for front left) or its index in the input channel layout.
3118 @var{out_channel} is the name of the output channel or its index in the output
3119 channel layout. If @var{out_channel} is not given then it is implicitly an
3120 index, starting with zero and increasing by one for each mapping.
3121
3122 @item channel_layout
3123 The channel layout of the output stream.
3124 @end table
3125
3126 If no mapping is present, the filter will implicitly map input channels to
3127 output channels, preserving indices.
3128
3129 @subsection Examples
3130
3131 @itemize
3132 @item
3133 For example, assuming a 5.1+downmix input MOV file,
3134 @example
3135 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
3136 @end example
3137 will create an output WAV file tagged as stereo from the downmix channels of
3138 the input.
3139
3140 @item
3141 To fix a 5.1 WAV improperly encoded in AAC's native channel order
3142 @example
3143 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
3144 @end example
3145 @end itemize
3146
3147 @section channelsplit
3148
3149 Split each channel from an input audio stream into a separate output stream.
3150
3151 It accepts the following parameters:
3152 @table @option
3153 @item channel_layout
3154 The channel layout of the input stream. The default is "stereo".
3155 @item channels
3156 A channel layout describing the channels to be extracted as separate output streams
3157 or "all" to extract each input channel as a separate stream. The default is "all".
3158
3159 Choosing channels not present in channel layout in the input will result in an error.
3160 @end table
3161
3162 @subsection Examples
3163
3164 @itemize
3165 @item
3166 For example, assuming a stereo input MP3 file,
3167 @example
3168 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
3169 @end example
3170 will create an output Matroska file with two audio streams, one containing only
3171 the left channel and the other the right channel.
3172
3173 @item
3174 Split a 5.1 WAV file into per-channel files:
3175 @example
3176 ffmpeg -i in.wav -filter_complex
3177 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
3178 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
3179 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
3180 side_right.wav
3181 @end example
3182
3183 @item
3184 Extract only LFE from a 5.1 WAV file:
3185 @example
3186 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
3187 -map '[LFE]' lfe.wav
3188 @end example
3189 @end itemize
3190
3191 @section chorus
3192 Add a chorus effect to the audio.
3193
3194 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
3195
3196 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
3197 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
3198 The modulation depth defines the range the modulated delay is played before or after
3199 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
3200 sound tuned around the original one, like in a chorus where some vocals are slightly
3201 off key.
3202
3203 It accepts the following parameters:
3204 @table @option
3205 @item in_gain
3206 Set input gain. Default is 0.4.
3207
3208 @item out_gain
3209 Set output gain. Default is 0.4.
3210
3211 @item delays
3212 Set delays. A typical delay is around 40ms to 60ms.
3213
3214 @item decays
3215 Set decays.
3216
3217 @item speeds
3218 Set speeds.
3219
3220 @item depths
3221 Set depths.
3222 @end table
3223
3224 @subsection Examples
3225
3226 @itemize
3227 @item
3228 A single delay:
3229 @example
3230 chorus=0.7:0.9:55:0.4:0.25:2
3231 @end example
3232
3233 @item
3234 Two delays:
3235 @example
3236 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
3237 @end example
3238
3239 @item
3240 Fuller sounding chorus with three delays:
3241 @example
3242 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
3243 @end example
3244 @end itemize
3245
3246 @section compand
3247 Compress or expand the audio's dynamic range.
3248
3249 It accepts the following parameters:
3250
3251 @table @option
3252
3253 @item attacks
3254 @item decays
3255 A list of times in seconds for each channel over which the instantaneous level
3256 of the input signal is averaged to determine its volume. @var{attacks} refers to
3257 increase of volume and @var{decays} refers to decrease of volume. For most
3258 situations, the attack time (response to the audio getting louder) should be
3259 shorter than the decay time, because the human ear is more sensitive to sudden
3260 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3261 a typical value for decay is 0.8 seconds.
3262 If specified number of attacks & decays is lower than number of channels, the last
3263 set attack/decay will be used for all remaining channels.
3264
3265 @item points
3266 A list of points for the transfer function, specified in dB relative to the
3267 maximum possible signal amplitude. Each key points list must be defined using
3268 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3269 @code{x0/y0 x1/y1 x2/y2 ....}
3270
3271 The input values must be in strictly increasing order but the transfer function
3272 does not have to be monotonically rising. The point @code{0/0} is assumed but
3273 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3274 function are @code{-70/-70|-60/-20|1/0}.
3275
3276 @item soft-knee
3277 Set the curve radius in dB for all joints. It defaults to 0.01.
3278
3279 @item gain
3280 Set the additional gain in dB to be applied at all points on the transfer
3281 function. This allows for easy adjustment of the overall gain.
3282 It defaults to 0.
3283
3284 @item volume
3285 Set an initial volume, in dB, to be assumed for each channel when filtering
3286 starts. This permits the user to supply a nominal level initially, so that, for
3287 example, a very large gain is not applied to initial signal levels before the
3288 companding has begun to operate. A typical value for audio which is initially
3289 quiet is -90 dB. It defaults to 0.
3290
3291 @item delay
3292 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3293 delayed before being fed to the volume adjuster. Specifying a delay
3294 approximately equal to the attack/decay times allows the filter to effectively
3295 operate in predictive rather than reactive mode. It defaults to 0.
3296
3297 @end table
3298
3299 @subsection Examples
3300
3301 @itemize
3302 @item
3303 Make music with both quiet and loud passages suitable for listening to in a
3304 noisy environment:
3305 @example
3306 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3307 @end example
3308
3309 Another example for audio with whisper and explosion parts:
3310 @example
3311 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3312 @end example
3313
3314 @item
3315 A noise gate for when the noise is at a lower level than the signal:
3316 @example
3317 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3318 @end example
3319
3320 @item
3321 Here is another noise gate, this time for when the noise is at a higher level
3322 than the signal (making it, in some ways, similar to squelch):
3323 @example
3324 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3325 @end example
3326
3327 @item
3328 2:1 compression starting at -6dB:
3329 @example
3330 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3331 @end example
3332
3333 @item
3334 2:1 compression starting at -9dB:
3335 @example
3336 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3337 @end example
3338
3339 @item
3340 2:1 compression starting at -12dB:
3341 @example
3342 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3343 @end example
3344
3345 @item
3346 2:1 compression starting at -18dB:
3347 @example
3348 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3349 @end example
3350
3351 @item
3352 3:1 compression starting at -15dB:
3353 @example
3354 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3355 @end example
3356
3357 @item
3358 Compressor/Gate:
3359 @example
3360 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3361 @end example
3362
3363 @item
3364 Expander:
3365 @example
3366 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
3367 @end example
3368
3369 @item
3370 Hard limiter at -6dB:
3371 @example
3372 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3373 @end example
3374
3375 @item
3376 Hard limiter at -12dB:
3377 @example
3378 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3379 @end example
3380
3381 @item
3382 Hard noise gate at -35 dB:
3383 @example
3384 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3385 @end example
3386
3387 @item
3388 Soft limiter:
3389 @example
3390 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3391 @end example
3392 @end itemize
3393
3394 @section compensationdelay
3395
3396 Compensation Delay Line is a metric based delay to compensate differing
3397 positions of microphones or speakers.
3398
3399 For example, you have recorded guitar with two microphones placed in
3400 different locations. Because the front of sound wave has fixed speed in
3401 normal conditions, the phasing of microphones can vary and depends on
3402 their location and interposition. The best sound mix can be achieved when
3403 these microphones are in phase (synchronized). Note that a distance of
3404 ~30 cm between microphones makes one microphone capture the signal in
3405 antiphase to the other microphone. That makes the final mix sound moody.
3406 This filter helps to solve phasing problems by adding different delays
3407 to each microphone track and make them synchronized.
3408
3409 The best result can be reached when you take one track as base and
3410 synchronize other tracks one by one with it.
3411 Remember that synchronization/delay tolerance depends on sample rate, too.
3412 Higher sample rates will give more tolerance.
3413
3414 The filter accepts the following parameters:
3415
3416 @table @option
3417 @item mm
3418 Set millimeters distance. This is compensation distance for fine tuning.
3419 Default is 0.
3420
3421 @item cm
3422 Set cm distance. This is compensation distance for tightening distance setup.
3423 Default is 0.
3424
3425 @item m
3426 Set meters distance. This is compensation distance for hard distance setup.
3427 Default is 0.
3428
3429 @item dry
3430 Set dry amount. Amount of unprocessed (dry) signal.
3431 Default is 0.
3432
3433 @item wet
3434 Set wet amount. Amount of processed (wet) signal.
3435 Default is 1.
3436
3437 @item temp
3438 Set temperature in degrees Celsius. This is the temperature of the environment.
3439 Default is 20.
3440 @end table
3441
3442 @section crossfeed
3443 Apply headphone crossfeed filter.
3444
3445 Crossfeed is the process of blending the left and right channels of stereo
3446 audio recording.
3447 It is mainly used to reduce extreme stereo separation of low frequencies.
3448
3449 The intent is to produce more speaker like sound to the listener.
3450
3451 The filter accepts the following options:
3452
3453 @table @option
3454 @item strength
3455 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3456 This sets gain of low shelf filter for side part of stereo image.
3457 Default is -6dB. Max allowed is -30db when strength is set to 1.
3458
3459 @item range
3460 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3461 This sets cut off frequency of low shelf filter. Default is cut off near
3462 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3463
3464 @item slope
3465 Set curve slope of low shelf filter. Default is 0.5.
3466 Allowed range is from 0.01 to 1.
3467
3468 @item level_in
3469 Set input gain. Default is 0.9.
3470
3471 @item level_out
3472 Set output gain. Default is 1.
3473 @end table
3474
3475 @subsection Commands
3476
3477 This filter supports the all above options as @ref{commands}.
3478
3479 @section crystalizer
3480 Simple algorithm to expand audio dynamic range.
3481
3482 The filter accepts the following options:
3483
3484 @table @option
3485 @item i
3486 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3487 (unchanged sound) to 10.0 (maximum effect).
3488
3489 @item c
3490 Enable clipping. By default is enabled.
3491 @end table
3492
3493 @subsection Commands
3494
3495 This filter supports the all above options as @ref{commands}.
3496
3497 @section dcshift
3498 Apply a DC shift to the audio.
3499
3500 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3501 in the recording chain) from the audio. The effect of a DC offset is reduced
3502 headroom and hence volume. The @ref{astats} filter can be used to determine if
3503 a signal has a DC offset.
3504
3505 @table @option
3506 @item shift
3507 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3508 the audio.
3509
3510 @item limitergain
3511 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3512 used to prevent clipping.
3513 @end table
3514
3515 @section deesser
3516
3517 Apply de-essing to the audio samples.
3518
3519 @table @option
3520 @item i
3521 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3522 Default is 0.
3523
3524 @item m
3525 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3526 Default is 0.5.
3527
3528 @item f
3529 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3530 Default is 0.5.
3531
3532 @item s
3533 Set the output mode.
3534
3535 It accepts the following values:
3536 @table @option
3537 @item i
3538 Pass input unchanged.
3539
3540 @item o
3541 Pass ess filtered out.
3542
3543 @item e
3544 Pass only ess.
3545
3546 Default value is @var{o}.
3547 @end table
3548
3549 @end table
3550
3551 @section drmeter
3552 Measure audio dynamic range.
3553
3554 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3555 is found in transition material. And anything less that 8 have very poor dynamics
3556 and is very compressed.
3557
3558 The filter accepts the following options:
3559
3560 @table @option
3561 @item length
3562 Set window length in seconds used to split audio into segments of equal length.
3563 Default is 3 seconds.
3564 @end table
3565
3566 @section dynaudnorm
3567 Dynamic Audio Normalizer.
3568
3569 This filter applies a certain amount of gain to the input audio in order
3570 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3571 contrast to more "simple" normalization algorithms, the Dynamic Audio
3572 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3573 This allows for applying extra gain to the "quiet" sections of the audio
3574 while avoiding distortions or clipping the "loud" sections. In other words:
3575 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3576 sections, in the sense that the volume of each section is brought to the
3577 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3578 this goal *without* applying "dynamic range compressing". It will retain 100%
3579 of the dynamic range *within* each section of the audio file.
3580
3581 @table @option
3582 @item framelen, f
3583 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3584 Default is 500 milliseconds.
3585 The Dynamic Audio Normalizer processes the input audio in small chunks,
3586 referred to as frames. This is required, because a peak magnitude has no
3587 meaning for just a single sample value. Instead, we need to determine the
3588 peak magnitude for a contiguous sequence of sample values. While a "standard"
3589 normalizer would simply use the peak magnitude of the complete file, the
3590 Dynamic Audio Normalizer determines the peak magnitude individually for each
3591 frame. The length of a frame is specified in milliseconds. By default, the
3592 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3593 been found to give good results with most files.
3594 Note that the exact frame length, in number of samples, will be determined
3595 automatically, based on the sampling rate of the individual input audio file.
3596
3597 @item gausssize, g
3598 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3599 number. Default is 31.
3600 Probably the most important parameter of the Dynamic Audio Normalizer is the
3601 @code{window size} of the Gaussian smoothing filter. The filter's window size
3602 is specified in frames, centered around the current frame. For the sake of
3603 simplicity, this must be an odd number. Consequently, the default value of 31
3604 takes into account the current frame, as well as the 15 preceding frames and
3605 the 15 subsequent frames. Using a larger window results in a stronger
3606 smoothing effect and thus in less gain variation, i.e. slower gain
3607 adaptation. Conversely, using a smaller window results in a weaker smoothing
3608 effect and thus in more gain variation, i.e. faster gain adaptation.
3609 In other words, the more you increase this value, the more the Dynamic Audio
3610 Normalizer will behave like a "traditional" normalization filter. On the
3611 contrary, the more you decrease this value, the more the Dynamic Audio
3612 Normalizer will behave like a dynamic range compressor.
3613
3614 @item peak, p
3615 Set the target peak value. This specifies the highest permissible magnitude
3616 level for the normalized audio input. This filter will try to approach the
3617 target peak magnitude as closely as possible, but at the same time it also
3618 makes sure that the normalized signal will never exceed the peak magnitude.
3619 A frame's maximum local gain factor is imposed directly by the target peak
3620 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3621 It is not recommended to go above this value.
3622
3623 @item maxgain, m
3624 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3625 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3626 factor for each input frame, i.e. the maximum gain factor that does not
3627 result in clipping or distortion. The maximum gain factor is determined by
3628 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3629 additionally bounds the frame's maximum gain factor by a predetermined
3630 (global) maximum gain factor. This is done in order to avoid excessive gain
3631 factors in "silent" or almost silent frames. By default, the maximum gain
3632 factor is 10.0, For most inputs the default value should be sufficient and
3633 it usually is not recommended to increase this value. Though, for input
3634 with an extremely low overall volume level, it may be necessary to allow even
3635 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3636 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3637 Instead, a "sigmoid" threshold function will be applied. This way, the
3638 gain factors will smoothly approach the threshold value, but never exceed that
3639 value.
3640
3641 @item targetrms, r
3642 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3643 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3644 This means that the maximum local gain factor for each frame is defined
3645 (only) by the frame's highest magnitude sample. This way, the samples can
3646 be amplified as much as possible without exceeding the maximum signal
3647 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3648 Normalizer can also take into account the frame's root mean square,
3649 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3650 determine the power of a time-varying signal. It is therefore considered
3651 that the RMS is a better approximation of the "perceived loudness" than
3652 just looking at the signal's peak magnitude. Consequently, by adjusting all
3653 frames to a constant RMS value, a uniform "perceived loudness" can be
3654 established. If a target RMS value has been specified, a frame's local gain
3655 factor is defined as the factor that would result in exactly that RMS value.
3656 Note, however, that the maximum local gain factor is still restricted by the
3657 frame's highest magnitude sample, in order to prevent clipping.
3658
3659 @item coupling, n
3660 Enable channels coupling. By default is enabled.
3661 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3662 amount. This means the same gain factor will be applied to all channels, i.e.
3663 the maximum possible gain factor is determined by the "loudest" channel.
3664 However, in some recordings, it may happen that the volume of the different
3665 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3666 In this case, this option can be used to disable the channel coupling. This way,
3667 the gain factor will be determined independently for each channel, depending
3668 only on the individual channel's highest magnitude sample. This allows for
3669 harmonizing the volume of the different channels.
3670
3671 @item correctdc, c
3672 Enable DC bias correction. By default is disabled.
3673 An audio signal (in the time domain) is a sequence of sample values.
3674 In the Dynamic Audio Normalizer these sample values are represented in the
3675 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3676 audio signal, or "waveform", should be centered around the zero point.
3677 That means if we calculate the mean value of all samples in a file, or in a
3678 single frame, then the result should be 0.0 or at least very close to that
3679 value. If, however, there is a significant deviation of the mean value from
3680 0.0, in either positive or negative direction, this is referred to as a
3681 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3682 Audio Normalizer provides optional DC bias correction.
3683 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3684 the mean value, or "DC correction" offset, of each input frame and subtract
3685 that value from all of the frame's sample values which ensures those samples
3686 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3687 boundaries, the DC correction offset values will be interpolated smoothly
3688 between neighbouring frames.
3689
3690 @item altboundary, b
3691 Enable alternative boundary mode. By default is disabled.
3692 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3693 around each frame. This includes the preceding frames as well as the
3694 subsequent frames. However, for the "boundary" frames, located at the very
3695 beginning and at the very end of the audio file, not all neighbouring
3696 frames are available. In particular, for the first few frames in the audio
3697 file, the preceding frames are not known. And, similarly, for the last few
3698 frames in the audio file, the subsequent frames are not known. Thus, the
3699 question arises which gain factors should be assumed for the missing frames
3700 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3701 to deal with this situation. The default boundary mode assumes a gain factor
3702 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3703 "fade out" at the beginning and at the end of the input, respectively.
3704
3705 @item compress, s
3706 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3707 By default, the Dynamic Audio Normalizer does not apply "traditional"
3708 compression. This means that signal peaks will not be pruned and thus the
3709 full dynamic range will be retained within each local neighbourhood. However,
3710 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3711 normalization algorithm with a more "traditional" compression.
3712 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3713 (thresholding) function. If (and only if) the compression feature is enabled,
3714 all input frames will be processed by a soft knee thresholding function prior
3715 to the actual normalization process. Put simply, the thresholding function is
3716 going to prune all samples whose magnitude exceeds a certain threshold value.
3717 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3718 value. Instead, the threshold value will be adjusted for each individual
3719 frame.
3720 In general, smaller parameters result in stronger compression, and vice versa.
3721 Values below 3.0 are not recommended, because audible distortion may appear.
3722
3723 @item threshold, t
3724 Set the target threshold value. This specifies the lowest permissible
3725 magnitude level for the audio input which will be normalized.
3726 If input frame volume is above this value frame will be normalized.
3727 Otherwise frame may not be normalized at all. The default value is set
3728 to 0, which means all input frames will be normalized.
3729 This option is mostly useful if digital noise is not wanted to be amplified.
3730 @end table
3731
3732 @subsection Commands
3733
3734 This filter supports the all above options as @ref{commands}.
3735
3736 @section earwax
3737
3738 Make audio easier to listen to on headphones.
3739
3740 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3741 so that when listened to on headphones the stereo image is moved from
3742 inside your head (standard for headphones) to outside and in front of
3743 the listener (standard for speakers).
3744
3745 Ported from SoX.
3746
3747 @section equalizer
3748
3749 Apply a two-pole peaking equalisation (EQ) filter. With this
3750 filter, the signal-level at and around a selected frequency can
3751 be increased or decreased, whilst (unlike bandpass and bandreject
3752 filters) that at all other frequencies is unchanged.
3753
3754 In order to produce complex equalisation curves, this filter can
3755 be given several times, each with a different central frequency.
3756
3757 The filter accepts the following options:
3758
3759 @table @option
3760 @item frequency, f
3761 Set the filter's central frequency in Hz.
3762
3763 @item width_type, t
3764 Set method to specify band-width of filter.
3765 @table @option
3766 @item h
3767 Hz
3768 @item q
3769 Q-Factor
3770 @item o
3771 octave
3772 @item s
3773 slope
3774 @item k
3775 kHz
3776 @end table
3777
3778 @item width, w
3779 Specify the band-width of a filter in width_type units.
3780
3781 @item gain, g
3782 Set the required gain or attenuation in dB.
3783 Beware of clipping when using a positive gain.
3784
3785 @item mix, m
3786 How much to use filtered signal in output. Default is 1.
3787 Range is between 0 and 1.
3788
3789 @item channels, c
3790 Specify which channels to filter, by default all available are filtered.
3791
3792 @item normalize, n
3793 Normalize biquad coefficients, by default is disabled.
3794 Enabling it will normalize magnitude response at DC to 0dB.
3795
3796 @item transform, a
3797 Set transform type of IIR filter.
3798 @table @option
3799 @item di
3800 @item dii
3801 @item tdii
3802 @item latt
3803 @end table
3804 @end table
3805
3806 @subsection Examples
3807 @itemize
3808 @item
3809 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3810 @example
3811 equalizer=f=1000:t=h:width=200:g=-10
3812 @end example
3813
3814 @item
3815 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3816 @example
3817 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3818 @end example
3819 @end itemize
3820
3821 @subsection Commands
3822
3823 This filter supports the following commands:
3824 @table @option
3825 @item frequency, f
3826 Change equalizer frequency.
3827 Syntax for the command is : "@var{frequency}"
3828
3829 @item width_type, t
3830 Change equalizer width_type.
3831 Syntax for the command is : "@var{width_type}"
3832
3833 @item width, w
3834 Change equalizer width.
3835 Syntax for the command is : "@var{width}"
3836
3837 @item gain, g
3838 Change equalizer gain.
3839 Syntax for the command is : "@var{gain}"
3840
3841 @item mix, m
3842 Change equalizer mix.
3843 Syntax for the command is : "@var{mix}"
3844 @end table
3845
3846 @section extrastereo
3847
3848 Linearly increases the difference between left and right channels which
3849 adds some sort of "live" effect to playback.
3850
3851 The filter accepts the following options:
3852
3853 @table @option
3854 @item m
3855 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3856 (average of both channels), with 1.0 sound will be unchanged, with
3857 -1.0 left and right channels will be swapped.
3858
3859 @item c
3860 Enable clipping. By default is enabled.
3861 @end table
3862
3863 @subsection Commands
3864
3865 This filter supports the all above options as @ref{commands}.
3866
3867 @section firequalizer
3868 Apply FIR Equalization using arbitrary frequency response.
3869
3870 The filter accepts the following option:
3871
3872 @table @option
3873 @item gain
3874 Set gain curve equation (in dB). The expression can contain variables:
3875 @table @option
3876 @item f
3877 the evaluated frequency
3878 @item sr
3879 sample rate
3880 @item ch
3881 channel number, set to 0 when multichannels evaluation is disabled
3882 @item chid
3883 channel id, see libavutil/channel_layout.h, set to the first channel id when
3884 multichannels evaluation is disabled
3885 @item chs
3886 number of channels
3887 @item chlayout
3888 channel_layout, see libavutil/channel_layout.h
3889
3890 @end table
3891 and functions:
3892 @table @option
3893 @item gain_interpolate(f)
3894 interpolate gain on frequency f based on gain_entry
3895 @item cubic_interpolate(f)
3896 same as gain_interpolate, but smoother
3897 @end table
3898 This option is also available as command. Default is @code{gain_interpolate(f)}.
3899
3900 @item gain_entry
3901 Set gain entry for gain_interpolate function. The expression can
3902 contain functions:
3903 @table @option
3904 @item entry(f, g)
3905 store gain entry at frequency f with value g
3906 @end table
3907 This option is also available as command.
3908
3909 @item delay
3910 Set filter delay in seconds. Higher value means more accurate.
3911 Default is @code{0.01}.
3912
3913 @item accuracy
3914 Set filter accuracy in Hz. Lower value means more accurate.
3915 Default is @code{5}.
3916
3917 @item wfunc
3918 Set window function. Acceptable values are:
3919 @table @option
3920 @item rectangular
3921 rectangular window, useful when gain curve is already smooth
3922 @item hann
3923 hann window (default)
3924 @item hamming
3925 hamming window
3926 @item blackman
3927 blackman window
3928 @item nuttall3
3929 3-terms continuous 1st derivative nuttall window
3930 @item mnuttall3
3931 minimum 3-terms discontinuous nuttall window
3932 @item nuttall
3933 4-terms continuous 1st derivative nuttall window
3934 @item bnuttall
3935 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3936 @item bharris
3937 blackman-harris window
3938 @item tukey
3939 tukey window
3940 @end table
3941
3942 @item fixed
3943 If enabled, use fixed number of audio samples. This improves speed when
3944 filtering with large delay. Default is disabled.
3945
3946 @item multi
3947 Enable multichannels evaluation on gain. Default is disabled.
3948
3949 @item zero_phase
3950 Enable zero phase mode by subtracting timestamp to compensate delay.
3951 Default is disabled.
3952
3953 @item scale
3954 Set scale used by gain. Acceptable values are:
3955 @table @option
3956 @item linlin
3957 linear frequency, linear gain
3958 @item linlog
3959 linear frequency, logarithmic (in dB) gain (default)
3960 @item loglin
3961 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3962 @item loglog
3963 logarithmic frequency, logarithmic gain
3964 @end table
3965
3966 @item dumpfile
3967 Set file for dumping, suitable for gnuplot.
3968
3969 @item dumpscale
3970 Set scale for dumpfile. Acceptable values are same with scale option.
3971 Default is linlog.
3972
3973 @item fft2
3974 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3975 Default is disabled.
3976
3977 @item min_phase
3978 Enable minimum phase impulse response. Default is disabled.
3979 @end table
3980
3981 @subsection Examples
3982 @itemize
3983 @item
3984 lowpass at 1000 Hz:
3985 @example
3986 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3987 @end example
3988 @item
3989 lowpass at 1000 Hz with gain_entry:
3990 @example
3991 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3992 @end example
3993 @item
3994 custom equalization:
3995 @example
3996 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3997 @end example
3998 @item
3999 higher delay with zero phase to compensate delay:
4000 @example
4001 firequalizer=delay=0.1:fixed=on:zero_phase=on
4002 @end example
4003 @item
4004 lowpass on left channel, highpass on right channel:
4005 @example
4006 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
4007 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
4008 @end example
4009 @end itemize
4010
4011 @section flanger
4012 Apply a flanging effect to the audio.
4013
4014 The filter accepts the following options:
4015
4016 @table @option
4017 @item delay
4018 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
4019
4020 @item depth
4021 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
4022
4023 @item regen
4024 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
4025 Default value is 0.
4026
4027 @item width
4028 Set percentage of delayed signal mixed with original. Range from 0 to 100.
4029 Default value is 71.
4030
4031 @item speed
4032 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
4033
4034 @item shape
4035 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
4036 Default value is @var{sinusoidal}.
4037
4038 @item phase
4039 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
4040 Default value is 25.
4041
4042 @item interp
4043 Set delay-line interpolation, @var{linear} or @var{quadratic}.
4044 Default is @var{linear}.
4045 @end table
4046
4047 @section haas
4048 Apply Haas effect to audio.
4049
4050 Note that this makes most sense to apply on mono signals.
4051 With this filter applied to mono signals it give some directionality and
4052 stretches its stereo image.
4053
4054 The filter accepts the following options:
4055
4056 @table @option
4057 @item level_in
4058 Set input level. By default is @var{1}, or 0dB
4059
4060 @item level_out
4061 Set output level. By default is @var{1}, or 0dB.
4062
4063 @item side_gain
4064 Set gain applied to side part of signal. By default is @var{1}.
4065
4066 @item middle_source
4067 Set kind of middle source. Can be one of the following:
4068
4069 @table @samp
4070 @item left
4071 Pick left channel.
4072
4073 @item right
4074 Pick right channel.
4075
4076 @item mid
4077 Pick middle part signal of stereo image.
4078
4079 @item side
4080 Pick side part signal of stereo image.
4081 @end table
4082
4083 @item middle_phase
4084 Change middle phase. By default is disabled.
4085
4086 @item left_delay
4087 Set left channel delay. By default is @var{2.05} milliseconds.
4088
4089 @item left_balance
4090 Set left channel balance. By default is @var{-1}.
4091
4092 @item left_gain
4093 Set left channel gain. By default is @var{1}.
4094
4095 @item left_phase
4096 Change left phase. By default is disabled.
4097
4098 @item right_delay
4099 Set right channel delay. By defaults is @var{2.12} milliseconds.
4100
4101 @item right_balance
4102 Set right channel balance. By default is @var{1}.
4103
4104 @item right_gain
4105 Set right channel gain. By default is @var{1}.
4106
4107 @item right_phase
4108 Change right phase. By default is enabled.
4109 @end table
4110
4111 @section hdcd
4112
4113 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
4114 embedded HDCD codes is expanded into a 20-bit PCM stream.
4115
4116 The filter supports the Peak Extend and Low-level Gain Adjustment features
4117 of HDCD, and detects the Transient Filter flag.
4118
4119 @example
4120 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
4121 @end example
4122
4123 When using the filter with wav, note the default encoding for wav is 16-bit,
4124 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
4125 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
4126 @example
4127 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
4128 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
4129 @end example
4130
4131 The filter accepts the following options:
4132
4133 @table @option
4134 @item disable_autoconvert
4135 Disable any automatic format conversion or resampling in the filter graph.
4136
4137 @item process_stereo
4138 Process the stereo channels together. If target_gain does not match between
4139 channels, consider it invalid and use the last valid target_gain.
4140
4141 @item cdt_ms
4142 Set the code detect timer period in ms.
4143
4144 @item force_pe
4145 Always extend peaks above -3dBFS even if PE isn't signaled.
4146
4147 @item analyze_mode
4148 Replace audio with a solid tone and adjust the amplitude to signal some
4149 specific aspect of the decoding process. The output file can be loaded in
4150 an audio editor alongside the original to aid analysis.
4151
4152 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
4153
4154 Modes are:
4155 @table @samp
4156 @item 0, off
4157 Disabled
4158 @item 1, lle
4159 Gain adjustment level at each sample
4160 @item 2, pe
4161 Samples where peak extend occurs
4162 @item 3, cdt
4163 Samples where the code detect timer is active
4164 @item 4, tgm
4165 Samples where the target gain does not match between channels
4166 @end table
4167 @end table
4168
4169 @section headphone
4170
4171 Apply head-related transfer functions (HRTFs) to create virtual
4172 loudspeakers around the user for binaural listening via headphones.
4173 The HRIRs are provided via additional streams, for each channel
4174 one stereo input stream is needed.
4175
4176 The filter accepts the following options:
4177
4178 @table @option
4179 @item map
4180 Set mapping of input streams for convolution.
4181 The argument is a '|'-separated list of channel names in order as they
4182 are given as additional stream inputs for filter.
4183 This also specify number of input streams. Number of input streams
4184 must be not less than number of channels in first stream plus one.
4185
4186 @item gain
4187 Set gain applied to audio. Value is in dB. Default is 0.
4188
4189 @item type
4190 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4191 processing audio in time domain which is slow.
4192 @var{freq} is processing audio in frequency domain which is fast.
4193 Default is @var{freq}.
4194
4195 @item lfe
4196 Set custom gain for LFE channels. Value is in dB. Default is 0.
4197
4198 @item size
4199 Set size of frame in number of samples which will be processed at once.
4200 Default value is @var{1024}. Allowed range is from 1024 to 96000.
4201
4202 @item hrir
4203 Set format of hrir stream.
4204 Default value is @var{stereo}. Alternative value is @var{multich}.
4205 If value is set to @var{stereo}, number of additional streams should
4206 be greater or equal to number of input channels in first input stream.
4207 Also each additional stream should have stereo number of channels.
4208 If value is set to @var{multich}, number of additional streams should
4209 be exactly one. Also number of input channels of additional stream
4210 should be equal or greater than twice number of channels of first input
4211 stream.
4212 @end table
4213
4214 @subsection Examples
4215
4216 @itemize
4217 @item
4218 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4219 each amovie filter use stereo file with IR coefficients as input.
4220 The files give coefficients for each position of virtual loudspeaker:
4221 @example
4222 ffmpeg -i input.wav
4223 -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"
4224 output.wav
4225 @end example
4226
4227 @item
4228 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4229 but now in @var{multich} @var{hrir} format.
4230 @example
4231 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"
4232 output.wav
4233 @end example
4234 @end itemize
4235
4236 @section highpass
4237
4238 Apply a high-pass filter with 3dB point frequency.
4239 The filter can be either single-pole, or double-pole (the default).
4240 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4241
4242 The filter accepts the following options:
4243
4244 @table @option
4245 @item frequency, f
4246 Set frequency in Hz. Default is 3000.
4247
4248 @item poles, p
4249 Set number of poles. Default is 2.
4250
4251 @item width_type, t
4252 Set method to specify band-width of filter.
4253 @table @option
4254 @item h
4255 Hz
4256 @item q
4257 Q-Factor
4258 @item o
4259 octave
4260 @item s
4261 slope
4262 @item k
4263 kHz
4264 @end table
4265
4266 @item width, w
4267 Specify the band-width of a filter in width_type units.
4268 Applies only to double-pole filter.
4269 The default is 0.707q and gives a Butterworth response.
4270
4271 @item mix, m
4272 How much to use filtered signal in output. Default is 1.
4273 Range is between 0 and 1.
4274
4275 @item channels, c
4276 Specify which channels to filter, by default all available are filtered.
4277
4278 @item normalize, n
4279 Normalize biquad coefficients, by default is disabled.
4280 Enabling it will normalize magnitude response at DC to 0dB.
4281
4282 @item transform, a
4283 Set transform type of IIR filter.
4284 @table @option
4285 @item di
4286 @item dii
4287 @item tdii
4288 @item latt
4289 @end table
4290 @end table
4291
4292 @subsection Commands
4293
4294 This filter supports the following commands:
4295 @table @option
4296 @item frequency, f
4297 Change highpass frequency.
4298 Syntax for the command is : "@var{frequency}"
4299
4300 @item width_type, t
4301 Change highpass width_type.
4302 Syntax for the command is : "@var{width_type}"
4303
4304 @item width, w
4305 Change highpass width.
4306 Syntax for the command is : "@var{width}"
4307
4308 @item mix, m
4309 Change highpass mix.
4310 Syntax for the command is : "@var{mix}"
4311 @end table
4312
4313 @section join
4314
4315 Join multiple input streams into one multi-channel stream.
4316
4317 It accepts the following parameters:
4318 @table @option
4319
4320 @item inputs
4321 The number of input streams. It defaults to 2.
4322
4323 @item channel_layout
4324 The desired output channel layout. It defaults to stereo.
4325
4326 @item map
4327 Map channels from inputs to output. The argument is a '|'-separated list of
4328 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4329 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4330 can be either the name of the input channel (e.g. FL for front left) or its
4331 index in the specified input stream. @var{out_channel} is the name of the output
4332 channel.
4333 @end table
4334
4335 The filter will attempt to guess the mappings when they are not specified
4336 explicitly. It does so by first trying to find an unused matching input channel
4337 and if that fails it picks the first unused input channel.
4338
4339 Join 3 inputs (with properly set channel layouts):
4340 @example
4341 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4342 @end example
4343
4344 Build a 5.1 output from 6 single-channel streams:
4345 @example
4346 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4347 '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'
4348 out
4349 @end example
4350
4351 @section ladspa
4352
4353 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4354
4355 To enable compilation of this filter you need to configure FFmpeg with
4356 @code{--enable-ladspa}.
4357
4358 @table @option
4359 @item file, f
4360 Specifies the name of LADSPA plugin library to load. If the environment
4361 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4362 each one of the directories specified by the colon separated list in
4363 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4364 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4365 @file{/usr/lib/ladspa/}.
4366
4367 @item plugin, p
4368 Specifies the plugin within the library. Some libraries contain only
4369 one plugin, but others contain many of them. If this is not set filter
4370 will list all available plugins within the specified library.
4371
4372 @item controls, c
4373 Set the '|' separated list of controls which are zero or more floating point
4374 values that determine the behavior of the loaded plugin (for example delay,
4375 threshold or gain).
4376 Controls need to be defined using the following syntax:
4377 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4378 @var{valuei} is the value set on the @var{i}-th control.
4379 Alternatively they can be also defined using the following syntax:
4380 @var{value0}|@var{value1}|@var{value2}|..., where
4381 @var{valuei} is the value set on the @var{i}-th control.
4382 If @option{controls} is set to @code{help}, all available controls and
4383 their valid ranges are printed.
4384
4385 @item sample_rate, s
4386 Specify the sample rate, default to 44100. Only used if plugin have
4387 zero inputs.
4388
4389 @item nb_samples, n
4390 Set the number of samples per channel per each output frame, default
4391 is 1024. Only used if plugin have zero inputs.
4392
4393 @item duration, d
4394 Set the minimum duration of the sourced audio. See
4395 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4396 for the accepted syntax.
4397 Note that the resulting duration may be greater than the specified duration,
4398 as the generated audio is always cut at the end of a complete frame.
4399 If not specified, or the expressed duration is negative, the audio is
4400 supposed to be generated forever.
4401 Only used if plugin have zero inputs.
4402
4403 @item latency, l
4404 Enable latency compensation, by default is disabled.
4405 Only used if plugin have inputs.
4406 @end table
4407
4408 @subsection Examples
4409
4410 @itemize
4411 @item
4412 List all available plugins within amp (LADSPA example plugin) library:
4413 @example
4414 ladspa=file=amp
4415 @end example
4416
4417 @item
4418 List all available controls and their valid ranges for @code{vcf_notch}
4419 plugin from @code{VCF} library:
4420 @example
4421 ladspa=f=vcf:p=vcf_notch:c=help
4422 @end example
4423
4424 @item
4425 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4426 plugin library:
4427 @example
4428 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4429 @end example
4430
4431 @item
4432 Add reverberation to the audio using TAP-plugins
4433 (Tom's Audio Processing plugins):
4434 @example
4435 ladspa=file=tap_reverb:tap_reverb
4436 @end example
4437
4438 @item
4439 Generate white noise, with 0.2 amplitude:
4440 @example
4441 ladspa=file=cmt:noise_source_white:c=c0=.2
4442 @end example
4443
4444 @item
4445 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4446 @code{C* Audio Plugin Suite} (CAPS) library:
4447 @example
4448 ladspa=file=caps:Click:c=c1=20'
4449 @end example
4450
4451 @item
4452 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4453 @example
4454 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4455 @end example
4456
4457 @item
4458 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4459 @code{SWH Plugins} collection:
4460 @example
4461 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4462 @end example
4463
4464 @item
4465 Attenuate low frequencies using Multiband EQ from Steve Harris
4466 @code{SWH Plugins} collection:
4467 @example
4468 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4469 @end example
4470
4471 @item
4472 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4473 (CAPS) library:
4474 @example
4475 ladspa=caps:Narrower
4476 @end example
4477
4478 @item
4479 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4480 @example
4481 ladspa=caps:White:.2
4482 @end example
4483
4484 @item
4485 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4486 @example
4487 ladspa=caps:Fractal:c=c1=1
4488 @end example
4489
4490 @item
4491 Dynamic volume normalization using @code{VLevel} plugin:
4492 @example
4493 ladspa=vlevel-ladspa:vlevel_mono
4494 @end example
4495 @end itemize
4496
4497 @subsection Commands
4498
4499 This filter supports the following commands:
4500 @table @option
4501 @item cN
4502 Modify the @var{N}-th control value.
4503
4504 If the specified value is not valid, it is ignored and prior one is kept.
4505 @end table
4506
4507 @section loudnorm
4508
4509 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4510 Support for both single pass (livestreams, files) and double pass (files) modes.
4511 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4512 detect true peaks, the audio stream will be upsampled to 192 kHz.
4513 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4514
4515 The filter accepts the following options:
4516
4517 @table @option
4518 @item I, i
4519 Set integrated loudness target.
4520 Range is -70.0 - -5.0. Default value is -24.0.
4521
4522 @item LRA, lra
4523 Set loudness range target.
4524 Range is 1.0 - 20.0. Default value is 7.0.
4525
4526 @item TP, tp
4527 Set maximum true peak.
4528 Range is -9.0 - +0.0. Default value is -2.0.
4529
4530 @item measured_I, measured_i
4531 Measured IL of input file.
4532 Range is -99.0 - +0.0.
4533
4534 @item measured_LRA, measured_lra
4535 Measured LRA of input file.
4536 Range is  0.0 - 99.0.
4537
4538 @item measured_TP, measured_tp
4539 Measured true peak of input file.
4540 Range is  -99.0 - +99.0.
4541
4542 @item measured_thresh
4543 Measured threshold of input file.
4544 Range is -99.0 - +0.0.
4545
4546 @item offset
4547 Set offset gain. Gain is applied before the true-peak limiter.
4548 Range is  -99.0 - +99.0. Default is +0.0.
4549
4550 @item linear
4551 Normalize by linearly scaling the source audio.
4552 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4553 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4554 be lower than source LRA and the change in integrated loudness shouldn't
4555 result in a true peak which exceeds the target TP. If any of these
4556 conditions aren't met, normalization mode will revert to @var{dynamic}.
4557 Options are @code{true} or @code{false}. Default is @code{true}.
4558
4559 @item dual_mono
4560 Treat mono input files as "dual-mono". If a mono file is intended for playback
4561 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4562 If set to @code{true}, this option will compensate for this effect.
4563 Multi-channel input files are not affected by this option.
4564 Options are true or false. Default is false.
4565
4566 @item print_format
4567 Set print format for stats. Options are summary, json, or none.
4568 Default value is none.
4569 @end table
4570
4571 @section lowpass
4572
4573 Apply a low-pass filter with 3dB point frequency.
4574 The filter can be either single-pole or double-pole (the default).
4575 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4576
4577 The filter accepts the following options:
4578
4579 @table @option
4580 @item frequency, f
4581 Set frequency in Hz. Default is 500.
4582
4583 @item poles, p
4584 Set number of poles. Default is 2.
4585
4586 @item width_type, t
4587 Set method to specify band-width of filter.
4588 @table @option
4589 @item h
4590 Hz
4591 @item q
4592 Q-Factor
4593 @item o
4594 octave
4595 @item s
4596 slope
4597 @item k
4598 kHz
4599 @end table
4600
4601 @item width, w
4602 Specify the band-width of a filter in width_type units.
4603 Applies only to double-pole filter.
4604 The default is 0.707q and gives a Butterworth response.
4605
4606 @item mix, m
4607 How much to use filtered signal in output. Default is 1.
4608 Range is between 0 and 1.
4609
4610 @item channels, c
4611 Specify which channels to filter, by default all available are filtered.
4612
4613 @item normalize, n
4614 Normalize biquad coefficients, by default is disabled.
4615 Enabling it will normalize magnitude response at DC to 0dB.
4616
4617 @item transform, a
4618 Set transform type of IIR filter.
4619 @table @option
4620 @item di
4621 @item dii
4622 @item tdii
4623 @item latt
4624 @end table
4625 @end table
4626
4627 @subsection Examples
4628 @itemize
4629 @item
4630 Lowpass only LFE channel, it LFE is not present it does nothing:
4631 @example
4632 lowpass=c=LFE
4633 @end example
4634 @end itemize
4635
4636 @subsection Commands
4637
4638 This filter supports the following commands:
4639 @table @option
4640 @item frequency, f
4641 Change lowpass frequency.
4642 Syntax for the command is : "@var{frequency}"
4643
4644 @item width_type, t
4645 Change lowpass width_type.
4646 Syntax for the command is : "@var{width_type}"
4647
4648 @item width, w
4649 Change lowpass width.
4650 Syntax for the command is : "@var{width}"
4651
4652 @item mix, m
4653 Change lowpass mix.
4654 Syntax for the command is : "@var{mix}"
4655 @end table
4656
4657 @section lv2
4658
4659 Load a LV2 (LADSPA Version 2) plugin.
4660
4661 To enable compilation of this filter you need to configure FFmpeg with
4662 @code{--enable-lv2}.
4663
4664 @table @option
4665 @item plugin, p
4666 Specifies the plugin URI. You may need to escape ':'.
4667
4668 @item controls, c
4669 Set the '|' separated list of controls which are zero or more floating point
4670 values that determine the behavior of the loaded plugin (for example delay,
4671 threshold or gain).
4672 If @option{controls} is set to @code{help}, all available controls and
4673 their valid ranges are printed.
4674
4675 @item sample_rate, s
4676 Specify the sample rate, default to 44100. Only used if plugin have
4677 zero inputs.
4678
4679 @item nb_samples, n
4680 Set the number of samples per channel per each output frame, default
4681 is 1024. Only used if plugin have zero inputs.
4682
4683 @item duration, d
4684 Set the minimum duration of the sourced audio. See
4685 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4686 for the accepted syntax.
4687 Note that the resulting duration may be greater than the specified duration,
4688 as the generated audio is always cut at the end of a complete frame.
4689 If not specified, or the expressed duration is negative, the audio is
4690 supposed to be generated forever.
4691 Only used if plugin have zero inputs.
4692 @end table
4693
4694 @subsection Examples
4695
4696 @itemize
4697 @item
4698 Apply bass enhancer plugin from Calf:
4699 @example
4700 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4701 @end example
4702
4703 @item
4704 Apply vinyl plugin from Calf:
4705 @example
4706 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4707 @end example
4708
4709 @item
4710 Apply bit crusher plugin from ArtyFX:
4711 @example
4712 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4713 @end example
4714 @end itemize
4715
4716 @section mcompand
4717 Multiband Compress or expand the audio's dynamic range.
4718
4719 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4720 This is akin to the crossover of a loudspeaker, and results in flat frequency
4721 response when absent compander action.
4722
4723 It accepts the following parameters:
4724
4725 @table @option
4726 @item args
4727 This option syntax is:
4728 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4729 For explanation of each item refer to compand filter documentation.
4730 @end table
4731
4732 @anchor{pan}
4733 @section pan
4734
4735 Mix channels with specific gain levels. The filter accepts the output
4736 channel layout followed by a set of channels definitions.
4737
4738 This filter is also designed to efficiently remap the channels of an audio
4739 stream.
4740
4741 The filter accepts parameters of the form:
4742 "@var{l}|@var{outdef}|@var{outdef}|..."
4743
4744 @table @option
4745 @item l
4746 output channel layout or number of channels
4747
4748 @item outdef
4749 output channel specification, of the form:
4750 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4751
4752 @item out_name
4753 output channel to define, either a channel name (FL, FR, etc.) or a channel
4754 number (c0, c1, etc.)
4755
4756 @item gain
4757 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4758
4759 @item in_name
4760 input channel to use, see out_name for details; it is not possible to mix
4761 named and numbered input channels
4762 @end table
4763
4764 If the `=' in a channel specification is replaced by `<', then the gains for
4765 that specification will be renormalized so that the total is 1, thus
4766 avoiding clipping noise.
4767
4768 @subsection Mixing examples
4769
4770 For example, if you want to down-mix from stereo to mono, but with a bigger
4771 factor for the left channel:
4772 @example
4773 pan=1c|c0=0.9*c0+0.1*c1
4774 @end example
4775
4776 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4777 7-channels surround:
4778 @example
4779 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4780 @end example
4781
4782 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4783 that should be preferred (see "-ac" option) unless you have very specific
4784 needs.
4785
4786 @subsection Remapping examples
4787
4788 The channel remapping will be effective if, and only if:
4789
4790 @itemize
4791 @item gain coefficients are zeroes or ones,
4792 @item only one input per channel output,
4793 @end itemize
4794
4795 If all these conditions are satisfied, the filter will notify the user ("Pure
4796 channel mapping detected"), and use an optimized and lossless method to do the
4797 remapping.
4798
4799 For example, if you have a 5.1 source and want a stereo audio stream by
4800 dropping the extra channels:
4801 @example
4802 pan="stereo| c0=FL | c1=FR"
4803 @end example
4804
4805 Given the same source, you can also switch front left and front right channels
4806 and keep the input channel layout:
4807 @example
4808 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4809 @end example
4810
4811 If the input is a stereo audio stream, you can mute the front left channel (and
4812 still keep the stereo channel layout) with:
4813 @example
4814 pan="stereo|c1=c1"
4815 @end example
4816
4817 Still with a stereo audio stream input, you can copy the right channel in both
4818 front left and right:
4819 @example
4820 pan="stereo| c0=FR | c1=FR"
4821 @end example
4822
4823 @section replaygain
4824
4825 ReplayGain scanner filter. This filter takes an audio stream as an input and
4826 outputs it unchanged.
4827 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4828
4829 @section resample
4830
4831 Convert the audio sample format, sample rate and channel layout. It is
4832 not meant to be used directly.
4833
4834 @section rubberband
4835 Apply time-stretching and pitch-shifting with librubberband.
4836
4837 To enable compilation of this filter, you need to configure FFmpeg with
4838 @code{--enable-librubberband}.
4839
4840 The filter accepts the following options:
4841
4842 @table @option
4843 @item tempo
4844 Set tempo scale factor.
4845
4846 @item pitch
4847 Set pitch scale factor.
4848
4849 @item transients
4850 Set transients detector.
4851 Possible values are:
4852 @table @var
4853 @item crisp
4854 @item mixed
4855 @item smooth
4856 @end table
4857
4858 @item detector
4859 Set detector.
4860 Possible values are:
4861 @table @var
4862 @item compound
4863 @item percussive
4864 @item soft
4865 @end table
4866
4867 @item phase
4868 Set phase.
4869 Possible values are:
4870 @table @var
4871 @item laminar
4872 @item independent
4873 @end table
4874
4875 @item window
4876 Set processing window size.
4877 Possible values are:
4878 @table @var
4879 @item standard
4880 @item short
4881 @item long
4882 @end table
4883
4884 @item smoothing
4885 Set smoothing.
4886 Possible values are:
4887 @table @var
4888 @item off
4889 @item on
4890 @end table
4891
4892 @item formant
4893 Enable formant preservation when shift pitching.
4894 Possible values are:
4895 @table @var
4896 @item shifted
4897 @item preserved
4898 @end table
4899
4900 @item pitchq
4901 Set pitch quality.
4902 Possible values are:
4903 @table @var
4904 @item quality
4905 @item speed
4906 @item consistency
4907 @end table
4908
4909 @item channels
4910 Set channels.
4911 Possible values are:
4912 @table @var
4913 @item apart
4914 @item together
4915 @end table
4916 @end table
4917
4918 @subsection Commands
4919
4920 This filter supports the following commands:
4921 @table @option
4922 @item tempo
4923 Change filter tempo scale factor.
4924 Syntax for the command is : "@var{tempo}"
4925
4926 @item pitch
4927 Change filter pitch scale factor.
4928 Syntax for the command is : "@var{pitch}"
4929 @end table
4930
4931 @section sidechaincompress
4932
4933 This filter acts like normal compressor but has the ability to compress
4934 detected signal using second input signal.
4935 It needs two input streams and returns one output stream.
4936 First input stream will be processed depending on second stream signal.
4937 The filtered signal then can be filtered with other filters in later stages of
4938 processing. See @ref{pan} and @ref{amerge} filter.
4939
4940 The filter accepts the following options:
4941
4942 @table @option
4943 @item level_in
4944 Set input gain. Default is 1. Range is between 0.015625 and 64.
4945
4946 @item mode
4947 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4948 Default is @code{downward}.
4949
4950 @item threshold
4951 If a signal of second stream raises above this level it will affect the gain
4952 reduction of first stream.
4953 By default is 0.125. Range is between 0.00097563 and 1.
4954
4955 @item ratio
4956 Set a ratio about which the signal is reduced. 1:2 means that if the level
4957 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4958 Default is 2. Range is between 1 and 20.
4959
4960 @item attack
4961 Amount of milliseconds the signal has to rise above the threshold before gain
4962 reduction starts. Default is 20. Range is between 0.01 and 2000.
4963
4964 @item release
4965 Amount of milliseconds the signal has to fall below the threshold before
4966 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4967
4968 @item makeup
4969 Set the amount by how much signal will be amplified after processing.
4970 Default is 1. Range is from 1 to 64.
4971
4972 @item knee
4973 Curve the sharp knee around the threshold to enter gain reduction more softly.
4974 Default is 2.82843. Range is between 1 and 8.
4975
4976 @item link
4977 Choose if the @code{average} level between all channels of side-chain stream
4978 or the louder(@code{maximum}) channel of side-chain stream affects the
4979 reduction. Default is @code{average}.
4980
4981 @item detection
4982 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4983 of @code{rms}. Default is @code{rms} which is mainly smoother.
4984
4985 @item level_sc
4986 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4987
4988 @item mix
4989 How much to use compressed signal in output. Default is 1.
4990 Range is between 0 and 1.
4991 @end table
4992
4993 @subsection Commands
4994
4995 This filter supports the all above options as @ref{commands}.
4996
4997 @subsection Examples
4998
4999 @itemize
5000 @item
5001 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
5002 depending on the signal of 2nd input and later compressed signal to be
5003 merged with 2nd input:
5004 @example
5005 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
5006 @end example
5007 @end itemize
5008
5009 @section sidechaingate
5010
5011 A sidechain gate acts like a normal (wideband) gate but has the ability to
5012 filter the detected signal before sending it to the gain reduction stage.
5013 Normally a gate uses the full range signal to detect a level above the
5014 threshold.
5015 For example: If you cut all lower frequencies from your sidechain signal
5016 the gate will decrease the volume of your track only if not enough highs
5017 appear. With this technique you are able to reduce the resonation of a
5018 natural drum or remove "rumbling" of muted strokes from a heavily distorted
5019 guitar.
5020 It needs two input streams and returns one output stream.
5021 First input stream will be processed depending on second stream signal.
5022
5023 The filter accepts the following options:
5024
5025 @table @option
5026 @item level_in
5027 Set input level before filtering.
5028 Default is 1. Allowed range is from 0.015625 to 64.
5029
5030 @item mode
5031 Set the mode of operation. Can be @code{upward} or @code{downward}.
5032 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
5033 will be amplified, expanding dynamic range in upward direction.
5034 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
5035
5036 @item range
5037 Set the level of gain reduction when the signal is below the threshold.
5038 Default is 0.06125. Allowed range is from 0 to 1.
5039 Setting this to 0 disables reduction and then filter behaves like expander.
5040
5041 @item threshold
5042 If a signal rises above this level the gain reduction is released.
5043 Default is 0.125. Allowed range is from 0 to 1.
5044
5045 @item ratio
5046 Set a ratio about which the signal is reduced.
5047 Default is 2. Allowed range is from 1 to 9000.
5048
5049 @item attack
5050 Amount of milliseconds the signal has to rise above the threshold before gain
5051 reduction stops.
5052 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
5053
5054 @item release
5055 Amount of milliseconds the signal has to fall below the threshold before the
5056 reduction is increased again. Default is 250 milliseconds.
5057 Allowed range is from 0.01 to 9000.
5058
5059 @item makeup
5060 Set amount of amplification of signal after processing.
5061 Default is 1. Allowed range is from 1 to 64.
5062
5063 @item knee
5064 Curve the sharp knee around the threshold to enter gain reduction more softly.
5065 Default is 2.828427125. Allowed range is from 1 to 8.
5066
5067 @item detection
5068 Choose if exact signal should be taken for detection or an RMS like one.
5069 Default is rms. Can be peak or rms.
5070
5071 @item link
5072 Choose if the average level between all channels or the louder channel affects
5073 the reduction.
5074 Default is average. Can be average or maximum.
5075
5076 @item level_sc
5077 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
5078 @end table
5079
5080 @section silencedetect
5081
5082 Detect silence in an audio stream.
5083
5084 This filter logs a message when it detects that the input audio volume is less
5085 or equal to a noise tolerance value for a duration greater or equal to the
5086 minimum detected noise duration.
5087
5088 The printed times and duration are expressed in seconds. The
5089 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
5090 is set on the first frame whose timestamp equals or exceeds the detection
5091 duration and it contains the timestamp of the first frame of the silence.
5092
5093 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
5094 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
5095 keys are set on the first frame after the silence. If @option{mono} is
5096 enabled, and each channel is evaluated separately, the @code{.X}
5097 suffixed keys are used, and @code{X} corresponds to the channel number.
5098
5099 The filter accepts the following options:
5100
5101 @table @option
5102 @item noise, n
5103 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
5104 specified value) or amplitude ratio. Default is -60dB, or 0.001.
5105
5106 @item duration, d
5107 Set silence duration until notification (default is 2 seconds). See
5108 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5109 for the accepted syntax.
5110
5111 @item mono, m
5112 Process each channel separately, instead of combined. By default is disabled.
5113 @end table
5114
5115 @subsection Examples
5116
5117 @itemize
5118 @item
5119 Detect 5 seconds of silence with -50dB noise tolerance:
5120 @example
5121 silencedetect=n=-50dB:d=5
5122 @end example
5123
5124 @item
5125 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
5126 tolerance in @file{silence.mp3}:
5127 @example
5128 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
5129 @end example
5130 @end itemize
5131
5132 @section silenceremove
5133
5134 Remove silence from the beginning, middle or end of the audio.
5135
5136 The filter accepts the following options:
5137
5138 @table @option
5139 @item start_periods
5140 This value is used to indicate if audio should be trimmed at beginning of
5141 the audio. A value of zero indicates no silence should be trimmed from the
5142 beginning. When specifying a non-zero value, it trims audio up until it
5143 finds non-silence. Normally, when trimming silence from beginning of audio
5144 the @var{start_periods} will be @code{1} but it can be increased to higher
5145 values to trim all audio up to specific count of non-silence periods.
5146 Default value is @code{0}.
5147
5148 @item start_duration
5149 Specify the amount of time that non-silence must be detected before it stops
5150 trimming audio. By increasing the duration, bursts of noises can be treated
5151 as silence and trimmed off. Default value is @code{0}.
5152
5153 @item start_threshold
5154 This indicates what sample value should be treated as silence. For digital
5155 audio, a value of @code{0} may be fine but for audio recorded from analog,
5156 you may wish to increase the value to account for background noise.
5157 Can be specified in dB (in case "dB" is appended to the specified value)
5158 or amplitude ratio. Default value is @code{0}.
5159
5160 @item start_silence
5161 Specify max duration of silence at beginning that will be kept after
5162 trimming. Default is 0, which is equal to trimming all samples detected
5163 as silence.
5164
5165 @item start_mode
5166 Specify mode of detection of silence end in start of multi-channel audio.
5167 Can be @var{any} or @var{all}. Default is @var{any}.
5168 With @var{any}, any sample that is detected as non-silence will cause
5169 stopped trimming of silence.
5170 With @var{all}, only if all channels are detected as non-silence will cause
5171 stopped trimming of silence.
5172
5173 @item stop_periods
5174 Set the count for trimming silence from the end of audio.
5175 To remove silence from the middle of a file, specify a @var{stop_periods}
5176 that is negative. This value is then treated as a positive value and is
5177 used to indicate the effect should restart processing as specified by
5178 @var{start_periods}, making it suitable for removing periods of silence
5179 in the middle of the audio.
5180 Default value is @code{0}.
5181
5182 @item stop_duration
5183 Specify a duration of silence that must exist before audio is not copied any
5184 more. By specifying a higher duration, silence that is wanted can be left in
5185 the audio.
5186 Default value is @code{0}.
5187
5188 @item stop_threshold
5189 This is the same as @option{start_threshold} but for trimming silence from
5190 the end of audio.
5191 Can be specified in dB (in case "dB" is appended to the specified value)
5192 or amplitude ratio. Default value is @code{0}.
5193
5194 @item stop_silence
5195 Specify max duration of silence at end that will be kept after
5196 trimming. Default is 0, which is equal to trimming all samples detected
5197 as silence.
5198
5199 @item stop_mode
5200 Specify mode of detection of silence start in end of multi-channel audio.
5201 Can be @var{any} or @var{all}. Default is @var{any}.
5202 With @var{any}, any sample that is detected as non-silence will cause
5203 stopped trimming of silence.
5204 With @var{all}, only if all channels are detected as non-silence will cause
5205 stopped trimming of silence.
5206
5207 @item detection
5208 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
5209 and works better with digital silence which is exactly 0.
5210 Default value is @code{rms}.
5211
5212 @item window
5213 Set duration in number of seconds used to calculate size of window in number
5214 of samples for detecting silence.
5215 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
5216 @end table
5217
5218 @subsection Examples
5219
5220 @itemize
5221 @item
5222 The following example shows how this filter can be used to start a recording
5223 that does not contain the delay at the start which usually occurs between
5224 pressing the record button and the start of the performance:
5225 @example
5226 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
5227 @end example
5228
5229 @item
5230 Trim all silence encountered from beginning to end where there is more than 1
5231 second of silence in audio:
5232 @example
5233 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
5234 @end example
5235
5236 @item
5237 Trim all digital silence samples, using peak detection, from beginning to end
5238 where there is more than 0 samples of digital silence in audio and digital
5239 silence is detected in all channels at same positions in stream:
5240 @example
5241 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
5242 @end example
5243 @end itemize
5244
5245 @section sofalizer
5246
5247 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
5248 loudspeakers around the user for binaural listening via headphones (audio
5249 formats up to 9 channels supported).
5250 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
5251 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
5252 Austrian Academy of Sciences.
5253
5254 To enable compilation of this filter you need to configure FFmpeg with
5255 @code{--enable-libmysofa}.
5256
5257 The filter accepts the following options:
5258
5259 @table @option
5260 @item sofa
5261 Set the SOFA file used for rendering.
5262
5263 @item gain
5264 Set gain applied to audio. Value is in dB. Default is 0.
5265
5266 @item rotation
5267 Set rotation of virtual loudspeakers in deg. Default is 0.
5268
5269 @item elevation
5270 Set elevation of virtual speakers in deg. Default is 0.
5271
5272 @item radius
5273 Set distance in meters between loudspeakers and the listener with near-field
5274 HRTFs. Default is 1.
5275
5276 @item type
5277 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
5278 processing audio in time domain which is slow.
5279 @var{freq} is processing audio in frequency domain which is fast.
5280 Default is @var{freq}.
5281
5282 @item speakers
5283 Set custom positions of virtual loudspeakers. Syntax for this option is:
5284 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5285 Each virtual loudspeaker is described with short channel name following with
5286 azimuth and elevation in degrees.
5287 Each virtual loudspeaker description is separated by '|'.
5288 For example to override front left and front right channel positions use:
5289 'speakers=FL 45 15|FR 345 15'.
5290 Descriptions with unrecognised channel names are ignored.
5291
5292 @item lfegain
5293 Set custom gain for LFE channels. Value is in dB. Default is 0.
5294
5295 @item framesize
5296 Set custom frame size in number of samples. Default is 1024.
5297 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5298 is set to @var{freq}.
5299
5300 @item normalize
5301 Should all IRs be normalized upon importing SOFA file.
5302 By default is enabled.
5303
5304 @item interpolate
5305 Should nearest IRs be interpolated with neighbor IRs if exact position
5306 does not match. By default is disabled.
5307
5308 @item minphase
5309 Minphase all IRs upon loading of SOFA file. By default is disabled.
5310
5311 @item anglestep
5312 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5313
5314 @item radstep
5315 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5316 @end table
5317
5318 @subsection Examples
5319
5320 @itemize
5321 @item
5322 Using ClubFritz6 sofa file:
5323 @example
5324 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5325 @end example
5326
5327 @item
5328 Using ClubFritz12 sofa file and bigger radius with small rotation:
5329 @example
5330 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5331 @end example
5332
5333 @item
5334 Similar as above but with custom speaker positions for front left, front right, back left and back right
5335 and also with custom gain:
5336 @example
5337 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5338 @end example
5339 @end itemize
5340
5341 @section speechnorm
5342 Speech Normalizer.
5343
5344 This filter expands or compresses each half-cycle of audio samples
5345 (local set of samples all above or all below zero and between two nearest zero crossings) depending
5346 on threshold value, so audio reaches target peak value under conditions controlled by below options.
5347
5348 The filter accepts the following options:
5349
5350 @table @option
5351 @item peak, p
5352 Set the expansion target peak value. This specifies the highest allowed absolute amplitude
5353 level for the normalized audio input. Default value is 0.95. Allowed range is from 0.0 to 1.0.
5354
5355 @item expansion, e
5356 Set the maximum expansion factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5357 This option controls maximum local half-cycle of samples expansion. The maximum expansion
5358 would be such that local peak value reaches target peak value but never to surpass it and that
5359 ratio between new and previous peak value does not surpass this option value.
5360
5361 @item compression, c
5362 Set the maximum compression factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5363 This option controls maximum local half-cycle of samples compression. This option is used
5364 only if @option{threshold} option is set to value greater than 0.0, then in such cases
5365 when local peak is lower or same as value set by @option{threshold} all samples belonging to
5366 that peak's half-cycle will be compressed by current compression factor.
5367
5368 @item threshold, t
5369 Set the threshold value. Default value is 0.0. Allowed range is from 0.0 to 1.0.
5370 This option specifies which half-cycles of samples will be compressed and which will be expanded.
5371 Any half-cycle samples with their local peak value below or same as this option value will be
5372 compressed by current compression factor, otherwise, if greater than threshold value they will be
5373 expanded with expansion factor so that it could reach peak target value but never surpass it.
5374
5375 @item raise, r
5376 Set the expansion raising amount per each half-cycle of samples. Default value is 0.001.
5377 Allowed range is from 0.0 to 1.0. This controls how fast expansion factor is raised per
5378 each new half-cycle until it reaches @option{expansion} value.
5379 Setting this options too high may lead to distortions.
5380
5381 @item fall, f
5382 Set the compression raising amount per each half-cycle of samples. Default value is 0.001.
5383 Allowed range is from 0.0 to 1.0. This controls how fast compression factor is raised per
5384 each new half-cycle until it reaches @option{compression} value.
5385
5386 @item channels, h
5387 Specify which channels to filter, by default all available channels are filtered.
5388
5389 @item invert, i
5390 Enable inverted filtering, by default is disabled. This inverts interpretation of @option{threshold}
5391 option. When enabled any half-cycle of samples with their local peak value below or same as
5392 @option{threshold} option will be expanded otherwise it will be compressed.
5393
5394 @item link, l
5395 Link channels when calculating gain applied to each filtered channel sample, by default is disabled.
5396 When disabled each filtered channel gain calculation is independent, otherwise when this option
5397 is enabled the minimum of all possible gains for each filtered channel is used.
5398 @end table
5399
5400 @subsection Commands
5401
5402 This filter supports the all above options as @ref{commands}.
5403
5404 @section stereotools
5405
5406 This filter has some handy utilities to manage stereo signals, for converting
5407 M/S stereo recordings to L/R signal while having control over the parameters
5408 or spreading the stereo image of master track.
5409
5410 The filter accepts the following options:
5411
5412 @table @option
5413 @item level_in
5414 Set input level before filtering for both channels. Defaults is 1.
5415 Allowed range is from 0.015625 to 64.
5416
5417 @item level_out
5418 Set output level after filtering for both channels. Defaults is 1.
5419 Allowed range is from 0.015625 to 64.
5420
5421 @item balance_in
5422 Set input balance between both channels. Default is 0.
5423 Allowed range is from -1 to 1.
5424
5425 @item balance_out
5426 Set output balance between both channels. Default is 0.
5427 Allowed range is from -1 to 1.
5428
5429 @item softclip
5430 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5431 clipping. Disabled by default.
5432
5433 @item mutel
5434 Mute the left channel. Disabled by default.
5435
5436 @item muter
5437 Mute the right channel. Disabled by default.
5438
5439 @item phasel
5440 Change the phase of the left channel. Disabled by default.
5441
5442 @item phaser
5443 Change the phase of the right channel. Disabled by default.
5444
5445 @item mode
5446 Set stereo mode. Available values are:
5447
5448 @table @samp
5449 @item lr>lr
5450 Left/Right to Left/Right, this is default.
5451
5452 @item lr>ms
5453 Left/Right to Mid/Side.
5454
5455 @item ms>lr
5456 Mid/Side to Left/Right.
5457
5458 @item lr>ll
5459 Left/Right to Left/Left.
5460
5461 @item lr>rr
5462 Left/Right to Right/Right.
5463
5464 @item lr>l+r
5465 Left/Right to Left + Right.
5466
5467 @item lr>rl
5468 Left/Right to Right/Left.
5469
5470 @item ms>ll
5471 Mid/Side to Left/Left.
5472
5473 @item ms>rr
5474 Mid/Side to Right/Right.
5475 @end table
5476
5477 @item slev
5478 Set level of side signal. Default is 1.
5479 Allowed range is from 0.015625 to 64.
5480
5481 @item sbal
5482 Set balance of side signal. Default is 0.
5483 Allowed range is from -1 to 1.
5484
5485 @item mlev
5486 Set level of the middle signal. Default is 1.
5487 Allowed range is from 0.015625 to 64.
5488
5489 @item mpan
5490 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5491
5492 @item base
5493 Set stereo base between mono and inversed channels. Default is 0.
5494 Allowed range is from -1 to 1.
5495
5496 @item delay
5497 Set delay in milliseconds how much to delay left from right channel and
5498 vice versa. Default is 0. Allowed range is from -20 to 20.
5499
5500 @item sclevel
5501 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5502
5503 @item phase
5504 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5505
5506 @item bmode_in, bmode_out
5507 Set balance mode for balance_in/balance_out option.
5508
5509 Can be one of the following:
5510
5511 @table @samp
5512 @item balance
5513 Classic balance mode. Attenuate one channel at time.
5514 Gain is raised up to 1.
5515
5516 @item amplitude
5517 Similar as classic mode above but gain is raised up to 2.
5518
5519 @item power
5520 Equal power distribution, from -6dB to +6dB range.
5521 @end table
5522 @end table
5523
5524 @subsection Examples
5525
5526 @itemize
5527 @item
5528 Apply karaoke like effect:
5529 @example
5530 stereotools=mlev=0.015625
5531 @end example
5532
5533 @item
5534 Convert M/S signal to L/R:
5535 @example
5536 "stereotools=mode=ms>lr"
5537 @end example
5538 @end itemize
5539
5540 @section stereowiden
5541
5542 This filter enhance the stereo effect by suppressing signal common to both
5543 channels and by delaying the signal of left into right and vice versa,
5544 thereby widening the stereo effect.
5545
5546 The filter accepts the following options:
5547
5548 @table @option
5549 @item delay
5550 Time in milliseconds of the delay of left signal into right and vice versa.
5551 Default is 20 milliseconds.
5552
5553 @item feedback
5554 Amount of gain in delayed signal into right and vice versa. Gives a delay
5555 effect of left signal in right output and vice versa which gives widening
5556 effect. Default is 0.3.
5557
5558 @item crossfeed
5559 Cross feed of left into right with inverted phase. This helps in suppressing
5560 the mono. If the value is 1 it will cancel all the signal common to both
5561 channels. Default is 0.3.
5562
5563 @item drymix
5564 Set level of input signal of original channel. Default is 0.8.
5565 @end table
5566
5567 @subsection Commands
5568
5569 This filter supports the all above options except @code{delay} as @ref{commands}.
5570
5571 @section superequalizer
5572 Apply 18 band equalizer.
5573
5574 The filter accepts the following options:
5575 @table @option
5576 @item 1b
5577 Set 65Hz band gain.
5578 @item 2b
5579 Set 92Hz band gain.
5580 @item 3b
5581 Set 131Hz band gain.
5582 @item 4b
5583 Set 185Hz band gain.
5584 @item 5b
5585 Set 262Hz band gain.
5586 @item 6b
5587 Set 370Hz band gain.
5588 @item 7b
5589 Set 523Hz band gain.
5590 @item 8b
5591 Set 740Hz band gain.
5592 @item 9b
5593 Set 1047Hz band gain.
5594 @item 10b
5595 Set 1480Hz band gain.
5596 @item 11b
5597 Set 2093Hz band gain.
5598 @item 12b
5599 Set 2960Hz band gain.
5600 @item 13b
5601 Set 4186Hz band gain.
5602 @item 14b
5603 Set 5920Hz band gain.
5604 @item 15b
5605 Set 8372Hz band gain.
5606 @item 16b
5607 Set 11840Hz band gain.
5608 @item 17b
5609 Set 16744Hz band gain.
5610 @item 18b
5611 Set 20000Hz band gain.
5612 @end table
5613
5614 @section surround
5615 Apply audio surround upmix filter.
5616
5617 This filter allows to produce multichannel output from audio stream.
5618
5619 The filter accepts the following options:
5620
5621 @table @option
5622 @item chl_out
5623 Set output channel layout. By default, this is @var{5.1}.
5624
5625 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5626 for the required syntax.
5627
5628 @item chl_in
5629 Set input channel layout. By default, this is @var{stereo}.
5630
5631 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5632 for the required syntax.
5633
5634 @item level_in
5635 Set input volume level. By default, this is @var{1}.
5636
5637 @item level_out
5638 Set output volume level. By default, this is @var{1}.
5639
5640 @item lfe
5641 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5642
5643 @item lfe_low
5644 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5645
5646 @item lfe_high
5647 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5648
5649 @item lfe_mode
5650 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5651 In @var{add} mode, LFE channel is created from input audio and added to output.
5652 In @var{sub} mode, LFE channel is created from input audio and added to output but
5653 also all non-LFE output channels are subtracted with output LFE channel.
5654
5655 @item angle
5656 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5657 Default is @var{90}.
5658
5659 @item fc_in
5660 Set front center input volume. By default, this is @var{1}.
5661
5662 @item fc_out
5663 Set front center output volume. By default, this is @var{1}.
5664
5665 @item fl_in
5666 Set front left input volume. By default, this is @var{1}.
5667
5668 @item fl_out
5669 Set front left output volume. By default, this is @var{1}.
5670
5671 @item fr_in
5672 Set front right input volume. By default, this is @var{1}.
5673
5674 @item fr_out
5675 Set front right output volume. By default, this is @var{1}.
5676
5677 @item sl_in
5678 Set side left input volume. By default, this is @var{1}.
5679
5680 @item sl_out
5681 Set side left output volume. By default, this is @var{1}.
5682
5683 @item sr_in
5684 Set side right input volume. By default, this is @var{1}.
5685
5686 @item sr_out
5687 Set side right output volume. By default, this is @var{1}.
5688
5689 @item bl_in
5690 Set back left input volume. By default, this is @var{1}.
5691
5692 @item bl_out
5693 Set back left output volume. By default, this is @var{1}.
5694
5695 @item br_in
5696 Set back right input volume. By default, this is @var{1}.
5697
5698 @item br_out
5699 Set back right output volume. By default, this is @var{1}.
5700
5701 @item bc_in
5702 Set back center input volume. By default, this is @var{1}.
5703
5704 @item bc_out
5705 Set back center output volume. By default, this is @var{1}.
5706
5707 @item lfe_in
5708 Set LFE input volume. By default, this is @var{1}.
5709
5710 @item lfe_out
5711 Set LFE output volume. By default, this is @var{1}.
5712
5713 @item allx
5714 Set spread usage of stereo image across X axis for all channels.
5715
5716 @item ally
5717 Set spread usage of stereo image across Y axis for all channels.
5718
5719 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5720 Set spread usage of stereo image across X axis for each channel.
5721
5722 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5723 Set spread usage of stereo image across Y axis for each channel.
5724
5725 @item win_size
5726 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5727
5728 @item win_func
5729 Set window function.
5730
5731 It accepts the following values:
5732 @table @samp
5733 @item rect
5734 @item bartlett
5735 @item hann, hanning
5736 @item hamming
5737 @item blackman
5738 @item welch
5739 @item flattop
5740 @item bharris
5741 @item bnuttall
5742 @item bhann
5743 @item sine
5744 @item nuttall
5745 @item lanczos
5746 @item gauss
5747 @item tukey
5748 @item dolph
5749 @item cauchy
5750 @item parzen
5751 @item poisson
5752 @item bohman
5753 @end table
5754 Default is @code{hann}.
5755
5756 @item overlap
5757 Set window overlap. If set to 1, the recommended overlap for selected
5758 window function will be picked. Default is @code{0.5}.
5759 @end table
5760
5761 @section treble, highshelf
5762
5763 Boost or cut treble (upper) frequencies of the audio using a two-pole
5764 shelving filter with a response similar to that of a standard
5765 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5766
5767 The filter accepts the following options:
5768
5769 @table @option
5770 @item gain, g
5771 Give the gain at whichever is the lower of ~22 kHz and the
5772 Nyquist frequency. Its useful range is about -20 (for a large cut)
5773 to +20 (for a large boost). Beware of clipping when using a positive gain.
5774
5775 @item frequency, f
5776 Set the filter's central frequency and so can be used
5777 to extend or reduce the frequency range to be boosted or cut.
5778 The default value is @code{3000} Hz.
5779
5780 @item width_type, t
5781 Set method to specify band-width of filter.
5782 @table @option
5783 @item h
5784 Hz
5785 @item q
5786 Q-Factor
5787 @item o
5788 octave
5789 @item s
5790 slope
5791 @item k
5792 kHz
5793 @end table
5794
5795 @item width, w
5796 Determine how steep is the filter's shelf transition.
5797
5798 @item mix, m
5799 How much to use filtered signal in output. Default is 1.
5800 Range is between 0 and 1.
5801
5802 @item channels, c
5803 Specify which channels to filter, by default all available are filtered.
5804
5805 @item normalize, n
5806 Normalize biquad coefficients, by default is disabled.
5807 Enabling it will normalize magnitude response at DC to 0dB.
5808
5809 @item transform, a
5810 Set transform type of IIR filter.
5811 @table @option
5812 @item di
5813 @item dii
5814 @item tdii
5815 @item latt
5816 @end table
5817 @end table
5818
5819 @subsection Commands
5820
5821 This filter supports the following commands:
5822 @table @option
5823 @item frequency, f
5824 Change treble frequency.
5825 Syntax for the command is : "@var{frequency}"
5826
5827 @item width_type, t
5828 Change treble width_type.
5829 Syntax for the command is : "@var{width_type}"
5830
5831 @item width, w
5832 Change treble width.
5833 Syntax for the command is : "@var{width}"
5834
5835 @item gain, g
5836 Change treble gain.
5837 Syntax for the command is : "@var{gain}"
5838
5839 @item mix, m
5840 Change treble mix.
5841 Syntax for the command is : "@var{mix}"
5842 @end table
5843
5844 @section tremolo
5845
5846 Sinusoidal amplitude modulation.
5847
5848 The filter accepts the following options:
5849
5850 @table @option
5851 @item f
5852 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5853 (20 Hz or lower) will result in a tremolo effect.
5854 This filter may also be used as a ring modulator by specifying
5855 a modulation frequency higher than 20 Hz.
5856 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5857
5858 @item d
5859 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5860 Default value is 0.5.
5861 @end table
5862
5863 @section vibrato
5864
5865 Sinusoidal phase modulation.
5866
5867 The filter accepts the following options:
5868
5869 @table @option
5870 @item f
5871 Modulation frequency in Hertz.
5872 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5873
5874 @item d
5875 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5876 Default value is 0.5.
5877 @end table
5878
5879 @section volume
5880
5881 Adjust the input audio volume.
5882
5883 It accepts the following parameters:
5884 @table @option
5885
5886 @item volume
5887 Set audio volume expression.
5888
5889 Output values are clipped to the maximum value.
5890
5891 The output audio volume is given by the relation:
5892 @example
5893 @var{output_volume} = @var{volume} * @var{input_volume}
5894 @end example
5895
5896 The default value for @var{volume} is "1.0".
5897
5898 @item precision
5899 This parameter represents the mathematical precision.
5900
5901 It determines which input sample formats will be allowed, which affects the
5902 precision of the volume scaling.
5903
5904 @table @option
5905 @item fixed
5906 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5907 @item float
5908 32-bit floating-point; this limits input sample format to FLT. (default)
5909 @item double
5910 64-bit floating-point; this limits input sample format to DBL.
5911 @end table
5912
5913 @item replaygain
5914 Choose the behaviour on encountering ReplayGain side data in input frames.
5915
5916 @table @option
5917 @item drop
5918 Remove ReplayGain side data, ignoring its contents (the default).
5919
5920 @item ignore
5921 Ignore ReplayGain side data, but leave it in the frame.
5922
5923 @item track
5924 Prefer the track gain, if present.
5925
5926 @item album
5927 Prefer the album gain, if present.
5928 @end table
5929
5930 @item replaygain_preamp
5931 Pre-amplification gain in dB to apply to the selected replaygain gain.
5932
5933 Default value for @var{replaygain_preamp} is 0.0.
5934
5935 @item replaygain_noclip
5936 Prevent clipping by limiting the gain applied.
5937
5938 Default value for @var{replaygain_noclip} is 1.
5939
5940 @item eval
5941 Set when the volume expression is evaluated.
5942
5943 It accepts the following values:
5944 @table @samp
5945 @item once
5946 only evaluate expression once during the filter initialization, or
5947 when the @samp{volume} command is sent
5948
5949 @item frame
5950 evaluate expression for each incoming frame
5951 @end table
5952
5953 Default value is @samp{once}.
5954 @end table
5955
5956 The volume expression can contain the following parameters.
5957
5958 @table @option
5959 @item n
5960 frame number (starting at zero)
5961 @item nb_channels
5962 number of channels
5963 @item nb_consumed_samples
5964 number of samples consumed by the filter
5965 @item nb_samples
5966 number of samples in the current frame
5967 @item pos
5968 original frame position in the file
5969 @item pts
5970 frame PTS
5971 @item sample_rate
5972 sample rate
5973 @item startpts
5974 PTS at start of stream
5975 @item startt
5976 time at start of stream
5977 @item t
5978 frame time
5979 @item tb
5980 timestamp timebase
5981 @item volume
5982 last set volume value
5983 @end table
5984
5985 Note that when @option{eval} is set to @samp{once} only the
5986 @var{sample_rate} and @var{tb} variables are available, all other
5987 variables will evaluate to NAN.
5988
5989 @subsection Commands
5990
5991 This filter supports the following commands:
5992 @table @option
5993 @item volume
5994 Modify the volume expression.
5995 The command accepts the same syntax of the corresponding option.
5996
5997 If the specified expression is not valid, it is kept at its current
5998 value.
5999 @end table
6000
6001 @subsection Examples
6002
6003 @itemize
6004 @item
6005 Halve the input audio volume:
6006 @example
6007 volume=volume=0.5
6008 volume=volume=1/2
6009 volume=volume=-6.0206dB
6010 @end example
6011
6012 In all the above example the named key for @option{volume} can be
6013 omitted, for example like in:
6014 @example
6015 volume=0.5
6016 @end example
6017
6018 @item
6019 Increase input audio power by 6 decibels using fixed-point precision:
6020 @example
6021 volume=volume=6dB:precision=fixed
6022 @end example
6023
6024 @item
6025 Fade volume after time 10 with an annihilation period of 5 seconds:
6026 @example
6027 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
6028 @end example
6029 @end itemize
6030
6031 @section volumedetect
6032
6033 Detect the volume of the input video.
6034
6035 The filter has no parameters. The input is not modified. Statistics about
6036 the volume will be printed in the log when the input stream end is reached.
6037
6038 In particular it will show the mean volume (root mean square), maximum
6039 volume (on a per-sample basis), and the beginning of a histogram of the
6040 registered volume values (from the maximum value to a cumulated 1/1000 of
6041 the samples).
6042
6043 All volumes are in decibels relative to the maximum PCM value.
6044
6045 @subsection Examples
6046
6047 Here is an excerpt of the output:
6048 @example
6049 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
6050 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
6051 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
6052 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
6053 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
6054 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
6055 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
6056 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
6057 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
6058 @end example
6059
6060 It means that:
6061 @itemize
6062 @item
6063 The mean square energy is approximately -27 dB, or 10^-2.7.
6064 @item
6065 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
6066 @item
6067 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
6068 @end itemize
6069
6070 In other words, raising the volume by +4 dB does not cause any clipping,
6071 raising it by +5 dB causes clipping for 6 samples, etc.
6072
6073 @c man end AUDIO FILTERS
6074
6075 @chapter Audio Sources
6076 @c man begin AUDIO SOURCES
6077
6078 Below is a description of the currently available audio sources.
6079
6080 @section abuffer
6081
6082 Buffer audio frames, and make them available to the filter chain.
6083
6084 This source is mainly intended for a programmatic use, in particular
6085 through the interface defined in @file{libavfilter/buffersrc.h}.
6086
6087 It accepts the following parameters:
6088 @table @option
6089
6090 @item time_base
6091 The timebase which will be used for timestamps of submitted frames. It must be
6092 either a floating-point number or in @var{numerator}/@var{denominator} form.
6093
6094 @item sample_rate
6095 The sample rate of the incoming audio buffers.
6096
6097 @item sample_fmt
6098 The sample format of the incoming audio buffers.
6099 Either a sample format name or its corresponding integer representation from
6100 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
6101
6102 @item channel_layout
6103 The channel layout of the incoming audio buffers.
6104 Either a channel layout name from channel_layout_map in
6105 @file{libavutil/channel_layout.c} or its corresponding integer representation
6106 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
6107
6108 @item channels
6109 The number of channels of the incoming audio buffers.
6110 If both @var{channels} and @var{channel_layout} are specified, then they
6111 must be consistent.
6112
6113 @end table
6114
6115 @subsection Examples
6116
6117 @example
6118 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
6119 @end example
6120
6121 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
6122 Since the sample format with name "s16p" corresponds to the number
6123 6 and the "stereo" channel layout corresponds to the value 0x3, this is
6124 equivalent to:
6125 @example
6126 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
6127 @end example
6128
6129 @section aevalsrc
6130
6131 Generate an audio signal specified by an expression.
6132
6133 This source accepts in input one or more expressions (one for each
6134 channel), which are evaluated and used to generate a corresponding
6135 audio signal.
6136
6137 This source accepts the following options:
6138
6139 @table @option
6140 @item exprs
6141 Set the '|'-separated expressions list for each separate channel. In case the
6142 @option{channel_layout} option is not specified, the selected channel layout
6143 depends on the number of provided expressions. Otherwise the last
6144 specified expression is applied to the remaining output channels.
6145
6146 @item channel_layout, c
6147 Set the channel layout. The number of channels in the specified layout
6148 must be equal to the number of specified expressions.
6149
6150 @item duration, d
6151 Set the minimum duration of the sourced audio. See
6152 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6153 for the accepted syntax.
6154 Note that the resulting duration may be greater than the specified
6155 duration, as the generated audio is always cut at the end of a
6156 complete frame.
6157
6158 If not specified, or the expressed duration is negative, the audio is
6159 supposed to be generated forever.
6160
6161 @item nb_samples, n
6162 Set the number of samples per channel per each output frame,
6163 default to 1024.
6164
6165 @item sample_rate, s
6166 Specify the sample rate, default to 44100.
6167 @end table
6168
6169 Each expression in @var{exprs} can contain the following constants:
6170
6171 @table @option
6172 @item n
6173 number of the evaluated sample, starting from 0
6174
6175 @item t
6176 time of the evaluated sample expressed in seconds, starting from 0
6177
6178 @item s
6179 sample rate
6180
6181 @end table
6182
6183 @subsection Examples
6184
6185 @itemize
6186 @item
6187 Generate silence:
6188 @example
6189 aevalsrc=0
6190 @end example
6191
6192 @item
6193 Generate a sin signal with frequency of 440 Hz, set sample rate to
6194 8000 Hz:
6195 @example
6196 aevalsrc="sin(440*2*PI*t):s=8000"
6197 @end example
6198
6199 @item
6200 Generate a two channels signal, specify the channel layout (Front
6201 Center + Back Center) explicitly:
6202 @example
6203 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
6204 @end example
6205
6206 @item
6207 Generate white noise:
6208 @example
6209 aevalsrc="-2+random(0)"
6210 @end example
6211
6212 @item
6213 Generate an amplitude modulated signal:
6214 @example
6215 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
6216 @end example
6217
6218 @item
6219 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
6220 @example
6221 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
6222 @end example
6223
6224 @end itemize
6225
6226 @section afirsrc
6227
6228 Generate a FIR coefficients using frequency sampling method.
6229
6230 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6231
6232 The filter accepts the following options:
6233
6234 @table @option
6235 @item taps, t
6236 Set number of filter coefficents in output audio stream.
6237 Default value is 1025.
6238
6239 @item frequency, f
6240 Set frequency points from where magnitude and phase are set.
6241 This must be in non decreasing order, and first element must be 0, while last element
6242 must be 1. Elements are separated by white spaces.
6243
6244 @item magnitude, m
6245 Set magnitude value for every frequency point set by @option{frequency}.
6246 Number of values must be same as number of frequency points.
6247 Values are separated by white spaces.
6248
6249 @item phase, p
6250 Set phase value for every frequency point set by @option{frequency}.
6251 Number of values must be same as number of frequency points.
6252 Values are separated by white spaces.
6253
6254 @item sample_rate, r
6255 Set sample rate, default is 44100.
6256
6257 @item nb_samples, n
6258 Set number of samples per each frame. Default is 1024.
6259
6260 @item win_func, w
6261 Set window function. Default is blackman.
6262 @end table
6263
6264 @section anullsrc
6265
6266 The null audio source, return unprocessed audio frames. It is mainly useful
6267 as a template and to be employed in analysis / debugging tools, or as
6268 the source for filters which ignore the input data (for example the sox
6269 synth filter).
6270
6271 This source accepts the following options:
6272
6273 @table @option
6274
6275 @item channel_layout, cl
6276
6277 Specifies the channel layout, and can be either an integer or a string
6278 representing a channel layout. The default value of @var{channel_layout}
6279 is "stereo".
6280
6281 Check the channel_layout_map definition in
6282 @file{libavutil/channel_layout.c} for the mapping between strings and
6283 channel layout values.
6284
6285 @item sample_rate, r
6286 Specifies the sample rate, and defaults to 44100.
6287
6288 @item nb_samples, n
6289 Set the number of samples per requested frames.
6290
6291 @item duration, d
6292 Set the duration of the sourced audio. See
6293 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6294 for the accepted syntax.
6295
6296 If not specified, or the expressed duration is negative, the audio is
6297 supposed to be generated forever.
6298 @end table
6299
6300 @subsection Examples
6301
6302 @itemize
6303 @item
6304 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
6305 @example
6306 anullsrc=r=48000:cl=4
6307 @end example
6308
6309 @item
6310 Do the same operation with a more obvious syntax:
6311 @example
6312 anullsrc=r=48000:cl=mono
6313 @end example
6314 @end itemize
6315
6316 All the parameters need to be explicitly defined.
6317
6318 @section flite
6319
6320 Synthesize a voice utterance using the libflite library.
6321
6322 To enable compilation of this filter you need to configure FFmpeg with
6323 @code{--enable-libflite}.
6324
6325 Note that versions of the flite library prior to 2.0 are not thread-safe.
6326
6327 The filter accepts the following options:
6328
6329 @table @option
6330
6331 @item list_voices
6332 If set to 1, list the names of the available voices and exit
6333 immediately. Default value is 0.
6334
6335 @item nb_samples, n
6336 Set the maximum number of samples per frame. Default value is 512.
6337
6338 @item textfile
6339 Set the filename containing the text to speak.
6340
6341 @item text
6342 Set the text to speak.
6343
6344 @item voice, v
6345 Set the voice to use for the speech synthesis. Default value is
6346 @code{kal}. See also the @var{list_voices} option.
6347 @end table
6348
6349 @subsection Examples
6350
6351 @itemize
6352 @item
6353 Read from file @file{speech.txt}, and synthesize the text using the
6354 standard flite voice:
6355 @example
6356 flite=textfile=speech.txt
6357 @end example
6358
6359 @item
6360 Read the specified text selecting the @code{slt} voice:
6361 @example
6362 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6363 @end example
6364
6365 @item
6366 Input text to ffmpeg:
6367 @example
6368 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6369 @end example
6370
6371 @item
6372 Make @file{ffplay} speak the specified text, using @code{flite} and
6373 the @code{lavfi} device:
6374 @example
6375 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6376 @end example
6377 @end itemize
6378
6379 For more information about libflite, check:
6380 @url{http://www.festvox.org/flite/}
6381
6382 @section anoisesrc
6383
6384 Generate a noise audio signal.
6385
6386 The filter accepts the following options:
6387
6388 @table @option
6389 @item sample_rate, r
6390 Specify the sample rate. Default value is 48000 Hz.
6391
6392 @item amplitude, a
6393 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6394 is 1.0.
6395
6396 @item duration, d
6397 Specify the duration of the generated audio stream. Not specifying this option
6398 results in noise with an infinite length.
6399
6400 @item color, colour, c
6401 Specify the color of noise. Available noise colors are white, pink, brown,
6402 blue, violet and velvet. Default color is white.
6403
6404 @item seed, s
6405 Specify a value used to seed the PRNG.
6406
6407 @item nb_samples, n
6408 Set the number of samples per each output frame, default is 1024.
6409 @end table
6410
6411 @subsection Examples
6412
6413 @itemize
6414
6415 @item
6416 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6417 @example
6418 anoisesrc=d=60:c=pink:r=44100:a=0.5
6419 @end example
6420 @end itemize
6421
6422 @section hilbert
6423
6424 Generate odd-tap Hilbert transform FIR coefficients.
6425
6426 The resulting stream can be used with @ref{afir} filter for phase-shifting
6427 the signal by 90 degrees.
6428
6429 This is used in many matrix coding schemes and for analytic signal generation.
6430 The process is often written as a multiplication by i (or j), the imaginary unit.
6431
6432 The filter accepts the following options:
6433
6434 @table @option
6435
6436 @item sample_rate, s
6437 Set sample rate, default is 44100.
6438
6439 @item taps, t
6440 Set length of FIR filter, default is 22051.
6441
6442 @item nb_samples, n
6443 Set number of samples per each frame.
6444
6445 @item win_func, w
6446 Set window function to be used when generating FIR coefficients.
6447 @end table
6448
6449 @section sinc
6450
6451 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6452
6453 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6454
6455 The filter accepts the following options:
6456
6457 @table @option
6458 @item sample_rate, r
6459 Set sample rate, default is 44100.
6460
6461 @item nb_samples, n
6462 Set number of samples per each frame. Default is 1024.
6463
6464 @item hp
6465 Set high-pass frequency. Default is 0.
6466
6467 @item lp
6468 Set low-pass frequency. Default is 0.
6469 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6470 is higher than 0 then filter will create band-pass filter coefficients,
6471 otherwise band-reject filter coefficients.
6472
6473 @item phase
6474 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6475
6476 @item beta
6477 Set Kaiser window beta.
6478
6479 @item att
6480 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6481
6482 @item round
6483 Enable rounding, by default is disabled.
6484
6485 @item hptaps
6486 Set number of taps for high-pass filter.
6487
6488 @item lptaps
6489 Set number of taps for low-pass filter.
6490 @end table
6491
6492 @section sine
6493
6494 Generate an audio signal made of a sine wave with amplitude 1/8.
6495
6496 The audio signal is bit-exact.
6497
6498 The filter accepts the following options:
6499
6500 @table @option
6501
6502 @item frequency, f
6503 Set the carrier frequency. Default is 440 Hz.
6504
6505 @item beep_factor, b
6506 Enable a periodic beep every second with frequency @var{beep_factor} times
6507 the carrier frequency. Default is 0, meaning the beep is disabled.
6508
6509 @item sample_rate, r
6510 Specify the sample rate, default is 44100.
6511
6512 @item duration, d
6513 Specify the duration of the generated audio stream.
6514
6515 @item samples_per_frame
6516 Set the number of samples per output frame.
6517
6518 The expression can contain the following constants:
6519
6520 @table @option
6521 @item n
6522 The (sequential) number of the output audio frame, starting from 0.
6523
6524 @item pts
6525 The PTS (Presentation TimeStamp) of the output audio frame,
6526 expressed in @var{TB} units.
6527
6528 @item t
6529 The PTS of the output audio frame, expressed in seconds.
6530
6531 @item TB
6532 The timebase of the output audio frames.
6533 @end table
6534
6535 Default is @code{1024}.
6536 @end table
6537
6538 @subsection Examples
6539
6540 @itemize
6541
6542 @item
6543 Generate a simple 440 Hz sine wave:
6544 @example
6545 sine
6546 @end example
6547
6548 @item
6549 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6550 @example
6551 sine=220:4:d=5
6552 sine=f=220:b=4:d=5
6553 sine=frequency=220:beep_factor=4:duration=5
6554 @end example
6555
6556 @item
6557 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6558 pattern:
6559 @example
6560 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6561 @end example
6562 @end itemize
6563
6564 @c man end AUDIO SOURCES
6565
6566 @chapter Audio Sinks
6567 @c man begin AUDIO SINKS
6568
6569 Below is a description of the currently available audio sinks.
6570
6571 @section abuffersink
6572
6573 Buffer audio frames, and make them available to the end of filter chain.
6574
6575 This sink is mainly intended for programmatic use, in particular
6576 through the interface defined in @file{libavfilter/buffersink.h}
6577 or the options system.
6578
6579 It accepts a pointer to an AVABufferSinkContext structure, which
6580 defines the incoming buffers' formats, to be passed as the opaque
6581 parameter to @code{avfilter_init_filter} for initialization.
6582 @section anullsink
6583
6584 Null audio sink; do absolutely nothing with the input audio. It is
6585 mainly useful as a template and for use in analysis / debugging
6586 tools.
6587
6588 @c man end AUDIO SINKS
6589
6590 @chapter Video Filters
6591 @c man begin VIDEO FILTERS
6592
6593 When you configure your FFmpeg build, you can disable any of the
6594 existing filters using @code{--disable-filters}.
6595 The configure output will show the video filters included in your
6596 build.
6597
6598 Below is a description of the currently available video filters.
6599
6600 @section addroi
6601
6602 Mark a region of interest in a video frame.
6603
6604 The frame data is passed through unchanged, but metadata is attached
6605 to the frame indicating regions of interest which can affect the
6606 behaviour of later encoding.  Multiple regions can be marked by
6607 applying the filter multiple times.
6608
6609 @table @option
6610 @item x
6611 Region distance in pixels from the left edge of the frame.
6612 @item y
6613 Region distance in pixels from the top edge of the frame.
6614 @item w
6615 Region width in pixels.
6616 @item h
6617 Region height in pixels.
6618
6619 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6620 and may contain the following variables:
6621 @table @option
6622 @item iw
6623 Width of the input frame.
6624 @item ih
6625 Height of the input frame.
6626 @end table
6627
6628 @item qoffset
6629 Quantisation offset to apply within the region.
6630
6631 This must be a real value in the range -1 to +1.  A value of zero
6632 indicates no quality change.  A negative value asks for better quality
6633 (less quantisation), while a positive value asks for worse quality
6634 (greater quantisation).
6635
6636 The range is calibrated so that the extreme values indicate the
6637 largest possible offset - if the rest of the frame is encoded with the
6638 worst possible quality, an offset of -1 indicates that this region
6639 should be encoded with the best possible quality anyway.  Intermediate
6640 values are then interpolated in some codec-dependent way.
6641
6642 For example, in 10-bit H.264 the quantisation parameter varies between
6643 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6644 this region should be encoded with a QP around one-tenth of the full
6645 range better than the rest of the frame.  So, if most of the frame
6646 were to be encoded with a QP of around 30, this region would get a QP
6647 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6648 An extreme value of -1 would indicate that this region should be
6649 encoded with the best possible quality regardless of the treatment of
6650 the rest of the frame - that is, should be encoded at a QP of -12.
6651 @item clear
6652 If set to true, remove any existing regions of interest marked on the
6653 frame before adding the new one.
6654 @end table
6655
6656 @subsection Examples
6657
6658 @itemize
6659 @item
6660 Mark the centre quarter of the frame as interesting.
6661 @example
6662 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6663 @end example
6664 @item
6665 Mark the 100-pixel-wide region on the left edge of the frame as very
6666 uninteresting (to be encoded at much lower quality than the rest of
6667 the frame).
6668 @example
6669 addroi=0:0:100:ih:+1/5
6670 @end example
6671 @end itemize
6672
6673 @section alphaextract
6674
6675 Extract the alpha component from the input as a grayscale video. This
6676 is especially useful with the @var{alphamerge} filter.
6677
6678 @section alphamerge
6679
6680 Add or replace the alpha component of the primary input with the
6681 grayscale value of a second input. This is intended for use with
6682 @var{alphaextract} to allow the transmission or storage of frame
6683 sequences that have alpha in a format that doesn't support an alpha
6684 channel.
6685
6686 For example, to reconstruct full frames from a normal YUV-encoded video
6687 and a separate video created with @var{alphaextract}, you might use:
6688 @example
6689 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6690 @end example
6691
6692 @section amplify
6693
6694 Amplify differences between current pixel and pixels of adjacent frames in
6695 same pixel location.
6696
6697 This filter accepts the following options:
6698
6699 @table @option
6700 @item radius
6701 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6702 For example radius of 3 will instruct filter to calculate average of 7 frames.
6703
6704 @item factor
6705 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6706
6707 @item threshold
6708 Set threshold for difference amplification. Any difference greater or equal to
6709 this value will not alter source pixel. Default is 10.
6710 Allowed range is from 0 to 65535.
6711
6712 @item tolerance
6713 Set tolerance for difference amplification. Any difference lower to
6714 this value will not alter source pixel. Default is 0.
6715 Allowed range is from 0 to 65535.
6716
6717 @item low
6718 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6719 This option controls maximum possible value that will decrease source pixel value.
6720
6721 @item high
6722 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6723 This option controls maximum possible value that will increase source pixel value.
6724
6725 @item planes
6726 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6727 @end table
6728
6729 @subsection Commands
6730
6731 This filter supports the following @ref{commands} that corresponds to option of same name:
6732 @table @option
6733 @item factor
6734 @item threshold
6735 @item tolerance
6736 @item low
6737 @item high
6738 @item planes
6739 @end table
6740
6741 @section ass
6742
6743 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6744 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6745 Substation Alpha) subtitles files.
6746
6747 This filter accepts the following option in addition to the common options from
6748 the @ref{subtitles} filter:
6749
6750 @table @option
6751 @item shaping
6752 Set the shaping engine
6753
6754 Available values are:
6755 @table @samp
6756 @item auto
6757 The default libass shaping engine, which is the best available.
6758 @item simple
6759 Fast, font-agnostic shaper that can do only substitutions
6760 @item complex
6761 Slower shaper using OpenType for substitutions and positioning
6762 @end table
6763
6764 The default is @code{auto}.
6765 @end table
6766
6767 @section atadenoise
6768 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6769
6770 The filter accepts the following options:
6771
6772 @table @option
6773 @item 0a
6774 Set threshold A for 1st plane. Default is 0.02.
6775 Valid range is 0 to 0.3.
6776
6777 @item 0b
6778 Set threshold B for 1st plane. Default is 0.04.
6779 Valid range is 0 to 5.
6780
6781 @item 1a
6782 Set threshold A for 2nd plane. Default is 0.02.
6783 Valid range is 0 to 0.3.
6784
6785 @item 1b
6786 Set threshold B for 2nd plane. Default is 0.04.
6787 Valid range is 0 to 5.
6788
6789 @item 2a
6790 Set threshold A for 3rd plane. Default is 0.02.
6791 Valid range is 0 to 0.3.
6792
6793 @item 2b
6794 Set threshold B for 3rd plane. Default is 0.04.
6795 Valid range is 0 to 5.
6796
6797 Threshold A is designed to react on abrupt changes in the input signal and
6798 threshold B is designed to react on continuous changes in the input signal.
6799
6800 @item s
6801 Set number of frames filter will use for averaging. Default is 9. Must be odd
6802 number in range [5, 129].
6803
6804 @item p
6805 Set what planes of frame filter will use for averaging. Default is all.
6806
6807 @item a
6808 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
6809 Alternatively can be set to @code{s} serial.
6810
6811 Parallel can be faster then serial, while other way around is never true.
6812 Parallel will abort early on first change being greater then thresholds, while serial
6813 will continue processing other side of frames if they are equal or below thresholds.
6814 @end table
6815
6816 @subsection Commands
6817 This filter supports same @ref{commands} as options except option @code{s}.
6818 The command accepts the same syntax of the corresponding option.
6819
6820 @section avgblur
6821
6822 Apply average blur filter.
6823
6824 The filter accepts the following options:
6825
6826 @table @option
6827 @item sizeX
6828 Set horizontal radius size.
6829
6830 @item planes
6831 Set which planes to filter. By default all planes are filtered.
6832
6833 @item sizeY
6834 Set vertical radius size, if zero it will be same as @code{sizeX}.
6835 Default is @code{0}.
6836 @end table
6837
6838 @subsection Commands
6839 This filter supports same commands as options.
6840 The command accepts the same syntax of the corresponding option.
6841
6842 If the specified expression is not valid, it is kept at its current
6843 value.
6844
6845 @section bbox
6846
6847 Compute the bounding box for the non-black pixels in the input frame
6848 luminance plane.
6849
6850 This filter computes the bounding box containing all the pixels with a
6851 luminance value greater than the minimum allowed value.
6852 The parameters describing the bounding box are printed on the filter
6853 log.
6854
6855 The filter accepts the following option:
6856
6857 @table @option
6858 @item min_val
6859 Set the minimal luminance value. Default is @code{16}.
6860 @end table
6861
6862 @section bilateral
6863 Apply bilateral filter, spatial smoothing while preserving edges.
6864
6865 The filter accepts the following options:
6866 @table @option
6867 @item sigmaS
6868 Set sigma of gaussian function to calculate spatial weight.
6869 Allowed range is 0 to 512. Default is 0.1.
6870
6871 @item sigmaR
6872 Set sigma of gaussian function to calculate range weight.
6873 Allowed range is 0 to 1. Default is 0.1.
6874
6875 @item planes
6876 Set planes to filter. Default is first only.
6877 @end table
6878
6879 @section bitplanenoise
6880
6881 Show and measure bit plane noise.
6882
6883 The filter accepts the following options:
6884
6885 @table @option
6886 @item bitplane
6887 Set which plane to analyze. Default is @code{1}.
6888
6889 @item filter
6890 Filter out noisy pixels from @code{bitplane} set above.
6891 Default is disabled.
6892 @end table
6893
6894 @section blackdetect
6895
6896 Detect video intervals that are (almost) completely black. Can be
6897 useful to detect chapter transitions, commercials, or invalid
6898 recordings.
6899
6900 The filter outputs its detection analysis to both the log as well as
6901 frame metadata. If a black segment of at least the specified minimum
6902 duration is found, a line with the start and end timestamps as well
6903 as duration is printed to the log with level @code{info}. In addition,
6904 a log line with level @code{debug} is printed per frame showing the
6905 black amount detected for that frame.
6906
6907 The filter also attaches metadata to the first frame of a black
6908 segment with key @code{lavfi.black_start} and to the first frame
6909 after the black segment ends with key @code{lavfi.black_end}. The
6910 value is the frame's timestamp. This metadata is added regardless
6911 of the minimum duration specified.
6912
6913 The filter accepts the following options:
6914
6915 @table @option
6916 @item black_min_duration, d
6917 Set the minimum detected black duration expressed in seconds. It must
6918 be a non-negative floating point number.
6919
6920 Default value is 2.0.
6921
6922 @item picture_black_ratio_th, pic_th
6923 Set the threshold for considering a picture "black".
6924 Express the minimum value for the ratio:
6925 @example
6926 @var{nb_black_pixels} / @var{nb_pixels}
6927 @end example
6928
6929 for which a picture is considered black.
6930 Default value is 0.98.
6931
6932 @item pixel_black_th, pix_th
6933 Set the threshold for considering a pixel "black".
6934
6935 The threshold expresses the maximum pixel luminance value for which a
6936 pixel is considered "black". The provided value is scaled according to
6937 the following equation:
6938 @example
6939 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6940 @end example
6941
6942 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6943 the input video format, the range is [0-255] for YUV full-range
6944 formats and [16-235] for YUV non full-range formats.
6945
6946 Default value is 0.10.
6947 @end table
6948
6949 The following example sets the maximum pixel threshold to the minimum
6950 value, and detects only black intervals of 2 or more seconds:
6951 @example
6952 blackdetect=d=2:pix_th=0.00
6953 @end example
6954
6955 @section blackframe
6956
6957 Detect frames that are (almost) completely black. Can be useful to
6958 detect chapter transitions or commercials. Output lines consist of
6959 the frame number of the detected frame, the percentage of blackness,
6960 the position in the file if known or -1 and the timestamp in seconds.
6961
6962 In order to display the output lines, you need to set the loglevel at
6963 least to the AV_LOG_INFO value.
6964
6965 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6966 The value represents the percentage of pixels in the picture that
6967 are below the threshold value.
6968
6969 It accepts the following parameters:
6970
6971 @table @option
6972
6973 @item amount
6974 The percentage of the pixels that have to be below the threshold; it defaults to
6975 @code{98}.
6976
6977 @item threshold, thresh
6978 The threshold below which a pixel value is considered black; it defaults to
6979 @code{32}.
6980
6981 @end table
6982
6983 @anchor{blend}
6984 @section blend
6985
6986 Blend two video frames into each other.
6987
6988 The @code{blend} filter takes two input streams and outputs one
6989 stream, the first input is the "top" layer and second input is
6990 "bottom" layer.  By default, the output terminates when the longest input terminates.
6991
6992 The @code{tblend} (time blend) filter takes two consecutive frames
6993 from one single stream, and outputs the result obtained by blending
6994 the new frame on top of the old frame.
6995
6996 A description of the accepted options follows.
6997
6998 @table @option
6999 @item c0_mode
7000 @item c1_mode
7001 @item c2_mode
7002 @item c3_mode
7003 @item all_mode
7004 Set blend mode for specific pixel component or all pixel components in case
7005 of @var{all_mode}. Default value is @code{normal}.
7006
7007 Available values for component modes are:
7008 @table @samp
7009 @item addition
7010 @item grainmerge
7011 @item and
7012 @item average
7013 @item burn
7014 @item darken
7015 @item difference
7016 @item grainextract
7017 @item divide
7018 @item dodge
7019 @item freeze
7020 @item exclusion
7021 @item extremity
7022 @item glow
7023 @item hardlight
7024 @item hardmix
7025 @item heat
7026 @item lighten
7027 @item linearlight
7028 @item multiply
7029 @item multiply128
7030 @item negation
7031 @item normal
7032 @item or
7033 @item overlay
7034 @item phoenix
7035 @item pinlight
7036 @item reflect
7037 @item screen
7038 @item softlight
7039 @item subtract
7040 @item vividlight
7041 @item xor
7042 @end table
7043
7044 @item c0_opacity
7045 @item c1_opacity
7046 @item c2_opacity
7047 @item c3_opacity
7048 @item all_opacity
7049 Set blend opacity for specific pixel component or all pixel components in case
7050 of @var{all_opacity}. Only used in combination with pixel component blend modes.
7051
7052 @item c0_expr
7053 @item c1_expr
7054 @item c2_expr
7055 @item c3_expr
7056 @item all_expr
7057 Set blend expression for specific pixel component or all pixel components in case
7058 of @var{all_expr}. Note that related mode options will be ignored if those are set.
7059
7060 The expressions can use the following variables:
7061
7062 @table @option
7063 @item N
7064 The sequential number of the filtered frame, starting from @code{0}.
7065
7066 @item X
7067 @item Y
7068 the coordinates of the current sample
7069
7070 @item W
7071 @item H
7072 the width and height of currently filtered plane
7073
7074 @item SW
7075 @item SH
7076 Width and height scale for the plane being filtered. It is the
7077 ratio between the dimensions of the current plane to the luma plane,
7078 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
7079 the luma plane and @code{0.5,0.5} for the chroma planes.
7080
7081 @item T
7082 Time of the current frame, expressed in seconds.
7083
7084 @item TOP, A
7085 Value of pixel component at current location for first video frame (top layer).
7086
7087 @item BOTTOM, B
7088 Value of pixel component at current location for second video frame (bottom layer).
7089 @end table
7090 @end table
7091
7092 The @code{blend} filter also supports the @ref{framesync} options.
7093
7094 @subsection Examples
7095
7096 @itemize
7097 @item
7098 Apply transition from bottom layer to top layer in first 10 seconds:
7099 @example
7100 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
7101 @end example
7102
7103 @item
7104 Apply linear horizontal transition from top layer to bottom layer:
7105 @example
7106 blend=all_expr='A*(X/W)+B*(1-X/W)'
7107 @end example
7108
7109 @item
7110 Apply 1x1 checkerboard effect:
7111 @example
7112 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
7113 @end example
7114
7115 @item
7116 Apply uncover left effect:
7117 @example
7118 blend=all_expr='if(gte(N*SW+X,W),A,B)'
7119 @end example
7120
7121 @item
7122 Apply uncover down effect:
7123 @example
7124 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
7125 @end example
7126
7127 @item
7128 Apply uncover up-left effect:
7129 @example
7130 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
7131 @end example
7132
7133 @item
7134 Split diagonally video and shows top and bottom layer on each side:
7135 @example
7136 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
7137 @end example
7138
7139 @item
7140 Display differences between the current and the previous frame:
7141 @example
7142 tblend=all_mode=grainextract
7143 @end example
7144 @end itemize
7145
7146 @section bm3d
7147
7148 Denoise frames using Block-Matching 3D algorithm.
7149
7150 The filter accepts the following options.
7151
7152 @table @option
7153 @item sigma
7154 Set denoising strength. Default value is 1.
7155 Allowed range is from 0 to 999.9.
7156 The denoising algorithm is very sensitive to sigma, so adjust it
7157 according to the source.
7158
7159 @item block
7160 Set local patch size. This sets dimensions in 2D.
7161
7162 @item bstep
7163 Set sliding step for processing blocks. Default value is 4.
7164 Allowed range is from 1 to 64.
7165 Smaller values allows processing more reference blocks and is slower.
7166
7167 @item group
7168 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
7169 When set to 1, no block matching is done. Larger values allows more blocks
7170 in single group.
7171 Allowed range is from 1 to 256.
7172
7173 @item range
7174 Set radius for search block matching. Default is 9.
7175 Allowed range is from 1 to INT32_MAX.
7176
7177 @item mstep
7178 Set step between two search locations for block matching. Default is 1.
7179 Allowed range is from 1 to 64. Smaller is slower.
7180
7181 @item thmse
7182 Set threshold of mean square error for block matching. Valid range is 0 to
7183 INT32_MAX.
7184
7185 @item hdthr
7186 Set thresholding parameter for hard thresholding in 3D transformed domain.
7187 Larger values results in stronger hard-thresholding filtering in frequency
7188 domain.
7189
7190 @item estim
7191 Set filtering estimation mode. Can be @code{basic} or @code{final}.
7192 Default is @code{basic}.
7193
7194 @item ref
7195 If enabled, filter will use 2nd stream for block matching.
7196 Default is disabled for @code{basic} value of @var{estim} option,
7197 and always enabled if value of @var{estim} is @code{final}.
7198
7199 @item planes
7200 Set planes to filter. Default is all available except alpha.
7201 @end table
7202
7203 @subsection Examples
7204
7205 @itemize
7206 @item
7207 Basic filtering with bm3d:
7208 @example
7209 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
7210 @end example
7211
7212 @item
7213 Same as above, but filtering only luma:
7214 @example
7215 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
7216 @end example
7217
7218 @item
7219 Same as above, but with both estimation modes:
7220 @example
7221 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
7222 @end example
7223
7224 @item
7225 Same as above, but prefilter with @ref{nlmeans} filter instead:
7226 @example
7227 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
7228 @end example
7229 @end itemize
7230
7231 @section boxblur
7232
7233 Apply a boxblur algorithm to the input video.
7234
7235 It accepts the following parameters:
7236
7237 @table @option
7238
7239 @item luma_radius, lr
7240 @item luma_power, lp
7241 @item chroma_radius, cr
7242 @item chroma_power, cp
7243 @item alpha_radius, ar
7244 @item alpha_power, ap
7245
7246 @end table
7247
7248 A description of the accepted options follows.
7249
7250 @table @option
7251 @item luma_radius, lr
7252 @item chroma_radius, cr
7253 @item alpha_radius, ar
7254 Set an expression for the box radius in pixels used for blurring the
7255 corresponding input plane.
7256
7257 The radius value must be a non-negative number, and must not be
7258 greater than the value of the expression @code{min(w,h)/2} for the
7259 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
7260 planes.
7261
7262 Default value for @option{luma_radius} is "2". If not specified,
7263 @option{chroma_radius} and @option{alpha_radius} default to the
7264 corresponding value set for @option{luma_radius}.
7265
7266 The expressions can contain the following constants:
7267 @table @option
7268 @item w
7269 @item h
7270 The input width and height in pixels.
7271
7272 @item cw
7273 @item ch
7274 The input chroma image width and height in pixels.
7275
7276 @item hsub
7277 @item vsub
7278 The horizontal and vertical chroma subsample values. For example, for the
7279 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
7280 @end table
7281
7282 @item luma_power, lp
7283 @item chroma_power, cp
7284 @item alpha_power, ap
7285 Specify how many times the boxblur filter is applied to the
7286 corresponding plane.
7287
7288 Default value for @option{luma_power} is 2. If not specified,
7289 @option{chroma_power} and @option{alpha_power} default to the
7290 corresponding value set for @option{luma_power}.
7291
7292 A value of 0 will disable the effect.
7293 @end table
7294
7295 @subsection Examples
7296
7297 @itemize
7298 @item
7299 Apply a boxblur filter with the luma, chroma, and alpha radii
7300 set to 2:
7301 @example
7302 boxblur=luma_radius=2:luma_power=1
7303 boxblur=2:1
7304 @end example
7305
7306 @item
7307 Set the luma radius to 2, and alpha and chroma radius to 0:
7308 @example
7309 boxblur=2:1:cr=0:ar=0
7310 @end example
7311
7312 @item
7313 Set the luma and chroma radii to a fraction of the video dimension:
7314 @example
7315 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
7316 @end example
7317 @end itemize
7318
7319 @section bwdif
7320
7321 Deinterlace the input video ("bwdif" stands for "Bob Weaver
7322 Deinterlacing Filter").
7323
7324 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
7325 interpolation algorithms.
7326 It accepts the following parameters:
7327
7328 @table @option
7329 @item mode
7330 The interlacing mode to adopt. It accepts one of the following values:
7331
7332 @table @option
7333 @item 0, send_frame
7334 Output one frame for each frame.
7335 @item 1, send_field
7336 Output one frame for each field.
7337 @end table
7338
7339 The default value is @code{send_field}.
7340
7341 @item parity
7342 The picture field parity assumed for the input interlaced video. It accepts one
7343 of the following values:
7344
7345 @table @option
7346 @item 0, tff
7347 Assume the top field is first.
7348 @item 1, bff
7349 Assume the bottom field is first.
7350 @item -1, auto
7351 Enable automatic detection of field parity.
7352 @end table
7353
7354 The default value is @code{auto}.
7355 If the interlacing is unknown or the decoder does not export this information,
7356 top field first will be assumed.
7357
7358 @item deint
7359 Specify which frames to deinterlace. Accepts one of the following
7360 values:
7361
7362 @table @option
7363 @item 0, all
7364 Deinterlace all frames.
7365 @item 1, interlaced
7366 Only deinterlace frames marked as interlaced.
7367 @end table
7368
7369 The default value is @code{all}.
7370 @end table
7371
7372 @section cas
7373
7374 Apply Contrast Adaptive Sharpen filter to video stream.
7375
7376 The filter accepts the following options:
7377
7378 @table @option
7379 @item strength
7380 Set the sharpening strength. Default value is 0.
7381
7382 @item planes
7383 Set planes to filter. Default value is to filter all
7384 planes except alpha plane.
7385 @end table
7386
7387 @section chromahold
7388 Remove all color information for all colors except for certain one.
7389
7390 The filter accepts the following options:
7391
7392 @table @option
7393 @item color
7394 The color which will not be replaced with neutral chroma.
7395
7396 @item similarity
7397 Similarity percentage with the above color.
7398 0.01 matches only the exact key color, while 1.0 matches everything.
7399
7400 @item blend
7401 Blend percentage.
7402 0.0 makes pixels either fully gray, or not gray at all.
7403 Higher values result in more preserved color.
7404
7405 @item yuv
7406 Signals that the color passed is already in YUV instead of RGB.
7407
7408 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7409 This can be used to pass exact YUV values as hexadecimal numbers.
7410 @end table
7411
7412 @subsection Commands
7413 This filter supports same @ref{commands} as options.
7414 The command accepts the same syntax of the corresponding option.
7415
7416 If the specified expression is not valid, it is kept at its current
7417 value.
7418
7419 @section chromakey
7420 YUV colorspace color/chroma keying.
7421
7422 The filter accepts the following options:
7423
7424 @table @option
7425 @item color
7426 The color which will be replaced with transparency.
7427
7428 @item similarity
7429 Similarity percentage with the key color.
7430
7431 0.01 matches only the exact key color, while 1.0 matches everything.
7432
7433 @item blend
7434 Blend percentage.
7435
7436 0.0 makes pixels either fully transparent, or not transparent at all.
7437
7438 Higher values result in semi-transparent pixels, with a higher transparency
7439 the more similar the pixels color is to the key color.
7440
7441 @item yuv
7442 Signals that the color passed is already in YUV instead of RGB.
7443
7444 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7445 This can be used to pass exact YUV values as hexadecimal numbers.
7446 @end table
7447
7448 @subsection Commands
7449 This filter supports same @ref{commands} as options.
7450 The command accepts the same syntax of the corresponding option.
7451
7452 If the specified expression is not valid, it is kept at its current
7453 value.
7454
7455 @subsection Examples
7456
7457 @itemize
7458 @item
7459 Make every green pixel in the input image transparent:
7460 @example
7461 ffmpeg -i input.png -vf chromakey=green out.png
7462 @end example
7463
7464 @item
7465 Overlay a greenscreen-video on top of a static black background.
7466 @example
7467 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
7468 @end example
7469 @end itemize
7470
7471 @section chromanr
7472 Reduce chrominance noise.
7473
7474 The filter accepts the following options:
7475
7476 @table @option
7477 @item thres
7478 Set threshold for averaging chrominance values.
7479 Sum of absolute difference of U and V pixel components or current
7480 pixel and neighbour pixels lower than this threshold will be used in
7481 averaging. Luma component is left unchanged and is copied to output.
7482 Default value is 30. Allowed range is from 1 to 200.
7483
7484 @item sizew
7485 Set horizontal radius of rectangle used for averaging.
7486 Allowed range is from 1 to 100. Default value is 5.
7487
7488 @item sizeh
7489 Set vertical radius of rectangle used for averaging.
7490 Allowed range is from 1 to 100. Default value is 5.
7491
7492 @item stepw
7493 Set horizontal step when averaging. Default value is 1.
7494 Allowed range is from 1 to 50.
7495 Mostly useful to speed-up filtering.
7496
7497 @item steph
7498 Set vertical step when averaging. Default value is 1.
7499 Allowed range is from 1 to 50.
7500 Mostly useful to speed-up filtering.
7501 @end table
7502
7503 @subsection Commands
7504 This filter supports same @ref{commands} as options.
7505 The command accepts the same syntax of the corresponding option.
7506
7507 @section chromashift
7508 Shift chroma pixels horizontally and/or vertically.
7509
7510 The filter accepts the following options:
7511 @table @option
7512 @item cbh
7513 Set amount to shift chroma-blue horizontally.
7514 @item cbv
7515 Set amount to shift chroma-blue vertically.
7516 @item crh
7517 Set amount to shift chroma-red horizontally.
7518 @item crv
7519 Set amount to shift chroma-red vertically.
7520 @item edge
7521 Set edge mode, can be @var{smear}, default, or @var{warp}.
7522 @end table
7523
7524 @subsection Commands
7525
7526 This filter supports the all above options as @ref{commands}.
7527
7528 @section ciescope
7529
7530 Display CIE color diagram with pixels overlaid onto it.
7531
7532 The filter accepts the following options:
7533
7534 @table @option
7535 @item system
7536 Set color system.
7537
7538 @table @samp
7539 @item ntsc, 470m
7540 @item ebu, 470bg
7541 @item smpte
7542 @item 240m
7543 @item apple
7544 @item widergb
7545 @item cie1931
7546 @item rec709, hdtv
7547 @item uhdtv, rec2020
7548 @item dcip3
7549 @end table
7550
7551 @item cie
7552 Set CIE system.
7553
7554 @table @samp
7555 @item xyy
7556 @item ucs
7557 @item luv
7558 @end table
7559
7560 @item gamuts
7561 Set what gamuts to draw.
7562
7563 See @code{system} option for available values.
7564
7565 @item size, s
7566 Set ciescope size, by default set to 512.
7567
7568 @item intensity, i
7569 Set intensity used to map input pixel values to CIE diagram.
7570
7571 @item contrast
7572 Set contrast used to draw tongue colors that are out of active color system gamut.
7573
7574 @item corrgamma
7575 Correct gamma displayed on scope, by default enabled.
7576
7577 @item showwhite
7578 Show white point on CIE diagram, by default disabled.
7579
7580 @item gamma
7581 Set input gamma. Used only with XYZ input color space.
7582 @end table
7583
7584 @section codecview
7585
7586 Visualize information exported by some codecs.
7587
7588 Some codecs can export information through frames using side-data or other
7589 means. For example, some MPEG based codecs export motion vectors through the
7590 @var{export_mvs} flag in the codec @option{flags2} option.
7591
7592 The filter accepts the following option:
7593
7594 @table @option
7595 @item mv
7596 Set motion vectors to visualize.
7597
7598 Available flags for @var{mv} are:
7599
7600 @table @samp
7601 @item pf
7602 forward predicted MVs of P-frames
7603 @item bf
7604 forward predicted MVs of B-frames
7605 @item bb
7606 backward predicted MVs of B-frames
7607 @end table
7608
7609 @item qp
7610 Display quantization parameters using the chroma planes.
7611
7612 @item mv_type, mvt
7613 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7614
7615 Available flags for @var{mv_type} are:
7616
7617 @table @samp
7618 @item fp
7619 forward predicted MVs
7620 @item bp
7621 backward predicted MVs
7622 @end table
7623
7624 @item frame_type, ft
7625 Set frame type to visualize motion vectors of.
7626
7627 Available flags for @var{frame_type} are:
7628
7629 @table @samp
7630 @item if
7631 intra-coded frames (I-frames)
7632 @item pf
7633 predicted frames (P-frames)
7634 @item bf
7635 bi-directionally predicted frames (B-frames)
7636 @end table
7637 @end table
7638
7639 @subsection Examples
7640
7641 @itemize
7642 @item
7643 Visualize forward predicted MVs of all frames using @command{ffplay}:
7644 @example
7645 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7646 @end example
7647
7648 @item
7649 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7650 @example
7651 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7652 @end example
7653 @end itemize
7654
7655 @section colorbalance
7656 Modify intensity of primary colors (red, green and blue) of input frames.
7657
7658 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7659 regions for the red-cyan, green-magenta or blue-yellow balance.
7660
7661 A positive adjustment value shifts the balance towards the primary color, a negative
7662 value towards the complementary color.
7663
7664 The filter accepts the following options:
7665
7666 @table @option
7667 @item rs
7668 @item gs
7669 @item bs
7670 Adjust red, green and blue shadows (darkest pixels).
7671
7672 @item rm
7673 @item gm
7674 @item bm
7675 Adjust red, green and blue midtones (medium pixels).
7676
7677 @item rh
7678 @item gh
7679 @item bh
7680 Adjust red, green and blue highlights (brightest pixels).
7681
7682 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7683
7684 @item pl
7685 Preserve lightness when changing color balance. Default is disabled.
7686 @end table
7687
7688 @subsection Examples
7689
7690 @itemize
7691 @item
7692 Add red color cast to shadows:
7693 @example
7694 colorbalance=rs=.3
7695 @end example
7696 @end itemize
7697
7698 @subsection Commands
7699
7700 This filter supports the all above options as @ref{commands}.
7701
7702 @section colorchannelmixer
7703
7704 Adjust video input frames by re-mixing color channels.
7705
7706 This filter modifies a color channel by adding the values associated to
7707 the other channels of the same pixels. For example if the value to
7708 modify is red, the output value will be:
7709 @example
7710 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
7711 @end example
7712
7713 The filter accepts the following options:
7714
7715 @table @option
7716 @item rr
7717 @item rg
7718 @item rb
7719 @item ra
7720 Adjust contribution of input red, green, blue and alpha channels for output red channel.
7721 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
7722
7723 @item gr
7724 @item gg
7725 @item gb
7726 @item ga
7727 Adjust contribution of input red, green, blue and alpha channels for output green channel.
7728 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
7729
7730 @item br
7731 @item bg
7732 @item bb
7733 @item ba
7734 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
7735 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
7736
7737 @item ar
7738 @item ag
7739 @item ab
7740 @item aa
7741 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
7742 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
7743
7744 Allowed ranges for options are @code{[-2.0, 2.0]}.
7745 @end table
7746
7747 @subsection Examples
7748
7749 @itemize
7750 @item
7751 Convert source to grayscale:
7752 @example
7753 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
7754 @end example
7755 @item
7756 Simulate sepia tones:
7757 @example
7758 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
7759 @end example
7760 @end itemize
7761
7762 @subsection Commands
7763
7764 This filter supports the all above options as @ref{commands}.
7765
7766 @section colorkey
7767 RGB colorspace color keying.
7768
7769 The filter accepts the following options:
7770
7771 @table @option
7772 @item color
7773 The color which will be replaced with transparency.
7774
7775 @item similarity
7776 Similarity percentage with the key color.
7777
7778 0.01 matches only the exact key color, while 1.0 matches everything.
7779
7780 @item blend
7781 Blend percentage.
7782
7783 0.0 makes pixels either fully transparent, or not transparent at all.
7784
7785 Higher values result in semi-transparent pixels, with a higher transparency
7786 the more similar the pixels color is to the key color.
7787 @end table
7788
7789 @subsection Examples
7790
7791 @itemize
7792 @item
7793 Make every green pixel in the input image transparent:
7794 @example
7795 ffmpeg -i input.png -vf colorkey=green out.png
7796 @end example
7797
7798 @item
7799 Overlay a greenscreen-video on top of a static background image.
7800 @example
7801 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
7802 @end example
7803 @end itemize
7804
7805 @subsection Commands
7806 This filter supports same @ref{commands} as options.
7807 The command accepts the same syntax of the corresponding option.
7808
7809 If the specified expression is not valid, it is kept at its current
7810 value.
7811
7812 @section colorhold
7813 Remove all color information for all RGB colors except for certain one.
7814
7815 The filter accepts the following options:
7816
7817 @table @option
7818 @item color
7819 The color which will not be replaced with neutral gray.
7820
7821 @item similarity
7822 Similarity percentage with the above color.
7823 0.01 matches only the exact key color, while 1.0 matches everything.
7824
7825 @item blend
7826 Blend percentage. 0.0 makes pixels fully gray.
7827 Higher values result in more preserved color.
7828 @end table
7829
7830 @subsection Commands
7831 This filter supports same @ref{commands} as options.
7832 The command accepts the same syntax of the corresponding option.
7833
7834 If the specified expression is not valid, it is kept at its current
7835 value.
7836
7837 @section colorlevels
7838
7839 Adjust video input frames using levels.
7840
7841 The filter accepts the following options:
7842
7843 @table @option
7844 @item rimin
7845 @item gimin
7846 @item bimin
7847 @item aimin
7848 Adjust red, green, blue and alpha input black point.
7849 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7850
7851 @item rimax
7852 @item gimax
7853 @item bimax
7854 @item aimax
7855 Adjust red, green, blue and alpha input white point.
7856 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
7857
7858 Input levels are used to lighten highlights (bright tones), darken shadows
7859 (dark tones), change the balance of bright and dark tones.
7860
7861 @item romin
7862 @item gomin
7863 @item bomin
7864 @item aomin
7865 Adjust red, green, blue and alpha output black point.
7866 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
7867
7868 @item romax
7869 @item gomax
7870 @item bomax
7871 @item aomax
7872 Adjust red, green, blue and alpha output white point.
7873 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
7874
7875 Output levels allows manual selection of a constrained output level range.
7876 @end table
7877
7878 @subsection Examples
7879
7880 @itemize
7881 @item
7882 Make video output darker:
7883 @example
7884 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
7885 @end example
7886
7887 @item
7888 Increase contrast:
7889 @example
7890 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
7891 @end example
7892
7893 @item
7894 Make video output lighter:
7895 @example
7896 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
7897 @end example
7898
7899 @item
7900 Increase brightness:
7901 @example
7902 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
7903 @end example
7904 @end itemize
7905
7906 @subsection Commands
7907
7908 This filter supports the all above options as @ref{commands}.
7909
7910 @section colormatrix
7911
7912 Convert color matrix.
7913
7914 The filter accepts the following options:
7915
7916 @table @option
7917 @item src
7918 @item dst
7919 Specify the source and destination color matrix. Both values must be
7920 specified.
7921
7922 The accepted values are:
7923 @table @samp
7924 @item bt709
7925 BT.709
7926
7927 @item fcc
7928 FCC
7929
7930 @item bt601
7931 BT.601
7932
7933 @item bt470
7934 BT.470
7935
7936 @item bt470bg
7937 BT.470BG
7938
7939 @item smpte170m
7940 SMPTE-170M
7941
7942 @item smpte240m
7943 SMPTE-240M
7944
7945 @item bt2020
7946 BT.2020
7947 @end table
7948 @end table
7949
7950 For example to convert from BT.601 to SMPTE-240M, use the command:
7951 @example
7952 colormatrix=bt601:smpte240m
7953 @end example
7954
7955 @section colorspace
7956
7957 Convert colorspace, transfer characteristics or color primaries.
7958 Input video needs to have an even size.
7959
7960 The filter accepts the following options:
7961
7962 @table @option
7963 @anchor{all}
7964 @item all
7965 Specify all color properties at once.
7966
7967 The accepted values are:
7968 @table @samp
7969 @item bt470m
7970 BT.470M
7971
7972 @item bt470bg
7973 BT.470BG
7974
7975 @item bt601-6-525
7976 BT.601-6 525
7977
7978 @item bt601-6-625
7979 BT.601-6 625
7980
7981 @item bt709
7982 BT.709
7983
7984 @item smpte170m
7985 SMPTE-170M
7986
7987 @item smpte240m
7988 SMPTE-240M
7989
7990 @item bt2020
7991 BT.2020
7992
7993 @end table
7994
7995 @anchor{space}
7996 @item space
7997 Specify output colorspace.
7998
7999 The accepted values are:
8000 @table @samp
8001 @item bt709
8002 BT.709
8003
8004 @item fcc
8005 FCC
8006
8007 @item bt470bg
8008 BT.470BG or BT.601-6 625
8009
8010 @item smpte170m
8011 SMPTE-170M or BT.601-6 525
8012
8013 @item smpte240m
8014 SMPTE-240M
8015
8016 @item ycgco
8017 YCgCo
8018
8019 @item bt2020ncl
8020 BT.2020 with non-constant luminance
8021
8022 @end table
8023
8024 @anchor{trc}
8025 @item trc
8026 Specify output transfer characteristics.
8027
8028 The accepted values are:
8029 @table @samp
8030 @item bt709
8031 BT.709
8032
8033 @item bt470m
8034 BT.470M
8035
8036 @item bt470bg
8037 BT.470BG
8038
8039 @item gamma22
8040 Constant gamma of 2.2
8041
8042 @item gamma28
8043 Constant gamma of 2.8
8044
8045 @item smpte170m
8046 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8047
8048 @item smpte240m
8049 SMPTE-240M
8050
8051 @item srgb
8052 SRGB
8053
8054 @item iec61966-2-1
8055 iec61966-2-1
8056
8057 @item iec61966-2-4
8058 iec61966-2-4
8059
8060 @item xvycc
8061 xvycc
8062
8063 @item bt2020-10
8064 BT.2020 for 10-bits content
8065
8066 @item bt2020-12
8067 BT.2020 for 12-bits content
8068
8069 @end table
8070
8071 @anchor{primaries}
8072 @item primaries
8073 Specify output color primaries.
8074
8075 The accepted values are:
8076 @table @samp
8077 @item bt709
8078 BT.709
8079
8080 @item bt470m
8081 BT.470M
8082
8083 @item bt470bg
8084 BT.470BG or BT.601-6 625
8085
8086 @item smpte170m
8087 SMPTE-170M or BT.601-6 525
8088
8089 @item smpte240m
8090 SMPTE-240M
8091
8092 @item film
8093 film
8094
8095 @item smpte431
8096 SMPTE-431
8097
8098 @item smpte432
8099 SMPTE-432
8100
8101 @item bt2020
8102 BT.2020
8103
8104 @item jedec-p22
8105 JEDEC P22 phosphors
8106
8107 @end table
8108
8109 @anchor{range}
8110 @item range
8111 Specify output color range.
8112
8113 The accepted values are:
8114 @table @samp
8115 @item tv
8116 TV (restricted) range
8117
8118 @item mpeg
8119 MPEG (restricted) range
8120
8121 @item pc
8122 PC (full) range
8123
8124 @item jpeg
8125 JPEG (full) range
8126
8127 @end table
8128
8129 @item format
8130 Specify output color format.
8131
8132 The accepted values are:
8133 @table @samp
8134 @item yuv420p
8135 YUV 4:2:0 planar 8-bits
8136
8137 @item yuv420p10
8138 YUV 4:2:0 planar 10-bits
8139
8140 @item yuv420p12
8141 YUV 4:2:0 planar 12-bits
8142
8143 @item yuv422p
8144 YUV 4:2:2 planar 8-bits
8145
8146 @item yuv422p10
8147 YUV 4:2:2 planar 10-bits
8148
8149 @item yuv422p12
8150 YUV 4:2:2 planar 12-bits
8151
8152 @item yuv444p
8153 YUV 4:4:4 planar 8-bits
8154
8155 @item yuv444p10
8156 YUV 4:4:4 planar 10-bits
8157
8158 @item yuv444p12
8159 YUV 4:4:4 planar 12-bits
8160
8161 @end table
8162
8163 @item fast
8164 Do a fast conversion, which skips gamma/primary correction. This will take
8165 significantly less CPU, but will be mathematically incorrect. To get output
8166 compatible with that produced by the colormatrix filter, use fast=1.
8167
8168 @item dither
8169 Specify dithering mode.
8170
8171 The accepted values are:
8172 @table @samp
8173 @item none
8174 No dithering
8175
8176 @item fsb
8177 Floyd-Steinberg dithering
8178 @end table
8179
8180 @item wpadapt
8181 Whitepoint adaptation mode.
8182
8183 The accepted values are:
8184 @table @samp
8185 @item bradford
8186 Bradford whitepoint adaptation
8187
8188 @item vonkries
8189 von Kries whitepoint adaptation
8190
8191 @item identity
8192 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8193 @end table
8194
8195 @item iall
8196 Override all input properties at once. Same accepted values as @ref{all}.
8197
8198 @item ispace
8199 Override input colorspace. Same accepted values as @ref{space}.
8200
8201 @item iprimaries
8202 Override input color primaries. Same accepted values as @ref{primaries}.
8203
8204 @item itrc
8205 Override input transfer characteristics. Same accepted values as @ref{trc}.
8206
8207 @item irange
8208 Override input color range. Same accepted values as @ref{range}.
8209
8210 @end table
8211
8212 The filter converts the transfer characteristics, color space and color
8213 primaries to the specified user values. The output value, if not specified,
8214 is set to a default value based on the "all" property. If that property is
8215 also not specified, the filter will log an error. The output color range and
8216 format default to the same value as the input color range and format. The
8217 input transfer characteristics, color space, color primaries and color range
8218 should be set on the input data. If any of these are missing, the filter will
8219 log an error and no conversion will take place.
8220
8221 For example to convert the input to SMPTE-240M, use the command:
8222 @example
8223 colorspace=smpte240m
8224 @end example
8225
8226 @section convolution
8227
8228 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8229
8230 The filter accepts the following options:
8231
8232 @table @option
8233 @item 0m
8234 @item 1m
8235 @item 2m
8236 @item 3m
8237 Set matrix for each plane.
8238 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8239 and from 1 to 49 odd number of signed integers in @var{row} mode.
8240
8241 @item 0rdiv
8242 @item 1rdiv
8243 @item 2rdiv
8244 @item 3rdiv
8245 Set multiplier for calculated value for each plane.
8246 If unset or 0, it will be sum of all matrix elements.
8247
8248 @item 0bias
8249 @item 1bias
8250 @item 2bias
8251 @item 3bias
8252 Set bias for each plane. This value is added to the result of the multiplication.
8253 Useful for making the overall image brighter or darker. Default is 0.0.
8254
8255 @item 0mode
8256 @item 1mode
8257 @item 2mode
8258 @item 3mode
8259 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8260 Default is @var{square}.
8261 @end table
8262
8263 @subsection Examples
8264
8265 @itemize
8266 @item
8267 Apply sharpen:
8268 @example
8269 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"
8270 @end example
8271
8272 @item
8273 Apply blur:
8274 @example
8275 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"
8276 @end example
8277
8278 @item
8279 Apply edge enhance:
8280 @example
8281 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"
8282 @end example
8283
8284 @item
8285 Apply edge detect:
8286 @example
8287 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"
8288 @end example
8289
8290 @item
8291 Apply laplacian edge detector which includes diagonals:
8292 @example
8293 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"
8294 @end example
8295
8296 @item
8297 Apply emboss:
8298 @example
8299 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"
8300 @end example
8301 @end itemize
8302
8303 @section convolve
8304
8305 Apply 2D convolution of video stream in frequency domain using second stream
8306 as impulse.
8307
8308 The filter accepts the following options:
8309
8310 @table @option
8311 @item planes
8312 Set which planes to process.
8313
8314 @item impulse
8315 Set which impulse video frames will be processed, can be @var{first}
8316 or @var{all}. Default is @var{all}.
8317 @end table
8318
8319 The @code{convolve} filter also supports the @ref{framesync} options.
8320
8321 @section copy
8322
8323 Copy the input video source unchanged to the output. This is mainly useful for
8324 testing purposes.
8325
8326 @anchor{coreimage}
8327 @section coreimage
8328 Video filtering on GPU using Apple's CoreImage API on OSX.
8329
8330 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8331 processed by video hardware. However, software-based OpenGL implementations
8332 exist which means there is no guarantee for hardware processing. It depends on
8333 the respective OSX.
8334
8335 There are many filters and image generators provided by Apple that come with a
8336 large variety of options. The filter has to be referenced by its name along
8337 with its options.
8338
8339 The coreimage filter accepts the following options:
8340 @table @option
8341 @item list_filters
8342 List all available filters and generators along with all their respective
8343 options as well as possible minimum and maximum values along with the default
8344 values.
8345 @example
8346 list_filters=true
8347 @end example
8348
8349 @item filter
8350 Specify all filters by their respective name and options.
8351 Use @var{list_filters} to determine all valid filter names and options.
8352 Numerical options are specified by a float value and are automatically clamped
8353 to their respective value range.  Vector and color options have to be specified
8354 by a list of space separated float values. Character escaping has to be done.
8355 A special option name @code{default} is available to use default options for a
8356 filter.
8357
8358 It is required to specify either @code{default} or at least one of the filter options.
8359 All omitted options are used with their default values.
8360 The syntax of the filter string is as follows:
8361 @example
8362 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8363 @end example
8364
8365 @item output_rect
8366 Specify a rectangle where the output of the filter chain is copied into the
8367 input image. It is given by a list of space separated float values:
8368 @example
8369 output_rect=x\ y\ width\ height
8370 @end example
8371 If not given, the output rectangle equals the dimensions of the input image.
8372 The output rectangle is automatically cropped at the borders of the input
8373 image. Negative values are valid for each component.
8374 @example
8375 output_rect=25\ 25\ 100\ 100
8376 @end example
8377 @end table
8378
8379 Several filters can be chained for successive processing without GPU-HOST
8380 transfers allowing for fast processing of complex filter chains.
8381 Currently, only filters with zero (generators) or exactly one (filters) input
8382 image and one output image are supported. Also, transition filters are not yet
8383 usable as intended.
8384
8385 Some filters generate output images with additional padding depending on the
8386 respective filter kernel. The padding is automatically removed to ensure the
8387 filter output has the same size as the input image.
8388
8389 For image generators, the size of the output image is determined by the
8390 previous output image of the filter chain or the input image of the whole
8391 filterchain, respectively. The generators do not use the pixel information of
8392 this image to generate their output. However, the generated output is
8393 blended onto this image, resulting in partial or complete coverage of the
8394 output image.
8395
8396 The @ref{coreimagesrc} video source can be used for generating input images
8397 which are directly fed into the filter chain. By using it, providing input
8398 images by another video source or an input video is not required.
8399
8400 @subsection Examples
8401
8402 @itemize
8403
8404 @item
8405 List all filters available:
8406 @example
8407 coreimage=list_filters=true
8408 @end example
8409
8410 @item
8411 Use the CIBoxBlur filter with default options to blur an image:
8412 @example
8413 coreimage=filter=CIBoxBlur@@default
8414 @end example
8415
8416 @item
8417 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8418 its center at 100x100 and a radius of 50 pixels:
8419 @example
8420 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8421 @end example
8422
8423 @item
8424 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8425 given as complete and escaped command-line for Apple's standard bash shell:
8426 @example
8427 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8428 @end example
8429 @end itemize
8430
8431 @section cover_rect
8432
8433 Cover a rectangular object
8434
8435 It accepts the following options:
8436
8437 @table @option
8438 @item cover
8439 Filepath of the optional cover image, needs to be in yuv420.
8440
8441 @item mode
8442 Set covering mode.
8443
8444 It accepts the following values:
8445 @table @samp
8446 @item cover
8447 cover it by the supplied image
8448 @item blur
8449 cover it by interpolating the surrounding pixels
8450 @end table
8451
8452 Default value is @var{blur}.
8453 @end table
8454
8455 @subsection Examples
8456
8457 @itemize
8458 @item
8459 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8460 @example
8461 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8462 @end example
8463 @end itemize
8464
8465 @section crop
8466
8467 Crop the input video to given dimensions.
8468
8469 It accepts the following parameters:
8470
8471 @table @option
8472 @item w, out_w
8473 The width of the output video. It defaults to @code{iw}.
8474 This expression is evaluated only once during the filter
8475 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8476
8477 @item h, out_h
8478 The height of the output video. It defaults to @code{ih}.
8479 This expression is evaluated only once during the filter
8480 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8481
8482 @item x
8483 The horizontal position, in the input video, of the left edge of the output
8484 video. It defaults to @code{(in_w-out_w)/2}.
8485 This expression is evaluated per-frame.
8486
8487 @item y
8488 The vertical position, in the input video, of the top edge of the output video.
8489 It defaults to @code{(in_h-out_h)/2}.
8490 This expression is evaluated per-frame.
8491
8492 @item keep_aspect
8493 If set to 1 will force the output display aspect ratio
8494 to be the same of the input, by changing the output sample aspect
8495 ratio. It defaults to 0.
8496
8497 @item exact
8498 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8499 width/height/x/y as specified and will not be rounded to nearest smaller value.
8500 It defaults to 0.
8501 @end table
8502
8503 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8504 expressions containing the following constants:
8505
8506 @table @option
8507 @item x
8508 @item y
8509 The computed values for @var{x} and @var{y}. They are evaluated for
8510 each new frame.
8511
8512 @item in_w
8513 @item in_h
8514 The input width and height.
8515
8516 @item iw
8517 @item ih
8518 These are the same as @var{in_w} and @var{in_h}.
8519
8520 @item out_w
8521 @item out_h
8522 The output (cropped) width and height.
8523
8524 @item ow
8525 @item oh
8526 These are the same as @var{out_w} and @var{out_h}.
8527
8528 @item a
8529 same as @var{iw} / @var{ih}
8530
8531 @item sar
8532 input sample aspect ratio
8533
8534 @item dar
8535 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8536
8537 @item hsub
8538 @item vsub
8539 horizontal and vertical chroma subsample values. For example for the
8540 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8541
8542 @item n
8543 The number of the input frame, starting from 0.
8544
8545 @item pos
8546 the position in the file of the input frame, NAN if unknown
8547
8548 @item t
8549 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8550
8551 @end table
8552
8553 The expression for @var{out_w} may depend on the value of @var{out_h},
8554 and the expression for @var{out_h} may depend on @var{out_w}, but they
8555 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8556 evaluated after @var{out_w} and @var{out_h}.
8557
8558 The @var{x} and @var{y} parameters specify the expressions for the
8559 position of the top-left corner of the output (non-cropped) area. They
8560 are evaluated for each frame. If the evaluated value is not valid, it
8561 is approximated to the nearest valid value.
8562
8563 The expression for @var{x} may depend on @var{y}, and the expression
8564 for @var{y} may depend on @var{x}.
8565
8566 @subsection Examples
8567
8568 @itemize
8569 @item
8570 Crop area with size 100x100 at position (12,34).
8571 @example
8572 crop=100:100:12:34
8573 @end example
8574
8575 Using named options, the example above becomes:
8576 @example
8577 crop=w=100:h=100:x=12:y=34
8578 @end example
8579
8580 @item
8581 Crop the central input area with size 100x100:
8582 @example
8583 crop=100:100
8584 @end example
8585
8586 @item
8587 Crop the central input area with size 2/3 of the input video:
8588 @example
8589 crop=2/3*in_w:2/3*in_h
8590 @end example
8591
8592 @item
8593 Crop the input video central square:
8594 @example
8595 crop=out_w=in_h
8596 crop=in_h
8597 @end example
8598
8599 @item
8600 Delimit the rectangle with the top-left corner placed at position
8601 100:100 and the right-bottom corner corresponding to the right-bottom
8602 corner of the input image.
8603 @example
8604 crop=in_w-100:in_h-100:100:100
8605 @end example
8606
8607 @item
8608 Crop 10 pixels from the left and right borders, and 20 pixels from
8609 the top and bottom borders
8610 @example
8611 crop=in_w-2*10:in_h-2*20
8612 @end example
8613
8614 @item
8615 Keep only the bottom right quarter of the input image:
8616 @example
8617 crop=in_w/2:in_h/2:in_w/2:in_h/2
8618 @end example
8619
8620 @item
8621 Crop height for getting Greek harmony:
8622 @example
8623 crop=in_w:1/PHI*in_w
8624 @end example
8625
8626 @item
8627 Apply trembling effect:
8628 @example
8629 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)
8630 @end example
8631
8632 @item
8633 Apply erratic camera effect depending on timestamp:
8634 @example
8635 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)"
8636 @end example
8637
8638 @item
8639 Set x depending on the value of y:
8640 @example
8641 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8642 @end example
8643 @end itemize
8644
8645 @subsection Commands
8646
8647 This filter supports the following commands:
8648 @table @option
8649 @item w, out_w
8650 @item h, out_h
8651 @item x
8652 @item y
8653 Set width/height of the output video and the horizontal/vertical position
8654 in the input video.
8655 The command accepts the same syntax of the corresponding option.
8656
8657 If the specified expression is not valid, it is kept at its current
8658 value.
8659 @end table
8660
8661 @section cropdetect
8662
8663 Auto-detect the crop size.
8664
8665 It calculates the necessary cropping parameters and prints the
8666 recommended parameters via the logging system. The detected dimensions
8667 correspond to the non-black area of the input video.
8668
8669 It accepts the following parameters:
8670
8671 @table @option
8672
8673 @item limit
8674 Set higher black value threshold, which can be optionally specified
8675 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8676 value greater to the set value is considered non-black. It defaults to 24.
8677 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8678 on the bitdepth of the pixel format.
8679
8680 @item round
8681 The value which the width/height should be divisible by. It defaults to
8682 16. The offset is automatically adjusted to center the video. Use 2 to
8683 get only even dimensions (needed for 4:2:2 video). 16 is best when
8684 encoding to most video codecs.
8685
8686 @item reset_count, reset
8687 Set the counter that determines after how many frames cropdetect will
8688 reset the previously detected largest video area and start over to
8689 detect the current optimal crop area. Default value is 0.
8690
8691 This can be useful when channel logos distort the video area. 0
8692 indicates 'never reset', and returns the largest area encountered during
8693 playback.
8694 @end table
8695
8696 @anchor{cue}
8697 @section cue
8698
8699 Delay video filtering until a given wallclock timestamp. The filter first
8700 passes on @option{preroll} amount of frames, then it buffers at most
8701 @option{buffer} amount of frames and waits for the cue. After reaching the cue
8702 it forwards the buffered frames and also any subsequent frames coming in its
8703 input.
8704
8705 The filter can be used synchronize the output of multiple ffmpeg processes for
8706 realtime output devices like decklink. By putting the delay in the filtering
8707 chain and pre-buffering frames the process can pass on data to output almost
8708 immediately after the target wallclock timestamp is reached.
8709
8710 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
8711 some use cases.
8712
8713 @table @option
8714
8715 @item cue
8716 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
8717
8718 @item preroll
8719 The duration of content to pass on as preroll expressed in seconds. Default is 0.
8720
8721 @item buffer
8722 The maximum duration of content to buffer before waiting for the cue expressed
8723 in seconds. Default is 0.
8724
8725 @end table
8726
8727 @anchor{curves}
8728 @section curves
8729
8730 Apply color adjustments using curves.
8731
8732 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
8733 component (red, green and blue) has its values defined by @var{N} key points
8734 tied from each other using a smooth curve. The x-axis represents the pixel
8735 values from the input frame, and the y-axis the new pixel values to be set for
8736 the output frame.
8737
8738 By default, a component curve is defined by the two points @var{(0;0)} and
8739 @var{(1;1)}. This creates a straight line where each original pixel value is
8740 "adjusted" to its own value, which means no change to the image.
8741
8742 The filter allows you to redefine these two points and add some more. A new
8743 curve (using a natural cubic spline interpolation) will be define to pass
8744 smoothly through all these new coordinates. The new defined points needs to be
8745 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
8746 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
8747 the vector spaces, the values will be clipped accordingly.
8748
8749 The filter accepts the following options:
8750
8751 @table @option
8752 @item preset
8753 Select one of the available color presets. This option can be used in addition
8754 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
8755 options takes priority on the preset values.
8756 Available presets are:
8757 @table @samp
8758 @item none
8759 @item color_negative
8760 @item cross_process
8761 @item darker
8762 @item increase_contrast
8763 @item lighter
8764 @item linear_contrast
8765 @item medium_contrast
8766 @item negative
8767 @item strong_contrast
8768 @item vintage
8769 @end table
8770 Default is @code{none}.
8771 @item master, m
8772 Set the master key points. These points will define a second pass mapping. It
8773 is sometimes called a "luminance" or "value" mapping. It can be used with
8774 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
8775 post-processing LUT.
8776 @item red, r
8777 Set the key points for the red component.
8778 @item green, g
8779 Set the key points for the green component.
8780 @item blue, b
8781 Set the key points for the blue component.
8782 @item all
8783 Set the key points for all components (not including master).
8784 Can be used in addition to the other key points component
8785 options. In this case, the unset component(s) will fallback on this
8786 @option{all} setting.
8787 @item psfile
8788 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
8789 @item plot
8790 Save Gnuplot script of the curves in specified file.
8791 @end table
8792
8793 To avoid some filtergraph syntax conflicts, each key points list need to be
8794 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
8795
8796 @subsection Examples
8797
8798 @itemize
8799 @item
8800 Increase slightly the middle level of blue:
8801 @example
8802 curves=blue='0/0 0.5/0.58 1/1'
8803 @end example
8804
8805 @item
8806 Vintage effect:
8807 @example
8808 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'
8809 @end example
8810 Here we obtain the following coordinates for each components:
8811 @table @var
8812 @item red
8813 @code{(0;0.11) (0.42;0.51) (1;0.95)}
8814 @item green
8815 @code{(0;0) (0.50;0.48) (1;1)}
8816 @item blue
8817 @code{(0;0.22) (0.49;0.44) (1;0.80)}
8818 @end table
8819
8820 @item
8821 The previous example can also be achieved with the associated built-in preset:
8822 @example
8823 curves=preset=vintage
8824 @end example
8825
8826 @item
8827 Or simply:
8828 @example
8829 curves=vintage
8830 @end example
8831
8832 @item
8833 Use a Photoshop preset and redefine the points of the green component:
8834 @example
8835 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
8836 @end example
8837
8838 @item
8839 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
8840 and @command{gnuplot}:
8841 @example
8842 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
8843 gnuplot -p /tmp/curves.plt
8844 @end example
8845 @end itemize
8846
8847 @section datascope
8848
8849 Video data analysis filter.
8850
8851 This filter shows hexadecimal pixel values of part of video.
8852
8853 The filter accepts the following options:
8854
8855 @table @option
8856 @item size, s
8857 Set output video size.
8858
8859 @item x
8860 Set x offset from where to pick pixels.
8861
8862 @item y
8863 Set y offset from where to pick pixels.
8864
8865 @item mode
8866 Set scope mode, can be one of the following:
8867 @table @samp
8868 @item mono
8869 Draw hexadecimal pixel values with white color on black background.
8870
8871 @item color
8872 Draw hexadecimal pixel values with input video pixel color on black
8873 background.
8874
8875 @item color2
8876 Draw hexadecimal pixel values on color background picked from input video,
8877 the text color is picked in such way so its always visible.
8878 @end table
8879
8880 @item axis
8881 Draw rows and columns numbers on left and top of video.
8882
8883 @item opacity
8884 Set background opacity.
8885
8886 @item format
8887 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
8888 @end table
8889
8890 @section dblur
8891 Apply Directional blur filter.
8892
8893 The filter accepts the following options:
8894
8895 @table @option
8896 @item angle
8897 Set angle of directional blur. Default is @code{45}.
8898
8899 @item radius
8900 Set radius of directional blur. Default is @code{5}.
8901
8902 @item planes
8903 Set which planes to filter. By default all planes are filtered.
8904 @end table
8905
8906 @subsection Commands
8907 This filter supports same @ref{commands} as options.
8908 The command accepts the same syntax of the corresponding option.
8909
8910 If the specified expression is not valid, it is kept at its current
8911 value.
8912
8913 @section dctdnoiz
8914
8915 Denoise frames using 2D DCT (frequency domain filtering).
8916
8917 This filter is not designed for real time.
8918
8919 The filter accepts the following options:
8920
8921 @table @option
8922 @item sigma, s
8923 Set the noise sigma constant.
8924
8925 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
8926 coefficient (absolute value) below this threshold with be dropped.
8927
8928 If you need a more advanced filtering, see @option{expr}.
8929
8930 Default is @code{0}.
8931
8932 @item overlap
8933 Set number overlapping pixels for each block. Since the filter can be slow, you
8934 may want to reduce this value, at the cost of a less effective filter and the
8935 risk of various artefacts.
8936
8937 If the overlapping value doesn't permit processing the whole input width or
8938 height, a warning will be displayed and according borders won't be denoised.
8939
8940 Default value is @var{blocksize}-1, which is the best possible setting.
8941
8942 @item expr, e
8943 Set the coefficient factor expression.
8944
8945 For each coefficient of a DCT block, this expression will be evaluated as a
8946 multiplier value for the coefficient.
8947
8948 If this is option is set, the @option{sigma} option will be ignored.
8949
8950 The absolute value of the coefficient can be accessed through the @var{c}
8951 variable.
8952
8953 @item n
8954 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8955 @var{blocksize}, which is the width and height of the processed blocks.
8956
8957 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8958 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8959 on the speed processing. Also, a larger block size does not necessarily means a
8960 better de-noising.
8961 @end table
8962
8963 @subsection Examples
8964
8965 Apply a denoise with a @option{sigma} of @code{4.5}:
8966 @example
8967 dctdnoiz=4.5
8968 @end example
8969
8970 The same operation can be achieved using the expression system:
8971 @example
8972 dctdnoiz=e='gte(c, 4.5*3)'
8973 @end example
8974
8975 Violent denoise using a block size of @code{16x16}:
8976 @example
8977 dctdnoiz=15:n=4
8978 @end example
8979
8980 @section deband
8981
8982 Remove banding artifacts from input video.
8983 It works by replacing banded pixels with average value of referenced pixels.
8984
8985 The filter accepts the following options:
8986
8987 @table @option
8988 @item 1thr
8989 @item 2thr
8990 @item 3thr
8991 @item 4thr
8992 Set banding detection threshold for each plane. Default is 0.02.
8993 Valid range is 0.00003 to 0.5.
8994 If difference between current pixel and reference pixel is less than threshold,
8995 it will be considered as banded.
8996
8997 @item range, r
8998 Banding detection range in pixels. Default is 16. If positive, random number
8999 in range 0 to set value will be used. If negative, exact absolute value
9000 will be used.
9001 The range defines square of four pixels around current pixel.
9002
9003 @item direction, d
9004 Set direction in radians from which four pixel will be compared. If positive,
9005 random direction from 0 to set direction will be picked. If negative, exact of
9006 absolute value will be picked. For example direction 0, -PI or -2*PI radians
9007 will pick only pixels on same row and -PI/2 will pick only pixels on same
9008 column.
9009
9010 @item blur, b
9011 If enabled, current pixel is compared with average value of all four
9012 surrounding pixels. The default is enabled. If disabled current pixel is
9013 compared with all four surrounding pixels. The pixel is considered banded
9014 if only all four differences with surrounding pixels are less than threshold.
9015
9016 @item coupling, c
9017 If enabled, current pixel is changed if and only if all pixel components are banded,
9018 e.g. banding detection threshold is triggered for all color components.
9019 The default is disabled.
9020 @end table
9021
9022 @section deblock
9023
9024 Remove blocking artifacts from input video.
9025
9026 The filter accepts the following options:
9027
9028 @table @option
9029 @item filter
9030 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9031 This controls what kind of deblocking is applied.
9032
9033 @item block
9034 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9035
9036 @item alpha
9037 @item beta
9038 @item gamma
9039 @item delta
9040 Set blocking detection thresholds. Allowed range is 0 to 1.
9041 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9042 Using higher threshold gives more deblocking strength.
9043 Setting @var{alpha} controls threshold detection at exact edge of block.
9044 Remaining options controls threshold detection near the edge. Each one for
9045 below/above or left/right. Setting any of those to @var{0} disables
9046 deblocking.
9047
9048 @item planes
9049 Set planes to filter. Default is to filter all available planes.
9050 @end table
9051
9052 @subsection Examples
9053
9054 @itemize
9055 @item
9056 Deblock using weak filter and block size of 4 pixels.
9057 @example
9058 deblock=filter=weak:block=4
9059 @end example
9060
9061 @item
9062 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9063 deblocking more edges.
9064 @example
9065 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9066 @end example
9067
9068 @item
9069 Similar as above, but filter only first plane.
9070 @example
9071 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9072 @end example
9073
9074 @item
9075 Similar as above, but filter only second and third plane.
9076 @example
9077 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9078 @end example
9079 @end itemize
9080
9081 @anchor{decimate}
9082 @section decimate
9083
9084 Drop duplicated frames at regular intervals.
9085
9086 The filter accepts the following options:
9087
9088 @table @option
9089 @item cycle
9090 Set the number of frames from which one will be dropped. Setting this to
9091 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9092 Default is @code{5}.
9093
9094 @item dupthresh
9095 Set the threshold for duplicate detection. If the difference metric for a frame
9096 is less than or equal to this value, then it is declared as duplicate. Default
9097 is @code{1.1}
9098
9099 @item scthresh
9100 Set scene change threshold. Default is @code{15}.
9101
9102 @item blockx
9103 @item blocky
9104 Set the size of the x and y-axis blocks used during metric calculations.
9105 Larger blocks give better noise suppression, but also give worse detection of
9106 small movements. Must be a power of two. Default is @code{32}.
9107
9108 @item ppsrc
9109 Mark main input as a pre-processed input and activate clean source input
9110 stream. This allows the input to be pre-processed with various filters to help
9111 the metrics calculation while keeping the frame selection lossless. When set to
9112 @code{1}, the first stream is for the pre-processed input, and the second
9113 stream is the clean source from where the kept frames are chosen. Default is
9114 @code{0}.
9115
9116 @item chroma
9117 Set whether or not chroma is considered in the metric calculations. Default is
9118 @code{1}.
9119 @end table
9120
9121 @section deconvolve
9122
9123 Apply 2D deconvolution of video stream in frequency domain using second stream
9124 as impulse.
9125
9126 The filter accepts the following options:
9127
9128 @table @option
9129 @item planes
9130 Set which planes to process.
9131
9132 @item impulse
9133 Set which impulse video frames will be processed, can be @var{first}
9134 or @var{all}. Default is @var{all}.
9135
9136 @item noise
9137 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9138 and height are not same and not power of 2 or if stream prior to convolving
9139 had noise.
9140 @end table
9141
9142 The @code{deconvolve} filter also supports the @ref{framesync} options.
9143
9144 @section dedot
9145
9146 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9147
9148 It accepts the following options:
9149
9150 @table @option
9151 @item m
9152 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9153 @var{rainbows} for cross-color reduction.
9154
9155 @item lt
9156 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9157
9158 @item tl
9159 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9160
9161 @item tc
9162 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9163
9164 @item ct
9165 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9166 @end table
9167
9168 @section deflate
9169
9170 Apply deflate effect to the video.
9171
9172 This filter replaces the pixel by the local(3x3) average by taking into account
9173 only values lower than the pixel.
9174
9175 It accepts the following options:
9176
9177 @table @option
9178 @item threshold0
9179 @item threshold1
9180 @item threshold2
9181 @item threshold3
9182 Limit the maximum change for each plane, default is 65535.
9183 If 0, plane will remain unchanged.
9184 @end table
9185
9186 @subsection Commands
9187
9188 This filter supports the all above options as @ref{commands}.
9189
9190 @section deflicker
9191
9192 Remove temporal frame luminance variations.
9193
9194 It accepts the following options:
9195
9196 @table @option
9197 @item size, s
9198 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9199
9200 @item mode, m
9201 Set averaging mode to smooth temporal luminance variations.
9202
9203 Available values are:
9204 @table @samp
9205 @item am
9206 Arithmetic mean
9207
9208 @item gm
9209 Geometric mean
9210
9211 @item hm
9212 Harmonic mean
9213
9214 @item qm
9215 Quadratic mean
9216
9217 @item cm
9218 Cubic mean
9219
9220 @item pm
9221 Power mean
9222
9223 @item median
9224 Median
9225 @end table
9226
9227 @item bypass
9228 Do not actually modify frame. Useful when one only wants metadata.
9229 @end table
9230
9231 @section dejudder
9232
9233 Remove judder produced by partially interlaced telecined content.
9234
9235 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9236 source was partially telecined content then the output of @code{pullup,dejudder}
9237 will have a variable frame rate. May change the recorded frame rate of the
9238 container. Aside from that change, this filter will not affect constant frame
9239 rate video.
9240
9241 The option available in this filter is:
9242 @table @option
9243
9244 @item cycle
9245 Specify the length of the window over which the judder repeats.
9246
9247 Accepts any integer greater than 1. Useful values are:
9248 @table @samp
9249
9250 @item 4
9251 If the original was telecined from 24 to 30 fps (Film to NTSC).
9252
9253 @item 5
9254 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9255
9256 @item 20
9257 If a mixture of the two.
9258 @end table
9259
9260 The default is @samp{4}.
9261 @end table
9262
9263 @section delogo
9264
9265 Suppress a TV station logo by a simple interpolation of the surrounding
9266 pixels. Just set a rectangle covering the logo and watch it disappear
9267 (and sometimes something even uglier appear - your mileage may vary).
9268
9269 It accepts the following parameters:
9270 @table @option
9271
9272 @item x
9273 @item y
9274 Specify the top left corner coordinates of the logo. They must be
9275 specified.
9276
9277 @item w
9278 @item h
9279 Specify the width and height of the logo to clear. They must be
9280 specified.
9281
9282 @item band, t
9283 Specify the thickness of the fuzzy edge of the rectangle (added to
9284 @var{w} and @var{h}). The default value is 1. This option is
9285 deprecated, setting higher values should no longer be necessary and
9286 is not recommended.
9287
9288 @item show
9289 When set to 1, a green rectangle is drawn on the screen to simplify
9290 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9291 The default value is 0.
9292
9293 The rectangle is drawn on the outermost pixels which will be (partly)
9294 replaced with interpolated values. The values of the next pixels
9295 immediately outside this rectangle in each direction will be used to
9296 compute the interpolated pixel values inside the rectangle.
9297
9298 @end table
9299
9300 @subsection Examples
9301
9302 @itemize
9303 @item
9304 Set a rectangle covering the area with top left corner coordinates 0,0
9305 and size 100x77, and a band of size 10:
9306 @example
9307 delogo=x=0:y=0:w=100:h=77:band=10
9308 @end example
9309
9310 @end itemize
9311
9312 @anchor{derain}
9313 @section derain
9314
9315 Remove the rain in the input image/video by applying the derain methods based on
9316 convolutional neural networks. Supported models:
9317
9318 @itemize
9319 @item
9320 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9321 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9322 @end itemize
9323
9324 Training as well as model generation scripts are provided in
9325 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9326
9327 Native model files (.model) can be generated from TensorFlow model
9328 files (.pb) by using tools/python/convert.py
9329
9330 The filter accepts the following options:
9331
9332 @table @option
9333 @item filter_type
9334 Specify which filter to use. This option accepts the following values:
9335
9336 @table @samp
9337 @item derain
9338 Derain filter. To conduct derain filter, you need to use a derain model.
9339
9340 @item dehaze
9341 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9342 @end table
9343 Default value is @samp{derain}.
9344
9345 @item dnn_backend
9346 Specify which DNN backend to use for model loading and execution. This option accepts
9347 the following values:
9348
9349 @table @samp
9350 @item native
9351 Native implementation of DNN loading and execution.
9352
9353 @item tensorflow
9354 TensorFlow backend. To enable this backend you
9355 need to install the TensorFlow for C library (see
9356 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9357 @code{--enable-libtensorflow}
9358 @end table
9359 Default value is @samp{native}.
9360
9361 @item model
9362 Set path to model file specifying network architecture and its parameters.
9363 Note that different backends use different file formats. TensorFlow and native
9364 backend can load files for only its format.
9365 @end table
9366
9367 It can also be finished with @ref{dnn_processing} filter.
9368
9369 @section deshake
9370
9371 Attempt to fix small changes in horizontal and/or vertical shift. This
9372 filter helps remove camera shake from hand-holding a camera, bumping a
9373 tripod, moving on a vehicle, etc.
9374
9375 The filter accepts the following options:
9376
9377 @table @option
9378
9379 @item x
9380 @item y
9381 @item w
9382 @item h
9383 Specify a rectangular area where to limit the search for motion
9384 vectors.
9385 If desired the search for motion vectors can be limited to a
9386 rectangular area of the frame defined by its top left corner, width
9387 and height. These parameters have the same meaning as the drawbox
9388 filter which can be used to visualise the position of the bounding
9389 box.
9390
9391 This is useful when simultaneous movement of subjects within the frame
9392 might be confused for camera motion by the motion vector search.
9393
9394 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9395 then the full frame is used. This allows later options to be set
9396 without specifying the bounding box for the motion vector search.
9397
9398 Default - search the whole frame.
9399
9400 @item rx
9401 @item ry
9402 Specify the maximum extent of movement in x and y directions in the
9403 range 0-64 pixels. Default 16.
9404
9405 @item edge
9406 Specify how to generate pixels to fill blanks at the edge of the
9407 frame. Available values are:
9408 @table @samp
9409 @item blank, 0
9410 Fill zeroes at blank locations
9411 @item original, 1
9412 Original image at blank locations
9413 @item clamp, 2
9414 Extruded edge value at blank locations
9415 @item mirror, 3
9416 Mirrored edge at blank locations
9417 @end table
9418 Default value is @samp{mirror}.
9419
9420 @item blocksize
9421 Specify the blocksize to use for motion search. Range 4-128 pixels,
9422 default 8.
9423
9424 @item contrast
9425 Specify the contrast threshold for blocks. Only blocks with more than
9426 the specified contrast (difference between darkest and lightest
9427 pixels) will be considered. Range 1-255, default 125.
9428
9429 @item search
9430 Specify the search strategy. Available values are:
9431 @table @samp
9432 @item exhaustive, 0
9433 Set exhaustive search
9434 @item less, 1
9435 Set less exhaustive search.
9436 @end table
9437 Default value is @samp{exhaustive}.
9438
9439 @item filename
9440 If set then a detailed log of the motion search is written to the
9441 specified file.
9442
9443 @end table
9444
9445 @section despill
9446
9447 Remove unwanted contamination of foreground colors, caused by reflected color of
9448 greenscreen or bluescreen.
9449
9450 This filter accepts the following options:
9451
9452 @table @option
9453 @item type
9454 Set what type of despill to use.
9455
9456 @item mix
9457 Set how spillmap will be generated.
9458
9459 @item expand
9460 Set how much to get rid of still remaining spill.
9461
9462 @item red
9463 Controls amount of red in spill area.
9464
9465 @item green
9466 Controls amount of green in spill area.
9467 Should be -1 for greenscreen.
9468
9469 @item blue
9470 Controls amount of blue in spill area.
9471 Should be -1 for bluescreen.
9472
9473 @item brightness
9474 Controls brightness of spill area, preserving colors.
9475
9476 @item alpha
9477 Modify alpha from generated spillmap.
9478 @end table
9479
9480 @subsection Commands
9481
9482 This filter supports the all above options as @ref{commands}.
9483
9484 @section detelecine
9485
9486 Apply an exact inverse of the telecine operation. It requires a predefined
9487 pattern specified using the pattern option which must be the same as that passed
9488 to the telecine filter.
9489
9490 This filter accepts the following options:
9491
9492 @table @option
9493 @item first_field
9494 @table @samp
9495 @item top, t
9496 top field first
9497 @item bottom, b
9498 bottom field first
9499 The default value is @code{top}.
9500 @end table
9501
9502 @item pattern
9503 A string of numbers representing the pulldown pattern you wish to apply.
9504 The default value is @code{23}.
9505
9506 @item start_frame
9507 A number representing position of the first frame with respect to the telecine
9508 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9509 @end table
9510
9511 @section dilation
9512
9513 Apply dilation effect to the video.
9514
9515 This filter replaces the pixel by the local(3x3) maximum.
9516
9517 It accepts the following options:
9518
9519 @table @option
9520 @item threshold0
9521 @item threshold1
9522 @item threshold2
9523 @item threshold3
9524 Limit the maximum change for each plane, default is 65535.
9525 If 0, plane will remain unchanged.
9526
9527 @item coordinates
9528 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9529 pixels are used.
9530
9531 Flags to local 3x3 coordinates maps like this:
9532
9533     1 2 3
9534     4   5
9535     6 7 8
9536 @end table
9537
9538 @subsection Commands
9539
9540 This filter supports the all above options as @ref{commands}.
9541
9542 @section displace
9543
9544 Displace pixels as indicated by second and third input stream.
9545
9546 It takes three input streams and outputs one stream, the first input is the
9547 source, and second and third input are displacement maps.
9548
9549 The second input specifies how much to displace pixels along the
9550 x-axis, while the third input specifies how much to displace pixels
9551 along the y-axis.
9552 If one of displacement map streams terminates, last frame from that
9553 displacement map will be used.
9554
9555 Note that once generated, displacements maps can be reused over and over again.
9556
9557 A description of the accepted options follows.
9558
9559 @table @option
9560 @item edge
9561 Set displace behavior for pixels that are out of range.
9562
9563 Available values are:
9564 @table @samp
9565 @item blank
9566 Missing pixels are replaced by black pixels.
9567
9568 @item smear
9569 Adjacent pixels will spread out to replace missing pixels.
9570
9571 @item wrap
9572 Out of range pixels are wrapped so they point to pixels of other side.
9573
9574 @item mirror
9575 Out of range pixels will be replaced with mirrored pixels.
9576 @end table
9577 Default is @samp{smear}.
9578
9579 @end table
9580
9581 @subsection Examples
9582
9583 @itemize
9584 @item
9585 Add ripple effect to rgb input of video size hd720:
9586 @example
9587 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
9588 @end example
9589
9590 @item
9591 Add wave effect to rgb input of video size hd720:
9592 @example
9593 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
9594 @end example
9595 @end itemize
9596
9597 @anchor{dnn_processing}
9598 @section dnn_processing
9599
9600 Do image processing with deep neural networks. It works together with another filter
9601 which converts the pixel format of the Frame to what the dnn network requires.
9602
9603 The filter accepts the following options:
9604
9605 @table @option
9606 @item dnn_backend
9607 Specify which DNN backend to use for model loading and execution. This option accepts
9608 the following values:
9609
9610 @table @samp
9611 @item native
9612 Native implementation of DNN loading and execution.
9613
9614 @item tensorflow
9615 TensorFlow backend. To enable this backend you
9616 need to install the TensorFlow for C library (see
9617 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9618 @code{--enable-libtensorflow}
9619
9620 @item openvino
9621 OpenVINO backend. To enable this backend you
9622 need to build and install the OpenVINO for C library (see
9623 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
9624 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
9625 be needed if the header files and libraries are not installed into system path)
9626
9627 @end table
9628
9629 Default value is @samp{native}.
9630
9631 @item model
9632 Set path to model file specifying network architecture and its parameters.
9633 Note that different backends use different file formats. TensorFlow, OpenVINO and native
9634 backend can load files for only its format.
9635
9636 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9637
9638 @item input
9639 Set the input name of the dnn network.
9640
9641 @item output
9642 Set the output name of the dnn network.
9643
9644 @end table
9645
9646 @subsection Examples
9647
9648 @itemize
9649 @item
9650 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
9651 @example
9652 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
9653 @end example
9654
9655 @item
9656 Halve the pixel value of the frame with format gray32f:
9657 @example
9658 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
9659 @end example
9660
9661 @item
9662 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
9663 @example
9664 ./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
9665 @end example
9666
9667 @item
9668 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
9669 @example
9670 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
9671 @end example
9672
9673 @end itemize
9674
9675 @section drawbox
9676
9677 Draw a colored box on the input image.
9678
9679 It accepts the following parameters:
9680
9681 @table @option
9682 @item x
9683 @item y
9684 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
9685
9686 @item width, w
9687 @item height, h
9688 The expressions which specify the width and height of the box; if 0 they are interpreted as
9689 the input width and height. It defaults to 0.
9690
9691 @item color, c
9692 Specify the color of the box to write. For the general syntax of this option,
9693 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9694 value @code{invert} is used, the box edge color is the same as the
9695 video with inverted luma.
9696
9697 @item thickness, t
9698 The expression which sets the thickness of the box edge.
9699 A value of @code{fill} will create a filled box. Default value is @code{3}.
9700
9701 See below for the list of accepted constants.
9702
9703 @item replace
9704 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
9705 will overwrite the video's color and alpha pixels.
9706 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
9707 @end table
9708
9709 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9710 following constants:
9711
9712 @table @option
9713 @item dar
9714 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9715
9716 @item hsub
9717 @item vsub
9718 horizontal and vertical chroma subsample values. For example for the
9719 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9720
9721 @item in_h, ih
9722 @item in_w, iw
9723 The input width and height.
9724
9725 @item sar
9726 The input sample aspect ratio.
9727
9728 @item x
9729 @item y
9730 The x and y offset coordinates where the box is drawn.
9731
9732 @item w
9733 @item h
9734 The width and height of the drawn box.
9735
9736 @item t
9737 The thickness of the drawn box.
9738
9739 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9740 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9741
9742 @end table
9743
9744 @subsection Examples
9745
9746 @itemize
9747 @item
9748 Draw a black box around the edge of the input image:
9749 @example
9750 drawbox
9751 @end example
9752
9753 @item
9754 Draw a box with color red and an opacity of 50%:
9755 @example
9756 drawbox=10:20:200:60:red@@0.5
9757 @end example
9758
9759 The previous example can be specified as:
9760 @example
9761 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
9762 @end example
9763
9764 @item
9765 Fill the box with pink color:
9766 @example
9767 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
9768 @end example
9769
9770 @item
9771 Draw a 2-pixel red 2.40:1 mask:
9772 @example
9773 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
9774 @end example
9775 @end itemize
9776
9777 @subsection Commands
9778 This filter supports same commands as options.
9779 The command accepts the same syntax of the corresponding option.
9780
9781 If the specified expression is not valid, it is kept at its current
9782 value.
9783
9784 @anchor{drawgraph}
9785 @section drawgraph
9786 Draw a graph using input video metadata.
9787
9788 It accepts the following parameters:
9789
9790 @table @option
9791 @item m1
9792 Set 1st frame metadata key from which metadata values will be used to draw a graph.
9793
9794 @item fg1
9795 Set 1st foreground color expression.
9796
9797 @item m2
9798 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
9799
9800 @item fg2
9801 Set 2nd foreground color expression.
9802
9803 @item m3
9804 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
9805
9806 @item fg3
9807 Set 3rd foreground color expression.
9808
9809 @item m4
9810 Set 4th frame metadata key from which metadata values will be used to draw a graph.
9811
9812 @item fg4
9813 Set 4th foreground color expression.
9814
9815 @item min
9816 Set minimal value of metadata value.
9817
9818 @item max
9819 Set maximal value of metadata value.
9820
9821 @item bg
9822 Set graph background color. Default is white.
9823
9824 @item mode
9825 Set graph mode.
9826
9827 Available values for mode is:
9828 @table @samp
9829 @item bar
9830 @item dot
9831 @item line
9832 @end table
9833
9834 Default is @code{line}.
9835
9836 @item slide
9837 Set slide mode.
9838
9839 Available values for slide is:
9840 @table @samp
9841 @item frame
9842 Draw new frame when right border is reached.
9843
9844 @item replace
9845 Replace old columns with new ones.
9846
9847 @item scroll
9848 Scroll from right to left.
9849
9850 @item rscroll
9851 Scroll from left to right.
9852
9853 @item picture
9854 Draw single picture.
9855 @end table
9856
9857 Default is @code{frame}.
9858
9859 @item size
9860 Set size of graph video. For the syntax of this option, check the
9861 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9862 The default value is @code{900x256}.
9863
9864 @item rate, r
9865 Set the output frame rate. Default value is @code{25}.
9866
9867 The foreground color expressions can use the following variables:
9868 @table @option
9869 @item MIN
9870 Minimal value of metadata value.
9871
9872 @item MAX
9873 Maximal value of metadata value.
9874
9875 @item VAL
9876 Current metadata key value.
9877 @end table
9878
9879 The color is defined as 0xAABBGGRR.
9880 @end table
9881
9882 Example using metadata from @ref{signalstats} filter:
9883 @example
9884 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
9885 @end example
9886
9887 Example using metadata from @ref{ebur128} filter:
9888 @example
9889 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
9890 @end example
9891
9892 @section drawgrid
9893
9894 Draw a grid on the input image.
9895
9896 It accepts the following parameters:
9897
9898 @table @option
9899 @item x
9900 @item y
9901 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
9902
9903 @item width, w
9904 @item height, h
9905 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
9906 input width and height, respectively, minus @code{thickness}, so image gets
9907 framed. Default to 0.
9908
9909 @item color, c
9910 Specify the color of the grid. For the general syntax of this option,
9911 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9912 value @code{invert} is used, the grid color is the same as the
9913 video with inverted luma.
9914
9915 @item thickness, t
9916 The expression which sets the thickness of the grid line. Default value is @code{1}.
9917
9918 See below for the list of accepted constants.
9919
9920 @item replace
9921 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
9922 will overwrite the video's color and alpha pixels.
9923 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
9924 @end table
9925
9926 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9927 following constants:
9928
9929 @table @option
9930 @item dar
9931 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9932
9933 @item hsub
9934 @item vsub
9935 horizontal and vertical chroma subsample values. For example for the
9936 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9937
9938 @item in_h, ih
9939 @item in_w, iw
9940 The input grid cell width and height.
9941
9942 @item sar
9943 The input sample aspect ratio.
9944
9945 @item x
9946 @item y
9947 The x and y coordinates of some point of grid intersection (meant to configure offset).
9948
9949 @item w
9950 @item h
9951 The width and height of the drawn cell.
9952
9953 @item t
9954 The thickness of the drawn cell.
9955
9956 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9957 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9958
9959 @end table
9960
9961 @subsection Examples
9962
9963 @itemize
9964 @item
9965 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
9966 @example
9967 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
9968 @end example
9969
9970 @item
9971 Draw a white 3x3 grid with an opacity of 50%:
9972 @example
9973 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
9974 @end example
9975 @end itemize
9976
9977 @subsection Commands
9978 This filter supports same commands as options.
9979 The command accepts the same syntax of the corresponding option.
9980
9981 If the specified expression is not valid, it is kept at its current
9982 value.
9983
9984 @anchor{drawtext}
9985 @section drawtext
9986
9987 Draw a text string or text from a specified file on top of a video, using the
9988 libfreetype library.
9989
9990 To enable compilation of this filter, you need to configure FFmpeg with
9991 @code{--enable-libfreetype}.
9992 To enable default font fallback and the @var{font} option you need to
9993 configure FFmpeg with @code{--enable-libfontconfig}.
9994 To enable the @var{text_shaping} option, you need to configure FFmpeg with
9995 @code{--enable-libfribidi}.
9996
9997 @subsection Syntax
9998
9999 It accepts the following parameters:
10000
10001 @table @option
10002
10003 @item box
10004 Used to draw a box around text using the background color.
10005 The value must be either 1 (enable) or 0 (disable).
10006 The default value of @var{box} is 0.
10007
10008 @item boxborderw
10009 Set the width of the border to be drawn around the box using @var{boxcolor}.
10010 The default value of @var{boxborderw} is 0.
10011
10012 @item boxcolor
10013 The color to be used for drawing box around text. For the syntax of this
10014 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10015
10016 The default value of @var{boxcolor} is "white".
10017
10018 @item line_spacing
10019 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10020 The default value of @var{line_spacing} is 0.
10021
10022 @item borderw
10023 Set the width of the border to be drawn around the text using @var{bordercolor}.
10024 The default value of @var{borderw} is 0.
10025
10026 @item bordercolor
10027 Set the color to be used for drawing border around text. For the syntax of this
10028 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10029
10030 The default value of @var{bordercolor} is "black".
10031
10032 @item expansion
10033 Select how the @var{text} is expanded. Can be either @code{none},
10034 @code{strftime} (deprecated) or
10035 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10036 below for details.
10037
10038 @item basetime
10039 Set a start time for the count. Value is in microseconds. Only applied
10040 in the deprecated strftime expansion mode. To emulate in normal expansion
10041 mode use the @code{pts} function, supplying the start time (in seconds)
10042 as the second argument.
10043
10044 @item fix_bounds
10045 If true, check and fix text coords to avoid clipping.
10046
10047 @item fontcolor
10048 The color to be used for drawing fonts. For the syntax of this option, check
10049 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10050
10051 The default value of @var{fontcolor} is "black".
10052
10053 @item fontcolor_expr
10054 String which is expanded the same way as @var{text} to obtain dynamic
10055 @var{fontcolor} value. By default this option has empty value and is not
10056 processed. When this option is set, it overrides @var{fontcolor} option.
10057
10058 @item font
10059 The font family to be used for drawing text. By default Sans.
10060
10061 @item fontfile
10062 The font file to be used for drawing text. The path must be included.
10063 This parameter is mandatory if the fontconfig support is disabled.
10064
10065 @item alpha
10066 Draw the text applying alpha blending. The value can
10067 be a number between 0.0 and 1.0.
10068 The expression accepts the same variables @var{x, y} as well.
10069 The default value is 1.
10070 Please see @var{fontcolor_expr}.
10071
10072 @item fontsize
10073 The font size to be used for drawing text.
10074 The default value of @var{fontsize} is 16.
10075
10076 @item text_shaping
10077 If set to 1, attempt to shape the text (for example, reverse the order of
10078 right-to-left text and join Arabic characters) before drawing it.
10079 Otherwise, just draw the text exactly as given.
10080 By default 1 (if supported).
10081
10082 @item ft_load_flags
10083 The flags to be used for loading the fonts.
10084
10085 The flags map the corresponding flags supported by libfreetype, and are
10086 a combination of the following values:
10087 @table @var
10088 @item default
10089 @item no_scale
10090 @item no_hinting
10091 @item render
10092 @item no_bitmap
10093 @item vertical_layout
10094 @item force_autohint
10095 @item crop_bitmap
10096 @item pedantic
10097 @item ignore_global_advance_width
10098 @item no_recurse
10099 @item ignore_transform
10100 @item monochrome
10101 @item linear_design
10102 @item no_autohint
10103 @end table
10104
10105 Default value is "default".
10106
10107 For more information consult the documentation for the FT_LOAD_*
10108 libfreetype flags.
10109
10110 @item shadowcolor
10111 The color to be used for drawing a shadow behind the drawn text. For the
10112 syntax of this option, check the @ref{color syntax,,"Color" section in the
10113 ffmpeg-utils manual,ffmpeg-utils}.
10114
10115 The default value of @var{shadowcolor} is "black".
10116
10117 @item shadowx
10118 @item shadowy
10119 The x and y offsets for the text shadow position with respect to the
10120 position of the text. They can be either positive or negative
10121 values. The default value for both is "0".
10122
10123 @item start_number
10124 The starting frame number for the n/frame_num variable. The default value
10125 is "0".
10126
10127 @item tabsize
10128 The size in number of spaces to use for rendering the tab.
10129 Default value is 4.
10130
10131 @item timecode
10132 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10133 format. It can be used with or without text parameter. @var{timecode_rate}
10134 option must be specified.
10135
10136 @item timecode_rate, rate, r
10137 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10138 integer. Minimum value is "1".
10139 Drop-frame timecode is supported for frame rates 30 & 60.
10140
10141 @item tc24hmax
10142 If set to 1, the output of the timecode option will wrap around at 24 hours.
10143 Default is 0 (disabled).
10144
10145 @item text
10146 The text string to be drawn. The text must be a sequence of UTF-8
10147 encoded characters.
10148 This parameter is mandatory if no file is specified with the parameter
10149 @var{textfile}.
10150
10151 @item textfile
10152 A text file containing text to be drawn. The text must be a sequence
10153 of UTF-8 encoded characters.
10154
10155 This parameter is mandatory if no text string is specified with the
10156 parameter @var{text}.
10157
10158 If both @var{text} and @var{textfile} are specified, an error is thrown.
10159
10160 @item reload
10161 If set to 1, the @var{textfile} will be reloaded before each frame.
10162 Be sure to update it atomically, or it may be read partially, or even fail.
10163
10164 @item x
10165 @item y
10166 The expressions which specify the offsets where text will be drawn
10167 within the video frame. They are relative to the top/left border of the
10168 output image.
10169
10170 The default value of @var{x} and @var{y} is "0".
10171
10172 See below for the list of accepted constants and functions.
10173 @end table
10174
10175 The parameters for @var{x} and @var{y} are expressions containing the
10176 following constants and functions:
10177
10178 @table @option
10179 @item dar
10180 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10181
10182 @item hsub
10183 @item vsub
10184 horizontal and vertical chroma subsample values. For example for the
10185 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10186
10187 @item line_h, lh
10188 the height of each text line
10189
10190 @item main_h, h, H
10191 the input height
10192
10193 @item main_w, w, W
10194 the input width
10195
10196 @item max_glyph_a, ascent
10197 the maximum distance from the baseline to the highest/upper grid
10198 coordinate used to place a glyph outline point, for all the rendered
10199 glyphs.
10200 It is a positive value, due to the grid's orientation with the Y axis
10201 upwards.
10202
10203 @item max_glyph_d, descent
10204 the maximum distance from the baseline to the lowest grid coordinate
10205 used to place a glyph outline point, for all the rendered glyphs.
10206 This is a negative value, due to the grid's orientation, with the Y axis
10207 upwards.
10208
10209 @item max_glyph_h
10210 maximum glyph height, that is the maximum height for all the glyphs
10211 contained in the rendered text, it is equivalent to @var{ascent} -
10212 @var{descent}.
10213
10214 @item max_glyph_w
10215 maximum glyph width, that is the maximum width for all the glyphs
10216 contained in the rendered text
10217
10218 @item n
10219 the number of input frame, starting from 0
10220
10221 @item rand(min, max)
10222 return a random number included between @var{min} and @var{max}
10223
10224 @item sar
10225 The input sample aspect ratio.
10226
10227 @item t
10228 timestamp expressed in seconds, NAN if the input timestamp is unknown
10229
10230 @item text_h, th
10231 the height of the rendered text
10232
10233 @item text_w, tw
10234 the width of the rendered text
10235
10236 @item x
10237 @item y
10238 the x and y offset coordinates where the text is drawn.
10239
10240 These parameters allow the @var{x} and @var{y} expressions to refer
10241 to each other, so you can for example specify @code{y=x/dar}.
10242
10243 @item pict_type
10244 A one character description of the current frame's picture type.
10245
10246 @item pkt_pos
10247 The current packet's position in the input file or stream
10248 (in bytes, from the start of the input). A value of -1 indicates
10249 this info is not available.
10250
10251 @item pkt_duration
10252 The current packet's duration, in seconds.
10253
10254 @item pkt_size
10255 The current packet's size (in bytes).
10256 @end table
10257
10258 @anchor{drawtext_expansion}
10259 @subsection Text expansion
10260
10261 If @option{expansion} is set to @code{strftime},
10262 the filter recognizes strftime() sequences in the provided text and
10263 expands them accordingly. Check the documentation of strftime(). This
10264 feature is deprecated.
10265
10266 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10267
10268 If @option{expansion} is set to @code{normal} (which is the default),
10269 the following expansion mechanism is used.
10270
10271 The backslash character @samp{\}, followed by any character, always expands to
10272 the second character.
10273
10274 Sequences of the form @code{%@{...@}} are expanded. The text between the
10275 braces is a function name, possibly followed by arguments separated by ':'.
10276 If the arguments contain special characters or delimiters (':' or '@}'),
10277 they should be escaped.
10278
10279 Note that they probably must also be escaped as the value for the
10280 @option{text} option in the filter argument string and as the filter
10281 argument in the filtergraph description, and possibly also for the shell,
10282 that makes up to four levels of escaping; using a text file avoids these
10283 problems.
10284
10285 The following functions are available:
10286
10287 @table @command
10288
10289 @item expr, e
10290 The expression evaluation result.
10291
10292 It must take one argument specifying the expression to be evaluated,
10293 which accepts the same constants and functions as the @var{x} and
10294 @var{y} values. Note that not all constants should be used, for
10295 example the text size is not known when evaluating the expression, so
10296 the constants @var{text_w} and @var{text_h} will have an undefined
10297 value.
10298
10299 @item expr_int_format, eif
10300 Evaluate the expression's value and output as formatted integer.
10301
10302 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10303 The second argument specifies the output format. Allowed values are @samp{x},
10304 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10305 @code{printf} function.
10306 The third parameter is optional and sets the number of positions taken by the output.
10307 It can be used to add padding with zeros from the left.
10308
10309 @item gmtime
10310 The time at which the filter is running, expressed in UTC.
10311 It can accept an argument: a strftime() format string.
10312
10313 @item localtime
10314 The time at which the filter is running, expressed in the local time zone.
10315 It can accept an argument: a strftime() format string.
10316
10317 @item metadata
10318 Frame metadata. Takes one or two arguments.
10319
10320 The first argument is mandatory and specifies the metadata key.
10321
10322 The second argument is optional and specifies a default value, used when the
10323 metadata key is not found or empty.
10324
10325 Available metadata can be identified by inspecting entries
10326 starting with TAG included within each frame section
10327 printed by running @code{ffprobe -show_frames}.
10328
10329 String metadata generated in filters leading to
10330 the drawtext filter are also available.
10331
10332 @item n, frame_num
10333 The frame number, starting from 0.
10334
10335 @item pict_type
10336 A one character description of the current picture type.
10337
10338 @item pts
10339 The timestamp of the current frame.
10340 It can take up to three arguments.
10341
10342 The first argument is the format of the timestamp; it defaults to @code{flt}
10343 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10344 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10345 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10346 @code{localtime} stands for the timestamp of the frame formatted as
10347 local time zone time.
10348
10349 The second argument is an offset added to the timestamp.
10350
10351 If the format is set to @code{hms}, a third argument @code{24HH} may be
10352 supplied to present the hour part of the formatted timestamp in 24h format
10353 (00-23).
10354
10355 If the format is set to @code{localtime} or @code{gmtime},
10356 a third argument may be supplied: a strftime() format string.
10357 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10358 @end table
10359
10360 @subsection Commands
10361
10362 This filter supports altering parameters via commands:
10363 @table @option
10364 @item reinit
10365 Alter existing filter parameters.
10366
10367 Syntax for the argument is the same as for filter invocation, e.g.
10368
10369 @example
10370 fontsize=56:fontcolor=green:text='Hello World'
10371 @end example
10372
10373 Full filter invocation with sendcmd would look like this:
10374
10375 @example
10376 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10377 @end example
10378 @end table
10379
10380 If the entire argument can't be parsed or applied as valid values then the filter will
10381 continue with its existing parameters.
10382
10383 @subsection Examples
10384
10385 @itemize
10386 @item
10387 Draw "Test Text" with font FreeSerif, using the default values for the
10388 optional parameters.
10389
10390 @example
10391 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10392 @end example
10393
10394 @item
10395 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10396 and y=50 (counting from the top-left corner of the screen), text is
10397 yellow with a red box around it. Both the text and the box have an
10398 opacity of 20%.
10399
10400 @example
10401 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10402           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10403 @end example
10404
10405 Note that the double quotes are not necessary if spaces are not used
10406 within the parameter list.
10407
10408 @item
10409 Show the text at the center of the video frame:
10410 @example
10411 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10412 @end example
10413
10414 @item
10415 Show the text at a random position, switching to a new position every 30 seconds:
10416 @example
10417 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)"
10418 @end example
10419
10420 @item
10421 Show a text line sliding from right to left in the last row of the video
10422 frame. The file @file{LONG_LINE} is assumed to contain a single line
10423 with no newlines.
10424 @example
10425 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10426 @end example
10427
10428 @item
10429 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10430 @example
10431 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10432 @end example
10433
10434 @item
10435 Draw a single green letter "g", at the center of the input video.
10436 The glyph baseline is placed at half screen height.
10437 @example
10438 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10439 @end example
10440
10441 @item
10442 Show text for 1 second every 3 seconds:
10443 @example
10444 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10445 @end example
10446
10447 @item
10448 Use fontconfig to set the font. Note that the colons need to be escaped.
10449 @example
10450 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10451 @end example
10452
10453 @item
10454 Draw "Test Text" with font size dependent on height of the video.
10455 @example
10456 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
10457 @end example
10458
10459 @item
10460 Print the date of a real-time encoding (see strftime(3)):
10461 @example
10462 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10463 @end example
10464
10465 @item
10466 Show text fading in and out (appearing/disappearing):
10467 @example
10468 #!/bin/sh
10469 DS=1.0 # display start
10470 DE=10.0 # display end
10471 FID=1.5 # fade in duration
10472 FOD=5 # fade out duration
10473 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 @}"
10474 @end example
10475
10476 @item
10477 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10478 and the @option{fontsize} value are included in the @option{y} offset.
10479 @example
10480 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10481 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10482 @end example
10483
10484 @item
10485 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10486 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10487 must have option @option{-export_path_metadata 1} for the special metadata fields
10488 to be available for filters.
10489 @example
10490 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10491 @end example
10492
10493 @end itemize
10494
10495 For more information about libfreetype, check:
10496 @url{http://www.freetype.org/}.
10497
10498 For more information about fontconfig, check:
10499 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10500
10501 For more information about libfribidi, check:
10502 @url{http://fribidi.org/}.
10503
10504 @section edgedetect
10505
10506 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10507
10508 The filter accepts the following options:
10509
10510 @table @option
10511 @item low
10512 @item high
10513 Set low and high threshold values used by the Canny thresholding
10514 algorithm.
10515
10516 The high threshold selects the "strong" edge pixels, which are then
10517 connected through 8-connectivity with the "weak" edge pixels selected
10518 by the low threshold.
10519
10520 @var{low} and @var{high} threshold values must be chosen in the range
10521 [0,1], and @var{low} should be lesser or equal to @var{high}.
10522
10523 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10524 is @code{50/255}.
10525
10526 @item mode
10527 Define the drawing mode.
10528
10529 @table @samp
10530 @item wires
10531 Draw white/gray wires on black background.
10532
10533 @item colormix
10534 Mix the colors to create a paint/cartoon effect.
10535
10536 @item canny
10537 Apply Canny edge detector on all selected planes.
10538 @end table
10539 Default value is @var{wires}.
10540
10541 @item planes
10542 Select planes for filtering. By default all available planes are filtered.
10543 @end table
10544
10545 @subsection Examples
10546
10547 @itemize
10548 @item
10549 Standard edge detection with custom values for the hysteresis thresholding:
10550 @example
10551 edgedetect=low=0.1:high=0.4
10552 @end example
10553
10554 @item
10555 Painting effect without thresholding:
10556 @example
10557 edgedetect=mode=colormix:high=0
10558 @end example
10559 @end itemize
10560
10561 @section elbg
10562
10563 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10564
10565 For each input image, the filter will compute the optimal mapping from
10566 the input to the output given the codebook length, that is the number
10567 of distinct output colors.
10568
10569 This filter accepts the following options.
10570
10571 @table @option
10572 @item codebook_length, l
10573 Set codebook length. The value must be a positive integer, and
10574 represents the number of distinct output colors. Default value is 256.
10575
10576 @item nb_steps, n
10577 Set the maximum number of iterations to apply for computing the optimal
10578 mapping. The higher the value the better the result and the higher the
10579 computation time. Default value is 1.
10580
10581 @item seed, s
10582 Set a random seed, must be an integer included between 0 and
10583 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10584 will try to use a good random seed on a best effort basis.
10585
10586 @item pal8
10587 Set pal8 output pixel format. This option does not work with codebook
10588 length greater than 256.
10589 @end table
10590
10591 @section entropy
10592
10593 Measure graylevel entropy in histogram of color channels of video frames.
10594
10595 It accepts the following parameters:
10596
10597 @table @option
10598 @item mode
10599 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10600
10601 @var{diff} mode measures entropy of histogram delta values, absolute differences
10602 between neighbour histogram values.
10603 @end table
10604
10605 @section eq
10606 Set brightness, contrast, saturation and approximate gamma adjustment.
10607
10608 The filter accepts the following options:
10609
10610 @table @option
10611 @item contrast
10612 Set the contrast expression. The value must be a float value in range
10613 @code{-1000.0} to @code{1000.0}. The default value is "1".
10614
10615 @item brightness
10616 Set the brightness expression. The value must be a float value in
10617 range @code{-1.0} to @code{1.0}. The default value is "0".
10618
10619 @item saturation
10620 Set the saturation expression. The value must be a float in
10621 range @code{0.0} to @code{3.0}. The default value is "1".
10622
10623 @item gamma
10624 Set the gamma expression. The value must be a float in range
10625 @code{0.1} to @code{10.0}.  The default value is "1".
10626
10627 @item gamma_r
10628 Set the gamma expression for red. The value must be a float in
10629 range @code{0.1} to @code{10.0}. The default value is "1".
10630
10631 @item gamma_g
10632 Set the gamma expression for green. The value must be a float in range
10633 @code{0.1} to @code{10.0}. The default value is "1".
10634
10635 @item gamma_b
10636 Set the gamma expression for blue. The value must be a float in range
10637 @code{0.1} to @code{10.0}. The default value is "1".
10638
10639 @item gamma_weight
10640 Set the gamma weight expression. It can be used to reduce the effect
10641 of a high gamma value on bright image areas, e.g. keep them from
10642 getting overamplified and just plain white. The value must be a float
10643 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10644 gamma correction all the way down while @code{1.0} leaves it at its
10645 full strength. Default is "1".
10646
10647 @item eval
10648 Set when the expressions for brightness, contrast, saturation and
10649 gamma expressions are evaluated.
10650
10651 It accepts the following values:
10652 @table @samp
10653 @item init
10654 only evaluate expressions once during the filter initialization or
10655 when a command is processed
10656
10657 @item frame
10658 evaluate expressions for each incoming frame
10659 @end table
10660
10661 Default value is @samp{init}.
10662 @end table
10663
10664 The expressions accept the following parameters:
10665 @table @option
10666 @item n
10667 frame count of the input frame starting from 0
10668
10669 @item pos
10670 byte position of the corresponding packet in the input file, NAN if
10671 unspecified
10672
10673 @item r
10674 frame rate of the input video, NAN if the input frame rate is unknown
10675
10676 @item t
10677 timestamp expressed in seconds, NAN if the input timestamp is unknown
10678 @end table
10679
10680 @subsection Commands
10681 The filter supports the following commands:
10682
10683 @table @option
10684 @item contrast
10685 Set the contrast expression.
10686
10687 @item brightness
10688 Set the brightness expression.
10689
10690 @item saturation
10691 Set the saturation expression.
10692
10693 @item gamma
10694 Set the gamma expression.
10695
10696 @item gamma_r
10697 Set the gamma_r expression.
10698
10699 @item gamma_g
10700 Set gamma_g expression.
10701
10702 @item gamma_b
10703 Set gamma_b expression.
10704
10705 @item gamma_weight
10706 Set gamma_weight expression.
10707
10708 The command accepts the same syntax of the corresponding option.
10709
10710 If the specified expression is not valid, it is kept at its current
10711 value.
10712
10713 @end table
10714
10715 @section erosion
10716
10717 Apply erosion effect to the video.
10718
10719 This filter replaces the pixel by the local(3x3) minimum.
10720
10721 It accepts the following options:
10722
10723 @table @option
10724 @item threshold0
10725 @item threshold1
10726 @item threshold2
10727 @item threshold3
10728 Limit the maximum change for each plane, default is 65535.
10729 If 0, plane will remain unchanged.
10730
10731 @item coordinates
10732 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
10733 pixels are used.
10734
10735 Flags to local 3x3 coordinates maps like this:
10736
10737     1 2 3
10738     4   5
10739     6 7 8
10740 @end table
10741
10742 @subsection Commands
10743
10744 This filter supports the all above options as @ref{commands}.
10745
10746 @section extractplanes
10747
10748 Extract color channel components from input video stream into
10749 separate grayscale video streams.
10750
10751 The filter accepts the following option:
10752
10753 @table @option
10754 @item planes
10755 Set plane(s) to extract.
10756
10757 Available values for planes are:
10758 @table @samp
10759 @item y
10760 @item u
10761 @item v
10762 @item a
10763 @item r
10764 @item g
10765 @item b
10766 @end table
10767
10768 Choosing planes not available in the input will result in an error.
10769 That means you cannot select @code{r}, @code{g}, @code{b} planes
10770 with @code{y}, @code{u}, @code{v} planes at same time.
10771 @end table
10772
10773 @subsection Examples
10774
10775 @itemize
10776 @item
10777 Extract luma, u and v color channel component from input video frame
10778 into 3 grayscale outputs:
10779 @example
10780 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
10781 @end example
10782 @end itemize
10783
10784 @section fade
10785
10786 Apply a fade-in/out effect to the input video.
10787
10788 It accepts the following parameters:
10789
10790 @table @option
10791 @item type, t
10792 The effect type can be either "in" for a fade-in, or "out" for a fade-out
10793 effect.
10794 Default is @code{in}.
10795
10796 @item start_frame, s
10797 Specify the number of the frame to start applying the fade
10798 effect at. Default is 0.
10799
10800 @item nb_frames, n
10801 The number of frames that the fade effect lasts. At the end of the
10802 fade-in effect, the output video will have the same intensity as the input video.
10803 At the end of the fade-out transition, the output video will be filled with the
10804 selected @option{color}.
10805 Default is 25.
10806
10807 @item alpha
10808 If set to 1, fade only alpha channel, if one exists on the input.
10809 Default value is 0.
10810
10811 @item start_time, st
10812 Specify the timestamp (in seconds) of the frame to start to apply the fade
10813 effect. If both start_frame and start_time are specified, the fade will start at
10814 whichever comes last.  Default is 0.
10815
10816 @item duration, d
10817 The number of seconds for which the fade effect has to last. At the end of the
10818 fade-in effect the output video will have the same intensity as the input video,
10819 at the end of the fade-out transition the output video will be filled with the
10820 selected @option{color}.
10821 If both duration and nb_frames are specified, duration is used. Default is 0
10822 (nb_frames is used by default).
10823
10824 @item color, c
10825 Specify the color of the fade. Default is "black".
10826 @end table
10827
10828 @subsection Examples
10829
10830 @itemize
10831 @item
10832 Fade in the first 30 frames of video:
10833 @example
10834 fade=in:0:30
10835 @end example
10836
10837 The command above is equivalent to:
10838 @example
10839 fade=t=in:s=0:n=30
10840 @end example
10841
10842 @item
10843 Fade out the last 45 frames of a 200-frame video:
10844 @example
10845 fade=out:155:45
10846 fade=type=out:start_frame=155:nb_frames=45
10847 @end example
10848
10849 @item
10850 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
10851 @example
10852 fade=in:0:25, fade=out:975:25
10853 @end example
10854
10855 @item
10856 Make the first 5 frames yellow, then fade in from frame 5-24:
10857 @example
10858 fade=in:5:20:color=yellow
10859 @end example
10860
10861 @item
10862 Fade in alpha over first 25 frames of video:
10863 @example
10864 fade=in:0:25:alpha=1
10865 @end example
10866
10867 @item
10868 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
10869 @example
10870 fade=t=in:st=5.5:d=0.5
10871 @end example
10872
10873 @end itemize
10874
10875 @section fftdnoiz
10876 Denoise frames using 3D FFT (frequency domain filtering).
10877
10878 The filter accepts the following options:
10879
10880 @table @option
10881 @item sigma
10882 Set the noise sigma constant. This sets denoising strength.
10883 Default value is 1. Allowed range is from 0 to 30.
10884 Using very high sigma with low overlap may give blocking artifacts.
10885
10886 @item amount
10887 Set amount of denoising. By default all detected noise is reduced.
10888 Default value is 1. Allowed range is from 0 to 1.
10889
10890 @item block
10891 Set size of block, Default is 4, can be 3, 4, 5 or 6.
10892 Actual size of block in pixels is 2 to power of @var{block}, so by default
10893 block size in pixels is 2^4 which is 16.
10894
10895 @item overlap
10896 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
10897
10898 @item prev
10899 Set number of previous frames to use for denoising. By default is set to 0.
10900
10901 @item next
10902 Set number of next frames to to use for denoising. By default is set to 0.
10903
10904 @item planes
10905 Set planes which will be filtered, by default are all available filtered
10906 except alpha.
10907 @end table
10908
10909 @section fftfilt
10910 Apply arbitrary expressions to samples in frequency domain
10911
10912 @table @option
10913 @item dc_Y
10914 Adjust the dc value (gain) of the luma plane of the image. The filter
10915 accepts an integer value in range @code{0} to @code{1000}. The default
10916 value is set to @code{0}.
10917
10918 @item dc_U
10919 Adjust the dc value (gain) of the 1st chroma plane of the image. The
10920 filter accepts an integer value in range @code{0} to @code{1000}. The
10921 default value is set to @code{0}.
10922
10923 @item dc_V
10924 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
10925 filter accepts an integer value in range @code{0} to @code{1000}. The
10926 default value is set to @code{0}.
10927
10928 @item weight_Y
10929 Set the frequency domain weight expression for the luma plane.
10930
10931 @item weight_U
10932 Set the frequency domain weight expression for the 1st chroma plane.
10933
10934 @item weight_V
10935 Set the frequency domain weight expression for the 2nd chroma plane.
10936
10937 @item eval
10938 Set when the expressions are evaluated.
10939
10940 It accepts the following values:
10941 @table @samp
10942 @item init
10943 Only evaluate expressions once during the filter initialization.
10944
10945 @item frame
10946 Evaluate expressions for each incoming frame.
10947 @end table
10948
10949 Default value is @samp{init}.
10950
10951 The filter accepts the following variables:
10952 @item X
10953 @item Y
10954 The coordinates of the current sample.
10955
10956 @item W
10957 @item H
10958 The width and height of the image.
10959
10960 @item N
10961 The number of input frame, starting from 0.
10962 @end table
10963
10964 @subsection Examples
10965
10966 @itemize
10967 @item
10968 High-pass:
10969 @example
10970 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
10971 @end example
10972
10973 @item
10974 Low-pass:
10975 @example
10976 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
10977 @end example
10978
10979 @item
10980 Sharpen:
10981 @example
10982 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
10983 @end example
10984
10985 @item
10986 Blur:
10987 @example
10988 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
10989 @end example
10990
10991 @end itemize
10992
10993 @section field
10994
10995 Extract a single field from an interlaced image using stride
10996 arithmetic to avoid wasting CPU time. The output frames are marked as
10997 non-interlaced.
10998
10999 The filter accepts the following options:
11000
11001 @table @option
11002 @item type
11003 Specify whether to extract the top (if the value is @code{0} or
11004 @code{top}) or the bottom field (if the value is @code{1} or
11005 @code{bottom}).
11006 @end table
11007
11008 @section fieldhint
11009
11010 Create new frames by copying the top and bottom fields from surrounding frames
11011 supplied as numbers by the hint file.
11012
11013 @table @option
11014 @item hint
11015 Set file containing hints: absolute/relative frame numbers.
11016
11017 There must be one line for each frame in a clip. Each line must contain two
11018 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11019 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11020 is current frame number for @code{absolute} mode or out of [-1, 1] range
11021 for @code{relative} mode. First number tells from which frame to pick up top
11022 field and second number tells from which frame to pick up bottom field.
11023
11024 If optionally followed by @code{+} output frame will be marked as interlaced,
11025 else if followed by @code{-} output frame will be marked as progressive, else
11026 it will be marked same as input frame.
11027 If optionally followed by @code{t} output frame will use only top field, or in
11028 case of @code{b} it will use only bottom field.
11029 If line starts with @code{#} or @code{;} that line is skipped.
11030
11031 @item mode
11032 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11033 @end table
11034
11035 Example of first several lines of @code{hint} file for @code{relative} mode:
11036 @example
11037 0,0 - # first frame
11038 1,0 - # second frame, use third's frame top field and second's frame bottom field
11039 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11040 1,0 -
11041 0,0 -
11042 0,0 -
11043 1,0 -
11044 1,0 -
11045 1,0 -
11046 0,0 -
11047 0,0 -
11048 1,0 -
11049 1,0 -
11050 1,0 -
11051 0,0 -
11052 @end example
11053
11054 @section fieldmatch
11055
11056 Field matching filter for inverse telecine. It is meant to reconstruct the
11057 progressive frames from a telecined stream. The filter does not drop duplicated
11058 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11059 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11060
11061 The separation of the field matching and the decimation is notably motivated by
11062 the possibility of inserting a de-interlacing filter fallback between the two.
11063 If the source has mixed telecined and real interlaced content,
11064 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11065 But these remaining combed frames will be marked as interlaced, and thus can be
11066 de-interlaced by a later filter such as @ref{yadif} before decimation.
11067
11068 In addition to the various configuration options, @code{fieldmatch} can take an
11069 optional second stream, activated through the @option{ppsrc} option. If
11070 enabled, the frames reconstruction will be based on the fields and frames from
11071 this second stream. This allows the first input to be pre-processed in order to
11072 help the various algorithms of the filter, while keeping the output lossless
11073 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11074 or brightness/contrast adjustments can help.
11075
11076 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11077 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11078 which @code{fieldmatch} is based on. While the semantic and usage are very
11079 close, some behaviour and options names can differ.
11080
11081 The @ref{decimate} filter currently only works for constant frame rate input.
11082 If your input has mixed telecined (30fps) and progressive content with a lower
11083 framerate like 24fps use the following filterchain to produce the necessary cfr
11084 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11085
11086 The filter accepts the following options:
11087
11088 @table @option
11089 @item order
11090 Specify the assumed field order of the input stream. Available values are:
11091
11092 @table @samp
11093 @item auto
11094 Auto detect parity (use FFmpeg's internal parity value).
11095 @item bff
11096 Assume bottom field first.
11097 @item tff
11098 Assume top field first.
11099 @end table
11100
11101 Note that it is sometimes recommended not to trust the parity announced by the
11102 stream.
11103
11104 Default value is @var{auto}.
11105
11106 @item mode
11107 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11108 sense that it won't risk creating jerkiness due to duplicate frames when
11109 possible, but if there are bad edits or blended fields it will end up
11110 outputting combed frames when a good match might actually exist. On the other
11111 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11112 but will almost always find a good frame if there is one. The other values are
11113 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11114 jerkiness and creating duplicate frames versus finding good matches in sections
11115 with bad edits, orphaned fields, blended fields, etc.
11116
11117 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11118
11119 Available values are:
11120
11121 @table @samp
11122 @item pc
11123 2-way matching (p/c)
11124 @item pc_n
11125 2-way matching, and trying 3rd match if still combed (p/c + n)
11126 @item pc_u
11127 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11128 @item pc_n_ub
11129 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11130 still combed (p/c + n + u/b)
11131 @item pcn
11132 3-way matching (p/c/n)
11133 @item pcn_ub
11134 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11135 detected as combed (p/c/n + u/b)
11136 @end table
11137
11138 The parenthesis at the end indicate the matches that would be used for that
11139 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11140 @var{top}).
11141
11142 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11143 the slowest.
11144
11145 Default value is @var{pc_n}.
11146
11147 @item ppsrc
11148 Mark the main input stream as a pre-processed input, and enable the secondary
11149 input stream as the clean source to pick the fields from. See the filter
11150 introduction for more details. It is similar to the @option{clip2} feature from
11151 VFM/TFM.
11152
11153 Default value is @code{0} (disabled).
11154
11155 @item field
11156 Set the field to match from. It is recommended to set this to the same value as
11157 @option{order} unless you experience matching failures with that setting. In
11158 certain circumstances changing the field that is used to match from can have a
11159 large impact on matching performance. Available values are:
11160
11161 @table @samp
11162 @item auto
11163 Automatic (same value as @option{order}).
11164 @item bottom
11165 Match from the bottom field.
11166 @item top
11167 Match from the top field.
11168 @end table
11169
11170 Default value is @var{auto}.
11171
11172 @item mchroma
11173 Set whether or not chroma is included during the match comparisons. In most
11174 cases it is recommended to leave this enabled. You should set this to @code{0}
11175 only if your clip has bad chroma problems such as heavy rainbowing or other
11176 artifacts. Setting this to @code{0} could also be used to speed things up at
11177 the cost of some accuracy.
11178
11179 Default value is @code{1}.
11180
11181 @item y0
11182 @item y1
11183 These define an exclusion band which excludes the lines between @option{y0} and
11184 @option{y1} from being included in the field matching decision. An exclusion
11185 band can be used to ignore subtitles, a logo, or other things that may
11186 interfere with the matching. @option{y0} sets the starting scan line and
11187 @option{y1} sets the ending line; all lines in between @option{y0} and
11188 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11189 @option{y0} and @option{y1} to the same value will disable the feature.
11190 @option{y0} and @option{y1} defaults to @code{0}.
11191
11192 @item scthresh
11193 Set the scene change detection threshold as a percentage of maximum change on
11194 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11195 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11196 @option{scthresh} is @code{[0.0, 100.0]}.
11197
11198 Default value is @code{12.0}.
11199
11200 @item combmatch
11201 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11202 account the combed scores of matches when deciding what match to use as the
11203 final match. Available values are:
11204
11205 @table @samp
11206 @item none
11207 No final matching based on combed scores.
11208 @item sc
11209 Combed scores are only used when a scene change is detected.
11210 @item full
11211 Use combed scores all the time.
11212 @end table
11213
11214 Default is @var{sc}.
11215
11216 @item combdbg
11217 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11218 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11219 Available values are:
11220
11221 @table @samp
11222 @item none
11223 No forced calculation.
11224 @item pcn
11225 Force p/c/n calculations.
11226 @item pcnub
11227 Force p/c/n/u/b calculations.
11228 @end table
11229
11230 Default value is @var{none}.
11231
11232 @item cthresh
11233 This is the area combing threshold used for combed frame detection. This
11234 essentially controls how "strong" or "visible" combing must be to be detected.
11235 Larger values mean combing must be more visible and smaller values mean combing
11236 can be less visible or strong and still be detected. Valid settings are from
11237 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11238 be detected as combed). This is basically a pixel difference value. A good
11239 range is @code{[8, 12]}.
11240
11241 Default value is @code{9}.
11242
11243 @item chroma
11244 Sets whether or not chroma is considered in the combed frame decision.  Only
11245 disable this if your source has chroma problems (rainbowing, etc.) that are
11246 causing problems for the combed frame detection with chroma enabled. Actually,
11247 using @option{chroma}=@var{0} is usually more reliable, except for the case
11248 where there is chroma only combing in the source.
11249
11250 Default value is @code{0}.
11251
11252 @item blockx
11253 @item blocky
11254 Respectively set the x-axis and y-axis size of the window used during combed
11255 frame detection. This has to do with the size of the area in which
11256 @option{combpel} pixels are required to be detected as combed for a frame to be
11257 declared combed. See the @option{combpel} parameter description for more info.
11258 Possible values are any number that is a power of 2 starting at 4 and going up
11259 to 512.
11260
11261 Default value is @code{16}.
11262
11263 @item combpel
11264 The number of combed pixels inside any of the @option{blocky} by
11265 @option{blockx} size blocks on the frame for the frame to be detected as
11266 combed. While @option{cthresh} controls how "visible" the combing must be, this
11267 setting controls "how much" combing there must be in any localized area (a
11268 window defined by the @option{blockx} and @option{blocky} settings) on the
11269 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11270 which point no frames will ever be detected as combed). This setting is known
11271 as @option{MI} in TFM/VFM vocabulary.
11272
11273 Default value is @code{80}.
11274 @end table
11275
11276 @anchor{p/c/n/u/b meaning}
11277 @subsection p/c/n/u/b meaning
11278
11279 @subsubsection p/c/n
11280
11281 We assume the following telecined stream:
11282
11283 @example
11284 Top fields:     1 2 2 3 4
11285 Bottom fields:  1 2 3 4 4
11286 @end example
11287
11288 The numbers correspond to the progressive frame the fields relate to. Here, the
11289 first two frames are progressive, the 3rd and 4th are combed, and so on.
11290
11291 When @code{fieldmatch} is configured to run a matching from bottom
11292 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11293
11294 @example
11295 Input stream:
11296                 T     1 2 2 3 4
11297                 B     1 2 3 4 4   <-- matching reference
11298
11299 Matches:              c c n n c
11300
11301 Output stream:
11302                 T     1 2 3 4 4
11303                 B     1 2 3 4 4
11304 @end example
11305
11306 As a result of the field matching, we can see that some frames get duplicated.
11307 To perform a complete inverse telecine, you need to rely on a decimation filter
11308 after this operation. See for instance the @ref{decimate} filter.
11309
11310 The same operation now matching from top fields (@option{field}=@var{top})
11311 looks like this:
11312
11313 @example
11314 Input stream:
11315                 T     1 2 2 3 4   <-- matching reference
11316                 B     1 2 3 4 4
11317
11318 Matches:              c c p p c
11319
11320 Output stream:
11321                 T     1 2 2 3 4
11322                 B     1 2 2 3 4
11323 @end example
11324
11325 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
11326 basically, they refer to the frame and field of the opposite parity:
11327
11328 @itemize
11329 @item @var{p} matches the field of the opposite parity in the previous frame
11330 @item @var{c} matches the field of the opposite parity in the current frame
11331 @item @var{n} matches the field of the opposite parity in the next frame
11332 @end itemize
11333
11334 @subsubsection u/b
11335
11336 The @var{u} and @var{b} matching are a bit special in the sense that they match
11337 from the opposite parity flag. In the following examples, we assume that we are
11338 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
11339 'x' is placed above and below each matched fields.
11340
11341 With bottom matching (@option{field}=@var{bottom}):
11342 @example
11343 Match:           c         p           n          b          u
11344
11345                  x       x               x        x          x
11346   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11347   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11348                  x         x           x        x              x
11349
11350 Output frames:
11351                  2          1          2          2          2
11352                  2          2          2          1          3
11353 @end example
11354
11355 With top matching (@option{field}=@var{top}):
11356 @example
11357 Match:           c         p           n          b          u
11358
11359                  x         x           x        x              x
11360   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11361   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11362                  x       x               x        x          x
11363
11364 Output frames:
11365                  2          2          2          1          2
11366                  2          1          3          2          2
11367 @end example
11368
11369 @subsection Examples
11370
11371 Simple IVTC of a top field first telecined stream:
11372 @example
11373 fieldmatch=order=tff:combmatch=none, decimate
11374 @end example
11375
11376 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
11377 @example
11378 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
11379 @end example
11380
11381 @section fieldorder
11382
11383 Transform the field order of the input video.
11384
11385 It accepts the following parameters:
11386
11387 @table @option
11388
11389 @item order
11390 The output field order. Valid values are @var{tff} for top field first or @var{bff}
11391 for bottom field first.
11392 @end table
11393
11394 The default value is @samp{tff}.
11395
11396 The transformation is done by shifting the picture content up or down
11397 by one line, and filling the remaining line with appropriate picture content.
11398 This method is consistent with most broadcast field order converters.
11399
11400 If the input video is not flagged as being interlaced, or it is already
11401 flagged as being of the required output field order, then this filter does
11402 not alter the incoming video.
11403
11404 It is very useful when converting to or from PAL DV material,
11405 which is bottom field first.
11406
11407 For example:
11408 @example
11409 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
11410 @end example
11411
11412 @section fifo, afifo
11413
11414 Buffer input images and send them when they are requested.
11415
11416 It is mainly useful when auto-inserted by the libavfilter
11417 framework.
11418
11419 It does not take parameters.
11420
11421 @section fillborders
11422
11423 Fill borders of the input video, without changing video stream dimensions.
11424 Sometimes video can have garbage at the four edges and you may not want to
11425 crop video input to keep size multiple of some number.
11426
11427 This filter accepts the following options:
11428
11429 @table @option
11430 @item left
11431 Number of pixels to fill from left border.
11432
11433 @item right
11434 Number of pixels to fill from right border.
11435
11436 @item top
11437 Number of pixels to fill from top border.
11438
11439 @item bottom
11440 Number of pixels to fill from bottom border.
11441
11442 @item mode
11443 Set fill mode.
11444
11445 It accepts the following values:
11446 @table @samp
11447 @item smear
11448 fill pixels using outermost pixels
11449
11450 @item mirror
11451 fill pixels using mirroring
11452
11453 @item fixed
11454 fill pixels with constant value
11455 @end table
11456
11457 Default is @var{smear}.
11458
11459 @item color
11460 Set color for pixels in fixed mode. Default is @var{black}.
11461 @end table
11462
11463 @subsection Commands
11464 This filter supports same @ref{commands} as options.
11465 The command accepts the same syntax of the corresponding option.
11466
11467 If the specified expression is not valid, it is kept at its current
11468 value.
11469
11470 @section find_rect
11471
11472 Find a rectangular object
11473
11474 It accepts the following options:
11475
11476 @table @option
11477 @item object
11478 Filepath of the object image, needs to be in gray8.
11479
11480 @item threshold
11481 Detection threshold, default is 0.5.
11482
11483 @item mipmaps
11484 Number of mipmaps, default is 3.
11485
11486 @item xmin, ymin, xmax, ymax
11487 Specifies the rectangle in which to search.
11488 @end table
11489
11490 @subsection Examples
11491
11492 @itemize
11493 @item
11494 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11495 @example
11496 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11497 @end example
11498 @end itemize
11499
11500 @section floodfill
11501
11502 Flood area with values of same pixel components with another values.
11503
11504 It accepts the following options:
11505 @table @option
11506 @item x
11507 Set pixel x coordinate.
11508
11509 @item y
11510 Set pixel y coordinate.
11511
11512 @item s0
11513 Set source #0 component value.
11514
11515 @item s1
11516 Set source #1 component value.
11517
11518 @item s2
11519 Set source #2 component value.
11520
11521 @item s3
11522 Set source #3 component value.
11523
11524 @item d0
11525 Set destination #0 component value.
11526
11527 @item d1
11528 Set destination #1 component value.
11529
11530 @item d2
11531 Set destination #2 component value.
11532
11533 @item d3
11534 Set destination #3 component value.
11535 @end table
11536
11537 @anchor{format}
11538 @section format
11539
11540 Convert the input video to one of the specified pixel formats.
11541 Libavfilter will try to pick one that is suitable as input to
11542 the next filter.
11543
11544 It accepts the following parameters:
11545 @table @option
11546
11547 @item pix_fmts
11548 A '|'-separated list of pixel format names, such as
11549 "pix_fmts=yuv420p|monow|rgb24".
11550
11551 @end table
11552
11553 @subsection Examples
11554
11555 @itemize
11556 @item
11557 Convert the input video to the @var{yuv420p} format
11558 @example
11559 format=pix_fmts=yuv420p
11560 @end example
11561
11562 Convert the input video to any of the formats in the list
11563 @example
11564 format=pix_fmts=yuv420p|yuv444p|yuv410p
11565 @end example
11566 @end itemize
11567
11568 @anchor{fps}
11569 @section fps
11570
11571 Convert the video to specified constant frame rate by duplicating or dropping
11572 frames as necessary.
11573
11574 It accepts the following parameters:
11575 @table @option
11576
11577 @item fps
11578 The desired output frame rate. The default is @code{25}.
11579
11580 @item start_time
11581 Assume the first PTS should be the given value, in seconds. This allows for
11582 padding/trimming at the start of stream. By default, no assumption is made
11583 about the first frame's expected PTS, so no padding or trimming is done.
11584 For example, this could be set to 0 to pad the beginning with duplicates of
11585 the first frame if a video stream starts after the audio stream or to trim any
11586 frames with a negative PTS.
11587
11588 @item round
11589 Timestamp (PTS) rounding method.
11590
11591 Possible values are:
11592 @table @option
11593 @item zero
11594 round towards 0
11595 @item inf
11596 round away from 0
11597 @item down
11598 round towards -infinity
11599 @item up
11600 round towards +infinity
11601 @item near
11602 round to nearest
11603 @end table
11604 The default is @code{near}.
11605
11606 @item eof_action
11607 Action performed when reading the last frame.
11608
11609 Possible values are:
11610 @table @option
11611 @item round
11612 Use same timestamp rounding method as used for other frames.
11613 @item pass
11614 Pass through last frame if input duration has not been reached yet.
11615 @end table
11616 The default is @code{round}.
11617
11618 @end table
11619
11620 Alternatively, the options can be specified as a flat string:
11621 @var{fps}[:@var{start_time}[:@var{round}]].
11622
11623 See also the @ref{setpts} filter.
11624
11625 @subsection Examples
11626
11627 @itemize
11628 @item
11629 A typical usage in order to set the fps to 25:
11630 @example
11631 fps=fps=25
11632 @end example
11633
11634 @item
11635 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
11636 @example
11637 fps=fps=film:round=near
11638 @end example
11639 @end itemize
11640
11641 @section framepack
11642
11643 Pack two different video streams into a stereoscopic video, setting proper
11644 metadata on supported codecs. The two views should have the same size and
11645 framerate and processing will stop when the shorter video ends. Please note
11646 that you may conveniently adjust view properties with the @ref{scale} and
11647 @ref{fps} filters.
11648
11649 It accepts the following parameters:
11650 @table @option
11651
11652 @item format
11653 The desired packing format. Supported values are:
11654
11655 @table @option
11656
11657 @item sbs
11658 The views are next to each other (default).
11659
11660 @item tab
11661 The views are on top of each other.
11662
11663 @item lines
11664 The views are packed by line.
11665
11666 @item columns
11667 The views are packed by column.
11668
11669 @item frameseq
11670 The views are temporally interleaved.
11671
11672 @end table
11673
11674 @end table
11675
11676 Some examples:
11677
11678 @example
11679 # Convert left and right views into a frame-sequential video
11680 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
11681
11682 # Convert views into a side-by-side video with the same output resolution as the input
11683 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
11684 @end example
11685
11686 @section framerate
11687
11688 Change the frame rate by interpolating new video output frames from the source
11689 frames.
11690
11691 This filter is not designed to function correctly with interlaced media. If
11692 you wish to change the frame rate of interlaced media then you are required
11693 to deinterlace before this filter and re-interlace after this filter.
11694
11695 A description of the accepted options follows.
11696
11697 @table @option
11698 @item fps
11699 Specify the output frames per second. This option can also be specified
11700 as a value alone. The default is @code{50}.
11701
11702 @item interp_start
11703 Specify the start of a range where the output frame will be created as a
11704 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11705 the default is @code{15}.
11706
11707 @item interp_end
11708 Specify the end of a range where the output frame will be created as a
11709 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11710 the default is @code{240}.
11711
11712 @item scene
11713 Specify the level at which a scene change is detected as a value between
11714 0 and 100 to indicate a new scene; a low value reflects a low
11715 probability for the current frame to introduce a new scene, while a higher
11716 value means the current frame is more likely to be one.
11717 The default is @code{8.2}.
11718
11719 @item flags
11720 Specify flags influencing the filter process.
11721
11722 Available value for @var{flags} is:
11723
11724 @table @option
11725 @item scene_change_detect, scd
11726 Enable scene change detection using the value of the option @var{scene}.
11727 This flag is enabled by default.
11728 @end table
11729 @end table
11730
11731 @section framestep
11732
11733 Select one frame every N-th frame.
11734
11735 This filter accepts the following option:
11736 @table @option
11737 @item step
11738 Select frame after every @code{step} frames.
11739 Allowed values are positive integers higher than 0. Default value is @code{1}.
11740 @end table
11741
11742 @section freezedetect
11743
11744 Detect frozen video.
11745
11746 This filter logs a message and sets frame metadata when it detects that the
11747 input video has no significant change in content during a specified duration.
11748 Video freeze detection calculates the mean average absolute difference of all
11749 the components of video frames and compares it to a noise floor.
11750
11751 The printed times and duration are expressed in seconds. The
11752 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
11753 whose timestamp equals or exceeds the detection duration and it contains the
11754 timestamp of the first frame of the freeze. The
11755 @code{lavfi.freezedetect.freeze_duration} and
11756 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
11757 after the freeze.
11758
11759 The filter accepts the following options:
11760
11761 @table @option
11762 @item noise, n
11763 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
11764 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
11765 0.001.
11766
11767 @item duration, d
11768 Set freeze duration until notification (default is 2 seconds).
11769 @end table
11770
11771 @section freezeframes
11772
11773 Freeze video frames.
11774
11775 This filter freezes video frames using frame from 2nd input.
11776
11777 The filter accepts the following options:
11778
11779 @table @option
11780 @item first
11781 Set number of first frame from which to start freeze.
11782
11783 @item last
11784 Set number of last frame from which to end freeze.
11785
11786 @item replace
11787 Set number of frame from 2nd input which will be used instead of replaced frames.
11788 @end table
11789
11790 @anchor{frei0r}
11791 @section frei0r
11792
11793 Apply a frei0r effect to the input video.
11794
11795 To enable the compilation of this filter, you need to install the frei0r
11796 header and configure FFmpeg with @code{--enable-frei0r}.
11797
11798 It accepts the following parameters:
11799
11800 @table @option
11801
11802 @item filter_name
11803 The name of the frei0r effect to load. If the environment variable
11804 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
11805 directories specified by the colon-separated list in @env{FREI0R_PATH}.
11806 Otherwise, the standard frei0r paths are searched, in this order:
11807 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
11808 @file{/usr/lib/frei0r-1/}.
11809
11810 @item filter_params
11811 A '|'-separated list of parameters to pass to the frei0r effect.
11812
11813 @end table
11814
11815 A frei0r effect parameter can be a boolean (its value is either
11816 "y" or "n"), a double, a color (specified as
11817 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
11818 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
11819 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
11820 a position (specified as @var{X}/@var{Y}, where
11821 @var{X} and @var{Y} are floating point numbers) and/or a string.
11822
11823 The number and types of parameters depend on the loaded effect. If an
11824 effect parameter is not specified, the default value is set.
11825
11826 @subsection Examples
11827
11828 @itemize
11829 @item
11830 Apply the distort0r effect, setting the first two double parameters:
11831 @example
11832 frei0r=filter_name=distort0r:filter_params=0.5|0.01
11833 @end example
11834
11835 @item
11836 Apply the colordistance effect, taking a color as the first parameter:
11837 @example
11838 frei0r=colordistance:0.2/0.3/0.4
11839 frei0r=colordistance:violet
11840 frei0r=colordistance:0x112233
11841 @end example
11842
11843 @item
11844 Apply the perspective effect, specifying the top left and top right image
11845 positions:
11846 @example
11847 frei0r=perspective:0.2/0.2|0.8/0.2
11848 @end example
11849 @end itemize
11850
11851 For more information, see
11852 @url{http://frei0r.dyne.org}
11853
11854 @subsection Commands
11855
11856 This filter supports the @option{filter_params} option as @ref{commands}.
11857
11858 @section fspp
11859
11860 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
11861
11862 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
11863 processing filter, one of them is performed once per block, not per pixel.
11864 This allows for much higher speed.
11865
11866 The filter accepts the following options:
11867
11868 @table @option
11869 @item quality
11870 Set quality. This option defines the number of levels for averaging. It accepts
11871 an integer in the range 4-5. Default value is @code{4}.
11872
11873 @item qp
11874 Force a constant quantization parameter. It accepts an integer in range 0-63.
11875 If not set, the filter will use the QP from the video stream (if available).
11876
11877 @item strength
11878 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
11879 more details but also more artifacts, while higher values make the image smoother
11880 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
11881
11882 @item use_bframe_qp
11883 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
11884 option may cause flicker since the B-Frames have often larger QP. Default is
11885 @code{0} (not enabled).
11886
11887 @end table
11888
11889 @section gblur
11890
11891 Apply Gaussian blur filter.
11892
11893 The filter accepts the following options:
11894
11895 @table @option
11896 @item sigma
11897 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
11898
11899 @item steps
11900 Set number of steps for Gaussian approximation. Default is @code{1}.
11901
11902 @item planes
11903 Set which planes to filter. By default all planes are filtered.
11904
11905 @item sigmaV
11906 Set vertical sigma, if negative it will be same as @code{sigma}.
11907 Default is @code{-1}.
11908 @end table
11909
11910 @subsection Commands
11911 This filter supports same commands as options.
11912 The command accepts the same syntax of the corresponding option.
11913
11914 If the specified expression is not valid, it is kept at its current
11915 value.
11916
11917 @section geq
11918
11919 Apply generic equation to each pixel.
11920
11921 The filter accepts the following options:
11922
11923 @table @option
11924 @item lum_expr, lum
11925 Set the luminance expression.
11926 @item cb_expr, cb
11927 Set the chrominance blue expression.
11928 @item cr_expr, cr
11929 Set the chrominance red expression.
11930 @item alpha_expr, a
11931 Set the alpha expression.
11932 @item red_expr, r
11933 Set the red expression.
11934 @item green_expr, g
11935 Set the green expression.
11936 @item blue_expr, b
11937 Set the blue expression.
11938 @end table
11939
11940 The colorspace is selected according to the specified options. If one
11941 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
11942 options is specified, the filter will automatically select a YCbCr
11943 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
11944 @option{blue_expr} options is specified, it will select an RGB
11945 colorspace.
11946
11947 If one of the chrominance expression is not defined, it falls back on the other
11948 one. If no alpha expression is specified it will evaluate to opaque value.
11949 If none of chrominance expressions are specified, they will evaluate
11950 to the luminance expression.
11951
11952 The expressions can use the following variables and functions:
11953
11954 @table @option
11955 @item N
11956 The sequential number of the filtered frame, starting from @code{0}.
11957
11958 @item X
11959 @item Y
11960 The coordinates of the current sample.
11961
11962 @item W
11963 @item H
11964 The width and height of the image.
11965
11966 @item SW
11967 @item SH
11968 Width and height scale depending on the currently filtered plane. It is the
11969 ratio between the corresponding luma plane number of pixels and the current
11970 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
11971 @code{0.5,0.5} for chroma planes.
11972
11973 @item T
11974 Time of the current frame, expressed in seconds.
11975
11976 @item p(x, y)
11977 Return the value of the pixel at location (@var{x},@var{y}) of the current
11978 plane.
11979
11980 @item lum(x, y)
11981 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
11982 plane.
11983
11984 @item cb(x, y)
11985 Return the value of the pixel at location (@var{x},@var{y}) of the
11986 blue-difference chroma plane. Return 0 if there is no such plane.
11987
11988 @item cr(x, y)
11989 Return the value of the pixel at location (@var{x},@var{y}) of the
11990 red-difference chroma plane. Return 0 if there is no such plane.
11991
11992 @item r(x, y)
11993 @item g(x, y)
11994 @item b(x, y)
11995 Return the value of the pixel at location (@var{x},@var{y}) of the
11996 red/green/blue component. Return 0 if there is no such component.
11997
11998 @item alpha(x, y)
11999 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
12000 plane. Return 0 if there is no such plane.
12001
12002 @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)
12003 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
12004 sums of samples within a rectangle. See the functions without the sum postfix.
12005
12006 @item interpolation
12007 Set one of interpolation methods:
12008 @table @option
12009 @item nearest, n
12010 @item bilinear, b
12011 @end table
12012 Default is bilinear.
12013 @end table
12014
12015 For functions, if @var{x} and @var{y} are outside the area, the value will be
12016 automatically clipped to the closer edge.
12017
12018 Please note that this filter can use multiple threads in which case each slice
12019 will have its own expression state. If you want to use only a single expression
12020 state because your expressions depend on previous state then you should limit
12021 the number of filter threads to 1.
12022
12023 @subsection Examples
12024
12025 @itemize
12026 @item
12027 Flip the image horizontally:
12028 @example
12029 geq=p(W-X\,Y)
12030 @end example
12031
12032 @item
12033 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12034 wavelength of 100 pixels:
12035 @example
12036 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12037 @end example
12038
12039 @item
12040 Generate a fancy enigmatic moving light:
12041 @example
12042 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
12043 @end example
12044
12045 @item
12046 Generate a quick emboss effect:
12047 @example
12048 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12049 @end example
12050
12051 @item
12052 Modify RGB components depending on pixel position:
12053 @example
12054 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12055 @end example
12056
12057 @item
12058 Create a radial gradient that is the same size as the input (also see
12059 the @ref{vignette} filter):
12060 @example
12061 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12062 @end example
12063 @end itemize
12064
12065 @section gradfun
12066
12067 Fix the banding artifacts that are sometimes introduced into nearly flat
12068 regions by truncation to 8-bit color depth.
12069 Interpolate the gradients that should go where the bands are, and
12070 dither them.
12071
12072 It is designed for playback only.  Do not use it prior to
12073 lossy compression, because compression tends to lose the dither and
12074 bring back the bands.
12075
12076 It accepts the following parameters:
12077
12078 @table @option
12079
12080 @item strength
12081 The maximum amount by which the filter will change any one pixel. This is also
12082 the threshold for detecting nearly flat regions. Acceptable values range from
12083 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12084 valid range.
12085
12086 @item radius
12087 The neighborhood to fit the gradient to. A larger radius makes for smoother
12088 gradients, but also prevents the filter from modifying the pixels near detailed
12089 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12090 values will be clipped to the valid range.
12091
12092 @end table
12093
12094 Alternatively, the options can be specified as a flat string:
12095 @var{strength}[:@var{radius}]
12096
12097 @subsection Examples
12098
12099 @itemize
12100 @item
12101 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12102 @example
12103 gradfun=3.5:8
12104 @end example
12105
12106 @item
12107 Specify radius, omitting the strength (which will fall-back to the default
12108 value):
12109 @example
12110 gradfun=radius=8
12111 @end example
12112
12113 @end itemize
12114
12115 @anchor{graphmonitor}
12116 @section graphmonitor
12117 Show various filtergraph stats.
12118
12119 With this filter one can debug complete filtergraph.
12120 Especially issues with links filling with queued frames.
12121
12122 The filter accepts the following options:
12123
12124 @table @option
12125 @item size, s
12126 Set video output size. Default is @var{hd720}.
12127
12128 @item opacity, o
12129 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12130
12131 @item mode, m
12132 Set output mode, can be @var{fulll} or @var{compact}.
12133 In @var{compact} mode only filters with some queued frames have displayed stats.
12134
12135 @item flags, f
12136 Set flags which enable which stats are shown in video.
12137
12138 Available values for flags are:
12139 @table @samp
12140 @item queue
12141 Display number of queued frames in each link.
12142
12143 @item frame_count_in
12144 Display number of frames taken from filter.
12145
12146 @item frame_count_out
12147 Display number of frames given out from filter.
12148
12149 @item pts
12150 Display current filtered frame pts.
12151
12152 @item time
12153 Display current filtered frame time.
12154
12155 @item timebase
12156 Display time base for filter link.
12157
12158 @item format
12159 Display used format for filter link.
12160
12161 @item size
12162 Display video size or number of audio channels in case of audio used by filter link.
12163
12164 @item rate
12165 Display video frame rate or sample rate in case of audio used by filter link.
12166
12167 @item eof
12168 Display link output status.
12169 @end table
12170
12171 @item rate, r
12172 Set upper limit for video rate of output stream, Default value is @var{25}.
12173 This guarantee that output video frame rate will not be higher than this value.
12174 @end table
12175
12176 @section greyedge
12177 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12178 and corrects the scene colors accordingly.
12179
12180 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12181
12182 The filter accepts the following options:
12183
12184 @table @option
12185 @item difford
12186 The order of differentiation to be applied on the scene. Must be chosen in the range
12187 [0,2] and default value is 1.
12188
12189 @item minknorm
12190 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12191 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12192 max value instead of calculating Minkowski distance.
12193
12194 @item sigma
12195 The standard deviation of Gaussian blur to be applied on the scene. Must be
12196 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12197 can't be equal to 0 if @var{difford} is greater than 0.
12198 @end table
12199
12200 @subsection Examples
12201 @itemize
12202
12203 @item
12204 Grey Edge:
12205 @example
12206 greyedge=difford=1:minknorm=5:sigma=2
12207 @end example
12208
12209 @item
12210 Max Edge:
12211 @example
12212 greyedge=difford=1:minknorm=0:sigma=2
12213 @end example
12214
12215 @end itemize
12216
12217 @anchor{haldclut}
12218 @section haldclut
12219
12220 Apply a Hald CLUT to a video stream.
12221
12222 First input is the video stream to process, and second one is the Hald CLUT.
12223 The Hald CLUT input can be a simple picture or a complete video stream.
12224
12225 The filter accepts the following options:
12226
12227 @table @option
12228 @item shortest
12229 Force termination when the shortest input terminates. Default is @code{0}.
12230 @item repeatlast
12231 Continue applying the last CLUT after the end of the stream. A value of
12232 @code{0} disable the filter after the last frame of the CLUT is reached.
12233 Default is @code{1}.
12234 @end table
12235
12236 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12237 filters share the same internals).
12238
12239 This filter also supports the @ref{framesync} options.
12240
12241 More information about the Hald CLUT can be found on Eskil Steenberg's website
12242 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12243
12244 @subsection Workflow examples
12245
12246 @subsubsection Hald CLUT video stream
12247
12248 Generate an identity Hald CLUT stream altered with various effects:
12249 @example
12250 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
12251 @end example
12252
12253 Note: make sure you use a lossless codec.
12254
12255 Then use it with @code{haldclut} to apply it on some random stream:
12256 @example
12257 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12258 @end example
12259
12260 The Hald CLUT will be applied to the 10 first seconds (duration of
12261 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12262 to the remaining frames of the @code{mandelbrot} stream.
12263
12264 @subsubsection Hald CLUT with preview
12265
12266 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12267 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12268 biggest possible square starting at the top left of the picture. The remaining
12269 padding pixels (bottom or right) will be ignored. This area can be used to add
12270 a preview of the Hald CLUT.
12271
12272 Typically, the following generated Hald CLUT will be supported by the
12273 @code{haldclut} filter:
12274
12275 @example
12276 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12277    pad=iw+320 [padded_clut];
12278    smptebars=s=320x256, split [a][b];
12279    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12280    [main][b] overlay=W-320" -frames:v 1 clut.png
12281 @end example
12282
12283 It contains the original and a preview of the effect of the CLUT: SMPTE color
12284 bars are displayed on the right-top, and below the same color bars processed by
12285 the color changes.
12286
12287 Then, the effect of this Hald CLUT can be visualized with:
12288 @example
12289 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12290 @end example
12291
12292 @section hflip
12293
12294 Flip the input video horizontally.
12295
12296 For example, to horizontally flip the input video with @command{ffmpeg}:
12297 @example
12298 ffmpeg -i in.avi -vf "hflip" out.avi
12299 @end example
12300
12301 @section histeq
12302 This filter applies a global color histogram equalization on a
12303 per-frame basis.
12304
12305 It can be used to correct video that has a compressed range of pixel
12306 intensities.  The filter redistributes the pixel intensities to
12307 equalize their distribution across the intensity range. It may be
12308 viewed as an "automatically adjusting contrast filter". This filter is
12309 useful only for correcting degraded or poorly captured source
12310 video.
12311
12312 The filter accepts the following options:
12313
12314 @table @option
12315 @item strength
12316 Determine the amount of equalization to be applied.  As the strength
12317 is reduced, the distribution of pixel intensities more-and-more
12318 approaches that of the input frame. The value must be a float number
12319 in the range [0,1] and defaults to 0.200.
12320
12321 @item intensity
12322 Set the maximum intensity that can generated and scale the output
12323 values appropriately.  The strength should be set as desired and then
12324 the intensity can be limited if needed to avoid washing-out. The value
12325 must be a float number in the range [0,1] and defaults to 0.210.
12326
12327 @item antibanding
12328 Set the antibanding level. If enabled the filter will randomly vary
12329 the luminance of output pixels by a small amount to avoid banding of
12330 the histogram. Possible values are @code{none}, @code{weak} or
12331 @code{strong}. It defaults to @code{none}.
12332 @end table
12333
12334 @anchor{histogram}
12335 @section histogram
12336
12337 Compute and draw a color distribution histogram for the input video.
12338
12339 The computed histogram is a representation of the color component
12340 distribution in an image.
12341
12342 Standard histogram displays the color components distribution in an image.
12343 Displays color graph for each color component. Shows distribution of
12344 the Y, U, V, A or R, G, B components, depending on input format, in the
12345 current frame. Below each graph a color component scale meter is shown.
12346
12347 The filter accepts the following options:
12348
12349 @table @option
12350 @item level_height
12351 Set height of level. Default value is @code{200}.
12352 Allowed range is [50, 2048].
12353
12354 @item scale_height
12355 Set height of color scale. Default value is @code{12}.
12356 Allowed range is [0, 40].
12357
12358 @item display_mode
12359 Set display mode.
12360 It accepts the following values:
12361 @table @samp
12362 @item stack
12363 Per color component graphs are placed below each other.
12364
12365 @item parade
12366 Per color component graphs are placed side by side.
12367
12368 @item overlay
12369 Presents information identical to that in the @code{parade}, except
12370 that the graphs representing color components are superimposed directly
12371 over one another.
12372 @end table
12373 Default is @code{stack}.
12374
12375 @item levels_mode
12376 Set mode. Can be either @code{linear}, or @code{logarithmic}.
12377 Default is @code{linear}.
12378
12379 @item components
12380 Set what color components to display.
12381 Default is @code{7}.
12382
12383 @item fgopacity
12384 Set foreground opacity. Default is @code{0.7}.
12385
12386 @item bgopacity
12387 Set background opacity. Default is @code{0.5}.
12388 @end table
12389
12390 @subsection Examples
12391
12392 @itemize
12393
12394 @item
12395 Calculate and draw histogram:
12396 @example
12397 ffplay -i input -vf histogram
12398 @end example
12399
12400 @end itemize
12401
12402 @anchor{hqdn3d}
12403 @section hqdn3d
12404
12405 This is a high precision/quality 3d denoise filter. It aims to reduce
12406 image noise, producing smooth images and making still images really
12407 still. It should enhance compressibility.
12408
12409 It accepts the following optional parameters:
12410
12411 @table @option
12412 @item luma_spatial
12413 A non-negative floating point number which specifies spatial luma strength.
12414 It defaults to 4.0.
12415
12416 @item chroma_spatial
12417 A non-negative floating point number which specifies spatial chroma strength.
12418 It defaults to 3.0*@var{luma_spatial}/4.0.
12419
12420 @item luma_tmp
12421 A floating point number which specifies luma temporal strength. It defaults to
12422 6.0*@var{luma_spatial}/4.0.
12423
12424 @item chroma_tmp
12425 A floating point number which specifies chroma temporal strength. It defaults to
12426 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
12427 @end table
12428
12429 @subsection Commands
12430 This filter supports same @ref{commands} as options.
12431 The command accepts the same syntax of the corresponding option.
12432
12433 If the specified expression is not valid, it is kept at its current
12434 value.
12435
12436 @anchor{hwdownload}
12437 @section hwdownload
12438
12439 Download hardware frames to system memory.
12440
12441 The input must be in hardware frames, and the output a non-hardware format.
12442 Not all formats will be supported on the output - it may be necessary to insert
12443 an additional @option{format} filter immediately following in the graph to get
12444 the output in a supported format.
12445
12446 @section hwmap
12447
12448 Map hardware frames to system memory or to another device.
12449
12450 This filter has several different modes of operation; which one is used depends
12451 on the input and output formats:
12452 @itemize
12453 @item
12454 Hardware frame input, normal frame output
12455
12456 Map the input frames to system memory and pass them to the output.  If the
12457 original hardware frame is later required (for example, after overlaying
12458 something else on part of it), the @option{hwmap} filter can be used again
12459 in the next mode to retrieve it.
12460 @item
12461 Normal frame input, hardware frame output
12462
12463 If the input is actually a software-mapped hardware frame, then unmap it -
12464 that is, return the original hardware frame.
12465
12466 Otherwise, a device must be provided.  Create new hardware surfaces on that
12467 device for the output, then map them back to the software format at the input
12468 and give those frames to the preceding filter.  This will then act like the
12469 @option{hwupload} filter, but may be able to avoid an additional copy when
12470 the input is already in a compatible format.
12471 @item
12472 Hardware frame input and output
12473
12474 A device must be supplied for the output, either directly or with the
12475 @option{derive_device} option.  The input and output devices must be of
12476 different types and compatible - the exact meaning of this is
12477 system-dependent, but typically it means that they must refer to the same
12478 underlying hardware context (for example, refer to the same graphics card).
12479
12480 If the input frames were originally created on the output device, then unmap
12481 to retrieve the original frames.
12482
12483 Otherwise, map the frames to the output device - create new hardware frames
12484 on the output corresponding to the frames on the input.
12485 @end itemize
12486
12487 The following additional parameters are accepted:
12488
12489 @table @option
12490 @item mode
12491 Set the frame mapping mode.  Some combination of:
12492 @table @var
12493 @item read
12494 The mapped frame should be readable.
12495 @item write
12496 The mapped frame should be writeable.
12497 @item overwrite
12498 The mapping will always overwrite the entire frame.
12499
12500 This may improve performance in some cases, as the original contents of the
12501 frame need not be loaded.
12502 @item direct
12503 The mapping must not involve any copying.
12504
12505 Indirect mappings to copies of frames are created in some cases where either
12506 direct mapping is not possible or it would have unexpected properties.
12507 Setting this flag ensures that the mapping is direct and will fail if that is
12508 not possible.
12509 @end table
12510 Defaults to @var{read+write} if not specified.
12511
12512 @item derive_device @var{type}
12513 Rather than using the device supplied at initialisation, instead derive a new
12514 device of type @var{type} from the device the input frames exist on.
12515
12516 @item reverse
12517 In a hardware to hardware mapping, map in reverse - create frames in the sink
12518 and map them back to the source.  This may be necessary in some cases where
12519 a mapping in one direction is required but only the opposite direction is
12520 supported by the devices being used.
12521
12522 This option is dangerous - it may break the preceding filter in undefined
12523 ways if there are any additional constraints on that filter's output.
12524 Do not use it without fully understanding the implications of its use.
12525 @end table
12526
12527 @anchor{hwupload}
12528 @section hwupload
12529
12530 Upload system memory frames to hardware surfaces.
12531
12532 The device to upload to must be supplied when the filter is initialised.  If
12533 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12534 option or with the @option{derive_device} option.  The input and output devices
12535 must be of different types and compatible - the exact meaning of this is
12536 system-dependent, but typically it means that they must refer to the same
12537 underlying hardware context (for example, refer to the same graphics card).
12538
12539 The following additional parameters are accepted:
12540
12541 @table @option
12542 @item derive_device @var{type}
12543 Rather than using the device supplied at initialisation, instead derive a new
12544 device of type @var{type} from the device the input frames exist on.
12545 @end table
12546
12547 @anchor{hwupload_cuda}
12548 @section hwupload_cuda
12549
12550 Upload system memory frames to a CUDA device.
12551
12552 It accepts the following optional parameters:
12553
12554 @table @option
12555 @item device
12556 The number of the CUDA device to use
12557 @end table
12558
12559 @section hqx
12560
12561 Apply a high-quality magnification filter designed for pixel art. This filter
12562 was originally created by Maxim Stepin.
12563
12564 It accepts the following option:
12565
12566 @table @option
12567 @item n
12568 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
12569 @code{hq3x} and @code{4} for @code{hq4x}.
12570 Default is @code{3}.
12571 @end table
12572
12573 @section hstack
12574 Stack input videos horizontally.
12575
12576 All streams must be of same pixel format and of same height.
12577
12578 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12579 to create same output.
12580
12581 The filter accepts the following option:
12582
12583 @table @option
12584 @item inputs
12585 Set number of input streams. Default is 2.
12586
12587 @item shortest
12588 If set to 1, force the output to terminate when the shortest input
12589 terminates. Default value is 0.
12590 @end table
12591
12592 @section hue
12593
12594 Modify the hue and/or the saturation of the input.
12595
12596 It accepts the following parameters:
12597
12598 @table @option
12599 @item h
12600 Specify the hue angle as a number of degrees. It accepts an expression,
12601 and defaults to "0".
12602
12603 @item s
12604 Specify the saturation in the [-10,10] range. It accepts an expression and
12605 defaults to "1".
12606
12607 @item H
12608 Specify the hue angle as a number of radians. It accepts an
12609 expression, and defaults to "0".
12610
12611 @item b
12612 Specify the brightness in the [-10,10] range. It accepts an expression and
12613 defaults to "0".
12614 @end table
12615
12616 @option{h} and @option{H} are mutually exclusive, and can't be
12617 specified at the same time.
12618
12619 The @option{b}, @option{h}, @option{H} and @option{s} option values are
12620 expressions containing the following constants:
12621
12622 @table @option
12623 @item n
12624 frame count of the input frame starting from 0
12625
12626 @item pts
12627 presentation timestamp of the input frame expressed in time base units
12628
12629 @item r
12630 frame rate of the input video, NAN if the input frame rate is unknown
12631
12632 @item t
12633 timestamp expressed in seconds, NAN if the input timestamp is unknown
12634
12635 @item tb
12636 time base of the input video
12637 @end table
12638
12639 @subsection Examples
12640
12641 @itemize
12642 @item
12643 Set the hue to 90 degrees and the saturation to 1.0:
12644 @example
12645 hue=h=90:s=1
12646 @end example
12647
12648 @item
12649 Same command but expressing the hue in radians:
12650 @example
12651 hue=H=PI/2:s=1
12652 @end example
12653
12654 @item
12655 Rotate hue and make the saturation swing between 0
12656 and 2 over a period of 1 second:
12657 @example
12658 hue="H=2*PI*t: s=sin(2*PI*t)+1"
12659 @end example
12660
12661 @item
12662 Apply a 3 seconds saturation fade-in effect starting at 0:
12663 @example
12664 hue="s=min(t/3\,1)"
12665 @end example
12666
12667 The general fade-in expression can be written as:
12668 @example
12669 hue="s=min(0\, max((t-START)/DURATION\, 1))"
12670 @end example
12671
12672 @item
12673 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
12674 @example
12675 hue="s=max(0\, min(1\, (8-t)/3))"
12676 @end example
12677
12678 The general fade-out expression can be written as:
12679 @example
12680 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
12681 @end example
12682
12683 @end itemize
12684
12685 @subsection Commands
12686
12687 This filter supports the following commands:
12688 @table @option
12689 @item b
12690 @item s
12691 @item h
12692 @item H
12693 Modify the hue and/or the saturation and/or brightness of the input video.
12694 The command accepts the same syntax of the corresponding option.
12695
12696 If the specified expression is not valid, it is kept at its current
12697 value.
12698 @end table
12699
12700 @section hysteresis
12701
12702 Grow first stream into second stream by connecting components.
12703 This makes it possible to build more robust edge masks.
12704
12705 This filter accepts the following options:
12706
12707 @table @option
12708 @item planes
12709 Set which planes will be processed as bitmap, unprocessed planes will be
12710 copied from first stream.
12711 By default value 0xf, all planes will be processed.
12712
12713 @item threshold
12714 Set threshold which is used in filtering. If pixel component value is higher than
12715 this value filter algorithm for connecting components is activated.
12716 By default value is 0.
12717 @end table
12718
12719 The @code{hysteresis} filter also supports the @ref{framesync} options.
12720
12721 @section idet
12722
12723 Detect video interlacing type.
12724
12725 This filter tries to detect if the input frames are interlaced, progressive,
12726 top or bottom field first. It will also try to detect fields that are
12727 repeated between adjacent frames (a sign of telecine).
12728
12729 Single frame detection considers only immediately adjacent frames when classifying each frame.
12730 Multiple frame detection incorporates the classification history of previous frames.
12731
12732 The filter will log these metadata values:
12733
12734 @table @option
12735 @item single.current_frame
12736 Detected type of current frame using single-frame detection. One of:
12737 ``tff'' (top field first), ``bff'' (bottom field first),
12738 ``progressive'', or ``undetermined''
12739
12740 @item single.tff
12741 Cumulative number of frames detected as top field first using single-frame detection.
12742
12743 @item multiple.tff
12744 Cumulative number of frames detected as top field first using multiple-frame detection.
12745
12746 @item single.bff
12747 Cumulative number of frames detected as bottom field first using single-frame detection.
12748
12749 @item multiple.current_frame
12750 Detected type of current frame using multiple-frame detection. One of:
12751 ``tff'' (top field first), ``bff'' (bottom field first),
12752 ``progressive'', or ``undetermined''
12753
12754 @item multiple.bff
12755 Cumulative number of frames detected as bottom field first using multiple-frame detection.
12756
12757 @item single.progressive
12758 Cumulative number of frames detected as progressive using single-frame detection.
12759
12760 @item multiple.progressive
12761 Cumulative number of frames detected as progressive using multiple-frame detection.
12762
12763 @item single.undetermined
12764 Cumulative number of frames that could not be classified using single-frame detection.
12765
12766 @item multiple.undetermined
12767 Cumulative number of frames that could not be classified using multiple-frame detection.
12768
12769 @item repeated.current_frame
12770 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
12771
12772 @item repeated.neither
12773 Cumulative number of frames with no repeated field.
12774
12775 @item repeated.top
12776 Cumulative number of frames with the top field repeated from the previous frame's top field.
12777
12778 @item repeated.bottom
12779 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
12780 @end table
12781
12782 The filter accepts the following options:
12783
12784 @table @option
12785 @item intl_thres
12786 Set interlacing threshold.
12787 @item prog_thres
12788 Set progressive threshold.
12789 @item rep_thres
12790 Threshold for repeated field detection.
12791 @item half_life
12792 Number of frames after which a given frame's contribution to the
12793 statistics is halved (i.e., it contributes only 0.5 to its
12794 classification). The default of 0 means that all frames seen are given
12795 full weight of 1.0 forever.
12796 @item analyze_interlaced_flag
12797 When this is not 0 then idet will use the specified number of frames to determine
12798 if the interlaced flag is accurate, it will not count undetermined frames.
12799 If the flag is found to be accurate it will be used without any further
12800 computations, if it is found to be inaccurate it will be cleared without any
12801 further computations. This allows inserting the idet filter as a low computational
12802 method to clean up the interlaced flag
12803 @end table
12804
12805 @section il
12806
12807 Deinterleave or interleave fields.
12808
12809 This filter allows one to process interlaced images fields without
12810 deinterlacing them. Deinterleaving splits the input frame into 2
12811 fields (so called half pictures). Odd lines are moved to the top
12812 half of the output image, even lines to the bottom half.
12813 You can process (filter) them independently and then re-interleave them.
12814
12815 The filter accepts the following options:
12816
12817 @table @option
12818 @item luma_mode, l
12819 @item chroma_mode, c
12820 @item alpha_mode, a
12821 Available values for @var{luma_mode}, @var{chroma_mode} and
12822 @var{alpha_mode} are:
12823
12824 @table @samp
12825 @item none
12826 Do nothing.
12827
12828 @item deinterleave, d
12829 Deinterleave fields, placing one above the other.
12830
12831 @item interleave, i
12832 Interleave fields. Reverse the effect of deinterleaving.
12833 @end table
12834 Default value is @code{none}.
12835
12836 @item luma_swap, ls
12837 @item chroma_swap, cs
12838 @item alpha_swap, as
12839 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
12840 @end table
12841
12842 @subsection Commands
12843
12844 This filter supports the all above options as @ref{commands}.
12845
12846 @section inflate
12847
12848 Apply inflate effect to the video.
12849
12850 This filter replaces the pixel by the local(3x3) average by taking into account
12851 only values higher than the pixel.
12852
12853 It accepts the following options:
12854
12855 @table @option
12856 @item threshold0
12857 @item threshold1
12858 @item threshold2
12859 @item threshold3
12860 Limit the maximum change for each plane, default is 65535.
12861 If 0, plane will remain unchanged.
12862 @end table
12863
12864 @subsection Commands
12865
12866 This filter supports the all above options as @ref{commands}.
12867
12868 @section interlace
12869
12870 Simple interlacing filter from progressive contents. This interleaves upper (or
12871 lower) lines from odd frames with lower (or upper) lines from even frames,
12872 halving the frame rate and preserving image height.
12873
12874 @example
12875    Original        Original             New Frame
12876    Frame 'j'      Frame 'j+1'             (tff)
12877   ==========      ===========       ==================
12878     Line 0  -------------------->    Frame 'j' Line 0
12879     Line 1          Line 1  ---->   Frame 'j+1' Line 1
12880     Line 2 --------------------->    Frame 'j' Line 2
12881     Line 3          Line 3  ---->   Frame 'j+1' Line 3
12882      ...             ...                   ...
12883 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
12884 @end example
12885
12886 It accepts the following optional parameters:
12887
12888 @table @option
12889 @item scan
12890 This determines whether the interlaced frame is taken from the even
12891 (tff - default) or odd (bff) lines of the progressive frame.
12892
12893 @item lowpass
12894 Vertical lowpass filter to avoid twitter interlacing and
12895 reduce moire patterns.
12896
12897 @table @samp
12898 @item 0, off
12899 Disable vertical lowpass filter
12900
12901 @item 1, linear
12902 Enable linear filter (default)
12903
12904 @item 2, complex
12905 Enable complex filter. This will slightly less reduce twitter and moire
12906 but better retain detail and subjective sharpness impression.
12907
12908 @end table
12909 @end table
12910
12911 @section kerndeint
12912
12913 Deinterlace input video by applying Donald Graft's adaptive kernel
12914 deinterling. Work on interlaced parts of a video to produce
12915 progressive frames.
12916
12917 The description of the accepted parameters follows.
12918
12919 @table @option
12920 @item thresh
12921 Set the threshold which affects the filter's tolerance when
12922 determining if a pixel line must be processed. It must be an integer
12923 in the range [0,255] and defaults to 10. A value of 0 will result in
12924 applying the process on every pixels.
12925
12926 @item map
12927 Paint pixels exceeding the threshold value to white if set to 1.
12928 Default is 0.
12929
12930 @item order
12931 Set the fields order. Swap fields if set to 1, leave fields alone if
12932 0. Default is 0.
12933
12934 @item sharp
12935 Enable additional sharpening if set to 1. Default is 0.
12936
12937 @item twoway
12938 Enable twoway sharpening if set to 1. Default is 0.
12939 @end table
12940
12941 @subsection Examples
12942
12943 @itemize
12944 @item
12945 Apply default values:
12946 @example
12947 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
12948 @end example
12949
12950 @item
12951 Enable additional sharpening:
12952 @example
12953 kerndeint=sharp=1
12954 @end example
12955
12956 @item
12957 Paint processed pixels in white:
12958 @example
12959 kerndeint=map=1
12960 @end example
12961 @end itemize
12962
12963 @section lagfun
12964
12965 Slowly update darker pixels.
12966
12967 This filter makes short flashes of light appear longer.
12968 This filter accepts the following options:
12969
12970 @table @option
12971 @item decay
12972 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
12973
12974 @item planes
12975 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
12976 @end table
12977
12978 @section lenscorrection
12979
12980 Correct radial lens distortion
12981
12982 This filter can be used to correct for radial distortion as can result from the use
12983 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
12984 one can use tools available for example as part of opencv or simply trial-and-error.
12985 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
12986 and extract the k1 and k2 coefficients from the resulting matrix.
12987
12988 Note that effectively the same filter is available in the open-source tools Krita and
12989 Digikam from the KDE project.
12990
12991 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
12992 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
12993 brightness distribution, so you may want to use both filters together in certain
12994 cases, though you will have to take care of ordering, i.e. whether vignetting should
12995 be applied before or after lens correction.
12996
12997 @subsection Options
12998
12999 The filter accepts the following options:
13000
13001 @table @option
13002 @item cx
13003 Relative x-coordinate of the focal point of the image, and thereby the center of the
13004 distortion. This value has a range [0,1] and is expressed as fractions of the image
13005 width. Default is 0.5.
13006 @item cy
13007 Relative y-coordinate of the focal point of the image, and thereby the center of the
13008 distortion. This value has a range [0,1] and is expressed as fractions of the image
13009 height. Default is 0.5.
13010 @item k1
13011 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
13012 no correction. Default is 0.
13013 @item k2
13014 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13015 0 means no correction. Default is 0.
13016 @end table
13017
13018 The formula that generates the correction is:
13019
13020 @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)
13021
13022 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13023 distances from the focal point in the source and target images, respectively.
13024
13025 @section lensfun
13026
13027 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13028
13029 The @code{lensfun} filter requires the camera make, camera model, and lens model
13030 to apply the lens correction. The filter will load the lensfun database and
13031 query it to find the corresponding camera and lens entries in the database. As
13032 long as these entries can be found with the given options, the filter can
13033 perform corrections on frames. Note that incomplete strings will result in the
13034 filter choosing the best match with the given options, and the filter will
13035 output the chosen camera and lens models (logged with level "info"). You must
13036 provide the make, camera model, and lens model as they are required.
13037
13038 The filter accepts the following options:
13039
13040 @table @option
13041 @item make
13042 The make of the camera (for example, "Canon"). This option is required.
13043
13044 @item model
13045 The model of the camera (for example, "Canon EOS 100D"). This option is
13046 required.
13047
13048 @item lens_model
13049 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13050 option is required.
13051
13052 @item mode
13053 The type of correction to apply. The following values are valid options:
13054
13055 @table @samp
13056 @item vignetting
13057 Enables fixing lens vignetting.
13058
13059 @item geometry
13060 Enables fixing lens geometry. This is the default.
13061
13062 @item subpixel
13063 Enables fixing chromatic aberrations.
13064
13065 @item vig_geo
13066 Enables fixing lens vignetting and lens geometry.
13067
13068 @item vig_subpixel
13069 Enables fixing lens vignetting and chromatic aberrations.
13070
13071 @item distortion
13072 Enables fixing both lens geometry and chromatic aberrations.
13073
13074 @item all
13075 Enables all possible corrections.
13076
13077 @end table
13078 @item focal_length
13079 The focal length of the image/video (zoom; expected constant for video). For
13080 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13081 range should be chosen when using that lens. Default 18.
13082
13083 @item aperture
13084 The aperture of the image/video (expected constant for video). Note that
13085 aperture is only used for vignetting correction. Default 3.5.
13086
13087 @item focus_distance
13088 The focus distance of the image/video (expected constant for video). Note that
13089 focus distance is only used for vignetting and only slightly affects the
13090 vignetting correction process. If unknown, leave it at the default value (which
13091 is 1000).
13092
13093 @item scale
13094 The scale factor which is applied after transformation. After correction the
13095 video is no longer necessarily rectangular. This parameter controls how much of
13096 the resulting image is visible. The value 0 means that a value will be chosen
13097 automatically such that there is little or no unmapped area in the output
13098 image. 1.0 means that no additional scaling is done. Lower values may result
13099 in more of the corrected image being visible, while higher values may avoid
13100 unmapped areas in the output.
13101
13102 @item target_geometry
13103 The target geometry of the output image/video. The following values are valid
13104 options:
13105
13106 @table @samp
13107 @item rectilinear (default)
13108 @item fisheye
13109 @item panoramic
13110 @item equirectangular
13111 @item fisheye_orthographic
13112 @item fisheye_stereographic
13113 @item fisheye_equisolid
13114 @item fisheye_thoby
13115 @end table
13116 @item reverse
13117 Apply the reverse of image correction (instead of correcting distortion, apply
13118 it).
13119
13120 @item interpolation
13121 The type of interpolation used when correcting distortion. The following values
13122 are valid options:
13123
13124 @table @samp
13125 @item nearest
13126 @item linear (default)
13127 @item lanczos
13128 @end table
13129 @end table
13130
13131 @subsection Examples
13132
13133 @itemize
13134 @item
13135 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13136 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13137 aperture of "8.0".
13138
13139 @example
13140 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
13141 @end example
13142
13143 @item
13144 Apply the same as before, but only for the first 5 seconds of video.
13145
13146 @example
13147 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
13148 @end example
13149
13150 @end itemize
13151
13152 @section libvmaf
13153
13154 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13155 score between two input videos.
13156
13157 The obtained VMAF score is printed through the logging system.
13158
13159 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13160 After installing the library it can be enabled using:
13161 @code{./configure --enable-libvmaf}.
13162 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13163
13164 The filter has following options:
13165
13166 @table @option
13167 @item model_path
13168 Set the model path which is to be used for SVM.
13169 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13170
13171 @item log_path
13172 Set the file path to be used to store logs.
13173
13174 @item log_fmt
13175 Set the format of the log file (csv, json or xml).
13176
13177 @item enable_transform
13178 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13179 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13180 Default value: @code{false}
13181
13182 @item phone_model
13183 Invokes the phone model which will generate VMAF scores higher than in the
13184 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13185 Default value: @code{false}
13186
13187 @item psnr
13188 Enables computing psnr along with vmaf.
13189 Default value: @code{false}
13190
13191 @item ssim
13192 Enables computing ssim along with vmaf.
13193 Default value: @code{false}
13194
13195 @item ms_ssim
13196 Enables computing ms_ssim along with vmaf.
13197 Default value: @code{false}
13198
13199 @item pool
13200 Set the pool method to be used for computing vmaf.
13201 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13202
13203 @item n_threads
13204 Set number of threads to be used when computing vmaf.
13205 Default value: @code{0}, which makes use of all available logical processors.
13206
13207 @item n_subsample
13208 Set interval for frame subsampling used when computing vmaf.
13209 Default value: @code{1}
13210
13211 @item enable_conf_interval
13212 Enables confidence interval.
13213 Default value: @code{false}
13214 @end table
13215
13216 This filter also supports the @ref{framesync} options.
13217
13218 @subsection Examples
13219 @itemize
13220 @item
13221 On the below examples the input file @file{main.mpg} being processed is
13222 compared with the reference file @file{ref.mpg}.
13223
13224 @example
13225 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13226 @end example
13227
13228 @item
13229 Example with options:
13230 @example
13231 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13232 @end example
13233
13234 @item
13235 Example with options and different containers:
13236 @example
13237 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 -
13238 @end example
13239 @end itemize
13240
13241 @section limiter
13242
13243 Limits the pixel components values to the specified range [min, max].
13244
13245 The filter accepts the following options:
13246
13247 @table @option
13248 @item min
13249 Lower bound. Defaults to the lowest allowed value for the input.
13250
13251 @item max
13252 Upper bound. Defaults to the highest allowed value for the input.
13253
13254 @item planes
13255 Specify which planes will be processed. Defaults to all available.
13256 @end table
13257
13258 @section loop
13259
13260 Loop video frames.
13261
13262 The filter accepts the following options:
13263
13264 @table @option
13265 @item loop
13266 Set the number of loops. Setting this value to -1 will result in infinite loops.
13267 Default is 0.
13268
13269 @item size
13270 Set maximal size in number of frames. Default is 0.
13271
13272 @item start
13273 Set first frame of loop. Default is 0.
13274 @end table
13275
13276 @subsection Examples
13277
13278 @itemize
13279 @item
13280 Loop single first frame infinitely:
13281 @example
13282 loop=loop=-1:size=1:start=0
13283 @end example
13284
13285 @item
13286 Loop single first frame 10 times:
13287 @example
13288 loop=loop=10:size=1:start=0
13289 @end example
13290
13291 @item
13292 Loop 10 first frames 5 times:
13293 @example
13294 loop=loop=5:size=10:start=0
13295 @end example
13296 @end itemize
13297
13298 @section lut1d
13299
13300 Apply a 1D LUT to an input video.
13301
13302 The filter accepts the following options:
13303
13304 @table @option
13305 @item file
13306 Set the 1D LUT file name.
13307
13308 Currently supported formats:
13309 @table @samp
13310 @item cube
13311 Iridas
13312 @item csp
13313 cineSpace
13314 @end table
13315
13316 @item interp
13317 Select interpolation mode.
13318
13319 Available values are:
13320
13321 @table @samp
13322 @item nearest
13323 Use values from the nearest defined point.
13324 @item linear
13325 Interpolate values using the linear interpolation.
13326 @item cosine
13327 Interpolate values using the cosine interpolation.
13328 @item cubic
13329 Interpolate values using the cubic interpolation.
13330 @item spline
13331 Interpolate values using the spline interpolation.
13332 @end table
13333 @end table
13334
13335 @anchor{lut3d}
13336 @section lut3d
13337
13338 Apply a 3D LUT to an input video.
13339
13340 The filter accepts the following options:
13341
13342 @table @option
13343 @item file
13344 Set the 3D LUT file name.
13345
13346 Currently supported formats:
13347 @table @samp
13348 @item 3dl
13349 AfterEffects
13350 @item cube
13351 Iridas
13352 @item dat
13353 DaVinci
13354 @item m3d
13355 Pandora
13356 @item csp
13357 cineSpace
13358 @end table
13359 @item interp
13360 Select interpolation mode.
13361
13362 Available values are:
13363
13364 @table @samp
13365 @item nearest
13366 Use values from the nearest defined point.
13367 @item trilinear
13368 Interpolate values using the 8 points defining a cube.
13369 @item tetrahedral
13370 Interpolate values using a tetrahedron.
13371 @end table
13372 @end table
13373
13374 @section lumakey
13375
13376 Turn certain luma values into transparency.
13377
13378 The filter accepts the following options:
13379
13380 @table @option
13381 @item threshold
13382 Set the luma which will be used as base for transparency.
13383 Default value is @code{0}.
13384
13385 @item tolerance
13386 Set the range of luma values to be keyed out.
13387 Default value is @code{0.01}.
13388
13389 @item softness
13390 Set the range of softness. Default value is @code{0}.
13391 Use this to control gradual transition from zero to full transparency.
13392 @end table
13393
13394 @subsection Commands
13395 This filter supports same @ref{commands} as options.
13396 The command accepts the same syntax of the corresponding option.
13397
13398 If the specified expression is not valid, it is kept at its current
13399 value.
13400
13401 @section lut, lutrgb, lutyuv
13402
13403 Compute a look-up table for binding each pixel component input value
13404 to an output value, and apply it to the input video.
13405
13406 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
13407 to an RGB input video.
13408
13409 These filters accept the following parameters:
13410 @table @option
13411 @item c0
13412 set first pixel component expression
13413 @item c1
13414 set second pixel component expression
13415 @item c2
13416 set third pixel component expression
13417 @item c3
13418 set fourth pixel component expression, corresponds to the alpha component
13419
13420 @item r
13421 set red component expression
13422 @item g
13423 set green component expression
13424 @item b
13425 set blue component expression
13426 @item a
13427 alpha component expression
13428
13429 @item y
13430 set Y/luminance component expression
13431 @item u
13432 set U/Cb component expression
13433 @item v
13434 set V/Cr component expression
13435 @end table
13436
13437 Each of them specifies the expression to use for computing the lookup table for
13438 the corresponding pixel component values.
13439
13440 The exact component associated to each of the @var{c*} options depends on the
13441 format in input.
13442
13443 The @var{lut} filter requires either YUV or RGB pixel formats in input,
13444 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
13445
13446 The expressions can contain the following constants and functions:
13447
13448 @table @option
13449 @item w
13450 @item h
13451 The input width and height.
13452
13453 @item val
13454 The input value for the pixel component.
13455
13456 @item clipval
13457 The input value, clipped to the @var{minval}-@var{maxval} range.
13458
13459 @item maxval
13460 The maximum value for the pixel component.
13461
13462 @item minval
13463 The minimum value for the pixel component.
13464
13465 @item negval
13466 The negated value for the pixel component value, clipped to the
13467 @var{minval}-@var{maxval} range; it corresponds to the expression
13468 "maxval-clipval+minval".
13469
13470 @item clip(val)
13471 The computed value in @var{val}, clipped to the
13472 @var{minval}-@var{maxval} range.
13473
13474 @item gammaval(gamma)
13475 The computed gamma correction value of the pixel component value,
13476 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13477 expression
13478 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13479
13480 @end table
13481
13482 All expressions default to "val".
13483
13484 @subsection Examples
13485
13486 @itemize
13487 @item
13488 Negate input video:
13489 @example
13490 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13491 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13492 @end example
13493
13494 The above is the same as:
13495 @example
13496 lutrgb="r=negval:g=negval:b=negval"
13497 lutyuv="y=negval:u=negval:v=negval"
13498 @end example
13499
13500 @item
13501 Negate luminance:
13502 @example
13503 lutyuv=y=negval
13504 @end example
13505
13506 @item
13507 Remove chroma components, turning the video into a graytone image:
13508 @example
13509 lutyuv="u=128:v=128"
13510 @end example
13511
13512 @item
13513 Apply a luma burning effect:
13514 @example
13515 lutyuv="y=2*val"
13516 @end example
13517
13518 @item
13519 Remove green and blue components:
13520 @example
13521 lutrgb="g=0:b=0"
13522 @end example
13523
13524 @item
13525 Set a constant alpha channel value on input:
13526 @example
13527 format=rgba,lutrgb=a="maxval-minval/2"
13528 @end example
13529
13530 @item
13531 Correct luminance gamma by a factor of 0.5:
13532 @example
13533 lutyuv=y=gammaval(0.5)
13534 @end example
13535
13536 @item
13537 Discard least significant bits of luma:
13538 @example
13539 lutyuv=y='bitand(val, 128+64+32)'
13540 @end example
13541
13542 @item
13543 Technicolor like effect:
13544 @example
13545 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
13546 @end example
13547 @end itemize
13548
13549 @section lut2, tlut2
13550
13551 The @code{lut2} filter takes two input streams and outputs one
13552 stream.
13553
13554 The @code{tlut2} (time lut2) filter takes two consecutive frames
13555 from one single stream.
13556
13557 This filter accepts the following parameters:
13558 @table @option
13559 @item c0
13560 set first pixel component expression
13561 @item c1
13562 set second pixel component expression
13563 @item c2
13564 set third pixel component expression
13565 @item c3
13566 set fourth pixel component expression, corresponds to the alpha component
13567
13568 @item d
13569 set output bit depth, only available for @code{lut2} filter. By default is 0,
13570 which means bit depth is automatically picked from first input format.
13571 @end table
13572
13573 The @code{lut2} filter also supports the @ref{framesync} options.
13574
13575 Each of them specifies the expression to use for computing the lookup table for
13576 the corresponding pixel component values.
13577
13578 The exact component associated to each of the @var{c*} options depends on the
13579 format in inputs.
13580
13581 The expressions can contain the following constants:
13582
13583 @table @option
13584 @item w
13585 @item h
13586 The input width and height.
13587
13588 @item x
13589 The first input value for the pixel component.
13590
13591 @item y
13592 The second input value for the pixel component.
13593
13594 @item bdx
13595 The first input video bit depth.
13596
13597 @item bdy
13598 The second input video bit depth.
13599 @end table
13600
13601 All expressions default to "x".
13602
13603 @subsection Examples
13604
13605 @itemize
13606 @item
13607 Highlight differences between two RGB video streams:
13608 @example
13609 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)'
13610 @end example
13611
13612 @item
13613 Highlight differences between two YUV video streams:
13614 @example
13615 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)'
13616 @end example
13617
13618 @item
13619 Show max difference between two video streams:
13620 @example
13621 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)))'
13622 @end example
13623 @end itemize
13624
13625 @section maskedclamp
13626
13627 Clamp the first input stream with the second input and third input stream.
13628
13629 Returns the value of first stream to be between second input
13630 stream - @code{undershoot} and third input stream + @code{overshoot}.
13631
13632 This filter accepts the following options:
13633 @table @option
13634 @item undershoot
13635 Default value is @code{0}.
13636
13637 @item overshoot
13638 Default value is @code{0}.
13639
13640 @item planes
13641 Set which planes will be processed as bitmap, unprocessed planes will be
13642 copied from first stream.
13643 By default value 0xf, all planes will be processed.
13644 @end table
13645
13646 @section maskedmax
13647
13648 Merge the second and third input stream into output stream using absolute differences
13649 between second input stream and first input stream and absolute difference between
13650 third input stream and first input stream. The picked value will be from second input
13651 stream if second absolute difference is greater than first one or from third input stream
13652 otherwise.
13653
13654 This filter accepts the following options:
13655 @table @option
13656 @item planes
13657 Set which planes will be processed as bitmap, unprocessed planes will be
13658 copied from first stream.
13659 By default value 0xf, all planes will be processed.
13660 @end table
13661
13662 @section maskedmerge
13663
13664 Merge the first input stream with the second input stream using per pixel
13665 weights in the third input stream.
13666
13667 A value of 0 in the third stream pixel component means that pixel component
13668 from first stream is returned unchanged, while maximum value (eg. 255 for
13669 8-bit videos) means that pixel component from second stream is returned
13670 unchanged. Intermediate values define the amount of merging between both
13671 input stream's pixel components.
13672
13673 This filter accepts the following options:
13674 @table @option
13675 @item planes
13676 Set which planes will be processed as bitmap, unprocessed planes will be
13677 copied from first stream.
13678 By default value 0xf, all planes will be processed.
13679 @end table
13680
13681 @section maskedmin
13682
13683 Merge the second and third input stream into output stream using absolute differences
13684 between second input stream and first input stream and absolute difference between
13685 third input stream and first input stream. The picked value will be from second input
13686 stream if second absolute difference is less than first one or from third input stream
13687 otherwise.
13688
13689 This filter accepts the following options:
13690 @table @option
13691 @item planes
13692 Set which planes will be processed as bitmap, unprocessed planes will be
13693 copied from first stream.
13694 By default value 0xf, all planes will be processed.
13695 @end table
13696
13697 @section maskedthreshold
13698 Pick pixels comparing absolute difference of two video streams with fixed
13699 threshold.
13700
13701 If absolute difference between pixel component of first and second video
13702 stream is equal or lower than user supplied threshold than pixel component
13703 from first video stream is picked, otherwise pixel component from second
13704 video stream is picked.
13705
13706 This filter accepts the following options:
13707 @table @option
13708 @item threshold
13709 Set threshold used when picking pixels from absolute difference from two input
13710 video streams.
13711
13712 @item planes
13713 Set which planes will be processed as bitmap, unprocessed planes will be
13714 copied from second stream.
13715 By default value 0xf, all planes will be processed.
13716 @end table
13717
13718 @section maskfun
13719 Create mask from input video.
13720
13721 For example it is useful to create motion masks after @code{tblend} filter.
13722
13723 This filter accepts the following options:
13724
13725 @table @option
13726 @item low
13727 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
13728
13729 @item high
13730 Set high threshold. Any pixel component higher than this value will be set to max value
13731 allowed for current pixel format.
13732
13733 @item planes
13734 Set planes to filter, by default all available planes are filtered.
13735
13736 @item fill
13737 Fill all frame pixels with this value.
13738
13739 @item sum
13740 Set max average pixel value for frame. If sum of all pixel components is higher that this
13741 average, output frame will be completely filled with value set by @var{fill} option.
13742 Typically useful for scene changes when used in combination with @code{tblend} filter.
13743 @end table
13744
13745 @section mcdeint
13746
13747 Apply motion-compensation deinterlacing.
13748
13749 It needs one field per frame as input and must thus be used together
13750 with yadif=1/3 or equivalent.
13751
13752 This filter accepts the following options:
13753 @table @option
13754 @item mode
13755 Set the deinterlacing mode.
13756
13757 It accepts one of the following values:
13758 @table @samp
13759 @item fast
13760 @item medium
13761 @item slow
13762 use iterative motion estimation
13763 @item extra_slow
13764 like @samp{slow}, but use multiple reference frames.
13765 @end table
13766 Default value is @samp{fast}.
13767
13768 @item parity
13769 Set the picture field parity assumed for the input video. It must be
13770 one of the following values:
13771
13772 @table @samp
13773 @item 0, tff
13774 assume top field first
13775 @item 1, bff
13776 assume bottom field first
13777 @end table
13778
13779 Default value is @samp{bff}.
13780
13781 @item qp
13782 Set per-block quantization parameter (QP) used by the internal
13783 encoder.
13784
13785 Higher values should result in a smoother motion vector field but less
13786 optimal individual vectors. Default value is 1.
13787 @end table
13788
13789 @section median
13790
13791 Pick median pixel from certain rectangle defined by radius.
13792
13793 This filter accepts the following options:
13794
13795 @table @option
13796 @item radius
13797 Set horizontal radius size. Default value is @code{1}.
13798 Allowed range is integer from 1 to 127.
13799
13800 @item planes
13801 Set which planes to process. Default is @code{15}, which is all available planes.
13802
13803 @item radiusV
13804 Set vertical radius size. Default value is @code{0}.
13805 Allowed range is integer from 0 to 127.
13806 If it is 0, value will be picked from horizontal @code{radius} option.
13807
13808 @item percentile
13809 Set median percentile. Default value is @code{0.5}.
13810 Default value of @code{0.5} will pick always median values, while @code{0} will pick
13811 minimum values, and @code{1} maximum values.
13812 @end table
13813
13814 @subsection Commands
13815 This filter supports same @ref{commands} as options.
13816 The command accepts the same syntax of the corresponding option.
13817
13818 If the specified expression is not valid, it is kept at its current
13819 value.
13820
13821 @section mergeplanes
13822
13823 Merge color channel components from several video streams.
13824
13825 The filter accepts up to 4 input streams, and merge selected input
13826 planes to the output video.
13827
13828 This filter accepts the following options:
13829 @table @option
13830 @item mapping
13831 Set input to output plane mapping. Default is @code{0}.
13832
13833 The mappings is specified as a bitmap. It should be specified as a
13834 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
13835 mapping for the first plane of the output stream. 'A' sets the number of
13836 the input stream to use (from 0 to 3), and 'a' the plane number of the
13837 corresponding input to use (from 0 to 3). The rest of the mappings is
13838 similar, 'Bb' describes the mapping for the output stream second
13839 plane, 'Cc' describes the mapping for the output stream third plane and
13840 'Dd' describes the mapping for the output stream fourth plane.
13841
13842 @item format
13843 Set output pixel format. Default is @code{yuva444p}.
13844 @end table
13845
13846 @subsection Examples
13847
13848 @itemize
13849 @item
13850 Merge three gray video streams of same width and height into single video stream:
13851 @example
13852 [a0][a1][a2]mergeplanes=0x001020:yuv444p
13853 @end example
13854
13855 @item
13856 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
13857 @example
13858 [a0][a1]mergeplanes=0x00010210:yuva444p
13859 @end example
13860
13861 @item
13862 Swap Y and A plane in yuva444p stream:
13863 @example
13864 format=yuva444p,mergeplanes=0x03010200:yuva444p
13865 @end example
13866
13867 @item
13868 Swap U and V plane in yuv420p stream:
13869 @example
13870 format=yuv420p,mergeplanes=0x000201:yuv420p
13871 @end example
13872
13873 @item
13874 Cast a rgb24 clip to yuv444p:
13875 @example
13876 format=rgb24,mergeplanes=0x000102:yuv444p
13877 @end example
13878 @end itemize
13879
13880 @section mestimate
13881
13882 Estimate and export motion vectors using block matching algorithms.
13883 Motion vectors are stored in frame side data to be used by other filters.
13884
13885 This filter accepts the following options:
13886 @table @option
13887 @item method
13888 Specify the motion estimation method. Accepts one of the following values:
13889
13890 @table @samp
13891 @item esa
13892 Exhaustive search algorithm.
13893 @item tss
13894 Three step search algorithm.
13895 @item tdls
13896 Two dimensional logarithmic search algorithm.
13897 @item ntss
13898 New three step search algorithm.
13899 @item fss
13900 Four step search algorithm.
13901 @item ds
13902 Diamond search algorithm.
13903 @item hexbs
13904 Hexagon-based search algorithm.
13905 @item epzs
13906 Enhanced predictive zonal search algorithm.
13907 @item umh
13908 Uneven multi-hexagon search algorithm.
13909 @end table
13910 Default value is @samp{esa}.
13911
13912 @item mb_size
13913 Macroblock size. Default @code{16}.
13914
13915 @item search_param
13916 Search parameter. Default @code{7}.
13917 @end table
13918
13919 @section midequalizer
13920
13921 Apply Midway Image Equalization effect using two video streams.
13922
13923 Midway Image Equalization adjusts a pair of images to have the same
13924 histogram, while maintaining their dynamics as much as possible. It's
13925 useful for e.g. matching exposures from a pair of stereo cameras.
13926
13927 This filter has two inputs and one output, which must be of same pixel format, but
13928 may be of different sizes. The output of filter is first input adjusted with
13929 midway histogram of both inputs.
13930
13931 This filter accepts the following option:
13932
13933 @table @option
13934 @item planes
13935 Set which planes to process. Default is @code{15}, which is all available planes.
13936 @end table
13937
13938 @section minterpolate
13939
13940 Convert the video to specified frame rate using motion interpolation.
13941
13942 This filter accepts the following options:
13943 @table @option
13944 @item fps
13945 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}.
13946
13947 @item mi_mode
13948 Motion interpolation mode. Following values are accepted:
13949 @table @samp
13950 @item dup
13951 Duplicate previous or next frame for interpolating new ones.
13952 @item blend
13953 Blend source frames. Interpolated frame is mean of previous and next frames.
13954 @item mci
13955 Motion compensated interpolation. Following options are effective when this mode is selected:
13956
13957 @table @samp
13958 @item mc_mode
13959 Motion compensation mode. Following values are accepted:
13960 @table @samp
13961 @item obmc
13962 Overlapped block motion compensation.
13963 @item aobmc
13964 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
13965 @end table
13966 Default mode is @samp{obmc}.
13967
13968 @item me_mode
13969 Motion estimation mode. Following values are accepted:
13970 @table @samp
13971 @item bidir
13972 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
13973 @item bilat
13974 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
13975 @end table
13976 Default mode is @samp{bilat}.
13977
13978 @item me
13979 The algorithm to be used for motion estimation. Following values are accepted:
13980 @table @samp
13981 @item esa
13982 Exhaustive search algorithm.
13983 @item tss
13984 Three step search algorithm.
13985 @item tdls
13986 Two dimensional logarithmic search algorithm.
13987 @item ntss
13988 New three step search algorithm.
13989 @item fss
13990 Four step search algorithm.
13991 @item ds
13992 Diamond search algorithm.
13993 @item hexbs
13994 Hexagon-based search algorithm.
13995 @item epzs
13996 Enhanced predictive zonal search algorithm.
13997 @item umh
13998 Uneven multi-hexagon search algorithm.
13999 @end table
14000 Default algorithm is @samp{epzs}.
14001
14002 @item mb_size
14003 Macroblock size. Default @code{16}.
14004
14005 @item search_param
14006 Motion estimation search parameter. Default @code{32}.
14007
14008 @item vsbmc
14009 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).
14010 @end table
14011 @end table
14012
14013 @item scd
14014 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:
14015 @table @samp
14016 @item none
14017 Disable scene change detection.
14018 @item fdiff
14019 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14020 @end table
14021 Default method is @samp{fdiff}.
14022
14023 @item scd_threshold
14024 Scene change detection threshold. Default is @code{10.}.
14025 @end table
14026
14027 @section mix
14028
14029 Mix several video input streams into one video stream.
14030
14031 A description of the accepted options follows.
14032
14033 @table @option
14034 @item nb_inputs
14035 The number of inputs. If unspecified, it defaults to 2.
14036
14037 @item weights
14038 Specify weight of each input video stream as sequence.
14039 Each weight is separated by space. If number of weights
14040 is smaller than number of @var{frames} last specified
14041 weight will be used for all remaining unset weights.
14042
14043 @item scale
14044 Specify scale, if it is set it will be multiplied with sum
14045 of each weight multiplied with pixel values to give final destination
14046 pixel value. By default @var{scale} is auto scaled to sum of weights.
14047
14048 @item duration
14049 Specify how end of stream is determined.
14050 @table @samp
14051 @item longest
14052 The duration of the longest input. (default)
14053
14054 @item shortest
14055 The duration of the shortest input.
14056
14057 @item first
14058 The duration of the first input.
14059 @end table
14060 @end table
14061
14062 @section mpdecimate
14063
14064 Drop frames that do not differ greatly from the previous frame in
14065 order to reduce frame rate.
14066
14067 The main use of this filter is for very-low-bitrate encoding
14068 (e.g. streaming over dialup modem), but it could in theory be used for
14069 fixing movies that were inverse-telecined incorrectly.
14070
14071 A description of the accepted options follows.
14072
14073 @table @option
14074 @item max
14075 Set the maximum number of consecutive frames which can be dropped (if
14076 positive), or the minimum interval between dropped frames (if
14077 negative). If the value is 0, the frame is dropped disregarding the
14078 number of previous sequentially dropped frames.
14079
14080 Default value is 0.
14081
14082 @item hi
14083 @item lo
14084 @item frac
14085 Set the dropping threshold values.
14086
14087 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14088 represent actual pixel value differences, so a threshold of 64
14089 corresponds to 1 unit of difference for each pixel, or the same spread
14090 out differently over the block.
14091
14092 A frame is a candidate for dropping if no 8x8 blocks differ by more
14093 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14094 meaning the whole image) differ by more than a threshold of @option{lo}.
14095
14096 Default value for @option{hi} is 64*12, default value for @option{lo} is
14097 64*5, and default value for @option{frac} is 0.33.
14098 @end table
14099
14100
14101 @section negate
14102
14103 Negate (invert) the input video.
14104
14105 It accepts the following option:
14106
14107 @table @option
14108
14109 @item negate_alpha
14110 With value 1, it negates the alpha component, if present. Default value is 0.
14111 @end table
14112
14113 @anchor{nlmeans}
14114 @section nlmeans
14115
14116 Denoise frames using Non-Local Means algorithm.
14117
14118 Each pixel is adjusted by looking for other pixels with similar contexts. This
14119 context similarity is defined by comparing their surrounding patches of size
14120 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14121 around the pixel.
14122
14123 Note that the research area defines centers for patches, which means some
14124 patches will be made of pixels outside that research area.
14125
14126 The filter accepts the following options.
14127
14128 @table @option
14129 @item s
14130 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
14131
14132 @item p
14133 Set patch size. Default is 7. Must be odd number in range [0, 99].
14134
14135 @item pc
14136 Same as @option{p} but for chroma planes.
14137
14138 The default value is @var{0} and means automatic.
14139
14140 @item r
14141 Set research size. Default is 15. Must be odd number in range [0, 99].
14142
14143 @item rc
14144 Same as @option{r} but for chroma planes.
14145
14146 The default value is @var{0} and means automatic.
14147 @end table
14148
14149 @section nnedi
14150
14151 Deinterlace video using neural network edge directed interpolation.
14152
14153 This filter accepts the following options:
14154
14155 @table @option
14156 @item weights
14157 Mandatory option, without binary file filter can not work.
14158 Currently file can be found here:
14159 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
14160
14161 @item deint
14162 Set which frames to deinterlace, by default it is @code{all}.
14163 Can be @code{all} or @code{interlaced}.
14164
14165 @item field
14166 Set mode of operation.
14167
14168 Can be one of the following:
14169
14170 @table @samp
14171 @item af
14172 Use frame flags, both fields.
14173 @item a
14174 Use frame flags, single field.
14175 @item t
14176 Use top field only.
14177 @item b
14178 Use bottom field only.
14179 @item tf
14180 Use both fields, top first.
14181 @item bf
14182 Use both fields, bottom first.
14183 @end table
14184
14185 @item planes
14186 Set which planes to process, by default filter process all frames.
14187
14188 @item nsize
14189 Set size of local neighborhood around each pixel, used by the predictor neural
14190 network.
14191
14192 Can be one of the following:
14193
14194 @table @samp
14195 @item s8x6
14196 @item s16x6
14197 @item s32x6
14198 @item s48x6
14199 @item s8x4
14200 @item s16x4
14201 @item s32x4
14202 @end table
14203
14204 @item nns
14205 Set the number of neurons in predictor neural network.
14206 Can be one of the following:
14207
14208 @table @samp
14209 @item n16
14210 @item n32
14211 @item n64
14212 @item n128
14213 @item n256
14214 @end table
14215
14216 @item qual
14217 Controls the number of different neural network predictions that are blended
14218 together to compute the final output value. Can be @code{fast}, default or
14219 @code{slow}.
14220
14221 @item etype
14222 Set which set of weights to use in the predictor.
14223 Can be one of the following:
14224
14225 @table @samp
14226 @item a
14227 weights trained to minimize absolute error
14228 @item s
14229 weights trained to minimize squared error
14230 @end table
14231
14232 @item pscrn
14233 Controls whether or not the prescreener neural network is used to decide
14234 which pixels should be processed by the predictor neural network and which
14235 can be handled by simple cubic interpolation.
14236 The prescreener is trained to know whether cubic interpolation will be
14237 sufficient for a pixel or whether it should be predicted by the predictor nn.
14238 The computational complexity of the prescreener nn is much less than that of
14239 the predictor nn. Since most pixels can be handled by cubic interpolation,
14240 using the prescreener generally results in much faster processing.
14241 The prescreener is pretty accurate, so the difference between using it and not
14242 using it is almost always unnoticeable.
14243
14244 Can be one of the following:
14245
14246 @table @samp
14247 @item none
14248 @item original
14249 @item new
14250 @end table
14251
14252 Default is @code{new}.
14253
14254 @item fapprox
14255 Set various debugging flags.
14256 @end table
14257
14258 @section noformat
14259
14260 Force libavfilter not to use any of the specified pixel formats for the
14261 input to the next filter.
14262
14263 It accepts the following parameters:
14264 @table @option
14265
14266 @item pix_fmts
14267 A '|'-separated list of pixel format names, such as
14268 pix_fmts=yuv420p|monow|rgb24".
14269
14270 @end table
14271
14272 @subsection Examples
14273
14274 @itemize
14275 @item
14276 Force libavfilter to use a format different from @var{yuv420p} for the
14277 input to the vflip filter:
14278 @example
14279 noformat=pix_fmts=yuv420p,vflip
14280 @end example
14281
14282 @item
14283 Convert the input video to any of the formats not contained in the list:
14284 @example
14285 noformat=yuv420p|yuv444p|yuv410p
14286 @end example
14287 @end itemize
14288
14289 @section noise
14290
14291 Add noise on video input frame.
14292
14293 The filter accepts the following options:
14294
14295 @table @option
14296 @item all_seed
14297 @item c0_seed
14298 @item c1_seed
14299 @item c2_seed
14300 @item c3_seed
14301 Set noise seed for specific pixel component or all pixel components in case
14302 of @var{all_seed}. Default value is @code{123457}.
14303
14304 @item all_strength, alls
14305 @item c0_strength, c0s
14306 @item c1_strength, c1s
14307 @item c2_strength, c2s
14308 @item c3_strength, c3s
14309 Set noise strength for specific pixel component or all pixel components in case
14310 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
14311
14312 @item all_flags, allf
14313 @item c0_flags, c0f
14314 @item c1_flags, c1f
14315 @item c2_flags, c2f
14316 @item c3_flags, c3f
14317 Set pixel component flags or set flags for all components if @var{all_flags}.
14318 Available values for component flags are:
14319 @table @samp
14320 @item a
14321 averaged temporal noise (smoother)
14322 @item p
14323 mix random noise with a (semi)regular pattern
14324 @item t
14325 temporal noise (noise pattern changes between frames)
14326 @item u
14327 uniform noise (gaussian otherwise)
14328 @end table
14329 @end table
14330
14331 @subsection Examples
14332
14333 Add temporal and uniform noise to input video:
14334 @example
14335 noise=alls=20:allf=t+u
14336 @end example
14337
14338 @section normalize
14339
14340 Normalize RGB video (aka histogram stretching, contrast stretching).
14341 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
14342
14343 For each channel of each frame, the filter computes the input range and maps
14344 it linearly to the user-specified output range. The output range defaults
14345 to the full dynamic range from pure black to pure white.
14346
14347 Temporal smoothing can be used on the input range to reduce flickering (rapid
14348 changes in brightness) caused when small dark or bright objects enter or leave
14349 the scene. This is similar to the auto-exposure (automatic gain control) on a
14350 video camera, and, like a video camera, it may cause a period of over- or
14351 under-exposure of the video.
14352
14353 The R,G,B channels can be normalized independently, which may cause some
14354 color shifting, or linked together as a single channel, which prevents
14355 color shifting. Linked normalization preserves hue. Independent normalization
14356 does not, so it can be used to remove some color casts. Independent and linked
14357 normalization can be combined in any ratio.
14358
14359 The normalize filter accepts the following options:
14360
14361 @table @option
14362 @item blackpt
14363 @item whitept
14364 Colors which define the output range. The minimum input value is mapped to
14365 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
14366 The defaults are black and white respectively. Specifying white for
14367 @var{blackpt} and black for @var{whitept} will give color-inverted,
14368 normalized video. Shades of grey can be used to reduce the dynamic range
14369 (contrast). Specifying saturated colors here can create some interesting
14370 effects.
14371
14372 @item smoothing
14373 The number of previous frames to use for temporal smoothing. The input range
14374 of each channel is smoothed using a rolling average over the current frame
14375 and the @var{smoothing} previous frames. The default is 0 (no temporal
14376 smoothing).
14377
14378 @item independence
14379 Controls the ratio of independent (color shifting) channel normalization to
14380 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
14381 independent. Defaults to 1.0 (fully independent).
14382
14383 @item strength
14384 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
14385 expensive no-op. Defaults to 1.0 (full strength).
14386
14387 @end table
14388
14389 @subsection Commands
14390 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
14391 The command accepts the same syntax of the corresponding option.
14392
14393 If the specified expression is not valid, it is kept at its current
14394 value.
14395
14396 @subsection Examples
14397
14398 Stretch video contrast to use the full dynamic range, with no temporal
14399 smoothing; may flicker depending on the source content:
14400 @example
14401 normalize=blackpt=black:whitept=white:smoothing=0
14402 @end example
14403
14404 As above, but with 50 frames of temporal smoothing; flicker should be
14405 reduced, depending on the source content:
14406 @example
14407 normalize=blackpt=black:whitept=white:smoothing=50
14408 @end example
14409
14410 As above, but with hue-preserving linked channel normalization:
14411 @example
14412 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
14413 @end example
14414
14415 As above, but with half strength:
14416 @example
14417 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
14418 @end example
14419
14420 Map the darkest input color to red, the brightest input color to cyan:
14421 @example
14422 normalize=blackpt=red:whitept=cyan
14423 @end example
14424
14425 @section null
14426
14427 Pass the video source unchanged to the output.
14428
14429 @section ocr
14430 Optical Character Recognition
14431
14432 This filter uses Tesseract for optical character recognition. To enable
14433 compilation of this filter, you need to configure FFmpeg with
14434 @code{--enable-libtesseract}.
14435
14436 It accepts the following options:
14437
14438 @table @option
14439 @item datapath
14440 Set datapath to tesseract data. Default is to use whatever was
14441 set at installation.
14442
14443 @item language
14444 Set language, default is "eng".
14445
14446 @item whitelist
14447 Set character whitelist.
14448
14449 @item blacklist
14450 Set character blacklist.
14451 @end table
14452
14453 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
14454 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
14455
14456 @section ocv
14457
14458 Apply a video transform using libopencv.
14459
14460 To enable this filter, install the libopencv library and headers and
14461 configure FFmpeg with @code{--enable-libopencv}.
14462
14463 It accepts the following parameters:
14464
14465 @table @option
14466
14467 @item filter_name
14468 The name of the libopencv filter to apply.
14469
14470 @item filter_params
14471 The parameters to pass to the libopencv filter. If not specified, the default
14472 values are assumed.
14473
14474 @end table
14475
14476 Refer to the official libopencv documentation for more precise
14477 information:
14478 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
14479
14480 Several libopencv filters are supported; see the following subsections.
14481
14482 @anchor{dilate}
14483 @subsection dilate
14484
14485 Dilate an image by using a specific structuring element.
14486 It corresponds to the libopencv function @code{cvDilate}.
14487
14488 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
14489
14490 @var{struct_el} represents a structuring element, and has the syntax:
14491 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
14492
14493 @var{cols} and @var{rows} represent the number of columns and rows of
14494 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
14495 point, and @var{shape} the shape for the structuring element. @var{shape}
14496 must be "rect", "cross", "ellipse", or "custom".
14497
14498 If the value for @var{shape} is "custom", it must be followed by a
14499 string of the form "=@var{filename}". The file with name
14500 @var{filename} is assumed to represent a binary image, with each
14501 printable character corresponding to a bright pixel. When a custom
14502 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
14503 or columns and rows of the read file are assumed instead.
14504
14505 The default value for @var{struct_el} is "3x3+0x0/rect".
14506
14507 @var{nb_iterations} specifies the number of times the transform is
14508 applied to the image, and defaults to 1.
14509
14510 Some examples:
14511 @example
14512 # Use the default values
14513 ocv=dilate
14514
14515 # Dilate using a structuring element with a 5x5 cross, iterating two times
14516 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
14517
14518 # Read the shape from the file diamond.shape, iterating two times.
14519 # The file diamond.shape may contain a pattern of characters like this
14520 #   *
14521 #  ***
14522 # *****
14523 #  ***
14524 #   *
14525 # The specified columns and rows are ignored
14526 # but the anchor point coordinates are not
14527 ocv=dilate:0x0+2x2/custom=diamond.shape|2
14528 @end example
14529
14530 @subsection erode
14531
14532 Erode an image by using a specific structuring element.
14533 It corresponds to the libopencv function @code{cvErode}.
14534
14535 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
14536 with the same syntax and semantics as the @ref{dilate} filter.
14537
14538 @subsection smooth
14539
14540 Smooth the input video.
14541
14542 The filter takes the following parameters:
14543 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
14544
14545 @var{type} is the type of smooth filter to apply, and must be one of
14546 the following values: "blur", "blur_no_scale", "median", "gaussian",
14547 or "bilateral". The default value is "gaussian".
14548
14549 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
14550 depends on the smooth type. @var{param1} and
14551 @var{param2} accept integer positive values or 0. @var{param3} and
14552 @var{param4} accept floating point values.
14553
14554 The default value for @var{param1} is 3. The default value for the
14555 other parameters is 0.
14556
14557 These parameters correspond to the parameters assigned to the
14558 libopencv function @code{cvSmooth}.
14559
14560 @section oscilloscope
14561
14562 2D Video Oscilloscope.
14563
14564 Useful to measure spatial impulse, step responses, chroma delays, etc.
14565
14566 It accepts the following parameters:
14567
14568 @table @option
14569 @item x
14570 Set scope center x position.
14571
14572 @item y
14573 Set scope center y position.
14574
14575 @item s
14576 Set scope size, relative to frame diagonal.
14577
14578 @item t
14579 Set scope tilt/rotation.
14580
14581 @item o
14582 Set trace opacity.
14583
14584 @item tx
14585 Set trace center x position.
14586
14587 @item ty
14588 Set trace center y position.
14589
14590 @item tw
14591 Set trace width, relative to width of frame.
14592
14593 @item th
14594 Set trace height, relative to height of frame.
14595
14596 @item c
14597 Set which components to trace. By default it traces first three components.
14598
14599 @item g
14600 Draw trace grid. By default is enabled.
14601
14602 @item st
14603 Draw some statistics. By default is enabled.
14604
14605 @item sc
14606 Draw scope. By default is enabled.
14607 @end table
14608
14609 @subsection Commands
14610 This filter supports same @ref{commands} as options.
14611 The command accepts the same syntax of the corresponding option.
14612
14613 If the specified expression is not valid, it is kept at its current
14614 value.
14615
14616 @subsection Examples
14617
14618 @itemize
14619 @item
14620 Inspect full first row of video frame.
14621 @example
14622 oscilloscope=x=0.5:y=0:s=1
14623 @end example
14624
14625 @item
14626 Inspect full last row of video frame.
14627 @example
14628 oscilloscope=x=0.5:y=1:s=1
14629 @end example
14630
14631 @item
14632 Inspect full 5th line of video frame of height 1080.
14633 @example
14634 oscilloscope=x=0.5:y=5/1080:s=1
14635 @end example
14636
14637 @item
14638 Inspect full last column of video frame.
14639 @example
14640 oscilloscope=x=1:y=0.5:s=1:t=1
14641 @end example
14642
14643 @end itemize
14644
14645 @anchor{overlay}
14646 @section overlay
14647
14648 Overlay one video on top of another.
14649
14650 It takes two inputs and has one output. The first input is the "main"
14651 video on which the second input is overlaid.
14652
14653 It accepts the following parameters:
14654
14655 A description of the accepted options follows.
14656
14657 @table @option
14658 @item x
14659 @item y
14660 Set the expression for the x and y coordinates of the overlaid video
14661 on the main video. Default value is "0" for both expressions. In case
14662 the expression is invalid, it is set to a huge value (meaning that the
14663 overlay will not be displayed within the output visible area).
14664
14665 @item eof_action
14666 See @ref{framesync}.
14667
14668 @item eval
14669 Set when the expressions for @option{x}, and @option{y} are evaluated.
14670
14671 It accepts the following values:
14672 @table @samp
14673 @item init
14674 only evaluate expressions once during the filter initialization or
14675 when a command is processed
14676
14677 @item frame
14678 evaluate expressions for each incoming frame
14679 @end table
14680
14681 Default value is @samp{frame}.
14682
14683 @item shortest
14684 See @ref{framesync}.
14685
14686 @item format
14687 Set the format for the output video.
14688
14689 It accepts the following values:
14690 @table @samp
14691 @item yuv420
14692 force YUV420 output
14693
14694 @item yuv420p10
14695 force YUV420p10 output
14696
14697 @item yuv422
14698 force YUV422 output
14699
14700 @item yuv422p10
14701 force YUV422p10 output
14702
14703 @item yuv444
14704 force YUV444 output
14705
14706 @item rgb
14707 force packed RGB output
14708
14709 @item gbrp
14710 force planar RGB output
14711
14712 @item auto
14713 automatically pick format
14714 @end table
14715
14716 Default value is @samp{yuv420}.
14717
14718 @item repeatlast
14719 See @ref{framesync}.
14720
14721 @item alpha
14722 Set format of alpha of the overlaid video, it can be @var{straight} or
14723 @var{premultiplied}. Default is @var{straight}.
14724 @end table
14725
14726 The @option{x}, and @option{y} expressions can contain the following
14727 parameters.
14728
14729 @table @option
14730 @item main_w, W
14731 @item main_h, H
14732 The main input width and height.
14733
14734 @item overlay_w, w
14735 @item overlay_h, h
14736 The overlay input width and height.
14737
14738 @item x
14739 @item y
14740 The computed values for @var{x} and @var{y}. They are evaluated for
14741 each new frame.
14742
14743 @item hsub
14744 @item vsub
14745 horizontal and vertical chroma subsample values of the output
14746 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
14747 @var{vsub} is 1.
14748
14749 @item n
14750 the number of input frame, starting from 0
14751
14752 @item pos
14753 the position in the file of the input frame, NAN if unknown
14754
14755 @item t
14756 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
14757
14758 @end table
14759
14760 This filter also supports the @ref{framesync} options.
14761
14762 Note that the @var{n}, @var{pos}, @var{t} variables are available only
14763 when evaluation is done @emph{per frame}, and will evaluate to NAN
14764 when @option{eval} is set to @samp{init}.
14765
14766 Be aware that frames are taken from each input video in timestamp
14767 order, hence, if their initial timestamps differ, it is a good idea
14768 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
14769 have them begin in the same zero timestamp, as the example for
14770 the @var{movie} filter does.
14771
14772 You can chain together more overlays but you should test the
14773 efficiency of such approach.
14774
14775 @subsection Commands
14776
14777 This filter supports the following commands:
14778 @table @option
14779 @item x
14780 @item y
14781 Modify the x and y of the overlay input.
14782 The command accepts the same syntax of the corresponding option.
14783
14784 If the specified expression is not valid, it is kept at its current
14785 value.
14786 @end table
14787
14788 @subsection Examples
14789
14790 @itemize
14791 @item
14792 Draw the overlay at 10 pixels from the bottom right corner of the main
14793 video:
14794 @example
14795 overlay=main_w-overlay_w-10:main_h-overlay_h-10
14796 @end example
14797
14798 Using named options the example above becomes:
14799 @example
14800 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
14801 @end example
14802
14803 @item
14804 Insert a transparent PNG logo in the bottom left corner of the input,
14805 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
14806 @example
14807 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
14808 @end example
14809
14810 @item
14811 Insert 2 different transparent PNG logos (second logo on bottom
14812 right corner) using the @command{ffmpeg} tool:
14813 @example
14814 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
14815 @end example
14816
14817 @item
14818 Add a transparent color layer on top of the main video; @code{WxH}
14819 must specify the size of the main input to the overlay filter:
14820 @example
14821 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
14822 @end example
14823
14824 @item
14825 Play an original video and a filtered version (here with the deshake
14826 filter) side by side using the @command{ffplay} tool:
14827 @example
14828 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
14829 @end example
14830
14831 The above command is the same as:
14832 @example
14833 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
14834 @end example
14835
14836 @item
14837 Make a sliding overlay appearing from the left to the right top part of the
14838 screen starting since time 2:
14839 @example
14840 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
14841 @end example
14842
14843 @item
14844 Compose output by putting two input videos side to side:
14845 @example
14846 ffmpeg -i left.avi -i right.avi -filter_complex "
14847 nullsrc=size=200x100 [background];
14848 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
14849 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
14850 [background][left]       overlay=shortest=1       [background+left];
14851 [background+left][right] overlay=shortest=1:x=100 [left+right]
14852 "
14853 @end example
14854
14855 @item
14856 Mask 10-20 seconds of a video by applying the delogo filter to a section
14857 @example
14858 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
14859 -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]'
14860 masked.avi
14861 @end example
14862
14863 @item
14864 Chain several overlays in cascade:
14865 @example
14866 nullsrc=s=200x200 [bg];
14867 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
14868 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
14869 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
14870 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
14871 [in3] null,       [mid2] overlay=100:100 [out0]
14872 @end example
14873
14874 @end itemize
14875
14876 @anchor{overlay_cuda}
14877 @section overlay_cuda
14878
14879 Overlay one video on top of another.
14880
14881 This is the CUDA variant of the @ref{overlay} filter.
14882 It only accepts CUDA frames. The underlying input pixel formats have to match.
14883
14884 It takes two inputs and has one output. The first input is the "main"
14885 video on which the second input is overlaid.
14886
14887 It accepts the following parameters:
14888
14889 @table @option
14890 @item x
14891 @item y
14892 Set the x and y coordinates of the overlaid video on the main video.
14893 Default value is "0" for both expressions.
14894
14895 @item eof_action
14896 See @ref{framesync}.
14897
14898 @item shortest
14899 See @ref{framesync}.
14900
14901 @item repeatlast
14902 See @ref{framesync}.
14903
14904 @end table
14905
14906 This filter also supports the @ref{framesync} options.
14907
14908 @section owdenoise
14909
14910 Apply Overcomplete Wavelet denoiser.
14911
14912 The filter accepts the following options:
14913
14914 @table @option
14915 @item depth
14916 Set depth.
14917
14918 Larger depth values will denoise lower frequency components more, but
14919 slow down filtering.
14920
14921 Must be an int in the range 8-16, default is @code{8}.
14922
14923 @item luma_strength, ls
14924 Set luma strength.
14925
14926 Must be a double value in the range 0-1000, default is @code{1.0}.
14927
14928 @item chroma_strength, cs
14929 Set chroma strength.
14930
14931 Must be a double value in the range 0-1000, default is @code{1.0}.
14932 @end table
14933
14934 @anchor{pad}
14935 @section pad
14936
14937 Add paddings to the input image, and place the original input at the
14938 provided @var{x}, @var{y} coordinates.
14939
14940 It accepts the following parameters:
14941
14942 @table @option
14943 @item width, w
14944 @item height, h
14945 Specify an expression for the size of the output image with the
14946 paddings added. If the value for @var{width} or @var{height} is 0, the
14947 corresponding input size is used for the output.
14948
14949 The @var{width} expression can reference the value set by the
14950 @var{height} expression, and vice versa.
14951
14952 The default value of @var{width} and @var{height} is 0.
14953
14954 @item x
14955 @item y
14956 Specify the offsets to place the input image at within the padded area,
14957 with respect to the top/left border of the output image.
14958
14959 The @var{x} expression can reference the value set by the @var{y}
14960 expression, and vice versa.
14961
14962 The default value of @var{x} and @var{y} is 0.
14963
14964 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
14965 so the input image is centered on the padded area.
14966
14967 @item color
14968 Specify the color of the padded area. For the syntax of this option,
14969 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
14970 manual,ffmpeg-utils}.
14971
14972 The default value of @var{color} is "black".
14973
14974 @item eval
14975 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
14976
14977 It accepts the following values:
14978
14979 @table @samp
14980 @item init
14981 Only evaluate expressions once during the filter initialization or when
14982 a command is processed.
14983
14984 @item frame
14985 Evaluate expressions for each incoming frame.
14986
14987 @end table
14988
14989 Default value is @samp{init}.
14990
14991 @item aspect
14992 Pad to aspect instead to a resolution.
14993
14994 @end table
14995
14996 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
14997 options are expressions containing the following constants:
14998
14999 @table @option
15000 @item in_w
15001 @item in_h
15002 The input video width and height.
15003
15004 @item iw
15005 @item ih
15006 These are the same as @var{in_w} and @var{in_h}.
15007
15008 @item out_w
15009 @item out_h
15010 The output width and height (the size of the padded area), as
15011 specified by the @var{width} and @var{height} expressions.
15012
15013 @item ow
15014 @item oh
15015 These are the same as @var{out_w} and @var{out_h}.
15016
15017 @item x
15018 @item y
15019 The x and y offsets as specified by the @var{x} and @var{y}
15020 expressions, or NAN if not yet specified.
15021
15022 @item a
15023 same as @var{iw} / @var{ih}
15024
15025 @item sar
15026 input sample aspect ratio
15027
15028 @item dar
15029 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15030
15031 @item hsub
15032 @item vsub
15033 The horizontal and vertical chroma subsample values. For example for the
15034 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15035 @end table
15036
15037 @subsection Examples
15038
15039 @itemize
15040 @item
15041 Add paddings with the color "violet" to the input video. The output video
15042 size is 640x480, and the top-left corner of the input video is placed at
15043 column 0, row 40
15044 @example
15045 pad=640:480:0:40:violet
15046 @end example
15047
15048 The example above is equivalent to the following command:
15049 @example
15050 pad=width=640:height=480:x=0:y=40:color=violet
15051 @end example
15052
15053 @item
15054 Pad the input to get an output with dimensions increased by 3/2,
15055 and put the input video at the center of the padded area:
15056 @example
15057 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15058 @end example
15059
15060 @item
15061 Pad the input to get a squared output with size equal to the maximum
15062 value between the input width and height, and put the input video at
15063 the center of the padded area:
15064 @example
15065 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15066 @end example
15067
15068 @item
15069 Pad the input to get a final w/h ratio of 16:9:
15070 @example
15071 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15072 @end example
15073
15074 @item
15075 In case of anamorphic video, in order to set the output display aspect
15076 correctly, it is necessary to use @var{sar} in the expression,
15077 according to the relation:
15078 @example
15079 (ih * X / ih) * sar = output_dar
15080 X = output_dar / sar
15081 @end example
15082
15083 Thus the previous example needs to be modified to:
15084 @example
15085 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15086 @end example
15087
15088 @item
15089 Double the output size and put the input video in the bottom-right
15090 corner of the output padded area:
15091 @example
15092 pad="2*iw:2*ih:ow-iw:oh-ih"
15093 @end example
15094 @end itemize
15095
15096 @anchor{palettegen}
15097 @section palettegen
15098
15099 Generate one palette for a whole video stream.
15100
15101 It accepts the following options:
15102
15103 @table @option
15104 @item max_colors
15105 Set the maximum number of colors to quantize in the palette.
15106 Note: the palette will still contain 256 colors; the unused palette entries
15107 will be black.
15108
15109 @item reserve_transparent
15110 Create a palette of 255 colors maximum and reserve the last one for
15111 transparency. Reserving the transparency color is useful for GIF optimization.
15112 If not set, the maximum of colors in the palette will be 256. You probably want
15113 to disable this option for a standalone image.
15114 Set by default.
15115
15116 @item transparency_color
15117 Set the color that will be used as background for transparency.
15118
15119 @item stats_mode
15120 Set statistics mode.
15121
15122 It accepts the following values:
15123 @table @samp
15124 @item full
15125 Compute full frame histograms.
15126 @item diff
15127 Compute histograms only for the part that differs from previous frame. This
15128 might be relevant to give more importance to the moving part of your input if
15129 the background is static.
15130 @item single
15131 Compute new histogram for each frame.
15132 @end table
15133
15134 Default value is @var{full}.
15135 @end table
15136
15137 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
15138 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
15139 color quantization of the palette. This information is also visible at
15140 @var{info} logging level.
15141
15142 @subsection Examples
15143
15144 @itemize
15145 @item
15146 Generate a representative palette of a given video using @command{ffmpeg}:
15147 @example
15148 ffmpeg -i input.mkv -vf palettegen palette.png
15149 @end example
15150 @end itemize
15151
15152 @section paletteuse
15153
15154 Use a palette to downsample an input video stream.
15155
15156 The filter takes two inputs: one video stream and a palette. The palette must
15157 be a 256 pixels image.
15158
15159 It accepts the following options:
15160
15161 @table @option
15162 @item dither
15163 Select dithering mode. Available algorithms are:
15164 @table @samp
15165 @item bayer
15166 Ordered 8x8 bayer dithering (deterministic)
15167 @item heckbert
15168 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
15169 Note: this dithering is sometimes considered "wrong" and is included as a
15170 reference.
15171 @item floyd_steinberg
15172 Floyd and Steingberg dithering (error diffusion)
15173 @item sierra2
15174 Frankie Sierra dithering v2 (error diffusion)
15175 @item sierra2_4a
15176 Frankie Sierra dithering v2 "Lite" (error diffusion)
15177 @end table
15178
15179 Default is @var{sierra2_4a}.
15180
15181 @item bayer_scale
15182 When @var{bayer} dithering is selected, this option defines the scale of the
15183 pattern (how much the crosshatch pattern is visible). A low value means more
15184 visible pattern for less banding, and higher value means less visible pattern
15185 at the cost of more banding.
15186
15187 The option must be an integer value in the range [0,5]. Default is @var{2}.
15188
15189 @item diff_mode
15190 If set, define the zone to process
15191
15192 @table @samp
15193 @item rectangle
15194 Only the changing rectangle will be reprocessed. This is similar to GIF
15195 cropping/offsetting compression mechanism. This option can be useful for speed
15196 if only a part of the image is changing, and has use cases such as limiting the
15197 scope of the error diffusal @option{dither} to the rectangle that bounds the
15198 moving scene (it leads to more deterministic output if the scene doesn't change
15199 much, and as a result less moving noise and better GIF compression).
15200 @end table
15201
15202 Default is @var{none}.
15203
15204 @item new
15205 Take new palette for each output frame.
15206
15207 @item alpha_threshold
15208 Sets the alpha threshold for transparency. Alpha values above this threshold
15209 will be treated as completely opaque, and values below this threshold will be
15210 treated as completely transparent.
15211
15212 The option must be an integer value in the range [0,255]. Default is @var{128}.
15213 @end table
15214
15215 @subsection Examples
15216
15217 @itemize
15218 @item
15219 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
15220 using @command{ffmpeg}:
15221 @example
15222 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
15223 @end example
15224 @end itemize
15225
15226 @section perspective
15227
15228 Correct perspective of video not recorded perpendicular to the screen.
15229
15230 A description of the accepted parameters follows.
15231
15232 @table @option
15233 @item x0
15234 @item y0
15235 @item x1
15236 @item y1
15237 @item x2
15238 @item y2
15239 @item x3
15240 @item y3
15241 Set coordinates expression for top left, top right, bottom left and bottom right corners.
15242 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
15243 If the @code{sense} option is set to @code{source}, then the specified points will be sent
15244 to the corners of the destination. If the @code{sense} option is set to @code{destination},
15245 then the corners of the source will be sent to the specified coordinates.
15246
15247 The expressions can use the following variables:
15248
15249 @table @option
15250 @item W
15251 @item H
15252 the width and height of video frame.
15253 @item in
15254 Input frame count.
15255 @item on
15256 Output frame count.
15257 @end table
15258
15259 @item interpolation
15260 Set interpolation for perspective correction.
15261
15262 It accepts the following values:
15263 @table @samp
15264 @item linear
15265 @item cubic
15266 @end table
15267
15268 Default value is @samp{linear}.
15269
15270 @item sense
15271 Set interpretation of coordinate options.
15272
15273 It accepts the following values:
15274 @table @samp
15275 @item 0, source
15276
15277 Send point in the source specified by the given coordinates to
15278 the corners of the destination.
15279
15280 @item 1, destination
15281
15282 Send the corners of the source to the point in the destination specified
15283 by the given coordinates.
15284
15285 Default value is @samp{source}.
15286 @end table
15287
15288 @item eval
15289 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
15290
15291 It accepts the following values:
15292 @table @samp
15293 @item init
15294 only evaluate expressions once during the filter initialization or
15295 when a command is processed
15296
15297 @item frame
15298 evaluate expressions for each incoming frame
15299 @end table
15300
15301 Default value is @samp{init}.
15302 @end table
15303
15304 @section phase
15305
15306 Delay interlaced video by one field time so that the field order changes.
15307
15308 The intended use is to fix PAL movies that have been captured with the
15309 opposite field order to the film-to-video transfer.
15310
15311 A description of the accepted parameters follows.
15312
15313 @table @option
15314 @item mode
15315 Set phase mode.
15316
15317 It accepts the following values:
15318 @table @samp
15319 @item t
15320 Capture field order top-first, transfer bottom-first.
15321 Filter will delay the bottom field.
15322
15323 @item b
15324 Capture field order bottom-first, transfer top-first.
15325 Filter will delay the top field.
15326
15327 @item p
15328 Capture and transfer with the same field order. This mode only exists
15329 for the documentation of the other options to refer to, but if you
15330 actually select it, the filter will faithfully do nothing.
15331
15332 @item a
15333 Capture field order determined automatically by field flags, transfer
15334 opposite.
15335 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
15336 basis using field flags. If no field information is available,
15337 then this works just like @samp{u}.
15338
15339 @item u
15340 Capture unknown or varying, transfer opposite.
15341 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
15342 analyzing the images and selecting the alternative that produces best
15343 match between the fields.
15344
15345 @item T
15346 Capture top-first, transfer unknown or varying.
15347 Filter selects among @samp{t} and @samp{p} using image analysis.
15348
15349 @item B
15350 Capture bottom-first, transfer unknown or varying.
15351 Filter selects among @samp{b} and @samp{p} using image analysis.
15352
15353 @item A
15354 Capture determined by field flags, transfer unknown or varying.
15355 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
15356 image analysis. If no field information is available, then this works just
15357 like @samp{U}. This is the default mode.
15358
15359 @item U
15360 Both capture and transfer unknown or varying.
15361 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
15362 @end table
15363 @end table
15364
15365 @section photosensitivity
15366 Reduce various flashes in video, so to help users with epilepsy.
15367
15368 It accepts the following options:
15369 @table @option
15370 @item frames, f
15371 Set how many frames to use when filtering. Default is 30.
15372
15373 @item threshold, t
15374 Set detection threshold factor. Default is 1.
15375 Lower is stricter.
15376
15377 @item skip
15378 Set how many pixels to skip when sampling frames. Default is 1.
15379 Allowed range is from 1 to 1024.
15380
15381 @item bypass
15382 Leave frames unchanged. Default is disabled.
15383 @end table
15384
15385 @section pixdesctest
15386
15387 Pixel format descriptor test filter, mainly useful for internal
15388 testing. The output video should be equal to the input video.
15389
15390 For example:
15391 @example
15392 format=monow, pixdesctest
15393 @end example
15394
15395 can be used to test the monowhite pixel format descriptor definition.
15396
15397 @section pixscope
15398
15399 Display sample values of color channels. Mainly useful for checking color
15400 and levels. Minimum supported resolution is 640x480.
15401
15402 The filters accept the following options:
15403
15404 @table @option
15405 @item x
15406 Set scope X position, relative offset on X axis.
15407
15408 @item y
15409 Set scope Y position, relative offset on Y axis.
15410
15411 @item w
15412 Set scope width.
15413
15414 @item h
15415 Set scope height.
15416
15417 @item o
15418 Set window opacity. This window also holds statistics about pixel area.
15419
15420 @item wx
15421 Set window X position, relative offset on X axis.
15422
15423 @item wy
15424 Set window Y position, relative offset on Y axis.
15425 @end table
15426
15427 @section pp
15428
15429 Enable the specified chain of postprocessing subfilters using libpostproc. This
15430 library should be automatically selected with a GPL build (@code{--enable-gpl}).
15431 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
15432 Each subfilter and some options have a short and a long name that can be used
15433 interchangeably, i.e. dr/dering are the same.
15434
15435 The filters accept the following options:
15436
15437 @table @option
15438 @item subfilters
15439 Set postprocessing subfilters string.
15440 @end table
15441
15442 All subfilters share common options to determine their scope:
15443
15444 @table @option
15445 @item a/autoq
15446 Honor the quality commands for this subfilter.
15447
15448 @item c/chrom
15449 Do chrominance filtering, too (default).
15450
15451 @item y/nochrom
15452 Do luminance filtering only (no chrominance).
15453
15454 @item n/noluma
15455 Do chrominance filtering only (no luminance).
15456 @end table
15457
15458 These options can be appended after the subfilter name, separated by a '|'.
15459
15460 Available subfilters are:
15461
15462 @table @option
15463 @item hb/hdeblock[|difference[|flatness]]
15464 Horizontal deblocking filter
15465 @table @option
15466 @item difference
15467 Difference factor where higher values mean more deblocking (default: @code{32}).
15468 @item flatness
15469 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15470 @end table
15471
15472 @item vb/vdeblock[|difference[|flatness]]
15473 Vertical deblocking filter
15474 @table @option
15475 @item difference
15476 Difference factor where higher values mean more deblocking (default: @code{32}).
15477 @item flatness
15478 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15479 @end table
15480
15481 @item ha/hadeblock[|difference[|flatness]]
15482 Accurate horizontal deblocking filter
15483 @table @option
15484 @item difference
15485 Difference factor where higher values mean more deblocking (default: @code{32}).
15486 @item flatness
15487 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15488 @end table
15489
15490 @item va/vadeblock[|difference[|flatness]]
15491 Accurate vertical deblocking filter
15492 @table @option
15493 @item difference
15494 Difference factor where higher values mean more deblocking (default: @code{32}).
15495 @item flatness
15496 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15497 @end table
15498 @end table
15499
15500 The horizontal and vertical deblocking filters share the difference and
15501 flatness values so you cannot set different horizontal and vertical
15502 thresholds.
15503
15504 @table @option
15505 @item h1/x1hdeblock
15506 Experimental horizontal deblocking filter
15507
15508 @item v1/x1vdeblock
15509 Experimental vertical deblocking filter
15510
15511 @item dr/dering
15512 Deringing filter
15513
15514 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
15515 @table @option
15516 @item threshold1
15517 larger -> stronger filtering
15518 @item threshold2
15519 larger -> stronger filtering
15520 @item threshold3
15521 larger -> stronger filtering
15522 @end table
15523
15524 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15525 @table @option
15526 @item f/fullyrange
15527 Stretch luminance to @code{0-255}.
15528 @end table
15529
15530 @item lb/linblenddeint
15531 Linear blend deinterlacing filter that deinterlaces the given block by
15532 filtering all lines with a @code{(1 2 1)} filter.
15533
15534 @item li/linipoldeint
15535 Linear interpolating deinterlacing filter that deinterlaces the given block by
15536 linearly interpolating every second line.
15537
15538 @item ci/cubicipoldeint
15539 Cubic interpolating deinterlacing filter deinterlaces the given block by
15540 cubically interpolating every second line.
15541
15542 @item md/mediandeint
15543 Median deinterlacing filter that deinterlaces the given block by applying a
15544 median filter to every second line.
15545
15546 @item fd/ffmpegdeint
15547 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
15548 second line with a @code{(-1 4 2 4 -1)} filter.
15549
15550 @item l5/lowpass5
15551 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
15552 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
15553
15554 @item fq/forceQuant[|quantizer]
15555 Overrides the quantizer table from the input with the constant quantizer you
15556 specify.
15557 @table @option
15558 @item quantizer
15559 Quantizer to use
15560 @end table
15561
15562 @item de/default
15563 Default pp filter combination (@code{hb|a,vb|a,dr|a})
15564
15565 @item fa/fast
15566 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
15567
15568 @item ac
15569 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
15570 @end table
15571
15572 @subsection Examples
15573
15574 @itemize
15575 @item
15576 Apply horizontal and vertical deblocking, deringing and automatic
15577 brightness/contrast:
15578 @example
15579 pp=hb/vb/dr/al
15580 @end example
15581
15582 @item
15583 Apply default filters without brightness/contrast correction:
15584 @example
15585 pp=de/-al
15586 @end example
15587
15588 @item
15589 Apply default filters and temporal denoiser:
15590 @example
15591 pp=default/tmpnoise|1|2|3
15592 @end example
15593
15594 @item
15595 Apply deblocking on luminance only, and switch vertical deblocking on or off
15596 automatically depending on available CPU time:
15597 @example
15598 pp=hb|y/vb|a
15599 @end example
15600 @end itemize
15601
15602 @section pp7
15603 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
15604 similar to spp = 6 with 7 point DCT, where only the center sample is
15605 used after IDCT.
15606
15607 The filter accepts the following options:
15608
15609 @table @option
15610 @item qp
15611 Force a constant quantization parameter. It accepts an integer in range
15612 0 to 63. If not set, the filter will use the QP from the video stream
15613 (if available).
15614
15615 @item mode
15616 Set thresholding mode. Available modes are:
15617
15618 @table @samp
15619 @item hard
15620 Set hard thresholding.
15621 @item soft
15622 Set soft thresholding (better de-ringing effect, but likely blurrier).
15623 @item medium
15624 Set medium thresholding (good results, default).
15625 @end table
15626 @end table
15627
15628 @section premultiply
15629 Apply alpha premultiply effect to input video stream using first plane
15630 of second stream as alpha.
15631
15632 Both streams must have same dimensions and same pixel format.
15633
15634 The filter accepts the following option:
15635
15636 @table @option
15637 @item planes
15638 Set which planes will be processed, unprocessed planes will be copied.
15639 By default value 0xf, all planes will be processed.
15640
15641 @item inplace
15642 Do not require 2nd input for processing, instead use alpha plane from input stream.
15643 @end table
15644
15645 @section prewitt
15646 Apply prewitt operator to input video stream.
15647
15648 The filter accepts the following option:
15649
15650 @table @option
15651 @item planes
15652 Set which planes will be processed, unprocessed planes will be copied.
15653 By default value 0xf, all planes will be processed.
15654
15655 @item scale
15656 Set value which will be multiplied with filtered result.
15657
15658 @item delta
15659 Set value which will be added to filtered result.
15660 @end table
15661
15662 @section pseudocolor
15663
15664 Alter frame colors in video with pseudocolors.
15665
15666 This filter accepts the following options:
15667
15668 @table @option
15669 @item c0
15670 set pixel first component expression
15671
15672 @item c1
15673 set pixel second component expression
15674
15675 @item c2
15676 set pixel third component expression
15677
15678 @item c3
15679 set pixel fourth component expression, corresponds to the alpha component
15680
15681 @item i
15682 set component to use as base for altering colors
15683 @end table
15684
15685 Each of them specifies the expression to use for computing the lookup table for
15686 the corresponding pixel component values.
15687
15688 The expressions can contain the following constants and functions:
15689
15690 @table @option
15691 @item w
15692 @item h
15693 The input width and height.
15694
15695 @item val
15696 The input value for the pixel component.
15697
15698 @item ymin, umin, vmin, amin
15699 The minimum allowed component value.
15700
15701 @item ymax, umax, vmax, amax
15702 The maximum allowed component value.
15703 @end table
15704
15705 All expressions default to "val".
15706
15707 @subsection Examples
15708
15709 @itemize
15710 @item
15711 Change too high luma values to gradient:
15712 @example
15713 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'"
15714 @end example
15715 @end itemize
15716
15717 @section psnr
15718
15719 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
15720 Ratio) between two input videos.
15721
15722 This filter takes in input two input videos, the first input is
15723 considered the "main" source and is passed unchanged to the
15724 output. The second input is used as a "reference" video for computing
15725 the PSNR.
15726
15727 Both video inputs must have the same resolution and pixel format for
15728 this filter to work correctly. Also it assumes that both inputs
15729 have the same number of frames, which are compared one by one.
15730
15731 The obtained average PSNR is printed through the logging system.
15732
15733 The filter stores the accumulated MSE (mean squared error) of each
15734 frame, and at the end of the processing it is averaged across all frames
15735 equally, and the following formula is applied to obtain the PSNR:
15736
15737 @example
15738 PSNR = 10*log10(MAX^2/MSE)
15739 @end example
15740
15741 Where MAX is the average of the maximum values of each component of the
15742 image.
15743
15744 The description of the accepted parameters follows.
15745
15746 @table @option
15747 @item stats_file, f
15748 If specified the filter will use the named file to save the PSNR of
15749 each individual frame. When filename equals "-" the data is sent to
15750 standard output.
15751
15752 @item stats_version
15753 Specifies which version of the stats file format to use. Details of
15754 each format are written below.
15755 Default value is 1.
15756
15757 @item stats_add_max
15758 Determines whether the max value is output to the stats log.
15759 Default value is 0.
15760 Requires stats_version >= 2. If this is set and stats_version < 2,
15761 the filter will return an error.
15762 @end table
15763
15764 This filter also supports the @ref{framesync} options.
15765
15766 The file printed if @var{stats_file} is selected, contains a sequence of
15767 key/value pairs of the form @var{key}:@var{value} for each compared
15768 couple of frames.
15769
15770 If a @var{stats_version} greater than 1 is specified, a header line precedes
15771 the list of per-frame-pair stats, with key value pairs following the frame
15772 format with the following parameters:
15773
15774 @table @option
15775 @item psnr_log_version
15776 The version of the log file format. Will match @var{stats_version}.
15777
15778 @item fields
15779 A comma separated list of the per-frame-pair parameters included in
15780 the log.
15781 @end table
15782
15783 A description of each shown per-frame-pair parameter follows:
15784
15785 @table @option
15786 @item n
15787 sequential number of the input frame, starting from 1
15788
15789 @item mse_avg
15790 Mean Square Error pixel-by-pixel average difference of the compared
15791 frames, averaged over all the image components.
15792
15793 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
15794 Mean Square Error pixel-by-pixel average difference of the compared
15795 frames for the component specified by the suffix.
15796
15797 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
15798 Peak Signal to Noise ratio of the compared frames for the component
15799 specified by the suffix.
15800
15801 @item max_avg, max_y, max_u, max_v
15802 Maximum allowed value for each channel, and average over all
15803 channels.
15804 @end table
15805
15806 @subsection Examples
15807 @itemize
15808 @item
15809 For example:
15810 @example
15811 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
15812 [main][ref] psnr="stats_file=stats.log" [out]
15813 @end example
15814
15815 On this example the input file being processed is compared with the
15816 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
15817 is stored in @file{stats.log}.
15818
15819 @item
15820 Another example with different containers:
15821 @example
15822 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 -
15823 @end example
15824 @end itemize
15825
15826 @anchor{pullup}
15827 @section pullup
15828
15829 Pulldown reversal (inverse telecine) filter, capable of handling mixed
15830 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
15831 content.
15832
15833 The pullup filter is designed to take advantage of future context in making
15834 its decisions. This filter is stateless in the sense that it does not lock
15835 onto a pattern to follow, but it instead looks forward to the following
15836 fields in order to identify matches and rebuild progressive frames.
15837
15838 To produce content with an even framerate, insert the fps filter after
15839 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
15840 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
15841
15842 The filter accepts the following options:
15843
15844 @table @option
15845 @item jl
15846 @item jr
15847 @item jt
15848 @item jb
15849 These options set the amount of "junk" to ignore at the left, right, top, and
15850 bottom of the image, respectively. Left and right are in units of 8 pixels,
15851 while top and bottom are in units of 2 lines.
15852 The default is 8 pixels on each side.
15853
15854 @item sb
15855 Set the strict breaks. Setting this option to 1 will reduce the chances of
15856 filter generating an occasional mismatched frame, but it may also cause an
15857 excessive number of frames to be dropped during high motion sequences.
15858 Conversely, setting it to -1 will make filter match fields more easily.
15859 This may help processing of video where there is slight blurring between
15860 the fields, but may also cause there to be interlaced frames in the output.
15861 Default value is @code{0}.
15862
15863 @item mp
15864 Set the metric plane to use. It accepts the following values:
15865 @table @samp
15866 @item l
15867 Use luma plane.
15868
15869 @item u
15870 Use chroma blue plane.
15871
15872 @item v
15873 Use chroma red plane.
15874 @end table
15875
15876 This option may be set to use chroma plane instead of the default luma plane
15877 for doing filter's computations. This may improve accuracy on very clean
15878 source material, but more likely will decrease accuracy, especially if there
15879 is chroma noise (rainbow effect) or any grayscale video.
15880 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
15881 load and make pullup usable in realtime on slow machines.
15882 @end table
15883
15884 For best results (without duplicated frames in the output file) it is
15885 necessary to change the output frame rate. For example, to inverse
15886 telecine NTSC input:
15887 @example
15888 ffmpeg -i input -vf pullup -r 24000/1001 ...
15889 @end example
15890
15891 @section qp
15892
15893 Change video quantization parameters (QP).
15894
15895 The filter accepts the following option:
15896
15897 @table @option
15898 @item qp
15899 Set expression for quantization parameter.
15900 @end table
15901
15902 The expression is evaluated through the eval API and can contain, among others,
15903 the following constants:
15904
15905 @table @var
15906 @item known
15907 1 if index is not 129, 0 otherwise.
15908
15909 @item qp
15910 Sequential index starting from -129 to 128.
15911 @end table
15912
15913 @subsection Examples
15914
15915 @itemize
15916 @item
15917 Some equation like:
15918 @example
15919 qp=2+2*sin(PI*qp)
15920 @end example
15921 @end itemize
15922
15923 @section random
15924
15925 Flush video frames from internal cache of frames into a random order.
15926 No frame is discarded.
15927 Inspired by @ref{frei0r} nervous filter.
15928
15929 @table @option
15930 @item frames
15931 Set size in number of frames of internal cache, in range from @code{2} to
15932 @code{512}. Default is @code{30}.
15933
15934 @item seed
15935 Set seed for random number generator, must be an integer included between
15936 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15937 less than @code{0}, the filter will try to use a good random seed on a
15938 best effort basis.
15939 @end table
15940
15941 @section readeia608
15942
15943 Read closed captioning (EIA-608) information from the top lines of a video frame.
15944
15945 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
15946 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
15947 with EIA-608 data (starting from 0). A description of each metadata value follows:
15948
15949 @table @option
15950 @item lavfi.readeia608.X.cc
15951 The two bytes stored as EIA-608 data (printed in hexadecimal).
15952
15953 @item lavfi.readeia608.X.line
15954 The number of the line on which the EIA-608 data was identified and read.
15955 @end table
15956
15957 This filter accepts the following options:
15958
15959 @table @option
15960 @item scan_min
15961 Set the line to start scanning for EIA-608 data. Default is @code{0}.
15962
15963 @item scan_max
15964 Set the line to end scanning for EIA-608 data. Default is @code{29}.
15965
15966 @item spw
15967 Set the ratio of width reserved for sync code detection.
15968 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
15969
15970 @item chp
15971 Enable checking the parity bit. In the event of a parity error, the filter will output
15972 @code{0x00} for that character. Default is false.
15973
15974 @item lp
15975 Lowpass lines prior to further processing. Default is enabled.
15976 @end table
15977
15978 @subsection Commands
15979
15980 This filter supports the all above options as @ref{commands}.
15981
15982 @subsection Examples
15983
15984 @itemize
15985 @item
15986 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
15987 @example
15988 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
15989 @end example
15990 @end itemize
15991
15992 @section readvitc
15993
15994 Read vertical interval timecode (VITC) information from the top lines of a
15995 video frame.
15996
15997 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
15998 timecode value, if a valid timecode has been detected. Further metadata key
15999 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
16000 timecode data has been found or not.
16001
16002 This filter accepts the following options:
16003
16004 @table @option
16005 @item scan_max
16006 Set the maximum number of lines to scan for VITC data. If the value is set to
16007 @code{-1} the full video frame is scanned. Default is @code{45}.
16008
16009 @item thr_b
16010 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
16011 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
16012
16013 @item thr_w
16014 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16015 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16016 @end table
16017
16018 @subsection Examples
16019
16020 @itemize
16021 @item
16022 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16023 draw @code{--:--:--:--} as a placeholder:
16024 @example
16025 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16026 @end example
16027 @end itemize
16028
16029 @section remap
16030
16031 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16032
16033 Destination pixel at position (X, Y) will be picked from source (x, y) position
16034 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16035 value for pixel will be used for destination pixel.
16036
16037 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16038 will have Xmap/Ymap video stream dimensions.
16039 Xmap and Ymap input video streams are 16bit depth, single channel.
16040
16041 @table @option
16042 @item format
16043 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16044 Default is @code{color}.
16045
16046 @item fill
16047 Specify the color of the unmapped pixels. For the syntax of this option,
16048 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16049 manual,ffmpeg-utils}. Default color is @code{black}.
16050 @end table
16051
16052 @section removegrain
16053
16054 The removegrain filter is a spatial denoiser for progressive video.
16055
16056 @table @option
16057 @item m0
16058 Set mode for the first plane.
16059
16060 @item m1
16061 Set mode for the second plane.
16062
16063 @item m2
16064 Set mode for the third plane.
16065
16066 @item m3
16067 Set mode for the fourth plane.
16068 @end table
16069
16070 Range of mode is from 0 to 24. Description of each mode follows:
16071
16072 @table @var
16073 @item 0
16074 Leave input plane unchanged. Default.
16075
16076 @item 1
16077 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16078
16079 @item 2
16080 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16081
16082 @item 3
16083 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16084
16085 @item 4
16086 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
16087 This is equivalent to a median filter.
16088
16089 @item 5
16090 Line-sensitive clipping giving the minimal change.
16091
16092 @item 6
16093 Line-sensitive clipping, intermediate.
16094
16095 @item 7
16096 Line-sensitive clipping, intermediate.
16097
16098 @item 8
16099 Line-sensitive clipping, intermediate.
16100
16101 @item 9
16102 Line-sensitive clipping on a line where the neighbours pixels are the closest.
16103
16104 @item 10
16105 Replaces the target pixel with the closest neighbour.
16106
16107 @item 11
16108 [1 2 1] horizontal and vertical kernel blur.
16109
16110 @item 12
16111 Same as mode 11.
16112
16113 @item 13
16114 Bob mode, interpolates top field from the line where the neighbours
16115 pixels are the closest.
16116
16117 @item 14
16118 Bob mode, interpolates bottom field from the line where the neighbours
16119 pixels are the closest.
16120
16121 @item 15
16122 Bob mode, interpolates top field. Same as 13 but with a more complicated
16123 interpolation formula.
16124
16125 @item 16
16126 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
16127 interpolation formula.
16128
16129 @item 17
16130 Clips the pixel with the minimum and maximum of respectively the maximum and
16131 minimum of each pair of opposite neighbour pixels.
16132
16133 @item 18
16134 Line-sensitive clipping using opposite neighbours whose greatest distance from
16135 the current pixel is minimal.
16136
16137 @item 19
16138 Replaces the pixel with the average of its 8 neighbours.
16139
16140 @item 20
16141 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
16142
16143 @item 21
16144 Clips pixels using the averages of opposite neighbour.
16145
16146 @item 22
16147 Same as mode 21 but simpler and faster.
16148
16149 @item 23
16150 Small edge and halo removal, but reputed useless.
16151
16152 @item 24
16153 Similar as 23.
16154 @end table
16155
16156 @section removelogo
16157
16158 Suppress a TV station logo, using an image file to determine which
16159 pixels comprise the logo. It works by filling in the pixels that
16160 comprise the logo with neighboring pixels.
16161
16162 The filter accepts the following options:
16163
16164 @table @option
16165 @item filename, f
16166 Set the filter bitmap file, which can be any image format supported by
16167 libavformat. The width and height of the image file must match those of the
16168 video stream being processed.
16169 @end table
16170
16171 Pixels in the provided bitmap image with a value of zero are not
16172 considered part of the logo, non-zero pixels are considered part of
16173 the logo. If you use white (255) for the logo and black (0) for the
16174 rest, you will be safe. For making the filter bitmap, it is
16175 recommended to take a screen capture of a black frame with the logo
16176 visible, and then using a threshold filter followed by the erode
16177 filter once or twice.
16178
16179 If needed, little splotches can be fixed manually. Remember that if
16180 logo pixels are not covered, the filter quality will be much
16181 reduced. Marking too many pixels as part of the logo does not hurt as
16182 much, but it will increase the amount of blurring needed to cover over
16183 the image and will destroy more information than necessary, and extra
16184 pixels will slow things down on a large logo.
16185
16186 @section repeatfields
16187
16188 This filter uses the repeat_field flag from the Video ES headers and hard repeats
16189 fields based on its value.
16190
16191 @section reverse
16192
16193 Reverse a video clip.
16194
16195 Warning: This filter requires memory to buffer the entire clip, so trimming
16196 is suggested.
16197
16198 @subsection Examples
16199
16200 @itemize
16201 @item
16202 Take the first 5 seconds of a clip, and reverse it.
16203 @example
16204 trim=end=5,reverse
16205 @end example
16206 @end itemize
16207
16208 @section rgbashift
16209 Shift R/G/B/A pixels horizontally and/or vertically.
16210
16211 The filter accepts the following options:
16212 @table @option
16213 @item rh
16214 Set amount to shift red horizontally.
16215 @item rv
16216 Set amount to shift red vertically.
16217 @item gh
16218 Set amount to shift green horizontally.
16219 @item gv
16220 Set amount to shift green vertically.
16221 @item bh
16222 Set amount to shift blue horizontally.
16223 @item bv
16224 Set amount to shift blue vertically.
16225 @item ah
16226 Set amount to shift alpha horizontally.
16227 @item av
16228 Set amount to shift alpha vertically.
16229 @item edge
16230 Set edge mode, can be @var{smear}, default, or @var{warp}.
16231 @end table
16232
16233 @subsection Commands
16234
16235 This filter supports the all above options as @ref{commands}.
16236
16237 @section roberts
16238 Apply roberts cross operator to input video stream.
16239
16240 The filter accepts the following option:
16241
16242 @table @option
16243 @item planes
16244 Set which planes will be processed, unprocessed planes will be copied.
16245 By default value 0xf, all planes will be processed.
16246
16247 @item scale
16248 Set value which will be multiplied with filtered result.
16249
16250 @item delta
16251 Set value which will be added to filtered result.
16252 @end table
16253
16254 @section rotate
16255
16256 Rotate video by an arbitrary angle expressed in radians.
16257
16258 The filter accepts the following options:
16259
16260 A description of the optional parameters follows.
16261 @table @option
16262 @item angle, a
16263 Set an expression for the angle by which to rotate the input video
16264 clockwise, expressed as a number of radians. A negative value will
16265 result in a counter-clockwise rotation. By default it is set to "0".
16266
16267 This expression is evaluated for each frame.
16268
16269 @item out_w, ow
16270 Set the output width expression, default value is "iw".
16271 This expression is evaluated just once during configuration.
16272
16273 @item out_h, oh
16274 Set the output height expression, default value is "ih".
16275 This expression is evaluated just once during configuration.
16276
16277 @item bilinear
16278 Enable bilinear interpolation if set to 1, a value of 0 disables
16279 it. Default value is 1.
16280
16281 @item fillcolor, c
16282 Set the color used to fill the output area not covered by the rotated
16283 image. For the general syntax of this option, check the
16284 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16285 If the special value "none" is selected then no
16286 background is printed (useful for example if the background is never shown).
16287
16288 Default value is "black".
16289 @end table
16290
16291 The expressions for the angle and the output size can contain the
16292 following constants and functions:
16293
16294 @table @option
16295 @item n
16296 sequential number of the input frame, starting from 0. It is always NAN
16297 before the first frame is filtered.
16298
16299 @item t
16300 time in seconds of the input frame, it is set to 0 when the filter is
16301 configured. It is always NAN before the first frame is filtered.
16302
16303 @item hsub
16304 @item vsub
16305 horizontal and vertical chroma subsample values. For example for the
16306 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16307
16308 @item in_w, iw
16309 @item in_h, ih
16310 the input video width and height
16311
16312 @item out_w, ow
16313 @item out_h, oh
16314 the output width and height, that is the size of the padded area as
16315 specified by the @var{width} and @var{height} expressions
16316
16317 @item rotw(a)
16318 @item roth(a)
16319 the minimal width/height required for completely containing the input
16320 video rotated by @var{a} radians.
16321
16322 These are only available when computing the @option{out_w} and
16323 @option{out_h} expressions.
16324 @end table
16325
16326 @subsection Examples
16327
16328 @itemize
16329 @item
16330 Rotate the input by PI/6 radians clockwise:
16331 @example
16332 rotate=PI/6
16333 @end example
16334
16335 @item
16336 Rotate the input by PI/6 radians counter-clockwise:
16337 @example
16338 rotate=-PI/6
16339 @end example
16340
16341 @item
16342 Rotate the input by 45 degrees clockwise:
16343 @example
16344 rotate=45*PI/180
16345 @end example
16346
16347 @item
16348 Apply a constant rotation with period T, starting from an angle of PI/3:
16349 @example
16350 rotate=PI/3+2*PI*t/T
16351 @end example
16352
16353 @item
16354 Make the input video rotation oscillating with a period of T
16355 seconds and an amplitude of A radians:
16356 @example
16357 rotate=A*sin(2*PI/T*t)
16358 @end example
16359
16360 @item
16361 Rotate the video, output size is chosen so that the whole rotating
16362 input video is always completely contained in the output:
16363 @example
16364 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
16365 @end example
16366
16367 @item
16368 Rotate the video, reduce the output size so that no background is ever
16369 shown:
16370 @example
16371 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
16372 @end example
16373 @end itemize
16374
16375 @subsection Commands
16376
16377 The filter supports the following commands:
16378
16379 @table @option
16380 @item a, angle
16381 Set the angle expression.
16382 The command accepts the same syntax of the corresponding option.
16383
16384 If the specified expression is not valid, it is kept at its current
16385 value.
16386 @end table
16387
16388 @section sab
16389
16390 Apply Shape Adaptive Blur.
16391
16392 The filter accepts the following options:
16393
16394 @table @option
16395 @item luma_radius, lr
16396 Set luma blur filter strength, must be a value in range 0.1-4.0, default
16397 value is 1.0. A greater value will result in a more blurred image, and
16398 in slower processing.
16399
16400 @item luma_pre_filter_radius, lpfr
16401 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
16402 value is 1.0.
16403
16404 @item luma_strength, ls
16405 Set luma maximum difference between pixels to still be considered, must
16406 be a value in the 0.1-100.0 range, default value is 1.0.
16407
16408 @item chroma_radius, cr
16409 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
16410 greater value will result in a more blurred image, and in slower
16411 processing.
16412
16413 @item chroma_pre_filter_radius, cpfr
16414 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
16415
16416 @item chroma_strength, cs
16417 Set chroma maximum difference between pixels to still be considered,
16418 must be a value in the -0.9-100.0 range.
16419 @end table
16420
16421 Each chroma option value, if not explicitly specified, is set to the
16422 corresponding luma option value.
16423
16424 @anchor{scale}
16425 @section scale
16426
16427 Scale (resize) the input video, using the libswscale library.
16428
16429 The scale filter forces the output display aspect ratio to be the same
16430 of the input, by changing the output sample aspect ratio.
16431
16432 If the input image format is different from the format requested by
16433 the next filter, the scale filter will convert the input to the
16434 requested format.
16435
16436 @subsection Options
16437 The filter accepts the following options, or any of the options
16438 supported by the libswscale scaler.
16439
16440 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
16441 the complete list of scaler options.
16442
16443 @table @option
16444 @item width, w
16445 @item height, h
16446 Set the output video dimension expression. Default value is the input
16447 dimension.
16448
16449 If the @var{width} or @var{w} value is 0, the input width is used for
16450 the output. If the @var{height} or @var{h} value is 0, the input height
16451 is used for the output.
16452
16453 If one and only one of the values is -n with n >= 1, the scale filter
16454 will use a value that maintains the aspect ratio of the input image,
16455 calculated from the other specified dimension. After that it will,
16456 however, make sure that the calculated dimension is divisible by n and
16457 adjust the value if necessary.
16458
16459 If both values are -n with n >= 1, the behavior will be identical to
16460 both values being set to 0 as previously detailed.
16461
16462 See below for the list of accepted constants for use in the dimension
16463 expression.
16464
16465 @item eval
16466 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
16467
16468 @table @samp
16469 @item init
16470 Only evaluate expressions once during the filter initialization or when a command is processed.
16471
16472 @item frame
16473 Evaluate expressions for each incoming frame.
16474
16475 @end table
16476
16477 Default value is @samp{init}.
16478
16479
16480 @item interl
16481 Set the interlacing mode. It accepts the following values:
16482
16483 @table @samp
16484 @item 1
16485 Force interlaced aware scaling.
16486
16487 @item 0
16488 Do not apply interlaced scaling.
16489
16490 @item -1
16491 Select interlaced aware scaling depending on whether the source frames
16492 are flagged as interlaced or not.
16493 @end table
16494
16495 Default value is @samp{0}.
16496
16497 @item flags
16498 Set libswscale scaling flags. See
16499 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16500 complete list of values. If not explicitly specified the filter applies
16501 the default flags.
16502
16503
16504 @item param0, param1
16505 Set libswscale input parameters for scaling algorithms that need them. See
16506 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16507 complete documentation. If not explicitly specified the filter applies
16508 empty parameters.
16509
16510
16511
16512 @item size, s
16513 Set the video size. For the syntax of this option, check the
16514 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16515
16516 @item in_color_matrix
16517 @item out_color_matrix
16518 Set in/output YCbCr color space type.
16519
16520 This allows the autodetected value to be overridden as well as allows forcing
16521 a specific value used for the output and encoder.
16522
16523 If not specified, the color space type depends on the pixel format.
16524
16525 Possible values:
16526
16527 @table @samp
16528 @item auto
16529 Choose automatically.
16530
16531 @item bt709
16532 Format conforming to International Telecommunication Union (ITU)
16533 Recommendation BT.709.
16534
16535 @item fcc
16536 Set color space conforming to the United States Federal Communications
16537 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16538
16539 @item bt601
16540 @item bt470
16541 @item smpte170m
16542 Set color space conforming to:
16543
16544 @itemize
16545 @item
16546 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16547
16548 @item
16549 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16550
16551 @item
16552 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16553
16554 @end itemize
16555
16556 @item smpte240m
16557 Set color space conforming to SMPTE ST 240:1999.
16558
16559 @item bt2020
16560 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16561 @end table
16562
16563 @item in_range
16564 @item out_range
16565 Set in/output YCbCr sample range.
16566
16567 This allows the autodetected value to be overridden as well as allows forcing
16568 a specific value used for the output and encoder. If not specified, the
16569 range depends on the pixel format. Possible values:
16570
16571 @table @samp
16572 @item auto/unknown
16573 Choose automatically.
16574
16575 @item jpeg/full/pc
16576 Set full range (0-255 in case of 8-bit luma).
16577
16578 @item mpeg/limited/tv
16579 Set "MPEG" range (16-235 in case of 8-bit luma).
16580 @end table
16581
16582 @item force_original_aspect_ratio
16583 Enable decreasing or increasing output video width or height if necessary to
16584 keep the original aspect ratio. Possible values:
16585
16586 @table @samp
16587 @item disable
16588 Scale the video as specified and disable this feature.
16589
16590 @item decrease
16591 The output video dimensions will automatically be decreased if needed.
16592
16593 @item increase
16594 The output video dimensions will automatically be increased if needed.
16595
16596 @end table
16597
16598 One useful instance of this option is that when you know a specific device's
16599 maximum allowed resolution, you can use this to limit the output video to
16600 that, while retaining the aspect ratio. For example, device A allows
16601 1280x720 playback, and your video is 1920x800. Using this option (set it to
16602 decrease) and specifying 1280x720 to the command line makes the output
16603 1280x533.
16604
16605 Please note that this is a different thing than specifying -1 for @option{w}
16606 or @option{h}, you still need to specify the output resolution for this option
16607 to work.
16608
16609 @item force_divisible_by
16610 Ensures that both the output dimensions, width and height, are divisible by the
16611 given integer when used together with @option{force_original_aspect_ratio}. This
16612 works similar to using @code{-n} in the @option{w} and @option{h} options.
16613
16614 This option respects the value set for @option{force_original_aspect_ratio},
16615 increasing or decreasing the resolution accordingly. The video's aspect ratio
16616 may be slightly modified.
16617
16618 This option can be handy if you need to have a video fit within or exceed
16619 a defined resolution using @option{force_original_aspect_ratio} but also have
16620 encoder restrictions on width or height divisibility.
16621
16622 @end table
16623
16624 The values of the @option{w} and @option{h} options are expressions
16625 containing the following constants:
16626
16627 @table @var
16628 @item in_w
16629 @item in_h
16630 The input width and height
16631
16632 @item iw
16633 @item ih
16634 These are the same as @var{in_w} and @var{in_h}.
16635
16636 @item out_w
16637 @item out_h
16638 The output (scaled) width and height
16639
16640 @item ow
16641 @item oh
16642 These are the same as @var{out_w} and @var{out_h}
16643
16644 @item a
16645 The same as @var{iw} / @var{ih}
16646
16647 @item sar
16648 input sample aspect ratio
16649
16650 @item dar
16651 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16652
16653 @item hsub
16654 @item vsub
16655 horizontal and vertical input chroma subsample values. For example for the
16656 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16657
16658 @item ohsub
16659 @item ovsub
16660 horizontal and vertical output chroma subsample values. For example for the
16661 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16662
16663 @item n
16664 The (sequential) number of the input frame, starting from 0.
16665 Only available with @code{eval=frame}.
16666
16667 @item t
16668 The presentation timestamp of the input frame, expressed as a number of
16669 seconds. Only available with @code{eval=frame}.
16670
16671 @item pos
16672 The position (byte offset) of the frame in the input stream, or NaN if
16673 this information is unavailable and/or meaningless (for example in case of synthetic video).
16674 Only available with @code{eval=frame}.
16675 @end table
16676
16677 @subsection Examples
16678
16679 @itemize
16680 @item
16681 Scale the input video to a size of 200x100
16682 @example
16683 scale=w=200:h=100
16684 @end example
16685
16686 This is equivalent to:
16687 @example
16688 scale=200:100
16689 @end example
16690
16691 or:
16692 @example
16693 scale=200x100
16694 @end example
16695
16696 @item
16697 Specify a size abbreviation for the output size:
16698 @example
16699 scale=qcif
16700 @end example
16701
16702 which can also be written as:
16703 @example
16704 scale=size=qcif
16705 @end example
16706
16707 @item
16708 Scale the input to 2x:
16709 @example
16710 scale=w=2*iw:h=2*ih
16711 @end example
16712
16713 @item
16714 The above is the same as:
16715 @example
16716 scale=2*in_w:2*in_h
16717 @end example
16718
16719 @item
16720 Scale the input to 2x with forced interlaced scaling:
16721 @example
16722 scale=2*iw:2*ih:interl=1
16723 @end example
16724
16725 @item
16726 Scale the input to half size:
16727 @example
16728 scale=w=iw/2:h=ih/2
16729 @end example
16730
16731 @item
16732 Increase the width, and set the height to the same size:
16733 @example
16734 scale=3/2*iw:ow
16735 @end example
16736
16737 @item
16738 Seek Greek harmony:
16739 @example
16740 scale=iw:1/PHI*iw
16741 scale=ih*PHI:ih
16742 @end example
16743
16744 @item
16745 Increase the height, and set the width to 3/2 of the height:
16746 @example
16747 scale=w=3/2*oh:h=3/5*ih
16748 @end example
16749
16750 @item
16751 Increase the size, making the size a multiple of the chroma
16752 subsample values:
16753 @example
16754 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
16755 @end example
16756
16757 @item
16758 Increase the width to a maximum of 500 pixels,
16759 keeping the same aspect ratio as the input:
16760 @example
16761 scale=w='min(500\, iw*3/2):h=-1'
16762 @end example
16763
16764 @item
16765 Make pixels square by combining scale and setsar:
16766 @example
16767 scale='trunc(ih*dar):ih',setsar=1/1
16768 @end example
16769
16770 @item
16771 Make pixels square by combining scale and setsar,
16772 making sure the resulting resolution is even (required by some codecs):
16773 @example
16774 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
16775 @end example
16776 @end itemize
16777
16778 @subsection Commands
16779
16780 This filter supports the following commands:
16781 @table @option
16782 @item width, w
16783 @item height, h
16784 Set the output video dimension expression.
16785 The command accepts the same syntax of the corresponding option.
16786
16787 If the specified expression is not valid, it is kept at its current
16788 value.
16789 @end table
16790
16791 @section scale_npp
16792
16793 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
16794 format conversion on CUDA video frames. Setting the output width and height
16795 works in the same way as for the @var{scale} filter.
16796
16797 The following additional options are accepted:
16798 @table @option
16799 @item format
16800 The pixel format of the output CUDA frames. If set to the string "same" (the
16801 default), the input format will be kept. Note that automatic format negotiation
16802 and conversion is not yet supported for hardware frames
16803
16804 @item interp_algo
16805 The interpolation algorithm used for resizing. One of the following:
16806 @table @option
16807 @item nn
16808 Nearest neighbour.
16809
16810 @item linear
16811 @item cubic
16812 @item cubic2p_bspline
16813 2-parameter cubic (B=1, C=0)
16814
16815 @item cubic2p_catmullrom
16816 2-parameter cubic (B=0, C=1/2)
16817
16818 @item cubic2p_b05c03
16819 2-parameter cubic (B=1/2, C=3/10)
16820
16821 @item super
16822 Supersampling
16823
16824 @item lanczos
16825 @end table
16826
16827 @item force_original_aspect_ratio
16828 Enable decreasing or increasing output video width or height if necessary to
16829 keep the original aspect ratio. Possible values:
16830
16831 @table @samp
16832 @item disable
16833 Scale the video as specified and disable this feature.
16834
16835 @item decrease
16836 The output video dimensions will automatically be decreased if needed.
16837
16838 @item increase
16839 The output video dimensions will automatically be increased if needed.
16840
16841 @end table
16842
16843 One useful instance of this option is that when you know a specific device's
16844 maximum allowed resolution, you can use this to limit the output video to
16845 that, while retaining the aspect ratio. For example, device A allows
16846 1280x720 playback, and your video is 1920x800. Using this option (set it to
16847 decrease) and specifying 1280x720 to the command line makes the output
16848 1280x533.
16849
16850 Please note that this is a different thing than specifying -1 for @option{w}
16851 or @option{h}, you still need to specify the output resolution for this option
16852 to work.
16853
16854 @item force_divisible_by
16855 Ensures that both the output dimensions, width and height, are divisible by the
16856 given integer when used together with @option{force_original_aspect_ratio}. This
16857 works similar to using @code{-n} in the @option{w} and @option{h} options.
16858
16859 This option respects the value set for @option{force_original_aspect_ratio},
16860 increasing or decreasing the resolution accordingly. The video's aspect ratio
16861 may be slightly modified.
16862
16863 This option can be handy if you need to have a video fit within or exceed
16864 a defined resolution using @option{force_original_aspect_ratio} but also have
16865 encoder restrictions on width or height divisibility.
16866
16867 @end table
16868
16869 @section scale2ref
16870
16871 Scale (resize) the input video, based on a reference video.
16872
16873 See the scale filter for available options, scale2ref supports the same but
16874 uses the reference video instead of the main input as basis. scale2ref also
16875 supports the following additional constants for the @option{w} and
16876 @option{h} options:
16877
16878 @table @var
16879 @item main_w
16880 @item main_h
16881 The main input video's width and height
16882
16883 @item main_a
16884 The same as @var{main_w} / @var{main_h}
16885
16886 @item main_sar
16887 The main input video's sample aspect ratio
16888
16889 @item main_dar, mdar
16890 The main input video's display aspect ratio. Calculated from
16891 @code{(main_w / main_h) * main_sar}.
16892
16893 @item main_hsub
16894 @item main_vsub
16895 The main input video's horizontal and vertical chroma subsample values.
16896 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
16897 is 1.
16898
16899 @item main_n
16900 The (sequential) number of the main input frame, starting from 0.
16901 Only available with @code{eval=frame}.
16902
16903 @item main_t
16904 The presentation timestamp of the main input frame, expressed as a number of
16905 seconds. Only available with @code{eval=frame}.
16906
16907 @item main_pos
16908 The position (byte offset) of the frame in the main input stream, or NaN if
16909 this information is unavailable and/or meaningless (for example in case of synthetic video).
16910 Only available with @code{eval=frame}.
16911 @end table
16912
16913 @subsection Examples
16914
16915 @itemize
16916 @item
16917 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
16918 @example
16919 'scale2ref[b][a];[a][b]overlay'
16920 @end example
16921
16922 @item
16923 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
16924 @example
16925 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
16926 @end example
16927 @end itemize
16928
16929 @subsection Commands
16930
16931 This filter supports the following commands:
16932 @table @option
16933 @item width, w
16934 @item height, h
16935 Set the output video dimension expression.
16936 The command accepts the same syntax of the corresponding option.
16937
16938 If the specified expression is not valid, it is kept at its current
16939 value.
16940 @end table
16941
16942 @section scroll
16943 Scroll input video horizontally and/or vertically by constant speed.
16944
16945 The filter accepts the following options:
16946 @table @option
16947 @item horizontal, h
16948 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
16949 Negative values changes scrolling direction.
16950
16951 @item vertical, v
16952 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
16953 Negative values changes scrolling direction.
16954
16955 @item hpos
16956 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
16957
16958 @item vpos
16959 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
16960 @end table
16961
16962 @subsection Commands
16963
16964 This filter supports the following @ref{commands}:
16965 @table @option
16966 @item horizontal, h
16967 Set the horizontal scrolling speed.
16968 @item vertical, v
16969 Set the vertical scrolling speed.
16970 @end table
16971
16972 @anchor{scdet}
16973 @section scdet
16974
16975 Detect video scene change.
16976
16977 This filter sets frame metadata with mafd between frame, the scene score, and
16978 forward the frame to the next filter, so they can use these metadata to detect
16979 scene change or others.
16980
16981 In addition, this filter logs a message and sets frame metadata when it detects
16982 a scene change by @option{threshold}.
16983
16984 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
16985
16986 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
16987 to detect scene change.
16988
16989 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
16990 detect scene change with @option{threshold}.
16991
16992 The filter accepts the following options:
16993
16994 @table @option
16995 @item threshold, t
16996 Set the scene change detection threshold as a percentage of maximum change. Good
16997 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
16998 @code{[0., 100.]}.
16999
17000 Default value is @code{10.}.
17001
17002 @item sc_pass, s
17003 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
17004 You can enable it if you want to get snapshot of scene change frames only.
17005 @end table
17006
17007 @anchor{selectivecolor}
17008 @section selectivecolor
17009
17010 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
17011 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
17012 by the "purity" of the color (that is, how saturated it already is).
17013
17014 This filter is similar to the Adobe Photoshop Selective Color tool.
17015
17016 The filter accepts the following options:
17017
17018 @table @option
17019 @item correction_method
17020 Select color correction method.
17021
17022 Available values are:
17023 @table @samp
17024 @item absolute
17025 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17026 component value).
17027 @item relative
17028 Specified adjustments are relative to the original component value.
17029 @end table
17030 Default is @code{absolute}.
17031 @item reds
17032 Adjustments for red pixels (pixels where the red component is the maximum)
17033 @item yellows
17034 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17035 @item greens
17036 Adjustments for green pixels (pixels where the green component is the maximum)
17037 @item cyans
17038 Adjustments for cyan pixels (pixels where the red component is the minimum)
17039 @item blues
17040 Adjustments for blue pixels (pixels where the blue component is the maximum)
17041 @item magentas
17042 Adjustments for magenta pixels (pixels where the green component is the minimum)
17043 @item whites
17044 Adjustments for white pixels (pixels where all components are greater than 128)
17045 @item neutrals
17046 Adjustments for all pixels except pure black and pure white
17047 @item blacks
17048 Adjustments for black pixels (pixels where all components are lesser than 128)
17049 @item psfile
17050 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17051 @end table
17052
17053 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17054 4 space separated floating point adjustment values in the [-1,1] range,
17055 respectively to adjust the amount of cyan, magenta, yellow and black for the
17056 pixels of its range.
17057
17058 @subsection Examples
17059
17060 @itemize
17061 @item
17062 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17063 increase magenta by 27% in blue areas:
17064 @example
17065 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17066 @end example
17067
17068 @item
17069 Use a Photoshop selective color preset:
17070 @example
17071 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17072 @end example
17073 @end itemize
17074
17075 @anchor{separatefields}
17076 @section separatefields
17077
17078 The @code{separatefields} takes a frame-based video input and splits
17079 each frame into its components fields, producing a new half height clip
17080 with twice the frame rate and twice the frame count.
17081
17082 This filter use field-dominance information in frame to decide which
17083 of each pair of fields to place first in the output.
17084 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
17085
17086 @section setdar, setsar
17087
17088 The @code{setdar} filter sets the Display Aspect Ratio for the filter
17089 output video.
17090
17091 This is done by changing the specified Sample (aka Pixel) Aspect
17092 Ratio, according to the following equation:
17093 @example
17094 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
17095 @end example
17096
17097 Keep in mind that the @code{setdar} filter does not modify the pixel
17098 dimensions of the video frame. Also, the display aspect ratio set by
17099 this filter may be changed by later filters in the filterchain,
17100 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
17101 applied.
17102
17103 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
17104 the filter output video.
17105
17106 Note that as a consequence of the application of this filter, the
17107 output display aspect ratio will change according to the equation
17108 above.
17109
17110 Keep in mind that the sample aspect ratio set by the @code{setsar}
17111 filter may be changed by later filters in the filterchain, e.g. if
17112 another "setsar" or a "setdar" filter is applied.
17113
17114 It accepts the following parameters:
17115
17116 @table @option
17117 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
17118 Set the aspect ratio used by the filter.
17119
17120 The parameter can be a floating point number string, an expression, or
17121 a string of the form @var{num}:@var{den}, where @var{num} and
17122 @var{den} are the numerator and denominator of the aspect ratio. If
17123 the parameter is not specified, it is assumed the value "0".
17124 In case the form "@var{num}:@var{den}" is used, the @code{:} character
17125 should be escaped.
17126
17127 @item max
17128 Set the maximum integer value to use for expressing numerator and
17129 denominator when reducing the expressed aspect ratio to a rational.
17130 Default value is @code{100}.
17131
17132 @end table
17133
17134 The parameter @var{sar} is an expression containing
17135 the following constants:
17136
17137 @table @option
17138 @item E, PI, PHI
17139 These are approximated values for the mathematical constants e
17140 (Euler's number), pi (Greek pi), and phi (the golden ratio).
17141
17142 @item w, h
17143 The input width and height.
17144
17145 @item a
17146 These are the same as @var{w} / @var{h}.
17147
17148 @item sar
17149 The input sample aspect ratio.
17150
17151 @item dar
17152 The input display aspect ratio. It is the same as
17153 (@var{w} / @var{h}) * @var{sar}.
17154
17155 @item hsub, vsub
17156 Horizontal and vertical chroma subsample values. For example, for the
17157 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17158 @end table
17159
17160 @subsection Examples
17161
17162 @itemize
17163
17164 @item
17165 To change the display aspect ratio to 16:9, specify one of the following:
17166 @example
17167 setdar=dar=1.77777
17168 setdar=dar=16/9
17169 @end example
17170
17171 @item
17172 To change the sample aspect ratio to 10:11, specify:
17173 @example
17174 setsar=sar=10/11
17175 @end example
17176
17177 @item
17178 To set a display aspect ratio of 16:9, and specify a maximum integer value of
17179 1000 in the aspect ratio reduction, use the command:
17180 @example
17181 setdar=ratio=16/9:max=1000
17182 @end example
17183
17184 @end itemize
17185
17186 @anchor{setfield}
17187 @section setfield
17188
17189 Force field for the output video frame.
17190
17191 The @code{setfield} filter marks the interlace type field for the
17192 output frames. It does not change the input frame, but only sets the
17193 corresponding property, which affects how the frame is treated by
17194 following filters (e.g. @code{fieldorder} or @code{yadif}).
17195
17196 The filter accepts the following options:
17197
17198 @table @option
17199
17200 @item mode
17201 Available values are:
17202
17203 @table @samp
17204 @item auto
17205 Keep the same field property.
17206
17207 @item bff
17208 Mark the frame as bottom-field-first.
17209
17210 @item tff
17211 Mark the frame as top-field-first.
17212
17213 @item prog
17214 Mark the frame as progressive.
17215 @end table
17216 @end table
17217
17218 @anchor{setparams}
17219 @section setparams
17220
17221 Force frame parameter for the output video frame.
17222
17223 The @code{setparams} filter marks interlace and color range for the
17224 output frames. It does not change the input frame, but only sets the
17225 corresponding property, which affects how the frame is treated by
17226 filters/encoders.
17227
17228 @table @option
17229 @item field_mode
17230 Available values are:
17231
17232 @table @samp
17233 @item auto
17234 Keep the same field property (default).
17235
17236 @item bff
17237 Mark the frame as bottom-field-first.
17238
17239 @item tff
17240 Mark the frame as top-field-first.
17241
17242 @item prog
17243 Mark the frame as progressive.
17244 @end table
17245
17246 @item range
17247 Available values are:
17248
17249 @table @samp
17250 @item auto
17251 Keep the same color range property (default).
17252
17253 @item unspecified, unknown
17254 Mark the frame as unspecified color range.
17255
17256 @item limited, tv, mpeg
17257 Mark the frame as limited range.
17258
17259 @item full, pc, jpeg
17260 Mark the frame as full range.
17261 @end table
17262
17263 @item color_primaries
17264 Set the color primaries.
17265 Available values are:
17266
17267 @table @samp
17268 @item auto
17269 Keep the same color primaries property (default).
17270
17271 @item bt709
17272 @item unknown
17273 @item bt470m
17274 @item bt470bg
17275 @item smpte170m
17276 @item smpte240m
17277 @item film
17278 @item bt2020
17279 @item smpte428
17280 @item smpte431
17281 @item smpte432
17282 @item jedec-p22
17283 @end table
17284
17285 @item color_trc
17286 Set the color transfer.
17287 Available values are:
17288
17289 @table @samp
17290 @item auto
17291 Keep the same color trc property (default).
17292
17293 @item bt709
17294 @item unknown
17295 @item bt470m
17296 @item bt470bg
17297 @item smpte170m
17298 @item smpte240m
17299 @item linear
17300 @item log100
17301 @item log316
17302 @item iec61966-2-4
17303 @item bt1361e
17304 @item iec61966-2-1
17305 @item bt2020-10
17306 @item bt2020-12
17307 @item smpte2084
17308 @item smpte428
17309 @item arib-std-b67
17310 @end table
17311
17312 @item colorspace
17313 Set the colorspace.
17314 Available values are:
17315
17316 @table @samp
17317 @item auto
17318 Keep the same colorspace property (default).
17319
17320 @item gbr
17321 @item bt709
17322 @item unknown
17323 @item fcc
17324 @item bt470bg
17325 @item smpte170m
17326 @item smpte240m
17327 @item ycgco
17328 @item bt2020nc
17329 @item bt2020c
17330 @item smpte2085
17331 @item chroma-derived-nc
17332 @item chroma-derived-c
17333 @item ictcp
17334 @end table
17335 @end table
17336
17337 @section showinfo
17338
17339 Show a line containing various information for each input video frame.
17340 The input video is not modified.
17341
17342 This filter supports the following options:
17343
17344 @table @option
17345 @item checksum
17346 Calculate checksums of each plane. By default enabled.
17347 @end table
17348
17349 The shown line contains a sequence of key/value pairs of the form
17350 @var{key}:@var{value}.
17351
17352 The following values are shown in the output:
17353
17354 @table @option
17355 @item n
17356 The (sequential) number of the input frame, starting from 0.
17357
17358 @item pts
17359 The Presentation TimeStamp of the input frame, expressed as a number of
17360 time base units. The time base unit depends on the filter input pad.
17361
17362 @item pts_time
17363 The Presentation TimeStamp of the input frame, expressed as a number of
17364 seconds.
17365
17366 @item pos
17367 The position of the frame in the input stream, or -1 if this information is
17368 unavailable and/or meaningless (for example in case of synthetic video).
17369
17370 @item fmt
17371 The pixel format name.
17372
17373 @item sar
17374 The sample aspect ratio of the input frame, expressed in the form
17375 @var{num}/@var{den}.
17376
17377 @item s
17378 The size of the input frame. For the syntax of this option, check the
17379 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17380
17381 @item i
17382 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
17383 for bottom field first).
17384
17385 @item iskey
17386 This is 1 if the frame is a key frame, 0 otherwise.
17387
17388 @item type
17389 The picture type of the input frame ("I" for an I-frame, "P" for a
17390 P-frame, "B" for a B-frame, or "?" for an unknown type).
17391 Also refer to the documentation of the @code{AVPictureType} enum and of
17392 the @code{av_get_picture_type_char} function defined in
17393 @file{libavutil/avutil.h}.
17394
17395 @item checksum
17396 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
17397
17398 @item plane_checksum
17399 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
17400 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
17401
17402 @item mean
17403 The mean value of pixels in each plane of the input frame, expressed in the form
17404 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
17405
17406 @item stdev
17407 The standard deviation of pixel values in each plane of the input frame, expressed
17408 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
17409
17410 @end table
17411
17412 @section showpalette
17413
17414 Displays the 256 colors palette of each frame. This filter is only relevant for
17415 @var{pal8} pixel format frames.
17416
17417 It accepts the following option:
17418
17419 @table @option
17420 @item s
17421 Set the size of the box used to represent one palette color entry. Default is
17422 @code{30} (for a @code{30x30} pixel box).
17423 @end table
17424
17425 @section shuffleframes
17426
17427 Reorder and/or duplicate and/or drop video frames.
17428
17429 It accepts the following parameters:
17430
17431 @table @option
17432 @item mapping
17433 Set the destination indexes of input frames.
17434 This is space or '|' separated list of indexes that maps input frames to output
17435 frames. Number of indexes also sets maximal value that each index may have.
17436 '-1' index have special meaning and that is to drop frame.
17437 @end table
17438
17439 The first frame has the index 0. The default is to keep the input unchanged.
17440
17441 @subsection Examples
17442
17443 @itemize
17444 @item
17445 Swap second and third frame of every three frames of the input:
17446 @example
17447 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
17448 @end example
17449
17450 @item
17451 Swap 10th and 1st frame of every ten frames of the input:
17452 @example
17453 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
17454 @end example
17455 @end itemize
17456
17457 @section shuffleplanes
17458
17459 Reorder and/or duplicate video planes.
17460
17461 It accepts the following parameters:
17462
17463 @table @option
17464
17465 @item map0
17466 The index of the input plane to be used as the first output plane.
17467
17468 @item map1
17469 The index of the input plane to be used as the second output plane.
17470
17471 @item map2
17472 The index of the input plane to be used as the third output plane.
17473
17474 @item map3
17475 The index of the input plane to be used as the fourth output plane.
17476
17477 @end table
17478
17479 The first plane has the index 0. The default is to keep the input unchanged.
17480
17481 @subsection Examples
17482
17483 @itemize
17484 @item
17485 Swap the second and third planes of the input:
17486 @example
17487 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
17488 @end example
17489 @end itemize
17490
17491 @anchor{signalstats}
17492 @section signalstats
17493 Evaluate various visual metrics that assist in determining issues associated
17494 with the digitization of analog video media.
17495
17496 By default the filter will log these metadata values:
17497
17498 @table @option
17499 @item YMIN
17500 Display the minimal Y value contained within the input frame. Expressed in
17501 range of [0-255].
17502
17503 @item YLOW
17504 Display the Y value at the 10% percentile within the input frame. Expressed in
17505 range of [0-255].
17506
17507 @item YAVG
17508 Display the average Y value within the input frame. Expressed in range of
17509 [0-255].
17510
17511 @item YHIGH
17512 Display the Y value at the 90% percentile within the input frame. Expressed in
17513 range of [0-255].
17514
17515 @item YMAX
17516 Display the maximum Y value contained within the input frame. Expressed in
17517 range of [0-255].
17518
17519 @item UMIN
17520 Display the minimal U value contained within the input frame. Expressed in
17521 range of [0-255].
17522
17523 @item ULOW
17524 Display the U value at the 10% percentile within the input frame. Expressed in
17525 range of [0-255].
17526
17527 @item UAVG
17528 Display the average U value within the input frame. Expressed in range of
17529 [0-255].
17530
17531 @item UHIGH
17532 Display the U value at the 90% percentile within the input frame. Expressed in
17533 range of [0-255].
17534
17535 @item UMAX
17536 Display the maximum U value contained within the input frame. Expressed in
17537 range of [0-255].
17538
17539 @item VMIN
17540 Display the minimal V value contained within the input frame. Expressed in
17541 range of [0-255].
17542
17543 @item VLOW
17544 Display the V value at the 10% percentile within the input frame. Expressed in
17545 range of [0-255].
17546
17547 @item VAVG
17548 Display the average V value within the input frame. Expressed in range of
17549 [0-255].
17550
17551 @item VHIGH
17552 Display the V value at the 90% percentile within the input frame. Expressed in
17553 range of [0-255].
17554
17555 @item VMAX
17556 Display the maximum V value contained within the input frame. Expressed in
17557 range of [0-255].
17558
17559 @item SATMIN
17560 Display the minimal saturation value contained within the input frame.
17561 Expressed in range of [0-~181.02].
17562
17563 @item SATLOW
17564 Display the saturation value at the 10% percentile within the input frame.
17565 Expressed in range of [0-~181.02].
17566
17567 @item SATAVG
17568 Display the average saturation value within the input frame. Expressed in range
17569 of [0-~181.02].
17570
17571 @item SATHIGH
17572 Display the saturation value at the 90% percentile within the input frame.
17573 Expressed in range of [0-~181.02].
17574
17575 @item SATMAX
17576 Display the maximum saturation value contained within the input frame.
17577 Expressed in range of [0-~181.02].
17578
17579 @item HUEMED
17580 Display the median value for hue within the input frame. Expressed in range of
17581 [0-360].
17582
17583 @item HUEAVG
17584 Display the average value for hue within the input frame. Expressed in range of
17585 [0-360].
17586
17587 @item YDIF
17588 Display the average of sample value difference between all values of the Y
17589 plane in the current frame and corresponding values of the previous input frame.
17590 Expressed in range of [0-255].
17591
17592 @item UDIF
17593 Display the average of sample value difference between all values of the U
17594 plane in the current frame and corresponding values of the previous input frame.
17595 Expressed in range of [0-255].
17596
17597 @item VDIF
17598 Display the average of sample value difference between all values of the V
17599 plane in the current frame and corresponding values of the previous input frame.
17600 Expressed in range of [0-255].
17601
17602 @item YBITDEPTH
17603 Display bit depth of Y plane in current frame.
17604 Expressed in range of [0-16].
17605
17606 @item UBITDEPTH
17607 Display bit depth of U plane in current frame.
17608 Expressed in range of [0-16].
17609
17610 @item VBITDEPTH
17611 Display bit depth of V plane in current frame.
17612 Expressed in range of [0-16].
17613 @end table
17614
17615 The filter accepts the following options:
17616
17617 @table @option
17618 @item stat
17619 @item out
17620
17621 @option{stat} specify an additional form of image analysis.
17622 @option{out} output video with the specified type of pixel highlighted.
17623
17624 Both options accept the following values:
17625
17626 @table @samp
17627 @item tout
17628 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
17629 unlike the neighboring pixels of the same field. Examples of temporal outliers
17630 include the results of video dropouts, head clogs, or tape tracking issues.
17631
17632 @item vrep
17633 Identify @var{vertical line repetition}. Vertical line repetition includes
17634 similar rows of pixels within a frame. In born-digital video vertical line
17635 repetition is common, but this pattern is uncommon in video digitized from an
17636 analog source. When it occurs in video that results from the digitization of an
17637 analog source it can indicate concealment from a dropout compensator.
17638
17639 @item brng
17640 Identify pixels that fall outside of legal broadcast range.
17641 @end table
17642
17643 @item color, c
17644 Set the highlight color for the @option{out} option. The default color is
17645 yellow.
17646 @end table
17647
17648 @subsection Examples
17649
17650 @itemize
17651 @item
17652 Output data of various video metrics:
17653 @example
17654 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
17655 @end example
17656
17657 @item
17658 Output specific data about the minimum and maximum values of the Y plane per frame:
17659 @example
17660 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
17661 @end example
17662
17663 @item
17664 Playback video while highlighting pixels that are outside of broadcast range in red.
17665 @example
17666 ffplay example.mov -vf signalstats="out=brng:color=red"
17667 @end example
17668
17669 @item
17670 Playback video with signalstats metadata drawn over the frame.
17671 @example
17672 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
17673 @end example
17674
17675 The contents of signalstat_drawtext.txt used in the command are:
17676 @example
17677 time %@{pts:hms@}
17678 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
17679 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
17680 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
17681 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
17682
17683 @end example
17684 @end itemize
17685
17686 @anchor{signature}
17687 @section signature
17688
17689 Calculates the MPEG-7 Video Signature. The filter can handle more than one
17690 input. In this case the matching between the inputs can be calculated additionally.
17691 The filter always passes through the first input. The signature of each stream can
17692 be written into a file.
17693
17694 It accepts the following options:
17695
17696 @table @option
17697 @item detectmode
17698 Enable or disable the matching process.
17699
17700 Available values are:
17701
17702 @table @samp
17703 @item off
17704 Disable the calculation of a matching (default).
17705 @item full
17706 Calculate the matching for the whole video and output whether the whole video
17707 matches or only parts.
17708 @item fast
17709 Calculate only until a matching is found or the video ends. Should be faster in
17710 some cases.
17711 @end table
17712
17713 @item nb_inputs
17714 Set the number of inputs. The option value must be a non negative integer.
17715 Default value is 1.
17716
17717 @item filename
17718 Set the path to which the output is written. If there is more than one input,
17719 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
17720 integer), that will be replaced with the input number. If no filename is
17721 specified, no output will be written. This is the default.
17722
17723 @item format
17724 Choose the output format.
17725
17726 Available values are:
17727
17728 @table @samp
17729 @item binary
17730 Use the specified binary representation (default).
17731 @item xml
17732 Use the specified xml representation.
17733 @end table
17734
17735 @item th_d
17736 Set threshold to detect one word as similar. The option value must be an integer
17737 greater than zero. The default value is 9000.
17738
17739 @item th_dc
17740 Set threshold to detect all words as similar. The option value must be an integer
17741 greater than zero. The default value is 60000.
17742
17743 @item th_xh
17744 Set threshold to detect frames as similar. The option value must be an integer
17745 greater than zero. The default value is 116.
17746
17747 @item th_di
17748 Set the minimum length of a sequence in frames to recognize it as matching
17749 sequence. The option value must be a non negative integer value.
17750 The default value is 0.
17751
17752 @item th_it
17753 Set the minimum relation, that matching frames to all frames must have.
17754 The option value must be a double value between 0 and 1. The default value is 0.5.
17755 @end table
17756
17757 @subsection Examples
17758
17759 @itemize
17760 @item
17761 To calculate the signature of an input video and store it in signature.bin:
17762 @example
17763 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
17764 @end example
17765
17766 @item
17767 To detect whether two videos match and store the signatures in XML format in
17768 signature0.xml and signature1.xml:
17769 @example
17770 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 -
17771 @end example
17772
17773 @end itemize
17774
17775 @anchor{smartblur}
17776 @section smartblur
17777
17778 Blur the input video without impacting the outlines.
17779
17780 It accepts the following options:
17781
17782 @table @option
17783 @item luma_radius, lr
17784 Set the luma radius. The option value must be a float number in
17785 the range [0.1,5.0] that specifies the variance of the gaussian filter
17786 used to blur the image (slower if larger). Default value is 1.0.
17787
17788 @item luma_strength, ls
17789 Set the luma strength. The option value must be a float number
17790 in the range [-1.0,1.0] that configures the blurring. A value included
17791 in [0.0,1.0] will blur the image whereas a value included in
17792 [-1.0,0.0] will sharpen the image. Default value is 1.0.
17793
17794 @item luma_threshold, lt
17795 Set the luma threshold used as a coefficient to determine
17796 whether a pixel should be blurred or not. The option value must be an
17797 integer in the range [-30,30]. A value of 0 will filter all the image,
17798 a value included in [0,30] will filter flat areas and a value included
17799 in [-30,0] will filter edges. Default value is 0.
17800
17801 @item chroma_radius, cr
17802 Set the chroma radius. The option value must be a float number in
17803 the range [0.1,5.0] that specifies the variance of the gaussian filter
17804 used to blur the image (slower if larger). Default value is @option{luma_radius}.
17805
17806 @item chroma_strength, cs
17807 Set the chroma strength. The option value must be a float number
17808 in the range [-1.0,1.0] that configures the blurring. A value included
17809 in [0.0,1.0] will blur the image whereas a value included in
17810 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
17811
17812 @item chroma_threshold, ct
17813 Set the chroma threshold used as a coefficient to determine
17814 whether a pixel should be blurred or not. The option value must be an
17815 integer in the range [-30,30]. A value of 0 will filter all the image,
17816 a value included in [0,30] will filter flat areas and a value included
17817 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
17818 @end table
17819
17820 If a chroma option is not explicitly set, the corresponding luma value
17821 is set.
17822
17823 @section sobel
17824 Apply sobel operator to input video stream.
17825
17826 The filter accepts the following option:
17827
17828 @table @option
17829 @item planes
17830 Set which planes will be processed, unprocessed planes will be copied.
17831 By default value 0xf, all planes will be processed.
17832
17833 @item scale
17834 Set value which will be multiplied with filtered result.
17835
17836 @item delta
17837 Set value which will be added to filtered result.
17838 @end table
17839
17840 @anchor{spp}
17841 @section spp
17842
17843 Apply a simple postprocessing filter that compresses and decompresses the image
17844 at several (or - in the case of @option{quality} level @code{6} - all) shifts
17845 and average the results.
17846
17847 The filter accepts the following options:
17848
17849 @table @option
17850 @item quality
17851 Set quality. This option defines the number of levels for averaging. It accepts
17852 an integer in the range 0-6. If set to @code{0}, the filter will have no
17853 effect. A value of @code{6} means the higher quality. For each increment of
17854 that value the speed drops by a factor of approximately 2.  Default value is
17855 @code{3}.
17856
17857 @item qp
17858 Force a constant quantization parameter. If not set, the filter will use the QP
17859 from the video stream (if available).
17860
17861 @item mode
17862 Set thresholding mode. Available modes are:
17863
17864 @table @samp
17865 @item hard
17866 Set hard thresholding (default).
17867 @item soft
17868 Set soft thresholding (better de-ringing effect, but likely blurrier).
17869 @end table
17870
17871 @item use_bframe_qp
17872 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
17873 option may cause flicker since the B-Frames have often larger QP. Default is
17874 @code{0} (not enabled).
17875 @end table
17876
17877 @subsection Commands
17878
17879 This filter supports the following commands:
17880 @table @option
17881 @item quality, level
17882 Set quality level. The value @code{max} can be used to set the maximum level,
17883 currently @code{6}.
17884 @end table
17885
17886 @anchor{sr}
17887 @section sr
17888
17889 Scale the input by applying one of the super-resolution methods based on
17890 convolutional neural networks. Supported models:
17891
17892 @itemize
17893 @item
17894 Super-Resolution Convolutional Neural Network model (SRCNN).
17895 See @url{https://arxiv.org/abs/1501.00092}.
17896
17897 @item
17898 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
17899 See @url{https://arxiv.org/abs/1609.05158}.
17900 @end itemize
17901
17902 Training scripts as well as scripts for model file (.pb) saving can be found at
17903 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
17904 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
17905
17906 Native model files (.model) can be generated from TensorFlow model
17907 files (.pb) by using tools/python/convert.py
17908
17909 The filter accepts the following options:
17910
17911 @table @option
17912 @item dnn_backend
17913 Specify which DNN backend to use for model loading and execution. This option accepts
17914 the following values:
17915
17916 @table @samp
17917 @item native
17918 Native implementation of DNN loading and execution.
17919
17920 @item tensorflow
17921 TensorFlow backend. To enable this backend you
17922 need to install the TensorFlow for C library (see
17923 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
17924 @code{--enable-libtensorflow}
17925 @end table
17926
17927 Default value is @samp{native}.
17928
17929 @item model
17930 Set path to model file specifying network architecture and its parameters.
17931 Note that different backends use different file formats. TensorFlow backend
17932 can load files for both formats, while native backend can load files for only
17933 its format.
17934
17935 @item scale_factor
17936 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
17937 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
17938 input upscaled using bicubic upscaling with proper scale factor.
17939 @end table
17940
17941 This feature can also be finished with @ref{dnn_processing} filter.
17942
17943 @section ssim
17944
17945 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
17946
17947 This filter takes in input two input videos, the first input is
17948 considered the "main" source and is passed unchanged to the
17949 output. The second input is used as a "reference" video for computing
17950 the SSIM.
17951
17952 Both video inputs must have the same resolution and pixel format for
17953 this filter to work correctly. Also it assumes that both inputs
17954 have the same number of frames, which are compared one by one.
17955
17956 The filter stores the calculated SSIM of each frame.
17957
17958 The description of the accepted parameters follows.
17959
17960 @table @option
17961 @item stats_file, f
17962 If specified the filter will use the named file to save the SSIM of
17963 each individual frame. When filename equals "-" the data is sent to
17964 standard output.
17965 @end table
17966
17967 The file printed if @var{stats_file} is selected, contains a sequence of
17968 key/value pairs of the form @var{key}:@var{value} for each compared
17969 couple of frames.
17970
17971 A description of each shown parameter follows:
17972
17973 @table @option
17974 @item n
17975 sequential number of the input frame, starting from 1
17976
17977 @item Y, U, V, R, G, B
17978 SSIM of the compared frames for the component specified by the suffix.
17979
17980 @item All
17981 SSIM of the compared frames for the whole frame.
17982
17983 @item dB
17984 Same as above but in dB representation.
17985 @end table
17986
17987 This filter also supports the @ref{framesync} options.
17988
17989 @subsection Examples
17990 @itemize
17991 @item
17992 For example:
17993 @example
17994 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
17995 [main][ref] ssim="stats_file=stats.log" [out]
17996 @end example
17997
17998 On this example the input file being processed is compared with the
17999 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
18000 is stored in @file{stats.log}.
18001
18002 @item
18003 Another example with both psnr and ssim at same time:
18004 @example
18005 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
18006 @end example
18007
18008 @item
18009 Another example with different containers:
18010 @example
18011 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 -
18012 @end example
18013 @end itemize
18014
18015 @section stereo3d
18016
18017 Convert between different stereoscopic image formats.
18018
18019 The filters accept the following options:
18020
18021 @table @option
18022 @item in
18023 Set stereoscopic image format of input.
18024
18025 Available values for input image formats are:
18026 @table @samp
18027 @item sbsl
18028 side by side parallel (left eye left, right eye right)
18029
18030 @item sbsr
18031 side by side crosseye (right eye left, left eye right)
18032
18033 @item sbs2l
18034 side by side parallel with half width resolution
18035 (left eye left, right eye right)
18036
18037 @item sbs2r
18038 side by side crosseye with half width resolution
18039 (right eye left, left eye right)
18040
18041 @item abl
18042 @item tbl
18043 above-below (left eye above, right eye below)
18044
18045 @item abr
18046 @item tbr
18047 above-below (right eye above, left eye below)
18048
18049 @item ab2l
18050 @item tb2l
18051 above-below with half height resolution
18052 (left eye above, right eye below)
18053
18054 @item ab2r
18055 @item tb2r
18056 above-below with half height resolution
18057 (right eye above, left eye below)
18058
18059 @item al
18060 alternating frames (left eye first, right eye second)
18061
18062 @item ar
18063 alternating frames (right eye first, left eye second)
18064
18065 @item irl
18066 interleaved rows (left eye has top row, right eye starts on next row)
18067
18068 @item irr
18069 interleaved rows (right eye has top row, left eye starts on next row)
18070
18071 @item icl
18072 interleaved columns, left eye first
18073
18074 @item icr
18075 interleaved columns, right eye first
18076
18077 Default value is @samp{sbsl}.
18078 @end table
18079
18080 @item out
18081 Set stereoscopic image format of output.
18082
18083 @table @samp
18084 @item sbsl
18085 side by side parallel (left eye left, right eye right)
18086
18087 @item sbsr
18088 side by side crosseye (right eye left, left eye right)
18089
18090 @item sbs2l
18091 side by side parallel with half width resolution
18092 (left eye left, right eye right)
18093
18094 @item sbs2r
18095 side by side crosseye with half width resolution
18096 (right eye left, left eye right)
18097
18098 @item abl
18099 @item tbl
18100 above-below (left eye above, right eye below)
18101
18102 @item abr
18103 @item tbr
18104 above-below (right eye above, left eye below)
18105
18106 @item ab2l
18107 @item tb2l
18108 above-below with half height resolution
18109 (left eye above, right eye below)
18110
18111 @item ab2r
18112 @item tb2r
18113 above-below with half height resolution
18114 (right eye above, left eye below)
18115
18116 @item al
18117 alternating frames (left eye first, right eye second)
18118
18119 @item ar
18120 alternating frames (right eye first, left eye second)
18121
18122 @item irl
18123 interleaved rows (left eye has top row, right eye starts on next row)
18124
18125 @item irr
18126 interleaved rows (right eye has top row, left eye starts on next row)
18127
18128 @item arbg
18129 anaglyph red/blue gray
18130 (red filter on left eye, blue filter on right eye)
18131
18132 @item argg
18133 anaglyph red/green gray
18134 (red filter on left eye, green filter on right eye)
18135
18136 @item arcg
18137 anaglyph red/cyan gray
18138 (red filter on left eye, cyan filter on right eye)
18139
18140 @item arch
18141 anaglyph red/cyan half colored
18142 (red filter on left eye, cyan filter on right eye)
18143
18144 @item arcc
18145 anaglyph red/cyan color
18146 (red filter on left eye, cyan filter on right eye)
18147
18148 @item arcd
18149 anaglyph red/cyan color optimized with the least squares projection of dubois
18150 (red filter on left eye, cyan filter on right eye)
18151
18152 @item agmg
18153 anaglyph green/magenta gray
18154 (green filter on left eye, magenta filter on right eye)
18155
18156 @item agmh
18157 anaglyph green/magenta half colored
18158 (green filter on left eye, magenta filter on right eye)
18159
18160 @item agmc
18161 anaglyph green/magenta colored
18162 (green filter on left eye, magenta filter on right eye)
18163
18164 @item agmd
18165 anaglyph green/magenta color optimized with the least squares projection of dubois
18166 (green filter on left eye, magenta filter on right eye)
18167
18168 @item aybg
18169 anaglyph yellow/blue gray
18170 (yellow filter on left eye, blue filter on right eye)
18171
18172 @item aybh
18173 anaglyph yellow/blue half colored
18174 (yellow filter on left eye, blue filter on right eye)
18175
18176 @item aybc
18177 anaglyph yellow/blue colored
18178 (yellow filter on left eye, blue filter on right eye)
18179
18180 @item aybd
18181 anaglyph yellow/blue color optimized with the least squares projection of dubois
18182 (yellow filter on left eye, blue filter on right eye)
18183
18184 @item ml
18185 mono output (left eye only)
18186
18187 @item mr
18188 mono output (right eye only)
18189
18190 @item chl
18191 checkerboard, left eye first
18192
18193 @item chr
18194 checkerboard, right eye first
18195
18196 @item icl
18197 interleaved columns, left eye first
18198
18199 @item icr
18200 interleaved columns, right eye first
18201
18202 @item hdmi
18203 HDMI frame pack
18204 @end table
18205
18206 Default value is @samp{arcd}.
18207 @end table
18208
18209 @subsection Examples
18210
18211 @itemize
18212 @item
18213 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
18214 @example
18215 stereo3d=sbsl:aybd
18216 @end example
18217
18218 @item
18219 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
18220 @example
18221 stereo3d=abl:sbsr
18222 @end example
18223 @end itemize
18224
18225 @section streamselect, astreamselect
18226 Select video or audio streams.
18227
18228 The filter accepts the following options:
18229
18230 @table @option
18231 @item inputs
18232 Set number of inputs. Default is 2.
18233
18234 @item map
18235 Set input indexes to remap to outputs.
18236 @end table
18237
18238 @subsection Commands
18239
18240 The @code{streamselect} and @code{astreamselect} filter supports the following
18241 commands:
18242
18243 @table @option
18244 @item map
18245 Set input indexes to remap to outputs.
18246 @end table
18247
18248 @subsection Examples
18249
18250 @itemize
18251 @item
18252 Select first 5 seconds 1st stream and rest of time 2nd stream:
18253 @example
18254 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
18255 @end example
18256
18257 @item
18258 Same as above, but for audio:
18259 @example
18260 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
18261 @end example
18262 @end itemize
18263
18264 @anchor{subtitles}
18265 @section subtitles
18266
18267 Draw subtitles on top of input video using the libass library.
18268
18269 To enable compilation of this filter you need to configure FFmpeg with
18270 @code{--enable-libass}. This filter also requires a build with libavcodec and
18271 libavformat to convert the passed subtitles file to ASS (Advanced Substation
18272 Alpha) subtitles format.
18273
18274 The filter accepts the following options:
18275
18276 @table @option
18277 @item filename, f
18278 Set the filename of the subtitle file to read. It must be specified.
18279
18280 @item original_size
18281 Specify the size of the original video, the video for which the ASS file
18282 was composed. For the syntax of this option, check the
18283 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18284 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
18285 correctly scale the fonts if the aspect ratio has been changed.
18286
18287 @item fontsdir
18288 Set a directory path containing fonts that can be used by the filter.
18289 These fonts will be used in addition to whatever the font provider uses.
18290
18291 @item alpha
18292 Process alpha channel, by default alpha channel is untouched.
18293
18294 @item charenc
18295 Set subtitles input character encoding. @code{subtitles} filter only. Only
18296 useful if not UTF-8.
18297
18298 @item stream_index, si
18299 Set subtitles stream index. @code{subtitles} filter only.
18300
18301 @item force_style
18302 Override default style or script info parameters of the subtitles. It accepts a
18303 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
18304 @end table
18305
18306 If the first key is not specified, it is assumed that the first value
18307 specifies the @option{filename}.
18308
18309 For example, to render the file @file{sub.srt} on top of the input
18310 video, use the command:
18311 @example
18312 subtitles=sub.srt
18313 @end example
18314
18315 which is equivalent to:
18316 @example
18317 subtitles=filename=sub.srt
18318 @end example
18319
18320 To render the default subtitles stream from file @file{video.mkv}, use:
18321 @example
18322 subtitles=video.mkv
18323 @end example
18324
18325 To render the second subtitles stream from that file, use:
18326 @example
18327 subtitles=video.mkv:si=1
18328 @end example
18329
18330 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
18331 @code{DejaVu Serif}, use:
18332 @example
18333 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
18334 @end example
18335
18336 @section super2xsai
18337
18338 Scale the input by 2x and smooth using the Super2xSaI (Scale and
18339 Interpolate) pixel art scaling algorithm.
18340
18341 Useful for enlarging pixel art images without reducing sharpness.
18342
18343 @section swaprect
18344
18345 Swap two rectangular objects in video.
18346
18347 This filter accepts the following options:
18348
18349 @table @option
18350 @item w
18351 Set object width.
18352
18353 @item h
18354 Set object height.
18355
18356 @item x1
18357 Set 1st rect x coordinate.
18358
18359 @item y1
18360 Set 1st rect y coordinate.
18361
18362 @item x2
18363 Set 2nd rect x coordinate.
18364
18365 @item y2
18366 Set 2nd rect y coordinate.
18367
18368 All expressions are evaluated once for each frame.
18369 @end table
18370
18371 The all options are expressions containing the following constants:
18372
18373 @table @option
18374 @item w
18375 @item h
18376 The input width and height.
18377
18378 @item a
18379 same as @var{w} / @var{h}
18380
18381 @item sar
18382 input sample aspect ratio
18383
18384 @item dar
18385 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
18386
18387 @item n
18388 The number of the input frame, starting from 0.
18389
18390 @item t
18391 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
18392
18393 @item pos
18394 the position in the file of the input frame, NAN if unknown
18395 @end table
18396
18397 @section swapuv
18398 Swap U & V plane.
18399
18400 @section tblend
18401 Blend successive video frames.
18402
18403 See @ref{blend}
18404
18405 @section telecine
18406
18407 Apply telecine process to the video.
18408
18409 This filter accepts the following options:
18410
18411 @table @option
18412 @item first_field
18413 @table @samp
18414 @item top, t
18415 top field first
18416 @item bottom, b
18417 bottom field first
18418 The default value is @code{top}.
18419 @end table
18420
18421 @item pattern
18422 A string of numbers representing the pulldown pattern you wish to apply.
18423 The default value is @code{23}.
18424 @end table
18425
18426 @example
18427 Some typical patterns:
18428
18429 NTSC output (30i):
18430 27.5p: 32222
18431 24p: 23 (classic)
18432 24p: 2332 (preferred)
18433 20p: 33
18434 18p: 334
18435 16p: 3444
18436
18437 PAL output (25i):
18438 27.5p: 12222
18439 24p: 222222222223 ("Euro pulldown")
18440 16.67p: 33
18441 16p: 33333334
18442 @end example
18443
18444 @section thistogram
18445
18446 Compute and draw a color distribution histogram for the input video across time.
18447
18448 Unlike @ref{histogram} video filter which only shows histogram of single input frame
18449 at certain time, this filter shows also past histograms of number of frames defined
18450 by @code{width} option.
18451
18452 The computed histogram is a representation of the color component
18453 distribution in an image.
18454
18455 The filter accepts the following options:
18456
18457 @table @option
18458 @item width, w
18459 Set width of single color component output. Default value is @code{0}.
18460 Value of @code{0} means width will be picked from input video.
18461 This also set number of passed histograms to keep.
18462 Allowed range is [0, 8192].
18463
18464 @item display_mode, d
18465 Set display mode.
18466 It accepts the following values:
18467 @table @samp
18468 @item stack
18469 Per color component graphs are placed below each other.
18470
18471 @item parade
18472 Per color component graphs are placed side by side.
18473
18474 @item overlay
18475 Presents information identical to that in the @code{parade}, except
18476 that the graphs representing color components are superimposed directly
18477 over one another.
18478 @end table
18479 Default is @code{stack}.
18480
18481 @item levels_mode, m
18482 Set mode. Can be either @code{linear}, or @code{logarithmic}.
18483 Default is @code{linear}.
18484
18485 @item components, c
18486 Set what color components to display.
18487 Default is @code{7}.
18488
18489 @item bgopacity, b
18490 Set background opacity. Default is @code{0.9}.
18491
18492 @item envelope, e
18493 Show envelope. Default is disabled.
18494
18495 @item ecolor, ec
18496 Set envelope color. Default is @code{gold}.
18497
18498 @item slide
18499 Set slide mode.
18500
18501 Available values for slide is:
18502 @table @samp
18503 @item frame
18504 Draw new frame when right border is reached.
18505
18506 @item replace
18507 Replace old columns with new ones.
18508
18509 @item scroll
18510 Scroll from right to left.
18511
18512 @item rscroll
18513 Scroll from left to right.
18514
18515 @item picture
18516 Draw single picture.
18517 @end table
18518
18519 Default is @code{replace}.
18520 @end table
18521
18522 @section threshold
18523
18524 Apply threshold effect to video stream.
18525
18526 This filter needs four video streams to perform thresholding.
18527 First stream is stream we are filtering.
18528 Second stream is holding threshold values, third stream is holding min values,
18529 and last, fourth stream is holding max values.
18530
18531 The filter accepts the following option:
18532
18533 @table @option
18534 @item planes
18535 Set which planes will be processed, unprocessed planes will be copied.
18536 By default value 0xf, all planes will be processed.
18537 @end table
18538
18539 For example if first stream pixel's component value is less then threshold value
18540 of pixel component from 2nd threshold stream, third stream value will picked,
18541 otherwise fourth stream pixel component value will be picked.
18542
18543 Using color source filter one can perform various types of thresholding:
18544
18545 @subsection Examples
18546
18547 @itemize
18548 @item
18549 Binary threshold, using gray color as threshold:
18550 @example
18551 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
18552 @end example
18553
18554 @item
18555 Inverted binary threshold, using gray color as threshold:
18556 @example
18557 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
18558 @end example
18559
18560 @item
18561 Truncate binary threshold, using gray color as threshold:
18562 @example
18563 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
18564 @end example
18565
18566 @item
18567 Threshold to zero, using gray color as threshold:
18568 @example
18569 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
18570 @end example
18571
18572 @item
18573 Inverted threshold to zero, using gray color as threshold:
18574 @example
18575 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
18576 @end example
18577 @end itemize
18578
18579 @section thumbnail
18580 Select the most representative frame in a given sequence of consecutive frames.
18581
18582 The filter accepts the following options:
18583
18584 @table @option
18585 @item n
18586 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
18587 will pick one of them, and then handle the next batch of @var{n} frames until
18588 the end. Default is @code{100}.
18589 @end table
18590
18591 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
18592 value will result in a higher memory usage, so a high value is not recommended.
18593
18594 @subsection Examples
18595
18596 @itemize
18597 @item
18598 Extract one picture each 50 frames:
18599 @example
18600 thumbnail=50
18601 @end example
18602
18603 @item
18604 Complete example of a thumbnail creation with @command{ffmpeg}:
18605 @example
18606 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
18607 @end example
18608 @end itemize
18609
18610 @anchor{tile}
18611 @section tile
18612
18613 Tile several successive frames together.
18614
18615 The @ref{untile} filter can do the reverse.
18616
18617 The filter accepts the following options:
18618
18619 @table @option
18620
18621 @item layout
18622 Set the grid size (i.e. the number of lines and columns). For the syntax of
18623 this option, check the
18624 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18625
18626 @item nb_frames
18627 Set the maximum number of frames to render in the given area. It must be less
18628 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
18629 the area will be used.
18630
18631 @item margin
18632 Set the outer border margin in pixels.
18633
18634 @item padding
18635 Set the inner border thickness (i.e. the number of pixels between frames). For
18636 more advanced padding options (such as having different values for the edges),
18637 refer to the pad video filter.
18638
18639 @item color
18640 Specify the color of the unused area. For the syntax of this option, check the
18641 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18642 The default value of @var{color} is "black".
18643
18644 @item overlap
18645 Set the number of frames to overlap when tiling several successive frames together.
18646 The value must be between @code{0} and @var{nb_frames - 1}.
18647
18648 @item init_padding
18649 Set the number of frames to initially be empty before displaying first output frame.
18650 This controls how soon will one get first output frame.
18651 The value must be between @code{0} and @var{nb_frames - 1}.
18652 @end table
18653
18654 @subsection Examples
18655
18656 @itemize
18657 @item
18658 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
18659 @example
18660 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
18661 @end example
18662 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
18663 duplicating each output frame to accommodate the originally detected frame
18664 rate.
18665
18666 @item
18667 Display @code{5} pictures in an area of @code{3x2} frames,
18668 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
18669 mixed flat and named options:
18670 @example
18671 tile=3x2:nb_frames=5:padding=7:margin=2
18672 @end example
18673 @end itemize
18674
18675 @section tinterlace
18676
18677 Perform various types of temporal field interlacing.
18678
18679 Frames are counted starting from 1, so the first input frame is
18680 considered odd.
18681
18682 The filter accepts the following options:
18683
18684 @table @option
18685
18686 @item mode
18687 Specify the mode of the interlacing. This option can also be specified
18688 as a value alone. See below for a list of values for this option.
18689
18690 Available values are:
18691
18692 @table @samp
18693 @item merge, 0
18694 Move odd frames into the upper field, even into the lower field,
18695 generating a double height frame at half frame rate.
18696 @example
18697  ------> time
18698 Input:
18699 Frame 1         Frame 2         Frame 3         Frame 4
18700
18701 11111           22222           33333           44444
18702 11111           22222           33333           44444
18703 11111           22222           33333           44444
18704 11111           22222           33333           44444
18705
18706 Output:
18707 11111                           33333
18708 22222                           44444
18709 11111                           33333
18710 22222                           44444
18711 11111                           33333
18712 22222                           44444
18713 11111                           33333
18714 22222                           44444
18715 @end example
18716
18717 @item drop_even, 1
18718 Only output odd frames, even frames are dropped, generating a frame with
18719 unchanged height at half frame rate.
18720
18721 @example
18722  ------> time
18723 Input:
18724 Frame 1         Frame 2         Frame 3         Frame 4
18725
18726 11111           22222           33333           44444
18727 11111           22222           33333           44444
18728 11111           22222           33333           44444
18729 11111           22222           33333           44444
18730
18731 Output:
18732 11111                           33333
18733 11111                           33333
18734 11111                           33333
18735 11111                           33333
18736 @end example
18737
18738 @item drop_odd, 2
18739 Only output even frames, odd frames are dropped, generating a frame with
18740 unchanged height at half frame rate.
18741
18742 @example
18743  ------> time
18744 Input:
18745 Frame 1         Frame 2         Frame 3         Frame 4
18746
18747 11111           22222           33333           44444
18748 11111           22222           33333           44444
18749 11111           22222           33333           44444
18750 11111           22222           33333           44444
18751
18752 Output:
18753                 22222                           44444
18754                 22222                           44444
18755                 22222                           44444
18756                 22222                           44444
18757 @end example
18758
18759 @item pad, 3
18760 Expand each frame to full height, but pad alternate lines with black,
18761 generating a frame with double height at the same input frame rate.
18762
18763 @example
18764  ------> time
18765 Input:
18766 Frame 1         Frame 2         Frame 3         Frame 4
18767
18768 11111           22222           33333           44444
18769 11111           22222           33333           44444
18770 11111           22222           33333           44444
18771 11111           22222           33333           44444
18772
18773 Output:
18774 11111           .....           33333           .....
18775 .....           22222           .....           44444
18776 11111           .....           33333           .....
18777 .....           22222           .....           44444
18778 11111           .....           33333           .....
18779 .....           22222           .....           44444
18780 11111           .....           33333           .....
18781 .....           22222           .....           44444
18782 @end example
18783
18784
18785 @item interleave_top, 4
18786 Interleave the upper field from odd frames with the lower field from
18787 even frames, generating a frame with unchanged height at half frame rate.
18788
18789 @example
18790  ------> time
18791 Input:
18792 Frame 1         Frame 2         Frame 3         Frame 4
18793
18794 11111<-         22222           33333<-         44444
18795 11111           22222<-         33333           44444<-
18796 11111<-         22222           33333<-         44444
18797 11111           22222<-         33333           44444<-
18798
18799 Output:
18800 11111                           33333
18801 22222                           44444
18802 11111                           33333
18803 22222                           44444
18804 @end example
18805
18806
18807 @item interleave_bottom, 5
18808 Interleave the lower field from odd frames with the upper field from
18809 even frames, generating a frame with unchanged height at half frame rate.
18810
18811 @example
18812  ------> time
18813 Input:
18814 Frame 1         Frame 2         Frame 3         Frame 4
18815
18816 11111           22222<-         33333           44444<-
18817 11111<-         22222           33333<-         44444
18818 11111           22222<-         33333           44444<-
18819 11111<-         22222           33333<-         44444
18820
18821 Output:
18822 22222                           44444
18823 11111                           33333
18824 22222                           44444
18825 11111                           33333
18826 @end example
18827
18828
18829 @item interlacex2, 6
18830 Double frame rate with unchanged height. Frames are inserted each
18831 containing the second temporal field from the previous input frame and
18832 the first temporal field from the next input frame. This mode relies on
18833 the top_field_first flag. Useful for interlaced video displays with no
18834 field synchronisation.
18835
18836 @example
18837  ------> time
18838 Input:
18839 Frame 1         Frame 2         Frame 3         Frame 4
18840
18841 11111           22222           33333           44444
18842  11111           22222           33333           44444
18843 11111           22222           33333           44444
18844  11111           22222           33333           44444
18845
18846 Output:
18847 11111   22222   22222   33333   33333   44444   44444
18848  11111   11111   22222   22222   33333   33333   44444
18849 11111   22222   22222   33333   33333   44444   44444
18850  11111   11111   22222   22222   33333   33333   44444
18851 @end example
18852
18853
18854 @item mergex2, 7
18855 Move odd frames into the upper field, even into the lower field,
18856 generating a double height frame at same frame rate.
18857
18858 @example
18859  ------> time
18860 Input:
18861 Frame 1         Frame 2         Frame 3         Frame 4
18862
18863 11111           22222           33333           44444
18864 11111           22222           33333           44444
18865 11111           22222           33333           44444
18866 11111           22222           33333           44444
18867
18868 Output:
18869 11111           33333           33333           55555
18870 22222           22222           44444           44444
18871 11111           33333           33333           55555
18872 22222           22222           44444           44444
18873 11111           33333           33333           55555
18874 22222           22222           44444           44444
18875 11111           33333           33333           55555
18876 22222           22222           44444           44444
18877 @end example
18878
18879 @end table
18880
18881 Numeric values are deprecated but are accepted for backward
18882 compatibility reasons.
18883
18884 Default mode is @code{merge}.
18885
18886 @item flags
18887 Specify flags influencing the filter process.
18888
18889 Available value for @var{flags} is:
18890
18891 @table @option
18892 @item low_pass_filter, vlpf
18893 Enable linear vertical low-pass filtering in the filter.
18894 Vertical low-pass filtering is required when creating an interlaced
18895 destination from a progressive source which contains high-frequency
18896 vertical detail. Filtering will reduce interlace 'twitter' and Moire
18897 patterning.
18898
18899 @item complex_filter, cvlpf
18900 Enable complex vertical low-pass filtering.
18901 This will slightly less reduce interlace 'twitter' and Moire
18902 patterning but better retain detail and subjective sharpness impression.
18903
18904 @item bypass_il
18905 Bypass already interlaced frames, only adjust the frame rate.
18906 @end table
18907
18908 Vertical low-pass filtering and bypassing already interlaced frames can only be
18909 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
18910
18911 @end table
18912
18913 @section tmedian
18914 Pick median pixels from several successive input video frames.
18915
18916 The filter accepts the following options:
18917
18918 @table @option
18919 @item radius
18920 Set radius of median filter.
18921 Default is 1. Allowed range is from 1 to 127.
18922
18923 @item planes
18924 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
18925
18926 @item percentile
18927 Set median percentile. Default value is @code{0.5}.
18928 Default value of @code{0.5} will pick always median values, while @code{0} will pick
18929 minimum values, and @code{1} maximum values.
18930 @end table
18931
18932 @section tmix
18933
18934 Mix successive video frames.
18935
18936 A description of the accepted options follows.
18937
18938 @table @option
18939 @item frames
18940 The number of successive frames to mix. If unspecified, it defaults to 3.
18941
18942 @item weights
18943 Specify weight of each input video frame.
18944 Each weight is separated by space. If number of weights is smaller than
18945 number of @var{frames} last specified weight will be used for all remaining
18946 unset weights.
18947
18948 @item scale
18949 Specify scale, if it is set it will be multiplied with sum
18950 of each weight multiplied with pixel values to give final destination
18951 pixel value. By default @var{scale} is auto scaled to sum of weights.
18952 @end table
18953
18954 @subsection Examples
18955
18956 @itemize
18957 @item
18958 Average 7 successive frames:
18959 @example
18960 tmix=frames=7:weights="1 1 1 1 1 1 1"
18961 @end example
18962
18963 @item
18964 Apply simple temporal convolution:
18965 @example
18966 tmix=frames=3:weights="-1 3 -1"
18967 @end example
18968
18969 @item
18970 Similar as above but only showing temporal differences:
18971 @example
18972 tmix=frames=3:weights="-1 2 -1":scale=1
18973 @end example
18974 @end itemize
18975
18976 @anchor{tonemap}
18977 @section tonemap
18978 Tone map colors from different dynamic ranges.
18979
18980 This filter expects data in single precision floating point, as it needs to
18981 operate on (and can output) out-of-range values. Another filter, such as
18982 @ref{zscale}, is needed to convert the resulting frame to a usable format.
18983
18984 The tonemapping algorithms implemented only work on linear light, so input
18985 data should be linearized beforehand (and possibly correctly tagged).
18986
18987 @example
18988 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
18989 @end example
18990
18991 @subsection Options
18992 The filter accepts the following options.
18993
18994 @table @option
18995 @item tonemap
18996 Set the tone map algorithm to use.
18997
18998 Possible values are:
18999 @table @var
19000 @item none
19001 Do not apply any tone map, only desaturate overbright pixels.
19002
19003 @item clip
19004 Hard-clip any out-of-range values. Use it for perfect color accuracy for
19005 in-range values, while distorting out-of-range values.
19006
19007 @item linear
19008 Stretch the entire reference gamut to a linear multiple of the display.
19009
19010 @item gamma
19011 Fit a logarithmic transfer between the tone curves.
19012
19013 @item reinhard
19014 Preserve overall image brightness with a simple curve, using nonlinear
19015 contrast, which results in flattening details and degrading color accuracy.
19016
19017 @item hable
19018 Preserve both dark and bright details better than @var{reinhard}, at the cost
19019 of slightly darkening everything. Use it when detail preservation is more
19020 important than color and brightness accuracy.
19021
19022 @item mobius
19023 Smoothly map out-of-range values, while retaining contrast and colors for
19024 in-range material as much as possible. Use it when color accuracy is more
19025 important than detail preservation.
19026 @end table
19027
19028 Default is none.
19029
19030 @item param
19031 Tune the tone mapping algorithm.
19032
19033 This affects the following algorithms:
19034 @table @var
19035 @item none
19036 Ignored.
19037
19038 @item linear
19039 Specifies the scale factor to use while stretching.
19040 Default to 1.0.
19041
19042 @item gamma
19043 Specifies the exponent of the function.
19044 Default to 1.8.
19045
19046 @item clip
19047 Specify an extra linear coefficient to multiply into the signal before clipping.
19048 Default to 1.0.
19049
19050 @item reinhard
19051 Specify the local contrast coefficient at the display peak.
19052 Default to 0.5, which means that in-gamut values will be about half as bright
19053 as when clipping.
19054
19055 @item hable
19056 Ignored.
19057
19058 @item mobius
19059 Specify the transition point from linear to mobius transform. Every value
19060 below this point is guaranteed to be mapped 1:1. The higher the value, the
19061 more accurate the result will be, at the cost of losing bright details.
19062 Default to 0.3, which due to the steep initial slope still preserves in-range
19063 colors fairly accurately.
19064 @end table
19065
19066 @item desat
19067 Apply desaturation for highlights that exceed this level of brightness. The
19068 higher the parameter, the more color information will be preserved. This
19069 setting helps prevent unnaturally blown-out colors for super-highlights, by
19070 (smoothly) turning into white instead. This makes images feel more natural,
19071 at the cost of reducing information about out-of-range colors.
19072
19073 The default of 2.0 is somewhat conservative and will mostly just apply to
19074 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
19075
19076 This option works only if the input frame has a supported color tag.
19077
19078 @item peak
19079 Override signal/nominal/reference peak with this value. Useful when the
19080 embedded peak information in display metadata is not reliable or when tone
19081 mapping from a lower range to a higher range.
19082 @end table
19083
19084 @section tpad
19085
19086 Temporarily pad video frames.
19087
19088 The filter accepts the following options:
19089
19090 @table @option
19091 @item start
19092 Specify number of delay frames before input video stream. Default is 0.
19093
19094 @item stop
19095 Specify number of padding frames after input video stream.
19096 Set to -1 to pad indefinitely. Default is 0.
19097
19098 @item start_mode
19099 Set kind of frames added to beginning of stream.
19100 Can be either @var{add} or @var{clone}.
19101 With @var{add} frames of solid-color are added.
19102 With @var{clone} frames are clones of first frame.
19103 Default is @var{add}.
19104
19105 @item stop_mode
19106 Set kind of frames added to end of stream.
19107 Can be either @var{add} or @var{clone}.
19108 With @var{add} frames of solid-color are added.
19109 With @var{clone} frames are clones of last frame.
19110 Default is @var{add}.
19111
19112 @item start_duration, stop_duration
19113 Specify the duration of the start/stop delay. See
19114 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19115 for the accepted syntax.
19116 These options override @var{start} and @var{stop}. Default is 0.
19117
19118 @item color
19119 Specify the color of the padded area. For the syntax of this option,
19120 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
19121 manual,ffmpeg-utils}.
19122
19123 The default value of @var{color} is "black".
19124 @end table
19125
19126 @anchor{transpose}
19127 @section transpose
19128
19129 Transpose rows with columns in the input video and optionally flip it.
19130
19131 It accepts the following parameters:
19132
19133 @table @option
19134
19135 @item dir
19136 Specify the transposition direction.
19137
19138 Can assume the following values:
19139 @table @samp
19140 @item 0, 4, cclock_flip
19141 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
19142 @example
19143 L.R     L.l
19144 . . ->  . .
19145 l.r     R.r
19146 @end example
19147
19148 @item 1, 5, clock
19149 Rotate by 90 degrees clockwise, that is:
19150 @example
19151 L.R     l.L
19152 . . ->  . .
19153 l.r     r.R
19154 @end example
19155
19156 @item 2, 6, cclock
19157 Rotate by 90 degrees counterclockwise, that is:
19158 @example
19159 L.R     R.r
19160 . . ->  . .
19161 l.r     L.l
19162 @end example
19163
19164 @item 3, 7, clock_flip
19165 Rotate by 90 degrees clockwise and vertically flip, that is:
19166 @example
19167 L.R     r.R
19168 . . ->  . .
19169 l.r     l.L
19170 @end example
19171 @end table
19172
19173 For values between 4-7, the transposition is only done if the input
19174 video geometry is portrait and not landscape. These values are
19175 deprecated, the @code{passthrough} option should be used instead.
19176
19177 Numerical values are deprecated, and should be dropped in favor of
19178 symbolic constants.
19179
19180 @item passthrough
19181 Do not apply the transposition if the input geometry matches the one
19182 specified by the specified value. It accepts the following values:
19183 @table @samp
19184 @item none
19185 Always apply transposition.
19186 @item portrait
19187 Preserve portrait geometry (when @var{height} >= @var{width}).
19188 @item landscape
19189 Preserve landscape geometry (when @var{width} >= @var{height}).
19190 @end table
19191
19192 Default value is @code{none}.
19193 @end table
19194
19195 For example to rotate by 90 degrees clockwise and preserve portrait
19196 layout:
19197 @example
19198 transpose=dir=1:passthrough=portrait
19199 @end example
19200
19201 The command above can also be specified as:
19202 @example
19203 transpose=1:portrait
19204 @end example
19205
19206 @section transpose_npp
19207
19208 Transpose rows with columns in the input video and optionally flip it.
19209 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
19210
19211 It accepts the following parameters:
19212
19213 @table @option
19214
19215 @item dir
19216 Specify the transposition direction.
19217
19218 Can assume the following values:
19219 @table @samp
19220 @item cclock_flip
19221 Rotate by 90 degrees counterclockwise and vertically flip. (default)
19222
19223 @item clock
19224 Rotate by 90 degrees clockwise.
19225
19226 @item cclock
19227 Rotate by 90 degrees counterclockwise.
19228
19229 @item clock_flip
19230 Rotate by 90 degrees clockwise and vertically flip.
19231 @end table
19232
19233 @item passthrough
19234 Do not apply the transposition if the input geometry matches the one
19235 specified by the specified value. It accepts the following values:
19236 @table @samp
19237 @item none
19238 Always apply transposition. (default)
19239 @item portrait
19240 Preserve portrait geometry (when @var{height} >= @var{width}).
19241 @item landscape
19242 Preserve landscape geometry (when @var{width} >= @var{height}).
19243 @end table
19244
19245 @end table
19246
19247 @section trim
19248 Trim the input so that the output contains one continuous subpart of the input.
19249
19250 It accepts the following parameters:
19251 @table @option
19252 @item start
19253 Specify the time of the start of the kept section, i.e. the frame with the
19254 timestamp @var{start} will be the first frame in the output.
19255
19256 @item end
19257 Specify the time of the first frame that will be dropped, i.e. the frame
19258 immediately preceding the one with the timestamp @var{end} will be the last
19259 frame in the output.
19260
19261 @item start_pts
19262 This is the same as @var{start}, except this option sets the start timestamp
19263 in timebase units instead of seconds.
19264
19265 @item end_pts
19266 This is the same as @var{end}, except this option sets the end timestamp
19267 in timebase units instead of seconds.
19268
19269 @item duration
19270 The maximum duration of the output in seconds.
19271
19272 @item start_frame
19273 The number of the first frame that should be passed to the output.
19274
19275 @item end_frame
19276 The number of the first frame that should be dropped.
19277 @end table
19278
19279 @option{start}, @option{end}, and @option{duration} are expressed as time
19280 duration specifications; see
19281 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19282 for the accepted syntax.
19283
19284 Note that the first two sets of the start/end options and the @option{duration}
19285 option look at the frame timestamp, while the _frame variants simply count the
19286 frames that pass through the filter. Also note that this filter does not modify
19287 the timestamps. If you wish for the output timestamps to start at zero, insert a
19288 setpts filter after the trim filter.
19289
19290 If multiple start or end options are set, this filter tries to be greedy and
19291 keep all the frames that match at least one of the specified constraints. To keep
19292 only the part that matches all the constraints at once, chain multiple trim
19293 filters.
19294
19295 The defaults are such that all the input is kept. So it is possible to set e.g.
19296 just the end values to keep everything before the specified time.
19297
19298 Examples:
19299 @itemize
19300 @item
19301 Drop everything except the second minute of input:
19302 @example
19303 ffmpeg -i INPUT -vf trim=60:120
19304 @end example
19305
19306 @item
19307 Keep only the first second:
19308 @example
19309 ffmpeg -i INPUT -vf trim=duration=1
19310 @end example
19311
19312 @end itemize
19313
19314 @section unpremultiply
19315 Apply alpha unpremultiply effect to input video stream using first plane
19316 of second stream as alpha.
19317
19318 Both streams must have same dimensions and same pixel format.
19319
19320 The filter accepts the following option:
19321
19322 @table @option
19323 @item planes
19324 Set which planes will be processed, unprocessed planes will be copied.
19325 By default value 0xf, all planes will be processed.
19326
19327 If the format has 1 or 2 components, then luma is bit 0.
19328 If the format has 3 or 4 components:
19329 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
19330 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
19331 If present, the alpha channel is always the last bit.
19332
19333 @item inplace
19334 Do not require 2nd input for processing, instead use alpha plane from input stream.
19335 @end table
19336
19337 @anchor{unsharp}
19338 @section unsharp
19339
19340 Sharpen or blur the input video.
19341
19342 It accepts the following parameters:
19343
19344 @table @option
19345 @item luma_msize_x, lx
19346 Set the luma matrix horizontal size. It must be an odd integer between
19347 3 and 23. The default value is 5.
19348
19349 @item luma_msize_y, ly
19350 Set the luma matrix vertical size. It must be an odd integer between 3
19351 and 23. The default value is 5.
19352
19353 @item luma_amount, la
19354 Set the luma effect strength. It must be a floating point number, reasonable
19355 values lay between -1.5 and 1.5.
19356
19357 Negative values will blur the input video, while positive values will
19358 sharpen it, a value of zero will disable the effect.
19359
19360 Default value is 1.0.
19361
19362 @item chroma_msize_x, cx
19363 Set the chroma matrix horizontal size. It must be an odd integer
19364 between 3 and 23. The default value is 5.
19365
19366 @item chroma_msize_y, cy
19367 Set the chroma matrix vertical size. It must be an odd integer
19368 between 3 and 23. The default value is 5.
19369
19370 @item chroma_amount, ca
19371 Set the chroma effect strength. It must be a floating point number, reasonable
19372 values lay between -1.5 and 1.5.
19373
19374 Negative values will blur the input video, while positive values will
19375 sharpen it, a value of zero will disable the effect.
19376
19377 Default value is 0.0.
19378
19379 @end table
19380
19381 All parameters are optional and default to the equivalent of the
19382 string '5:5:1.0:5:5:0.0'.
19383
19384 @subsection Examples
19385
19386 @itemize
19387 @item
19388 Apply strong luma sharpen effect:
19389 @example
19390 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
19391 @end example
19392
19393 @item
19394 Apply a strong blur of both luma and chroma parameters:
19395 @example
19396 unsharp=7:7:-2:7:7:-2
19397 @end example
19398 @end itemize
19399
19400 @anchor{untile}
19401 @section untile
19402
19403 Decompose a video made of tiled images into the individual images.
19404
19405 The frame rate of the output video is the frame rate of the input video
19406 multiplied by the number of tiles.
19407
19408 This filter does the reverse of @ref{tile}.
19409
19410 The filter accepts the following options:
19411
19412 @table @option
19413
19414 @item layout
19415 Set the grid size (i.e. the number of lines and columns). For the syntax of
19416 this option, check the
19417 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19418 @end table
19419
19420 @subsection Examples
19421
19422 @itemize
19423 @item
19424 Produce a 1-second video from a still image file made of 25 frames stacked
19425 vertically, like an analogic film reel:
19426 @example
19427 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
19428 @end example
19429 @end itemize
19430
19431 @section uspp
19432
19433 Apply ultra slow/simple postprocessing filter that compresses and decompresses
19434 the image at several (or - in the case of @option{quality} level @code{8} - all)
19435 shifts and average the results.
19436
19437 The way this differs from the behavior of spp is that uspp actually encodes &
19438 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
19439 DCT similar to MJPEG.
19440
19441 The filter accepts the following options:
19442
19443 @table @option
19444 @item quality
19445 Set quality. This option defines the number of levels for averaging. It accepts
19446 an integer in the range 0-8. If set to @code{0}, the filter will have no
19447 effect. A value of @code{8} means the higher quality. For each increment of
19448 that value the speed drops by a factor of approximately 2.  Default value is
19449 @code{3}.
19450
19451 @item qp
19452 Force a constant quantization parameter. If not set, the filter will use the QP
19453 from the video stream (if available).
19454 @end table
19455
19456 @section v360
19457
19458 Convert 360 videos between various formats.
19459
19460 The filter accepts the following options:
19461
19462 @table @option
19463
19464 @item input
19465 @item output
19466 Set format of the input/output video.
19467
19468 Available formats:
19469
19470 @table @samp
19471
19472 @item e
19473 @item equirect
19474 Equirectangular projection.
19475
19476 @item c3x2
19477 @item c6x1
19478 @item c1x6
19479 Cubemap with 3x2/6x1/1x6 layout.
19480
19481 Format specific options:
19482
19483 @table @option
19484 @item in_pad
19485 @item out_pad
19486 Set padding proportion for the input/output cubemap. Values in decimals.
19487
19488 Example values:
19489 @table @samp
19490 @item 0
19491 No padding.
19492 @item 0.01
19493 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)
19494 @end table
19495
19496 Default value is @b{@samp{0}}.
19497 Maximum value is @b{@samp{0.1}}.
19498
19499 @item fin_pad
19500 @item fout_pad
19501 Set fixed padding for the input/output cubemap. Values in pixels.
19502
19503 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
19504
19505 @item in_forder
19506 @item out_forder
19507 Set order of faces for the input/output cubemap. Choose one direction for each position.
19508
19509 Designation of directions:
19510 @table @samp
19511 @item r
19512 right
19513 @item l
19514 left
19515 @item u
19516 up
19517 @item d
19518 down
19519 @item f
19520 forward
19521 @item b
19522 back
19523 @end table
19524
19525 Default value is @b{@samp{rludfb}}.
19526
19527 @item in_frot
19528 @item out_frot
19529 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
19530
19531 Designation of angles:
19532 @table @samp
19533 @item 0
19534 0 degrees clockwise
19535 @item 1
19536 90 degrees clockwise
19537 @item 2
19538 180 degrees clockwise
19539 @item 3
19540 270 degrees clockwise
19541 @end table
19542
19543 Default value is @b{@samp{000000}}.
19544 @end table
19545
19546 @item eac
19547 Equi-Angular Cubemap.
19548
19549 @item flat
19550 @item gnomonic
19551 @item rectilinear
19552 Regular video.
19553
19554 Format specific options:
19555 @table @option
19556 @item h_fov
19557 @item v_fov
19558 @item d_fov
19559 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19560
19561 If diagonal field of view is set it overrides horizontal and vertical field of view.
19562
19563 @item ih_fov
19564 @item iv_fov
19565 @item id_fov
19566 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19567
19568 If diagonal field of view is set it overrides horizontal and vertical field of view.
19569 @end table
19570
19571 @item dfisheye
19572 Dual fisheye.
19573
19574 Format specific options:
19575 @table @option
19576 @item h_fov
19577 @item v_fov
19578 @item d_fov
19579 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19580
19581 If diagonal field of view is set it overrides horizontal and vertical field of view.
19582
19583 @item ih_fov
19584 @item iv_fov
19585 @item id_fov
19586 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19587
19588 If diagonal field of view is set it overrides horizontal and vertical field of view.
19589 @end table
19590
19591 @item barrel
19592 @item fb
19593 @item barrelsplit
19594 Facebook's 360 formats.
19595
19596 @item sg
19597 Stereographic format.
19598
19599 Format specific options:
19600 @table @option
19601 @item h_fov
19602 @item v_fov
19603 @item d_fov
19604 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19605
19606 If diagonal field of view is set it overrides horizontal and vertical field of view.
19607
19608 @item ih_fov
19609 @item iv_fov
19610 @item id_fov
19611 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19612
19613 If diagonal field of view is set it overrides horizontal and vertical field of view.
19614 @end table
19615
19616 @item mercator
19617 Mercator format.
19618
19619 @item ball
19620 Ball format, gives significant distortion toward the back.
19621
19622 @item hammer
19623 Hammer-Aitoff map projection format.
19624
19625 @item sinusoidal
19626 Sinusoidal map projection format.
19627
19628 @item fisheye
19629 Fisheye projection.
19630
19631 Format specific options:
19632 @table @option
19633 @item h_fov
19634 @item v_fov
19635 @item d_fov
19636 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19637
19638 If diagonal field of view is set it overrides horizontal and vertical field of view.
19639
19640 @item ih_fov
19641 @item iv_fov
19642 @item id_fov
19643 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19644
19645 If diagonal field of view is set it overrides horizontal and vertical field of view.
19646 @end table
19647
19648 @item pannini
19649 Pannini projection.
19650
19651 Format specific options:
19652 @table @option
19653 @item h_fov
19654 Set output pannini parameter.
19655
19656 @item ih_fov
19657 Set input pannini parameter.
19658 @end table
19659
19660 @item cylindrical
19661 Cylindrical projection.
19662
19663 Format specific options:
19664 @table @option
19665 @item h_fov
19666 @item v_fov
19667 @item d_fov
19668 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19669
19670 If diagonal field of view is set it overrides horizontal and vertical field of view.
19671
19672 @item ih_fov
19673 @item iv_fov
19674 @item id_fov
19675 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19676
19677 If diagonal field of view is set it overrides horizontal and vertical field of view.
19678 @end table
19679
19680 @item perspective
19681 Perspective projection. @i{(output only)}
19682
19683 Format specific options:
19684 @table @option
19685 @item v_fov
19686 Set perspective parameter.
19687 @end table
19688
19689 @item tetrahedron
19690 Tetrahedron projection.
19691
19692 @item tsp
19693 Truncated square pyramid projection.
19694
19695 @item he
19696 @item hequirect
19697 Half equirectangular projection.
19698
19699 @item equisolid
19700 Equisolid format.
19701
19702 Format specific options:
19703 @table @option
19704 @item h_fov
19705 @item v_fov
19706 @item d_fov
19707 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19708
19709 If diagonal field of view is set it overrides horizontal and vertical field of view.
19710
19711 @item ih_fov
19712 @item iv_fov
19713 @item id_fov
19714 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19715
19716 If diagonal field of view is set it overrides horizontal and vertical field of view.
19717 @end table
19718
19719 @item og
19720 Orthographic format.
19721
19722 Format specific options:
19723 @table @option
19724 @item h_fov
19725 @item v_fov
19726 @item d_fov
19727 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19728
19729 If diagonal field of view is set it overrides horizontal and vertical field of view.
19730
19731 @item ih_fov
19732 @item iv_fov
19733 @item id_fov
19734 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19735
19736 If diagonal field of view is set it overrides horizontal and vertical field of view.
19737 @end table
19738
19739 @item octahedron
19740 Octahedron projection.
19741 @end table
19742
19743 @item interp
19744 Set interpolation method.@*
19745 @i{Note: more complex interpolation methods require much more memory to run.}
19746
19747 Available methods:
19748
19749 @table @samp
19750 @item near
19751 @item nearest
19752 Nearest neighbour.
19753 @item line
19754 @item linear
19755 Bilinear interpolation.
19756 @item lagrange9
19757 Lagrange9 interpolation.
19758 @item cube
19759 @item cubic
19760 Bicubic interpolation.
19761 @item lanc
19762 @item lanczos
19763 Lanczos interpolation.
19764 @item sp16
19765 @item spline16
19766 Spline16 interpolation.
19767 @item gauss
19768 @item gaussian
19769 Gaussian interpolation.
19770 @item mitchell
19771 Mitchell interpolation.
19772 @end table
19773
19774 Default value is @b{@samp{line}}.
19775
19776 @item w
19777 @item h
19778 Set the output video resolution.
19779
19780 Default resolution depends on formats.
19781
19782 @item in_stereo
19783 @item out_stereo
19784 Set the input/output stereo format.
19785
19786 @table @samp
19787 @item 2d
19788 2D mono
19789 @item sbs
19790 Side by side
19791 @item tb
19792 Top bottom
19793 @end table
19794
19795 Default value is @b{@samp{2d}} for input and output format.
19796
19797 @item yaw
19798 @item pitch
19799 @item roll
19800 Set rotation for the output video. Values in degrees.
19801
19802 @item rorder
19803 Set rotation order for the output video. Choose one item for each position.
19804
19805 @table @samp
19806 @item y, Y
19807 yaw
19808 @item p, P
19809 pitch
19810 @item r, R
19811 roll
19812 @end table
19813
19814 Default value is @b{@samp{ypr}}.
19815
19816 @item h_flip
19817 @item v_flip
19818 @item d_flip
19819 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
19820
19821 @item ih_flip
19822 @item iv_flip
19823 Set if input video is flipped horizontally/vertically. Boolean values.
19824
19825 @item in_trans
19826 Set if input video is transposed. Boolean value, by default disabled.
19827
19828 @item out_trans
19829 Set if output video needs to be transposed. Boolean value, by default disabled.
19830
19831 @item alpha_mask
19832 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
19833 @end table
19834
19835 @subsection Examples
19836
19837 @itemize
19838 @item
19839 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
19840 @example
19841 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
19842 @end example
19843 @item
19844 Extract back view of Equi-Angular Cubemap:
19845 @example
19846 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
19847 @end example
19848 @item
19849 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
19850 @example
19851 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
19852 @end example
19853 @end itemize
19854
19855 @subsection Commands
19856
19857 This filter supports subset of above options as @ref{commands}.
19858
19859 @section vaguedenoiser
19860
19861 Apply a wavelet based denoiser.
19862
19863 It transforms each frame from the video input into the wavelet domain,
19864 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
19865 the obtained coefficients. It does an inverse wavelet transform after.
19866 Due to wavelet properties, it should give a nice smoothed result, and
19867 reduced noise, without blurring picture features.
19868
19869 This filter accepts the following options:
19870
19871 @table @option
19872 @item threshold
19873 The filtering strength. The higher, the more filtered the video will be.
19874 Hard thresholding can use a higher threshold than soft thresholding
19875 before the video looks overfiltered. Default value is 2.
19876
19877 @item method
19878 The filtering method the filter will use.
19879
19880 It accepts the following values:
19881 @table @samp
19882 @item hard
19883 All values under the threshold will be zeroed.
19884
19885 @item soft
19886 All values under the threshold will be zeroed. All values above will be
19887 reduced by the threshold.
19888
19889 @item garrote
19890 Scales or nullifies coefficients - intermediary between (more) soft and
19891 (less) hard thresholding.
19892 @end table
19893
19894 Default is garrote.
19895
19896 @item nsteps
19897 Number of times, the wavelet will decompose the picture. Picture can't
19898 be decomposed beyond a particular point (typically, 8 for a 640x480
19899 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
19900
19901 @item percent
19902 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
19903
19904 @item planes
19905 A list of the planes to process. By default all planes are processed.
19906
19907 @item type
19908 The threshold type the filter will use.
19909
19910 It accepts the following values:
19911 @table @samp
19912 @item universal
19913 Threshold used is same for all decompositions.
19914
19915 @item bayes
19916 Threshold used depends also on each decomposition coefficients.
19917 @end table
19918
19919 Default is universal.
19920 @end table
19921
19922 @section vectorscope
19923
19924 Display 2 color component values in the two dimensional graph (which is called
19925 a vectorscope).
19926
19927 This filter accepts the following options:
19928
19929 @table @option
19930 @item mode, m
19931 Set vectorscope mode.
19932
19933 It accepts the following values:
19934 @table @samp
19935 @item gray
19936 @item tint
19937 Gray values are displayed on graph, higher brightness means more pixels have
19938 same component color value on location in graph. This is the default mode.
19939
19940 @item color
19941 Gray values are displayed on graph. Surrounding pixels values which are not
19942 present in video frame are drawn in gradient of 2 color components which are
19943 set by option @code{x} and @code{y}. The 3rd color component is static.
19944
19945 @item color2
19946 Actual color components values present in video frame are displayed on graph.
19947
19948 @item color3
19949 Similar as color2 but higher frequency of same values @code{x} and @code{y}
19950 on graph increases value of another color component, which is luminance by
19951 default values of @code{x} and @code{y}.
19952
19953 @item color4
19954 Actual colors present in video frame are displayed on graph. If two different
19955 colors map to same position on graph then color with higher value of component
19956 not present in graph is picked.
19957
19958 @item color5
19959 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
19960 component picked from radial gradient.
19961 @end table
19962
19963 @item x
19964 Set which color component will be represented on X-axis. Default is @code{1}.
19965
19966 @item y
19967 Set which color component will be represented on Y-axis. Default is @code{2}.
19968
19969 @item intensity, i
19970 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
19971 of color component which represents frequency of (X, Y) location in graph.
19972
19973 @item envelope, e
19974 @table @samp
19975 @item none
19976 No envelope, this is default.
19977
19978 @item instant
19979 Instant envelope, even darkest single pixel will be clearly highlighted.
19980
19981 @item peak
19982 Hold maximum and minimum values presented in graph over time. This way you
19983 can still spot out of range values without constantly looking at vectorscope.
19984
19985 @item peak+instant
19986 Peak and instant envelope combined together.
19987 @end table
19988
19989 @item graticule, g
19990 Set what kind of graticule to draw.
19991 @table @samp
19992 @item none
19993 @item green
19994 @item color
19995 @item invert
19996 @end table
19997
19998 @item opacity, o
19999 Set graticule opacity.
20000
20001 @item flags, f
20002 Set graticule flags.
20003
20004 @table @samp
20005 @item white
20006 Draw graticule for white point.
20007
20008 @item black
20009 Draw graticule for black point.
20010
20011 @item name
20012 Draw color points short names.
20013 @end table
20014
20015 @item bgopacity, b
20016 Set background opacity.
20017
20018 @item lthreshold, l
20019 Set low threshold for color component not represented on X or Y axis.
20020 Values lower than this value will be ignored. Default is 0.
20021 Note this value is multiplied with actual max possible value one pixel component
20022 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
20023 is 0.1 * 255 = 25.
20024
20025 @item hthreshold, h
20026 Set high threshold for color component not represented on X or Y axis.
20027 Values higher than this value will be ignored. Default is 1.
20028 Note this value is multiplied with actual max possible value one pixel component
20029 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
20030 is 0.9 * 255 = 230.
20031
20032 @item colorspace, c
20033 Set what kind of colorspace to use when drawing graticule.
20034 @table @samp
20035 @item auto
20036 @item 601
20037 @item 709
20038 @end table
20039 Default is auto.
20040
20041 @item tint0, t0
20042 @item tint1, t1
20043 Set color tint for gray/tint vectorscope mode. By default both options are zero.
20044 This means no tint, and output will remain gray.
20045 @end table
20046
20047 @anchor{vidstabdetect}
20048 @section vidstabdetect
20049
20050 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
20051 @ref{vidstabtransform} for pass 2.
20052
20053 This filter generates a file with relative translation and rotation
20054 transform information about subsequent frames, which is then used by
20055 the @ref{vidstabtransform} filter.
20056
20057 To enable compilation of this filter you need to configure FFmpeg with
20058 @code{--enable-libvidstab}.
20059
20060 This filter accepts the following options:
20061
20062 @table @option
20063 @item result
20064 Set the path to the file used to write the transforms information.
20065 Default value is @file{transforms.trf}.
20066
20067 @item shakiness
20068 Set how shaky the video is and how quick the camera is. It accepts an
20069 integer in the range 1-10, a value of 1 means little shakiness, a
20070 value of 10 means strong shakiness. Default value is 5.
20071
20072 @item accuracy
20073 Set the accuracy of the detection process. It must be a value in the
20074 range 1-15. A value of 1 means low accuracy, a value of 15 means high
20075 accuracy. Default value is 15.
20076
20077 @item stepsize
20078 Set stepsize of the search process. The region around minimum is
20079 scanned with 1 pixel resolution. Default value is 6.
20080
20081 @item mincontrast
20082 Set minimum contrast. Below this value a local measurement field is
20083 discarded. Must be a floating point value in the range 0-1. Default
20084 value is 0.3.
20085
20086 @item tripod
20087 Set reference frame number for tripod mode.
20088
20089 If enabled, the motion of the frames is compared to a reference frame
20090 in the filtered stream, identified by the specified number. The idea
20091 is to compensate all movements in a more-or-less static scene and keep
20092 the camera view absolutely still.
20093
20094 If set to 0, it is disabled. The frames are counted starting from 1.
20095
20096 @item show
20097 Show fields and transforms in the resulting frames. It accepts an
20098 integer in the range 0-2. Default value is 0, which disables any
20099 visualization.
20100 @end table
20101
20102 @subsection Examples
20103
20104 @itemize
20105 @item
20106 Use default values:
20107 @example
20108 vidstabdetect
20109 @end example
20110
20111 @item
20112 Analyze strongly shaky movie and put the results in file
20113 @file{mytransforms.trf}:
20114 @example
20115 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
20116 @end example
20117
20118 @item
20119 Visualize the result of internal transformations in the resulting
20120 video:
20121 @example
20122 vidstabdetect=show=1
20123 @end example
20124
20125 @item
20126 Analyze a video with medium shakiness using @command{ffmpeg}:
20127 @example
20128 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
20129 @end example
20130 @end itemize
20131
20132 @anchor{vidstabtransform}
20133 @section vidstabtransform
20134
20135 Video stabilization/deshaking: pass 2 of 2,
20136 see @ref{vidstabdetect} for pass 1.
20137
20138 Read a file with transform information for each frame and
20139 apply/compensate them. Together with the @ref{vidstabdetect}
20140 filter this can be used to deshake videos. See also
20141 @url{http://public.hronopik.de/vid.stab}. It is important to also use
20142 the @ref{unsharp} filter, see below.
20143
20144 To enable compilation of this filter you need to configure FFmpeg with
20145 @code{--enable-libvidstab}.
20146
20147 @subsection Options
20148
20149 @table @option
20150 @item input
20151 Set path to the file used to read the transforms. Default value is
20152 @file{transforms.trf}.
20153
20154 @item smoothing
20155 Set the number of frames (value*2 + 1) used for lowpass filtering the
20156 camera movements. Default value is 10.
20157
20158 For example a number of 10 means that 21 frames are used (10 in the
20159 past and 10 in the future) to smoothen the motion in the video. A
20160 larger value leads to a smoother video, but limits the acceleration of
20161 the camera (pan/tilt movements). 0 is a special case where a static
20162 camera is simulated.
20163
20164 @item optalgo
20165 Set the camera path optimization algorithm.
20166
20167 Accepted values are:
20168 @table @samp
20169 @item gauss
20170 gaussian kernel low-pass filter on camera motion (default)
20171 @item avg
20172 averaging on transformations
20173 @end table
20174
20175 @item maxshift
20176 Set maximal number of pixels to translate frames. Default value is -1,
20177 meaning no limit.
20178
20179 @item maxangle
20180 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
20181 value is -1, meaning no limit.
20182
20183 @item crop
20184 Specify how to deal with borders that may be visible due to movement
20185 compensation.
20186
20187 Available values are:
20188 @table @samp
20189 @item keep
20190 keep image information from previous frame (default)
20191 @item black
20192 fill the border black
20193 @end table
20194
20195 @item invert
20196 Invert transforms if set to 1. Default value is 0.
20197
20198 @item relative
20199 Consider transforms as relative to previous frame if set to 1,
20200 absolute if set to 0. Default value is 0.
20201
20202 @item zoom
20203 Set percentage to zoom. A positive value will result in a zoom-in
20204 effect, a negative value in a zoom-out effect. Default value is 0 (no
20205 zoom).
20206
20207 @item optzoom
20208 Set optimal zooming to avoid borders.
20209
20210 Accepted values are:
20211 @table @samp
20212 @item 0
20213 disabled
20214 @item 1
20215 optimal static zoom value is determined (only very strong movements
20216 will lead to visible borders) (default)
20217 @item 2
20218 optimal adaptive zoom value is determined (no borders will be
20219 visible), see @option{zoomspeed}
20220 @end table
20221
20222 Note that the value given at zoom is added to the one calculated here.
20223
20224 @item zoomspeed
20225 Set percent to zoom maximally each frame (enabled when
20226 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
20227 0.25.
20228
20229 @item interpol
20230 Specify type of interpolation.
20231
20232 Available values are:
20233 @table @samp
20234 @item no
20235 no interpolation
20236 @item linear
20237 linear only horizontal
20238 @item bilinear
20239 linear in both directions (default)
20240 @item bicubic
20241 cubic in both directions (slow)
20242 @end table
20243
20244 @item tripod
20245 Enable virtual tripod mode if set to 1, which is equivalent to
20246 @code{relative=0:smoothing=0}. Default value is 0.
20247
20248 Use also @code{tripod} option of @ref{vidstabdetect}.
20249
20250 @item debug
20251 Increase log verbosity if set to 1. Also the detected global motions
20252 are written to the temporary file @file{global_motions.trf}. Default
20253 value is 0.
20254 @end table
20255
20256 @subsection Examples
20257
20258 @itemize
20259 @item
20260 Use @command{ffmpeg} for a typical stabilization with default values:
20261 @example
20262 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
20263 @end example
20264
20265 Note the use of the @ref{unsharp} filter which is always recommended.
20266
20267 @item
20268 Zoom in a bit more and load transform data from a given file:
20269 @example
20270 vidstabtransform=zoom=5:input="mytransforms.trf"
20271 @end example
20272
20273 @item
20274 Smoothen the video even more:
20275 @example
20276 vidstabtransform=smoothing=30
20277 @end example
20278 @end itemize
20279
20280 @section vflip
20281
20282 Flip the input video vertically.
20283
20284 For example, to vertically flip a video with @command{ffmpeg}:
20285 @example
20286 ffmpeg -i in.avi -vf "vflip" out.avi
20287 @end example
20288
20289 @section vfrdet
20290
20291 Detect variable frame rate video.
20292
20293 This filter tries to detect if the input is variable or constant frame rate.
20294
20295 At end it will output number of frames detected as having variable delta pts,
20296 and ones with constant delta pts.
20297 If there was frames with variable delta, than it will also show min, max and
20298 average delta encountered.
20299
20300 @section vibrance
20301
20302 Boost or alter saturation.
20303
20304 The filter accepts the following options:
20305 @table @option
20306 @item intensity
20307 Set strength of boost if positive value or strength of alter if negative value.
20308 Default is 0. Allowed range is from -2 to 2.
20309
20310 @item rbal
20311 Set the red balance. Default is 1. Allowed range is from -10 to 10.
20312
20313 @item gbal
20314 Set the green balance. Default is 1. Allowed range is from -10 to 10.
20315
20316 @item bbal
20317 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
20318
20319 @item rlum
20320 Set the red luma coefficient.
20321
20322 @item glum
20323 Set the green luma coefficient.
20324
20325 @item blum
20326 Set the blue luma coefficient.
20327
20328 @item alternate
20329 If @code{intensity} is negative and this is set to 1, colors will change,
20330 otherwise colors will be less saturated, more towards gray.
20331 @end table
20332
20333 @subsection Commands
20334
20335 This filter supports the all above options as @ref{commands}.
20336
20337 @anchor{vignette}
20338 @section vignette
20339
20340 Make or reverse a natural vignetting effect.
20341
20342 The filter accepts the following options:
20343
20344 @table @option
20345 @item angle, a
20346 Set lens angle expression as a number of radians.
20347
20348 The value is clipped in the @code{[0,PI/2]} range.
20349
20350 Default value: @code{"PI/5"}
20351
20352 @item x0
20353 @item y0
20354 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
20355 by default.
20356
20357 @item mode
20358 Set forward/backward mode.
20359
20360 Available modes are:
20361 @table @samp
20362 @item forward
20363 The larger the distance from the central point, the darker the image becomes.
20364
20365 @item backward
20366 The larger the distance from the central point, the brighter the image becomes.
20367 This can be used to reverse a vignette effect, though there is no automatic
20368 detection to extract the lens @option{angle} and other settings (yet). It can
20369 also be used to create a burning effect.
20370 @end table
20371
20372 Default value is @samp{forward}.
20373
20374 @item eval
20375 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
20376
20377 It accepts the following values:
20378 @table @samp
20379 @item init
20380 Evaluate expressions only once during the filter initialization.
20381
20382 @item frame
20383 Evaluate expressions for each incoming frame. This is way slower than the
20384 @samp{init} mode since it requires all the scalers to be re-computed, but it
20385 allows advanced dynamic expressions.
20386 @end table
20387
20388 Default value is @samp{init}.
20389
20390 @item dither
20391 Set dithering to reduce the circular banding effects. Default is @code{1}
20392 (enabled).
20393
20394 @item aspect
20395 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
20396 Setting this value to the SAR of the input will make a rectangular vignetting
20397 following the dimensions of the video.
20398
20399 Default is @code{1/1}.
20400 @end table
20401
20402 @subsection Expressions
20403
20404 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
20405 following parameters.
20406
20407 @table @option
20408 @item w
20409 @item h
20410 input width and height
20411
20412 @item n
20413 the number of input frame, starting from 0
20414
20415 @item pts
20416 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
20417 @var{TB} units, NAN if undefined
20418
20419 @item r
20420 frame rate of the input video, NAN if the input frame rate is unknown
20421
20422 @item t
20423 the PTS (Presentation TimeStamp) of the filtered video frame,
20424 expressed in seconds, NAN if undefined
20425
20426 @item tb
20427 time base of the input video
20428 @end table
20429
20430
20431 @subsection Examples
20432
20433 @itemize
20434 @item
20435 Apply simple strong vignetting effect:
20436 @example
20437 vignette=PI/4
20438 @end example
20439
20440 @item
20441 Make a flickering vignetting:
20442 @example
20443 vignette='PI/4+random(1)*PI/50':eval=frame
20444 @end example
20445
20446 @end itemize
20447
20448 @section vmafmotion
20449
20450 Obtain the average VMAF motion score of a video.
20451 It is one of the component metrics of VMAF.
20452
20453 The obtained average motion score is printed through the logging system.
20454
20455 The filter accepts the following options:
20456
20457 @table @option
20458 @item stats_file
20459 If specified, the filter will use the named file to save the motion score of
20460 each frame with respect to the previous frame.
20461 When filename equals "-" the data is sent to standard output.
20462 @end table
20463
20464 Example:
20465 @example
20466 ffmpeg -i ref.mpg -vf vmafmotion -f null -
20467 @end example
20468
20469 @section vstack
20470 Stack input videos vertically.
20471
20472 All streams must be of same pixel format and of same width.
20473
20474 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
20475 to create same output.
20476
20477 The filter accepts the following options:
20478
20479 @table @option
20480 @item inputs
20481 Set number of input streams. Default is 2.
20482
20483 @item shortest
20484 If set to 1, force the output to terminate when the shortest input
20485 terminates. Default value is 0.
20486 @end table
20487
20488 @section w3fdif
20489
20490 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
20491 Deinterlacing Filter").
20492
20493 Based on the process described by Martin Weston for BBC R&D, and
20494 implemented based on the de-interlace algorithm written by Jim
20495 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
20496 uses filter coefficients calculated by BBC R&D.
20497
20498 This filter uses field-dominance information in frame to decide which
20499 of each pair of fields to place first in the output.
20500 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
20501
20502 There are two sets of filter coefficients, so called "simple"
20503 and "complex". Which set of filter coefficients is used can
20504 be set by passing an optional parameter:
20505
20506 @table @option
20507 @item filter
20508 Set the interlacing filter coefficients. Accepts one of the following values:
20509
20510 @table @samp
20511 @item simple
20512 Simple filter coefficient set.
20513 @item complex
20514 More-complex filter coefficient set.
20515 @end table
20516 Default value is @samp{complex}.
20517
20518 @item deint
20519 Specify which frames to deinterlace. Accepts one of the following values:
20520
20521 @table @samp
20522 @item all
20523 Deinterlace all frames,
20524 @item interlaced
20525 Only deinterlace frames marked as interlaced.
20526 @end table
20527
20528 Default value is @samp{all}.
20529 @end table
20530
20531 @section waveform
20532 Video waveform monitor.
20533
20534 The waveform monitor plots color component intensity. By default luminance
20535 only. Each column of the waveform corresponds to a column of pixels in the
20536 source video.
20537
20538 It accepts the following options:
20539
20540 @table @option
20541 @item mode, m
20542 Can be either @code{row}, or @code{column}. Default is @code{column}.
20543 In row mode, the graph on the left side represents color component value 0 and
20544 the right side represents value = 255. In column mode, the top side represents
20545 color component value = 0 and bottom side represents value = 255.
20546
20547 @item intensity, i
20548 Set intensity. Smaller values are useful to find out how many values of the same
20549 luminance are distributed across input rows/columns.
20550 Default value is @code{0.04}. Allowed range is [0, 1].
20551
20552 @item mirror, r
20553 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
20554 In mirrored mode, higher values will be represented on the left
20555 side for @code{row} mode and at the top for @code{column} mode. Default is
20556 @code{1} (mirrored).
20557
20558 @item display, d
20559 Set display mode.
20560 It accepts the following values:
20561 @table @samp
20562 @item overlay
20563 Presents information identical to that in the @code{parade}, except
20564 that the graphs representing color components are superimposed directly
20565 over one another.
20566
20567 This display mode makes it easier to spot relative differences or similarities
20568 in overlapping areas of the color components that are supposed to be identical,
20569 such as neutral whites, grays, or blacks.
20570
20571 @item stack
20572 Display separate graph for the color components side by side in
20573 @code{row} mode or one below the other in @code{column} mode.
20574
20575 @item parade
20576 Display separate graph for the color components side by side in
20577 @code{column} mode or one below the other in @code{row} mode.
20578
20579 Using this display mode makes it easy to spot color casts in the highlights
20580 and shadows of an image, by comparing the contours of the top and the bottom
20581 graphs of each waveform. Since whites, grays, and blacks are characterized
20582 by exactly equal amounts of red, green, and blue, neutral areas of the picture
20583 should display three waveforms of roughly equal width/height. If not, the
20584 correction is easy to perform by making level adjustments the three waveforms.
20585 @end table
20586 Default is @code{stack}.
20587
20588 @item components, c
20589 Set which color components to display. Default is 1, which means only luminance
20590 or red color component if input is in RGB colorspace. If is set for example to
20591 7 it will display all 3 (if) available color components.
20592
20593 @item envelope, e
20594 @table @samp
20595 @item none
20596 No envelope, this is default.
20597
20598 @item instant
20599 Instant envelope, minimum and maximum values presented in graph will be easily
20600 visible even with small @code{step} value.
20601
20602 @item peak
20603 Hold minimum and maximum values presented in graph across time. This way you
20604 can still spot out of range values without constantly looking at waveforms.
20605
20606 @item peak+instant
20607 Peak and instant envelope combined together.
20608 @end table
20609
20610 @item filter, f
20611 @table @samp
20612 @item lowpass
20613 No filtering, this is default.
20614
20615 @item flat
20616 Luma and chroma combined together.
20617
20618 @item aflat
20619 Similar as above, but shows difference between blue and red chroma.
20620
20621 @item xflat
20622 Similar as above, but use different colors.
20623
20624 @item yflat
20625 Similar as above, but again with different colors.
20626
20627 @item chroma
20628 Displays only chroma.
20629
20630 @item color
20631 Displays actual color value on waveform.
20632
20633 @item acolor
20634 Similar as above, but with luma showing frequency of chroma values.
20635 @end table
20636
20637 @item graticule, g
20638 Set which graticule to display.
20639
20640 @table @samp
20641 @item none
20642 Do not display graticule.
20643
20644 @item green
20645 Display green graticule showing legal broadcast ranges.
20646
20647 @item orange
20648 Display orange graticule showing legal broadcast ranges.
20649
20650 @item invert
20651 Display invert graticule showing legal broadcast ranges.
20652 @end table
20653
20654 @item opacity, o
20655 Set graticule opacity.
20656
20657 @item flags, fl
20658 Set graticule flags.
20659
20660 @table @samp
20661 @item numbers
20662 Draw numbers above lines. By default enabled.
20663
20664 @item dots
20665 Draw dots instead of lines.
20666 @end table
20667
20668 @item scale, s
20669 Set scale used for displaying graticule.
20670
20671 @table @samp
20672 @item digital
20673 @item millivolts
20674 @item ire
20675 @end table
20676 Default is digital.
20677
20678 @item bgopacity, b
20679 Set background opacity.
20680
20681 @item tint0, t0
20682 @item tint1, t1
20683 Set tint for output.
20684 Only used with lowpass filter and when display is not overlay and input
20685 pixel formats are not RGB.
20686 @end table
20687
20688 @section weave, doubleweave
20689
20690 The @code{weave} takes a field-based video input and join
20691 each two sequential fields into single frame, producing a new double
20692 height clip with half the frame rate and half the frame count.
20693
20694 The @code{doubleweave} works same as @code{weave} but without
20695 halving frame rate and frame count.
20696
20697 It accepts the following option:
20698
20699 @table @option
20700 @item first_field
20701 Set first field. Available values are:
20702
20703 @table @samp
20704 @item top, t
20705 Set the frame as top-field-first.
20706
20707 @item bottom, b
20708 Set the frame as bottom-field-first.
20709 @end table
20710 @end table
20711
20712 @subsection Examples
20713
20714 @itemize
20715 @item
20716 Interlace video using @ref{select} and @ref{separatefields} filter:
20717 @example
20718 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
20719 @end example
20720 @end itemize
20721
20722 @section xbr
20723 Apply the xBR high-quality magnification filter which is designed for pixel
20724 art. It follows a set of edge-detection rules, see
20725 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
20726
20727 It accepts the following option:
20728
20729 @table @option
20730 @item n
20731 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
20732 @code{3xBR} and @code{4} for @code{4xBR}.
20733 Default is @code{3}.
20734 @end table
20735
20736 @section xfade
20737
20738 Apply cross fade from one input video stream to another input video stream.
20739 The cross fade is applied for specified duration.
20740
20741 The filter accepts the following options:
20742
20743 @table @option
20744 @item transition
20745 Set one of available transition effects:
20746
20747 @table @samp
20748 @item custom
20749 @item fade
20750 @item wipeleft
20751 @item wiperight
20752 @item wipeup
20753 @item wipedown
20754 @item slideleft
20755 @item slideright
20756 @item slideup
20757 @item slidedown
20758 @item circlecrop
20759 @item rectcrop
20760 @item distance
20761 @item fadeblack
20762 @item fadewhite
20763 @item radial
20764 @item smoothleft
20765 @item smoothright
20766 @item smoothup
20767 @item smoothdown
20768 @item circleopen
20769 @item circleclose
20770 @item vertopen
20771 @item vertclose
20772 @item horzopen
20773 @item horzclose
20774 @item dissolve
20775 @item pixelize
20776 @item diagtl
20777 @item diagtr
20778 @item diagbl
20779 @item diagbr
20780 @item hlslice
20781 @item hrslice
20782 @item vuslice
20783 @item vdslice
20784 @item hblur
20785 @item fadegrays
20786 @item wipetl
20787 @item wipetr
20788 @item wipebl
20789 @item wipebr
20790 @item squeezeh
20791 @item squeezev
20792 @end table
20793 Default transition effect is fade.
20794
20795 @item duration
20796 Set cross fade duration in seconds.
20797 Default duration is 1 second.
20798
20799 @item offset
20800 Set cross fade start relative to first input stream in seconds.
20801 Default offset is 0.
20802
20803 @item expr
20804 Set expression for custom transition effect.
20805
20806 The expressions can use the following variables and functions:
20807
20808 @table @option
20809 @item X
20810 @item Y
20811 The coordinates of the current sample.
20812
20813 @item W
20814 @item H
20815 The width and height of the image.
20816
20817 @item P
20818 Progress of transition effect.
20819
20820 @item PLANE
20821 Currently processed plane.
20822
20823 @item A
20824 Return value of first input at current location and plane.
20825
20826 @item B
20827 Return value of second input at current location and plane.
20828
20829 @item a0(x, y)
20830 @item a1(x, y)
20831 @item a2(x, y)
20832 @item a3(x, y)
20833 Return the value of the pixel at location (@var{x},@var{y}) of the
20834 first/second/third/fourth component of first input.
20835
20836 @item b0(x, y)
20837 @item b1(x, y)
20838 @item b2(x, y)
20839 @item b3(x, y)
20840 Return the value of the pixel at location (@var{x},@var{y}) of the
20841 first/second/third/fourth component of second input.
20842 @end table
20843 @end table
20844
20845 @subsection Examples
20846
20847 @itemize
20848 @item
20849 Cross fade from one input video to another input video, with fade transition and duration of transition
20850 of 2 seconds starting at offset of 5 seconds:
20851 @example
20852 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
20853 @end example
20854 @end itemize
20855
20856 @section xmedian
20857 Pick median pixels from several input videos.
20858
20859 The filter accepts the following options:
20860
20861 @table @option
20862 @item inputs
20863 Set number of inputs.
20864 Default is 3. Allowed range is from 3 to 255.
20865 If number of inputs is even number, than result will be mean value between two median values.
20866
20867 @item planes
20868 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
20869
20870 @item percentile
20871 Set median percentile. Default value is @code{0.5}.
20872 Default value of @code{0.5} will pick always median values, while @code{0} will pick
20873 minimum values, and @code{1} maximum values.
20874 @end table
20875
20876 @section xstack
20877 Stack video inputs into custom layout.
20878
20879 All streams must be of same pixel format.
20880
20881 The filter accepts the following options:
20882
20883 @table @option
20884 @item inputs
20885 Set number of input streams. Default is 2.
20886
20887 @item layout
20888 Specify layout of inputs.
20889 This option requires the desired layout configuration to be explicitly set by the user.
20890 This sets position of each video input in output. Each input
20891 is separated by '|'.
20892 The first number represents the column, and the second number represents the row.
20893 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
20894 where X is video input from which to take width or height.
20895 Multiple values can be used when separated by '+'. In such
20896 case values are summed together.
20897
20898 Note that if inputs are of different sizes gaps may appear, as not all of
20899 the output video frame will be filled. Similarly, videos can overlap each
20900 other if their position doesn't leave enough space for the full frame of
20901 adjoining videos.
20902
20903 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
20904 a layout must be set by the user.
20905
20906 @item shortest
20907 If set to 1, force the output to terminate when the shortest input
20908 terminates. Default value is 0.
20909
20910 @item fill
20911 If set to valid color, all unused pixels will be filled with that color.
20912 By default fill is set to none, so it is disabled.
20913 @end table
20914
20915 @subsection Examples
20916
20917 @itemize
20918 @item
20919 Display 4 inputs into 2x2 grid.
20920
20921 Layout:
20922 @example
20923 input1(0, 0)  | input3(w0, 0)
20924 input2(0, h0) | input4(w0, h0)
20925 @end example
20926
20927 @example
20928 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
20929 @end example
20930
20931 Note that if inputs are of different sizes, gaps or overlaps may occur.
20932
20933 @item
20934 Display 4 inputs into 1x4 grid.
20935
20936 Layout:
20937 @example
20938 input1(0, 0)
20939 input2(0, h0)
20940 input3(0, h0+h1)
20941 input4(0, h0+h1+h2)
20942 @end example
20943
20944 @example
20945 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
20946 @end example
20947
20948 Note that if inputs are of different widths, unused space will appear.
20949
20950 @item
20951 Display 9 inputs into 3x3 grid.
20952
20953 Layout:
20954 @example
20955 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
20956 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
20957 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
20958 @end example
20959
20960 @example
20961 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
20962 @end example
20963
20964 Note that if inputs are of different sizes, gaps or overlaps may occur.
20965
20966 @item
20967 Display 16 inputs into 4x4 grid.
20968
20969 Layout:
20970 @example
20971 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
20972 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
20973 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
20974 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
20975 @end example
20976
20977 @example
20978 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|
20979 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
20980 @end example
20981
20982 Note that if inputs are of different sizes, gaps or overlaps may occur.
20983
20984 @end itemize
20985
20986 @anchor{yadif}
20987 @section yadif
20988
20989 Deinterlace the input video ("yadif" means "yet another deinterlacing
20990 filter").
20991
20992 It accepts the following parameters:
20993
20994
20995 @table @option
20996
20997 @item mode
20998 The interlacing mode to adopt. It accepts one of the following values:
20999
21000 @table @option
21001 @item 0, send_frame
21002 Output one frame for each frame.
21003 @item 1, send_field
21004 Output one frame for each field.
21005 @item 2, send_frame_nospatial
21006 Like @code{send_frame}, but it skips the spatial interlacing check.
21007 @item 3, send_field_nospatial
21008 Like @code{send_field}, but it skips the spatial interlacing check.
21009 @end table
21010
21011 The default value is @code{send_frame}.
21012
21013 @item parity
21014 The picture field parity assumed for the input interlaced video. It accepts one
21015 of the following values:
21016
21017 @table @option
21018 @item 0, tff
21019 Assume the top field is first.
21020 @item 1, bff
21021 Assume the bottom field is first.
21022 @item -1, auto
21023 Enable automatic detection of field parity.
21024 @end table
21025
21026 The default value is @code{auto}.
21027 If the interlacing is unknown or the decoder does not export this information,
21028 top field first will be assumed.
21029
21030 @item deint
21031 Specify which frames to deinterlace. Accepts one of the following
21032 values:
21033
21034 @table @option
21035 @item 0, all
21036 Deinterlace all frames.
21037 @item 1, interlaced
21038 Only deinterlace frames marked as interlaced.
21039 @end table
21040
21041 The default value is @code{all}.
21042 @end table
21043
21044 @section yadif_cuda
21045
21046 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
21047 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
21048 and/or nvenc.
21049
21050 It accepts the following parameters:
21051
21052
21053 @table @option
21054
21055 @item mode
21056 The interlacing mode to adopt. It accepts one of the following values:
21057
21058 @table @option
21059 @item 0, send_frame
21060 Output one frame for each frame.
21061 @item 1, send_field
21062 Output one frame for each field.
21063 @item 2, send_frame_nospatial
21064 Like @code{send_frame}, but it skips the spatial interlacing check.
21065 @item 3, send_field_nospatial
21066 Like @code{send_field}, but it skips the spatial interlacing check.
21067 @end table
21068
21069 The default value is @code{send_frame}.
21070
21071 @item parity
21072 The picture field parity assumed for the input interlaced video. It accepts one
21073 of the following values:
21074
21075 @table @option
21076 @item 0, tff
21077 Assume the top field is first.
21078 @item 1, bff
21079 Assume the bottom field is first.
21080 @item -1, auto
21081 Enable automatic detection of field parity.
21082 @end table
21083
21084 The default value is @code{auto}.
21085 If the interlacing is unknown or the decoder does not export this information,
21086 top field first will be assumed.
21087
21088 @item deint
21089 Specify which frames to deinterlace. Accepts one of the following
21090 values:
21091
21092 @table @option
21093 @item 0, all
21094 Deinterlace all frames.
21095 @item 1, interlaced
21096 Only deinterlace frames marked as interlaced.
21097 @end table
21098
21099 The default value is @code{all}.
21100 @end table
21101
21102 @section yaepblur
21103
21104 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
21105 The algorithm is described in
21106 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
21107
21108 It accepts the following parameters:
21109
21110 @table @option
21111 @item radius, r
21112 Set the window radius. Default value is 3.
21113
21114 @item planes, p
21115 Set which planes to filter. Default is only the first plane.
21116
21117 @item sigma, s
21118 Set blur strength. Default value is 128.
21119 @end table
21120
21121 @subsection Commands
21122 This filter supports same @ref{commands} as options.
21123
21124 @section zoompan
21125
21126 Apply Zoom & Pan effect.
21127
21128 This filter accepts the following options:
21129
21130 @table @option
21131 @item zoom, z
21132 Set the zoom expression. Range is 1-10. Default is 1.
21133
21134 @item x
21135 @item y
21136 Set the x and y expression. Default is 0.
21137
21138 @item d
21139 Set the duration expression in number of frames.
21140 This sets for how many number of frames effect will last for
21141 single input image.
21142
21143 @item s
21144 Set the output image size, default is 'hd720'.
21145
21146 @item fps
21147 Set the output frame rate, default is '25'.
21148 @end table
21149
21150 Each expression can contain the following constants:
21151
21152 @table @option
21153 @item in_w, iw
21154 Input width.
21155
21156 @item in_h, ih
21157 Input height.
21158
21159 @item out_w, ow
21160 Output width.
21161
21162 @item out_h, oh
21163 Output height.
21164
21165 @item in
21166 Input frame count.
21167
21168 @item on
21169 Output frame count.
21170
21171 @item in_time, it
21172 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
21173
21174 @item out_time, time, ot
21175 The output timestamp expressed in seconds.
21176
21177 @item x
21178 @item y
21179 Last calculated 'x' and 'y' position from 'x' and 'y' expression
21180 for current input frame.
21181
21182 @item px
21183 @item py
21184 'x' and 'y' of last output frame of previous input frame or 0 when there was
21185 not yet such frame (first input frame).
21186
21187 @item zoom
21188 Last calculated zoom from 'z' expression for current input frame.
21189
21190 @item pzoom
21191 Last calculated zoom of last output frame of previous input frame.
21192
21193 @item duration
21194 Number of output frames for current input frame. Calculated from 'd' expression
21195 for each input frame.
21196
21197 @item pduration
21198 number of output frames created for previous input frame
21199
21200 @item a
21201 Rational number: input width / input height
21202
21203 @item sar
21204 sample aspect ratio
21205
21206 @item dar
21207 display aspect ratio
21208
21209 @end table
21210
21211 @subsection Examples
21212
21213 @itemize
21214 @item
21215 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
21216 @example
21217 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
21218 @end example
21219
21220 @item
21221 Zoom in up to 1.5x and pan always at center of picture:
21222 @example
21223 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21224 @end example
21225
21226 @item
21227 Same as above but without pausing:
21228 @example
21229 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21230 @end example
21231
21232 @item
21233 Zoom in 2x into center of picture only for the first second of the input video:
21234 @example
21235 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21236 @end example
21237
21238 @end itemize
21239
21240 @anchor{zscale}
21241 @section zscale
21242 Scale (resize) the input video, using the z.lib library:
21243 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
21244 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
21245
21246 The zscale filter forces the output display aspect ratio to be the same
21247 as the input, by changing the output sample aspect ratio.
21248
21249 If the input image format is different from the format requested by
21250 the next filter, the zscale filter will convert the input to the
21251 requested format.
21252
21253 @subsection Options
21254 The filter accepts the following options.
21255
21256 @table @option
21257 @item width, w
21258 @item height, h
21259 Set the output video dimension expression. Default value is the input
21260 dimension.
21261
21262 If the @var{width} or @var{w} value is 0, the input width is used for
21263 the output. If the @var{height} or @var{h} value is 0, the input height
21264 is used for the output.
21265
21266 If one and only one of the values is -n with n >= 1, the zscale filter
21267 will use a value that maintains the aspect ratio of the input image,
21268 calculated from the other specified dimension. After that it will,
21269 however, make sure that the calculated dimension is divisible by n and
21270 adjust the value if necessary.
21271
21272 If both values are -n with n >= 1, the behavior will be identical to
21273 both values being set to 0 as previously detailed.
21274
21275 See below for the list of accepted constants for use in the dimension
21276 expression.
21277
21278 @item size, s
21279 Set the video size. For the syntax of this option, check the
21280 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21281
21282 @item dither, d
21283 Set the dither type.
21284
21285 Possible values are:
21286 @table @var
21287 @item none
21288 @item ordered
21289 @item random
21290 @item error_diffusion
21291 @end table
21292
21293 Default is none.
21294
21295 @item filter, f
21296 Set the resize filter type.
21297
21298 Possible values are:
21299 @table @var
21300 @item point
21301 @item bilinear
21302 @item bicubic
21303 @item spline16
21304 @item spline36
21305 @item lanczos
21306 @end table
21307
21308 Default is bilinear.
21309
21310 @item range, r
21311 Set the color range.
21312
21313 Possible values are:
21314 @table @var
21315 @item input
21316 @item limited
21317 @item full
21318 @end table
21319
21320 Default is same as input.
21321
21322 @item primaries, p
21323 Set the color primaries.
21324
21325 Possible values are:
21326 @table @var
21327 @item input
21328 @item 709
21329 @item unspecified
21330 @item 170m
21331 @item 240m
21332 @item 2020
21333 @end table
21334
21335 Default is same as input.
21336
21337 @item transfer, t
21338 Set the transfer characteristics.
21339
21340 Possible values are:
21341 @table @var
21342 @item input
21343 @item 709
21344 @item unspecified
21345 @item 601
21346 @item linear
21347 @item 2020_10
21348 @item 2020_12
21349 @item smpte2084
21350 @item iec61966-2-1
21351 @item arib-std-b67
21352 @end table
21353
21354 Default is same as input.
21355
21356 @item matrix, m
21357 Set the colorspace matrix.
21358
21359 Possible value are:
21360 @table @var
21361 @item input
21362 @item 709
21363 @item unspecified
21364 @item 470bg
21365 @item 170m
21366 @item 2020_ncl
21367 @item 2020_cl
21368 @end table
21369
21370 Default is same as input.
21371
21372 @item rangein, rin
21373 Set the input color range.
21374
21375 Possible values are:
21376 @table @var
21377 @item input
21378 @item limited
21379 @item full
21380 @end table
21381
21382 Default is same as input.
21383
21384 @item primariesin, pin
21385 Set the input color primaries.
21386
21387 Possible values are:
21388 @table @var
21389 @item input
21390 @item 709
21391 @item unspecified
21392 @item 170m
21393 @item 240m
21394 @item 2020
21395 @end table
21396
21397 Default is same as input.
21398
21399 @item transferin, tin
21400 Set the input transfer characteristics.
21401
21402 Possible values are:
21403 @table @var
21404 @item input
21405 @item 709
21406 @item unspecified
21407 @item 601
21408 @item linear
21409 @item 2020_10
21410 @item 2020_12
21411 @end table
21412
21413 Default is same as input.
21414
21415 @item matrixin, min
21416 Set the input colorspace matrix.
21417
21418 Possible value are:
21419 @table @var
21420 @item input
21421 @item 709
21422 @item unspecified
21423 @item 470bg
21424 @item 170m
21425 @item 2020_ncl
21426 @item 2020_cl
21427 @end table
21428
21429 @item chromal, c
21430 Set the output chroma location.
21431
21432 Possible values are:
21433 @table @var
21434 @item input
21435 @item left
21436 @item center
21437 @item topleft
21438 @item top
21439 @item bottomleft
21440 @item bottom
21441 @end table
21442
21443 @item chromalin, cin
21444 Set the input chroma location.
21445
21446 Possible values are:
21447 @table @var
21448 @item input
21449 @item left
21450 @item center
21451 @item topleft
21452 @item top
21453 @item bottomleft
21454 @item bottom
21455 @end table
21456
21457 @item npl
21458 Set the nominal peak luminance.
21459 @end table
21460
21461 The values of the @option{w} and @option{h} options are expressions
21462 containing the following constants:
21463
21464 @table @var
21465 @item in_w
21466 @item in_h
21467 The input width and height
21468
21469 @item iw
21470 @item ih
21471 These are the same as @var{in_w} and @var{in_h}.
21472
21473 @item out_w
21474 @item out_h
21475 The output (scaled) width and height
21476
21477 @item ow
21478 @item oh
21479 These are the same as @var{out_w} and @var{out_h}
21480
21481 @item a
21482 The same as @var{iw} / @var{ih}
21483
21484 @item sar
21485 input sample aspect ratio
21486
21487 @item dar
21488 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
21489
21490 @item hsub
21491 @item vsub
21492 horizontal and vertical input chroma subsample values. For example for the
21493 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
21494
21495 @item ohsub
21496 @item ovsub
21497 horizontal and vertical output chroma subsample values. For example for the
21498 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
21499 @end table
21500
21501 @subsection Commands
21502
21503 This filter supports the following commands:
21504 @table @option
21505 @item width, w
21506 @item height, h
21507 Set the output video dimension expression.
21508 The command accepts the same syntax of the corresponding option.
21509
21510 If the specified expression is not valid, it is kept at its current
21511 value.
21512 @end table
21513
21514 @c man end VIDEO FILTERS
21515
21516 @chapter OpenCL Video Filters
21517 @c man begin OPENCL VIDEO FILTERS
21518
21519 Below is a description of the currently available OpenCL video filters.
21520
21521 To enable compilation of these filters you need to configure FFmpeg with
21522 @code{--enable-opencl}.
21523
21524 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
21525 @table @option
21526
21527 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
21528 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
21529 given device parameters.
21530
21531 @item -filter_hw_device @var{name}
21532 Pass the hardware device called @var{name} to all filters in any filter graph.
21533
21534 @end table
21535
21536 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
21537
21538 @itemize
21539 @item
21540 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
21541 @example
21542 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
21543 @end example
21544 @end itemize
21545
21546 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.
21547
21548 @section avgblur_opencl
21549
21550 Apply average blur filter.
21551
21552 The filter accepts the following options:
21553
21554 @table @option
21555 @item sizeX
21556 Set horizontal radius size.
21557 Range is @code{[1, 1024]} and default value is @code{1}.
21558
21559 @item planes
21560 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21561
21562 @item sizeY
21563 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
21564 @end table
21565
21566 @subsection Example
21567
21568 @itemize
21569 @item
21570 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.
21571 @example
21572 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
21573 @end example
21574 @end itemize
21575
21576 @section boxblur_opencl
21577
21578 Apply a boxblur algorithm to the input video.
21579
21580 It accepts the following parameters:
21581
21582 @table @option
21583
21584 @item luma_radius, lr
21585 @item luma_power, lp
21586 @item chroma_radius, cr
21587 @item chroma_power, cp
21588 @item alpha_radius, ar
21589 @item alpha_power, ap
21590
21591 @end table
21592
21593 A description of the accepted options follows.
21594
21595 @table @option
21596 @item luma_radius, lr
21597 @item chroma_radius, cr
21598 @item alpha_radius, ar
21599 Set an expression for the box radius in pixels used for blurring the
21600 corresponding input plane.
21601
21602 The radius value must be a non-negative number, and must not be
21603 greater than the value of the expression @code{min(w,h)/2} for the
21604 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
21605 planes.
21606
21607 Default value for @option{luma_radius} is "2". If not specified,
21608 @option{chroma_radius} and @option{alpha_radius} default to the
21609 corresponding value set for @option{luma_radius}.
21610
21611 The expressions can contain the following constants:
21612 @table @option
21613 @item w
21614 @item h
21615 The input width and height in pixels.
21616
21617 @item cw
21618 @item ch
21619 The input chroma image width and height in pixels.
21620
21621 @item hsub
21622 @item vsub
21623 The horizontal and vertical chroma subsample values. For example, for the
21624 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
21625 @end table
21626
21627 @item luma_power, lp
21628 @item chroma_power, cp
21629 @item alpha_power, ap
21630 Specify how many times the boxblur filter is applied to the
21631 corresponding plane.
21632
21633 Default value for @option{luma_power} is 2. If not specified,
21634 @option{chroma_power} and @option{alpha_power} default to the
21635 corresponding value set for @option{luma_power}.
21636
21637 A value of 0 will disable the effect.
21638 @end table
21639
21640 @subsection Examples
21641
21642 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.
21643
21644 @itemize
21645 @item
21646 Apply a boxblur filter with the luma, chroma, and alpha radius
21647 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.
21648 @example
21649 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
21650 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
21651 @end example
21652
21653 @item
21654 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.
21655
21656 For the luma plane, a 2x2 box radius will be run once.
21657
21658 For the chroma plane, a 4x4 box radius will be run 5 times.
21659
21660 For the alpha plane, a 3x3 box radius will be run 7 times.
21661 @example
21662 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
21663 @end example
21664 @end itemize
21665
21666 @section colorkey_opencl
21667 RGB colorspace color keying.
21668
21669 The filter accepts the following options:
21670
21671 @table @option
21672 @item color
21673 The color which will be replaced with transparency.
21674
21675 @item similarity
21676 Similarity percentage with the key color.
21677
21678 0.01 matches only the exact key color, while 1.0 matches everything.
21679
21680 @item blend
21681 Blend percentage.
21682
21683 0.0 makes pixels either fully transparent, or not transparent at all.
21684
21685 Higher values result in semi-transparent pixels, with a higher transparency
21686 the more similar the pixels color is to the key color.
21687 @end table
21688
21689 @subsection Examples
21690
21691 @itemize
21692 @item
21693 Make every semi-green pixel in the input transparent with some slight blending:
21694 @example
21695 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
21696 @end example
21697 @end itemize
21698
21699 @section convolution_opencl
21700
21701 Apply convolution of 3x3, 5x5, 7x7 matrix.
21702
21703 The filter accepts the following options:
21704
21705 @table @option
21706 @item 0m
21707 @item 1m
21708 @item 2m
21709 @item 3m
21710 Set matrix for each plane.
21711 Matrix is sequence of 9, 25 or 49 signed numbers.
21712 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
21713
21714 @item 0rdiv
21715 @item 1rdiv
21716 @item 2rdiv
21717 @item 3rdiv
21718 Set multiplier for calculated value for each plane.
21719 If unset or 0, it will be sum of all matrix elements.
21720 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
21721
21722 @item 0bias
21723 @item 1bias
21724 @item 2bias
21725 @item 3bias
21726 Set bias for each plane. This value is added to the result of the multiplication.
21727 Useful for making the overall image brighter or darker.
21728 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
21729
21730 @end table
21731
21732 @subsection Examples
21733
21734 @itemize
21735 @item
21736 Apply sharpen:
21737 @example
21738 -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
21739 @end example
21740
21741 @item
21742 Apply blur:
21743 @example
21744 -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
21745 @end example
21746
21747 @item
21748 Apply edge enhance:
21749 @example
21750 -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
21751 @end example
21752
21753 @item
21754 Apply edge detect:
21755 @example
21756 -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
21757 @end example
21758
21759 @item
21760 Apply laplacian edge detector which includes diagonals:
21761 @example
21762 -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
21763 @end example
21764
21765 @item
21766 Apply emboss:
21767 @example
21768 -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
21769 @end example
21770 @end itemize
21771
21772 @section erosion_opencl
21773
21774 Apply erosion effect to the video.
21775
21776 This filter replaces the pixel by the local(3x3) minimum.
21777
21778 It accepts the following options:
21779
21780 @table @option
21781 @item threshold0
21782 @item threshold1
21783 @item threshold2
21784 @item threshold3
21785 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21786 If @code{0}, plane will remain unchanged.
21787
21788 @item coordinates
21789 Flag which specifies the pixel to refer to.
21790 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21791
21792 Flags to local 3x3 coordinates region centered on @code{x}:
21793
21794     1 2 3
21795
21796     4 x 5
21797
21798     6 7 8
21799 @end table
21800
21801 @subsection Example
21802
21803 @itemize
21804 @item
21805 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.
21806 @example
21807 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21808 @end example
21809 @end itemize
21810
21811 @section deshake_opencl
21812 Feature-point based video stabilization filter.
21813
21814 The filter accepts the following options:
21815
21816 @table @option
21817 @item tripod
21818 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
21819
21820 @item debug
21821 Whether or not additional debug info should be displayed, both in the processed output and in the console.
21822
21823 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
21824
21825 Viewing point matches in the output video is only supported for RGB input.
21826
21827 Defaults to @code{0}.
21828
21829 @item adaptive_crop
21830 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
21831
21832 Defaults to @code{1}.
21833
21834 @item refine_features
21835 Whether or not feature points should be refined at a sub-pixel level.
21836
21837 This can be turned off for a slight performance gain at the cost of precision.
21838
21839 Defaults to @code{1}.
21840
21841 @item smooth_strength
21842 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
21843
21844 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
21845
21846 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
21847
21848 Defaults to @code{0.0}.
21849
21850 @item smooth_window_multiplier
21851 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
21852
21853 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
21854
21855 Acceptable values range from @code{0.1} to @code{10.0}.
21856
21857 Larger values increase the amount of motion data available for determining how to smooth the camera path,
21858 potentially improving smoothness, but also increase latency and memory usage.
21859
21860 Defaults to @code{2.0}.
21861
21862 @end table
21863
21864 @subsection Examples
21865
21866 @itemize
21867 @item
21868 Stabilize a video with a fixed, medium smoothing strength:
21869 @example
21870 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
21871 @end example
21872
21873 @item
21874 Stabilize a video with debugging (both in console and in rendered video):
21875 @example
21876 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
21877 @end example
21878 @end itemize
21879
21880 @section dilation_opencl
21881
21882 Apply dilation effect to the video.
21883
21884 This filter replaces the pixel by the local(3x3) maximum.
21885
21886 It accepts the following options:
21887
21888 @table @option
21889 @item threshold0
21890 @item threshold1
21891 @item threshold2
21892 @item threshold3
21893 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21894 If @code{0}, plane will remain unchanged.
21895
21896 @item coordinates
21897 Flag which specifies the pixel to refer to.
21898 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21899
21900 Flags to local 3x3 coordinates region centered on @code{x}:
21901
21902     1 2 3
21903
21904     4 x 5
21905
21906     6 7 8
21907 @end table
21908
21909 @subsection Example
21910
21911 @itemize
21912 @item
21913 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.
21914 @example
21915 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21916 @end example
21917 @end itemize
21918
21919 @section nlmeans_opencl
21920
21921 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
21922
21923 @section overlay_opencl
21924
21925 Overlay one video on top of another.
21926
21927 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
21928 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
21929
21930 The filter accepts the following options:
21931
21932 @table @option
21933
21934 @item x
21935 Set the x coordinate of the overlaid video on the main video.
21936 Default value is @code{0}.
21937
21938 @item y
21939 Set the y coordinate of the overlaid video on the main video.
21940 Default value is @code{0}.
21941
21942 @end table
21943
21944 @subsection Examples
21945
21946 @itemize
21947 @item
21948 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
21949 @example
21950 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21951 @end example
21952 @item
21953 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
21954 @example
21955 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21956 @end example
21957
21958 @end itemize
21959
21960 @section pad_opencl
21961
21962 Add paddings to the input image, and place the original input at the
21963 provided @var{x}, @var{y} coordinates.
21964
21965 It accepts the following options:
21966
21967 @table @option
21968 @item width, w
21969 @item height, h
21970 Specify an expression for the size of the output image with the
21971 paddings added. If the value for @var{width} or @var{height} is 0, the
21972 corresponding input size is used for the output.
21973
21974 The @var{width} expression can reference the value set by the
21975 @var{height} expression, and vice versa.
21976
21977 The default value of @var{width} and @var{height} is 0.
21978
21979 @item x
21980 @item y
21981 Specify the offsets to place the input image at within the padded area,
21982 with respect to the top/left border of the output image.
21983
21984 The @var{x} expression can reference the value set by the @var{y}
21985 expression, and vice versa.
21986
21987 The default value of @var{x} and @var{y} is 0.
21988
21989 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
21990 so the input image is centered on the padded area.
21991
21992 @item color
21993 Specify the color of the padded area. For the syntax of this option,
21994 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
21995 manual,ffmpeg-utils}.
21996
21997 @item aspect
21998 Pad to an aspect instead to a resolution.
21999 @end table
22000
22001 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
22002 options are expressions containing the following constants:
22003
22004 @table @option
22005 @item in_w
22006 @item in_h
22007 The input video width and height.
22008
22009 @item iw
22010 @item ih
22011 These are the same as @var{in_w} and @var{in_h}.
22012
22013 @item out_w
22014 @item out_h
22015 The output width and height (the size of the padded area), as
22016 specified by the @var{width} and @var{height} expressions.
22017
22018 @item ow
22019 @item oh
22020 These are the same as @var{out_w} and @var{out_h}.
22021
22022 @item x
22023 @item y
22024 The x and y offsets as specified by the @var{x} and @var{y}
22025 expressions, or NAN if not yet specified.
22026
22027 @item a
22028 same as @var{iw} / @var{ih}
22029
22030 @item sar
22031 input sample aspect ratio
22032
22033 @item dar
22034 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
22035 @end table
22036
22037 @section prewitt_opencl
22038
22039 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
22040
22041 The filter accepts the following option:
22042
22043 @table @option
22044 @item planes
22045 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22046
22047 @item scale
22048 Set value which will be multiplied with filtered result.
22049 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22050
22051 @item delta
22052 Set value which will be added to filtered result.
22053 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22054 @end table
22055
22056 @subsection Example
22057
22058 @itemize
22059 @item
22060 Apply the Prewitt operator with scale set to 2 and delta set to 10.
22061 @example
22062 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
22063 @end example
22064 @end itemize
22065
22066 @anchor{program_opencl}
22067 @section program_opencl
22068
22069 Filter video using an OpenCL program.
22070
22071 @table @option
22072
22073 @item source
22074 OpenCL program source file.
22075
22076 @item kernel
22077 Kernel name in program.
22078
22079 @item inputs
22080 Number of inputs to the filter.  Defaults to 1.
22081
22082 @item size, s
22083 Size of output frames.  Defaults to the same as the first input.
22084
22085 @end table
22086
22087 The @code{program_opencl} filter also supports the @ref{framesync} options.
22088
22089 The program source file must contain a kernel function with the given name,
22090 which will be run once for each plane of the output.  Each run on a plane
22091 gets enqueued as a separate 2D global NDRange with one work-item for each
22092 pixel to be generated.  The global ID offset for each work-item is therefore
22093 the coordinates of a pixel in the destination image.
22094
22095 The kernel function needs to take the following arguments:
22096 @itemize
22097 @item
22098 Destination image, @var{__write_only image2d_t}.
22099
22100 This image will become the output; the kernel should write all of it.
22101 @item
22102 Frame index, @var{unsigned int}.
22103
22104 This is a counter starting from zero and increasing by one for each frame.
22105 @item
22106 Source images, @var{__read_only image2d_t}.
22107
22108 These are the most recent images on each input.  The kernel may read from
22109 them to generate the output, but they can't be written to.
22110 @end itemize
22111
22112 Example programs:
22113
22114 @itemize
22115 @item
22116 Copy the input to the output (output must be the same size as the input).
22117 @verbatim
22118 __kernel void copy(__write_only image2d_t destination,
22119                    unsigned int index,
22120                    __read_only  image2d_t source)
22121 {
22122     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
22123
22124     int2 location = (int2)(get_global_id(0), get_global_id(1));
22125
22126     float4 value = read_imagef(source, sampler, location);
22127
22128     write_imagef(destination, location, value);
22129 }
22130 @end verbatim
22131
22132 @item
22133 Apply a simple transformation, rotating the input by an amount increasing
22134 with the index counter.  Pixel values are linearly interpolated by the
22135 sampler, and the output need not have the same dimensions as the input.
22136 @verbatim
22137 __kernel void rotate_image(__write_only image2d_t dst,
22138                            unsigned int index,
22139                            __read_only  image2d_t src)
22140 {
22141     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22142                                CLK_FILTER_LINEAR);
22143
22144     float angle = (float)index / 100.0f;
22145
22146     float2 dst_dim = convert_float2(get_image_dim(dst));
22147     float2 src_dim = convert_float2(get_image_dim(src));
22148
22149     float2 dst_cen = dst_dim / 2.0f;
22150     float2 src_cen = src_dim / 2.0f;
22151
22152     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
22153
22154     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
22155     float2 src_pos = {
22156         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
22157         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
22158     };
22159     src_pos = src_pos * src_dim / dst_dim;
22160
22161     float2 src_loc = src_pos + src_cen;
22162
22163     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
22164         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
22165         write_imagef(dst, dst_loc, 0.5f);
22166     else
22167         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
22168 }
22169 @end verbatim
22170
22171 @item
22172 Blend two inputs together, with the amount of each input used varying
22173 with the index counter.
22174 @verbatim
22175 __kernel void blend_images(__write_only image2d_t dst,
22176                            unsigned int index,
22177                            __read_only  image2d_t src1,
22178                            __read_only  image2d_t src2)
22179 {
22180     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22181                                CLK_FILTER_LINEAR);
22182
22183     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
22184
22185     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
22186     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
22187     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
22188
22189     float4 val1 = read_imagef(src1, sampler, src1_loc);
22190     float4 val2 = read_imagef(src2, sampler, src2_loc);
22191
22192     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
22193 }
22194 @end verbatim
22195
22196 @end itemize
22197
22198 @section roberts_opencl
22199 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
22200
22201 The filter accepts the following option:
22202
22203 @table @option
22204 @item planes
22205 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22206
22207 @item scale
22208 Set value which will be multiplied with filtered result.
22209 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22210
22211 @item delta
22212 Set value which will be added to filtered result.
22213 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22214 @end table
22215
22216 @subsection Example
22217
22218 @itemize
22219 @item
22220 Apply the Roberts cross operator with scale set to 2 and delta set to 10
22221 @example
22222 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
22223 @end example
22224 @end itemize
22225
22226 @section sobel_opencl
22227
22228 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
22229
22230 The filter accepts the following option:
22231
22232 @table @option
22233 @item planes
22234 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22235
22236 @item scale
22237 Set value which will be multiplied with filtered result.
22238 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22239
22240 @item delta
22241 Set value which will be added to filtered result.
22242 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22243 @end table
22244
22245 @subsection Example
22246
22247 @itemize
22248 @item
22249 Apply sobel operator with scale set to 2 and delta set to 10
22250 @example
22251 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
22252 @end example
22253 @end itemize
22254
22255 @section tonemap_opencl
22256
22257 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
22258
22259 It accepts the following parameters:
22260
22261 @table @option
22262 @item tonemap
22263 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
22264
22265 @item param
22266 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
22267
22268 @item desat
22269 Apply desaturation for highlights that exceed this level of brightness. The
22270 higher the parameter, the more color information will be preserved. This
22271 setting helps prevent unnaturally blown-out colors for super-highlights, by
22272 (smoothly) turning into white instead. This makes images feel more natural,
22273 at the cost of reducing information about out-of-range colors.
22274
22275 The default value is 0.5, and the algorithm here is a little different from
22276 the cpu version tonemap currently. A setting of 0.0 disables this option.
22277
22278 @item threshold
22279 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
22280 is used to detect whether the scene has changed or not. If the distance between
22281 the current frame average brightness and the current running average exceeds
22282 a threshold value, we would re-calculate scene average and peak brightness.
22283 The default value is 0.2.
22284
22285 @item format
22286 Specify the output pixel format.
22287
22288 Currently supported formats are:
22289 @table @var
22290 @item p010
22291 @item nv12
22292 @end table
22293
22294 @item range, r
22295 Set the output color range.
22296
22297 Possible values are:
22298 @table @var
22299 @item tv/mpeg
22300 @item pc/jpeg
22301 @end table
22302
22303 Default is same as input.
22304
22305 @item primaries, p
22306 Set the output color primaries.
22307
22308 Possible values are:
22309 @table @var
22310 @item bt709
22311 @item bt2020
22312 @end table
22313
22314 Default is same as input.
22315
22316 @item transfer, t
22317 Set the output transfer characteristics.
22318
22319 Possible values are:
22320 @table @var
22321 @item bt709
22322 @item bt2020
22323 @end table
22324
22325 Default is bt709.
22326
22327 @item matrix, m
22328 Set the output colorspace matrix.
22329
22330 Possible value are:
22331 @table @var
22332 @item bt709
22333 @item bt2020
22334 @end table
22335
22336 Default is same as input.
22337
22338 @end table
22339
22340 @subsection Example
22341
22342 @itemize
22343 @item
22344 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
22345 @example
22346 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
22347 @end example
22348 @end itemize
22349
22350 @section unsharp_opencl
22351
22352 Sharpen or blur the input video.
22353
22354 It accepts the following parameters:
22355
22356 @table @option
22357 @item luma_msize_x, lx
22358 Set the luma matrix horizontal size.
22359 Range is @code{[1, 23]} and default value is @code{5}.
22360
22361 @item luma_msize_y, ly
22362 Set the luma matrix vertical size.
22363 Range is @code{[1, 23]} and default value is @code{5}.
22364
22365 @item luma_amount, la
22366 Set the luma effect strength.
22367 Range is @code{[-10, 10]} and default value is @code{1.0}.
22368
22369 Negative values will blur the input video, while positive values will
22370 sharpen it, a value of zero will disable the effect.
22371
22372 @item chroma_msize_x, cx
22373 Set the chroma matrix horizontal size.
22374 Range is @code{[1, 23]} and default value is @code{5}.
22375
22376 @item chroma_msize_y, cy
22377 Set the chroma matrix vertical size.
22378 Range is @code{[1, 23]} and default value is @code{5}.
22379
22380 @item chroma_amount, ca
22381 Set the chroma effect strength.
22382 Range is @code{[-10, 10]} and default value is @code{0.0}.
22383
22384 Negative values will blur the input video, while positive values will
22385 sharpen it, a value of zero will disable the effect.
22386
22387 @end table
22388
22389 All parameters are optional and default to the equivalent of the
22390 string '5:5:1.0:5:5:0.0'.
22391
22392 @subsection Examples
22393
22394 @itemize
22395 @item
22396 Apply strong luma sharpen effect:
22397 @example
22398 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
22399 @end example
22400
22401 @item
22402 Apply a strong blur of both luma and chroma parameters:
22403 @example
22404 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
22405 @end example
22406 @end itemize
22407
22408 @section xfade_opencl
22409
22410 Cross fade two videos with custom transition effect by using OpenCL.
22411
22412 It accepts the following options:
22413
22414 @table @option
22415 @item transition
22416 Set one of possible transition effects.
22417
22418 @table @option
22419 @item custom
22420 Select custom transition effect, the actual transition description
22421 will be picked from source and kernel options.
22422
22423 @item fade
22424 @item wipeleft
22425 @item wiperight
22426 @item wipeup
22427 @item wipedown
22428 @item slideleft
22429 @item slideright
22430 @item slideup
22431 @item slidedown
22432
22433 Default transition is fade.
22434 @end table
22435
22436 @item source
22437 OpenCL program source file for custom transition.
22438
22439 @item kernel
22440 Set name of kernel to use for custom transition from program source file.
22441
22442 @item duration
22443 Set duration of video transition.
22444
22445 @item offset
22446 Set time of start of transition relative to first video.
22447 @end table
22448
22449 The program source file must contain a kernel function with the given name,
22450 which will be run once for each plane of the output.  Each run on a plane
22451 gets enqueued as a separate 2D global NDRange with one work-item for each
22452 pixel to be generated.  The global ID offset for each work-item is therefore
22453 the coordinates of a pixel in the destination image.
22454
22455 The kernel function needs to take the following arguments:
22456 @itemize
22457 @item
22458 Destination image, @var{__write_only image2d_t}.
22459
22460 This image will become the output; the kernel should write all of it.
22461
22462 @item
22463 First Source image, @var{__read_only image2d_t}.
22464 Second Source image, @var{__read_only image2d_t}.
22465
22466 These are the most recent images on each input.  The kernel may read from
22467 them to generate the output, but they can't be written to.
22468
22469 @item
22470 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
22471 @end itemize
22472
22473 Example programs:
22474
22475 @itemize
22476 @item
22477 Apply dots curtain transition effect:
22478 @verbatim
22479 __kernel void blend_images(__write_only image2d_t dst,
22480                            __read_only  image2d_t src1,
22481                            __read_only  image2d_t src2,
22482                            float progress)
22483 {
22484     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22485                                CLK_FILTER_LINEAR);
22486     int2  p = (int2)(get_global_id(0), get_global_id(1));
22487     float2 rp = (float2)(get_global_id(0), get_global_id(1));
22488     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
22489     rp = rp / dim;
22490
22491     float2 dots = (float2)(20.0, 20.0);
22492     float2 center = (float2)(0,0);
22493     float2 unused;
22494
22495     float4 val1 = read_imagef(src1, sampler, p);
22496     float4 val2 = read_imagef(src2, sampler, p);
22497     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
22498
22499     write_imagef(dst, p, next ? val1 : val2);
22500 }
22501 @end verbatim
22502
22503 @end itemize
22504
22505 @c man end OPENCL VIDEO FILTERS
22506
22507 @chapter VAAPI Video Filters
22508 @c man begin VAAPI VIDEO FILTERS
22509
22510 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
22511
22512 To enable compilation of these filters you need to configure FFmpeg with
22513 @code{--enable-vaapi}.
22514
22515 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}
22516
22517 @section tonemap_vaapi
22518
22519 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
22520 It maps the dynamic range of HDR10 content to the SDR content.
22521 It currently only accepts HDR10 as input.
22522
22523 It accepts the following parameters:
22524
22525 @table @option
22526 @item format
22527 Specify the output pixel format.
22528
22529 Currently supported formats are:
22530 @table @var
22531 @item p010
22532 @item nv12
22533 @end table
22534
22535 Default is nv12.
22536
22537 @item primaries, p
22538 Set the output color primaries.
22539
22540 Default is same as input.
22541
22542 @item transfer, t
22543 Set the output transfer characteristics.
22544
22545 Default is bt709.
22546
22547 @item matrix, m
22548 Set the output colorspace matrix.
22549
22550 Default is same as input.
22551
22552 @end table
22553
22554 @subsection Example
22555
22556 @itemize
22557 @item
22558 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
22559 @example
22560 tonemap_vaapi=format=p010:t=bt2020-10
22561 @end example
22562 @end itemize
22563
22564 @c man end VAAPI VIDEO FILTERS
22565
22566 @chapter Video Sources
22567 @c man begin VIDEO SOURCES
22568
22569 Below is a description of the currently available video sources.
22570
22571 @section buffer
22572
22573 Buffer video frames, and make them available to the filter chain.
22574
22575 This source is mainly intended for a programmatic use, in particular
22576 through the interface defined in @file{libavfilter/buffersrc.h}.
22577
22578 It accepts the following parameters:
22579
22580 @table @option
22581
22582 @item video_size
22583 Specify the size (width and height) of the buffered video frames. For the
22584 syntax of this option, check the
22585 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22586
22587 @item width
22588 The input video width.
22589
22590 @item height
22591 The input video height.
22592
22593 @item pix_fmt
22594 A string representing the pixel format of the buffered video frames.
22595 It may be a number corresponding to a pixel format, or a pixel format
22596 name.
22597
22598 @item time_base
22599 Specify the timebase assumed by the timestamps of the buffered frames.
22600
22601 @item frame_rate
22602 Specify the frame rate expected for the video stream.
22603
22604 @item pixel_aspect, sar
22605 The sample (pixel) aspect ratio of the input video.
22606
22607 @item sws_param
22608 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
22609 to the filtergraph description to specify swscale flags for automatically
22610 inserted scalers. See @ref{Filtergraph syntax}.
22611
22612 @item hw_frames_ctx
22613 When using a hardware pixel format, this should be a reference to an
22614 AVHWFramesContext describing input frames.
22615 @end table
22616
22617 For example:
22618 @example
22619 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
22620 @end example
22621
22622 will instruct the source to accept video frames with size 320x240 and
22623 with format "yuv410p", assuming 1/24 as the timestamps timebase and
22624 square pixels (1:1 sample aspect ratio).
22625 Since the pixel format with name "yuv410p" corresponds to the number 6
22626 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
22627 this example corresponds to:
22628 @example
22629 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
22630 @end example
22631
22632 Alternatively, the options can be specified as a flat string, but this
22633 syntax is deprecated:
22634
22635 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
22636
22637 @section cellauto
22638
22639 Create a pattern generated by an elementary cellular automaton.
22640
22641 The initial state of the cellular automaton can be defined through the
22642 @option{filename} and @option{pattern} options. If such options are
22643 not specified an initial state is created randomly.
22644
22645 At each new frame a new row in the video is filled with the result of
22646 the cellular automaton next generation. The behavior when the whole
22647 frame is filled is defined by the @option{scroll} option.
22648
22649 This source accepts the following options:
22650
22651 @table @option
22652 @item filename, f
22653 Read the initial cellular automaton state, i.e. the starting row, from
22654 the specified file.
22655 In the file, each non-whitespace character is considered an alive
22656 cell, a newline will terminate the row, and further characters in the
22657 file will be ignored.
22658
22659 @item pattern, p
22660 Read the initial cellular automaton state, i.e. the starting row, from
22661 the specified string.
22662
22663 Each non-whitespace character in the string is considered an alive
22664 cell, a newline will terminate the row, and further characters in the
22665 string will be ignored.
22666
22667 @item rate, r
22668 Set the video rate, that is the number of frames generated per second.
22669 Default is 25.
22670
22671 @item random_fill_ratio, ratio
22672 Set the random fill ratio for the initial cellular automaton row. It
22673 is a floating point number value ranging from 0 to 1, defaults to
22674 1/PHI.
22675
22676 This option is ignored when a file or a pattern is specified.
22677
22678 @item random_seed, seed
22679 Set the seed for filling randomly the initial row, must be an integer
22680 included between 0 and UINT32_MAX. If not specified, or if explicitly
22681 set to -1, the filter will try to use a good random seed on a best
22682 effort basis.
22683
22684 @item rule
22685 Set the cellular automaton rule, it is a number ranging from 0 to 255.
22686 Default value is 110.
22687
22688 @item size, s
22689 Set the size of the output video. For the syntax of this option, check the
22690 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22691
22692 If @option{filename} or @option{pattern} is specified, the size is set
22693 by default to the width of the specified initial state row, and the
22694 height is set to @var{width} * PHI.
22695
22696 If @option{size} is set, it must contain the width of the specified
22697 pattern string, and the specified pattern will be centered in the
22698 larger row.
22699
22700 If a filename or a pattern string is not specified, the size value
22701 defaults to "320x518" (used for a randomly generated initial state).
22702
22703 @item scroll
22704 If set to 1, scroll the output upward when all the rows in the output
22705 have been already filled. If set to 0, the new generated row will be
22706 written over the top row just after the bottom row is filled.
22707 Defaults to 1.
22708
22709 @item start_full, full
22710 If set to 1, completely fill the output with generated rows before
22711 outputting the first frame.
22712 This is the default behavior, for disabling set the value to 0.
22713
22714 @item stitch
22715 If set to 1, stitch the left and right row edges together.
22716 This is the default behavior, for disabling set the value to 0.
22717 @end table
22718
22719 @subsection Examples
22720
22721 @itemize
22722 @item
22723 Read the initial state from @file{pattern}, and specify an output of
22724 size 200x400.
22725 @example
22726 cellauto=f=pattern:s=200x400
22727 @end example
22728
22729 @item
22730 Generate a random initial row with a width of 200 cells, with a fill
22731 ratio of 2/3:
22732 @example
22733 cellauto=ratio=2/3:s=200x200
22734 @end example
22735
22736 @item
22737 Create a pattern generated by rule 18 starting by a single alive cell
22738 centered on an initial row with width 100:
22739 @example
22740 cellauto=p=@@:s=100x400:full=0:rule=18
22741 @end example
22742
22743 @item
22744 Specify a more elaborated initial pattern:
22745 @example
22746 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
22747 @end example
22748
22749 @end itemize
22750
22751 @anchor{coreimagesrc}
22752 @section coreimagesrc
22753 Video source generated on GPU using Apple's CoreImage API on OSX.
22754
22755 This video source is a specialized version of the @ref{coreimage} video filter.
22756 Use a core image generator at the beginning of the applied filterchain to
22757 generate the content.
22758
22759 The coreimagesrc video source accepts the following options:
22760 @table @option
22761 @item list_generators
22762 List all available generators along with all their respective options as well as
22763 possible minimum and maximum values along with the default values.
22764 @example
22765 list_generators=true
22766 @end example
22767
22768 @item size, s
22769 Specify the size of the sourced video. For the syntax of this option, check the
22770 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22771 The default value is @code{320x240}.
22772
22773 @item rate, r
22774 Specify the frame rate of the sourced video, as the number of frames
22775 generated per second. It has to be a string in the format
22776 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22777 number or a valid video frame rate abbreviation. The default value is
22778 "25".
22779
22780 @item sar
22781 Set the sample aspect ratio of the sourced video.
22782
22783 @item duration, d
22784 Set the duration of the sourced video. See
22785 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22786 for the accepted syntax.
22787
22788 If not specified, or the expressed duration is negative, the video is
22789 supposed to be generated forever.
22790 @end table
22791
22792 Additionally, all options of the @ref{coreimage} video filter are accepted.
22793 A complete filterchain can be used for further processing of the
22794 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
22795 and examples for details.
22796
22797 @subsection Examples
22798
22799 @itemize
22800
22801 @item
22802 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
22803 given as complete and escaped command-line for Apple's standard bash shell:
22804 @example
22805 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
22806 @end example
22807 This example is equivalent to the QRCode example of @ref{coreimage} without the
22808 need for a nullsrc video source.
22809 @end itemize
22810
22811
22812 @section gradients
22813 Generate several gradients.
22814
22815 @table @option
22816 @item size, s
22817 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22818 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22819
22820 @item rate, r
22821 Set frame rate, expressed as number of frames per second. Default
22822 value is "25".
22823
22824 @item c0, c1, c2, c3, c4, c5, c6, c7
22825 Set 8 colors. Default values for colors is to pick random one.
22826
22827 @item x0, y0, y0, y1
22828 Set gradient line source and destination points. If negative or out of range, random ones
22829 are picked.
22830
22831 @item nb_colors, n
22832 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
22833
22834 @item seed
22835 Set seed for picking gradient line points.
22836
22837 @item duration, d
22838 Set the duration of the sourced video. See
22839 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22840 for the accepted syntax.
22841
22842 If not specified, or the expressed duration is negative, the video is
22843 supposed to be generated forever.
22844
22845 @item speed
22846 Set speed of gradients rotation.
22847 @end table
22848
22849
22850 @section mandelbrot
22851
22852 Generate a Mandelbrot set fractal, and progressively zoom towards the
22853 point specified with @var{start_x} and @var{start_y}.
22854
22855 This source accepts the following options:
22856
22857 @table @option
22858
22859 @item end_pts
22860 Set the terminal pts value. Default value is 400.
22861
22862 @item end_scale
22863 Set the terminal scale value.
22864 Must be a floating point value. Default value is 0.3.
22865
22866 @item inner
22867 Set the inner coloring mode, that is the algorithm used to draw the
22868 Mandelbrot fractal internal region.
22869
22870 It shall assume one of the following values:
22871 @table @option
22872 @item black
22873 Set black mode.
22874 @item convergence
22875 Show time until convergence.
22876 @item mincol
22877 Set color based on point closest to the origin of the iterations.
22878 @item period
22879 Set period mode.
22880 @end table
22881
22882 Default value is @var{mincol}.
22883
22884 @item bailout
22885 Set the bailout value. Default value is 10.0.
22886
22887 @item maxiter
22888 Set the maximum of iterations performed by the rendering
22889 algorithm. Default value is 7189.
22890
22891 @item outer
22892 Set outer coloring mode.
22893 It shall assume one of following values:
22894 @table @option
22895 @item iteration_count
22896 Set iteration count mode.
22897 @item normalized_iteration_count
22898 set normalized iteration count mode.
22899 @end table
22900 Default value is @var{normalized_iteration_count}.
22901
22902 @item rate, r
22903 Set frame rate, expressed as number of frames per second. Default
22904 value is "25".
22905
22906 @item size, s
22907 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22908 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22909
22910 @item start_scale
22911 Set the initial scale value. Default value is 3.0.
22912
22913 @item start_x
22914 Set the initial x position. Must be a floating point value between
22915 -100 and 100. Default value is -0.743643887037158704752191506114774.
22916
22917 @item start_y
22918 Set the initial y position. Must be a floating point value between
22919 -100 and 100. Default value is -0.131825904205311970493132056385139.
22920 @end table
22921
22922 @section mptestsrc
22923
22924 Generate various test patterns, as generated by the MPlayer test filter.
22925
22926 The size of the generated video is fixed, and is 256x256.
22927 This source is useful in particular for testing encoding features.
22928
22929 This source accepts the following options:
22930
22931 @table @option
22932
22933 @item rate, r
22934 Specify the frame rate of the sourced video, as the number of frames
22935 generated per second. It has to be a string in the format
22936 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22937 number or a valid video frame rate abbreviation. The default value is
22938 "25".
22939
22940 @item duration, d
22941 Set the duration of the sourced video. See
22942 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22943 for the accepted syntax.
22944
22945 If not specified, or the expressed duration is negative, the video is
22946 supposed to be generated forever.
22947
22948 @item test, t
22949
22950 Set the number or the name of the test to perform. Supported tests are:
22951 @table @option
22952 @item dc_luma
22953 @item dc_chroma
22954 @item freq_luma
22955 @item freq_chroma
22956 @item amp_luma
22957 @item amp_chroma
22958 @item cbp
22959 @item mv
22960 @item ring1
22961 @item ring2
22962 @item all
22963
22964 @item max_frames, m
22965 Set the maximum number of frames generated for each test, default value is 30.
22966
22967 @end table
22968
22969 Default value is "all", which will cycle through the list of all tests.
22970 @end table
22971
22972 Some examples:
22973 @example
22974 mptestsrc=t=dc_luma
22975 @end example
22976
22977 will generate a "dc_luma" test pattern.
22978
22979 @section frei0r_src
22980
22981 Provide a frei0r source.
22982
22983 To enable compilation of this filter you need to install the frei0r
22984 header and configure FFmpeg with @code{--enable-frei0r}.
22985
22986 This source accepts the following parameters:
22987
22988 @table @option
22989
22990 @item size
22991 The size of the video to generate. For the syntax of this option, check the
22992 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22993
22994 @item framerate
22995 The framerate of the generated video. It may be a string of the form
22996 @var{num}/@var{den} or a frame rate abbreviation.
22997
22998 @item filter_name
22999 The name to the frei0r source to load. For more information regarding frei0r and
23000 how to set the parameters, read the @ref{frei0r} section in the video filters
23001 documentation.
23002
23003 @item filter_params
23004 A '|'-separated list of parameters to pass to the frei0r source.
23005
23006 @end table
23007
23008 For example, to generate a frei0r partik0l source with size 200x200
23009 and frame rate 10 which is overlaid on the overlay filter main input:
23010 @example
23011 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
23012 @end example
23013
23014 @section life
23015
23016 Generate a life pattern.
23017
23018 This source is based on a generalization of John Conway's life game.
23019
23020 The sourced input represents a life grid, each pixel represents a cell
23021 which can be in one of two possible states, alive or dead. Every cell
23022 interacts with its eight neighbours, which are the cells that are
23023 horizontally, vertically, or diagonally adjacent.
23024
23025 At each interaction the grid evolves according to the adopted rule,
23026 which specifies the number of neighbor alive cells which will make a
23027 cell stay alive or born. The @option{rule} option allows one to specify
23028 the rule to adopt.
23029
23030 This source accepts the following options:
23031
23032 @table @option
23033 @item filename, f
23034 Set the file from which to read the initial grid state. In the file,
23035 each non-whitespace character is considered an alive cell, and newline
23036 is used to delimit the end of each row.
23037
23038 If this option is not specified, the initial grid is generated
23039 randomly.
23040
23041 @item rate, r
23042 Set the video rate, that is the number of frames generated per second.
23043 Default is 25.
23044
23045 @item random_fill_ratio, ratio
23046 Set the random fill ratio for the initial random grid. It is a
23047 floating point number value ranging from 0 to 1, defaults to 1/PHI.
23048 It is ignored when a file is specified.
23049
23050 @item random_seed, seed
23051 Set the seed for filling the initial random grid, must be an integer
23052 included between 0 and UINT32_MAX. If not specified, or if explicitly
23053 set to -1, the filter will try to use a good random seed on a best
23054 effort basis.
23055
23056 @item rule
23057 Set the life rule.
23058
23059 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
23060 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
23061 @var{NS} specifies the number of alive neighbor cells which make a
23062 live cell stay alive, and @var{NB} the number of alive neighbor cells
23063 which make a dead cell to become alive (i.e. to "born").
23064 "s" and "b" can be used in place of "S" and "B", respectively.
23065
23066 Alternatively a rule can be specified by an 18-bits integer. The 9
23067 high order bits are used to encode the next cell state if it is alive
23068 for each number of neighbor alive cells, the low order bits specify
23069 the rule for "borning" new cells. Higher order bits encode for an
23070 higher number of neighbor cells.
23071 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
23072 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
23073
23074 Default value is "S23/B3", which is the original Conway's game of life
23075 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
23076 cells, and will born a new cell if there are three alive cells around
23077 a dead cell.
23078
23079 @item size, s
23080 Set the size of the output video. For the syntax of this option, check the
23081 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23082
23083 If @option{filename} is specified, the size is set by default to the
23084 same size of the input file. If @option{size} is set, it must contain
23085 the size specified in the input file, and the initial grid defined in
23086 that file is centered in the larger resulting area.
23087
23088 If a filename is not specified, the size value defaults to "320x240"
23089 (used for a randomly generated initial grid).
23090
23091 @item stitch
23092 If set to 1, stitch the left and right grid edges together, and the
23093 top and bottom edges also. Defaults to 1.
23094
23095 @item mold
23096 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
23097 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
23098 value from 0 to 255.
23099
23100 @item life_color
23101 Set the color of living (or new born) cells.
23102
23103 @item death_color
23104 Set the color of dead cells. If @option{mold} is set, this is the first color
23105 used to represent a dead cell.
23106
23107 @item mold_color
23108 Set mold color, for definitely dead and moldy cells.
23109
23110 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
23111 ffmpeg-utils manual,ffmpeg-utils}.
23112 @end table
23113
23114 @subsection Examples
23115
23116 @itemize
23117 @item
23118 Read a grid from @file{pattern}, and center it on a grid of size
23119 300x300 pixels:
23120 @example
23121 life=f=pattern:s=300x300
23122 @end example
23123
23124 @item
23125 Generate a random grid of size 200x200, with a fill ratio of 2/3:
23126 @example
23127 life=ratio=2/3:s=200x200
23128 @end example
23129
23130 @item
23131 Specify a custom rule for evolving a randomly generated grid:
23132 @example
23133 life=rule=S14/B34
23134 @end example
23135
23136 @item
23137 Full example with slow death effect (mold) using @command{ffplay}:
23138 @example
23139 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
23140 @end example
23141 @end itemize
23142
23143 @anchor{allrgb}
23144 @anchor{allyuv}
23145 @anchor{color}
23146 @anchor{haldclutsrc}
23147 @anchor{nullsrc}
23148 @anchor{pal75bars}
23149 @anchor{pal100bars}
23150 @anchor{rgbtestsrc}
23151 @anchor{smptebars}
23152 @anchor{smptehdbars}
23153 @anchor{testsrc}
23154 @anchor{testsrc2}
23155 @anchor{yuvtestsrc}
23156 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
23157
23158 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
23159
23160 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
23161
23162 The @code{color} source provides an uniformly colored input.
23163
23164 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
23165 @ref{haldclut} filter.
23166
23167 The @code{nullsrc} source returns unprocessed video frames. It is
23168 mainly useful to be employed in analysis / debugging tools, or as the
23169 source for filters which ignore the input data.
23170
23171 The @code{pal75bars} source generates a color bars pattern, based on
23172 EBU PAL recommendations with 75% color levels.
23173
23174 The @code{pal100bars} source generates a color bars pattern, based on
23175 EBU PAL recommendations with 100% color levels.
23176
23177 The @code{rgbtestsrc} source generates an RGB test pattern useful for
23178 detecting RGB vs BGR issues. You should see a red, green and blue
23179 stripe from top to bottom.
23180
23181 The @code{smptebars} source generates a color bars pattern, based on
23182 the SMPTE Engineering Guideline EG 1-1990.
23183
23184 The @code{smptehdbars} source generates a color bars pattern, based on
23185 the SMPTE RP 219-2002.
23186
23187 The @code{testsrc} source generates a test video pattern, showing a
23188 color pattern, a scrolling gradient and a timestamp. This is mainly
23189 intended for testing purposes.
23190
23191 The @code{testsrc2} source is similar to testsrc, but supports more
23192 pixel formats instead of just @code{rgb24}. This allows using it as an
23193 input for other tests without requiring a format conversion.
23194
23195 The @code{yuvtestsrc} source generates an YUV test pattern. You should
23196 see a y, cb and cr stripe from top to bottom.
23197
23198 The sources accept the following parameters:
23199
23200 @table @option
23201
23202 @item level
23203 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
23204 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
23205 pixels to be used as identity matrix for 3D lookup tables. Each component is
23206 coded on a @code{1/(N*N)} scale.
23207
23208 @item color, c
23209 Specify the color of the source, only available in the @code{color}
23210 source. For the syntax of this option, check the
23211 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
23212
23213 @item size, s
23214 Specify the size of the sourced video. For the syntax of this option, check the
23215 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23216 The default value is @code{320x240}.
23217
23218 This option is not available with the @code{allrgb}, @code{allyuv}, and
23219 @code{haldclutsrc} filters.
23220
23221 @item rate, r
23222 Specify the frame rate of the sourced video, as the number of frames
23223 generated per second. It has to be a string in the format
23224 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23225 number or a valid video frame rate abbreviation. The default value is
23226 "25".
23227
23228 @item duration, d
23229 Set the duration of the sourced video. See
23230 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23231 for the accepted syntax.
23232
23233 If not specified, or the expressed duration is negative, the video is
23234 supposed to be generated forever.
23235
23236 Since the frame rate is used as time base, all frames including the last one
23237 will have their full duration. If the specified duration is not a multiple
23238 of the frame duration, it will be rounded up.
23239
23240 @item sar
23241 Set the sample aspect ratio of the sourced video.
23242
23243 @item alpha
23244 Specify the alpha (opacity) of the background, only available in the
23245 @code{testsrc2} source. The value must be between 0 (fully transparent) and
23246 255 (fully opaque, the default).
23247
23248 @item decimals, n
23249 Set the number of decimals to show in the timestamp, only available in the
23250 @code{testsrc} source.
23251
23252 The displayed timestamp value will correspond to the original
23253 timestamp value multiplied by the power of 10 of the specified
23254 value. Default value is 0.
23255 @end table
23256
23257 @subsection Examples
23258
23259 @itemize
23260 @item
23261 Generate a video with a duration of 5.3 seconds, with size
23262 176x144 and a frame rate of 10 frames per second:
23263 @example
23264 testsrc=duration=5.3:size=qcif:rate=10
23265 @end example
23266
23267 @item
23268 The following graph description will generate a red source
23269 with an opacity of 0.2, with size "qcif" and a frame rate of 10
23270 frames per second:
23271 @example
23272 color=c=red@@0.2:s=qcif:r=10
23273 @end example
23274
23275 @item
23276 If the input content is to be ignored, @code{nullsrc} can be used. The
23277 following command generates noise in the luminance plane by employing
23278 the @code{geq} filter:
23279 @example
23280 nullsrc=s=256x256, geq=random(1)*255:128:128
23281 @end example
23282 @end itemize
23283
23284 @subsection Commands
23285
23286 The @code{color} source supports the following commands:
23287
23288 @table @option
23289 @item c, color
23290 Set the color of the created image. Accepts the same syntax of the
23291 corresponding @option{color} option.
23292 @end table
23293
23294 @section openclsrc
23295
23296 Generate video using an OpenCL program.
23297
23298 @table @option
23299
23300 @item source
23301 OpenCL program source file.
23302
23303 @item kernel
23304 Kernel name in program.
23305
23306 @item size, s
23307 Size of frames to generate.  This must be set.
23308
23309 @item format
23310 Pixel format to use for the generated frames.  This must be set.
23311
23312 @item rate, r
23313 Number of frames generated every second.  Default value is '25'.
23314
23315 @end table
23316
23317 For details of how the program loading works, see the @ref{program_opencl}
23318 filter.
23319
23320 Example programs:
23321
23322 @itemize
23323 @item
23324 Generate a colour ramp by setting pixel values from the position of the pixel
23325 in the output image.  (Note that this will work with all pixel formats, but
23326 the generated output will not be the same.)
23327 @verbatim
23328 __kernel void ramp(__write_only image2d_t dst,
23329                    unsigned int index)
23330 {
23331     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23332
23333     float4 val;
23334     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
23335
23336     write_imagef(dst, loc, val);
23337 }
23338 @end verbatim
23339
23340 @item
23341 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
23342 @verbatim
23343 __kernel void sierpinski_carpet(__write_only image2d_t dst,
23344                                 unsigned int index)
23345 {
23346     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23347
23348     float4 value = 0.0f;
23349     int x = loc.x + index;
23350     int y = loc.y + index;
23351     while (x > 0 || y > 0) {
23352         if (x % 3 == 1 && y % 3 == 1) {
23353             value = 1.0f;
23354             break;
23355         }
23356         x /= 3;
23357         y /= 3;
23358     }
23359
23360     write_imagef(dst, loc, value);
23361 }
23362 @end verbatim
23363
23364 @end itemize
23365
23366 @section sierpinski
23367
23368 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
23369
23370 This source accepts the following options:
23371
23372 @table @option
23373 @item size, s
23374 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23375 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23376
23377 @item rate, r
23378 Set frame rate, expressed as number of frames per second. Default
23379 value is "25".
23380
23381 @item seed
23382 Set seed which is used for random panning.
23383
23384 @item jump
23385 Set max jump for single pan destination. Allowed range is from 1 to 10000.
23386
23387 @item type
23388 Set fractal type, can be default @code{carpet} or @code{triangle}.
23389 @end table
23390
23391 @c man end VIDEO SOURCES
23392
23393 @chapter Video Sinks
23394 @c man begin VIDEO SINKS
23395
23396 Below is a description of the currently available video sinks.
23397
23398 @section buffersink
23399
23400 Buffer video frames, and make them available to the end of the filter
23401 graph.
23402
23403 This sink is mainly intended for programmatic use, in particular
23404 through the interface defined in @file{libavfilter/buffersink.h}
23405 or the options system.
23406
23407 It accepts a pointer to an AVBufferSinkContext structure, which
23408 defines the incoming buffers' formats, to be passed as the opaque
23409 parameter to @code{avfilter_init_filter} for initialization.
23410
23411 @section nullsink
23412
23413 Null video sink: do absolutely nothing with the input video. It is
23414 mainly useful as a template and for use in analysis / debugging
23415 tools.
23416
23417 @c man end VIDEO SINKS
23418
23419 @chapter Multimedia Filters
23420 @c man begin MULTIMEDIA FILTERS
23421
23422 Below is a description of the currently available multimedia filters.
23423
23424 @section abitscope
23425
23426 Convert input audio to a video output, displaying the audio bit scope.
23427
23428 The filter accepts the following options:
23429
23430 @table @option
23431 @item rate, r
23432 Set frame rate, expressed as number of frames per second. Default
23433 value is "25".
23434
23435 @item size, s
23436 Specify the video size for the output. For the syntax of this option, check the
23437 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23438 Default value is @code{1024x256}.
23439
23440 @item colors
23441 Specify list of colors separated by space or by '|' which will be used to
23442 draw channels. Unrecognized or missing colors will be replaced
23443 by white color.
23444 @end table
23445
23446 @section adrawgraph
23447 Draw a graph using input audio metadata.
23448
23449 See @ref{drawgraph}
23450
23451 @section agraphmonitor
23452
23453 See @ref{graphmonitor}.
23454
23455 @section ahistogram
23456
23457 Convert input audio to a video output, displaying the volume histogram.
23458
23459 The filter accepts the following options:
23460
23461 @table @option
23462 @item dmode
23463 Specify how histogram is calculated.
23464
23465 It accepts the following values:
23466 @table @samp
23467 @item single
23468 Use single histogram for all channels.
23469 @item separate
23470 Use separate histogram for each channel.
23471 @end table
23472 Default is @code{single}.
23473
23474 @item rate, r
23475 Set frame rate, expressed as number of frames per second. Default
23476 value is "25".
23477
23478 @item size, s
23479 Specify the video size for the output. For the syntax of this option, check the
23480 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23481 Default value is @code{hd720}.
23482
23483 @item scale
23484 Set display scale.
23485
23486 It accepts the following values:
23487 @table @samp
23488 @item log
23489 logarithmic
23490 @item sqrt
23491 square root
23492 @item cbrt
23493 cubic root
23494 @item lin
23495 linear
23496 @item rlog
23497 reverse logarithmic
23498 @end table
23499 Default is @code{log}.
23500
23501 @item ascale
23502 Set amplitude scale.
23503
23504 It accepts the following values:
23505 @table @samp
23506 @item log
23507 logarithmic
23508 @item lin
23509 linear
23510 @end table
23511 Default is @code{log}.
23512
23513 @item acount
23514 Set how much frames to accumulate in histogram.
23515 Default is 1. Setting this to -1 accumulates all frames.
23516
23517 @item rheight
23518 Set histogram ratio of window height.
23519
23520 @item slide
23521 Set sonogram sliding.
23522
23523 It accepts the following values:
23524 @table @samp
23525 @item replace
23526 replace old rows with new ones.
23527 @item scroll
23528 scroll from top to bottom.
23529 @end table
23530 Default is @code{replace}.
23531 @end table
23532
23533 @section aphasemeter
23534
23535 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
23536 representing mean phase of current audio frame. A video output can also be produced and is
23537 enabled by default. The audio is passed through as first output.
23538
23539 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
23540 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
23541 and @code{1} means channels are in phase.
23542
23543 The filter accepts the following options, all related to its video output:
23544
23545 @table @option
23546 @item rate, r
23547 Set the output frame rate. Default value is @code{25}.
23548
23549 @item size, s
23550 Set the video size for the output. For the syntax of this option, check the
23551 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23552 Default value is @code{800x400}.
23553
23554 @item rc
23555 @item gc
23556 @item bc
23557 Specify the red, green, blue contrast. Default values are @code{2},
23558 @code{7} and @code{1}.
23559 Allowed range is @code{[0, 255]}.
23560
23561 @item mpc
23562 Set color which will be used for drawing median phase. If color is
23563 @code{none} which is default, no median phase value will be drawn.
23564
23565 @item video
23566 Enable video output. Default is enabled.
23567 @end table
23568
23569 @subsection phasing detection
23570
23571 The filter also detects out of phase and mono sequences in stereo streams.
23572 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
23573
23574 The filter accepts the following options for this detection:
23575
23576 @table @option
23577 @item phasing
23578 Enable mono and out of phase detection. Default is disabled.
23579
23580 @item tolerance, t
23581 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
23582 Allowed range is @code{[0, 1]}.
23583
23584 @item angle, a
23585 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
23586 Allowed range is @code{[90, 180]}.
23587
23588 @item duration, d
23589 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
23590 @end table
23591
23592 @subsection Examples
23593
23594 @itemize
23595 @item
23596 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
23597 @example
23598 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
23599 @end example
23600 @end itemize
23601
23602 @section avectorscope
23603
23604 Convert input audio to a video output, representing the audio vector
23605 scope.
23606
23607 The filter is used to measure the difference between channels of stereo
23608 audio stream. A monaural signal, consisting of identical left and right
23609 signal, results in straight vertical line. Any stereo separation is visible
23610 as a deviation from this line, creating a Lissajous figure.
23611 If the straight (or deviation from it) but horizontal line appears this
23612 indicates that the left and right channels are out of phase.
23613
23614 The filter accepts the following options:
23615
23616 @table @option
23617 @item mode, m
23618 Set the vectorscope mode.
23619
23620 Available values are:
23621 @table @samp
23622 @item lissajous
23623 Lissajous rotated by 45 degrees.
23624
23625 @item lissajous_xy
23626 Same as above but not rotated.
23627
23628 @item polar
23629 Shape resembling half of circle.
23630 @end table
23631
23632 Default value is @samp{lissajous}.
23633
23634 @item size, s
23635 Set the video size for the output. For the syntax of this option, check the
23636 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23637 Default value is @code{400x400}.
23638
23639 @item rate, r
23640 Set the output frame rate. Default value is @code{25}.
23641
23642 @item rc
23643 @item gc
23644 @item bc
23645 @item ac
23646 Specify the red, green, blue and alpha contrast. Default values are @code{40},
23647 @code{160}, @code{80} and @code{255}.
23648 Allowed range is @code{[0, 255]}.
23649
23650 @item rf
23651 @item gf
23652 @item bf
23653 @item af
23654 Specify the red, green, blue and alpha fade. Default values are @code{15},
23655 @code{10}, @code{5} and @code{5}.
23656 Allowed range is @code{[0, 255]}.
23657
23658 @item zoom
23659 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
23660 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
23661
23662 @item draw
23663 Set the vectorscope drawing mode.
23664
23665 Available values are:
23666 @table @samp
23667 @item dot
23668 Draw dot for each sample.
23669
23670 @item line
23671 Draw line between previous and current sample.
23672 @end table
23673
23674 Default value is @samp{dot}.
23675
23676 @item scale
23677 Specify amplitude scale of audio samples.
23678
23679 Available values are:
23680 @table @samp
23681 @item lin
23682 Linear.
23683
23684 @item sqrt
23685 Square root.
23686
23687 @item cbrt
23688 Cubic root.
23689
23690 @item log
23691 Logarithmic.
23692 @end table
23693
23694 @item swap
23695 Swap left channel axis with right channel axis.
23696
23697 @item mirror
23698 Mirror axis.
23699
23700 @table @samp
23701 @item none
23702 No mirror.
23703
23704 @item x
23705 Mirror only x axis.
23706
23707 @item y
23708 Mirror only y axis.
23709
23710 @item xy
23711 Mirror both axis.
23712 @end table
23713
23714 @end table
23715
23716 @subsection Examples
23717
23718 @itemize
23719 @item
23720 Complete example using @command{ffplay}:
23721 @example
23722 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
23723              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
23724 @end example
23725 @end itemize
23726
23727 @section bench, abench
23728
23729 Benchmark part of a filtergraph.
23730
23731 The filter accepts the following options:
23732
23733 @table @option
23734 @item action
23735 Start or stop a timer.
23736
23737 Available values are:
23738 @table @samp
23739 @item start
23740 Get the current time, set it as frame metadata (using the key
23741 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
23742
23743 @item stop
23744 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
23745 the input frame metadata to get the time difference. Time difference, average,
23746 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
23747 @code{min}) are then printed. The timestamps are expressed in seconds.
23748 @end table
23749 @end table
23750
23751 @subsection Examples
23752
23753 @itemize
23754 @item
23755 Benchmark @ref{selectivecolor} filter:
23756 @example
23757 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
23758 @end example
23759 @end itemize
23760
23761 @section concat
23762
23763 Concatenate audio and video streams, joining them together one after the
23764 other.
23765
23766 The filter works on segments of synchronized video and audio streams. All
23767 segments must have the same number of streams of each type, and that will
23768 also be the number of streams at output.
23769
23770 The filter accepts the following options:
23771
23772 @table @option
23773
23774 @item n
23775 Set the number of segments. Default is 2.
23776
23777 @item v
23778 Set the number of output video streams, that is also the number of video
23779 streams in each segment. Default is 1.
23780
23781 @item a
23782 Set the number of output audio streams, that is also the number of audio
23783 streams in each segment. Default is 0.
23784
23785 @item unsafe
23786 Activate unsafe mode: do not fail if segments have a different format.
23787
23788 @end table
23789
23790 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
23791 @var{a} audio outputs.
23792
23793 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
23794 segment, in the same order as the outputs, then the inputs for the second
23795 segment, etc.
23796
23797 Related streams do not always have exactly the same duration, for various
23798 reasons including codec frame size or sloppy authoring. For that reason,
23799 related synchronized streams (e.g. a video and its audio track) should be
23800 concatenated at once. The concat filter will use the duration of the longest
23801 stream in each segment (except the last one), and if necessary pad shorter
23802 audio streams with silence.
23803
23804 For this filter to work correctly, all segments must start at timestamp 0.
23805
23806 All corresponding streams must have the same parameters in all segments; the
23807 filtering system will automatically select a common pixel format for video
23808 streams, and a common sample format, sample rate and channel layout for
23809 audio streams, but other settings, such as resolution, must be converted
23810 explicitly by the user.
23811
23812 Different frame rates are acceptable but will result in variable frame rate
23813 at output; be sure to configure the output file to handle it.
23814
23815 @subsection Examples
23816
23817 @itemize
23818 @item
23819 Concatenate an opening, an episode and an ending, all in bilingual version
23820 (video in stream 0, audio in streams 1 and 2):
23821 @example
23822 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
23823   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
23824    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
23825   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
23826 @end example
23827
23828 @item
23829 Concatenate two parts, handling audio and video separately, using the
23830 (a)movie sources, and adjusting the resolution:
23831 @example
23832 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
23833 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
23834 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
23835 @end example
23836 Note that a desync will happen at the stitch if the audio and video streams
23837 do not have exactly the same duration in the first file.
23838
23839 @end itemize
23840
23841 @subsection Commands
23842
23843 This filter supports the following commands:
23844 @table @option
23845 @item next
23846 Close the current segment and step to the next one
23847 @end table
23848
23849 @anchor{ebur128}
23850 @section ebur128
23851
23852 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
23853 level. By default, it logs a message at a frequency of 10Hz with the
23854 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
23855 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
23856
23857 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
23858 sample format is double-precision floating point. The input stream will be converted to
23859 this specification, if needed. Users may need to insert aformat and/or aresample filters
23860 after this filter to obtain the original parameters.
23861
23862 The filter also has a video output (see the @var{video} option) with a real
23863 time graph to observe the loudness evolution. The graphic contains the logged
23864 message mentioned above, so it is not printed anymore when this option is set,
23865 unless the verbose logging is set. The main graphing area contains the
23866 short-term loudness (3 seconds of analysis), and the gauge on the right is for
23867 the momentary loudness (400 milliseconds), but can optionally be configured
23868 to instead display short-term loudness (see @var{gauge}).
23869
23870 The green area marks a  +/- 1LU target range around the target loudness
23871 (-23LUFS by default, unless modified through @var{target}).
23872
23873 More information about the Loudness Recommendation EBU R128 on
23874 @url{http://tech.ebu.ch/loudness}.
23875
23876 The filter accepts the following options:
23877
23878 @table @option
23879
23880 @item video
23881 Activate the video output. The audio stream is passed unchanged whether this
23882 option is set or no. The video stream will be the first output stream if
23883 activated. Default is @code{0}.
23884
23885 @item size
23886 Set the video size. This option is for video only. For the syntax of this
23887 option, check the
23888 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23889 Default and minimum resolution is @code{640x480}.
23890
23891 @item meter
23892 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
23893 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
23894 other integer value between this range is allowed.
23895
23896 @item metadata
23897 Set metadata injection. If set to @code{1}, the audio input will be segmented
23898 into 100ms output frames, each of them containing various loudness information
23899 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
23900
23901 Default is @code{0}.
23902
23903 @item framelog
23904 Force the frame logging level.
23905
23906 Available values are:
23907 @table @samp
23908 @item info
23909 information logging level
23910 @item verbose
23911 verbose logging level
23912 @end table
23913
23914 By default, the logging level is set to @var{info}. If the @option{video} or
23915 the @option{metadata} options are set, it switches to @var{verbose}.
23916
23917 @item peak
23918 Set peak mode(s).
23919
23920 Available modes can be cumulated (the option is a @code{flag} type). Possible
23921 values are:
23922 @table @samp
23923 @item none
23924 Disable any peak mode (default).
23925 @item sample
23926 Enable sample-peak mode.
23927
23928 Simple peak mode looking for the higher sample value. It logs a message
23929 for sample-peak (identified by @code{SPK}).
23930 @item true
23931 Enable true-peak mode.
23932
23933 If enabled, the peak lookup is done on an over-sampled version of the input
23934 stream for better peak accuracy. It logs a message for true-peak.
23935 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
23936 This mode requires a build with @code{libswresample}.
23937 @end table
23938
23939 @item dualmono
23940 Treat mono input files as "dual mono". If a mono file is intended for playback
23941 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
23942 If set to @code{true}, this option will compensate for this effect.
23943 Multi-channel input files are not affected by this option.
23944
23945 @item panlaw
23946 Set a specific pan law to be used for the measurement of dual mono files.
23947 This parameter is optional, and has a default value of -3.01dB.
23948
23949 @item target
23950 Set a specific target level (in LUFS) used as relative zero in the visualization.
23951 This parameter is optional and has a default value of -23LUFS as specified
23952 by EBU R128. However, material published online may prefer a level of -16LUFS
23953 (e.g. for use with podcasts or video platforms).
23954
23955 @item gauge
23956 Set the value displayed by the gauge. Valid values are @code{momentary} and s
23957 @code{shortterm}. By default the momentary value will be used, but in certain
23958 scenarios it may be more useful to observe the short term value instead (e.g.
23959 live mixing).
23960
23961 @item scale
23962 Sets the display scale for the loudness. Valid parameters are @code{absolute}
23963 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
23964 video output, not the summary or continuous log output.
23965 @end table
23966
23967 @subsection Examples
23968
23969 @itemize
23970 @item
23971 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
23972 @example
23973 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
23974 @end example
23975
23976 @item
23977 Run an analysis with @command{ffmpeg}:
23978 @example
23979 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
23980 @end example
23981 @end itemize
23982
23983 @section interleave, ainterleave
23984
23985 Temporally interleave frames from several inputs.
23986
23987 @code{interleave} works with video inputs, @code{ainterleave} with audio.
23988
23989 These filters read frames from several inputs and send the oldest
23990 queued frame to the output.
23991
23992 Input streams must have well defined, monotonically increasing frame
23993 timestamp values.
23994
23995 In order to submit one frame to output, these filters need to enqueue
23996 at least one frame for each input, so they cannot work in case one
23997 input is not yet terminated and will not receive incoming frames.
23998
23999 For example consider the case when one input is a @code{select} filter
24000 which always drops input frames. The @code{interleave} filter will keep
24001 reading from that input, but it will never be able to send new frames
24002 to output until the input sends an end-of-stream signal.
24003
24004 Also, depending on inputs synchronization, the filters will drop
24005 frames in case one input receives more frames than the other ones, and
24006 the queue is already filled.
24007
24008 These filters accept the following options:
24009
24010 @table @option
24011 @item nb_inputs, n
24012 Set the number of different inputs, it is 2 by default.
24013
24014 @item duration
24015 How to determine the end-of-stream.
24016
24017 @table @option
24018 @item longest
24019 The duration of the longest input. (default)
24020
24021 @item shortest
24022 The duration of the shortest input.
24023
24024 @item first
24025 The duration of the first input.
24026 @end table
24027
24028 @end table
24029
24030 @subsection Examples
24031
24032 @itemize
24033 @item
24034 Interleave frames belonging to different streams using @command{ffmpeg}:
24035 @example
24036 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
24037 @end example
24038
24039 @item
24040 Add flickering blur effect:
24041 @example
24042 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
24043 @end example
24044 @end itemize
24045
24046 @section metadata, ametadata
24047
24048 Manipulate frame metadata.
24049
24050 This filter accepts the following options:
24051
24052 @table @option
24053 @item mode
24054 Set mode of operation of the filter.
24055
24056 Can be one of the following:
24057
24058 @table @samp
24059 @item select
24060 If both @code{value} and @code{key} is set, select frames
24061 which have such metadata. If only @code{key} is set, select
24062 every frame that has such key in metadata.
24063
24064 @item add
24065 Add new metadata @code{key} and @code{value}. If key is already available
24066 do nothing.
24067
24068 @item modify
24069 Modify value of already present key.
24070
24071 @item delete
24072 If @code{value} is set, delete only keys that have such value.
24073 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
24074 the frame.
24075
24076 @item print
24077 Print key and its value if metadata was found. If @code{key} is not set print all
24078 metadata values available in frame.
24079 @end table
24080
24081 @item key
24082 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
24083
24084 @item value
24085 Set metadata value which will be used. This option is mandatory for
24086 @code{modify} and @code{add} mode.
24087
24088 @item function
24089 Which function to use when comparing metadata value and @code{value}.
24090
24091 Can be one of following:
24092
24093 @table @samp
24094 @item same_str
24095 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
24096
24097 @item starts_with
24098 Values are interpreted as strings, returns true if metadata value starts with
24099 the @code{value} option string.
24100
24101 @item less
24102 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
24103
24104 @item equal
24105 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
24106
24107 @item greater
24108 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
24109
24110 @item expr
24111 Values are interpreted as floats, returns true if expression from option @code{expr}
24112 evaluates to true.
24113
24114 @item ends_with
24115 Values are interpreted as strings, returns true if metadata value ends with
24116 the @code{value} option string.
24117 @end table
24118
24119 @item expr
24120 Set expression which is used when @code{function} is set to @code{expr}.
24121 The expression is evaluated through the eval API and can contain the following
24122 constants:
24123
24124 @table @option
24125 @item VALUE1
24126 Float representation of @code{value} from metadata key.
24127
24128 @item VALUE2
24129 Float representation of @code{value} as supplied by user in @code{value} option.
24130 @end table
24131
24132 @item file
24133 If specified in @code{print} mode, output is written to the named file. Instead of
24134 plain filename any writable url can be specified. Filename ``-'' is a shorthand
24135 for standard output. If @code{file} option is not set, output is written to the log
24136 with AV_LOG_INFO loglevel.
24137
24138 @item direct
24139 Reduces buffering in print mode when output is written to a URL set using @var{file}.
24140
24141 @end table
24142
24143 @subsection Examples
24144
24145 @itemize
24146 @item
24147 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
24148 between 0 and 1.
24149 @example
24150 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
24151 @end example
24152 @item
24153 Print silencedetect output to file @file{metadata.txt}.
24154 @example
24155 silencedetect,ametadata=mode=print:file=metadata.txt
24156 @end example
24157 @item
24158 Direct all metadata to a pipe with file descriptor 4.
24159 @example
24160 metadata=mode=print:file='pipe\:4'
24161 @end example
24162 @end itemize
24163
24164 @section perms, aperms
24165
24166 Set read/write permissions for the output frames.
24167
24168 These filters are mainly aimed at developers to test direct path in the
24169 following filter in the filtergraph.
24170
24171 The filters accept the following options:
24172
24173 @table @option
24174 @item mode
24175 Select the permissions mode.
24176
24177 It accepts the following values:
24178 @table @samp
24179 @item none
24180 Do nothing. This is the default.
24181 @item ro
24182 Set all the output frames read-only.
24183 @item rw
24184 Set all the output frames directly writable.
24185 @item toggle
24186 Make the frame read-only if writable, and writable if read-only.
24187 @item random
24188 Set each output frame read-only or writable randomly.
24189 @end table
24190
24191 @item seed
24192 Set the seed for the @var{random} mode, must be an integer included between
24193 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
24194 @code{-1}, the filter will try to use a good random seed on a best effort
24195 basis.
24196 @end table
24197
24198 Note: in case of auto-inserted filter between the permission filter and the
24199 following one, the permission might not be received as expected in that
24200 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
24201 perms/aperms filter can avoid this problem.
24202
24203 @section realtime, arealtime
24204
24205 Slow down filtering to match real time approximately.
24206
24207 These filters will pause the filtering for a variable amount of time to
24208 match the output rate with the input timestamps.
24209 They are similar to the @option{re} option to @code{ffmpeg}.
24210
24211 They accept the following options:
24212
24213 @table @option
24214 @item limit
24215 Time limit for the pauses. Any pause longer than that will be considered
24216 a timestamp discontinuity and reset the timer. Default is 2 seconds.
24217 @item speed
24218 Speed factor for processing. The value must be a float larger than zero.
24219 Values larger than 1.0 will result in faster than realtime processing,
24220 smaller will slow processing down. The @var{limit} is automatically adapted
24221 accordingly. Default is 1.0.
24222
24223 A processing speed faster than what is possible without these filters cannot
24224 be achieved.
24225 @end table
24226
24227 @anchor{select}
24228 @section select, aselect
24229
24230 Select frames to pass in output.
24231
24232 This filter accepts the following options:
24233
24234 @table @option
24235
24236 @item expr, e
24237 Set expression, which is evaluated for each input frame.
24238
24239 If the expression is evaluated to zero, the frame is discarded.
24240
24241 If the evaluation result is negative or NaN, the frame is sent to the
24242 first output; otherwise it is sent to the output with index
24243 @code{ceil(val)-1}, assuming that the input index starts from 0.
24244
24245 For example a value of @code{1.2} corresponds to the output with index
24246 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
24247
24248 @item outputs, n
24249 Set the number of outputs. The output to which to send the selected
24250 frame is based on the result of the evaluation. Default value is 1.
24251 @end table
24252
24253 The expression can contain the following constants:
24254
24255 @table @option
24256 @item n
24257 The (sequential) number of the filtered frame, starting from 0.
24258
24259 @item selected_n
24260 The (sequential) number of the selected frame, starting from 0.
24261
24262 @item prev_selected_n
24263 The sequential number of the last selected frame. It's NAN if undefined.
24264
24265 @item TB
24266 The timebase of the input timestamps.
24267
24268 @item pts
24269 The PTS (Presentation TimeStamp) of the filtered video frame,
24270 expressed in @var{TB} units. It's NAN if undefined.
24271
24272 @item t
24273 The PTS of the filtered video frame,
24274 expressed in seconds. It's NAN if undefined.
24275
24276 @item prev_pts
24277 The PTS of the previously filtered video frame. It's NAN if undefined.
24278
24279 @item prev_selected_pts
24280 The PTS of the last previously filtered video frame. It's NAN if undefined.
24281
24282 @item prev_selected_t
24283 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
24284
24285 @item start_pts
24286 The PTS of the first video frame in the video. It's NAN if undefined.
24287
24288 @item start_t
24289 The time of the first video frame in the video. It's NAN if undefined.
24290
24291 @item pict_type @emph{(video only)}
24292 The type of the filtered frame. It can assume one of the following
24293 values:
24294 @table @option
24295 @item I
24296 @item P
24297 @item B
24298 @item S
24299 @item SI
24300 @item SP
24301 @item BI
24302 @end table
24303
24304 @item interlace_type @emph{(video only)}
24305 The frame interlace type. It can assume one of the following values:
24306 @table @option
24307 @item PROGRESSIVE
24308 The frame is progressive (not interlaced).
24309 @item TOPFIRST
24310 The frame is top-field-first.
24311 @item BOTTOMFIRST
24312 The frame is bottom-field-first.
24313 @end table
24314
24315 @item consumed_sample_n @emph{(audio only)}
24316 the number of selected samples before the current frame
24317
24318 @item samples_n @emph{(audio only)}
24319 the number of samples in the current frame
24320
24321 @item sample_rate @emph{(audio only)}
24322 the input sample rate
24323
24324 @item key
24325 This is 1 if the filtered frame is a key-frame, 0 otherwise.
24326
24327 @item pos
24328 the position in the file of the filtered frame, -1 if the information
24329 is not available (e.g. for synthetic video)
24330
24331 @item scene @emph{(video only)}
24332 value between 0 and 1 to indicate a new scene; a low value reflects a low
24333 probability for the current frame to introduce a new scene, while a higher
24334 value means the current frame is more likely to be one (see the example below)
24335
24336 @item concatdec_select
24337 The concat demuxer can select only part of a concat input file by setting an
24338 inpoint and an outpoint, but the output packets may not be entirely contained
24339 in the selected interval. By using this variable, it is possible to skip frames
24340 generated by the concat demuxer which are not exactly contained in the selected
24341 interval.
24342
24343 This works by comparing the frame pts against the @var{lavf.concat.start_time}
24344 and the @var{lavf.concat.duration} packet metadata values which are also
24345 present in the decoded frames.
24346
24347 The @var{concatdec_select} variable is -1 if the frame pts is at least
24348 start_time and either the duration metadata is missing or the frame pts is less
24349 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
24350 missing.
24351
24352 That basically means that an input frame is selected if its pts is within the
24353 interval set by the concat demuxer.
24354
24355 @end table
24356
24357 The default value of the select expression is "1".
24358
24359 @subsection Examples
24360
24361 @itemize
24362 @item
24363 Select all frames in input:
24364 @example
24365 select
24366 @end example
24367
24368 The example above is the same as:
24369 @example
24370 select=1
24371 @end example
24372
24373 @item
24374 Skip all frames:
24375 @example
24376 select=0
24377 @end example
24378
24379 @item
24380 Select only I-frames:
24381 @example
24382 select='eq(pict_type\,I)'
24383 @end example
24384
24385 @item
24386 Select one frame every 100:
24387 @example
24388 select='not(mod(n\,100))'
24389 @end example
24390
24391 @item
24392 Select only frames contained in the 10-20 time interval:
24393 @example
24394 select=between(t\,10\,20)
24395 @end example
24396
24397 @item
24398 Select only I-frames contained in the 10-20 time interval:
24399 @example
24400 select=between(t\,10\,20)*eq(pict_type\,I)
24401 @end example
24402
24403 @item
24404 Select frames with a minimum distance of 10 seconds:
24405 @example
24406 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
24407 @end example
24408
24409 @item
24410 Use aselect to select only audio frames with samples number > 100:
24411 @example
24412 aselect='gt(samples_n\,100)'
24413 @end example
24414
24415 @item
24416 Create a mosaic of the first scenes:
24417 @example
24418 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
24419 @end example
24420
24421 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
24422 choice.
24423
24424 @item
24425 Send even and odd frames to separate outputs, and compose them:
24426 @example
24427 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
24428 @end example
24429
24430 @item
24431 Select useful frames from an ffconcat file which is using inpoints and
24432 outpoints but where the source files are not intra frame only.
24433 @example
24434 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
24435 @end example
24436 @end itemize
24437
24438 @section sendcmd, asendcmd
24439
24440 Send commands to filters in the filtergraph.
24441
24442 These filters read commands to be sent to other filters in the
24443 filtergraph.
24444
24445 @code{sendcmd} must be inserted between two video filters,
24446 @code{asendcmd} must be inserted between two audio filters, but apart
24447 from that they act the same way.
24448
24449 The specification of commands can be provided in the filter arguments
24450 with the @var{commands} option, or in a file specified by the
24451 @var{filename} option.
24452
24453 These filters accept the following options:
24454 @table @option
24455 @item commands, c
24456 Set the commands to be read and sent to the other filters.
24457 @item filename, f
24458 Set the filename of the commands to be read and sent to the other
24459 filters.
24460 @end table
24461
24462 @subsection Commands syntax
24463
24464 A commands description consists of a sequence of interval
24465 specifications, comprising a list of commands to be executed when a
24466 particular event related to that interval occurs. The occurring event
24467 is typically the current frame time entering or leaving a given time
24468 interval.
24469
24470 An interval is specified by the following syntax:
24471 @example
24472 @var{START}[-@var{END}] @var{COMMANDS};
24473 @end example
24474
24475 The time interval is specified by the @var{START} and @var{END} times.
24476 @var{END} is optional and defaults to the maximum time.
24477
24478 The current frame time is considered within the specified interval if
24479 it is included in the interval [@var{START}, @var{END}), that is when
24480 the time is greater or equal to @var{START} and is lesser than
24481 @var{END}.
24482
24483 @var{COMMANDS} consists of a sequence of one or more command
24484 specifications, separated by ",", relating to that interval.  The
24485 syntax of a command specification is given by:
24486 @example
24487 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
24488 @end example
24489
24490 @var{FLAGS} is optional and specifies the type of events relating to
24491 the time interval which enable sending the specified command, and must
24492 be a non-null sequence of identifier flags separated by "+" or "|" and
24493 enclosed between "[" and "]".
24494
24495 The following flags are recognized:
24496 @table @option
24497 @item enter
24498 The command is sent when the current frame timestamp enters the
24499 specified interval. In other words, the command is sent when the
24500 previous frame timestamp was not in the given interval, and the
24501 current is.
24502
24503 @item leave
24504 The command is sent when the current frame timestamp leaves the
24505 specified interval. In other words, the command is sent when the
24506 previous frame timestamp was in the given interval, and the
24507 current is not.
24508
24509 @item expr
24510 The command @var{ARG} is interpreted as expression and result of
24511 expression is passed as @var{ARG}.
24512
24513 The expression is evaluated through the eval API and can contain the following
24514 constants:
24515
24516 @table @option
24517 @item POS
24518 Original position in the file of the frame, or undefined if undefined
24519 for the current frame.
24520
24521 @item PTS
24522 The presentation timestamp in input.
24523
24524 @item N
24525 The count of the input frame for video or audio, starting from 0.
24526
24527 @item T
24528 The time in seconds of the current frame.
24529
24530 @item TS
24531 The start time in seconds of the current command interval.
24532
24533 @item TE
24534 The end time in seconds of the current command interval.
24535
24536 @item TI
24537 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
24538 @end table
24539
24540 @end table
24541
24542 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
24543 assumed.
24544
24545 @var{TARGET} specifies the target of the command, usually the name of
24546 the filter class or a specific filter instance name.
24547
24548 @var{COMMAND} specifies the name of the command for the target filter.
24549
24550 @var{ARG} is optional and specifies the optional list of argument for
24551 the given @var{COMMAND}.
24552
24553 Between one interval specification and another, whitespaces, or
24554 sequences of characters starting with @code{#} until the end of line,
24555 are ignored and can be used to annotate comments.
24556
24557 A simplified BNF description of the commands specification syntax
24558 follows:
24559 @example
24560 @var{COMMAND_FLAG}  ::= "enter" | "leave"
24561 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
24562 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
24563 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
24564 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
24565 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
24566 @end example
24567
24568 @subsection Examples
24569
24570 @itemize
24571 @item
24572 Specify audio tempo change at second 4:
24573 @example
24574 asendcmd=c='4.0 atempo tempo 1.5',atempo
24575 @end example
24576
24577 @item
24578 Target a specific filter instance:
24579 @example
24580 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
24581 @end example
24582
24583 @item
24584 Specify a list of drawtext and hue commands in a file.
24585 @example
24586 # show text in the interval 5-10
24587 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
24588          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
24589
24590 # desaturate the image in the interval 15-20
24591 15.0-20.0 [enter] hue s 0,
24592           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
24593           [leave] hue s 1,
24594           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
24595
24596 # apply an exponential saturation fade-out effect, starting from time 25
24597 25 [enter] hue s exp(25-t)
24598 @end example
24599
24600 A filtergraph allowing to read and process the above command list
24601 stored in a file @file{test.cmd}, can be specified with:
24602 @example
24603 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
24604 @end example
24605 @end itemize
24606
24607 @anchor{setpts}
24608 @section setpts, asetpts
24609
24610 Change the PTS (presentation timestamp) of the input frames.
24611
24612 @code{setpts} works on video frames, @code{asetpts} on audio frames.
24613
24614 This filter accepts the following options:
24615
24616 @table @option
24617
24618 @item expr
24619 The expression which is evaluated for each frame to construct its timestamp.
24620
24621 @end table
24622
24623 The expression is evaluated through the eval API and can contain the following
24624 constants:
24625
24626 @table @option
24627 @item FRAME_RATE, FR
24628 frame rate, only defined for constant frame-rate video
24629
24630 @item PTS
24631 The presentation timestamp in input
24632
24633 @item N
24634 The count of the input frame for video or the number of consumed samples,
24635 not including the current frame for audio, starting from 0.
24636
24637 @item NB_CONSUMED_SAMPLES
24638 The number of consumed samples, not including the current frame (only
24639 audio)
24640
24641 @item NB_SAMPLES, S
24642 The number of samples in the current frame (only audio)
24643
24644 @item SAMPLE_RATE, SR
24645 The audio sample rate.
24646
24647 @item STARTPTS
24648 The PTS of the first frame.
24649
24650 @item STARTT
24651 the time in seconds of the first frame
24652
24653 @item INTERLACED
24654 State whether the current frame is interlaced.
24655
24656 @item T
24657 the time in seconds of the current frame
24658
24659 @item POS
24660 original position in the file of the frame, or undefined if undefined
24661 for the current frame
24662
24663 @item PREV_INPTS
24664 The previous input PTS.
24665
24666 @item PREV_INT
24667 previous input time in seconds
24668
24669 @item PREV_OUTPTS
24670 The previous output PTS.
24671
24672 @item PREV_OUTT
24673 previous output time in seconds
24674
24675 @item RTCTIME
24676 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
24677 instead.
24678
24679 @item RTCSTART
24680 The wallclock (RTC) time at the start of the movie in microseconds.
24681
24682 @item TB
24683 The timebase of the input timestamps.
24684
24685 @end table
24686
24687 @subsection Examples
24688
24689 @itemize
24690 @item
24691 Start counting PTS from zero
24692 @example
24693 setpts=PTS-STARTPTS
24694 @end example
24695
24696 @item
24697 Apply fast motion effect:
24698 @example
24699 setpts=0.5*PTS
24700 @end example
24701
24702 @item
24703 Apply slow motion effect:
24704 @example
24705 setpts=2.0*PTS
24706 @end example
24707
24708 @item
24709 Set fixed rate of 25 frames per second:
24710 @example
24711 setpts=N/(25*TB)
24712 @end example
24713
24714 @item
24715 Set fixed rate 25 fps with some jitter:
24716 @example
24717 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
24718 @end example
24719
24720 @item
24721 Apply an offset of 10 seconds to the input PTS:
24722 @example
24723 setpts=PTS+10/TB
24724 @end example
24725
24726 @item
24727 Generate timestamps from a "live source" and rebase onto the current timebase:
24728 @example
24729 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
24730 @end example
24731
24732 @item
24733 Generate timestamps by counting samples:
24734 @example
24735 asetpts=N/SR/TB
24736 @end example
24737
24738 @end itemize
24739
24740 @section setrange
24741
24742 Force color range for the output video frame.
24743
24744 The @code{setrange} filter marks the color range property for the
24745 output frames. It does not change the input frame, but only sets the
24746 corresponding property, which affects how the frame is treated by
24747 following filters.
24748
24749 The filter accepts the following options:
24750
24751 @table @option
24752
24753 @item range
24754 Available values are:
24755
24756 @table @samp
24757 @item auto
24758 Keep the same color range property.
24759
24760 @item unspecified, unknown
24761 Set the color range as unspecified.
24762
24763 @item limited, tv, mpeg
24764 Set the color range as limited.
24765
24766 @item full, pc, jpeg
24767 Set the color range as full.
24768 @end table
24769 @end table
24770
24771 @section settb, asettb
24772
24773 Set the timebase to use for the output frames timestamps.
24774 It is mainly useful for testing timebase configuration.
24775
24776 It accepts the following parameters:
24777
24778 @table @option
24779
24780 @item expr, tb
24781 The expression which is evaluated into the output timebase.
24782
24783 @end table
24784
24785 The value for @option{tb} is an arithmetic expression representing a
24786 rational. The expression can contain the constants "AVTB" (the default
24787 timebase), "intb" (the input timebase) and "sr" (the sample rate,
24788 audio only). Default value is "intb".
24789
24790 @subsection Examples
24791
24792 @itemize
24793 @item
24794 Set the timebase to 1/25:
24795 @example
24796 settb=expr=1/25
24797 @end example
24798
24799 @item
24800 Set the timebase to 1/10:
24801 @example
24802 settb=expr=0.1
24803 @end example
24804
24805 @item
24806 Set the timebase to 1001/1000:
24807 @example
24808 settb=1+0.001
24809 @end example
24810
24811 @item
24812 Set the timebase to 2*intb:
24813 @example
24814 settb=2*intb
24815 @end example
24816
24817 @item
24818 Set the default timebase value:
24819 @example
24820 settb=AVTB
24821 @end example
24822 @end itemize
24823
24824 @section showcqt
24825 Convert input audio to a video output representing frequency spectrum
24826 logarithmically using Brown-Puckette constant Q transform algorithm with
24827 direct frequency domain coefficient calculation (but the transform itself
24828 is not really constant Q, instead the Q factor is actually variable/clamped),
24829 with musical tone scale, from E0 to D#10.
24830
24831 The filter accepts the following options:
24832
24833 @table @option
24834 @item size, s
24835 Specify the video size for the output. It must be even. For the syntax of this option,
24836 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24837 Default value is @code{1920x1080}.
24838
24839 @item fps, rate, r
24840 Set the output frame rate. Default value is @code{25}.
24841
24842 @item bar_h
24843 Set the bargraph height. It must be even. Default value is @code{-1} which
24844 computes the bargraph height automatically.
24845
24846 @item axis_h
24847 Set the axis height. It must be even. Default value is @code{-1} which computes
24848 the axis height automatically.
24849
24850 @item sono_h
24851 Set the sonogram height. It must be even. Default value is @code{-1} which
24852 computes the sonogram height automatically.
24853
24854 @item fullhd
24855 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
24856 instead. Default value is @code{1}.
24857
24858 @item sono_v, volume
24859 Specify the sonogram volume expression. It can contain variables:
24860 @table @option
24861 @item bar_v
24862 the @var{bar_v} evaluated expression
24863 @item frequency, freq, f
24864 the frequency where it is evaluated
24865 @item timeclamp, tc
24866 the value of @var{timeclamp} option
24867 @end table
24868 and functions:
24869 @table @option
24870 @item a_weighting(f)
24871 A-weighting of equal loudness
24872 @item b_weighting(f)
24873 B-weighting of equal loudness
24874 @item c_weighting(f)
24875 C-weighting of equal loudness.
24876 @end table
24877 Default value is @code{16}.
24878
24879 @item bar_v, volume2
24880 Specify the bargraph volume expression. It can contain variables:
24881 @table @option
24882 @item sono_v
24883 the @var{sono_v} evaluated expression
24884 @item frequency, freq, f
24885 the frequency where it is evaluated
24886 @item timeclamp, tc
24887 the value of @var{timeclamp} option
24888 @end table
24889 and functions:
24890 @table @option
24891 @item a_weighting(f)
24892 A-weighting of equal loudness
24893 @item b_weighting(f)
24894 B-weighting of equal loudness
24895 @item c_weighting(f)
24896 C-weighting of equal loudness.
24897 @end table
24898 Default value is @code{sono_v}.
24899
24900 @item sono_g, gamma
24901 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
24902 higher gamma makes the spectrum having more range. Default value is @code{3}.
24903 Acceptable range is @code{[1, 7]}.
24904
24905 @item bar_g, gamma2
24906 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
24907 @code{[1, 7]}.
24908
24909 @item bar_t
24910 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
24911 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
24912
24913 @item timeclamp, tc
24914 Specify the transform timeclamp. At low frequency, there is trade-off between
24915 accuracy in time domain and frequency domain. If timeclamp is lower,
24916 event in time domain is represented more accurately (such as fast bass drum),
24917 otherwise event in frequency domain is represented more accurately
24918 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
24919
24920 @item attack
24921 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
24922 limits future samples by applying asymmetric windowing in time domain, useful
24923 when low latency is required. Accepted range is @code{[0, 1]}.
24924
24925 @item basefreq
24926 Specify the transform base frequency. Default value is @code{20.01523126408007475},
24927 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
24928
24929 @item endfreq
24930 Specify the transform end frequency. Default value is @code{20495.59681441799654},
24931 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
24932
24933 @item coeffclamp
24934 This option is deprecated and ignored.
24935
24936 @item tlength
24937 Specify the transform length in time domain. Use this option to control accuracy
24938 trade-off between time domain and frequency domain at every frequency sample.
24939 It can contain variables:
24940 @table @option
24941 @item frequency, freq, f
24942 the frequency where it is evaluated
24943 @item timeclamp, tc
24944 the value of @var{timeclamp} option.
24945 @end table
24946 Default value is @code{384*tc/(384+tc*f)}.
24947
24948 @item count
24949 Specify the transform count for every video frame. Default value is @code{6}.
24950 Acceptable range is @code{[1, 30]}.
24951
24952 @item fcount
24953 Specify the transform count for every single pixel. Default value is @code{0},
24954 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
24955
24956 @item fontfile
24957 Specify font file for use with freetype to draw the axis. If not specified,
24958 use embedded font. Note that drawing with font file or embedded font is not
24959 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
24960 option instead.
24961
24962 @item font
24963 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
24964 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
24965 escaping.
24966
24967 @item fontcolor
24968 Specify font color expression. This is arithmetic expression that should return
24969 integer value 0xRRGGBB. It can contain variables:
24970 @table @option
24971 @item frequency, freq, f
24972 the frequency where it is evaluated
24973 @item timeclamp, tc
24974 the value of @var{timeclamp} option
24975 @end table
24976 and functions:
24977 @table @option
24978 @item midi(f)
24979 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
24980 @item r(x), g(x), b(x)
24981 red, green, and blue value of intensity x.
24982 @end table
24983 Default value is @code{st(0, (midi(f)-59.5)/12);
24984 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
24985 r(1-ld(1)) + b(ld(1))}.
24986
24987 @item axisfile
24988 Specify image file to draw the axis. This option override @var{fontfile} and
24989 @var{fontcolor} option.
24990
24991 @item axis, text
24992 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
24993 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
24994 Default value is @code{1}.
24995
24996 @item csp
24997 Set colorspace. The accepted values are:
24998 @table @samp
24999 @item unspecified
25000 Unspecified (default)
25001
25002 @item bt709
25003 BT.709
25004
25005 @item fcc
25006 FCC
25007
25008 @item bt470bg
25009 BT.470BG or BT.601-6 625
25010
25011 @item smpte170m
25012 SMPTE-170M or BT.601-6 525
25013
25014 @item smpte240m
25015 SMPTE-240M
25016
25017 @item bt2020ncl
25018 BT.2020 with non-constant luminance
25019
25020 @end table
25021
25022 @item cscheme
25023 Set spectrogram color scheme. This is list of floating point values with format
25024 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
25025 The default is @code{1|0.5|0|0|0.5|1}.
25026
25027 @end table
25028
25029 @subsection Examples
25030
25031 @itemize
25032 @item
25033 Playing audio while showing the spectrum:
25034 @example
25035 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
25036 @end example
25037
25038 @item
25039 Same as above, but with frame rate 30 fps:
25040 @example
25041 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
25042 @end example
25043
25044 @item
25045 Playing at 1280x720:
25046 @example
25047 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
25048 @end example
25049
25050 @item
25051 Disable sonogram display:
25052 @example
25053 sono_h=0
25054 @end example
25055
25056 @item
25057 A1 and its harmonics: A1, A2, (near)E3, A3:
25058 @example
25059 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),
25060                  asplit[a][out1]; [a] showcqt [out0]'
25061 @end example
25062
25063 @item
25064 Same as above, but with more accuracy in frequency domain:
25065 @example
25066 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),
25067                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
25068 @end example
25069
25070 @item
25071 Custom volume:
25072 @example
25073 bar_v=10:sono_v=bar_v*a_weighting(f)
25074 @end example
25075
25076 @item
25077 Custom gamma, now spectrum is linear to the amplitude.
25078 @example
25079 bar_g=2:sono_g=2
25080 @end example
25081
25082 @item
25083 Custom tlength equation:
25084 @example
25085 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)))'
25086 @end example
25087
25088 @item
25089 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
25090 @example
25091 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
25092 @end example
25093
25094 @item
25095 Custom font using fontconfig:
25096 @example
25097 font='Courier New,Monospace,mono|bold'
25098 @end example
25099
25100 @item
25101 Custom frequency range with custom axis using image file:
25102 @example
25103 axisfile=myaxis.png:basefreq=40:endfreq=10000
25104 @end example
25105 @end itemize
25106
25107 @section showfreqs
25108
25109 Convert input audio to video output representing the audio power spectrum.
25110 Audio amplitude is on Y-axis while frequency is on X-axis.
25111
25112 The filter accepts the following options:
25113
25114 @table @option
25115 @item size, s
25116 Specify size of video. For the syntax of this option, check the
25117 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25118 Default is @code{1024x512}.
25119
25120 @item mode
25121 Set display mode.
25122 This set how each frequency bin will be represented.
25123
25124 It accepts the following values:
25125 @table @samp
25126 @item line
25127 @item bar
25128 @item dot
25129 @end table
25130 Default is @code{bar}.
25131
25132 @item ascale
25133 Set amplitude scale.
25134
25135 It accepts the following values:
25136 @table @samp
25137 @item lin
25138 Linear scale.
25139
25140 @item sqrt
25141 Square root scale.
25142
25143 @item cbrt
25144 Cubic root scale.
25145
25146 @item log
25147 Logarithmic scale.
25148 @end table
25149 Default is @code{log}.
25150
25151 @item fscale
25152 Set frequency scale.
25153
25154 It accepts the following values:
25155 @table @samp
25156 @item lin
25157 Linear scale.
25158
25159 @item log
25160 Logarithmic scale.
25161
25162 @item rlog
25163 Reverse logarithmic scale.
25164 @end table
25165 Default is @code{lin}.
25166
25167 @item win_size
25168 Set window size. Allowed range is from 16 to 65536.
25169
25170 Default is @code{2048}
25171
25172 @item win_func
25173 Set windowing function.
25174
25175 It accepts the following values:
25176 @table @samp
25177 @item rect
25178 @item bartlett
25179 @item hanning
25180 @item hamming
25181 @item blackman
25182 @item welch
25183 @item flattop
25184 @item bharris
25185 @item bnuttall
25186 @item bhann
25187 @item sine
25188 @item nuttall
25189 @item lanczos
25190 @item gauss
25191 @item tukey
25192 @item dolph
25193 @item cauchy
25194 @item parzen
25195 @item poisson
25196 @item bohman
25197 @end table
25198 Default is @code{hanning}.
25199
25200 @item overlap
25201 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25202 which means optimal overlap for selected window function will be picked.
25203
25204 @item averaging
25205 Set time averaging. Setting this to 0 will display current maximal peaks.
25206 Default is @code{1}, which means time averaging is disabled.
25207
25208 @item colors
25209 Specify list of colors separated by space or by '|' which will be used to
25210 draw channel frequencies. Unrecognized or missing colors will be replaced
25211 by white color.
25212
25213 @item cmode
25214 Set channel display mode.
25215
25216 It accepts the following values:
25217 @table @samp
25218 @item combined
25219 @item separate
25220 @end table
25221 Default is @code{combined}.
25222
25223 @item minamp
25224 Set minimum amplitude used in @code{log} amplitude scaler.
25225
25226 @item data
25227 Set data display mode.
25228
25229 It accepts the following values:
25230 @table @samp
25231 @item magnitude
25232 @item phase
25233 @item delay
25234 @end table
25235 Default is @code{magnitude}.
25236 @end table
25237
25238 @section showspatial
25239
25240 Convert stereo input audio to a video output, representing the spatial relationship
25241 between two channels.
25242
25243 The filter accepts the following options:
25244
25245 @table @option
25246 @item size, s
25247 Specify the video size for the output. For the syntax of this option, check the
25248 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25249 Default value is @code{512x512}.
25250
25251 @item win_size
25252 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
25253
25254 @item win_func
25255 Set window function.
25256
25257 It accepts the following values:
25258 @table @samp
25259 @item rect
25260 @item bartlett
25261 @item hann
25262 @item hanning
25263 @item hamming
25264 @item blackman
25265 @item welch
25266 @item flattop
25267 @item bharris
25268 @item bnuttall
25269 @item bhann
25270 @item sine
25271 @item nuttall
25272 @item lanczos
25273 @item gauss
25274 @item tukey
25275 @item dolph
25276 @item cauchy
25277 @item parzen
25278 @item poisson
25279 @item bohman
25280 @end table
25281
25282 Default value is @code{hann}.
25283
25284 @item overlap
25285 Set ratio of overlap window. Default value is @code{0.5}.
25286 When value is @code{1} overlap is set to recommended size for specific
25287 window function currently used.
25288 @end table
25289
25290 @anchor{showspectrum}
25291 @section showspectrum
25292
25293 Convert input audio to a video output, representing the audio frequency
25294 spectrum.
25295
25296 The filter accepts the following options:
25297
25298 @table @option
25299 @item size, s
25300 Specify the video size for the output. For the syntax of this option, check the
25301 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25302 Default value is @code{640x512}.
25303
25304 @item slide
25305 Specify how the spectrum should slide along the window.
25306
25307 It accepts the following values:
25308 @table @samp
25309 @item replace
25310 the samples start again on the left when they reach the right
25311 @item scroll
25312 the samples scroll from right to left
25313 @item fullframe
25314 frames are only produced when the samples reach the right
25315 @item rscroll
25316 the samples scroll from left to right
25317 @end table
25318
25319 Default value is @code{replace}.
25320
25321 @item mode
25322 Specify display mode.
25323
25324 It accepts the following values:
25325 @table @samp
25326 @item combined
25327 all channels are displayed in the same row
25328 @item separate
25329 all channels are displayed in separate rows
25330 @end table
25331
25332 Default value is @samp{combined}.
25333
25334 @item color
25335 Specify display color mode.
25336
25337 It accepts the following values:
25338 @table @samp
25339 @item channel
25340 each channel is displayed in a separate color
25341 @item intensity
25342 each channel is displayed using the same color scheme
25343 @item rainbow
25344 each channel is displayed using the rainbow color scheme
25345 @item moreland
25346 each channel is displayed using the moreland color scheme
25347 @item nebulae
25348 each channel is displayed using the nebulae color scheme
25349 @item fire
25350 each channel is displayed using the fire color scheme
25351 @item fiery
25352 each channel is displayed using the fiery color scheme
25353 @item fruit
25354 each channel is displayed using the fruit color scheme
25355 @item cool
25356 each channel is displayed using the cool color scheme
25357 @item magma
25358 each channel is displayed using the magma color scheme
25359 @item green
25360 each channel is displayed using the green color scheme
25361 @item viridis
25362 each channel is displayed using the viridis color scheme
25363 @item plasma
25364 each channel is displayed using the plasma color scheme
25365 @item cividis
25366 each channel is displayed using the cividis color scheme
25367 @item terrain
25368 each channel is displayed using the terrain color scheme
25369 @end table
25370
25371 Default value is @samp{channel}.
25372
25373 @item scale
25374 Specify scale used for calculating intensity color values.
25375
25376 It accepts the following values:
25377 @table @samp
25378 @item lin
25379 linear
25380 @item sqrt
25381 square root, default
25382 @item cbrt
25383 cubic root
25384 @item log
25385 logarithmic
25386 @item 4thrt
25387 4th root
25388 @item 5thrt
25389 5th root
25390 @end table
25391
25392 Default value is @samp{sqrt}.
25393
25394 @item fscale
25395 Specify frequency scale.
25396
25397 It accepts the following values:
25398 @table @samp
25399 @item lin
25400 linear
25401 @item log
25402 logarithmic
25403 @end table
25404
25405 Default value is @samp{lin}.
25406
25407 @item saturation
25408 Set saturation modifier for displayed colors. Negative values provide
25409 alternative color scheme. @code{0} is no saturation at all.
25410 Saturation must be in [-10.0, 10.0] range.
25411 Default value is @code{1}.
25412
25413 @item win_func
25414 Set window function.
25415
25416 It accepts the following values:
25417 @table @samp
25418 @item rect
25419 @item bartlett
25420 @item hann
25421 @item hanning
25422 @item hamming
25423 @item blackman
25424 @item welch
25425 @item flattop
25426 @item bharris
25427 @item bnuttall
25428 @item bhann
25429 @item sine
25430 @item nuttall
25431 @item lanczos
25432 @item gauss
25433 @item tukey
25434 @item dolph
25435 @item cauchy
25436 @item parzen
25437 @item poisson
25438 @item bohman
25439 @end table
25440
25441 Default value is @code{hann}.
25442
25443 @item orientation
25444 Set orientation of time vs frequency axis. Can be @code{vertical} or
25445 @code{horizontal}. Default is @code{vertical}.
25446
25447 @item overlap
25448 Set ratio of overlap window. Default value is @code{0}.
25449 When value is @code{1} overlap is set to recommended size for specific
25450 window function currently used.
25451
25452 @item gain
25453 Set scale gain for calculating intensity color values.
25454 Default value is @code{1}.
25455
25456 @item data
25457 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
25458
25459 @item rotation
25460 Set color rotation, must be in [-1.0, 1.0] range.
25461 Default value is @code{0}.
25462
25463 @item start
25464 Set start frequency from which to display spectrogram. Default is @code{0}.
25465
25466 @item stop
25467 Set stop frequency to which to display spectrogram. Default is @code{0}.
25468
25469 @item fps
25470 Set upper frame rate limit. Default is @code{auto}, unlimited.
25471
25472 @item legend
25473 Draw time and frequency axes and legends. Default is disabled.
25474 @end table
25475
25476 The usage is very similar to the showwaves filter; see the examples in that
25477 section.
25478
25479 @subsection Examples
25480
25481 @itemize
25482 @item
25483 Large window with logarithmic color scaling:
25484 @example
25485 showspectrum=s=1280x480:scale=log
25486 @end example
25487
25488 @item
25489 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
25490 @example
25491 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
25492              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
25493 @end example
25494 @end itemize
25495
25496 @section showspectrumpic
25497
25498 Convert input audio to a single video frame, representing the audio frequency
25499 spectrum.
25500
25501 The filter accepts the following options:
25502
25503 @table @option
25504 @item size, s
25505 Specify the video size for the output. For the syntax of this option, check the
25506 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25507 Default value is @code{4096x2048}.
25508
25509 @item mode
25510 Specify display mode.
25511
25512 It accepts the following values:
25513 @table @samp
25514 @item combined
25515 all channels are displayed in the same row
25516 @item separate
25517 all channels are displayed in separate rows
25518 @end table
25519 Default value is @samp{combined}.
25520
25521 @item color
25522 Specify display color mode.
25523
25524 It accepts the following values:
25525 @table @samp
25526 @item channel
25527 each channel is displayed in a separate color
25528 @item intensity
25529 each channel is displayed using the same color scheme
25530 @item rainbow
25531 each channel is displayed using the rainbow color scheme
25532 @item moreland
25533 each channel is displayed using the moreland color scheme
25534 @item nebulae
25535 each channel is displayed using the nebulae color scheme
25536 @item fire
25537 each channel is displayed using the fire color scheme
25538 @item fiery
25539 each channel is displayed using the fiery color scheme
25540 @item fruit
25541 each channel is displayed using the fruit color scheme
25542 @item cool
25543 each channel is displayed using the cool color scheme
25544 @item magma
25545 each channel is displayed using the magma color scheme
25546 @item green
25547 each channel is displayed using the green color scheme
25548 @item viridis
25549 each channel is displayed using the viridis color scheme
25550 @item plasma
25551 each channel is displayed using the plasma color scheme
25552 @item cividis
25553 each channel is displayed using the cividis color scheme
25554 @item terrain
25555 each channel is displayed using the terrain color scheme
25556 @end table
25557 Default value is @samp{intensity}.
25558
25559 @item scale
25560 Specify scale used for calculating intensity color values.
25561
25562 It accepts the following values:
25563 @table @samp
25564 @item lin
25565 linear
25566 @item sqrt
25567 square root, default
25568 @item cbrt
25569 cubic root
25570 @item log
25571 logarithmic
25572 @item 4thrt
25573 4th root
25574 @item 5thrt
25575 5th root
25576 @end table
25577 Default value is @samp{log}.
25578
25579 @item fscale
25580 Specify frequency scale.
25581
25582 It accepts the following values:
25583 @table @samp
25584 @item lin
25585 linear
25586 @item log
25587 logarithmic
25588 @end table
25589
25590 Default value is @samp{lin}.
25591
25592 @item saturation
25593 Set saturation modifier for displayed colors. Negative values provide
25594 alternative color scheme. @code{0} is no saturation at all.
25595 Saturation must be in [-10.0, 10.0] range.
25596 Default value is @code{1}.
25597
25598 @item win_func
25599 Set window function.
25600
25601 It accepts the following values:
25602 @table @samp
25603 @item rect
25604 @item bartlett
25605 @item hann
25606 @item hanning
25607 @item hamming
25608 @item blackman
25609 @item welch
25610 @item flattop
25611 @item bharris
25612 @item bnuttall
25613 @item bhann
25614 @item sine
25615 @item nuttall
25616 @item lanczos
25617 @item gauss
25618 @item tukey
25619 @item dolph
25620 @item cauchy
25621 @item parzen
25622 @item poisson
25623 @item bohman
25624 @end table
25625 Default value is @code{hann}.
25626
25627 @item orientation
25628 Set orientation of time vs frequency axis. Can be @code{vertical} or
25629 @code{horizontal}. Default is @code{vertical}.
25630
25631 @item gain
25632 Set scale gain for calculating intensity color values.
25633 Default value is @code{1}.
25634
25635 @item legend
25636 Draw time and frequency axes and legends. Default is enabled.
25637
25638 @item rotation
25639 Set color rotation, must be in [-1.0, 1.0] range.
25640 Default value is @code{0}.
25641
25642 @item start
25643 Set start frequency from which to display spectrogram. Default is @code{0}.
25644
25645 @item stop
25646 Set stop frequency to which to display spectrogram. Default is @code{0}.
25647 @end table
25648
25649 @subsection Examples
25650
25651 @itemize
25652 @item
25653 Extract an audio spectrogram of a whole audio track
25654 in a 1024x1024 picture using @command{ffmpeg}:
25655 @example
25656 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
25657 @end example
25658 @end itemize
25659
25660 @section showvolume
25661
25662 Convert input audio volume to a video output.
25663
25664 The filter accepts the following options:
25665
25666 @table @option
25667 @item rate, r
25668 Set video rate.
25669
25670 @item b
25671 Set border width, allowed range is [0, 5]. Default is 1.
25672
25673 @item w
25674 Set channel width, allowed range is [80, 8192]. Default is 400.
25675
25676 @item h
25677 Set channel height, allowed range is [1, 900]. Default is 20.
25678
25679 @item f
25680 Set fade, allowed range is [0, 1]. Default is 0.95.
25681
25682 @item c
25683 Set volume color expression.
25684
25685 The expression can use the following variables:
25686
25687 @table @option
25688 @item VOLUME
25689 Current max volume of channel in dB.
25690
25691 @item PEAK
25692 Current peak.
25693
25694 @item CHANNEL
25695 Current channel number, starting from 0.
25696 @end table
25697
25698 @item t
25699 If set, displays channel names. Default is enabled.
25700
25701 @item v
25702 If set, displays volume values. Default is enabled.
25703
25704 @item o
25705 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
25706 default is @code{h}.
25707
25708 @item s
25709 Set step size, allowed range is [0, 5]. Default is 0, which means
25710 step is disabled.
25711
25712 @item p
25713 Set background opacity, allowed range is [0, 1]. Default is 0.
25714
25715 @item m
25716 Set metering mode, can be peak: @code{p} or rms: @code{r},
25717 default is @code{p}.
25718
25719 @item ds
25720 Set display scale, can be linear: @code{lin} or log: @code{log},
25721 default is @code{lin}.
25722
25723 @item dm
25724 In second.
25725 If set to > 0., display a line for the max level
25726 in the previous seconds.
25727 default is disabled: @code{0.}
25728
25729 @item dmc
25730 The color of the max line. Use when @code{dm} option is set to > 0.
25731 default is: @code{orange}
25732 @end table
25733
25734 @section showwaves
25735
25736 Convert input audio to a video output, representing the samples waves.
25737
25738 The filter accepts the following options:
25739
25740 @table @option
25741 @item size, s
25742 Specify the video size for the output. For the syntax of this option, check the
25743 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25744 Default value is @code{600x240}.
25745
25746 @item mode
25747 Set display mode.
25748
25749 Available values are:
25750 @table @samp
25751 @item point
25752 Draw a point for each sample.
25753
25754 @item line
25755 Draw a vertical line for each sample.
25756
25757 @item p2p
25758 Draw a point for each sample and a line between them.
25759
25760 @item cline
25761 Draw a centered vertical line for each sample.
25762 @end table
25763
25764 Default value is @code{point}.
25765
25766 @item n
25767 Set the number of samples which are printed on the same column. A
25768 larger value will decrease the frame rate. Must be a positive
25769 integer. This option can be set only if the value for @var{rate}
25770 is not explicitly specified.
25771
25772 @item rate, r
25773 Set the (approximate) output frame rate. This is done by setting the
25774 option @var{n}. Default value is "25".
25775
25776 @item split_channels
25777 Set if channels should be drawn separately or overlap. Default value is 0.
25778
25779 @item colors
25780 Set colors separated by '|' which are going to be used for drawing of each channel.
25781
25782 @item scale
25783 Set amplitude scale.
25784
25785 Available values are:
25786 @table @samp
25787 @item lin
25788 Linear.
25789
25790 @item log
25791 Logarithmic.
25792
25793 @item sqrt
25794 Square root.
25795
25796 @item cbrt
25797 Cubic root.
25798 @end table
25799
25800 Default is linear.
25801
25802 @item draw
25803 Set the draw mode. This is mostly useful to set for high @var{n}.
25804
25805 Available values are:
25806 @table @samp
25807 @item scale
25808 Scale pixel values for each drawn sample.
25809
25810 @item full
25811 Draw every sample directly.
25812 @end table
25813
25814 Default value is @code{scale}.
25815 @end table
25816
25817 @subsection Examples
25818
25819 @itemize
25820 @item
25821 Output the input file audio and the corresponding video representation
25822 at the same time:
25823 @example
25824 amovie=a.mp3,asplit[out0],showwaves[out1]
25825 @end example
25826
25827 @item
25828 Create a synthetic signal and show it with showwaves, forcing a
25829 frame rate of 30 frames per second:
25830 @example
25831 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
25832 @end example
25833 @end itemize
25834
25835 @section showwavespic
25836
25837 Convert input audio to a single video frame, representing the samples waves.
25838
25839 The filter accepts the following options:
25840
25841 @table @option
25842 @item size, s
25843 Specify the video size for the output. For the syntax of this option, check the
25844 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25845 Default value is @code{600x240}.
25846
25847 @item split_channels
25848 Set if channels should be drawn separately or overlap. Default value is 0.
25849
25850 @item colors
25851 Set colors separated by '|' which are going to be used for drawing of each channel.
25852
25853 @item scale
25854 Set amplitude scale.
25855
25856 Available values are:
25857 @table @samp
25858 @item lin
25859 Linear.
25860
25861 @item log
25862 Logarithmic.
25863
25864 @item sqrt
25865 Square root.
25866
25867 @item cbrt
25868 Cubic root.
25869 @end table
25870
25871 Default is linear.
25872
25873 @item draw
25874 Set the draw mode.
25875
25876 Available values are:
25877 @table @samp
25878 @item scale
25879 Scale pixel values for each drawn sample.
25880
25881 @item full
25882 Draw every sample directly.
25883 @end table
25884
25885 Default value is @code{scale}.
25886
25887 @item filter
25888 Set the filter mode.
25889
25890 Available values are:
25891 @table @samp
25892 @item average
25893 Use average samples values for each drawn sample.
25894
25895 @item peak
25896 Use peak samples values for each drawn sample.
25897 @end table
25898
25899 Default value is @code{average}.
25900 @end table
25901
25902 @subsection Examples
25903
25904 @itemize
25905 @item
25906 Extract a channel split representation of the wave form of a whole audio track
25907 in a 1024x800 picture using @command{ffmpeg}:
25908 @example
25909 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
25910 @end example
25911 @end itemize
25912
25913 @section sidedata, asidedata
25914
25915 Delete frame side data, or select frames based on it.
25916
25917 This filter accepts the following options:
25918
25919 @table @option
25920 @item mode
25921 Set mode of operation of the filter.
25922
25923 Can be one of the following:
25924
25925 @table @samp
25926 @item select
25927 Select every frame with side data of @code{type}.
25928
25929 @item delete
25930 Delete side data of @code{type}. If @code{type} is not set, delete all side
25931 data in the frame.
25932
25933 @end table
25934
25935 @item type
25936 Set side data type used with all modes. Must be set for @code{select} mode. For
25937 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
25938 in @file{libavutil/frame.h}. For example, to choose
25939 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
25940
25941 @end table
25942
25943 @section spectrumsynth
25944
25945 Synthesize audio from 2 input video spectrums, first input stream represents
25946 magnitude across time and second represents phase across time.
25947 The filter will transform from frequency domain as displayed in videos back
25948 to time domain as presented in audio output.
25949
25950 This filter is primarily created for reversing processed @ref{showspectrum}
25951 filter outputs, but can synthesize sound from other spectrograms too.
25952 But in such case results are going to be poor if the phase data is not
25953 available, because in such cases phase data need to be recreated, usually
25954 it's just recreated from random noise.
25955 For best results use gray only output (@code{channel} color mode in
25956 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
25957 @code{lin} scale for phase video. To produce phase, for 2nd video, use
25958 @code{data} option. Inputs videos should generally use @code{fullframe}
25959 slide mode as that saves resources needed for decoding video.
25960
25961 The filter accepts the following options:
25962
25963 @table @option
25964 @item sample_rate
25965 Specify sample rate of output audio, the sample rate of audio from which
25966 spectrum was generated may differ.
25967
25968 @item channels
25969 Set number of channels represented in input video spectrums.
25970
25971 @item scale
25972 Set scale which was used when generating magnitude input spectrum.
25973 Can be @code{lin} or @code{log}. Default is @code{log}.
25974
25975 @item slide
25976 Set slide which was used when generating inputs spectrums.
25977 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
25978 Default is @code{fullframe}.
25979
25980 @item win_func
25981 Set window function used for resynthesis.
25982
25983 @item overlap
25984 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25985 which means optimal overlap for selected window function will be picked.
25986
25987 @item orientation
25988 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
25989 Default is @code{vertical}.
25990 @end table
25991
25992 @subsection Examples
25993
25994 @itemize
25995 @item
25996 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
25997 then resynthesize videos back to audio with spectrumsynth:
25998 @example
25999 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
26000 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
26001 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
26002 @end example
26003 @end itemize
26004
26005 @section split, asplit
26006
26007 Split input into several identical outputs.
26008
26009 @code{asplit} works with audio input, @code{split} with video.
26010
26011 The filter accepts a single parameter which specifies the number of outputs. If
26012 unspecified, it defaults to 2.
26013
26014 @subsection Examples
26015
26016 @itemize
26017 @item
26018 Create two separate outputs from the same input:
26019 @example
26020 [in] split [out0][out1]
26021 @end example
26022
26023 @item
26024 To create 3 or more outputs, you need to specify the number of
26025 outputs, like in:
26026 @example
26027 [in] asplit=3 [out0][out1][out2]
26028 @end example
26029
26030 @item
26031 Create two separate outputs from the same input, one cropped and
26032 one padded:
26033 @example
26034 [in] split [splitout1][splitout2];
26035 [splitout1] crop=100:100:0:0    [cropout];
26036 [splitout2] pad=200:200:100:100 [padout];
26037 @end example
26038
26039 @item
26040 Create 5 copies of the input audio with @command{ffmpeg}:
26041 @example
26042 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
26043 @end example
26044 @end itemize
26045
26046 @section zmq, azmq
26047
26048 Receive commands sent through a libzmq client, and forward them to
26049 filters in the filtergraph.
26050
26051 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
26052 must be inserted between two video filters, @code{azmq} between two
26053 audio filters. Both are capable to send messages to any filter type.
26054
26055 To enable these filters you need to install the libzmq library and
26056 headers and configure FFmpeg with @code{--enable-libzmq}.
26057
26058 For more information about libzmq see:
26059 @url{http://www.zeromq.org/}
26060
26061 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
26062 receives messages sent through a network interface defined by the
26063 @option{bind_address} (or the abbreviation "@option{b}") option.
26064 Default value of this option is @file{tcp://localhost:5555}. You may
26065 want to alter this value to your needs, but do not forget to escape any
26066 ':' signs (see @ref{filtergraph escaping}).
26067
26068 The received message must be in the form:
26069 @example
26070 @var{TARGET} @var{COMMAND} [@var{ARG}]
26071 @end example
26072
26073 @var{TARGET} specifies the target of the command, usually the name of
26074 the filter class or a specific filter instance name. The default
26075 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
26076 but you can override this by using the @samp{filter_name@@id} syntax
26077 (see @ref{Filtergraph syntax}).
26078
26079 @var{COMMAND} specifies the name of the command for the target filter.
26080
26081 @var{ARG} is optional and specifies the optional argument list for the
26082 given @var{COMMAND}.
26083
26084 Upon reception, the message is processed and the corresponding command
26085 is injected into the filtergraph. Depending on the result, the filter
26086 will send a reply to the client, adopting the format:
26087 @example
26088 @var{ERROR_CODE} @var{ERROR_REASON}
26089 @var{MESSAGE}
26090 @end example
26091
26092 @var{MESSAGE} is optional.
26093
26094 @subsection Examples
26095
26096 Look at @file{tools/zmqsend} for an example of a zmq client which can
26097 be used to send commands processed by these filters.
26098
26099 Consider the following filtergraph generated by @command{ffplay}.
26100 In this example the last overlay filter has an instance name. All other
26101 filters will have default instance names.
26102
26103 @example
26104 ffplay -dumpgraph 1 -f lavfi "
26105 color=s=100x100:c=red  [l];
26106 color=s=100x100:c=blue [r];
26107 nullsrc=s=200x100, zmq [bg];
26108 [bg][l]   overlay     [bg+l];
26109 [bg+l][r] overlay@@my=x=100 "
26110 @end example
26111
26112 To change the color of the left side of the video, the following
26113 command can be used:
26114 @example
26115 echo Parsed_color_0 c yellow | tools/zmqsend
26116 @end example
26117
26118 To change the right side:
26119 @example
26120 echo Parsed_color_1 c pink | tools/zmqsend
26121 @end example
26122
26123 To change the position of the right side:
26124 @example
26125 echo overlay@@my x 150 | tools/zmqsend
26126 @end example
26127
26128
26129 @c man end MULTIMEDIA FILTERS
26130
26131 @chapter Multimedia Sources
26132 @c man begin MULTIMEDIA SOURCES
26133
26134 Below is a description of the currently available multimedia sources.
26135
26136 @section amovie
26137
26138 This is the same as @ref{movie} source, except it selects an audio
26139 stream by default.
26140
26141 @anchor{movie}
26142 @section movie
26143
26144 Read audio and/or video stream(s) from a movie container.
26145
26146 It accepts the following parameters:
26147
26148 @table @option
26149 @item filename
26150 The name of the resource to read (not necessarily a file; it can also be a
26151 device or a stream accessed through some protocol).
26152
26153 @item format_name, f
26154 Specifies the format assumed for the movie to read, and can be either
26155 the name of a container or an input device. If not specified, the
26156 format is guessed from @var{movie_name} or by probing.
26157
26158 @item seek_point, sp
26159 Specifies the seek point in seconds. The frames will be output
26160 starting from this seek point. The parameter is evaluated with
26161 @code{av_strtod}, so the numerical value may be suffixed by an IS
26162 postfix. The default value is "0".
26163
26164 @item streams, s
26165 Specifies the streams to read. Several streams can be specified,
26166 separated by "+". The source will then have as many outputs, in the
26167 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
26168 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
26169 respectively the default (best suited) video and audio stream. Default
26170 is "dv", or "da" if the filter is called as "amovie".
26171
26172 @item stream_index, si
26173 Specifies the index of the video stream to read. If the value is -1,
26174 the most suitable video stream will be automatically selected. The default
26175 value is "-1". Deprecated. If the filter is called "amovie", it will select
26176 audio instead of video.
26177
26178 @item loop
26179 Specifies how many times to read the stream in sequence.
26180 If the value is 0, the stream will be looped infinitely.
26181 Default value is "1".
26182
26183 Note that when the movie is looped the source timestamps are not
26184 changed, so it will generate non monotonically increasing timestamps.
26185
26186 @item discontinuity
26187 Specifies the time difference between frames above which the point is
26188 considered a timestamp discontinuity which is removed by adjusting the later
26189 timestamps.
26190 @end table
26191
26192 It allows overlaying a second video on top of the main input of
26193 a filtergraph, as shown in this graph:
26194 @example
26195 input -----------> deltapts0 --> overlay --> output
26196                                     ^
26197                                     |
26198 movie --> scale--> deltapts1 -------+
26199 @end example
26200 @subsection Examples
26201
26202 @itemize
26203 @item
26204 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
26205 on top of the input labelled "in":
26206 @example
26207 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
26208 [in] setpts=PTS-STARTPTS [main];
26209 [main][over] overlay=16:16 [out]
26210 @end example
26211
26212 @item
26213 Read from a video4linux2 device, and overlay it on top of the input
26214 labelled "in":
26215 @example
26216 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
26217 [in] setpts=PTS-STARTPTS [main];
26218 [main][over] overlay=16:16 [out]
26219 @end example
26220
26221 @item
26222 Read the first video stream and the audio stream with id 0x81 from
26223 dvd.vob; the video is connected to the pad named "video" and the audio is
26224 connected to the pad named "audio":
26225 @example
26226 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
26227 @end example
26228 @end itemize
26229
26230 @subsection Commands
26231
26232 Both movie and amovie support the following commands:
26233 @table @option
26234 @item seek
26235 Perform seek using "av_seek_frame".
26236 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
26237 @itemize
26238 @item
26239 @var{stream_index}: If stream_index is -1, a default
26240 stream is selected, and @var{timestamp} is automatically converted
26241 from AV_TIME_BASE units to the stream specific time_base.
26242 @item
26243 @var{timestamp}: Timestamp in AVStream.time_base units
26244 or, if no stream is specified, in AV_TIME_BASE units.
26245 @item
26246 @var{flags}: Flags which select direction and seeking mode.
26247 @end itemize
26248
26249 @item get_duration
26250 Get movie duration in AV_TIME_BASE units.
26251
26252 @end table
26253
26254 @c man end MULTIMEDIA SOURCES