]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
doc/filters: add acrossover examples
[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. Availabe 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 @end table
543
544 @subsection Examples
545
546 @itemize
547 @item
548 Split input audio stream into two bands (low and high) with split frequency of 1500 Hz,
549 each band will be in separate stream:
550 @example
551 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
552 @end example
553
554 @item
555 Same as above, but with higher filter order:
556 @example
557 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500:order=4th[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
558 @end example
559
560 @item
561 Same as above, but also with additional middle band (frequencies between 1500 and 8000):
562 @example
563 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500 8000:order=4th[LOW][MID][HIGH]' -map '[LOW]' low.wav -map '[MID]' mid.wav -map '[HIGH]' high.wav
564 @end example
565 @end itemize
566
567 @section acrusher
568
569 Reduce audio bit resolution.
570
571 This filter is bit crusher with enhanced functionality. A bit crusher
572 is used to audibly reduce number of bits an audio signal is sampled
573 with. This doesn't change the bit depth at all, it just produces the
574 effect. Material reduced in bit depth sounds more harsh and "digital".
575 This filter is able to even round to continuous values instead of discrete
576 bit depths.
577 Additionally it has a D/C offset which results in different crushing of
578 the lower and the upper half of the signal.
579 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
580
581 Another feature of this filter is the logarithmic mode.
582 This setting switches from linear distances between bits to logarithmic ones.
583 The result is a much more "natural" sounding crusher which doesn't gate low
584 signals for example. The human ear has a logarithmic perception,
585 so this kind of crushing is much more pleasant.
586 Logarithmic crushing is also able to get anti-aliased.
587
588 The filter accepts the following options:
589
590 @table @option
591 @item level_in
592 Set level in.
593
594 @item level_out
595 Set level out.
596
597 @item bits
598 Set bit reduction.
599
600 @item mix
601 Set mixing amount.
602
603 @item mode
604 Can be linear: @code{lin} or logarithmic: @code{log}.
605
606 @item dc
607 Set DC.
608
609 @item aa
610 Set anti-aliasing.
611
612 @item samples
613 Set sample reduction.
614
615 @item lfo
616 Enable LFO. By default disabled.
617
618 @item lforange
619 Set LFO range.
620
621 @item lforate
622 Set LFO rate.
623 @end table
624
625 @section acue
626
627 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
628 filter.
629
630 @section adeclick
631 Remove impulsive noise from input audio.
632
633 Samples detected as impulsive noise are replaced by interpolated samples using
634 autoregressive modelling.
635
636 @table @option
637 @item w
638 Set window size, in milliseconds. Allowed range is from @code{10} to
639 @code{100}. Default value is @code{55} milliseconds.
640 This sets size of window which will be processed at once.
641
642 @item o
643 Set window overlap, in percentage of window size. Allowed range is from
644 @code{50} to @code{95}. Default value is @code{75} percent.
645 Setting this to a very high value increases impulsive noise removal but makes
646 whole process much slower.
647
648 @item a
649 Set autoregression order, in percentage of window size. Allowed range is from
650 @code{0} to @code{25}. Default value is @code{2} percent. This option also
651 controls quality of interpolated samples using neighbour good samples.
652
653 @item t
654 Set threshold value. Allowed range is from @code{1} to @code{100}.
655 Default value is @code{2}.
656 This controls the strength of impulsive noise which is going to be removed.
657 The lower value, the more samples will be detected as impulsive noise.
658
659 @item b
660 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
661 @code{10}. Default value is @code{2}.
662 If any two samples detected as noise are spaced less than this value then any
663 sample between those two samples will be also detected as noise.
664
665 @item m
666 Set overlap method.
667
668 It accepts the following values:
669 @table @option
670 @item a
671 Select overlap-add method. Even not interpolated samples are slightly
672 changed with this method.
673
674 @item s
675 Select overlap-save method. Not interpolated samples remain unchanged.
676 @end table
677
678 Default value is @code{a}.
679 @end table
680
681 @section adeclip
682 Remove clipped samples from input audio.
683
684 Samples detected as clipped are replaced by interpolated samples using
685 autoregressive modelling.
686
687 @table @option
688 @item w
689 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
690 Default value is @code{55} milliseconds.
691 This sets size of window which will be processed at once.
692
693 @item o
694 Set window overlap, in percentage of window size. Allowed range is from @code{50}
695 to @code{95}. Default value is @code{75} percent.
696
697 @item a
698 Set autoregression order, in percentage of window size. Allowed range is from
699 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
700 quality of interpolated samples using neighbour good samples.
701
702 @item t
703 Set threshold value. Allowed range is from @code{1} to @code{100}.
704 Default value is @code{10}. Higher values make clip detection less aggressive.
705
706 @item n
707 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
708 Default value is @code{1000}. Higher values make clip detection less aggressive.
709
710 @item m
711 Set overlap method.
712
713 It accepts the following values:
714 @table @option
715 @item a
716 Select overlap-add method. Even not interpolated samples are slightly changed
717 with this method.
718
719 @item s
720 Select overlap-save method. Not interpolated samples remain unchanged.
721 @end table
722
723 Default value is @code{a}.
724 @end table
725
726 @section adelay
727
728 Delay one or more audio channels.
729
730 Samples in delayed channel are filled with silence.
731
732 The filter accepts the following option:
733
734 @table @option
735 @item delays
736 Set list of delays in milliseconds for each channel separated by '|'.
737 Unused delays will be silently ignored. If number of given delays is
738 smaller than number of channels all remaining channels will not be delayed.
739 If you want to delay exact number of samples, append 'S' to number.
740 If you want instead to delay in seconds, append 's' to number.
741
742 @item all
743 Use last set delay for all remaining channels. By default is disabled.
744 This option if enabled changes how option @code{delays} is interpreted.
745 @end table
746
747 @subsection Examples
748
749 @itemize
750 @item
751 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
752 the second channel (and any other channels that may be present) unchanged.
753 @example
754 adelay=1500|0|500
755 @end example
756
757 @item
758 Delay second channel by 500 samples, the third channel by 700 samples and leave
759 the first channel (and any other channels that may be present) unchanged.
760 @example
761 adelay=0|500S|700S
762 @end example
763
764 @item
765 Delay all channels by same number of samples:
766 @example
767 adelay=delays=64S:all=1
768 @end example
769 @end itemize
770
771 @section adenorm
772 Remedy denormals in audio by adding extremely low-level noise.
773
774 A description of the accepted parameters follows.
775
776 @table @option
777 @item level
778 Set level of added noise in dB. Default is @code{-351}.
779 Allowed range is from -451 to -90.
780
781 @item type
782 Set type of added noise.
783
784 @table @option
785 @item dc
786 Add DC signal.
787 @item ac
788 Add AC signal.
789 @item square
790 Add square signal.
791 @item pulse
792 Add pulse signal.
793 @end table
794
795 Default is @code{dc}.
796 @end table
797
798 @section aderivative, aintegral
799
800 Compute derivative/integral of audio stream.
801
802 Applying both filters one after another produces original audio.
803
804 @section aecho
805
806 Apply echoing to the input audio.
807
808 Echoes are reflected sound and can occur naturally amongst mountains
809 (and sometimes large buildings) when talking or shouting; digital echo
810 effects emulate this behaviour and are often used to help fill out the
811 sound of a single instrument or vocal. The time difference between the
812 original signal and the reflection is the @code{delay}, and the
813 loudness of the reflected signal is the @code{decay}.
814 Multiple echoes can have different delays and decays.
815
816 A description of the accepted parameters follows.
817
818 @table @option
819 @item in_gain
820 Set input gain of reflected signal. Default is @code{0.6}.
821
822 @item out_gain
823 Set output gain of reflected signal. Default is @code{0.3}.
824
825 @item delays
826 Set list of time intervals in milliseconds between original signal and reflections
827 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
828 Default is @code{1000}.
829
830 @item decays
831 Set list of loudness of reflected signals separated by '|'.
832 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
833 Default is @code{0.5}.
834 @end table
835
836 @subsection Examples
837
838 @itemize
839 @item
840 Make it sound as if there are twice as many instruments as are actually playing:
841 @example
842 aecho=0.8:0.88:60:0.4
843 @end example
844
845 @item
846 If delay is very short, then it sounds like a (metallic) robot playing music:
847 @example
848 aecho=0.8:0.88:6:0.4
849 @end example
850
851 @item
852 A longer delay will sound like an open air concert in the mountains:
853 @example
854 aecho=0.8:0.9:1000:0.3
855 @end example
856
857 @item
858 Same as above but with one more mountain:
859 @example
860 aecho=0.8:0.9:1000|1800:0.3|0.25
861 @end example
862 @end itemize
863
864 @section aemphasis
865 Audio emphasis filter creates or restores material directly taken from LPs or
866 emphased CDs with different filter curves. E.g. to store music on vinyl the
867 signal has to be altered by a filter first to even out the disadvantages of
868 this recording medium.
869 Once the material is played back the inverse filter has to be applied to
870 restore the distortion of the frequency response.
871
872 The filter accepts the following options:
873
874 @table @option
875 @item level_in
876 Set input gain.
877
878 @item level_out
879 Set output gain.
880
881 @item mode
882 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
883 use @code{production} mode. Default is @code{reproduction} mode.
884
885 @item type
886 Set filter type. Selects medium. Can be one of the following:
887
888 @table @option
889 @item col
890 select Columbia.
891 @item emi
892 select EMI.
893 @item bsi
894 select BSI (78RPM).
895 @item riaa
896 select RIAA.
897 @item cd
898 select Compact Disc (CD).
899 @item 50fm
900 select 50µs (FM).
901 @item 75fm
902 select 75µs (FM).
903 @item 50kf
904 select 50µs (FM-KF).
905 @item 75kf
906 select 75µs (FM-KF).
907 @end table
908 @end table
909
910 @section aeval
911
912 Modify an audio signal according to the specified expressions.
913
914 This filter accepts one or more expressions (one for each channel),
915 which are evaluated and used to modify a corresponding audio signal.
916
917 It accepts the following parameters:
918
919 @table @option
920 @item exprs
921 Set the '|'-separated expressions list for each separate channel. If
922 the number of input channels is greater than the number of
923 expressions, the last specified expression is used for the remaining
924 output channels.
925
926 @item channel_layout, c
927 Set output channel layout. If not specified, the channel layout is
928 specified by the number of expressions. If set to @samp{same}, it will
929 use by default the same input channel layout.
930 @end table
931
932 Each expression in @var{exprs} can contain the following constants and functions:
933
934 @table @option
935 @item ch
936 channel number of the current expression
937
938 @item n
939 number of the evaluated sample, starting from 0
940
941 @item s
942 sample rate
943
944 @item t
945 time of the evaluated sample expressed in seconds
946
947 @item nb_in_channels
948 @item nb_out_channels
949 input and output number of channels
950
951 @item val(CH)
952 the value of input channel with number @var{CH}
953 @end table
954
955 Note: this filter is slow. For faster processing you should use a
956 dedicated filter.
957
958 @subsection Examples
959
960 @itemize
961 @item
962 Half volume:
963 @example
964 aeval=val(ch)/2:c=same
965 @end example
966
967 @item
968 Invert phase of the second channel:
969 @example
970 aeval=val(0)|-val(1)
971 @end example
972 @end itemize
973
974 @anchor{afade}
975 @section afade
976
977 Apply fade-in/out effect to input audio.
978
979 A description of the accepted parameters follows.
980
981 @table @option
982 @item type, t
983 Specify the effect type, can be either @code{in} for fade-in, or
984 @code{out} for a fade-out effect. Default is @code{in}.
985
986 @item start_sample, ss
987 Specify the number of the start sample for starting to apply the fade
988 effect. Default is 0.
989
990 @item nb_samples, ns
991 Specify the number of samples for which the fade effect has to last. At
992 the end of the fade-in effect the output audio will have the same
993 volume as the input audio, at the end of the fade-out transition
994 the output audio will be silence. Default is 44100.
995
996 @item start_time, st
997 Specify the start time of the fade effect. Default is 0.
998 The value must be specified as a time duration; see
999 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1000 for the accepted syntax.
1001 If set this option is used instead of @var{start_sample}.
1002
1003 @item duration, d
1004 Specify the duration of the fade effect. See
1005 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1006 for the accepted syntax.
1007 At the end of the fade-in effect the output audio will have the same
1008 volume as the input audio, at the end of the fade-out transition
1009 the output audio will be silence.
1010 By default the duration is determined by @var{nb_samples}.
1011 If set this option is used instead of @var{nb_samples}.
1012
1013 @item curve
1014 Set curve for fade transition.
1015
1016 It accepts the following values:
1017 @table @option
1018 @item tri
1019 select triangular, linear slope (default)
1020 @item qsin
1021 select quarter of sine wave
1022 @item hsin
1023 select half of sine wave
1024 @item esin
1025 select exponential sine wave
1026 @item log
1027 select logarithmic
1028 @item ipar
1029 select inverted parabola
1030 @item qua
1031 select quadratic
1032 @item cub
1033 select cubic
1034 @item squ
1035 select square root
1036 @item cbr
1037 select cubic root
1038 @item par
1039 select parabola
1040 @item exp
1041 select exponential
1042 @item iqsin
1043 select inverted quarter of sine wave
1044 @item ihsin
1045 select inverted half of sine wave
1046 @item dese
1047 select double-exponential seat
1048 @item desi
1049 select double-exponential sigmoid
1050 @item losi
1051 select logistic sigmoid
1052 @item sinc
1053 select sine cardinal function
1054 @item isinc
1055 select inverted sine cardinal function
1056 @item nofade
1057 no fade applied
1058 @end table
1059 @end table
1060
1061 @subsection Examples
1062
1063 @itemize
1064 @item
1065 Fade in first 15 seconds of audio:
1066 @example
1067 afade=t=in:ss=0:d=15
1068 @end example
1069
1070 @item
1071 Fade out last 25 seconds of a 900 seconds audio:
1072 @example
1073 afade=t=out:st=875:d=25
1074 @end example
1075 @end itemize
1076
1077 @section afftdn
1078 Denoise audio samples with FFT.
1079
1080 A description of the accepted parameters follows.
1081
1082 @table @option
1083 @item nr
1084 Set the noise reduction in dB, allowed range is 0.01 to 97.
1085 Default value is 12 dB.
1086
1087 @item nf
1088 Set the noise floor in dB, allowed range is -80 to -20.
1089 Default value is -50 dB.
1090
1091 @item nt
1092 Set the noise type.
1093
1094 It accepts the following values:
1095 @table @option
1096 @item w
1097 Select white noise.
1098
1099 @item v
1100 Select vinyl noise.
1101
1102 @item s
1103 Select shellac noise.
1104
1105 @item c
1106 Select custom noise, defined in @code{bn} option.
1107
1108 Default value is white noise.
1109 @end table
1110
1111 @item bn
1112 Set custom band noise for every one of 15 bands.
1113 Bands are separated by ' ' or '|'.
1114
1115 @item rf
1116 Set the residual floor in dB, allowed range is -80 to -20.
1117 Default value is -38 dB.
1118
1119 @item tn
1120 Enable noise tracking. By default is disabled.
1121 With this enabled, noise floor is automatically adjusted.
1122
1123 @item tr
1124 Enable residual tracking. By default is disabled.
1125
1126 @item om
1127 Set the output mode.
1128
1129 It accepts the following values:
1130 @table @option
1131 @item i
1132 Pass input unchanged.
1133
1134 @item o
1135 Pass noise filtered out.
1136
1137 @item n
1138 Pass only noise.
1139
1140 Default value is @var{o}.
1141 @end table
1142 @end table
1143
1144 @subsection Commands
1145
1146 This filter supports the following commands:
1147 @table @option
1148 @item sample_noise, sn
1149 Start or stop measuring noise profile.
1150 Syntax for the command is : "start" or "stop" string.
1151 After measuring noise profile is stopped it will be
1152 automatically applied in filtering.
1153
1154 @item noise_reduction, nr
1155 Change noise reduction. Argument is single float number.
1156 Syntax for the command is : "@var{noise_reduction}"
1157
1158 @item noise_floor, nf
1159 Change noise floor. Argument is single float number.
1160 Syntax for the command is : "@var{noise_floor}"
1161
1162 @item output_mode, om
1163 Change output mode operation.
1164 Syntax for the command is : "i", "o" or "n" string.
1165 @end table
1166
1167 @section afftfilt
1168 Apply arbitrary expressions to samples in frequency domain.
1169
1170 @table @option
1171 @item real
1172 Set frequency domain real expression for each separate channel separated
1173 by '|'. Default is "re".
1174 If the number of input channels is greater than the number of
1175 expressions, the last specified expression is used for the remaining
1176 output channels.
1177
1178 @item imag
1179 Set frequency domain imaginary expression for each separate channel
1180 separated by '|'. Default is "im".
1181
1182 Each expression in @var{real} and @var{imag} can contain the following
1183 constants and functions:
1184
1185 @table @option
1186 @item sr
1187 sample rate
1188
1189 @item b
1190 current frequency bin number
1191
1192 @item nb
1193 number of available bins
1194
1195 @item ch
1196 channel number of the current expression
1197
1198 @item chs
1199 number of channels
1200
1201 @item pts
1202 current frame pts
1203
1204 @item re
1205 current real part of frequency bin of current channel
1206
1207 @item im
1208 current imaginary part of frequency bin of current channel
1209
1210 @item real(b, ch)
1211 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1212
1213 @item imag(b, ch)
1214 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1215 @end table
1216
1217 @item win_size
1218 Set window size. Allowed range is from 16 to 131072.
1219 Default is @code{4096}
1220
1221 @item win_func
1222 Set window function. Default is @code{hann}.
1223
1224 @item overlap
1225 Set window overlap. If set to 1, the recommended overlap for selected
1226 window function will be picked. Default is @code{0.75}.
1227 @end table
1228
1229 @subsection Examples
1230
1231 @itemize
1232 @item
1233 Leave almost only low frequencies in audio:
1234 @example
1235 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1236 @end example
1237
1238 @item
1239 Apply robotize effect:
1240 @example
1241 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1242 @end example
1243
1244 @item
1245 Apply whisper effect:
1246 @example
1247 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"
1248 @end example
1249 @end itemize
1250
1251 @anchor{afir}
1252 @section afir
1253
1254 Apply an arbitrary Finite Impulse Response filter.
1255
1256 This filter is designed for applying long FIR filters,
1257 up to 60 seconds long.
1258
1259 It can be used as component for digital crossover filters,
1260 room equalization, cross talk cancellation, wavefield synthesis,
1261 auralization, ambiophonics, ambisonics and spatialization.
1262
1263 This filter uses the streams higher than first one as FIR coefficients.
1264 If the non-first stream holds a single channel, it will be used
1265 for all input channels in the first stream, otherwise
1266 the number of channels in the non-first stream must be same as
1267 the number of channels in the first stream.
1268
1269 It accepts the following parameters:
1270
1271 @table @option
1272 @item dry
1273 Set dry gain. This sets input gain.
1274
1275 @item wet
1276 Set wet gain. This sets final output gain.
1277
1278 @item length
1279 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1280
1281 @item gtype
1282 Enable applying gain measured from power of IR.
1283
1284 Set which approach to use for auto gain measurement.
1285
1286 @table @option
1287 @item none
1288 Do not apply any gain.
1289
1290 @item peak
1291 select peak gain, very conservative approach. This is default value.
1292
1293 @item dc
1294 select DC gain, limited application.
1295
1296 @item gn
1297 select gain to noise approach, this is most popular one.
1298 @end table
1299
1300 @item irgain
1301 Set gain to be applied to IR coefficients before filtering.
1302 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1303
1304 @item irfmt
1305 Set format of IR stream. Can be @code{mono} or @code{input}.
1306 Default is @code{input}.
1307
1308 @item maxir
1309 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1310 Allowed range is 0.1 to 60 seconds.
1311
1312 @item response
1313 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1314 By default it is disabled.
1315
1316 @item channel
1317 Set for which IR channel to display frequency response. By default is first channel
1318 displayed. This option is used only when @var{response} is enabled.
1319
1320 @item size
1321 Set video stream size. This option is used only when @var{response} is enabled.
1322
1323 @item rate
1324 Set video stream frame rate. This option is used only when @var{response} is enabled.
1325
1326 @item minp
1327 Set minimal partition size used for convolution. Default is @var{8192}.
1328 Allowed range is from @var{1} to @var{32768}.
1329 Lower values decreases latency at cost of higher CPU usage.
1330
1331 @item maxp
1332 Set maximal partition size used for convolution. Default is @var{8192}.
1333 Allowed range is from @var{8} to @var{32768}.
1334 Lower values may increase CPU usage.
1335
1336 @item nbirs
1337 Set number of input impulse responses streams which will be switchable at runtime.
1338 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1339
1340 @item ir
1341 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1342 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1343 This option can be changed at runtime via @ref{commands}.
1344 @end table
1345
1346 @subsection Examples
1347
1348 @itemize
1349 @item
1350 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1351 @example
1352 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1353 @end example
1354 @end itemize
1355
1356 @anchor{aformat}
1357 @section aformat
1358
1359 Set output format constraints for the input audio. The framework will
1360 negotiate the most appropriate format to minimize conversions.
1361
1362 It accepts the following parameters:
1363 @table @option
1364
1365 @item sample_fmts, f
1366 A '|'-separated list of requested sample formats.
1367
1368 @item sample_rates, r
1369 A '|'-separated list of requested sample rates.
1370
1371 @item channel_layouts, cl
1372 A '|'-separated list of requested channel layouts.
1373
1374 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1375 for the required syntax.
1376 @end table
1377
1378 If a parameter is omitted, all values are allowed.
1379
1380 Force the output to either unsigned 8-bit or signed 16-bit stereo
1381 @example
1382 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1383 @end example
1384
1385 @section afreqshift
1386 Apply frequency shift to input audio samples.
1387
1388 The filter accepts the following options:
1389
1390 @table @option
1391 @item shift
1392 Specify frequency shift. Allowed range is -INT_MAX to INT_MAX.
1393 Default value is 0.0.
1394 @end table
1395
1396 @subsection Commands
1397
1398 This filter supports the above option as @ref{commands}.
1399
1400 @section agate
1401
1402 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1403 processing reduces disturbing noise between useful signals.
1404
1405 Gating is done by detecting the volume below a chosen level @var{threshold}
1406 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1407 floor is set via @var{range}. Because an exact manipulation of the signal
1408 would cause distortion of the waveform the reduction can be levelled over
1409 time. This is done by setting @var{attack} and @var{release}.
1410
1411 @var{attack} determines how long the signal has to fall below the threshold
1412 before any reduction will occur and @var{release} sets the time the signal
1413 has to rise above the threshold to reduce the reduction again.
1414 Shorter signals than the chosen attack time will be left untouched.
1415
1416 @table @option
1417 @item level_in
1418 Set input level before filtering.
1419 Default is 1. Allowed range is from 0.015625 to 64.
1420
1421 @item mode
1422 Set the mode of operation. Can be @code{upward} or @code{downward}.
1423 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1424 will be amplified, expanding dynamic range in upward direction.
1425 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1426
1427 @item range
1428 Set the level of gain reduction when the signal is below the threshold.
1429 Default is 0.06125. Allowed range is from 0 to 1.
1430 Setting this to 0 disables reduction and then filter behaves like expander.
1431
1432 @item threshold
1433 If a signal rises above this level the gain reduction is released.
1434 Default is 0.125. Allowed range is from 0 to 1.
1435
1436 @item ratio
1437 Set a ratio by which the signal is reduced.
1438 Default is 2. Allowed range is from 1 to 9000.
1439
1440 @item attack
1441 Amount of milliseconds the signal has to rise above the threshold before gain
1442 reduction stops.
1443 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1444
1445 @item release
1446 Amount of milliseconds the signal has to fall below the threshold before the
1447 reduction is increased again. Default is 250 milliseconds.
1448 Allowed range is from 0.01 to 9000.
1449
1450 @item makeup
1451 Set amount of amplification of signal after processing.
1452 Default is 1. Allowed range is from 1 to 64.
1453
1454 @item knee
1455 Curve the sharp knee around the threshold to enter gain reduction more softly.
1456 Default is 2.828427125. Allowed range is from 1 to 8.
1457
1458 @item detection
1459 Choose if exact signal should be taken for detection or an RMS like one.
1460 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1461
1462 @item link
1463 Choose if the average level between all channels or the louder channel affects
1464 the reduction.
1465 Default is @code{average}. Can be @code{average} or @code{maximum}.
1466 @end table
1467
1468 @section aiir
1469
1470 Apply an arbitrary Infinite Impulse Response filter.
1471
1472 It accepts the following parameters:
1473
1474 @table @option
1475 @item zeros, z
1476 Set B/numerator/zeros/reflection coefficients.
1477
1478 @item poles, p
1479 Set A/denominator/poles/ladder coefficients.
1480
1481 @item gains, k
1482 Set channels gains.
1483
1484 @item dry_gain
1485 Set input gain.
1486
1487 @item wet_gain
1488 Set output gain.
1489
1490 @item format, f
1491 Set coefficients format.
1492
1493 @table @samp
1494 @item ll
1495 lattice-ladder function
1496 @item sf
1497 analog transfer function
1498 @item tf
1499 digital transfer function
1500 @item zp
1501 Z-plane zeros/poles, cartesian (default)
1502 @item pr
1503 Z-plane zeros/poles, polar radians
1504 @item pd
1505 Z-plane zeros/poles, polar degrees
1506 @item sp
1507 S-plane zeros/poles
1508 @end table
1509
1510 @item process, r
1511 Set type of processing.
1512
1513 @table @samp
1514 @item d
1515 direct processing
1516 @item s
1517 serial processing
1518 @item p
1519 parallel processing
1520 @end table
1521
1522 @item precision, e
1523 Set filtering precision.
1524
1525 @table @samp
1526 @item dbl
1527 double-precision floating-point (default)
1528 @item flt
1529 single-precision floating-point
1530 @item i32
1531 32-bit integers
1532 @item i16
1533 16-bit integers
1534 @end table
1535
1536 @item normalize, n
1537 Normalize filter coefficients, by default is enabled.
1538 Enabling it will normalize magnitude response at DC to 0dB.
1539
1540 @item mix
1541 How much to use filtered signal in output. Default is 1.
1542 Range is between 0 and 1.
1543
1544 @item response
1545 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1546 By default it is disabled.
1547
1548 @item channel
1549 Set for which IR channel to display frequency response. By default is first channel
1550 displayed. This option is used only when @var{response} is enabled.
1551
1552 @item size
1553 Set video stream size. This option is used only when @var{response} is enabled.
1554 @end table
1555
1556 Coefficients in @code{tf} and @code{sf} format are separated by spaces and are in ascending
1557 order.
1558
1559 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1560 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1561 imaginary unit.
1562
1563 Different coefficients and gains can be provided for every channel, in such case
1564 use '|' to separate coefficients or gains. Last provided coefficients will be
1565 used for all remaining channels.
1566
1567 @subsection Examples
1568
1569 @itemize
1570 @item
1571 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1572 @example
1573 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
1574 @end example
1575
1576 @item
1577 Same as above but in @code{zp} format:
1578 @example
1579 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
1580 @end example
1581
1582 @item
1583 Apply 3-rd order analog normalized Butterworth low-pass filter, using analog transfer function format:
1584 @example
1585 aiir=z=1.3057 0 0 0:p=1.3057 2.3892 2.1860 1:f=sf:r=d
1586 @end example
1587 @end itemize
1588
1589 @section alimiter
1590
1591 The limiter prevents an input signal from rising over a desired threshold.
1592 This limiter uses lookahead technology to prevent your signal from distorting.
1593 It means that there is a small delay after the signal is processed. Keep in mind
1594 that the delay it produces is the attack time you set.
1595
1596 The filter accepts the following options:
1597
1598 @table @option
1599 @item level_in
1600 Set input gain. Default is 1.
1601
1602 @item level_out
1603 Set output gain. Default is 1.
1604
1605 @item limit
1606 Don't let signals above this level pass the limiter. Default is 1.
1607
1608 @item attack
1609 The limiter will reach its attenuation level in this amount of time in
1610 milliseconds. Default is 5 milliseconds.
1611
1612 @item release
1613 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1614 Default is 50 milliseconds.
1615
1616 @item asc
1617 When gain reduction is always needed ASC takes care of releasing to an
1618 average reduction level rather than reaching a reduction of 0 in the release
1619 time.
1620
1621 @item asc_level
1622 Select how much the release time is affected by ASC, 0 means nearly no changes
1623 in release time while 1 produces higher release times.
1624
1625 @item level
1626 Auto level output signal. Default is enabled.
1627 This normalizes audio back to 0dB if enabled.
1628 @end table
1629
1630 Depending on picked setting it is recommended to upsample input 2x or 4x times
1631 with @ref{aresample} before applying this filter.
1632
1633 @section allpass
1634
1635 Apply a two-pole all-pass filter with central frequency (in Hz)
1636 @var{frequency}, and filter-width @var{width}.
1637 An all-pass filter changes the audio's frequency to phase relationship
1638 without changing its frequency to amplitude relationship.
1639
1640 The filter accepts the following options:
1641
1642 @table @option
1643 @item frequency, f
1644 Set frequency in Hz.
1645
1646 @item width_type, t
1647 Set method to specify band-width of filter.
1648 @table @option
1649 @item h
1650 Hz
1651 @item q
1652 Q-Factor
1653 @item o
1654 octave
1655 @item s
1656 slope
1657 @item k
1658 kHz
1659 @end table
1660
1661 @item width, w
1662 Specify the band-width of a filter in width_type units.
1663
1664 @item mix, m
1665 How much to use filtered signal in output. Default is 1.
1666 Range is between 0 and 1.
1667
1668 @item channels, c
1669 Specify which channels to filter, by default all available are filtered.
1670
1671 @item normalize, n
1672 Normalize biquad coefficients, by default is disabled.
1673 Enabling it will normalize magnitude response at DC to 0dB.
1674
1675 @item order, o
1676 Set the filter order, can be 1 or 2. Default is 2.
1677
1678 @item transform, a
1679 Set transform type of IIR filter.
1680 @table @option
1681 @item di
1682 @item dii
1683 @item tdii
1684 @item latt
1685 @end table
1686 @end table
1687
1688 @subsection Commands
1689
1690 This filter supports the following commands:
1691 @table @option
1692 @item frequency, f
1693 Change allpass frequency.
1694 Syntax for the command is : "@var{frequency}"
1695
1696 @item width_type, t
1697 Change allpass width_type.
1698 Syntax for the command is : "@var{width_type}"
1699
1700 @item width, w
1701 Change allpass width.
1702 Syntax for the command is : "@var{width}"
1703
1704 @item mix, m
1705 Change allpass mix.
1706 Syntax for the command is : "@var{mix}"
1707 @end table
1708
1709 @section aloop
1710
1711 Loop audio samples.
1712
1713 The filter accepts the following options:
1714
1715 @table @option
1716 @item loop
1717 Set the number of loops. Setting this value to -1 will result in infinite loops.
1718 Default is 0.
1719
1720 @item size
1721 Set maximal number of samples. Default is 0.
1722
1723 @item start
1724 Set first sample of loop. Default is 0.
1725 @end table
1726
1727 @anchor{amerge}
1728 @section amerge
1729
1730 Merge two or more audio streams into a single multi-channel stream.
1731
1732 The filter accepts the following options:
1733
1734 @table @option
1735
1736 @item inputs
1737 Set the number of inputs. Default is 2.
1738
1739 @end table
1740
1741 If the channel layouts of the inputs are disjoint, and therefore compatible,
1742 the channel layout of the output will be set accordingly and the channels
1743 will be reordered as necessary. If the channel layouts of the inputs are not
1744 disjoint, the output will have all the channels of the first input then all
1745 the channels of the second input, in that order, and the channel layout of
1746 the output will be the default value corresponding to the total number of
1747 channels.
1748
1749 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1750 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1751 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1752 first input, b1 is the first channel of the second input).
1753
1754 On the other hand, if both input are in stereo, the output channels will be
1755 in the default order: a1, a2, b1, b2, and the channel layout will be
1756 arbitrarily set to 4.0, which may or may not be the expected value.
1757
1758 All inputs must have the same sample rate, and format.
1759
1760 If inputs do not have the same duration, the output will stop with the
1761 shortest.
1762
1763 @subsection Examples
1764
1765 @itemize
1766 @item
1767 Merge two mono files into a stereo stream:
1768 @example
1769 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1770 @end example
1771
1772 @item
1773 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1774 @example
1775 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
1776 @end example
1777 @end itemize
1778
1779 @section amix
1780
1781 Mixes multiple audio inputs into a single output.
1782
1783 Note that this filter only supports float samples (the @var{amerge}
1784 and @var{pan} audio filters support many formats). If the @var{amix}
1785 input has integer samples then @ref{aresample} will be automatically
1786 inserted to perform the conversion to float samples.
1787
1788 For example
1789 @example
1790 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1791 @end example
1792 will mix 3 input audio streams to a single output with the same duration as the
1793 first input and a dropout transition time of 3 seconds.
1794
1795 It accepts the following parameters:
1796 @table @option
1797
1798 @item inputs
1799 The number of inputs. If unspecified, it defaults to 2.
1800
1801 @item duration
1802 How to determine the end-of-stream.
1803 @table @option
1804
1805 @item longest
1806 The duration of the longest input. (default)
1807
1808 @item shortest
1809 The duration of the shortest input.
1810
1811 @item first
1812 The duration of the first input.
1813
1814 @end table
1815
1816 @item dropout_transition
1817 The transition time, in seconds, for volume renormalization when an input
1818 stream ends. The default value is 2 seconds.
1819
1820 @item weights
1821 Specify weight of each input audio stream as sequence.
1822 Each weight is separated by space. By default all inputs have same weight.
1823 @end table
1824
1825 @subsection Commands
1826
1827 This filter supports the following commands:
1828 @table @option
1829 @item weights
1830 Syntax is same as option with same name.
1831 @end table
1832
1833 @section amultiply
1834
1835 Multiply first audio stream with second audio stream and store result
1836 in output audio stream. Multiplication is done by multiplying each
1837 sample from first stream with sample at same position from second stream.
1838
1839 With this element-wise multiplication one can create amplitude fades and
1840 amplitude modulations.
1841
1842 @section anequalizer
1843
1844 High-order parametric multiband equalizer for each channel.
1845
1846 It accepts the following parameters:
1847 @table @option
1848 @item params
1849
1850 This option string is in format:
1851 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1852 Each equalizer band is separated by '|'.
1853
1854 @table @option
1855 @item chn
1856 Set channel number to which equalization will be applied.
1857 If input doesn't have that channel the entry is ignored.
1858
1859 @item f
1860 Set central frequency for band.
1861 If input doesn't have that frequency the entry is ignored.
1862
1863 @item w
1864 Set band width in Hertz.
1865
1866 @item g
1867 Set band gain in dB.
1868
1869 @item t
1870 Set filter type for band, optional, can be:
1871
1872 @table @samp
1873 @item 0
1874 Butterworth, this is default.
1875
1876 @item 1
1877 Chebyshev type 1.
1878
1879 @item 2
1880 Chebyshev type 2.
1881 @end table
1882 @end table
1883
1884 @item curves
1885 With this option activated frequency response of anequalizer is displayed
1886 in video stream.
1887
1888 @item size
1889 Set video stream size. Only useful if curves option is activated.
1890
1891 @item mgain
1892 Set max gain that will be displayed. Only useful if curves option is activated.
1893 Setting this to a reasonable value makes it possible to display gain which is derived from
1894 neighbour bands which are too close to each other and thus produce higher gain
1895 when both are activated.
1896
1897 @item fscale
1898 Set frequency scale used to draw frequency response in video output.
1899 Can be linear or logarithmic. Default is logarithmic.
1900
1901 @item colors
1902 Set color for each channel curve which is going to be displayed in video stream.
1903 This is list of color names separated by space or by '|'.
1904 Unrecognised or missing colors will be replaced by white color.
1905 @end table
1906
1907 @subsection Examples
1908
1909 @itemize
1910 @item
1911 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1912 for first 2 channels using Chebyshev type 1 filter:
1913 @example
1914 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1915 @end example
1916 @end itemize
1917
1918 @subsection Commands
1919
1920 This filter supports the following commands:
1921 @table @option
1922 @item change
1923 Alter existing filter parameters.
1924 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1925
1926 @var{fN} is existing filter number, starting from 0, if no such filter is available
1927 error is returned.
1928 @var{freq} set new frequency parameter.
1929 @var{width} set new width parameter in Hertz.
1930 @var{gain} set new gain parameter in dB.
1931
1932 Full filter invocation with asendcmd may look like this:
1933 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1934 @end table
1935
1936 @section anlmdn
1937
1938 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1939
1940 Each sample is adjusted by looking for other samples with similar contexts. This
1941 context similarity is defined by comparing their surrounding patches of size
1942 @option{p}. Patches are searched in an area of @option{r} around the sample.
1943
1944 The filter accepts the following options:
1945
1946 @table @option
1947 @item s
1948 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1949
1950 @item p
1951 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1952 Default value is 2 milliseconds.
1953
1954 @item r
1955 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1956 Default value is 6 milliseconds.
1957
1958 @item o
1959 Set the output mode.
1960
1961 It accepts the following values:
1962 @table @option
1963 @item i
1964 Pass input unchanged.
1965
1966 @item o
1967 Pass noise filtered out.
1968
1969 @item n
1970 Pass only noise.
1971
1972 Default value is @var{o}.
1973 @end table
1974
1975 @item m
1976 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
1977 @end table
1978
1979 @subsection Commands
1980
1981 This filter supports the all above options as @ref{commands}.
1982
1983 @section anlms
1984 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
1985
1986 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
1987 relate to producing the least mean square of the error signal (difference between the desired,
1988 2nd input audio stream and the actual signal, the 1st input audio stream).
1989
1990 A description of the accepted options follows.
1991
1992 @table @option
1993 @item order
1994 Set filter order.
1995
1996 @item mu
1997 Set filter mu.
1998
1999 @item eps
2000 Set the filter eps.
2001
2002 @item leakage
2003 Set the filter leakage.
2004
2005 @item out_mode
2006 It accepts the following values:
2007 @table @option
2008 @item i
2009 Pass the 1st input.
2010
2011 @item d
2012 Pass the 2nd input.
2013
2014 @item o
2015 Pass filtered samples.
2016
2017 @item n
2018 Pass difference between desired and filtered samples.
2019
2020 Default value is @var{o}.
2021 @end table
2022 @end table
2023
2024 @subsection Examples
2025
2026 @itemize
2027 @item
2028 One of many usages of this filter is noise reduction, input audio is filtered
2029 with same samples that are delayed by fixed amount, one such example for stereo audio is:
2030 @example
2031 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
2032 @end example
2033 @end itemize
2034
2035 @subsection Commands
2036
2037 This filter supports the same commands as options, excluding option @code{order}.
2038
2039 @section anull
2040
2041 Pass the audio source unchanged to the output.
2042
2043 @section apad
2044
2045 Pad the end of an audio stream with silence.
2046
2047 This can be used together with @command{ffmpeg} @option{-shortest} to
2048 extend audio streams to the same length as the video stream.
2049
2050 A description of the accepted options follows.
2051
2052 @table @option
2053 @item packet_size
2054 Set silence packet size. Default value is 4096.
2055
2056 @item pad_len
2057 Set the number of samples of silence to add to the end. After the
2058 value is reached, the stream is terminated. This option is mutually
2059 exclusive with @option{whole_len}.
2060
2061 @item whole_len
2062 Set the minimum total number of samples in the output audio stream. If
2063 the value is longer than the input audio length, silence is added to
2064 the end, until the value is reached. This option is mutually exclusive
2065 with @option{pad_len}.
2066
2067 @item pad_dur
2068 Specify the duration of samples of silence to add. See
2069 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2070 for the accepted syntax. Used only if set to non-zero value.
2071
2072 @item whole_dur
2073 Specify the minimum total duration in the output audio stream. See
2074 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2075 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
2076 the input audio length, silence is added to the end, until the value is reached.
2077 This option is mutually exclusive with @option{pad_dur}
2078 @end table
2079
2080 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
2081 nor @option{whole_dur} option is set, the filter will add silence to the end of
2082 the input stream indefinitely.
2083
2084 @subsection Examples
2085
2086 @itemize
2087 @item
2088 Add 1024 samples of silence to the end of the input:
2089 @example
2090 apad=pad_len=1024
2091 @end example
2092
2093 @item
2094 Make sure the audio output will contain at least 10000 samples, pad
2095 the input with silence if required:
2096 @example
2097 apad=whole_len=10000
2098 @end example
2099
2100 @item
2101 Use @command{ffmpeg} to pad the audio input with silence, so that the
2102 video stream will always result the shortest and will be converted
2103 until the end in the output file when using the @option{shortest}
2104 option:
2105 @example
2106 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
2107 @end example
2108 @end itemize
2109
2110 @section aphaser
2111 Add a phasing effect to the input audio.
2112
2113 A phaser filter creates series of peaks and troughs in the frequency spectrum.
2114 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
2115
2116 A description of the accepted parameters follows.
2117
2118 @table @option
2119 @item in_gain
2120 Set input gain. Default is 0.4.
2121
2122 @item out_gain
2123 Set output gain. Default is 0.74
2124
2125 @item delay
2126 Set delay in milliseconds. Default is 3.0.
2127
2128 @item decay
2129 Set decay. Default is 0.4.
2130
2131 @item speed
2132 Set modulation speed in Hz. Default is 0.5.
2133
2134 @item type
2135 Set modulation type. Default is triangular.
2136
2137 It accepts the following values:
2138 @table @samp
2139 @item triangular, t
2140 @item sinusoidal, s
2141 @end table
2142 @end table
2143
2144 @section aphaseshift
2145 Apply phase shift to input audio samples.
2146
2147 The filter accepts the following options:
2148
2149 @table @option
2150 @item shift
2151 Specify phase shift. Allowed range is from -1.0 to 1.0.
2152 Default value is 0.0.
2153 @end table
2154
2155 @subsection Commands
2156
2157 This filter supports the above option as @ref{commands}.
2158
2159 @section apulsator
2160
2161 Audio pulsator is something between an autopanner and a tremolo.
2162 But it can produce funny stereo effects as well. Pulsator changes the volume
2163 of the left and right channel based on a LFO (low frequency oscillator) with
2164 different waveforms and shifted phases.
2165 This filter have the ability to define an offset between left and right
2166 channel. An offset of 0 means that both LFO shapes match each other.
2167 The left and right channel are altered equally - a conventional tremolo.
2168 An offset of 50% means that the shape of the right channel is exactly shifted
2169 in phase (or moved backwards about half of the frequency) - pulsator acts as
2170 an autopanner. At 1 both curves match again. Every setting in between moves the
2171 phase shift gapless between all stages and produces some "bypassing" sounds with
2172 sine and triangle waveforms. The more you set the offset near 1 (starting from
2173 the 0.5) the faster the signal passes from the left to the right speaker.
2174
2175 The filter accepts the following options:
2176
2177 @table @option
2178 @item level_in
2179 Set input gain. By default it is 1. Range is [0.015625 - 64].
2180
2181 @item level_out
2182 Set output gain. By default it is 1. Range is [0.015625 - 64].
2183
2184 @item mode
2185 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2186 sawup or sawdown. Default is sine.
2187
2188 @item amount
2189 Set modulation. Define how much of original signal is affected by the LFO.
2190
2191 @item offset_l
2192 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2193
2194 @item offset_r
2195 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2196
2197 @item width
2198 Set pulse width. Default is 1. Allowed range is [0 - 2].
2199
2200 @item timing
2201 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2202
2203 @item bpm
2204 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2205 is set to bpm.
2206
2207 @item ms
2208 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2209 is set to ms.
2210
2211 @item hz
2212 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2213 if timing is set to hz.
2214 @end table
2215
2216 @anchor{aresample}
2217 @section aresample
2218
2219 Resample the input audio to the specified parameters, using the
2220 libswresample library. If none are specified then the filter will
2221 automatically convert between its input and output.
2222
2223 This filter is also able to stretch/squeeze the audio data to make it match
2224 the timestamps or to inject silence / cut out audio to make it match the
2225 timestamps, do a combination of both or do neither.
2226
2227 The filter accepts the syntax
2228 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2229 expresses a sample rate and @var{resampler_options} is a list of
2230 @var{key}=@var{value} pairs, separated by ":". See the
2231 @ref{Resampler Options,,"Resampler Options" section in the
2232 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2233 for the complete list of supported options.
2234
2235 @subsection Examples
2236
2237 @itemize
2238 @item
2239 Resample the input audio to 44100Hz:
2240 @example
2241 aresample=44100
2242 @end example
2243
2244 @item
2245 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2246 samples per second compensation:
2247 @example
2248 aresample=async=1000
2249 @end example
2250 @end itemize
2251
2252 @section areverse
2253
2254 Reverse an audio clip.
2255
2256 Warning: This filter requires memory to buffer the entire clip, so trimming
2257 is suggested.
2258
2259 @subsection Examples
2260
2261 @itemize
2262 @item
2263 Take the first 5 seconds of a clip, and reverse it.
2264 @example
2265 atrim=end=5,areverse
2266 @end example
2267 @end itemize
2268
2269 @section arnndn
2270
2271 Reduce noise from speech using Recurrent Neural Networks.
2272
2273 This filter accepts the following options:
2274
2275 @table @option
2276 @item model, m
2277 Set train model file to load. This option is always required.
2278 @end table
2279
2280 @section asetnsamples
2281
2282 Set the number of samples per each output audio frame.
2283
2284 The last output packet may contain a different number of samples, as
2285 the filter will flush all the remaining samples when the input audio
2286 signals its end.
2287
2288 The filter accepts the following options:
2289
2290 @table @option
2291
2292 @item nb_out_samples, n
2293 Set the number of frames per each output audio frame. The number is
2294 intended as the number of samples @emph{per each channel}.
2295 Default value is 1024.
2296
2297 @item pad, p
2298 If set to 1, the filter will pad the last audio frame with zeroes, so
2299 that the last frame will contain the same number of samples as the
2300 previous ones. Default value is 1.
2301 @end table
2302
2303 For example, to set the number of per-frame samples to 1234 and
2304 disable padding for the last frame, use:
2305 @example
2306 asetnsamples=n=1234:p=0
2307 @end example
2308
2309 @section asetrate
2310
2311 Set the sample rate without altering the PCM data.
2312 This will result in a change of speed and pitch.
2313
2314 The filter accepts the following options:
2315
2316 @table @option
2317 @item sample_rate, r
2318 Set the output sample rate. Default is 44100 Hz.
2319 @end table
2320
2321 @section ashowinfo
2322
2323 Show a line containing various information for each input audio frame.
2324 The input audio is not modified.
2325
2326 The shown line contains a sequence of key/value pairs of the form
2327 @var{key}:@var{value}.
2328
2329 The following values are shown in the output:
2330
2331 @table @option
2332 @item n
2333 The (sequential) number of the input frame, starting from 0.
2334
2335 @item pts
2336 The presentation timestamp of the input frame, in time base units; the time base
2337 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2338
2339 @item pts_time
2340 The presentation timestamp of the input frame in seconds.
2341
2342 @item pos
2343 position of the frame in the input stream, -1 if this information in
2344 unavailable and/or meaningless (for example in case of synthetic audio)
2345
2346 @item fmt
2347 The sample format.
2348
2349 @item chlayout
2350 The channel layout.
2351
2352 @item rate
2353 The sample rate for the audio frame.
2354
2355 @item nb_samples
2356 The number of samples (per channel) in the frame.
2357
2358 @item checksum
2359 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2360 audio, the data is treated as if all the planes were concatenated.
2361
2362 @item plane_checksums
2363 A list of Adler-32 checksums for each data plane.
2364 @end table
2365
2366 @section asoftclip
2367 Apply audio soft clipping.
2368
2369 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2370 along a smooth curve, rather than the abrupt shape of hard-clipping.
2371
2372 This filter accepts the following options:
2373
2374 @table @option
2375 @item type
2376 Set type of soft-clipping.
2377
2378 It accepts the following values:
2379 @table @option
2380 @item hard
2381 @item tanh
2382 @item atan
2383 @item cubic
2384 @item exp
2385 @item alg
2386 @item quintic
2387 @item sin
2388 @item erf
2389 @end table
2390
2391 @item param
2392 Set additional parameter which controls sigmoid function.
2393
2394 @item oversample
2395 Set oversampling factor.
2396 @end table
2397
2398 @subsection Commands
2399
2400 This filter supports the all above options as @ref{commands}.
2401
2402 @section asr
2403 Automatic Speech Recognition
2404
2405 This filter uses PocketSphinx for speech recognition. To enable
2406 compilation of this filter, you need to configure FFmpeg with
2407 @code{--enable-pocketsphinx}.
2408
2409 It accepts the following options:
2410
2411 @table @option
2412 @item rate
2413 Set sampling rate of input audio. Defaults is @code{16000}.
2414 This need to match speech models, otherwise one will get poor results.
2415
2416 @item hmm
2417 Set dictionary containing acoustic model files.
2418
2419 @item dict
2420 Set pronunciation dictionary.
2421
2422 @item lm
2423 Set language model file.
2424
2425 @item lmctl
2426 Set language model set.
2427
2428 @item lmname
2429 Set which language model to use.
2430
2431 @item logfn
2432 Set output for log messages.
2433 @end table
2434
2435 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2436
2437 @anchor{astats}
2438 @section astats
2439
2440 Display time domain statistical information about the audio channels.
2441 Statistics are calculated and displayed for each audio channel and,
2442 where applicable, an overall figure is also given.
2443
2444 It accepts the following option:
2445 @table @option
2446 @item length
2447 Short window length in seconds, used for peak and trough RMS measurement.
2448 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2449
2450 @item metadata
2451
2452 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2453 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2454 disabled.
2455
2456 Available keys for each channel are:
2457 DC_offset
2458 Min_level
2459 Max_level
2460 Min_difference
2461 Max_difference
2462 Mean_difference
2463 RMS_difference
2464 Peak_level
2465 RMS_peak
2466 RMS_trough
2467 Crest_factor
2468 Flat_factor
2469 Peak_count
2470 Noise_floor
2471 Noise_floor_count
2472 Bit_depth
2473 Dynamic_range
2474 Zero_crossings
2475 Zero_crossings_rate
2476 Number_of_NaNs
2477 Number_of_Infs
2478 Number_of_denormals
2479
2480 and for Overall:
2481 DC_offset
2482 Min_level
2483 Max_level
2484 Min_difference
2485 Max_difference
2486 Mean_difference
2487 RMS_difference
2488 Peak_level
2489 RMS_level
2490 RMS_peak
2491 RMS_trough
2492 Flat_factor
2493 Peak_count
2494 Noise_floor
2495 Noise_floor_count
2496 Bit_depth
2497 Number_of_samples
2498 Number_of_NaNs
2499 Number_of_Infs
2500 Number_of_denormals
2501
2502 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2503 this @code{lavfi.astats.Overall.Peak_count}.
2504
2505 For description what each key means read below.
2506
2507 @item reset
2508 Set number of frame after which stats are going to be recalculated.
2509 Default is disabled.
2510
2511 @item measure_perchannel
2512 Select the entries which need to be measured per channel. The metadata keys can
2513 be used as flags, default is @option{all} which measures everything.
2514 @option{none} disables all per channel measurement.
2515
2516 @item measure_overall
2517 Select the entries which need to be measured overall. The metadata keys can
2518 be used as flags, default is @option{all} which measures everything.
2519 @option{none} disables all overall measurement.
2520
2521 @end table
2522
2523 A description of each shown parameter follows:
2524
2525 @table @option
2526 @item DC offset
2527 Mean amplitude displacement from zero.
2528
2529 @item Min level
2530 Minimal sample level.
2531
2532 @item Max level
2533 Maximal sample level.
2534
2535 @item Min difference
2536 Minimal difference between two consecutive samples.
2537
2538 @item Max difference
2539 Maximal difference between two consecutive samples.
2540
2541 @item Mean difference
2542 Mean difference between two consecutive samples.
2543 The average of each difference between two consecutive samples.
2544
2545 @item RMS difference
2546 Root Mean Square difference between two consecutive samples.
2547
2548 @item Peak level dB
2549 @item RMS level dB
2550 Standard peak and RMS level measured in dBFS.
2551
2552 @item RMS peak dB
2553 @item RMS trough dB
2554 Peak and trough values for RMS level measured over a short window.
2555
2556 @item Crest factor
2557 Standard ratio of peak to RMS level (note: not in dB).
2558
2559 @item Flat factor
2560 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2561 (i.e. either @var{Min level} or @var{Max level}).
2562
2563 @item Peak count
2564 Number of occasions (not the number of samples) that the signal attained either
2565 @var{Min level} or @var{Max level}.
2566
2567 @item Noise floor dB
2568 Minimum local peak measured in dBFS over a short window.
2569
2570 @item Noise floor count
2571 Number of occasions (not the number of samples) that the signal attained
2572 @var{Noise floor}.
2573
2574 @item Bit depth
2575 Overall bit depth of audio. Number of bits used for each sample.
2576
2577 @item Dynamic range
2578 Measured dynamic range of audio in dB.
2579
2580 @item Zero crossings
2581 Number of points where the waveform crosses the zero level axis.
2582
2583 @item Zero crossings rate
2584 Rate of Zero crossings and number of audio samples.
2585 @end table
2586
2587 @section asubboost
2588 Boost subwoofer frequencies.
2589
2590 The filter accepts the following options:
2591
2592 @table @option
2593 @item dry
2594 Set dry gain, how much of original signal is kept. Allowed range is from 0 to 1.
2595 Default value is 0.5.
2596
2597 @item wet
2598 Set wet gain, how much of filtered signal is kept. Allowed range is from 0 to 1.
2599 Default value is 0.8.
2600
2601 @item decay
2602 Set delay line decay gain value. Allowed range is from 0 to 1.
2603 Default value is 0.7.
2604
2605 @item feedback
2606 Set delay line feedback gain value. Allowed range is from 0 to 1.
2607 Default value is 0.5.
2608
2609 @item cutoff
2610 Set cutoff frequency in Hertz. Allowed range is 50 to 900.
2611 Default value is 100.
2612
2613 @item slope
2614 Set slope amount for cutoff frequency. Allowed range is 0.0001 to 1.
2615 Default value is 0.5.
2616
2617 @item delay
2618 Set delay. Allowed range is from 1 to 100.
2619 Default value is 20.
2620 @end table
2621
2622 @subsection Commands
2623
2624 This filter supports the all above options as @ref{commands}.
2625
2626 @section asupercut
2627 Cut super frequencies.
2628
2629 The filter accepts the following options:
2630
2631 @table @option
2632 @item cutoff
2633 Set cutoff frequency in Hertz. Allowed range is 20000 to 192000.
2634 Default value is 20000.
2635 @end table
2636
2637 @subsection Commands
2638
2639 This filter supports the all above options as @ref{commands}.
2640
2641 @section atempo
2642
2643 Adjust audio tempo.
2644
2645 The filter accepts exactly one parameter, the audio tempo. If not
2646 specified then the filter will assume nominal 1.0 tempo. Tempo must
2647 be in the [0.5, 100.0] range.
2648
2649 Note that tempo greater than 2 will skip some samples rather than
2650 blend them in.  If for any reason this is a concern it is always
2651 possible to daisy-chain several instances of atempo to achieve the
2652 desired product tempo.
2653
2654 @subsection Examples
2655
2656 @itemize
2657 @item
2658 Slow down audio to 80% tempo:
2659 @example
2660 atempo=0.8
2661 @end example
2662
2663 @item
2664 To speed up audio to 300% tempo:
2665 @example
2666 atempo=3
2667 @end example
2668
2669 @item
2670 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2671 @example
2672 atempo=sqrt(3),atempo=sqrt(3)
2673 @end example
2674 @end itemize
2675
2676 @subsection Commands
2677
2678 This filter supports the following commands:
2679 @table @option
2680 @item tempo
2681 Change filter tempo scale factor.
2682 Syntax for the command is : "@var{tempo}"
2683 @end table
2684
2685 @section atrim
2686
2687 Trim the input so that the output contains one continuous subpart of the input.
2688
2689 It accepts the following parameters:
2690 @table @option
2691 @item start
2692 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2693 sample with the timestamp @var{start} will be the first sample in the output.
2694
2695 @item end
2696 Specify time of the first audio sample that will be dropped, i.e. the
2697 audio sample immediately preceding the one with the timestamp @var{end} will be
2698 the last sample in the output.
2699
2700 @item start_pts
2701 Same as @var{start}, except this option sets the start timestamp in samples
2702 instead of seconds.
2703
2704 @item end_pts
2705 Same as @var{end}, except this option sets the end timestamp in samples instead
2706 of seconds.
2707
2708 @item duration
2709 The maximum duration of the output in seconds.
2710
2711 @item start_sample
2712 The number of the first sample that should be output.
2713
2714 @item end_sample
2715 The number of the first sample that should be dropped.
2716 @end table
2717
2718 @option{start}, @option{end}, and @option{duration} are expressed as time
2719 duration specifications; see
2720 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2721
2722 Note that the first two sets of the start/end options and the @option{duration}
2723 option look at the frame timestamp, while the _sample options simply count the
2724 samples that pass through the filter. So start/end_pts and start/end_sample will
2725 give different results when the timestamps are wrong, inexact or do not start at
2726 zero. Also note that this filter does not modify the timestamps. If you wish
2727 to have the output timestamps start at zero, insert the asetpts filter after the
2728 atrim filter.
2729
2730 If multiple start or end options are set, this filter tries to be greedy and
2731 keep all samples that match at least one of the specified constraints. To keep
2732 only the part that matches all the constraints at once, chain multiple atrim
2733 filters.
2734
2735 The defaults are such that all the input is kept. So it is possible to set e.g.
2736 just the end values to keep everything before the specified time.
2737
2738 Examples:
2739 @itemize
2740 @item
2741 Drop everything except the second minute of input:
2742 @example
2743 ffmpeg -i INPUT -af atrim=60:120
2744 @end example
2745
2746 @item
2747 Keep only the first 1000 samples:
2748 @example
2749 ffmpeg -i INPUT -af atrim=end_sample=1000
2750 @end example
2751
2752 @end itemize
2753
2754 @section axcorrelate
2755 Calculate normalized cross-correlation between two input audio streams.
2756
2757 Resulted samples are always between -1 and 1 inclusive.
2758 If result is 1 it means two input samples are highly correlated in that selected segment.
2759 Result 0 means they are not correlated at all.
2760 If result is -1 it means two input samples are out of phase, which means they cancel each
2761 other.
2762
2763 The filter accepts the following options:
2764
2765 @table @option
2766 @item size
2767 Set size of segment over which cross-correlation is calculated.
2768 Default is 256. Allowed range is from 2 to 131072.
2769
2770 @item algo
2771 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2772 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2773 are always zero and thus need much less calculations to make.
2774 This is generally not true, but is valid for typical audio streams.
2775 @end table
2776
2777 @subsection Examples
2778
2779 @itemize
2780 @item
2781 Calculate correlation between channels in stereo audio stream:
2782 @example
2783 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2784 @end example
2785 @end itemize
2786
2787 @section bandpass
2788
2789 Apply a two-pole Butterworth band-pass filter with central
2790 frequency @var{frequency}, and (3dB-point) band-width width.
2791 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2792 instead of the default: constant 0dB peak gain.
2793 The filter roll off at 6dB per octave (20dB per decade).
2794
2795 The filter accepts the following options:
2796
2797 @table @option
2798 @item frequency, f
2799 Set the filter's central frequency. Default is @code{3000}.
2800
2801 @item csg
2802 Constant skirt gain if set to 1. Defaults to 0.
2803
2804 @item width_type, t
2805 Set method to specify band-width of filter.
2806 @table @option
2807 @item h
2808 Hz
2809 @item q
2810 Q-Factor
2811 @item o
2812 octave
2813 @item s
2814 slope
2815 @item k
2816 kHz
2817 @end table
2818
2819 @item width, w
2820 Specify the band-width of a filter in width_type units.
2821
2822 @item mix, m
2823 How much to use filtered signal in output. Default is 1.
2824 Range is between 0 and 1.
2825
2826 @item channels, c
2827 Specify which channels to filter, by default all available are filtered.
2828
2829 @item normalize, n
2830 Normalize biquad coefficients, by default is disabled.
2831 Enabling it will normalize magnitude response at DC to 0dB.
2832
2833 @item transform, a
2834 Set transform type of IIR filter.
2835 @table @option
2836 @item di
2837 @item dii
2838 @item tdii
2839 @item latt
2840 @end table
2841 @end table
2842
2843 @subsection Commands
2844
2845 This filter supports the following commands:
2846 @table @option
2847 @item frequency, f
2848 Change bandpass frequency.
2849 Syntax for the command is : "@var{frequency}"
2850
2851 @item width_type, t
2852 Change bandpass width_type.
2853 Syntax for the command is : "@var{width_type}"
2854
2855 @item width, w
2856 Change bandpass width.
2857 Syntax for the command is : "@var{width}"
2858
2859 @item mix, m
2860 Change bandpass mix.
2861 Syntax for the command is : "@var{mix}"
2862 @end table
2863
2864 @section bandreject
2865
2866 Apply a two-pole Butterworth band-reject filter with central
2867 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2868 The filter roll off at 6dB per octave (20dB per decade).
2869
2870 The filter accepts the following options:
2871
2872 @table @option
2873 @item frequency, f
2874 Set the filter's central frequency. Default is @code{3000}.
2875
2876 @item width_type, t
2877 Set method to specify band-width of filter.
2878 @table @option
2879 @item h
2880 Hz
2881 @item q
2882 Q-Factor
2883 @item o
2884 octave
2885 @item s
2886 slope
2887 @item k
2888 kHz
2889 @end table
2890
2891 @item width, w
2892 Specify the band-width of a filter in width_type units.
2893
2894 @item mix, m
2895 How much to use filtered signal in output. Default is 1.
2896 Range is between 0 and 1.
2897
2898 @item channels, c
2899 Specify which channels to filter, by default all available are filtered.
2900
2901 @item normalize, n
2902 Normalize biquad coefficients, by default is disabled.
2903 Enabling it will normalize magnitude response at DC to 0dB.
2904
2905 @item transform, a
2906 Set transform type of IIR filter.
2907 @table @option
2908 @item di
2909 @item dii
2910 @item tdii
2911 @item latt
2912 @end table
2913 @end table
2914
2915 @subsection Commands
2916
2917 This filter supports the following commands:
2918 @table @option
2919 @item frequency, f
2920 Change bandreject frequency.
2921 Syntax for the command is : "@var{frequency}"
2922
2923 @item width_type, t
2924 Change bandreject width_type.
2925 Syntax for the command is : "@var{width_type}"
2926
2927 @item width, w
2928 Change bandreject width.
2929 Syntax for the command is : "@var{width}"
2930
2931 @item mix, m
2932 Change bandreject mix.
2933 Syntax for the command is : "@var{mix}"
2934 @end table
2935
2936 @section bass, lowshelf
2937
2938 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2939 shelving filter with a response similar to that of a standard
2940 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2941
2942 The filter accepts the following options:
2943
2944 @table @option
2945 @item gain, g
2946 Give the gain at 0 Hz. Its useful range is about -20
2947 (for a large cut) to +20 (for a large boost).
2948 Beware of clipping when using a positive gain.
2949
2950 @item frequency, f
2951 Set the filter's central frequency and so can be used
2952 to extend or reduce the frequency range to be boosted or cut.
2953 The default value is @code{100} Hz.
2954
2955 @item width_type, t
2956 Set method to specify band-width of filter.
2957 @table @option
2958 @item h
2959 Hz
2960 @item q
2961 Q-Factor
2962 @item o
2963 octave
2964 @item s
2965 slope
2966 @item k
2967 kHz
2968 @end table
2969
2970 @item width, w
2971 Determine how steep is the filter's shelf transition.
2972
2973 @item mix, m
2974 How much to use filtered signal in output. Default is 1.
2975 Range is between 0 and 1.
2976
2977 @item channels, c
2978 Specify which channels to filter, by default all available are filtered.
2979
2980 @item normalize, n
2981 Normalize biquad coefficients, by default is disabled.
2982 Enabling it will normalize magnitude response at DC to 0dB.
2983
2984 @item transform, a
2985 Set transform type of IIR filter.
2986 @table @option
2987 @item di
2988 @item dii
2989 @item tdii
2990 @item latt
2991 @end table
2992 @end table
2993
2994 @subsection Commands
2995
2996 This filter supports the following commands:
2997 @table @option
2998 @item frequency, f
2999 Change bass frequency.
3000 Syntax for the command is : "@var{frequency}"
3001
3002 @item width_type, t
3003 Change bass width_type.
3004 Syntax for the command is : "@var{width_type}"
3005
3006 @item width, w
3007 Change bass width.
3008 Syntax for the command is : "@var{width}"
3009
3010 @item gain, g
3011 Change bass gain.
3012 Syntax for the command is : "@var{gain}"
3013
3014 @item mix, m
3015 Change bass mix.
3016 Syntax for the command is : "@var{mix}"
3017 @end table
3018
3019 @section biquad
3020
3021 Apply a biquad IIR filter with the given coefficients.
3022 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
3023 are the numerator and denominator coefficients respectively.
3024 and @var{channels}, @var{c} specify which channels to filter, by default all
3025 available are filtered.
3026
3027 @subsection Commands
3028
3029 This filter supports the following commands:
3030 @table @option
3031 @item a0
3032 @item a1
3033 @item a2
3034 @item b0
3035 @item b1
3036 @item b2
3037 Change biquad parameter.
3038 Syntax for the command is : "@var{value}"
3039
3040 @item mix, m
3041 How much to use filtered signal in output. Default is 1.
3042 Range is between 0 and 1.
3043
3044 @item channels, c
3045 Specify which channels to filter, by default all available are filtered.
3046
3047 @item normalize, n
3048 Normalize biquad coefficients, by default is disabled.
3049 Enabling it will normalize magnitude response at DC to 0dB.
3050
3051 @item transform, a
3052 Set transform type of IIR filter.
3053 @table @option
3054 @item di
3055 @item dii
3056 @item tdii
3057 @item latt
3058 @end table
3059 @end table
3060
3061 @section bs2b
3062 Bauer stereo to binaural transformation, which improves headphone listening of
3063 stereo audio records.
3064
3065 To enable compilation of this filter you need to configure FFmpeg with
3066 @code{--enable-libbs2b}.
3067
3068 It accepts the following parameters:
3069 @table @option
3070
3071 @item profile
3072 Pre-defined crossfeed level.
3073 @table @option
3074
3075 @item default
3076 Default level (fcut=700, feed=50).
3077
3078 @item cmoy
3079 Chu Moy circuit (fcut=700, feed=60).
3080
3081 @item jmeier
3082 Jan Meier circuit (fcut=650, feed=95).
3083
3084 @end table
3085
3086 @item fcut
3087 Cut frequency (in Hz).
3088
3089 @item feed
3090 Feed level (in Hz).
3091
3092 @end table
3093
3094 @section channelmap
3095
3096 Remap input channels to new locations.
3097
3098 It accepts the following parameters:
3099 @table @option
3100 @item map
3101 Map channels from input to output. The argument is a '|'-separated list of
3102 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
3103 @var{in_channel} form. @var{in_channel} can be either the name of the input
3104 channel (e.g. FL for front left) or its index in the input channel layout.
3105 @var{out_channel} is the name of the output channel or its index in the output
3106 channel layout. If @var{out_channel} is not given then it is implicitly an
3107 index, starting with zero and increasing by one for each mapping.
3108
3109 @item channel_layout
3110 The channel layout of the output stream.
3111 @end table
3112
3113 If no mapping is present, the filter will implicitly map input channels to
3114 output channels, preserving indices.
3115
3116 @subsection Examples
3117
3118 @itemize
3119 @item
3120 For example, assuming a 5.1+downmix input MOV file,
3121 @example
3122 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
3123 @end example
3124 will create an output WAV file tagged as stereo from the downmix channels of
3125 the input.
3126
3127 @item
3128 To fix a 5.1 WAV improperly encoded in AAC's native channel order
3129 @example
3130 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
3131 @end example
3132 @end itemize
3133
3134 @section channelsplit
3135
3136 Split each channel from an input audio stream into a separate output stream.
3137
3138 It accepts the following parameters:
3139 @table @option
3140 @item channel_layout
3141 The channel layout of the input stream. The default is "stereo".
3142 @item channels
3143 A channel layout describing the channels to be extracted as separate output streams
3144 or "all" to extract each input channel as a separate stream. The default is "all".
3145
3146 Choosing channels not present in channel layout in the input will result in an error.
3147 @end table
3148
3149 @subsection Examples
3150
3151 @itemize
3152 @item
3153 For example, assuming a stereo input MP3 file,
3154 @example
3155 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
3156 @end example
3157 will create an output Matroska file with two audio streams, one containing only
3158 the left channel and the other the right channel.
3159
3160 @item
3161 Split a 5.1 WAV file into per-channel files:
3162 @example
3163 ffmpeg -i in.wav -filter_complex
3164 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
3165 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
3166 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
3167 side_right.wav
3168 @end example
3169
3170 @item
3171 Extract only LFE from a 5.1 WAV file:
3172 @example
3173 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
3174 -map '[LFE]' lfe.wav
3175 @end example
3176 @end itemize
3177
3178 @section chorus
3179 Add a chorus effect to the audio.
3180
3181 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
3182
3183 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
3184 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
3185 The modulation depth defines the range the modulated delay is played before or after
3186 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
3187 sound tuned around the original one, like in a chorus where some vocals are slightly
3188 off key.
3189
3190 It accepts the following parameters:
3191 @table @option
3192 @item in_gain
3193 Set input gain. Default is 0.4.
3194
3195 @item out_gain
3196 Set output gain. Default is 0.4.
3197
3198 @item delays
3199 Set delays. A typical delay is around 40ms to 60ms.
3200
3201 @item decays
3202 Set decays.
3203
3204 @item speeds
3205 Set speeds.
3206
3207 @item depths
3208 Set depths.
3209 @end table
3210
3211 @subsection Examples
3212
3213 @itemize
3214 @item
3215 A single delay:
3216 @example
3217 chorus=0.7:0.9:55:0.4:0.25:2
3218 @end example
3219
3220 @item
3221 Two delays:
3222 @example
3223 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
3224 @end example
3225
3226 @item
3227 Fuller sounding chorus with three delays:
3228 @example
3229 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
3230 @end example
3231 @end itemize
3232
3233 @section compand
3234 Compress or expand the audio's dynamic range.
3235
3236 It accepts the following parameters:
3237
3238 @table @option
3239
3240 @item attacks
3241 @item decays
3242 A list of times in seconds for each channel over which the instantaneous level
3243 of the input signal is averaged to determine its volume. @var{attacks} refers to
3244 increase of volume and @var{decays} refers to decrease of volume. For most
3245 situations, the attack time (response to the audio getting louder) should be
3246 shorter than the decay time, because the human ear is more sensitive to sudden
3247 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3248 a typical value for decay is 0.8 seconds.
3249 If specified number of attacks & decays is lower than number of channels, the last
3250 set attack/decay will be used for all remaining channels.
3251
3252 @item points
3253 A list of points for the transfer function, specified in dB relative to the
3254 maximum possible signal amplitude. Each key points list must be defined using
3255 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3256 @code{x0/y0 x1/y1 x2/y2 ....}
3257
3258 The input values must be in strictly increasing order but the transfer function
3259 does not have to be monotonically rising. The point @code{0/0} is assumed but
3260 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3261 function are @code{-70/-70|-60/-20|1/0}.
3262
3263 @item soft-knee
3264 Set the curve radius in dB for all joints. It defaults to 0.01.
3265
3266 @item gain
3267 Set the additional gain in dB to be applied at all points on the transfer
3268 function. This allows for easy adjustment of the overall gain.
3269 It defaults to 0.
3270
3271 @item volume
3272 Set an initial volume, in dB, to be assumed for each channel when filtering
3273 starts. This permits the user to supply a nominal level initially, so that, for
3274 example, a very large gain is not applied to initial signal levels before the
3275 companding has begun to operate. A typical value for audio which is initially
3276 quiet is -90 dB. It defaults to 0.
3277
3278 @item delay
3279 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3280 delayed before being fed to the volume adjuster. Specifying a delay
3281 approximately equal to the attack/decay times allows the filter to effectively
3282 operate in predictive rather than reactive mode. It defaults to 0.
3283
3284 @end table
3285
3286 @subsection Examples
3287
3288 @itemize
3289 @item
3290 Make music with both quiet and loud passages suitable for listening to in a
3291 noisy environment:
3292 @example
3293 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3294 @end example
3295
3296 Another example for audio with whisper and explosion parts:
3297 @example
3298 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3299 @end example
3300
3301 @item
3302 A noise gate for when the noise is at a lower level than the signal:
3303 @example
3304 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3305 @end example
3306
3307 @item
3308 Here is another noise gate, this time for when the noise is at a higher level
3309 than the signal (making it, in some ways, similar to squelch):
3310 @example
3311 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3312 @end example
3313
3314 @item
3315 2:1 compression starting at -6dB:
3316 @example
3317 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3318 @end example
3319
3320 @item
3321 2:1 compression starting at -9dB:
3322 @example
3323 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3324 @end example
3325
3326 @item
3327 2:1 compression starting at -12dB:
3328 @example
3329 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3330 @end example
3331
3332 @item
3333 2:1 compression starting at -18dB:
3334 @example
3335 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3336 @end example
3337
3338 @item
3339 3:1 compression starting at -15dB:
3340 @example
3341 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3342 @end example
3343
3344 @item
3345 Compressor/Gate:
3346 @example
3347 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3348 @end example
3349
3350 @item
3351 Expander:
3352 @example
3353 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
3354 @end example
3355
3356 @item
3357 Hard limiter at -6dB:
3358 @example
3359 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3360 @end example
3361
3362 @item
3363 Hard limiter at -12dB:
3364 @example
3365 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3366 @end example
3367
3368 @item
3369 Hard noise gate at -35 dB:
3370 @example
3371 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3372 @end example
3373
3374 @item
3375 Soft limiter:
3376 @example
3377 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3378 @end example
3379 @end itemize
3380
3381 @section compensationdelay
3382
3383 Compensation Delay Line is a metric based delay to compensate differing
3384 positions of microphones or speakers.
3385
3386 For example, you have recorded guitar with two microphones placed in
3387 different locations. Because the front of sound wave has fixed speed in
3388 normal conditions, the phasing of microphones can vary and depends on
3389 their location and interposition. The best sound mix can be achieved when
3390 these microphones are in phase (synchronized). Note that a distance of
3391 ~30 cm between microphones makes one microphone capture the signal in
3392 antiphase to the other microphone. That makes the final mix sound moody.
3393 This filter helps to solve phasing problems by adding different delays
3394 to each microphone track and make them synchronized.
3395
3396 The best result can be reached when you take one track as base and
3397 synchronize other tracks one by one with it.
3398 Remember that synchronization/delay tolerance depends on sample rate, too.
3399 Higher sample rates will give more tolerance.
3400
3401 The filter accepts the following parameters:
3402
3403 @table @option
3404 @item mm
3405 Set millimeters distance. This is compensation distance for fine tuning.
3406 Default is 0.
3407
3408 @item cm
3409 Set cm distance. This is compensation distance for tightening distance setup.
3410 Default is 0.
3411
3412 @item m
3413 Set meters distance. This is compensation distance for hard distance setup.
3414 Default is 0.
3415
3416 @item dry
3417 Set dry amount. Amount of unprocessed (dry) signal.
3418 Default is 0.
3419
3420 @item wet
3421 Set wet amount. Amount of processed (wet) signal.
3422 Default is 1.
3423
3424 @item temp
3425 Set temperature in degrees Celsius. This is the temperature of the environment.
3426 Default is 20.
3427 @end table
3428
3429 @section crossfeed
3430 Apply headphone crossfeed filter.
3431
3432 Crossfeed is the process of blending the left and right channels of stereo
3433 audio recording.
3434 It is mainly used to reduce extreme stereo separation of low frequencies.
3435
3436 The intent is to produce more speaker like sound to the listener.
3437
3438 The filter accepts the following options:
3439
3440 @table @option
3441 @item strength
3442 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3443 This sets gain of low shelf filter for side part of stereo image.
3444 Default is -6dB. Max allowed is -30db when strength is set to 1.
3445
3446 @item range
3447 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3448 This sets cut off frequency of low shelf filter. Default is cut off near
3449 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3450
3451 @item slope
3452 Set curve slope of low shelf filter. Default is 0.5.
3453 Allowed range is from 0.01 to 1.
3454
3455 @item level_in
3456 Set input gain. Default is 0.9.
3457
3458 @item level_out
3459 Set output gain. Default is 1.
3460 @end table
3461
3462 @subsection Commands
3463
3464 This filter supports the all above options as @ref{commands}.
3465
3466 @section crystalizer
3467 Simple algorithm to expand audio dynamic range.
3468
3469 The filter accepts the following options:
3470
3471 @table @option
3472 @item i
3473 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3474 (unchanged sound) to 10.0 (maximum effect).
3475
3476 @item c
3477 Enable clipping. By default is enabled.
3478 @end table
3479
3480 @subsection Commands
3481
3482 This filter supports the all above options as @ref{commands}.
3483
3484 @section dcshift
3485 Apply a DC shift to the audio.
3486
3487 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3488 in the recording chain) from the audio. The effect of a DC offset is reduced
3489 headroom and hence volume. The @ref{astats} filter can be used to determine if
3490 a signal has a DC offset.
3491
3492 @table @option
3493 @item shift
3494 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3495 the audio.
3496
3497 @item limitergain
3498 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3499 used to prevent clipping.
3500 @end table
3501
3502 @section deesser
3503
3504 Apply de-essing to the audio samples.
3505
3506 @table @option
3507 @item i
3508 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3509 Default is 0.
3510
3511 @item m
3512 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3513 Default is 0.5.
3514
3515 @item f
3516 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3517 Default is 0.5.
3518
3519 @item s
3520 Set the output mode.
3521
3522 It accepts the following values:
3523 @table @option
3524 @item i
3525 Pass input unchanged.
3526
3527 @item o
3528 Pass ess filtered out.
3529
3530 @item e
3531 Pass only ess.
3532
3533 Default value is @var{o}.
3534 @end table
3535
3536 @end table
3537
3538 @section drmeter
3539 Measure audio dynamic range.
3540
3541 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3542 is found in transition material. And anything less that 8 have very poor dynamics
3543 and is very compressed.
3544
3545 The filter accepts the following options:
3546
3547 @table @option
3548 @item length
3549 Set window length in seconds used to split audio into segments of equal length.
3550 Default is 3 seconds.
3551 @end table
3552
3553 @section dynaudnorm
3554 Dynamic Audio Normalizer.
3555
3556 This filter applies a certain amount of gain to the input audio in order
3557 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3558 contrast to more "simple" normalization algorithms, the Dynamic Audio
3559 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3560 This allows for applying extra gain to the "quiet" sections of the audio
3561 while avoiding distortions or clipping the "loud" sections. In other words:
3562 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3563 sections, in the sense that the volume of each section is brought to the
3564 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3565 this goal *without* applying "dynamic range compressing". It will retain 100%
3566 of the dynamic range *within* each section of the audio file.
3567
3568 @table @option
3569 @item framelen, f
3570 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3571 Default is 500 milliseconds.
3572 The Dynamic Audio Normalizer processes the input audio in small chunks,
3573 referred to as frames. This is required, because a peak magnitude has no
3574 meaning for just a single sample value. Instead, we need to determine the
3575 peak magnitude for a contiguous sequence of sample values. While a "standard"
3576 normalizer would simply use the peak magnitude of the complete file, the
3577 Dynamic Audio Normalizer determines the peak magnitude individually for each
3578 frame. The length of a frame is specified in milliseconds. By default, the
3579 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3580 been found to give good results with most files.
3581 Note that the exact frame length, in number of samples, will be determined
3582 automatically, based on the sampling rate of the individual input audio file.
3583
3584 @item gausssize, g
3585 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3586 number. Default is 31.
3587 Probably the most important parameter of the Dynamic Audio Normalizer is the
3588 @code{window size} of the Gaussian smoothing filter. The filter's window size
3589 is specified in frames, centered around the current frame. For the sake of
3590 simplicity, this must be an odd number. Consequently, the default value of 31
3591 takes into account the current frame, as well as the 15 preceding frames and
3592 the 15 subsequent frames. Using a larger window results in a stronger
3593 smoothing effect and thus in less gain variation, i.e. slower gain
3594 adaptation. Conversely, using a smaller window results in a weaker smoothing
3595 effect and thus in more gain variation, i.e. faster gain adaptation.
3596 In other words, the more you increase this value, the more the Dynamic Audio
3597 Normalizer will behave like a "traditional" normalization filter. On the
3598 contrary, the more you decrease this value, the more the Dynamic Audio
3599 Normalizer will behave like a dynamic range compressor.
3600
3601 @item peak, p
3602 Set the target peak value. This specifies the highest permissible magnitude
3603 level for the normalized audio input. This filter will try to approach the
3604 target peak magnitude as closely as possible, but at the same time it also
3605 makes sure that the normalized signal will never exceed the peak magnitude.
3606 A frame's maximum local gain factor is imposed directly by the target peak
3607 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3608 It is not recommended to go above this value.
3609
3610 @item maxgain, m
3611 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3612 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3613 factor for each input frame, i.e. the maximum gain factor that does not
3614 result in clipping or distortion. The maximum gain factor is determined by
3615 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3616 additionally bounds the frame's maximum gain factor by a predetermined
3617 (global) maximum gain factor. This is done in order to avoid excessive gain
3618 factors in "silent" or almost silent frames. By default, the maximum gain
3619 factor is 10.0, For most inputs the default value should be sufficient and
3620 it usually is not recommended to increase this value. Though, for input
3621 with an extremely low overall volume level, it may be necessary to allow even
3622 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3623 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3624 Instead, a "sigmoid" threshold function will be applied. This way, the
3625 gain factors will smoothly approach the threshold value, but never exceed that
3626 value.
3627
3628 @item targetrms, r
3629 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3630 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3631 This means that the maximum local gain factor for each frame is defined
3632 (only) by the frame's highest magnitude sample. This way, the samples can
3633 be amplified as much as possible without exceeding the maximum signal
3634 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3635 Normalizer can also take into account the frame's root mean square,
3636 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3637 determine the power of a time-varying signal. It is therefore considered
3638 that the RMS is a better approximation of the "perceived loudness" than
3639 just looking at the signal's peak magnitude. Consequently, by adjusting all
3640 frames to a constant RMS value, a uniform "perceived loudness" can be
3641 established. If a target RMS value has been specified, a frame's local gain
3642 factor is defined as the factor that would result in exactly that RMS value.
3643 Note, however, that the maximum local gain factor is still restricted by the
3644 frame's highest magnitude sample, in order to prevent clipping.
3645
3646 @item coupling, n
3647 Enable channels coupling. By default is enabled.
3648 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3649 amount. This means the same gain factor will be applied to all channels, i.e.
3650 the maximum possible gain factor is determined by the "loudest" channel.
3651 However, in some recordings, it may happen that the volume of the different
3652 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3653 In this case, this option can be used to disable the channel coupling. This way,
3654 the gain factor will be determined independently for each channel, depending
3655 only on the individual channel's highest magnitude sample. This allows for
3656 harmonizing the volume of the different channels.
3657
3658 @item correctdc, c
3659 Enable DC bias correction. By default is disabled.
3660 An audio signal (in the time domain) is a sequence of sample values.
3661 In the Dynamic Audio Normalizer these sample values are represented in the
3662 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3663 audio signal, or "waveform", should be centered around the zero point.
3664 That means if we calculate the mean value of all samples in a file, or in a
3665 single frame, then the result should be 0.0 or at least very close to that
3666 value. If, however, there is a significant deviation of the mean value from
3667 0.0, in either positive or negative direction, this is referred to as a
3668 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3669 Audio Normalizer provides optional DC bias correction.
3670 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3671 the mean value, or "DC correction" offset, of each input frame and subtract
3672 that value from all of the frame's sample values which ensures those samples
3673 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3674 boundaries, the DC correction offset values will be interpolated smoothly
3675 between neighbouring frames.
3676
3677 @item altboundary, b
3678 Enable alternative boundary mode. By default is disabled.
3679 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3680 around each frame. This includes the preceding frames as well as the
3681 subsequent frames. However, for the "boundary" frames, located at the very
3682 beginning and at the very end of the audio file, not all neighbouring
3683 frames are available. In particular, for the first few frames in the audio
3684 file, the preceding frames are not known. And, similarly, for the last few
3685 frames in the audio file, the subsequent frames are not known. Thus, the
3686 question arises which gain factors should be assumed for the missing frames
3687 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3688 to deal with this situation. The default boundary mode assumes a gain factor
3689 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3690 "fade out" at the beginning and at the end of the input, respectively.
3691
3692 @item compress, s
3693 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3694 By default, the Dynamic Audio Normalizer does not apply "traditional"
3695 compression. This means that signal peaks will not be pruned and thus the
3696 full dynamic range will be retained within each local neighbourhood. However,
3697 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3698 normalization algorithm with a more "traditional" compression.
3699 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3700 (thresholding) function. If (and only if) the compression feature is enabled,
3701 all input frames will be processed by a soft knee thresholding function prior
3702 to the actual normalization process. Put simply, the thresholding function is
3703 going to prune all samples whose magnitude exceeds a certain threshold value.
3704 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3705 value. Instead, the threshold value will be adjusted for each individual
3706 frame.
3707 In general, smaller parameters result in stronger compression, and vice versa.
3708 Values below 3.0 are not recommended, because audible distortion may appear.
3709
3710 @item threshold, t
3711 Set the target threshold value. This specifies the lowest permissible
3712 magnitude level for the audio input which will be normalized.
3713 If input frame volume is above this value frame will be normalized.
3714 Otherwise frame may not be normalized at all. The default value is set
3715 to 0, which means all input frames will be normalized.
3716 This option is mostly useful if digital noise is not wanted to be amplified.
3717 @end table
3718
3719 @subsection Commands
3720
3721 This filter supports the all above options as @ref{commands}.
3722
3723 @section earwax
3724
3725 Make audio easier to listen to on headphones.
3726
3727 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3728 so that when listened to on headphones the stereo image is moved from
3729 inside your head (standard for headphones) to outside and in front of
3730 the listener (standard for speakers).
3731
3732 Ported from SoX.
3733
3734 @section equalizer
3735
3736 Apply a two-pole peaking equalisation (EQ) filter. With this
3737 filter, the signal-level at and around a selected frequency can
3738 be increased or decreased, whilst (unlike bandpass and bandreject
3739 filters) that at all other frequencies is unchanged.
3740
3741 In order to produce complex equalisation curves, this filter can
3742 be given several times, each with a different central frequency.
3743
3744 The filter accepts the following options:
3745
3746 @table @option
3747 @item frequency, f
3748 Set the filter's central frequency in Hz.
3749
3750 @item width_type, t
3751 Set method to specify band-width of filter.
3752 @table @option
3753 @item h
3754 Hz
3755 @item q
3756 Q-Factor
3757 @item o
3758 octave
3759 @item s
3760 slope
3761 @item k
3762 kHz
3763 @end table
3764
3765 @item width, w
3766 Specify the band-width of a filter in width_type units.
3767
3768 @item gain, g
3769 Set the required gain or attenuation in dB.
3770 Beware of clipping when using a positive gain.
3771
3772 @item mix, m
3773 How much to use filtered signal in output. Default is 1.
3774 Range is between 0 and 1.
3775
3776 @item channels, c
3777 Specify which channels to filter, by default all available are filtered.
3778
3779 @item normalize, n
3780 Normalize biquad coefficients, by default is disabled.
3781 Enabling it will normalize magnitude response at DC to 0dB.
3782
3783 @item transform, a
3784 Set transform type of IIR filter.
3785 @table @option
3786 @item di
3787 @item dii
3788 @item tdii
3789 @item latt
3790 @end table
3791 @end table
3792
3793 @subsection Examples
3794 @itemize
3795 @item
3796 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3797 @example
3798 equalizer=f=1000:t=h:width=200:g=-10
3799 @end example
3800
3801 @item
3802 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3803 @example
3804 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3805 @end example
3806 @end itemize
3807
3808 @subsection Commands
3809
3810 This filter supports the following commands:
3811 @table @option
3812 @item frequency, f
3813 Change equalizer frequency.
3814 Syntax for the command is : "@var{frequency}"
3815
3816 @item width_type, t
3817 Change equalizer width_type.
3818 Syntax for the command is : "@var{width_type}"
3819
3820 @item width, w
3821 Change equalizer width.
3822 Syntax for the command is : "@var{width}"
3823
3824 @item gain, g
3825 Change equalizer gain.
3826 Syntax for the command is : "@var{gain}"
3827
3828 @item mix, m
3829 Change equalizer mix.
3830 Syntax for the command is : "@var{mix}"
3831 @end table
3832
3833 @section extrastereo
3834
3835 Linearly increases the difference between left and right channels which
3836 adds some sort of "live" effect to playback.
3837
3838 The filter accepts the following options:
3839
3840 @table @option
3841 @item m
3842 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3843 (average of both channels), with 1.0 sound will be unchanged, with
3844 -1.0 left and right channels will be swapped.
3845
3846 @item c
3847 Enable clipping. By default is enabled.
3848 @end table
3849
3850 @subsection Commands
3851
3852 This filter supports the all above options as @ref{commands}.
3853
3854 @section firequalizer
3855 Apply FIR Equalization using arbitrary frequency response.
3856
3857 The filter accepts the following option:
3858
3859 @table @option
3860 @item gain
3861 Set gain curve equation (in dB). The expression can contain variables:
3862 @table @option
3863 @item f
3864 the evaluated frequency
3865 @item sr
3866 sample rate
3867 @item ch
3868 channel number, set to 0 when multichannels evaluation is disabled
3869 @item chid
3870 channel id, see libavutil/channel_layout.h, set to the first channel id when
3871 multichannels evaluation is disabled
3872 @item chs
3873 number of channels
3874 @item chlayout
3875 channel_layout, see libavutil/channel_layout.h
3876
3877 @end table
3878 and functions:
3879 @table @option
3880 @item gain_interpolate(f)
3881 interpolate gain on frequency f based on gain_entry
3882 @item cubic_interpolate(f)
3883 same as gain_interpolate, but smoother
3884 @end table
3885 This option is also available as command. Default is @code{gain_interpolate(f)}.
3886
3887 @item gain_entry
3888 Set gain entry for gain_interpolate function. The expression can
3889 contain functions:
3890 @table @option
3891 @item entry(f, g)
3892 store gain entry at frequency f with value g
3893 @end table
3894 This option is also available as command.
3895
3896 @item delay
3897 Set filter delay in seconds. Higher value means more accurate.
3898 Default is @code{0.01}.
3899
3900 @item accuracy
3901 Set filter accuracy in Hz. Lower value means more accurate.
3902 Default is @code{5}.
3903
3904 @item wfunc
3905 Set window function. Acceptable values are:
3906 @table @option
3907 @item rectangular
3908 rectangular window, useful when gain curve is already smooth
3909 @item hann
3910 hann window (default)
3911 @item hamming
3912 hamming window
3913 @item blackman
3914 blackman window
3915 @item nuttall3
3916 3-terms continuous 1st derivative nuttall window
3917 @item mnuttall3
3918 minimum 3-terms discontinuous nuttall window
3919 @item nuttall
3920 4-terms continuous 1st derivative nuttall window
3921 @item bnuttall
3922 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3923 @item bharris
3924 blackman-harris window
3925 @item tukey
3926 tukey window
3927 @end table
3928
3929 @item fixed
3930 If enabled, use fixed number of audio samples. This improves speed when
3931 filtering with large delay. Default is disabled.
3932
3933 @item multi
3934 Enable multichannels evaluation on gain. Default is disabled.
3935
3936 @item zero_phase
3937 Enable zero phase mode by subtracting timestamp to compensate delay.
3938 Default is disabled.
3939
3940 @item scale
3941 Set scale used by gain. Acceptable values are:
3942 @table @option
3943 @item linlin
3944 linear frequency, linear gain
3945 @item linlog
3946 linear frequency, logarithmic (in dB) gain (default)
3947 @item loglin
3948 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3949 @item loglog
3950 logarithmic frequency, logarithmic gain
3951 @end table
3952
3953 @item dumpfile
3954 Set file for dumping, suitable for gnuplot.
3955
3956 @item dumpscale
3957 Set scale for dumpfile. Acceptable values are same with scale option.
3958 Default is linlog.
3959
3960 @item fft2
3961 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3962 Default is disabled.
3963
3964 @item min_phase
3965 Enable minimum phase impulse response. Default is disabled.
3966 @end table
3967
3968 @subsection Examples
3969 @itemize
3970 @item
3971 lowpass at 1000 Hz:
3972 @example
3973 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3974 @end example
3975 @item
3976 lowpass at 1000 Hz with gain_entry:
3977 @example
3978 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3979 @end example
3980 @item
3981 custom equalization:
3982 @example
3983 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3984 @end example
3985 @item
3986 higher delay with zero phase to compensate delay:
3987 @example
3988 firequalizer=delay=0.1:fixed=on:zero_phase=on
3989 @end example
3990 @item
3991 lowpass on left channel, highpass on right channel:
3992 @example
3993 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3994 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3995 @end example
3996 @end itemize
3997
3998 @section flanger
3999 Apply a flanging effect to the audio.
4000
4001 The filter accepts the following options:
4002
4003 @table @option
4004 @item delay
4005 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
4006
4007 @item depth
4008 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
4009
4010 @item regen
4011 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
4012 Default value is 0.
4013
4014 @item width
4015 Set percentage of delayed signal mixed with original. Range from 0 to 100.
4016 Default value is 71.
4017
4018 @item speed
4019 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
4020
4021 @item shape
4022 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
4023 Default value is @var{sinusoidal}.
4024
4025 @item phase
4026 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
4027 Default value is 25.
4028
4029 @item interp
4030 Set delay-line interpolation, @var{linear} or @var{quadratic}.
4031 Default is @var{linear}.
4032 @end table
4033
4034 @section haas
4035 Apply Haas effect to audio.
4036
4037 Note that this makes most sense to apply on mono signals.
4038 With this filter applied to mono signals it give some directionality and
4039 stretches its stereo image.
4040
4041 The filter accepts the following options:
4042
4043 @table @option
4044 @item level_in
4045 Set input level. By default is @var{1}, or 0dB
4046
4047 @item level_out
4048 Set output level. By default is @var{1}, or 0dB.
4049
4050 @item side_gain
4051 Set gain applied to side part of signal. By default is @var{1}.
4052
4053 @item middle_source
4054 Set kind of middle source. Can be one of the following:
4055
4056 @table @samp
4057 @item left
4058 Pick left channel.
4059
4060 @item right
4061 Pick right channel.
4062
4063 @item mid
4064 Pick middle part signal of stereo image.
4065
4066 @item side
4067 Pick side part signal of stereo image.
4068 @end table
4069
4070 @item middle_phase
4071 Change middle phase. By default is disabled.
4072
4073 @item left_delay
4074 Set left channel delay. By default is @var{2.05} milliseconds.
4075
4076 @item left_balance
4077 Set left channel balance. By default is @var{-1}.
4078
4079 @item left_gain
4080 Set left channel gain. By default is @var{1}.
4081
4082 @item left_phase
4083 Change left phase. By default is disabled.
4084
4085 @item right_delay
4086 Set right channel delay. By defaults is @var{2.12} milliseconds.
4087
4088 @item right_balance
4089 Set right channel balance. By default is @var{1}.
4090
4091 @item right_gain
4092 Set right channel gain. By default is @var{1}.
4093
4094 @item right_phase
4095 Change right phase. By default is enabled.
4096 @end table
4097
4098 @section hdcd
4099
4100 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
4101 embedded HDCD codes is expanded into a 20-bit PCM stream.
4102
4103 The filter supports the Peak Extend and Low-level Gain Adjustment features
4104 of HDCD, and detects the Transient Filter flag.
4105
4106 @example
4107 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
4108 @end example
4109
4110 When using the filter with wav, note the default encoding for wav is 16-bit,
4111 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
4112 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
4113 @example
4114 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
4115 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
4116 @end example
4117
4118 The filter accepts the following options:
4119
4120 @table @option
4121 @item disable_autoconvert
4122 Disable any automatic format conversion or resampling in the filter graph.
4123
4124 @item process_stereo
4125 Process the stereo channels together. If target_gain does not match between
4126 channels, consider it invalid and use the last valid target_gain.
4127
4128 @item cdt_ms
4129 Set the code detect timer period in ms.
4130
4131 @item force_pe
4132 Always extend peaks above -3dBFS even if PE isn't signaled.
4133
4134 @item analyze_mode
4135 Replace audio with a solid tone and adjust the amplitude to signal some
4136 specific aspect of the decoding process. The output file can be loaded in
4137 an audio editor alongside the original to aid analysis.
4138
4139 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
4140
4141 Modes are:
4142 @table @samp
4143 @item 0, off
4144 Disabled
4145 @item 1, lle
4146 Gain adjustment level at each sample
4147 @item 2, pe
4148 Samples where peak extend occurs
4149 @item 3, cdt
4150 Samples where the code detect timer is active
4151 @item 4, tgm
4152 Samples where the target gain does not match between channels
4153 @end table
4154 @end table
4155
4156 @section headphone
4157
4158 Apply head-related transfer functions (HRTFs) to create virtual
4159 loudspeakers around the user for binaural listening via headphones.
4160 The HRIRs are provided via additional streams, for each channel
4161 one stereo input stream is needed.
4162
4163 The filter accepts the following options:
4164
4165 @table @option
4166 @item map
4167 Set mapping of input streams for convolution.
4168 The argument is a '|'-separated list of channel names in order as they
4169 are given as additional stream inputs for filter.
4170 This also specify number of input streams. Number of input streams
4171 must be not less than number of channels in first stream plus one.
4172
4173 @item gain
4174 Set gain applied to audio. Value is in dB. Default is 0.
4175
4176 @item type
4177 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4178 processing audio in time domain which is slow.
4179 @var{freq} is processing audio in frequency domain which is fast.
4180 Default is @var{freq}.
4181
4182 @item lfe
4183 Set custom gain for LFE channels. Value is in dB. Default is 0.
4184
4185 @item size
4186 Set size of frame in number of samples which will be processed at once.
4187 Default value is @var{1024}. Allowed range is from 1024 to 96000.
4188
4189 @item hrir
4190 Set format of hrir stream.
4191 Default value is @var{stereo}. Alternative value is @var{multich}.
4192 If value is set to @var{stereo}, number of additional streams should
4193 be greater or equal to number of input channels in first input stream.
4194 Also each additional stream should have stereo number of channels.
4195 If value is set to @var{multich}, number of additional streams should
4196 be exactly one. Also number of input channels of additional stream
4197 should be equal or greater than twice number of channels of first input
4198 stream.
4199 @end table
4200
4201 @subsection Examples
4202
4203 @itemize
4204 @item
4205 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4206 each amovie filter use stereo file with IR coefficients as input.
4207 The files give coefficients for each position of virtual loudspeaker:
4208 @example
4209 ffmpeg -i input.wav
4210 -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"
4211 output.wav
4212 @end example
4213
4214 @item
4215 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4216 but now in @var{multich} @var{hrir} format.
4217 @example
4218 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"
4219 output.wav
4220 @end example
4221 @end itemize
4222
4223 @section highpass
4224
4225 Apply a high-pass filter with 3dB point frequency.
4226 The filter can be either single-pole, or double-pole (the default).
4227 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4228
4229 The filter accepts the following options:
4230
4231 @table @option
4232 @item frequency, f
4233 Set frequency in Hz. Default is 3000.
4234
4235 @item poles, p
4236 Set number of poles. Default is 2.
4237
4238 @item width_type, t
4239 Set method to specify band-width of filter.
4240 @table @option
4241 @item h
4242 Hz
4243 @item q
4244 Q-Factor
4245 @item o
4246 octave
4247 @item s
4248 slope
4249 @item k
4250 kHz
4251 @end table
4252
4253 @item width, w
4254 Specify the band-width of a filter in width_type units.
4255 Applies only to double-pole filter.
4256 The default is 0.707q and gives a Butterworth response.
4257
4258 @item mix, m
4259 How much to use filtered signal in output. Default is 1.
4260 Range is between 0 and 1.
4261
4262 @item channels, c
4263 Specify which channels to filter, by default all available are filtered.
4264
4265 @item normalize, n
4266 Normalize biquad coefficients, by default is disabled.
4267 Enabling it will normalize magnitude response at DC to 0dB.
4268
4269 @item transform, a
4270 Set transform type of IIR filter.
4271 @table @option
4272 @item di
4273 @item dii
4274 @item tdii
4275 @item latt
4276 @end table
4277 @end table
4278
4279 @subsection Commands
4280
4281 This filter supports the following commands:
4282 @table @option
4283 @item frequency, f
4284 Change highpass frequency.
4285 Syntax for the command is : "@var{frequency}"
4286
4287 @item width_type, t
4288 Change highpass width_type.
4289 Syntax for the command is : "@var{width_type}"
4290
4291 @item width, w
4292 Change highpass width.
4293 Syntax for the command is : "@var{width}"
4294
4295 @item mix, m
4296 Change highpass mix.
4297 Syntax for the command is : "@var{mix}"
4298 @end table
4299
4300 @section join
4301
4302 Join multiple input streams into one multi-channel stream.
4303
4304 It accepts the following parameters:
4305 @table @option
4306
4307 @item inputs
4308 The number of input streams. It defaults to 2.
4309
4310 @item channel_layout
4311 The desired output channel layout. It defaults to stereo.
4312
4313 @item map
4314 Map channels from inputs to output. The argument is a '|'-separated list of
4315 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4316 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4317 can be either the name of the input channel (e.g. FL for front left) or its
4318 index in the specified input stream. @var{out_channel} is the name of the output
4319 channel.
4320 @end table
4321
4322 The filter will attempt to guess the mappings when they are not specified
4323 explicitly. It does so by first trying to find an unused matching input channel
4324 and if that fails it picks the first unused input channel.
4325
4326 Join 3 inputs (with properly set channel layouts):
4327 @example
4328 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4329 @end example
4330
4331 Build a 5.1 output from 6 single-channel streams:
4332 @example
4333 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4334 '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'
4335 out
4336 @end example
4337
4338 @section ladspa
4339
4340 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4341
4342 To enable compilation of this filter you need to configure FFmpeg with
4343 @code{--enable-ladspa}.
4344
4345 @table @option
4346 @item file, f
4347 Specifies the name of LADSPA plugin library to load. If the environment
4348 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4349 each one of the directories specified by the colon separated list in
4350 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4351 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4352 @file{/usr/lib/ladspa/}.
4353
4354 @item plugin, p
4355 Specifies the plugin within the library. Some libraries contain only
4356 one plugin, but others contain many of them. If this is not set filter
4357 will list all available plugins within the specified library.
4358
4359 @item controls, c
4360 Set the '|' separated list of controls which are zero or more floating point
4361 values that determine the behavior of the loaded plugin (for example delay,
4362 threshold or gain).
4363 Controls need to be defined using the following syntax:
4364 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4365 @var{valuei} is the value set on the @var{i}-th control.
4366 Alternatively they can be also defined using the following syntax:
4367 @var{value0}|@var{value1}|@var{value2}|..., where
4368 @var{valuei} is the value set on the @var{i}-th control.
4369 If @option{controls} is set to @code{help}, all available controls and
4370 their valid ranges are printed.
4371
4372 @item sample_rate, s
4373 Specify the sample rate, default to 44100. Only used if plugin have
4374 zero inputs.
4375
4376 @item nb_samples, n
4377 Set the number of samples per channel per each output frame, default
4378 is 1024. Only used if plugin have zero inputs.
4379
4380 @item duration, d
4381 Set the minimum duration of the sourced audio. See
4382 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4383 for the accepted syntax.
4384 Note that the resulting duration may be greater than the specified duration,
4385 as the generated audio is always cut at the end of a complete frame.
4386 If not specified, or the expressed duration is negative, the audio is
4387 supposed to be generated forever.
4388 Only used if plugin have zero inputs.
4389
4390 @item latency, l
4391 Enable latency compensation, by default is disabled.
4392 Only used if plugin have inputs.
4393 @end table
4394
4395 @subsection Examples
4396
4397 @itemize
4398 @item
4399 List all available plugins within amp (LADSPA example plugin) library:
4400 @example
4401 ladspa=file=amp
4402 @end example
4403
4404 @item
4405 List all available controls and their valid ranges for @code{vcf_notch}
4406 plugin from @code{VCF} library:
4407 @example
4408 ladspa=f=vcf:p=vcf_notch:c=help
4409 @end example
4410
4411 @item
4412 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4413 plugin library:
4414 @example
4415 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4416 @end example
4417
4418 @item
4419 Add reverberation to the audio using TAP-plugins
4420 (Tom's Audio Processing plugins):
4421 @example
4422 ladspa=file=tap_reverb:tap_reverb
4423 @end example
4424
4425 @item
4426 Generate white noise, with 0.2 amplitude:
4427 @example
4428 ladspa=file=cmt:noise_source_white:c=c0=.2
4429 @end example
4430
4431 @item
4432 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4433 @code{C* Audio Plugin Suite} (CAPS) library:
4434 @example
4435 ladspa=file=caps:Click:c=c1=20'
4436 @end example
4437
4438 @item
4439 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4440 @example
4441 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4442 @end example
4443
4444 @item
4445 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4446 @code{SWH Plugins} collection:
4447 @example
4448 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4449 @end example
4450
4451 @item
4452 Attenuate low frequencies using Multiband EQ from Steve Harris
4453 @code{SWH Plugins} collection:
4454 @example
4455 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4456 @end example
4457
4458 @item
4459 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4460 (CAPS) library:
4461 @example
4462 ladspa=caps:Narrower
4463 @end example
4464
4465 @item
4466 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4467 @example
4468 ladspa=caps:White:.2
4469 @end example
4470
4471 @item
4472 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4473 @example
4474 ladspa=caps:Fractal:c=c1=1
4475 @end example
4476
4477 @item
4478 Dynamic volume normalization using @code{VLevel} plugin:
4479 @example
4480 ladspa=vlevel-ladspa:vlevel_mono
4481 @end example
4482 @end itemize
4483
4484 @subsection Commands
4485
4486 This filter supports the following commands:
4487 @table @option
4488 @item cN
4489 Modify the @var{N}-th control value.
4490
4491 If the specified value is not valid, it is ignored and prior one is kept.
4492 @end table
4493
4494 @section loudnorm
4495
4496 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4497 Support for both single pass (livestreams, files) and double pass (files) modes.
4498 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4499 detect true peaks, the audio stream will be upsampled to 192 kHz.
4500 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4501
4502 The filter accepts the following options:
4503
4504 @table @option
4505 @item I, i
4506 Set integrated loudness target.
4507 Range is -70.0 - -5.0. Default value is -24.0.
4508
4509 @item LRA, lra
4510 Set loudness range target.
4511 Range is 1.0 - 20.0. Default value is 7.0.
4512
4513 @item TP, tp
4514 Set maximum true peak.
4515 Range is -9.0 - +0.0. Default value is -2.0.
4516
4517 @item measured_I, measured_i
4518 Measured IL of input file.
4519 Range is -99.0 - +0.0.
4520
4521 @item measured_LRA, measured_lra
4522 Measured LRA of input file.
4523 Range is  0.0 - 99.0.
4524
4525 @item measured_TP, measured_tp
4526 Measured true peak of input file.
4527 Range is  -99.0 - +99.0.
4528
4529 @item measured_thresh
4530 Measured threshold of input file.
4531 Range is -99.0 - +0.0.
4532
4533 @item offset
4534 Set offset gain. Gain is applied before the true-peak limiter.
4535 Range is  -99.0 - +99.0. Default is +0.0.
4536
4537 @item linear
4538 Normalize by linearly scaling the source audio.
4539 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4540 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4541 be lower than source LRA and the change in integrated loudness shouldn't
4542 result in a true peak which exceeds the target TP. If any of these
4543 conditions aren't met, normalization mode will revert to @var{dynamic}.
4544 Options are @code{true} or @code{false}. Default is @code{true}.
4545
4546 @item dual_mono
4547 Treat mono input files as "dual-mono". If a mono file is intended for playback
4548 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4549 If set to @code{true}, this option will compensate for this effect.
4550 Multi-channel input files are not affected by this option.
4551 Options are true or false. Default is false.
4552
4553 @item print_format
4554 Set print format for stats. Options are summary, json, or none.
4555 Default value is none.
4556 @end table
4557
4558 @section lowpass
4559
4560 Apply a low-pass filter with 3dB point frequency.
4561 The filter can be either single-pole or double-pole (the default).
4562 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4563
4564 The filter accepts the following options:
4565
4566 @table @option
4567 @item frequency, f
4568 Set frequency in Hz. Default is 500.
4569
4570 @item poles, p
4571 Set number of poles. Default is 2.
4572
4573 @item width_type, t
4574 Set method to specify band-width of filter.
4575 @table @option
4576 @item h
4577 Hz
4578 @item q
4579 Q-Factor
4580 @item o
4581 octave
4582 @item s
4583 slope
4584 @item k
4585 kHz
4586 @end table
4587
4588 @item width, w
4589 Specify the band-width of a filter in width_type units.
4590 Applies only to double-pole filter.
4591 The default is 0.707q and gives a Butterworth response.
4592
4593 @item mix, m
4594 How much to use filtered signal in output. Default is 1.
4595 Range is between 0 and 1.
4596
4597 @item channels, c
4598 Specify which channels to filter, by default all available are filtered.
4599
4600 @item normalize, n
4601 Normalize biquad coefficients, by default is disabled.
4602 Enabling it will normalize magnitude response at DC to 0dB.
4603
4604 @item transform, a
4605 Set transform type of IIR filter.
4606 @table @option
4607 @item di
4608 @item dii
4609 @item tdii
4610 @item latt
4611 @end table
4612 @end table
4613
4614 @subsection Examples
4615 @itemize
4616 @item
4617 Lowpass only LFE channel, it LFE is not present it does nothing:
4618 @example
4619 lowpass=c=LFE
4620 @end example
4621 @end itemize
4622
4623 @subsection Commands
4624
4625 This filter supports the following commands:
4626 @table @option
4627 @item frequency, f
4628 Change lowpass frequency.
4629 Syntax for the command is : "@var{frequency}"
4630
4631 @item width_type, t
4632 Change lowpass width_type.
4633 Syntax for the command is : "@var{width_type}"
4634
4635 @item width, w
4636 Change lowpass width.
4637 Syntax for the command is : "@var{width}"
4638
4639 @item mix, m
4640 Change lowpass mix.
4641 Syntax for the command is : "@var{mix}"
4642 @end table
4643
4644 @section lv2
4645
4646 Load a LV2 (LADSPA Version 2) plugin.
4647
4648 To enable compilation of this filter you need to configure FFmpeg with
4649 @code{--enable-lv2}.
4650
4651 @table @option
4652 @item plugin, p
4653 Specifies the plugin URI. You may need to escape ':'.
4654
4655 @item controls, c
4656 Set the '|' separated list of controls which are zero or more floating point
4657 values that determine the behavior of the loaded plugin (for example delay,
4658 threshold or gain).
4659 If @option{controls} is set to @code{help}, all available controls and
4660 their valid ranges are printed.
4661
4662 @item sample_rate, s
4663 Specify the sample rate, default to 44100. Only used if plugin have
4664 zero inputs.
4665
4666 @item nb_samples, n
4667 Set the number of samples per channel per each output frame, default
4668 is 1024. Only used if plugin have zero inputs.
4669
4670 @item duration, d
4671 Set the minimum duration of the sourced audio. See
4672 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4673 for the accepted syntax.
4674 Note that the resulting duration may be greater than the specified duration,
4675 as the generated audio is always cut at the end of a complete frame.
4676 If not specified, or the expressed duration is negative, the audio is
4677 supposed to be generated forever.
4678 Only used if plugin have zero inputs.
4679 @end table
4680
4681 @subsection Examples
4682
4683 @itemize
4684 @item
4685 Apply bass enhancer plugin from Calf:
4686 @example
4687 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4688 @end example
4689
4690 @item
4691 Apply vinyl plugin from Calf:
4692 @example
4693 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4694 @end example
4695
4696 @item
4697 Apply bit crusher plugin from ArtyFX:
4698 @example
4699 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4700 @end example
4701 @end itemize
4702
4703 @section mcompand
4704 Multiband Compress or expand the audio's dynamic range.
4705
4706 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4707 This is akin to the crossover of a loudspeaker, and results in flat frequency
4708 response when absent compander action.
4709
4710 It accepts the following parameters:
4711
4712 @table @option
4713 @item args
4714 This option syntax is:
4715 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4716 For explanation of each item refer to compand filter documentation.
4717 @end table
4718
4719 @anchor{pan}
4720 @section pan
4721
4722 Mix channels with specific gain levels. The filter accepts the output
4723 channel layout followed by a set of channels definitions.
4724
4725 This filter is also designed to efficiently remap the channels of an audio
4726 stream.
4727
4728 The filter accepts parameters of the form:
4729 "@var{l}|@var{outdef}|@var{outdef}|..."
4730
4731 @table @option
4732 @item l
4733 output channel layout or number of channels
4734
4735 @item outdef
4736 output channel specification, of the form:
4737 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4738
4739 @item out_name
4740 output channel to define, either a channel name (FL, FR, etc.) or a channel
4741 number (c0, c1, etc.)
4742
4743 @item gain
4744 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4745
4746 @item in_name
4747 input channel to use, see out_name for details; it is not possible to mix
4748 named and numbered input channels
4749 @end table
4750
4751 If the `=' in a channel specification is replaced by `<', then the gains for
4752 that specification will be renormalized so that the total is 1, thus
4753 avoiding clipping noise.
4754
4755 @subsection Mixing examples
4756
4757 For example, if you want to down-mix from stereo to mono, but with a bigger
4758 factor for the left channel:
4759 @example
4760 pan=1c|c0=0.9*c0+0.1*c1
4761 @end example
4762
4763 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4764 7-channels surround:
4765 @example
4766 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4767 @end example
4768
4769 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4770 that should be preferred (see "-ac" option) unless you have very specific
4771 needs.
4772
4773 @subsection Remapping examples
4774
4775 The channel remapping will be effective if, and only if:
4776
4777 @itemize
4778 @item gain coefficients are zeroes or ones,
4779 @item only one input per channel output,
4780 @end itemize
4781
4782 If all these conditions are satisfied, the filter will notify the user ("Pure
4783 channel mapping detected"), and use an optimized and lossless method to do the
4784 remapping.
4785
4786 For example, if you have a 5.1 source and want a stereo audio stream by
4787 dropping the extra channels:
4788 @example
4789 pan="stereo| c0=FL | c1=FR"
4790 @end example
4791
4792 Given the same source, you can also switch front left and front right channels
4793 and keep the input channel layout:
4794 @example
4795 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4796 @end example
4797
4798 If the input is a stereo audio stream, you can mute the front left channel (and
4799 still keep the stereo channel layout) with:
4800 @example
4801 pan="stereo|c1=c1"
4802 @end example
4803
4804 Still with a stereo audio stream input, you can copy the right channel in both
4805 front left and right:
4806 @example
4807 pan="stereo| c0=FR | c1=FR"
4808 @end example
4809
4810 @section replaygain
4811
4812 ReplayGain scanner filter. This filter takes an audio stream as an input and
4813 outputs it unchanged.
4814 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4815
4816 @section resample
4817
4818 Convert the audio sample format, sample rate and channel layout. It is
4819 not meant to be used directly.
4820
4821 @section rubberband
4822 Apply time-stretching and pitch-shifting with librubberband.
4823
4824 To enable compilation of this filter, you need to configure FFmpeg with
4825 @code{--enable-librubberband}.
4826
4827 The filter accepts the following options:
4828
4829 @table @option
4830 @item tempo
4831 Set tempo scale factor.
4832
4833 @item pitch
4834 Set pitch scale factor.
4835
4836 @item transients
4837 Set transients detector.
4838 Possible values are:
4839 @table @var
4840 @item crisp
4841 @item mixed
4842 @item smooth
4843 @end table
4844
4845 @item detector
4846 Set detector.
4847 Possible values are:
4848 @table @var
4849 @item compound
4850 @item percussive
4851 @item soft
4852 @end table
4853
4854 @item phase
4855 Set phase.
4856 Possible values are:
4857 @table @var
4858 @item laminar
4859 @item independent
4860 @end table
4861
4862 @item window
4863 Set processing window size.
4864 Possible values are:
4865 @table @var
4866 @item standard
4867 @item short
4868 @item long
4869 @end table
4870
4871 @item smoothing
4872 Set smoothing.
4873 Possible values are:
4874 @table @var
4875 @item off
4876 @item on
4877 @end table
4878
4879 @item formant
4880 Enable formant preservation when shift pitching.
4881 Possible values are:
4882 @table @var
4883 @item shifted
4884 @item preserved
4885 @end table
4886
4887 @item pitchq
4888 Set pitch quality.
4889 Possible values are:
4890 @table @var
4891 @item quality
4892 @item speed
4893 @item consistency
4894 @end table
4895
4896 @item channels
4897 Set channels.
4898 Possible values are:
4899 @table @var
4900 @item apart
4901 @item together
4902 @end table
4903 @end table
4904
4905 @subsection Commands
4906
4907 This filter supports the following commands:
4908 @table @option
4909 @item tempo
4910 Change filter tempo scale factor.
4911 Syntax for the command is : "@var{tempo}"
4912
4913 @item pitch
4914 Change filter pitch scale factor.
4915 Syntax for the command is : "@var{pitch}"
4916 @end table
4917
4918 @section sidechaincompress
4919
4920 This filter acts like normal compressor but has the ability to compress
4921 detected signal using second input signal.
4922 It needs two input streams and returns one output stream.
4923 First input stream will be processed depending on second stream signal.
4924 The filtered signal then can be filtered with other filters in later stages of
4925 processing. See @ref{pan} and @ref{amerge} filter.
4926
4927 The filter accepts the following options:
4928
4929 @table @option
4930 @item level_in
4931 Set input gain. Default is 1. Range is between 0.015625 and 64.
4932
4933 @item mode
4934 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4935 Default is @code{downward}.
4936
4937 @item threshold
4938 If a signal of second stream raises above this level it will affect the gain
4939 reduction of first stream.
4940 By default is 0.125. Range is between 0.00097563 and 1.
4941
4942 @item ratio
4943 Set a ratio about which the signal is reduced. 1:2 means that if the level
4944 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4945 Default is 2. Range is between 1 and 20.
4946
4947 @item attack
4948 Amount of milliseconds the signal has to rise above the threshold before gain
4949 reduction starts. Default is 20. Range is between 0.01 and 2000.
4950
4951 @item release
4952 Amount of milliseconds the signal has to fall below the threshold before
4953 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4954
4955 @item makeup
4956 Set the amount by how much signal will be amplified after processing.
4957 Default is 1. Range is from 1 to 64.
4958
4959 @item knee
4960 Curve the sharp knee around the threshold to enter gain reduction more softly.
4961 Default is 2.82843. Range is between 1 and 8.
4962
4963 @item link
4964 Choose if the @code{average} level between all channels of side-chain stream
4965 or the louder(@code{maximum}) channel of side-chain stream affects the
4966 reduction. Default is @code{average}.
4967
4968 @item detection
4969 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4970 of @code{rms}. Default is @code{rms} which is mainly smoother.
4971
4972 @item level_sc
4973 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4974
4975 @item mix
4976 How much to use compressed signal in output. Default is 1.
4977 Range is between 0 and 1.
4978 @end table
4979
4980 @subsection Commands
4981
4982 This filter supports the all above options as @ref{commands}.
4983
4984 @subsection Examples
4985
4986 @itemize
4987 @item
4988 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4989 depending on the signal of 2nd input and later compressed signal to be
4990 merged with 2nd input:
4991 @example
4992 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4993 @end example
4994 @end itemize
4995
4996 @section sidechaingate
4997
4998 A sidechain gate acts like a normal (wideband) gate but has the ability to
4999 filter the detected signal before sending it to the gain reduction stage.
5000 Normally a gate uses the full range signal to detect a level above the
5001 threshold.
5002 For example: If you cut all lower frequencies from your sidechain signal
5003 the gate will decrease the volume of your track only if not enough highs
5004 appear. With this technique you are able to reduce the resonation of a
5005 natural drum or remove "rumbling" of muted strokes from a heavily distorted
5006 guitar.
5007 It needs two input streams and returns one output stream.
5008 First input stream will be processed depending on second stream signal.
5009
5010 The filter accepts the following options:
5011
5012 @table @option
5013 @item level_in
5014 Set input level before filtering.
5015 Default is 1. Allowed range is from 0.015625 to 64.
5016
5017 @item mode
5018 Set the mode of operation. Can be @code{upward} or @code{downward}.
5019 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
5020 will be amplified, expanding dynamic range in upward direction.
5021 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
5022
5023 @item range
5024 Set the level of gain reduction when the signal is below the threshold.
5025 Default is 0.06125. Allowed range is from 0 to 1.
5026 Setting this to 0 disables reduction and then filter behaves like expander.
5027
5028 @item threshold
5029 If a signal rises above this level the gain reduction is released.
5030 Default is 0.125. Allowed range is from 0 to 1.
5031
5032 @item ratio
5033 Set a ratio about which the signal is reduced.
5034 Default is 2. Allowed range is from 1 to 9000.
5035
5036 @item attack
5037 Amount of milliseconds the signal has to rise above the threshold before gain
5038 reduction stops.
5039 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
5040
5041 @item release
5042 Amount of milliseconds the signal has to fall below the threshold before the
5043 reduction is increased again. Default is 250 milliseconds.
5044 Allowed range is from 0.01 to 9000.
5045
5046 @item makeup
5047 Set amount of amplification of signal after processing.
5048 Default is 1. Allowed range is from 1 to 64.
5049
5050 @item knee
5051 Curve the sharp knee around the threshold to enter gain reduction more softly.
5052 Default is 2.828427125. Allowed range is from 1 to 8.
5053
5054 @item detection
5055 Choose if exact signal should be taken for detection or an RMS like one.
5056 Default is rms. Can be peak or rms.
5057
5058 @item link
5059 Choose if the average level between all channels or the louder channel affects
5060 the reduction.
5061 Default is average. Can be average or maximum.
5062
5063 @item level_sc
5064 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
5065 @end table
5066
5067 @section silencedetect
5068
5069 Detect silence in an audio stream.
5070
5071 This filter logs a message when it detects that the input audio volume is less
5072 or equal to a noise tolerance value for a duration greater or equal to the
5073 minimum detected noise duration.
5074
5075 The printed times and duration are expressed in seconds. The
5076 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
5077 is set on the first frame whose timestamp equals or exceeds the detection
5078 duration and it contains the timestamp of the first frame of the silence.
5079
5080 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
5081 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
5082 keys are set on the first frame after the silence. If @option{mono} is
5083 enabled, and each channel is evaluated separately, the @code{.X}
5084 suffixed keys are used, and @code{X} corresponds to the channel number.
5085
5086 The filter accepts the following options:
5087
5088 @table @option
5089 @item noise, n
5090 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
5091 specified value) or amplitude ratio. Default is -60dB, or 0.001.
5092
5093 @item duration, d
5094 Set silence duration until notification (default is 2 seconds). See
5095 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5096 for the accepted syntax.
5097
5098 @item mono, m
5099 Process each channel separately, instead of combined. By default is disabled.
5100 @end table
5101
5102 @subsection Examples
5103
5104 @itemize
5105 @item
5106 Detect 5 seconds of silence with -50dB noise tolerance:
5107 @example
5108 silencedetect=n=-50dB:d=5
5109 @end example
5110
5111 @item
5112 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
5113 tolerance in @file{silence.mp3}:
5114 @example
5115 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
5116 @end example
5117 @end itemize
5118
5119 @section silenceremove
5120
5121 Remove silence from the beginning, middle or end of the audio.
5122
5123 The filter accepts the following options:
5124
5125 @table @option
5126 @item start_periods
5127 This value is used to indicate if audio should be trimmed at beginning of
5128 the audio. A value of zero indicates no silence should be trimmed from the
5129 beginning. When specifying a non-zero value, it trims audio up until it
5130 finds non-silence. Normally, when trimming silence from beginning of audio
5131 the @var{start_periods} will be @code{1} but it can be increased to higher
5132 values to trim all audio up to specific count of non-silence periods.
5133 Default value is @code{0}.
5134
5135 @item start_duration
5136 Specify the amount of time that non-silence must be detected before it stops
5137 trimming audio. By increasing the duration, bursts of noises can be treated
5138 as silence and trimmed off. Default value is @code{0}.
5139
5140 @item start_threshold
5141 This indicates what sample value should be treated as silence. For digital
5142 audio, a value of @code{0} may be fine but for audio recorded from analog,
5143 you may wish to increase the value to account for background noise.
5144 Can be specified in dB (in case "dB" is appended to the specified value)
5145 or amplitude ratio. Default value is @code{0}.
5146
5147 @item start_silence
5148 Specify max duration of silence at beginning that will be kept after
5149 trimming. Default is 0, which is equal to trimming all samples detected
5150 as silence.
5151
5152 @item start_mode
5153 Specify mode of detection of silence end in start of multi-channel audio.
5154 Can be @var{any} or @var{all}. Default is @var{any}.
5155 With @var{any}, any sample that is detected as non-silence will cause
5156 stopped trimming of silence.
5157 With @var{all}, only if all channels are detected as non-silence will cause
5158 stopped trimming of silence.
5159
5160 @item stop_periods
5161 Set the count for trimming silence from the end of audio.
5162 To remove silence from the middle of a file, specify a @var{stop_periods}
5163 that is negative. This value is then treated as a positive value and is
5164 used to indicate the effect should restart processing as specified by
5165 @var{start_periods}, making it suitable for removing periods of silence
5166 in the middle of the audio.
5167 Default value is @code{0}.
5168
5169 @item stop_duration
5170 Specify a duration of silence that must exist before audio is not copied any
5171 more. By specifying a higher duration, silence that is wanted can be left in
5172 the audio.
5173 Default value is @code{0}.
5174
5175 @item stop_threshold
5176 This is the same as @option{start_threshold} but for trimming silence from
5177 the end of audio.
5178 Can be specified in dB (in case "dB" is appended to the specified value)
5179 or amplitude ratio. Default value is @code{0}.
5180
5181 @item stop_silence
5182 Specify max duration of silence at end that will be kept after
5183 trimming. Default is 0, which is equal to trimming all samples detected
5184 as silence.
5185
5186 @item stop_mode
5187 Specify mode of detection of silence start in end of multi-channel audio.
5188 Can be @var{any} or @var{all}. Default is @var{any}.
5189 With @var{any}, any sample that is detected as non-silence will cause
5190 stopped trimming of silence.
5191 With @var{all}, only if all channels are detected as non-silence will cause
5192 stopped trimming of silence.
5193
5194 @item detection
5195 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
5196 and works better with digital silence which is exactly 0.
5197 Default value is @code{rms}.
5198
5199 @item window
5200 Set duration in number of seconds used to calculate size of window in number
5201 of samples for detecting silence.
5202 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
5203 @end table
5204
5205 @subsection Examples
5206
5207 @itemize
5208 @item
5209 The following example shows how this filter can be used to start a recording
5210 that does not contain the delay at the start which usually occurs between
5211 pressing the record button and the start of the performance:
5212 @example
5213 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
5214 @end example
5215
5216 @item
5217 Trim all silence encountered from beginning to end where there is more than 1
5218 second of silence in audio:
5219 @example
5220 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
5221 @end example
5222
5223 @item
5224 Trim all digital silence samples, using peak detection, from beginning to end
5225 where there is more than 0 samples of digital silence in audio and digital
5226 silence is detected in all channels at same positions in stream:
5227 @example
5228 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
5229 @end example
5230 @end itemize
5231
5232 @section sofalizer
5233
5234 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
5235 loudspeakers around the user for binaural listening via headphones (audio
5236 formats up to 9 channels supported).
5237 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
5238 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
5239 Austrian Academy of Sciences.
5240
5241 To enable compilation of this filter you need to configure FFmpeg with
5242 @code{--enable-libmysofa}.
5243
5244 The filter accepts the following options:
5245
5246 @table @option
5247 @item sofa
5248 Set the SOFA file used for rendering.
5249
5250 @item gain
5251 Set gain applied to audio. Value is in dB. Default is 0.
5252
5253 @item rotation
5254 Set rotation of virtual loudspeakers in deg. Default is 0.
5255
5256 @item elevation
5257 Set elevation of virtual speakers in deg. Default is 0.
5258
5259 @item radius
5260 Set distance in meters between loudspeakers and the listener with near-field
5261 HRTFs. Default is 1.
5262
5263 @item type
5264 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
5265 processing audio in time domain which is slow.
5266 @var{freq} is processing audio in frequency domain which is fast.
5267 Default is @var{freq}.
5268
5269 @item speakers
5270 Set custom positions of virtual loudspeakers. Syntax for this option is:
5271 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5272 Each virtual loudspeaker is described with short channel name following with
5273 azimuth and elevation in degrees.
5274 Each virtual loudspeaker description is separated by '|'.
5275 For example to override front left and front right channel positions use:
5276 'speakers=FL 45 15|FR 345 15'.
5277 Descriptions with unrecognised channel names are ignored.
5278
5279 @item lfegain
5280 Set custom gain for LFE channels. Value is in dB. Default is 0.
5281
5282 @item framesize
5283 Set custom frame size in number of samples. Default is 1024.
5284 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5285 is set to @var{freq}.
5286
5287 @item normalize
5288 Should all IRs be normalized upon importing SOFA file.
5289 By default is enabled.
5290
5291 @item interpolate
5292 Should nearest IRs be interpolated with neighbor IRs if exact position
5293 does not match. By default is disabled.
5294
5295 @item minphase
5296 Minphase all IRs upon loading of SOFA file. By default is disabled.
5297
5298 @item anglestep
5299 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5300
5301 @item radstep
5302 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5303 @end table
5304
5305 @subsection Examples
5306
5307 @itemize
5308 @item
5309 Using ClubFritz6 sofa file:
5310 @example
5311 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5312 @end example
5313
5314 @item
5315 Using ClubFritz12 sofa file and bigger radius with small rotation:
5316 @example
5317 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5318 @end example
5319
5320 @item
5321 Similar as above but with custom speaker positions for front left, front right, back left and back right
5322 and also with custom gain:
5323 @example
5324 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5325 @end example
5326 @end itemize
5327
5328 @section speechnorm
5329 Speech Normalizer.
5330
5331 This filter expands or compresses each half-cycle of audio samples
5332 (local set of samples all above or all below zero and between two nearest zero crossings) depending
5333 on threshold value, so audio reaches target peak value under conditions controlled by below options.
5334
5335 The filter accepts the following options:
5336
5337 @table @option
5338 @item peak, p
5339 Set the expansion target peak value. This specifies the highest allowed absolute amplitude
5340 level for the normalized audio input. Default value is 0.95. Allowed range is from 0.0 to 1.0.
5341
5342 @item expansion, e
5343 Set the maximum expansion factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5344 This option controls maximum local half-cycle of samples expansion. The maximum expansion
5345 would be such that local peak value reaches target peak value but never to surpass it and that
5346 ratio between new and previous peak value does not surpass this option value.
5347
5348 @item compression, c
5349 Set the maximum compression factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5350 This option controls maximum local half-cycle of samples compression. This option is used
5351 only if @option{threshold} option is set to value greater than 0.0, then in such cases
5352 when local peak is lower or same as value set by @option{threshold} all samples belonging to
5353 that peak's half-cycle will be compressed by current compression factor.
5354
5355 @item threshold, t
5356 Set the threshold value. Default value is 0.0. Allowed range is from 0.0 to 1.0.
5357 This option specifies which half-cycles of samples will be compressed and which will be expanded.
5358 Any half-cycle samples with their local peak value below or same as this option value will be
5359 compressed by current compression factor, otherwise, if greater than threshold value they will be
5360 expanded with expansion factor so that it could reach peak target value but never surpass it.
5361
5362 @item raise, r
5363 Set the expansion raising amount per each half-cycle of samples. Default value is 0.001.
5364 Allowed range is from 0.0 to 1.0. This controls how fast expansion factor is raised per
5365 each new half-cycle until it reaches @option{expansion} value.
5366 Setting this options too high may lead to distortions.
5367
5368 @item fall, f
5369 Set the compression raising amount per each half-cycle of samples. Default value is 0.001.
5370 Allowed range is from 0.0 to 1.0. This controls how fast compression factor is raised per
5371 each new half-cycle until it reaches @option{compression} value.
5372
5373 @item channels, h
5374 Specify which channels to filter, by default all available channels are filtered.
5375
5376 @item invert, i
5377 Enable inverted filtering, by default is disabled. This inverts interpretation of @option{threshold}
5378 option. When enabled any half-cycle of samples with their local peak value below or same as
5379 @option{threshold} option will be expanded otherwise it will be compressed.
5380
5381 @item link, l
5382 Link channels when calculating gain applied to each filtered channel sample, by default is disabled.
5383 When disabled each filtered channel gain calculation is independent, otherwise when this option
5384 is enabled the minimum of all possible gains for each filtered channel is used.
5385 @end table
5386
5387 @subsection Commands
5388
5389 This filter supports the all above options as @ref{commands}.
5390
5391 @section stereotools
5392
5393 This filter has some handy utilities to manage stereo signals, for converting
5394 M/S stereo recordings to L/R signal while having control over the parameters
5395 or spreading the stereo image of master track.
5396
5397 The filter accepts the following options:
5398
5399 @table @option
5400 @item level_in
5401 Set input level before filtering for both channels. Defaults is 1.
5402 Allowed range is from 0.015625 to 64.
5403
5404 @item level_out
5405 Set output level after filtering for both channels. Defaults is 1.
5406 Allowed range is from 0.015625 to 64.
5407
5408 @item balance_in
5409 Set input balance between both channels. Default is 0.
5410 Allowed range is from -1 to 1.
5411
5412 @item balance_out
5413 Set output balance between both channels. Default is 0.
5414 Allowed range is from -1 to 1.
5415
5416 @item softclip
5417 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5418 clipping. Disabled by default.
5419
5420 @item mutel
5421 Mute the left channel. Disabled by default.
5422
5423 @item muter
5424 Mute the right channel. Disabled by default.
5425
5426 @item phasel
5427 Change the phase of the left channel. Disabled by default.
5428
5429 @item phaser
5430 Change the phase of the right channel. Disabled by default.
5431
5432 @item mode
5433 Set stereo mode. Available values are:
5434
5435 @table @samp
5436 @item lr>lr
5437 Left/Right to Left/Right, this is default.
5438
5439 @item lr>ms
5440 Left/Right to Mid/Side.
5441
5442 @item ms>lr
5443 Mid/Side to Left/Right.
5444
5445 @item lr>ll
5446 Left/Right to Left/Left.
5447
5448 @item lr>rr
5449 Left/Right to Right/Right.
5450
5451 @item lr>l+r
5452 Left/Right to Left + Right.
5453
5454 @item lr>rl
5455 Left/Right to Right/Left.
5456
5457 @item ms>ll
5458 Mid/Side to Left/Left.
5459
5460 @item ms>rr
5461 Mid/Side to Right/Right.
5462 @end table
5463
5464 @item slev
5465 Set level of side signal. Default is 1.
5466 Allowed range is from 0.015625 to 64.
5467
5468 @item sbal
5469 Set balance of side signal. Default is 0.
5470 Allowed range is from -1 to 1.
5471
5472 @item mlev
5473 Set level of the middle signal. Default is 1.
5474 Allowed range is from 0.015625 to 64.
5475
5476 @item mpan
5477 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5478
5479 @item base
5480 Set stereo base between mono and inversed channels. Default is 0.
5481 Allowed range is from -1 to 1.
5482
5483 @item delay
5484 Set delay in milliseconds how much to delay left from right channel and
5485 vice versa. Default is 0. Allowed range is from -20 to 20.
5486
5487 @item sclevel
5488 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5489
5490 @item phase
5491 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5492
5493 @item bmode_in, bmode_out
5494 Set balance mode for balance_in/balance_out option.
5495
5496 Can be one of the following:
5497
5498 @table @samp
5499 @item balance
5500 Classic balance mode. Attenuate one channel at time.
5501 Gain is raised up to 1.
5502
5503 @item amplitude
5504 Similar as classic mode above but gain is raised up to 2.
5505
5506 @item power
5507 Equal power distribution, from -6dB to +6dB range.
5508 @end table
5509 @end table
5510
5511 @subsection Examples
5512
5513 @itemize
5514 @item
5515 Apply karaoke like effect:
5516 @example
5517 stereotools=mlev=0.015625
5518 @end example
5519
5520 @item
5521 Convert M/S signal to L/R:
5522 @example
5523 "stereotools=mode=ms>lr"
5524 @end example
5525 @end itemize
5526
5527 @section stereowiden
5528
5529 This filter enhance the stereo effect by suppressing signal common to both
5530 channels and by delaying the signal of left into right and vice versa,
5531 thereby widening the stereo effect.
5532
5533 The filter accepts the following options:
5534
5535 @table @option
5536 @item delay
5537 Time in milliseconds of the delay of left signal into right and vice versa.
5538 Default is 20 milliseconds.
5539
5540 @item feedback
5541 Amount of gain in delayed signal into right and vice versa. Gives a delay
5542 effect of left signal in right output and vice versa which gives widening
5543 effect. Default is 0.3.
5544
5545 @item crossfeed
5546 Cross feed of left into right with inverted phase. This helps in suppressing
5547 the mono. If the value is 1 it will cancel all the signal common to both
5548 channels. Default is 0.3.
5549
5550 @item drymix
5551 Set level of input signal of original channel. Default is 0.8.
5552 @end table
5553
5554 @subsection Commands
5555
5556 This filter supports the all above options except @code{delay} as @ref{commands}.
5557
5558 @section superequalizer
5559 Apply 18 band equalizer.
5560
5561 The filter accepts the following options:
5562 @table @option
5563 @item 1b
5564 Set 65Hz band gain.
5565 @item 2b
5566 Set 92Hz band gain.
5567 @item 3b
5568 Set 131Hz band gain.
5569 @item 4b
5570 Set 185Hz band gain.
5571 @item 5b
5572 Set 262Hz band gain.
5573 @item 6b
5574 Set 370Hz band gain.
5575 @item 7b
5576 Set 523Hz band gain.
5577 @item 8b
5578 Set 740Hz band gain.
5579 @item 9b
5580 Set 1047Hz band gain.
5581 @item 10b
5582 Set 1480Hz band gain.
5583 @item 11b
5584 Set 2093Hz band gain.
5585 @item 12b
5586 Set 2960Hz band gain.
5587 @item 13b
5588 Set 4186Hz band gain.
5589 @item 14b
5590 Set 5920Hz band gain.
5591 @item 15b
5592 Set 8372Hz band gain.
5593 @item 16b
5594 Set 11840Hz band gain.
5595 @item 17b
5596 Set 16744Hz band gain.
5597 @item 18b
5598 Set 20000Hz band gain.
5599 @end table
5600
5601 @section surround
5602 Apply audio surround upmix filter.
5603
5604 This filter allows to produce multichannel output from audio stream.
5605
5606 The filter accepts the following options:
5607
5608 @table @option
5609 @item chl_out
5610 Set output channel layout. By default, this is @var{5.1}.
5611
5612 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5613 for the required syntax.
5614
5615 @item chl_in
5616 Set input channel layout. By default, this is @var{stereo}.
5617
5618 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5619 for the required syntax.
5620
5621 @item level_in
5622 Set input volume level. By default, this is @var{1}.
5623
5624 @item level_out
5625 Set output volume level. By default, this is @var{1}.
5626
5627 @item lfe
5628 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5629
5630 @item lfe_low
5631 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5632
5633 @item lfe_high
5634 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5635
5636 @item lfe_mode
5637 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5638 In @var{add} mode, LFE channel is created from input audio and added to output.
5639 In @var{sub} mode, LFE channel is created from input audio and added to output but
5640 also all non-LFE output channels are subtracted with output LFE channel.
5641
5642 @item angle
5643 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5644 Default is @var{90}.
5645
5646 @item fc_in
5647 Set front center input volume. By default, this is @var{1}.
5648
5649 @item fc_out
5650 Set front center output volume. By default, this is @var{1}.
5651
5652 @item fl_in
5653 Set front left input volume. By default, this is @var{1}.
5654
5655 @item fl_out
5656 Set front left output volume. By default, this is @var{1}.
5657
5658 @item fr_in
5659 Set front right input volume. By default, this is @var{1}.
5660
5661 @item fr_out
5662 Set front right output volume. By default, this is @var{1}.
5663
5664 @item sl_in
5665 Set side left input volume. By default, this is @var{1}.
5666
5667 @item sl_out
5668 Set side left output volume. By default, this is @var{1}.
5669
5670 @item sr_in
5671 Set side right input volume. By default, this is @var{1}.
5672
5673 @item sr_out
5674 Set side right output volume. By default, this is @var{1}.
5675
5676 @item bl_in
5677 Set back left input volume. By default, this is @var{1}.
5678
5679 @item bl_out
5680 Set back left output volume. By default, this is @var{1}.
5681
5682 @item br_in
5683 Set back right input volume. By default, this is @var{1}.
5684
5685 @item br_out
5686 Set back right output volume. By default, this is @var{1}.
5687
5688 @item bc_in
5689 Set back center input volume. By default, this is @var{1}.
5690
5691 @item bc_out
5692 Set back center output volume. By default, this is @var{1}.
5693
5694 @item lfe_in
5695 Set LFE input volume. By default, this is @var{1}.
5696
5697 @item lfe_out
5698 Set LFE output volume. By default, this is @var{1}.
5699
5700 @item allx
5701 Set spread usage of stereo image across X axis for all channels.
5702
5703 @item ally
5704 Set spread usage of stereo image across Y axis for all channels.
5705
5706 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5707 Set spread usage of stereo image across X axis for each channel.
5708
5709 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5710 Set spread usage of stereo image across Y axis for each channel.
5711
5712 @item win_size
5713 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5714
5715 @item win_func
5716 Set window function.
5717
5718 It accepts the following values:
5719 @table @samp
5720 @item rect
5721 @item bartlett
5722 @item hann, hanning
5723 @item hamming
5724 @item blackman
5725 @item welch
5726 @item flattop
5727 @item bharris
5728 @item bnuttall
5729 @item bhann
5730 @item sine
5731 @item nuttall
5732 @item lanczos
5733 @item gauss
5734 @item tukey
5735 @item dolph
5736 @item cauchy
5737 @item parzen
5738 @item poisson
5739 @item bohman
5740 @end table
5741 Default is @code{hann}.
5742
5743 @item overlap
5744 Set window overlap. If set to 1, the recommended overlap for selected
5745 window function will be picked. Default is @code{0.5}.
5746 @end table
5747
5748 @section treble, highshelf
5749
5750 Boost or cut treble (upper) frequencies of the audio using a two-pole
5751 shelving filter with a response similar to that of a standard
5752 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5753
5754 The filter accepts the following options:
5755
5756 @table @option
5757 @item gain, g
5758 Give the gain at whichever is the lower of ~22 kHz and the
5759 Nyquist frequency. Its useful range is about -20 (for a large cut)
5760 to +20 (for a large boost). Beware of clipping when using a positive gain.
5761
5762 @item frequency, f
5763 Set the filter's central frequency and so can be used
5764 to extend or reduce the frequency range to be boosted or cut.
5765 The default value is @code{3000} Hz.
5766
5767 @item width_type, t
5768 Set method to specify band-width of filter.
5769 @table @option
5770 @item h
5771 Hz
5772 @item q
5773 Q-Factor
5774 @item o
5775 octave
5776 @item s
5777 slope
5778 @item k
5779 kHz
5780 @end table
5781
5782 @item width, w
5783 Determine how steep is the filter's shelf transition.
5784
5785 @item mix, m
5786 How much to use filtered signal in output. Default is 1.
5787 Range is between 0 and 1.
5788
5789 @item channels, c
5790 Specify which channels to filter, by default all available are filtered.
5791
5792 @item normalize, n
5793 Normalize biquad coefficients, by default is disabled.
5794 Enabling it will normalize magnitude response at DC to 0dB.
5795
5796 @item transform, a
5797 Set transform type of IIR filter.
5798 @table @option
5799 @item di
5800 @item dii
5801 @item tdii
5802 @item latt
5803 @end table
5804 @end table
5805
5806 @subsection Commands
5807
5808 This filter supports the following commands:
5809 @table @option
5810 @item frequency, f
5811 Change treble frequency.
5812 Syntax for the command is : "@var{frequency}"
5813
5814 @item width_type, t
5815 Change treble width_type.
5816 Syntax for the command is : "@var{width_type}"
5817
5818 @item width, w
5819 Change treble width.
5820 Syntax for the command is : "@var{width}"
5821
5822 @item gain, g
5823 Change treble gain.
5824 Syntax for the command is : "@var{gain}"
5825
5826 @item mix, m
5827 Change treble mix.
5828 Syntax for the command is : "@var{mix}"
5829 @end table
5830
5831 @section tremolo
5832
5833 Sinusoidal amplitude modulation.
5834
5835 The filter accepts the following options:
5836
5837 @table @option
5838 @item f
5839 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5840 (20 Hz or lower) will result in a tremolo effect.
5841 This filter may also be used as a ring modulator by specifying
5842 a modulation frequency higher than 20 Hz.
5843 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5844
5845 @item d
5846 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5847 Default value is 0.5.
5848 @end table
5849
5850 @section vibrato
5851
5852 Sinusoidal phase modulation.
5853
5854 The filter accepts the following options:
5855
5856 @table @option
5857 @item f
5858 Modulation frequency in Hertz.
5859 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5860
5861 @item d
5862 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5863 Default value is 0.5.
5864 @end table
5865
5866 @section volume
5867
5868 Adjust the input audio volume.
5869
5870 It accepts the following parameters:
5871 @table @option
5872
5873 @item volume
5874 Set audio volume expression.
5875
5876 Output values are clipped to the maximum value.
5877
5878 The output audio volume is given by the relation:
5879 @example
5880 @var{output_volume} = @var{volume} * @var{input_volume}
5881 @end example
5882
5883 The default value for @var{volume} is "1.0".
5884
5885 @item precision
5886 This parameter represents the mathematical precision.
5887
5888 It determines which input sample formats will be allowed, which affects the
5889 precision of the volume scaling.
5890
5891 @table @option
5892 @item fixed
5893 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5894 @item float
5895 32-bit floating-point; this limits input sample format to FLT. (default)
5896 @item double
5897 64-bit floating-point; this limits input sample format to DBL.
5898 @end table
5899
5900 @item replaygain
5901 Choose the behaviour on encountering ReplayGain side data in input frames.
5902
5903 @table @option
5904 @item drop
5905 Remove ReplayGain side data, ignoring its contents (the default).
5906
5907 @item ignore
5908 Ignore ReplayGain side data, but leave it in the frame.
5909
5910 @item track
5911 Prefer the track gain, if present.
5912
5913 @item album
5914 Prefer the album gain, if present.
5915 @end table
5916
5917 @item replaygain_preamp
5918 Pre-amplification gain in dB to apply to the selected replaygain gain.
5919
5920 Default value for @var{replaygain_preamp} is 0.0.
5921
5922 @item replaygain_noclip
5923 Prevent clipping by limiting the gain applied.
5924
5925 Default value for @var{replaygain_noclip} is 1.
5926
5927 @item eval
5928 Set when the volume expression is evaluated.
5929
5930 It accepts the following values:
5931 @table @samp
5932 @item once
5933 only evaluate expression once during the filter initialization, or
5934 when the @samp{volume} command is sent
5935
5936 @item frame
5937 evaluate expression for each incoming frame
5938 @end table
5939
5940 Default value is @samp{once}.
5941 @end table
5942
5943 The volume expression can contain the following parameters.
5944
5945 @table @option
5946 @item n
5947 frame number (starting at zero)
5948 @item nb_channels
5949 number of channels
5950 @item nb_consumed_samples
5951 number of samples consumed by the filter
5952 @item nb_samples
5953 number of samples in the current frame
5954 @item pos
5955 original frame position in the file
5956 @item pts
5957 frame PTS
5958 @item sample_rate
5959 sample rate
5960 @item startpts
5961 PTS at start of stream
5962 @item startt
5963 time at start of stream
5964 @item t
5965 frame time
5966 @item tb
5967 timestamp timebase
5968 @item volume
5969 last set volume value
5970 @end table
5971
5972 Note that when @option{eval} is set to @samp{once} only the
5973 @var{sample_rate} and @var{tb} variables are available, all other
5974 variables will evaluate to NAN.
5975
5976 @subsection Commands
5977
5978 This filter supports the following commands:
5979 @table @option
5980 @item volume
5981 Modify the volume expression.
5982 The command accepts the same syntax of the corresponding option.
5983
5984 If the specified expression is not valid, it is kept at its current
5985 value.
5986 @end table
5987
5988 @subsection Examples
5989
5990 @itemize
5991 @item
5992 Halve the input audio volume:
5993 @example
5994 volume=volume=0.5
5995 volume=volume=1/2
5996 volume=volume=-6.0206dB
5997 @end example
5998
5999 In all the above example the named key for @option{volume} can be
6000 omitted, for example like in:
6001 @example
6002 volume=0.5
6003 @end example
6004
6005 @item
6006 Increase input audio power by 6 decibels using fixed-point precision:
6007 @example
6008 volume=volume=6dB:precision=fixed
6009 @end example
6010
6011 @item
6012 Fade volume after time 10 with an annihilation period of 5 seconds:
6013 @example
6014 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
6015 @end example
6016 @end itemize
6017
6018 @section volumedetect
6019
6020 Detect the volume of the input video.
6021
6022 The filter has no parameters. The input is not modified. Statistics about
6023 the volume will be printed in the log when the input stream end is reached.
6024
6025 In particular it will show the mean volume (root mean square), maximum
6026 volume (on a per-sample basis), and the beginning of a histogram of the
6027 registered volume values (from the maximum value to a cumulated 1/1000 of
6028 the samples).
6029
6030 All volumes are in decibels relative to the maximum PCM value.
6031
6032 @subsection Examples
6033
6034 Here is an excerpt of the output:
6035 @example
6036 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
6037 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
6038 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
6039 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
6040 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
6041 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
6042 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
6043 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
6044 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
6045 @end example
6046
6047 It means that:
6048 @itemize
6049 @item
6050 The mean square energy is approximately -27 dB, or 10^-2.7.
6051 @item
6052 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
6053 @item
6054 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
6055 @end itemize
6056
6057 In other words, raising the volume by +4 dB does not cause any clipping,
6058 raising it by +5 dB causes clipping for 6 samples, etc.
6059
6060 @c man end AUDIO FILTERS
6061
6062 @chapter Audio Sources
6063 @c man begin AUDIO SOURCES
6064
6065 Below is a description of the currently available audio sources.
6066
6067 @section abuffer
6068
6069 Buffer audio frames, and make them available to the filter chain.
6070
6071 This source is mainly intended for a programmatic use, in particular
6072 through the interface defined in @file{libavfilter/buffersrc.h}.
6073
6074 It accepts the following parameters:
6075 @table @option
6076
6077 @item time_base
6078 The timebase which will be used for timestamps of submitted frames. It must be
6079 either a floating-point number or in @var{numerator}/@var{denominator} form.
6080
6081 @item sample_rate
6082 The sample rate of the incoming audio buffers.
6083
6084 @item sample_fmt
6085 The sample format of the incoming audio buffers.
6086 Either a sample format name or its corresponding integer representation from
6087 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
6088
6089 @item channel_layout
6090 The channel layout of the incoming audio buffers.
6091 Either a channel layout name from channel_layout_map in
6092 @file{libavutil/channel_layout.c} or its corresponding integer representation
6093 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
6094
6095 @item channels
6096 The number of channels of the incoming audio buffers.
6097 If both @var{channels} and @var{channel_layout} are specified, then they
6098 must be consistent.
6099
6100 @end table
6101
6102 @subsection Examples
6103
6104 @example
6105 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
6106 @end example
6107
6108 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
6109 Since the sample format with name "s16p" corresponds to the number
6110 6 and the "stereo" channel layout corresponds to the value 0x3, this is
6111 equivalent to:
6112 @example
6113 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
6114 @end example
6115
6116 @section aevalsrc
6117
6118 Generate an audio signal specified by an expression.
6119
6120 This source accepts in input one or more expressions (one for each
6121 channel), which are evaluated and used to generate a corresponding
6122 audio signal.
6123
6124 This source accepts the following options:
6125
6126 @table @option
6127 @item exprs
6128 Set the '|'-separated expressions list for each separate channel. In case the
6129 @option{channel_layout} option is not specified, the selected channel layout
6130 depends on the number of provided expressions. Otherwise the last
6131 specified expression is applied to the remaining output channels.
6132
6133 @item channel_layout, c
6134 Set the channel layout. The number of channels in the specified layout
6135 must be equal to the number of specified expressions.
6136
6137 @item duration, d
6138 Set the minimum duration of the sourced audio. See
6139 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6140 for the accepted syntax.
6141 Note that the resulting duration may be greater than the specified
6142 duration, as the generated audio is always cut at the end of a
6143 complete frame.
6144
6145 If not specified, or the expressed duration is negative, the audio is
6146 supposed to be generated forever.
6147
6148 @item nb_samples, n
6149 Set the number of samples per channel per each output frame,
6150 default to 1024.
6151
6152 @item sample_rate, s
6153 Specify the sample rate, default to 44100.
6154 @end table
6155
6156 Each expression in @var{exprs} can contain the following constants:
6157
6158 @table @option
6159 @item n
6160 number of the evaluated sample, starting from 0
6161
6162 @item t
6163 time of the evaluated sample expressed in seconds, starting from 0
6164
6165 @item s
6166 sample rate
6167
6168 @end table
6169
6170 @subsection Examples
6171
6172 @itemize
6173 @item
6174 Generate silence:
6175 @example
6176 aevalsrc=0
6177 @end example
6178
6179 @item
6180 Generate a sin signal with frequency of 440 Hz, set sample rate to
6181 8000 Hz:
6182 @example
6183 aevalsrc="sin(440*2*PI*t):s=8000"
6184 @end example
6185
6186 @item
6187 Generate a two channels signal, specify the channel layout (Front
6188 Center + Back Center) explicitly:
6189 @example
6190 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
6191 @end example
6192
6193 @item
6194 Generate white noise:
6195 @example
6196 aevalsrc="-2+random(0)"
6197 @end example
6198
6199 @item
6200 Generate an amplitude modulated signal:
6201 @example
6202 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
6203 @end example
6204
6205 @item
6206 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
6207 @example
6208 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
6209 @end example
6210
6211 @end itemize
6212
6213 @section afirsrc
6214
6215 Generate a FIR coefficients using frequency sampling method.
6216
6217 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6218
6219 The filter accepts the following options:
6220
6221 @table @option
6222 @item taps, t
6223 Set number of filter coefficents in output audio stream.
6224 Default value is 1025.
6225
6226 @item frequency, f
6227 Set frequency points from where magnitude and phase are set.
6228 This must be in non decreasing order, and first element must be 0, while last element
6229 must be 1. Elements are separated by white spaces.
6230
6231 @item magnitude, m
6232 Set magnitude value for every frequency point set by @option{frequency}.
6233 Number of values must be same as number of frequency points.
6234 Values are separated by white spaces.
6235
6236 @item phase, p
6237 Set phase value for every frequency point set by @option{frequency}.
6238 Number of values must be same as number of frequency points.
6239 Values are separated by white spaces.
6240
6241 @item sample_rate, r
6242 Set sample rate, default is 44100.
6243
6244 @item nb_samples, n
6245 Set number of samples per each frame. Default is 1024.
6246
6247 @item win_func, w
6248 Set window function. Default is blackman.
6249 @end table
6250
6251 @section anullsrc
6252
6253 The null audio source, return unprocessed audio frames. It is mainly useful
6254 as a template and to be employed in analysis / debugging tools, or as
6255 the source for filters which ignore the input data (for example the sox
6256 synth filter).
6257
6258 This source accepts the following options:
6259
6260 @table @option
6261
6262 @item channel_layout, cl
6263
6264 Specifies the channel layout, and can be either an integer or a string
6265 representing a channel layout. The default value of @var{channel_layout}
6266 is "stereo".
6267
6268 Check the channel_layout_map definition in
6269 @file{libavutil/channel_layout.c} for the mapping between strings and
6270 channel layout values.
6271
6272 @item sample_rate, r
6273 Specifies the sample rate, and defaults to 44100.
6274
6275 @item nb_samples, n
6276 Set the number of samples per requested frames.
6277
6278 @item duration, d
6279 Set the duration of the sourced audio. See
6280 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6281 for the accepted syntax.
6282
6283 If not specified, or the expressed duration is negative, the audio is
6284 supposed to be generated forever.
6285 @end table
6286
6287 @subsection Examples
6288
6289 @itemize
6290 @item
6291 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
6292 @example
6293 anullsrc=r=48000:cl=4
6294 @end example
6295
6296 @item
6297 Do the same operation with a more obvious syntax:
6298 @example
6299 anullsrc=r=48000:cl=mono
6300 @end example
6301 @end itemize
6302
6303 All the parameters need to be explicitly defined.
6304
6305 @section flite
6306
6307 Synthesize a voice utterance using the libflite library.
6308
6309 To enable compilation of this filter you need to configure FFmpeg with
6310 @code{--enable-libflite}.
6311
6312 Note that versions of the flite library prior to 2.0 are not thread-safe.
6313
6314 The filter accepts the following options:
6315
6316 @table @option
6317
6318 @item list_voices
6319 If set to 1, list the names of the available voices and exit
6320 immediately. Default value is 0.
6321
6322 @item nb_samples, n
6323 Set the maximum number of samples per frame. Default value is 512.
6324
6325 @item textfile
6326 Set the filename containing the text to speak.
6327
6328 @item text
6329 Set the text to speak.
6330
6331 @item voice, v
6332 Set the voice to use for the speech synthesis. Default value is
6333 @code{kal}. See also the @var{list_voices} option.
6334 @end table
6335
6336 @subsection Examples
6337
6338 @itemize
6339 @item
6340 Read from file @file{speech.txt}, and synthesize the text using the
6341 standard flite voice:
6342 @example
6343 flite=textfile=speech.txt
6344 @end example
6345
6346 @item
6347 Read the specified text selecting the @code{slt} voice:
6348 @example
6349 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6350 @end example
6351
6352 @item
6353 Input text to ffmpeg:
6354 @example
6355 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6356 @end example
6357
6358 @item
6359 Make @file{ffplay} speak the specified text, using @code{flite} and
6360 the @code{lavfi} device:
6361 @example
6362 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6363 @end example
6364 @end itemize
6365
6366 For more information about libflite, check:
6367 @url{http://www.festvox.org/flite/}
6368
6369 @section anoisesrc
6370
6371 Generate a noise audio signal.
6372
6373 The filter accepts the following options:
6374
6375 @table @option
6376 @item sample_rate, r
6377 Specify the sample rate. Default value is 48000 Hz.
6378
6379 @item amplitude, a
6380 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6381 is 1.0.
6382
6383 @item duration, d
6384 Specify the duration of the generated audio stream. Not specifying this option
6385 results in noise with an infinite length.
6386
6387 @item color, colour, c
6388 Specify the color of noise. Available noise colors are white, pink, brown,
6389 blue, violet and velvet. Default color is white.
6390
6391 @item seed, s
6392 Specify a value used to seed the PRNG.
6393
6394 @item nb_samples, n
6395 Set the number of samples per each output frame, default is 1024.
6396 @end table
6397
6398 @subsection Examples
6399
6400 @itemize
6401
6402 @item
6403 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6404 @example
6405 anoisesrc=d=60:c=pink:r=44100:a=0.5
6406 @end example
6407 @end itemize
6408
6409 @section hilbert
6410
6411 Generate odd-tap Hilbert transform FIR coefficients.
6412
6413 The resulting stream can be used with @ref{afir} filter for phase-shifting
6414 the signal by 90 degrees.
6415
6416 This is used in many matrix coding schemes and for analytic signal generation.
6417 The process is often written as a multiplication by i (or j), the imaginary unit.
6418
6419 The filter accepts the following options:
6420
6421 @table @option
6422
6423 @item sample_rate, s
6424 Set sample rate, default is 44100.
6425
6426 @item taps, t
6427 Set length of FIR filter, default is 22051.
6428
6429 @item nb_samples, n
6430 Set number of samples per each frame.
6431
6432 @item win_func, w
6433 Set window function to be used when generating FIR coefficients.
6434 @end table
6435
6436 @section sinc
6437
6438 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6439
6440 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6441
6442 The filter accepts the following options:
6443
6444 @table @option
6445 @item sample_rate, r
6446 Set sample rate, default is 44100.
6447
6448 @item nb_samples, n
6449 Set number of samples per each frame. Default is 1024.
6450
6451 @item hp
6452 Set high-pass frequency. Default is 0.
6453
6454 @item lp
6455 Set low-pass frequency. Default is 0.
6456 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6457 is higher than 0 then filter will create band-pass filter coefficients,
6458 otherwise band-reject filter coefficients.
6459
6460 @item phase
6461 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6462
6463 @item beta
6464 Set Kaiser window beta.
6465
6466 @item att
6467 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6468
6469 @item round
6470 Enable rounding, by default is disabled.
6471
6472 @item hptaps
6473 Set number of taps for high-pass filter.
6474
6475 @item lptaps
6476 Set number of taps for low-pass filter.
6477 @end table
6478
6479 @section sine
6480
6481 Generate an audio signal made of a sine wave with amplitude 1/8.
6482
6483 The audio signal is bit-exact.
6484
6485 The filter accepts the following options:
6486
6487 @table @option
6488
6489 @item frequency, f
6490 Set the carrier frequency. Default is 440 Hz.
6491
6492 @item beep_factor, b
6493 Enable a periodic beep every second with frequency @var{beep_factor} times
6494 the carrier frequency. Default is 0, meaning the beep is disabled.
6495
6496 @item sample_rate, r
6497 Specify the sample rate, default is 44100.
6498
6499 @item duration, d
6500 Specify the duration of the generated audio stream.
6501
6502 @item samples_per_frame
6503 Set the number of samples per output frame.
6504
6505 The expression can contain the following constants:
6506
6507 @table @option
6508 @item n
6509 The (sequential) number of the output audio frame, starting from 0.
6510
6511 @item pts
6512 The PTS (Presentation TimeStamp) of the output audio frame,
6513 expressed in @var{TB} units.
6514
6515 @item t
6516 The PTS of the output audio frame, expressed in seconds.
6517
6518 @item TB
6519 The timebase of the output audio frames.
6520 @end table
6521
6522 Default is @code{1024}.
6523 @end table
6524
6525 @subsection Examples
6526
6527 @itemize
6528
6529 @item
6530 Generate a simple 440 Hz sine wave:
6531 @example
6532 sine
6533 @end example
6534
6535 @item
6536 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6537 @example
6538 sine=220:4:d=5
6539 sine=f=220:b=4:d=5
6540 sine=frequency=220:beep_factor=4:duration=5
6541 @end example
6542
6543 @item
6544 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6545 pattern:
6546 @example
6547 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6548 @end example
6549 @end itemize
6550
6551 @c man end AUDIO SOURCES
6552
6553 @chapter Audio Sinks
6554 @c man begin AUDIO SINKS
6555
6556 Below is a description of the currently available audio sinks.
6557
6558 @section abuffersink
6559
6560 Buffer audio frames, and make them available to the end of filter chain.
6561
6562 This sink is mainly intended for programmatic use, in particular
6563 through the interface defined in @file{libavfilter/buffersink.h}
6564 or the options system.
6565
6566 It accepts a pointer to an AVABufferSinkContext structure, which
6567 defines the incoming buffers' formats, to be passed as the opaque
6568 parameter to @code{avfilter_init_filter} for initialization.
6569 @section anullsink
6570
6571 Null audio sink; do absolutely nothing with the input audio. It is
6572 mainly useful as a template and for use in analysis / debugging
6573 tools.
6574
6575 @c man end AUDIO SINKS
6576
6577 @chapter Video Filters
6578 @c man begin VIDEO FILTERS
6579
6580 When you configure your FFmpeg build, you can disable any of the
6581 existing filters using @code{--disable-filters}.
6582 The configure output will show the video filters included in your
6583 build.
6584
6585 Below is a description of the currently available video filters.
6586
6587 @section addroi
6588
6589 Mark a region of interest in a video frame.
6590
6591 The frame data is passed through unchanged, but metadata is attached
6592 to the frame indicating regions of interest which can affect the
6593 behaviour of later encoding.  Multiple regions can be marked by
6594 applying the filter multiple times.
6595
6596 @table @option
6597 @item x
6598 Region distance in pixels from the left edge of the frame.
6599 @item y
6600 Region distance in pixels from the top edge of the frame.
6601 @item w
6602 Region width in pixels.
6603 @item h
6604 Region height in pixels.
6605
6606 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6607 and may contain the following variables:
6608 @table @option
6609 @item iw
6610 Width of the input frame.
6611 @item ih
6612 Height of the input frame.
6613 @end table
6614
6615 @item qoffset
6616 Quantisation offset to apply within the region.
6617
6618 This must be a real value in the range -1 to +1.  A value of zero
6619 indicates no quality change.  A negative value asks for better quality
6620 (less quantisation), while a positive value asks for worse quality
6621 (greater quantisation).
6622
6623 The range is calibrated so that the extreme values indicate the
6624 largest possible offset - if the rest of the frame is encoded with the
6625 worst possible quality, an offset of -1 indicates that this region
6626 should be encoded with the best possible quality anyway.  Intermediate
6627 values are then interpolated in some codec-dependent way.
6628
6629 For example, in 10-bit H.264 the quantisation parameter varies between
6630 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6631 this region should be encoded with a QP around one-tenth of the full
6632 range better than the rest of the frame.  So, if most of the frame
6633 were to be encoded with a QP of around 30, this region would get a QP
6634 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6635 An extreme value of -1 would indicate that this region should be
6636 encoded with the best possible quality regardless of the treatment of
6637 the rest of the frame - that is, should be encoded at a QP of -12.
6638 @item clear
6639 If set to true, remove any existing regions of interest marked on the
6640 frame before adding the new one.
6641 @end table
6642
6643 @subsection Examples
6644
6645 @itemize
6646 @item
6647 Mark the centre quarter of the frame as interesting.
6648 @example
6649 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6650 @end example
6651 @item
6652 Mark the 100-pixel-wide region on the left edge of the frame as very
6653 uninteresting (to be encoded at much lower quality than the rest of
6654 the frame).
6655 @example
6656 addroi=0:0:100:ih:+1/5
6657 @end example
6658 @end itemize
6659
6660 @section alphaextract
6661
6662 Extract the alpha component from the input as a grayscale video. This
6663 is especially useful with the @var{alphamerge} filter.
6664
6665 @section alphamerge
6666
6667 Add or replace the alpha component of the primary input with the
6668 grayscale value of a second input. This is intended for use with
6669 @var{alphaextract} to allow the transmission or storage of frame
6670 sequences that have alpha in a format that doesn't support an alpha
6671 channel.
6672
6673 For example, to reconstruct full frames from a normal YUV-encoded video
6674 and a separate video created with @var{alphaextract}, you might use:
6675 @example
6676 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6677 @end example
6678
6679 @section amplify
6680
6681 Amplify differences between current pixel and pixels of adjacent frames in
6682 same pixel location.
6683
6684 This filter accepts the following options:
6685
6686 @table @option
6687 @item radius
6688 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6689 For example radius of 3 will instruct filter to calculate average of 7 frames.
6690
6691 @item factor
6692 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6693
6694 @item threshold
6695 Set threshold for difference amplification. Any difference greater or equal to
6696 this value will not alter source pixel. Default is 10.
6697 Allowed range is from 0 to 65535.
6698
6699 @item tolerance
6700 Set tolerance for difference amplification. Any difference lower to
6701 this value will not alter source pixel. Default is 0.
6702 Allowed range is from 0 to 65535.
6703
6704 @item low
6705 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6706 This option controls maximum possible value that will decrease source pixel value.
6707
6708 @item high
6709 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6710 This option controls maximum possible value that will increase source pixel value.
6711
6712 @item planes
6713 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6714 @end table
6715
6716 @subsection Commands
6717
6718 This filter supports the following @ref{commands} that corresponds to option of same name:
6719 @table @option
6720 @item factor
6721 @item threshold
6722 @item tolerance
6723 @item low
6724 @item high
6725 @item planes
6726 @end table
6727
6728 @section ass
6729
6730 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6731 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6732 Substation Alpha) subtitles files.
6733
6734 This filter accepts the following option in addition to the common options from
6735 the @ref{subtitles} filter:
6736
6737 @table @option
6738 @item shaping
6739 Set the shaping engine
6740
6741 Available values are:
6742 @table @samp
6743 @item auto
6744 The default libass shaping engine, which is the best available.
6745 @item simple
6746 Fast, font-agnostic shaper that can do only substitutions
6747 @item complex
6748 Slower shaper using OpenType for substitutions and positioning
6749 @end table
6750
6751 The default is @code{auto}.
6752 @end table
6753
6754 @section atadenoise
6755 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6756
6757 The filter accepts the following options:
6758
6759 @table @option
6760 @item 0a
6761 Set threshold A for 1st plane. Default is 0.02.
6762 Valid range is 0 to 0.3.
6763
6764 @item 0b
6765 Set threshold B for 1st plane. Default is 0.04.
6766 Valid range is 0 to 5.
6767
6768 @item 1a
6769 Set threshold A for 2nd plane. Default is 0.02.
6770 Valid range is 0 to 0.3.
6771
6772 @item 1b
6773 Set threshold B for 2nd plane. Default is 0.04.
6774 Valid range is 0 to 5.
6775
6776 @item 2a
6777 Set threshold A for 3rd plane. Default is 0.02.
6778 Valid range is 0 to 0.3.
6779
6780 @item 2b
6781 Set threshold B for 3rd plane. Default is 0.04.
6782 Valid range is 0 to 5.
6783
6784 Threshold A is designed to react on abrupt changes in the input signal and
6785 threshold B is designed to react on continuous changes in the input signal.
6786
6787 @item s
6788 Set number of frames filter will use for averaging. Default is 9. Must be odd
6789 number in range [5, 129].
6790
6791 @item p
6792 Set what planes of frame filter will use for averaging. Default is all.
6793
6794 @item a
6795 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
6796 Alternatively can be set to @code{s} serial.
6797
6798 Parallel can be faster then serial, while other way around is never true.
6799 Parallel will abort early on first change being greater then thresholds, while serial
6800 will continue processing other side of frames if they are equal or bellow thresholds.
6801 @end table
6802
6803 @subsection Commands
6804 This filter supports same @ref{commands} as options except option @code{s}.
6805 The command accepts the same syntax of the corresponding option.
6806
6807 @section avgblur
6808
6809 Apply average blur filter.
6810
6811 The filter accepts the following options:
6812
6813 @table @option
6814 @item sizeX
6815 Set horizontal radius size.
6816
6817 @item planes
6818 Set which planes to filter. By default all planes are filtered.
6819
6820 @item sizeY
6821 Set vertical radius size, if zero it will be same as @code{sizeX}.
6822 Default is @code{0}.
6823 @end table
6824
6825 @subsection Commands
6826 This filter supports same commands as options.
6827 The command accepts the same syntax of the corresponding option.
6828
6829 If the specified expression is not valid, it is kept at its current
6830 value.
6831
6832 @section bbox
6833
6834 Compute the bounding box for the non-black pixels in the input frame
6835 luminance plane.
6836
6837 This filter computes the bounding box containing all the pixels with a
6838 luminance value greater than the minimum allowed value.
6839 The parameters describing the bounding box are printed on the filter
6840 log.
6841
6842 The filter accepts the following option:
6843
6844 @table @option
6845 @item min_val
6846 Set the minimal luminance value. Default is @code{16}.
6847 @end table
6848
6849 @section bilateral
6850 Apply bilateral filter, spatial smoothing while preserving edges.
6851
6852 The filter accepts the following options:
6853 @table @option
6854 @item sigmaS
6855 Set sigma of gaussian function to calculate spatial weight.
6856 Allowed range is 0 to 512. Default is 0.1.
6857
6858 @item sigmaR
6859 Set sigma of gaussian function to calculate range weight.
6860 Allowed range is 0 to 1. Default is 0.1.
6861
6862 @item planes
6863 Set planes to filter. Default is first only.
6864 @end table
6865
6866 @section bitplanenoise
6867
6868 Show and measure bit plane noise.
6869
6870 The filter accepts the following options:
6871
6872 @table @option
6873 @item bitplane
6874 Set which plane to analyze. Default is @code{1}.
6875
6876 @item filter
6877 Filter out noisy pixels from @code{bitplane} set above.
6878 Default is disabled.
6879 @end table
6880
6881 @section blackdetect
6882
6883 Detect video intervals that are (almost) completely black. Can be
6884 useful to detect chapter transitions, commercials, or invalid
6885 recordings.
6886
6887 The filter outputs its detection analysis to both the log as well as
6888 frame metadata. If a black segment of at least the specified minimum
6889 duration is found, a line with the start and end timestamps as well
6890 as duration is printed to the log with level @code{info}. In addition,
6891 a log line with level @code{debug} is printed per frame showing the
6892 black amount detected for that frame.
6893
6894 The filter also attaches metadata to the first frame of a black
6895 segment with key @code{lavfi.black_start} and to the first frame
6896 after the black segment ends with key @code{lavfi.black_end}. The
6897 value is the frame's timestamp. This metadata is added regardless
6898 of the minimum duration specified.
6899
6900 The filter accepts the following options:
6901
6902 @table @option
6903 @item black_min_duration, d
6904 Set the minimum detected black duration expressed in seconds. It must
6905 be a non-negative floating point number.
6906
6907 Default value is 2.0.
6908
6909 @item picture_black_ratio_th, pic_th
6910 Set the threshold for considering a picture "black".
6911 Express the minimum value for the ratio:
6912 @example
6913 @var{nb_black_pixels} / @var{nb_pixels}
6914 @end example
6915
6916 for which a picture is considered black.
6917 Default value is 0.98.
6918
6919 @item pixel_black_th, pix_th
6920 Set the threshold for considering a pixel "black".
6921
6922 The threshold expresses the maximum pixel luminance value for which a
6923 pixel is considered "black". The provided value is scaled according to
6924 the following equation:
6925 @example
6926 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6927 @end example
6928
6929 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6930 the input video format, the range is [0-255] for YUV full-range
6931 formats and [16-235] for YUV non full-range formats.
6932
6933 Default value is 0.10.
6934 @end table
6935
6936 The following example sets the maximum pixel threshold to the minimum
6937 value, and detects only black intervals of 2 or more seconds:
6938 @example
6939 blackdetect=d=2:pix_th=0.00
6940 @end example
6941
6942 @section blackframe
6943
6944 Detect frames that are (almost) completely black. Can be useful to
6945 detect chapter transitions or commercials. Output lines consist of
6946 the frame number of the detected frame, the percentage of blackness,
6947 the position in the file if known or -1 and the timestamp in seconds.
6948
6949 In order to display the output lines, you need to set the loglevel at
6950 least to the AV_LOG_INFO value.
6951
6952 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6953 The value represents the percentage of pixels in the picture that
6954 are below the threshold value.
6955
6956 It accepts the following parameters:
6957
6958 @table @option
6959
6960 @item amount
6961 The percentage of the pixels that have to be below the threshold; it defaults to
6962 @code{98}.
6963
6964 @item threshold, thresh
6965 The threshold below which a pixel value is considered black; it defaults to
6966 @code{32}.
6967
6968 @end table
6969
6970 @anchor{blend}
6971 @section blend
6972
6973 Blend two video frames into each other.
6974
6975 The @code{blend} filter takes two input streams and outputs one
6976 stream, the first input is the "top" layer and second input is
6977 "bottom" layer.  By default, the output terminates when the longest input terminates.
6978
6979 The @code{tblend} (time blend) filter takes two consecutive frames
6980 from one single stream, and outputs the result obtained by blending
6981 the new frame on top of the old frame.
6982
6983 A description of the accepted options follows.
6984
6985 @table @option
6986 @item c0_mode
6987 @item c1_mode
6988 @item c2_mode
6989 @item c3_mode
6990 @item all_mode
6991 Set blend mode for specific pixel component or all pixel components in case
6992 of @var{all_mode}. Default value is @code{normal}.
6993
6994 Available values for component modes are:
6995 @table @samp
6996 @item addition
6997 @item grainmerge
6998 @item and
6999 @item average
7000 @item burn
7001 @item darken
7002 @item difference
7003 @item grainextract
7004 @item divide
7005 @item dodge
7006 @item freeze
7007 @item exclusion
7008 @item extremity
7009 @item glow
7010 @item hardlight
7011 @item hardmix
7012 @item heat
7013 @item lighten
7014 @item linearlight
7015 @item multiply
7016 @item multiply128
7017 @item negation
7018 @item normal
7019 @item or
7020 @item overlay
7021 @item phoenix
7022 @item pinlight
7023 @item reflect
7024 @item screen
7025 @item softlight
7026 @item subtract
7027 @item vividlight
7028 @item xor
7029 @end table
7030
7031 @item c0_opacity
7032 @item c1_opacity
7033 @item c2_opacity
7034 @item c3_opacity
7035 @item all_opacity
7036 Set blend opacity for specific pixel component or all pixel components in case
7037 of @var{all_opacity}. Only used in combination with pixel component blend modes.
7038
7039 @item c0_expr
7040 @item c1_expr
7041 @item c2_expr
7042 @item c3_expr
7043 @item all_expr
7044 Set blend expression for specific pixel component or all pixel components in case
7045 of @var{all_expr}. Note that related mode options will be ignored if those are set.
7046
7047 The expressions can use the following variables:
7048
7049 @table @option
7050 @item N
7051 The sequential number of the filtered frame, starting from @code{0}.
7052
7053 @item X
7054 @item Y
7055 the coordinates of the current sample
7056
7057 @item W
7058 @item H
7059 the width and height of currently filtered plane
7060
7061 @item SW
7062 @item SH
7063 Width and height scale for the plane being filtered. It is the
7064 ratio between the dimensions of the current plane to the luma plane,
7065 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
7066 the luma plane and @code{0.5,0.5} for the chroma planes.
7067
7068 @item T
7069 Time of the current frame, expressed in seconds.
7070
7071 @item TOP, A
7072 Value of pixel component at current location for first video frame (top layer).
7073
7074 @item BOTTOM, B
7075 Value of pixel component at current location for second video frame (bottom layer).
7076 @end table
7077 @end table
7078
7079 The @code{blend} filter also supports the @ref{framesync} options.
7080
7081 @subsection Examples
7082
7083 @itemize
7084 @item
7085 Apply transition from bottom layer to top layer in first 10 seconds:
7086 @example
7087 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
7088 @end example
7089
7090 @item
7091 Apply linear horizontal transition from top layer to bottom layer:
7092 @example
7093 blend=all_expr='A*(X/W)+B*(1-X/W)'
7094 @end example
7095
7096 @item
7097 Apply 1x1 checkerboard effect:
7098 @example
7099 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
7100 @end example
7101
7102 @item
7103 Apply uncover left effect:
7104 @example
7105 blend=all_expr='if(gte(N*SW+X,W),A,B)'
7106 @end example
7107
7108 @item
7109 Apply uncover down effect:
7110 @example
7111 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
7112 @end example
7113
7114 @item
7115 Apply uncover up-left effect:
7116 @example
7117 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
7118 @end example
7119
7120 @item
7121 Split diagonally video and shows top and bottom layer on each side:
7122 @example
7123 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
7124 @end example
7125
7126 @item
7127 Display differences between the current and the previous frame:
7128 @example
7129 tblend=all_mode=grainextract
7130 @end example
7131 @end itemize
7132
7133 @section bm3d
7134
7135 Denoise frames using Block-Matching 3D algorithm.
7136
7137 The filter accepts the following options.
7138
7139 @table @option
7140 @item sigma
7141 Set denoising strength. Default value is 1.
7142 Allowed range is from 0 to 999.9.
7143 The denoising algorithm is very sensitive to sigma, so adjust it
7144 according to the source.
7145
7146 @item block
7147 Set local patch size. This sets dimensions in 2D.
7148
7149 @item bstep
7150 Set sliding step for processing blocks. Default value is 4.
7151 Allowed range is from 1 to 64.
7152 Smaller values allows processing more reference blocks and is slower.
7153
7154 @item group
7155 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
7156 When set to 1, no block matching is done. Larger values allows more blocks
7157 in single group.
7158 Allowed range is from 1 to 256.
7159
7160 @item range
7161 Set radius for search block matching. Default is 9.
7162 Allowed range is from 1 to INT32_MAX.
7163
7164 @item mstep
7165 Set step between two search locations for block matching. Default is 1.
7166 Allowed range is from 1 to 64. Smaller is slower.
7167
7168 @item thmse
7169 Set threshold of mean square error for block matching. Valid range is 0 to
7170 INT32_MAX.
7171
7172 @item hdthr
7173 Set thresholding parameter for hard thresholding in 3D transformed domain.
7174 Larger values results in stronger hard-thresholding filtering in frequency
7175 domain.
7176
7177 @item estim
7178 Set filtering estimation mode. Can be @code{basic} or @code{final}.
7179 Default is @code{basic}.
7180
7181 @item ref
7182 If enabled, filter will use 2nd stream for block matching.
7183 Default is disabled for @code{basic} value of @var{estim} option,
7184 and always enabled if value of @var{estim} is @code{final}.
7185
7186 @item planes
7187 Set planes to filter. Default is all available except alpha.
7188 @end table
7189
7190 @subsection Examples
7191
7192 @itemize
7193 @item
7194 Basic filtering with bm3d:
7195 @example
7196 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
7197 @end example
7198
7199 @item
7200 Same as above, but filtering only luma:
7201 @example
7202 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
7203 @end example
7204
7205 @item
7206 Same as above, but with both estimation modes:
7207 @example
7208 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
7209 @end example
7210
7211 @item
7212 Same as above, but prefilter with @ref{nlmeans} filter instead:
7213 @example
7214 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
7215 @end example
7216 @end itemize
7217
7218 @section boxblur
7219
7220 Apply a boxblur algorithm to the input video.
7221
7222 It accepts the following parameters:
7223
7224 @table @option
7225
7226 @item luma_radius, lr
7227 @item luma_power, lp
7228 @item chroma_radius, cr
7229 @item chroma_power, cp
7230 @item alpha_radius, ar
7231 @item alpha_power, ap
7232
7233 @end table
7234
7235 A description of the accepted options follows.
7236
7237 @table @option
7238 @item luma_radius, lr
7239 @item chroma_radius, cr
7240 @item alpha_radius, ar
7241 Set an expression for the box radius in pixels used for blurring the
7242 corresponding input plane.
7243
7244 The radius value must be a non-negative number, and must not be
7245 greater than the value of the expression @code{min(w,h)/2} for the
7246 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
7247 planes.
7248
7249 Default value for @option{luma_radius} is "2". If not specified,
7250 @option{chroma_radius} and @option{alpha_radius} default to the
7251 corresponding value set for @option{luma_radius}.
7252
7253 The expressions can contain the following constants:
7254 @table @option
7255 @item w
7256 @item h
7257 The input width and height in pixels.
7258
7259 @item cw
7260 @item ch
7261 The input chroma image width and height in pixels.
7262
7263 @item hsub
7264 @item vsub
7265 The horizontal and vertical chroma subsample values. For example, for the
7266 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
7267 @end table
7268
7269 @item luma_power, lp
7270 @item chroma_power, cp
7271 @item alpha_power, ap
7272 Specify how many times the boxblur filter is applied to the
7273 corresponding plane.
7274
7275 Default value for @option{luma_power} is 2. If not specified,
7276 @option{chroma_power} and @option{alpha_power} default to the
7277 corresponding value set for @option{luma_power}.
7278
7279 A value of 0 will disable the effect.
7280 @end table
7281
7282 @subsection Examples
7283
7284 @itemize
7285 @item
7286 Apply a boxblur filter with the luma, chroma, and alpha radii
7287 set to 2:
7288 @example
7289 boxblur=luma_radius=2:luma_power=1
7290 boxblur=2:1
7291 @end example
7292
7293 @item
7294 Set the luma radius to 2, and alpha and chroma radius to 0:
7295 @example
7296 boxblur=2:1:cr=0:ar=0
7297 @end example
7298
7299 @item
7300 Set the luma and chroma radii to a fraction of the video dimension:
7301 @example
7302 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
7303 @end example
7304 @end itemize
7305
7306 @section bwdif
7307
7308 Deinterlace the input video ("bwdif" stands for "Bob Weaver
7309 Deinterlacing Filter").
7310
7311 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
7312 interpolation algorithms.
7313 It accepts the following parameters:
7314
7315 @table @option
7316 @item mode
7317 The interlacing mode to adopt. It accepts one of the following values:
7318
7319 @table @option
7320 @item 0, send_frame
7321 Output one frame for each frame.
7322 @item 1, send_field
7323 Output one frame for each field.
7324 @end table
7325
7326 The default value is @code{send_field}.
7327
7328 @item parity
7329 The picture field parity assumed for the input interlaced video. It accepts one
7330 of the following values:
7331
7332 @table @option
7333 @item 0, tff
7334 Assume the top field is first.
7335 @item 1, bff
7336 Assume the bottom field is first.
7337 @item -1, auto
7338 Enable automatic detection of field parity.
7339 @end table
7340
7341 The default value is @code{auto}.
7342 If the interlacing is unknown or the decoder does not export this information,
7343 top field first will be assumed.
7344
7345 @item deint
7346 Specify which frames to deinterlace. Accepts one of the following
7347 values:
7348
7349 @table @option
7350 @item 0, all
7351 Deinterlace all frames.
7352 @item 1, interlaced
7353 Only deinterlace frames marked as interlaced.
7354 @end table
7355
7356 The default value is @code{all}.
7357 @end table
7358
7359 @section cas
7360
7361 Apply Contrast Adaptive Sharpen filter to video stream.
7362
7363 The filter accepts the following options:
7364
7365 @table @option
7366 @item strength
7367 Set the sharpening strength. Default value is 0.
7368
7369 @item planes
7370 Set planes to filter. Default value is to filter all
7371 planes except alpha plane.
7372 @end table
7373
7374 @section chromahold
7375 Remove all color information for all colors except for certain one.
7376
7377 The filter accepts the following options:
7378
7379 @table @option
7380 @item color
7381 The color which will not be replaced with neutral chroma.
7382
7383 @item similarity
7384 Similarity percentage with the above color.
7385 0.01 matches only the exact key color, while 1.0 matches everything.
7386
7387 @item blend
7388 Blend percentage.
7389 0.0 makes pixels either fully gray, or not gray at all.
7390 Higher values result in more preserved color.
7391
7392 @item yuv
7393 Signals that the color passed is already in YUV instead of RGB.
7394
7395 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7396 This can be used to pass exact YUV values as hexadecimal numbers.
7397 @end table
7398
7399 @subsection Commands
7400 This filter supports same @ref{commands} as options.
7401 The command accepts the same syntax of the corresponding option.
7402
7403 If the specified expression is not valid, it is kept at its current
7404 value.
7405
7406 @section chromakey
7407 YUV colorspace color/chroma keying.
7408
7409 The filter accepts the following options:
7410
7411 @table @option
7412 @item color
7413 The color which will be replaced with transparency.
7414
7415 @item similarity
7416 Similarity percentage with the key color.
7417
7418 0.01 matches only the exact key color, while 1.0 matches everything.
7419
7420 @item blend
7421 Blend percentage.
7422
7423 0.0 makes pixels either fully transparent, or not transparent at all.
7424
7425 Higher values result in semi-transparent pixels, with a higher transparency
7426 the more similar the pixels color is to the key color.
7427
7428 @item yuv
7429 Signals that the color passed is already in YUV instead of RGB.
7430
7431 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7432 This can be used to pass exact YUV values as hexadecimal numbers.
7433 @end table
7434
7435 @subsection Commands
7436 This filter supports same @ref{commands} as options.
7437 The command accepts the same syntax of the corresponding option.
7438
7439 If the specified expression is not valid, it is kept at its current
7440 value.
7441
7442 @subsection Examples
7443
7444 @itemize
7445 @item
7446 Make every green pixel in the input image transparent:
7447 @example
7448 ffmpeg -i input.png -vf chromakey=green out.png
7449 @end example
7450
7451 @item
7452 Overlay a greenscreen-video on top of a static black background.
7453 @example
7454 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
7455 @end example
7456 @end itemize
7457
7458 @section chromanr
7459 Reduce chrominance noise.
7460
7461 The filter accepts the following options:
7462
7463 @table @option
7464 @item thres
7465 Set threshold for averaging chrominance values.
7466 Sum of absolute difference of U and V pixel components or current
7467 pixel and neighbour pixels lower than this threshold will be used in
7468 averaging. Luma component is left unchanged and is copied to output.
7469 Default value is 30. Allowed range is from 1 to 200.
7470
7471 @item sizew
7472 Set horizontal radius of rectangle used for averaging.
7473 Allowed range is from 1 to 100. Default value is 5.
7474
7475 @item sizeh
7476 Set vertical radius of rectangle used for averaging.
7477 Allowed range is from 1 to 100. Default value is 5.
7478
7479 @item stepw
7480 Set horizontal step when averaging. Default value is 1.
7481 Allowed range is from 1 to 50.
7482 Mostly useful to speed-up filtering.
7483
7484 @item steph
7485 Set vertical step when averaging. Default value is 1.
7486 Allowed range is from 1 to 50.
7487 Mostly useful to speed-up filtering.
7488 @end table
7489
7490 @subsection Commands
7491 This filter supports same @ref{commands} as options.
7492 The command accepts the same syntax of the corresponding option.
7493
7494 @section chromashift
7495 Shift chroma pixels horizontally and/or vertically.
7496
7497 The filter accepts the following options:
7498 @table @option
7499 @item cbh
7500 Set amount to shift chroma-blue horizontally.
7501 @item cbv
7502 Set amount to shift chroma-blue vertically.
7503 @item crh
7504 Set amount to shift chroma-red horizontally.
7505 @item crv
7506 Set amount to shift chroma-red vertically.
7507 @item edge
7508 Set edge mode, can be @var{smear}, default, or @var{warp}.
7509 @end table
7510
7511 @subsection Commands
7512
7513 This filter supports the all above options as @ref{commands}.
7514
7515 @section ciescope
7516
7517 Display CIE color diagram with pixels overlaid onto it.
7518
7519 The filter accepts the following options:
7520
7521 @table @option
7522 @item system
7523 Set color system.
7524
7525 @table @samp
7526 @item ntsc, 470m
7527 @item ebu, 470bg
7528 @item smpte
7529 @item 240m
7530 @item apple
7531 @item widergb
7532 @item cie1931
7533 @item rec709, hdtv
7534 @item uhdtv, rec2020
7535 @item dcip3
7536 @end table
7537
7538 @item cie
7539 Set CIE system.
7540
7541 @table @samp
7542 @item xyy
7543 @item ucs
7544 @item luv
7545 @end table
7546
7547 @item gamuts
7548 Set what gamuts to draw.
7549
7550 See @code{system} option for available values.
7551
7552 @item size, s
7553 Set ciescope size, by default set to 512.
7554
7555 @item intensity, i
7556 Set intensity used to map input pixel values to CIE diagram.
7557
7558 @item contrast
7559 Set contrast used to draw tongue colors that are out of active color system gamut.
7560
7561 @item corrgamma
7562 Correct gamma displayed on scope, by default enabled.
7563
7564 @item showwhite
7565 Show white point on CIE diagram, by default disabled.
7566
7567 @item gamma
7568 Set input gamma. Used only with XYZ input color space.
7569 @end table
7570
7571 @section codecview
7572
7573 Visualize information exported by some codecs.
7574
7575 Some codecs can export information through frames using side-data or other
7576 means. For example, some MPEG based codecs export motion vectors through the
7577 @var{export_mvs} flag in the codec @option{flags2} option.
7578
7579 The filter accepts the following option:
7580
7581 @table @option
7582 @item mv
7583 Set motion vectors to visualize.
7584
7585 Available flags for @var{mv} are:
7586
7587 @table @samp
7588 @item pf
7589 forward predicted MVs of P-frames
7590 @item bf
7591 forward predicted MVs of B-frames
7592 @item bb
7593 backward predicted MVs of B-frames
7594 @end table
7595
7596 @item qp
7597 Display quantization parameters using the chroma planes.
7598
7599 @item mv_type, mvt
7600 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7601
7602 Available flags for @var{mv_type} are:
7603
7604 @table @samp
7605 @item fp
7606 forward predicted MVs
7607 @item bp
7608 backward predicted MVs
7609 @end table
7610
7611 @item frame_type, ft
7612 Set frame type to visualize motion vectors of.
7613
7614 Available flags for @var{frame_type} are:
7615
7616 @table @samp
7617 @item if
7618 intra-coded frames (I-frames)
7619 @item pf
7620 predicted frames (P-frames)
7621 @item bf
7622 bi-directionally predicted frames (B-frames)
7623 @end table
7624 @end table
7625
7626 @subsection Examples
7627
7628 @itemize
7629 @item
7630 Visualize forward predicted MVs of all frames using @command{ffplay}:
7631 @example
7632 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7633 @end example
7634
7635 @item
7636 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7637 @example
7638 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7639 @end example
7640 @end itemize
7641
7642 @section colorbalance
7643 Modify intensity of primary colors (red, green and blue) of input frames.
7644
7645 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7646 regions for the red-cyan, green-magenta or blue-yellow balance.
7647
7648 A positive adjustment value shifts the balance towards the primary color, a negative
7649 value towards the complementary color.
7650
7651 The filter accepts the following options:
7652
7653 @table @option
7654 @item rs
7655 @item gs
7656 @item bs
7657 Adjust red, green and blue shadows (darkest pixels).
7658
7659 @item rm
7660 @item gm
7661 @item bm
7662 Adjust red, green and blue midtones (medium pixels).
7663
7664 @item rh
7665 @item gh
7666 @item bh
7667 Adjust red, green and blue highlights (brightest pixels).
7668
7669 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7670
7671 @item pl
7672 Preserve lightness when changing color balance. Default is disabled.
7673 @end table
7674
7675 @subsection Examples
7676
7677 @itemize
7678 @item
7679 Add red color cast to shadows:
7680 @example
7681 colorbalance=rs=.3
7682 @end example
7683 @end itemize
7684
7685 @subsection Commands
7686
7687 This filter supports the all above options as @ref{commands}.
7688
7689 @section colorchannelmixer
7690
7691 Adjust video input frames by re-mixing color channels.
7692
7693 This filter modifies a color channel by adding the values associated to
7694 the other channels of the same pixels. For example if the value to
7695 modify is red, the output value will be:
7696 @example
7697 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
7698 @end example
7699
7700 The filter accepts the following options:
7701
7702 @table @option
7703 @item rr
7704 @item rg
7705 @item rb
7706 @item ra
7707 Adjust contribution of input red, green, blue and alpha channels for output red channel.
7708 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
7709
7710 @item gr
7711 @item gg
7712 @item gb
7713 @item ga
7714 Adjust contribution of input red, green, blue and alpha channels for output green channel.
7715 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
7716
7717 @item br
7718 @item bg
7719 @item bb
7720 @item ba
7721 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
7722 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
7723
7724 @item ar
7725 @item ag
7726 @item ab
7727 @item aa
7728 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
7729 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
7730
7731 Allowed ranges for options are @code{[-2.0, 2.0]}.
7732 @end table
7733
7734 @subsection Examples
7735
7736 @itemize
7737 @item
7738 Convert source to grayscale:
7739 @example
7740 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
7741 @end example
7742 @item
7743 Simulate sepia tones:
7744 @example
7745 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
7746 @end example
7747 @end itemize
7748
7749 @subsection Commands
7750
7751 This filter supports the all above options as @ref{commands}.
7752
7753 @section colorkey
7754 RGB colorspace color keying.
7755
7756 The filter accepts the following options:
7757
7758 @table @option
7759 @item color
7760 The color which will be replaced with transparency.
7761
7762 @item similarity
7763 Similarity percentage with the key color.
7764
7765 0.01 matches only the exact key color, while 1.0 matches everything.
7766
7767 @item blend
7768 Blend percentage.
7769
7770 0.0 makes pixels either fully transparent, or not transparent at all.
7771
7772 Higher values result in semi-transparent pixels, with a higher transparency
7773 the more similar the pixels color is to the key color.
7774 @end table
7775
7776 @subsection Examples
7777
7778 @itemize
7779 @item
7780 Make every green pixel in the input image transparent:
7781 @example
7782 ffmpeg -i input.png -vf colorkey=green out.png
7783 @end example
7784
7785 @item
7786 Overlay a greenscreen-video on top of a static background image.
7787 @example
7788 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
7789 @end example
7790 @end itemize
7791
7792 @subsection Commands
7793 This filter supports same @ref{commands} as options.
7794 The command accepts the same syntax of the corresponding option.
7795
7796 If the specified expression is not valid, it is kept at its current
7797 value.
7798
7799 @section colorhold
7800 Remove all color information for all RGB colors except for certain one.
7801
7802 The filter accepts the following options:
7803
7804 @table @option
7805 @item color
7806 The color which will not be replaced with neutral gray.
7807
7808 @item similarity
7809 Similarity percentage with the above color.
7810 0.01 matches only the exact key color, while 1.0 matches everything.
7811
7812 @item blend
7813 Blend percentage. 0.0 makes pixels fully gray.
7814 Higher values result in more preserved color.
7815 @end table
7816
7817 @subsection Commands
7818 This filter supports same @ref{commands} as options.
7819 The command accepts the same syntax of the corresponding option.
7820
7821 If the specified expression is not valid, it is kept at its current
7822 value.
7823
7824 @section colorlevels
7825
7826 Adjust video input frames using levels.
7827
7828 The filter accepts the following options:
7829
7830 @table @option
7831 @item rimin
7832 @item gimin
7833 @item bimin
7834 @item aimin
7835 Adjust red, green, blue and alpha input black point.
7836 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7837
7838 @item rimax
7839 @item gimax
7840 @item bimax
7841 @item aimax
7842 Adjust red, green, blue and alpha input white point.
7843 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
7844
7845 Input levels are used to lighten highlights (bright tones), darken shadows
7846 (dark tones), change the balance of bright and dark tones.
7847
7848 @item romin
7849 @item gomin
7850 @item bomin
7851 @item aomin
7852 Adjust red, green, blue and alpha output black point.
7853 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
7854
7855 @item romax
7856 @item gomax
7857 @item bomax
7858 @item aomax
7859 Adjust red, green, blue and alpha output white point.
7860 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
7861
7862 Output levels allows manual selection of a constrained output level range.
7863 @end table
7864
7865 @subsection Examples
7866
7867 @itemize
7868 @item
7869 Make video output darker:
7870 @example
7871 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
7872 @end example
7873
7874 @item
7875 Increase contrast:
7876 @example
7877 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
7878 @end example
7879
7880 @item
7881 Make video output lighter:
7882 @example
7883 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
7884 @end example
7885
7886 @item
7887 Increase brightness:
7888 @example
7889 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
7890 @end example
7891 @end itemize
7892
7893 @subsection Commands
7894
7895 This filter supports the all above options as @ref{commands}.
7896
7897 @section colormatrix
7898
7899 Convert color matrix.
7900
7901 The filter accepts the following options:
7902
7903 @table @option
7904 @item src
7905 @item dst
7906 Specify the source and destination color matrix. Both values must be
7907 specified.
7908
7909 The accepted values are:
7910 @table @samp
7911 @item bt709
7912 BT.709
7913
7914 @item fcc
7915 FCC
7916
7917 @item bt601
7918 BT.601
7919
7920 @item bt470
7921 BT.470
7922
7923 @item bt470bg
7924 BT.470BG
7925
7926 @item smpte170m
7927 SMPTE-170M
7928
7929 @item smpte240m
7930 SMPTE-240M
7931
7932 @item bt2020
7933 BT.2020
7934 @end table
7935 @end table
7936
7937 For example to convert from BT.601 to SMPTE-240M, use the command:
7938 @example
7939 colormatrix=bt601:smpte240m
7940 @end example
7941
7942 @section colorspace
7943
7944 Convert colorspace, transfer characteristics or color primaries.
7945 Input video needs to have an even size.
7946
7947 The filter accepts the following options:
7948
7949 @table @option
7950 @anchor{all}
7951 @item all
7952 Specify all color properties at once.
7953
7954 The accepted values are:
7955 @table @samp
7956 @item bt470m
7957 BT.470M
7958
7959 @item bt470bg
7960 BT.470BG
7961
7962 @item bt601-6-525
7963 BT.601-6 525
7964
7965 @item bt601-6-625
7966 BT.601-6 625
7967
7968 @item bt709
7969 BT.709
7970
7971 @item smpte170m
7972 SMPTE-170M
7973
7974 @item smpte240m
7975 SMPTE-240M
7976
7977 @item bt2020
7978 BT.2020
7979
7980 @end table
7981
7982 @anchor{space}
7983 @item space
7984 Specify output colorspace.
7985
7986 The accepted values are:
7987 @table @samp
7988 @item bt709
7989 BT.709
7990
7991 @item fcc
7992 FCC
7993
7994 @item bt470bg
7995 BT.470BG or BT.601-6 625
7996
7997 @item smpte170m
7998 SMPTE-170M or BT.601-6 525
7999
8000 @item smpte240m
8001 SMPTE-240M
8002
8003 @item ycgco
8004 YCgCo
8005
8006 @item bt2020ncl
8007 BT.2020 with non-constant luminance
8008
8009 @end table
8010
8011 @anchor{trc}
8012 @item trc
8013 Specify output transfer characteristics.
8014
8015 The accepted values are:
8016 @table @samp
8017 @item bt709
8018 BT.709
8019
8020 @item bt470m
8021 BT.470M
8022
8023 @item bt470bg
8024 BT.470BG
8025
8026 @item gamma22
8027 Constant gamma of 2.2
8028
8029 @item gamma28
8030 Constant gamma of 2.8
8031
8032 @item smpte170m
8033 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8034
8035 @item smpte240m
8036 SMPTE-240M
8037
8038 @item srgb
8039 SRGB
8040
8041 @item iec61966-2-1
8042 iec61966-2-1
8043
8044 @item iec61966-2-4
8045 iec61966-2-4
8046
8047 @item xvycc
8048 xvycc
8049
8050 @item bt2020-10
8051 BT.2020 for 10-bits content
8052
8053 @item bt2020-12
8054 BT.2020 for 12-bits content
8055
8056 @end table
8057
8058 @anchor{primaries}
8059 @item primaries
8060 Specify output color primaries.
8061
8062 The accepted values are:
8063 @table @samp
8064 @item bt709
8065 BT.709
8066
8067 @item bt470m
8068 BT.470M
8069
8070 @item bt470bg
8071 BT.470BG or BT.601-6 625
8072
8073 @item smpte170m
8074 SMPTE-170M or BT.601-6 525
8075
8076 @item smpte240m
8077 SMPTE-240M
8078
8079 @item film
8080 film
8081
8082 @item smpte431
8083 SMPTE-431
8084
8085 @item smpte432
8086 SMPTE-432
8087
8088 @item bt2020
8089 BT.2020
8090
8091 @item jedec-p22
8092 JEDEC P22 phosphors
8093
8094 @end table
8095
8096 @anchor{range}
8097 @item range
8098 Specify output color range.
8099
8100 The accepted values are:
8101 @table @samp
8102 @item tv
8103 TV (restricted) range
8104
8105 @item mpeg
8106 MPEG (restricted) range
8107
8108 @item pc
8109 PC (full) range
8110
8111 @item jpeg
8112 JPEG (full) range
8113
8114 @end table
8115
8116 @item format
8117 Specify output color format.
8118
8119 The accepted values are:
8120 @table @samp
8121 @item yuv420p
8122 YUV 4:2:0 planar 8-bits
8123
8124 @item yuv420p10
8125 YUV 4:2:0 planar 10-bits
8126
8127 @item yuv420p12
8128 YUV 4:2:0 planar 12-bits
8129
8130 @item yuv422p
8131 YUV 4:2:2 planar 8-bits
8132
8133 @item yuv422p10
8134 YUV 4:2:2 planar 10-bits
8135
8136 @item yuv422p12
8137 YUV 4:2:2 planar 12-bits
8138
8139 @item yuv444p
8140 YUV 4:4:4 planar 8-bits
8141
8142 @item yuv444p10
8143 YUV 4:4:4 planar 10-bits
8144
8145 @item yuv444p12
8146 YUV 4:4:4 planar 12-bits
8147
8148 @end table
8149
8150 @item fast
8151 Do a fast conversion, which skips gamma/primary correction. This will take
8152 significantly less CPU, but will be mathematically incorrect. To get output
8153 compatible with that produced by the colormatrix filter, use fast=1.
8154
8155 @item dither
8156 Specify dithering mode.
8157
8158 The accepted values are:
8159 @table @samp
8160 @item none
8161 No dithering
8162
8163 @item fsb
8164 Floyd-Steinberg dithering
8165 @end table
8166
8167 @item wpadapt
8168 Whitepoint adaptation mode.
8169
8170 The accepted values are:
8171 @table @samp
8172 @item bradford
8173 Bradford whitepoint adaptation
8174
8175 @item vonkries
8176 von Kries whitepoint adaptation
8177
8178 @item identity
8179 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8180 @end table
8181
8182 @item iall
8183 Override all input properties at once. Same accepted values as @ref{all}.
8184
8185 @item ispace
8186 Override input colorspace. Same accepted values as @ref{space}.
8187
8188 @item iprimaries
8189 Override input color primaries. Same accepted values as @ref{primaries}.
8190
8191 @item itrc
8192 Override input transfer characteristics. Same accepted values as @ref{trc}.
8193
8194 @item irange
8195 Override input color range. Same accepted values as @ref{range}.
8196
8197 @end table
8198
8199 The filter converts the transfer characteristics, color space and color
8200 primaries to the specified user values. The output value, if not specified,
8201 is set to a default value based on the "all" property. If that property is
8202 also not specified, the filter will log an error. The output color range and
8203 format default to the same value as the input color range and format. The
8204 input transfer characteristics, color space, color primaries and color range
8205 should be set on the input data. If any of these are missing, the filter will
8206 log an error and no conversion will take place.
8207
8208 For example to convert the input to SMPTE-240M, use the command:
8209 @example
8210 colorspace=smpte240m
8211 @end example
8212
8213 @section convolution
8214
8215 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8216
8217 The filter accepts the following options:
8218
8219 @table @option
8220 @item 0m
8221 @item 1m
8222 @item 2m
8223 @item 3m
8224 Set matrix for each plane.
8225 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8226 and from 1 to 49 odd number of signed integers in @var{row} mode.
8227
8228 @item 0rdiv
8229 @item 1rdiv
8230 @item 2rdiv
8231 @item 3rdiv
8232 Set multiplier for calculated value for each plane.
8233 If unset or 0, it will be sum of all matrix elements.
8234
8235 @item 0bias
8236 @item 1bias
8237 @item 2bias
8238 @item 3bias
8239 Set bias for each plane. This value is added to the result of the multiplication.
8240 Useful for making the overall image brighter or darker. Default is 0.0.
8241
8242 @item 0mode
8243 @item 1mode
8244 @item 2mode
8245 @item 3mode
8246 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8247 Default is @var{square}.
8248 @end table
8249
8250 @subsection Examples
8251
8252 @itemize
8253 @item
8254 Apply sharpen:
8255 @example
8256 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"
8257 @end example
8258
8259 @item
8260 Apply blur:
8261 @example
8262 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"
8263 @end example
8264
8265 @item
8266 Apply edge enhance:
8267 @example
8268 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"
8269 @end example
8270
8271 @item
8272 Apply edge detect:
8273 @example
8274 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"
8275 @end example
8276
8277 @item
8278 Apply laplacian edge detector which includes diagonals:
8279 @example
8280 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"
8281 @end example
8282
8283 @item
8284 Apply emboss:
8285 @example
8286 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"
8287 @end example
8288 @end itemize
8289
8290 @section convolve
8291
8292 Apply 2D convolution of video stream in frequency domain using second stream
8293 as impulse.
8294
8295 The filter accepts the following options:
8296
8297 @table @option
8298 @item planes
8299 Set which planes to process.
8300
8301 @item impulse
8302 Set which impulse video frames will be processed, can be @var{first}
8303 or @var{all}. Default is @var{all}.
8304 @end table
8305
8306 The @code{convolve} filter also supports the @ref{framesync} options.
8307
8308 @section copy
8309
8310 Copy the input video source unchanged to the output. This is mainly useful for
8311 testing purposes.
8312
8313 @anchor{coreimage}
8314 @section coreimage
8315 Video filtering on GPU using Apple's CoreImage API on OSX.
8316
8317 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8318 processed by video hardware. However, software-based OpenGL implementations
8319 exist which means there is no guarantee for hardware processing. It depends on
8320 the respective OSX.
8321
8322 There are many filters and image generators provided by Apple that come with a
8323 large variety of options. The filter has to be referenced by its name along
8324 with its options.
8325
8326 The coreimage filter accepts the following options:
8327 @table @option
8328 @item list_filters
8329 List all available filters and generators along with all their respective
8330 options as well as possible minimum and maximum values along with the default
8331 values.
8332 @example
8333 list_filters=true
8334 @end example
8335
8336 @item filter
8337 Specify all filters by their respective name and options.
8338 Use @var{list_filters} to determine all valid filter names and options.
8339 Numerical options are specified by a float value and are automatically clamped
8340 to their respective value range.  Vector and color options have to be specified
8341 by a list of space separated float values. Character escaping has to be done.
8342 A special option name @code{default} is available to use default options for a
8343 filter.
8344
8345 It is required to specify either @code{default} or at least one of the filter options.
8346 All omitted options are used with their default values.
8347 The syntax of the filter string is as follows:
8348 @example
8349 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8350 @end example
8351
8352 @item output_rect
8353 Specify a rectangle where the output of the filter chain is copied into the
8354 input image. It is given by a list of space separated float values:
8355 @example
8356 output_rect=x\ y\ width\ height
8357 @end example
8358 If not given, the output rectangle equals the dimensions of the input image.
8359 The output rectangle is automatically cropped at the borders of the input
8360 image. Negative values are valid for each component.
8361 @example
8362 output_rect=25\ 25\ 100\ 100
8363 @end example
8364 @end table
8365
8366 Several filters can be chained for successive processing without GPU-HOST
8367 transfers allowing for fast processing of complex filter chains.
8368 Currently, only filters with zero (generators) or exactly one (filters) input
8369 image and one output image are supported. Also, transition filters are not yet
8370 usable as intended.
8371
8372 Some filters generate output images with additional padding depending on the
8373 respective filter kernel. The padding is automatically removed to ensure the
8374 filter output has the same size as the input image.
8375
8376 For image generators, the size of the output image is determined by the
8377 previous output image of the filter chain or the input image of the whole
8378 filterchain, respectively. The generators do not use the pixel information of
8379 this image to generate their output. However, the generated output is
8380 blended onto this image, resulting in partial or complete coverage of the
8381 output image.
8382
8383 The @ref{coreimagesrc} video source can be used for generating input images
8384 which are directly fed into the filter chain. By using it, providing input
8385 images by another video source or an input video is not required.
8386
8387 @subsection Examples
8388
8389 @itemize
8390
8391 @item
8392 List all filters available:
8393 @example
8394 coreimage=list_filters=true
8395 @end example
8396
8397 @item
8398 Use the CIBoxBlur filter with default options to blur an image:
8399 @example
8400 coreimage=filter=CIBoxBlur@@default
8401 @end example
8402
8403 @item
8404 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8405 its center at 100x100 and a radius of 50 pixels:
8406 @example
8407 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8408 @end example
8409
8410 @item
8411 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8412 given as complete and escaped command-line for Apple's standard bash shell:
8413 @example
8414 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8415 @end example
8416 @end itemize
8417
8418 @section cover_rect
8419
8420 Cover a rectangular object
8421
8422 It accepts the following options:
8423
8424 @table @option
8425 @item cover
8426 Filepath of the optional cover image, needs to be in yuv420.
8427
8428 @item mode
8429 Set covering mode.
8430
8431 It accepts the following values:
8432 @table @samp
8433 @item cover
8434 cover it by the supplied image
8435 @item blur
8436 cover it by interpolating the surrounding pixels
8437 @end table
8438
8439 Default value is @var{blur}.
8440 @end table
8441
8442 @subsection Examples
8443
8444 @itemize
8445 @item
8446 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8447 @example
8448 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8449 @end example
8450 @end itemize
8451
8452 @section crop
8453
8454 Crop the input video to given dimensions.
8455
8456 It accepts the following parameters:
8457
8458 @table @option
8459 @item w, out_w
8460 The width of the output video. It defaults to @code{iw}.
8461 This expression is evaluated only once during the filter
8462 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8463
8464 @item h, out_h
8465 The height of the output video. It defaults to @code{ih}.
8466 This expression is evaluated only once during the filter
8467 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8468
8469 @item x
8470 The horizontal position, in the input video, of the left edge of the output
8471 video. It defaults to @code{(in_w-out_w)/2}.
8472 This expression is evaluated per-frame.
8473
8474 @item y
8475 The vertical position, in the input video, of the top edge of the output video.
8476 It defaults to @code{(in_h-out_h)/2}.
8477 This expression is evaluated per-frame.
8478
8479 @item keep_aspect
8480 If set to 1 will force the output display aspect ratio
8481 to be the same of the input, by changing the output sample aspect
8482 ratio. It defaults to 0.
8483
8484 @item exact
8485 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8486 width/height/x/y as specified and will not be rounded to nearest smaller value.
8487 It defaults to 0.
8488 @end table
8489
8490 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8491 expressions containing the following constants:
8492
8493 @table @option
8494 @item x
8495 @item y
8496 The computed values for @var{x} and @var{y}. They are evaluated for
8497 each new frame.
8498
8499 @item in_w
8500 @item in_h
8501 The input width and height.
8502
8503 @item iw
8504 @item ih
8505 These are the same as @var{in_w} and @var{in_h}.
8506
8507 @item out_w
8508 @item out_h
8509 The output (cropped) width and height.
8510
8511 @item ow
8512 @item oh
8513 These are the same as @var{out_w} and @var{out_h}.
8514
8515 @item a
8516 same as @var{iw} / @var{ih}
8517
8518 @item sar
8519 input sample aspect ratio
8520
8521 @item dar
8522 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8523
8524 @item hsub
8525 @item vsub
8526 horizontal and vertical chroma subsample values. For example for the
8527 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8528
8529 @item n
8530 The number of the input frame, starting from 0.
8531
8532 @item pos
8533 the position in the file of the input frame, NAN if unknown
8534
8535 @item t
8536 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8537
8538 @end table
8539
8540 The expression for @var{out_w} may depend on the value of @var{out_h},
8541 and the expression for @var{out_h} may depend on @var{out_w}, but they
8542 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8543 evaluated after @var{out_w} and @var{out_h}.
8544
8545 The @var{x} and @var{y} parameters specify the expressions for the
8546 position of the top-left corner of the output (non-cropped) area. They
8547 are evaluated for each frame. If the evaluated value is not valid, it
8548 is approximated to the nearest valid value.
8549
8550 The expression for @var{x} may depend on @var{y}, and the expression
8551 for @var{y} may depend on @var{x}.
8552
8553 @subsection Examples
8554
8555 @itemize
8556 @item
8557 Crop area with size 100x100 at position (12,34).
8558 @example
8559 crop=100:100:12:34
8560 @end example
8561
8562 Using named options, the example above becomes:
8563 @example
8564 crop=w=100:h=100:x=12:y=34
8565 @end example
8566
8567 @item
8568 Crop the central input area with size 100x100:
8569 @example
8570 crop=100:100
8571 @end example
8572
8573 @item
8574 Crop the central input area with size 2/3 of the input video:
8575 @example
8576 crop=2/3*in_w:2/3*in_h
8577 @end example
8578
8579 @item
8580 Crop the input video central square:
8581 @example
8582 crop=out_w=in_h
8583 crop=in_h
8584 @end example
8585
8586 @item
8587 Delimit the rectangle with the top-left corner placed at position
8588 100:100 and the right-bottom corner corresponding to the right-bottom
8589 corner of the input image.
8590 @example
8591 crop=in_w-100:in_h-100:100:100
8592 @end example
8593
8594 @item
8595 Crop 10 pixels from the left and right borders, and 20 pixels from
8596 the top and bottom borders
8597 @example
8598 crop=in_w-2*10:in_h-2*20
8599 @end example
8600
8601 @item
8602 Keep only the bottom right quarter of the input image:
8603 @example
8604 crop=in_w/2:in_h/2:in_w/2:in_h/2
8605 @end example
8606
8607 @item
8608 Crop height for getting Greek harmony:
8609 @example
8610 crop=in_w:1/PHI*in_w
8611 @end example
8612
8613 @item
8614 Apply trembling effect:
8615 @example
8616 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)
8617 @end example
8618
8619 @item
8620 Apply erratic camera effect depending on timestamp:
8621 @example
8622 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)"
8623 @end example
8624
8625 @item
8626 Set x depending on the value of y:
8627 @example
8628 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8629 @end example
8630 @end itemize
8631
8632 @subsection Commands
8633
8634 This filter supports the following commands:
8635 @table @option
8636 @item w, out_w
8637 @item h, out_h
8638 @item x
8639 @item y
8640 Set width/height of the output video and the horizontal/vertical position
8641 in the input video.
8642 The command accepts the same syntax of the corresponding option.
8643
8644 If the specified expression is not valid, it is kept at its current
8645 value.
8646 @end table
8647
8648 @section cropdetect
8649
8650 Auto-detect the crop size.
8651
8652 It calculates the necessary cropping parameters and prints the
8653 recommended parameters via the logging system. The detected dimensions
8654 correspond to the non-black area of the input video.
8655
8656 It accepts the following parameters:
8657
8658 @table @option
8659
8660 @item limit
8661 Set higher black value threshold, which can be optionally specified
8662 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8663 value greater to the set value is considered non-black. It defaults to 24.
8664 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8665 on the bitdepth of the pixel format.
8666
8667 @item round
8668 The value which the width/height should be divisible by. It defaults to
8669 16. The offset is automatically adjusted to center the video. Use 2 to
8670 get only even dimensions (needed for 4:2:2 video). 16 is best when
8671 encoding to most video codecs.
8672
8673 @item reset_count, reset
8674 Set the counter that determines after how many frames cropdetect will
8675 reset the previously detected largest video area and start over to
8676 detect the current optimal crop area. Default value is 0.
8677
8678 This can be useful when channel logos distort the video area. 0
8679 indicates 'never reset', and returns the largest area encountered during
8680 playback.
8681 @end table
8682
8683 @anchor{cue}
8684 @section cue
8685
8686 Delay video filtering until a given wallclock timestamp. The filter first
8687 passes on @option{preroll} amount of frames, then it buffers at most
8688 @option{buffer} amount of frames and waits for the cue. After reaching the cue
8689 it forwards the buffered frames and also any subsequent frames coming in its
8690 input.
8691
8692 The filter can be used synchronize the output of multiple ffmpeg processes for
8693 realtime output devices like decklink. By putting the delay in the filtering
8694 chain and pre-buffering frames the process can pass on data to output almost
8695 immediately after the target wallclock timestamp is reached.
8696
8697 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
8698 some use cases.
8699
8700 @table @option
8701
8702 @item cue
8703 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
8704
8705 @item preroll
8706 The duration of content to pass on as preroll expressed in seconds. Default is 0.
8707
8708 @item buffer
8709 The maximum duration of content to buffer before waiting for the cue expressed
8710 in seconds. Default is 0.
8711
8712 @end table
8713
8714 @anchor{curves}
8715 @section curves
8716
8717 Apply color adjustments using curves.
8718
8719 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
8720 component (red, green and blue) has its values defined by @var{N} key points
8721 tied from each other using a smooth curve. The x-axis represents the pixel
8722 values from the input frame, and the y-axis the new pixel values to be set for
8723 the output frame.
8724
8725 By default, a component curve is defined by the two points @var{(0;0)} and
8726 @var{(1;1)}. This creates a straight line where each original pixel value is
8727 "adjusted" to its own value, which means no change to the image.
8728
8729 The filter allows you to redefine these two points and add some more. A new
8730 curve (using a natural cubic spline interpolation) will be define to pass
8731 smoothly through all these new coordinates. The new defined points needs to be
8732 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
8733 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
8734 the vector spaces, the values will be clipped accordingly.
8735
8736 The filter accepts the following options:
8737
8738 @table @option
8739 @item preset
8740 Select one of the available color presets. This option can be used in addition
8741 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
8742 options takes priority on the preset values.
8743 Available presets are:
8744 @table @samp
8745 @item none
8746 @item color_negative
8747 @item cross_process
8748 @item darker
8749 @item increase_contrast
8750 @item lighter
8751 @item linear_contrast
8752 @item medium_contrast
8753 @item negative
8754 @item strong_contrast
8755 @item vintage
8756 @end table
8757 Default is @code{none}.
8758 @item master, m
8759 Set the master key points. These points will define a second pass mapping. It
8760 is sometimes called a "luminance" or "value" mapping. It can be used with
8761 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
8762 post-processing LUT.
8763 @item red, r
8764 Set the key points for the red component.
8765 @item green, g
8766 Set the key points for the green component.
8767 @item blue, b
8768 Set the key points for the blue component.
8769 @item all
8770 Set the key points for all components (not including master).
8771 Can be used in addition to the other key points component
8772 options. In this case, the unset component(s) will fallback on this
8773 @option{all} setting.
8774 @item psfile
8775 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
8776 @item plot
8777 Save Gnuplot script of the curves in specified file.
8778 @end table
8779
8780 To avoid some filtergraph syntax conflicts, each key points list need to be
8781 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
8782
8783 @subsection Examples
8784
8785 @itemize
8786 @item
8787 Increase slightly the middle level of blue:
8788 @example
8789 curves=blue='0/0 0.5/0.58 1/1'
8790 @end example
8791
8792 @item
8793 Vintage effect:
8794 @example
8795 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'
8796 @end example
8797 Here we obtain the following coordinates for each components:
8798 @table @var
8799 @item red
8800 @code{(0;0.11) (0.42;0.51) (1;0.95)}
8801 @item green
8802 @code{(0;0) (0.50;0.48) (1;1)}
8803 @item blue
8804 @code{(0;0.22) (0.49;0.44) (1;0.80)}
8805 @end table
8806
8807 @item
8808 The previous example can also be achieved with the associated built-in preset:
8809 @example
8810 curves=preset=vintage
8811 @end example
8812
8813 @item
8814 Or simply:
8815 @example
8816 curves=vintage
8817 @end example
8818
8819 @item
8820 Use a Photoshop preset and redefine the points of the green component:
8821 @example
8822 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
8823 @end example
8824
8825 @item
8826 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
8827 and @command{gnuplot}:
8828 @example
8829 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
8830 gnuplot -p /tmp/curves.plt
8831 @end example
8832 @end itemize
8833
8834 @section datascope
8835
8836 Video data analysis filter.
8837
8838 This filter shows hexadecimal pixel values of part of video.
8839
8840 The filter accepts the following options:
8841
8842 @table @option
8843 @item size, s
8844 Set output video size.
8845
8846 @item x
8847 Set x offset from where to pick pixels.
8848
8849 @item y
8850 Set y offset from where to pick pixels.
8851
8852 @item mode
8853 Set scope mode, can be one of the following:
8854 @table @samp
8855 @item mono
8856 Draw hexadecimal pixel values with white color on black background.
8857
8858 @item color
8859 Draw hexadecimal pixel values with input video pixel color on black
8860 background.
8861
8862 @item color2
8863 Draw hexadecimal pixel values on color background picked from input video,
8864 the text color is picked in such way so its always visible.
8865 @end table
8866
8867 @item axis
8868 Draw rows and columns numbers on left and top of video.
8869
8870 @item opacity
8871 Set background opacity.
8872
8873 @item format
8874 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
8875 @end table
8876
8877 @section dblur
8878 Apply Directional blur filter.
8879
8880 The filter accepts the following options:
8881
8882 @table @option
8883 @item angle
8884 Set angle of directional blur. Default is @code{45}.
8885
8886 @item radius
8887 Set radius of directional blur. Default is @code{5}.
8888
8889 @item planes
8890 Set which planes to filter. By default all planes are filtered.
8891 @end table
8892
8893 @subsection Commands
8894 This filter supports same @ref{commands} as options.
8895 The command accepts the same syntax of the corresponding option.
8896
8897 If the specified expression is not valid, it is kept at its current
8898 value.
8899
8900 @section dctdnoiz
8901
8902 Denoise frames using 2D DCT (frequency domain filtering).
8903
8904 This filter is not designed for real time.
8905
8906 The filter accepts the following options:
8907
8908 @table @option
8909 @item sigma, s
8910 Set the noise sigma constant.
8911
8912 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
8913 coefficient (absolute value) below this threshold with be dropped.
8914
8915 If you need a more advanced filtering, see @option{expr}.
8916
8917 Default is @code{0}.
8918
8919 @item overlap
8920 Set number overlapping pixels for each block. Since the filter can be slow, you
8921 may want to reduce this value, at the cost of a less effective filter and the
8922 risk of various artefacts.
8923
8924 If the overlapping value doesn't permit processing the whole input width or
8925 height, a warning will be displayed and according borders won't be denoised.
8926
8927 Default value is @var{blocksize}-1, which is the best possible setting.
8928
8929 @item expr, e
8930 Set the coefficient factor expression.
8931
8932 For each coefficient of a DCT block, this expression will be evaluated as a
8933 multiplier value for the coefficient.
8934
8935 If this is option is set, the @option{sigma} option will be ignored.
8936
8937 The absolute value of the coefficient can be accessed through the @var{c}
8938 variable.
8939
8940 @item n
8941 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8942 @var{blocksize}, which is the width and height of the processed blocks.
8943
8944 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8945 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8946 on the speed processing. Also, a larger block size does not necessarily means a
8947 better de-noising.
8948 @end table
8949
8950 @subsection Examples
8951
8952 Apply a denoise with a @option{sigma} of @code{4.5}:
8953 @example
8954 dctdnoiz=4.5
8955 @end example
8956
8957 The same operation can be achieved using the expression system:
8958 @example
8959 dctdnoiz=e='gte(c, 4.5*3)'
8960 @end example
8961
8962 Violent denoise using a block size of @code{16x16}:
8963 @example
8964 dctdnoiz=15:n=4
8965 @end example
8966
8967 @section deband
8968
8969 Remove banding artifacts from input video.
8970 It works by replacing banded pixels with average value of referenced pixels.
8971
8972 The filter accepts the following options:
8973
8974 @table @option
8975 @item 1thr
8976 @item 2thr
8977 @item 3thr
8978 @item 4thr
8979 Set banding detection threshold for each plane. Default is 0.02.
8980 Valid range is 0.00003 to 0.5.
8981 If difference between current pixel and reference pixel is less than threshold,
8982 it will be considered as banded.
8983
8984 @item range, r
8985 Banding detection range in pixels. Default is 16. If positive, random number
8986 in range 0 to set value will be used. If negative, exact absolute value
8987 will be used.
8988 The range defines square of four pixels around current pixel.
8989
8990 @item direction, d
8991 Set direction in radians from which four pixel will be compared. If positive,
8992 random direction from 0 to set direction will be picked. If negative, exact of
8993 absolute value will be picked. For example direction 0, -PI or -2*PI radians
8994 will pick only pixels on same row and -PI/2 will pick only pixels on same
8995 column.
8996
8997 @item blur, b
8998 If enabled, current pixel is compared with average value of all four
8999 surrounding pixels. The default is enabled. If disabled current pixel is
9000 compared with all four surrounding pixels. The pixel is considered banded
9001 if only all four differences with surrounding pixels are less than threshold.
9002
9003 @item coupling, c
9004 If enabled, current pixel is changed if and only if all pixel components are banded,
9005 e.g. banding detection threshold is triggered for all color components.
9006 The default is disabled.
9007 @end table
9008
9009 @section deblock
9010
9011 Remove blocking artifacts from input video.
9012
9013 The filter accepts the following options:
9014
9015 @table @option
9016 @item filter
9017 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9018 This controls what kind of deblocking is applied.
9019
9020 @item block
9021 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9022
9023 @item alpha
9024 @item beta
9025 @item gamma
9026 @item delta
9027 Set blocking detection thresholds. Allowed range is 0 to 1.
9028 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9029 Using higher threshold gives more deblocking strength.
9030 Setting @var{alpha} controls threshold detection at exact edge of block.
9031 Remaining options controls threshold detection near the edge. Each one for
9032 below/above or left/right. Setting any of those to @var{0} disables
9033 deblocking.
9034
9035 @item planes
9036 Set planes to filter. Default is to filter all available planes.
9037 @end table
9038
9039 @subsection Examples
9040
9041 @itemize
9042 @item
9043 Deblock using weak filter and block size of 4 pixels.
9044 @example
9045 deblock=filter=weak:block=4
9046 @end example
9047
9048 @item
9049 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9050 deblocking more edges.
9051 @example
9052 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9053 @end example
9054
9055 @item
9056 Similar as above, but filter only first plane.
9057 @example
9058 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9059 @end example
9060
9061 @item
9062 Similar as above, but filter only second and third plane.
9063 @example
9064 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9065 @end example
9066 @end itemize
9067
9068 @anchor{decimate}
9069 @section decimate
9070
9071 Drop duplicated frames at regular intervals.
9072
9073 The filter accepts the following options:
9074
9075 @table @option
9076 @item cycle
9077 Set the number of frames from which one will be dropped. Setting this to
9078 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9079 Default is @code{5}.
9080
9081 @item dupthresh
9082 Set the threshold for duplicate detection. If the difference metric for a frame
9083 is less than or equal to this value, then it is declared as duplicate. Default
9084 is @code{1.1}
9085
9086 @item scthresh
9087 Set scene change threshold. Default is @code{15}.
9088
9089 @item blockx
9090 @item blocky
9091 Set the size of the x and y-axis blocks used during metric calculations.
9092 Larger blocks give better noise suppression, but also give worse detection of
9093 small movements. Must be a power of two. Default is @code{32}.
9094
9095 @item ppsrc
9096 Mark main input as a pre-processed input and activate clean source input
9097 stream. This allows the input to be pre-processed with various filters to help
9098 the metrics calculation while keeping the frame selection lossless. When set to
9099 @code{1}, the first stream is for the pre-processed input, and the second
9100 stream is the clean source from where the kept frames are chosen. Default is
9101 @code{0}.
9102
9103 @item chroma
9104 Set whether or not chroma is considered in the metric calculations. Default is
9105 @code{1}.
9106 @end table
9107
9108 @section deconvolve
9109
9110 Apply 2D deconvolution of video stream in frequency domain using second stream
9111 as impulse.
9112
9113 The filter accepts the following options:
9114
9115 @table @option
9116 @item planes
9117 Set which planes to process.
9118
9119 @item impulse
9120 Set which impulse video frames will be processed, can be @var{first}
9121 or @var{all}. Default is @var{all}.
9122
9123 @item noise
9124 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9125 and height are not same and not power of 2 or if stream prior to convolving
9126 had noise.
9127 @end table
9128
9129 The @code{deconvolve} filter also supports the @ref{framesync} options.
9130
9131 @section dedot
9132
9133 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9134
9135 It accepts the following options:
9136
9137 @table @option
9138 @item m
9139 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9140 @var{rainbows} for cross-color reduction.
9141
9142 @item lt
9143 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9144
9145 @item tl
9146 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9147
9148 @item tc
9149 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9150
9151 @item ct
9152 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9153 @end table
9154
9155 @section deflate
9156
9157 Apply deflate effect to the video.
9158
9159 This filter replaces the pixel by the local(3x3) average by taking into account
9160 only values lower than the pixel.
9161
9162 It accepts the following options:
9163
9164 @table @option
9165 @item threshold0
9166 @item threshold1
9167 @item threshold2
9168 @item threshold3
9169 Limit the maximum change for each plane, default is 65535.
9170 If 0, plane will remain unchanged.
9171 @end table
9172
9173 @subsection Commands
9174
9175 This filter supports the all above options as @ref{commands}.
9176
9177 @section deflicker
9178
9179 Remove temporal frame luminance variations.
9180
9181 It accepts the following options:
9182
9183 @table @option
9184 @item size, s
9185 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9186
9187 @item mode, m
9188 Set averaging mode to smooth temporal luminance variations.
9189
9190 Available values are:
9191 @table @samp
9192 @item am
9193 Arithmetic mean
9194
9195 @item gm
9196 Geometric mean
9197
9198 @item hm
9199 Harmonic mean
9200
9201 @item qm
9202 Quadratic mean
9203
9204 @item cm
9205 Cubic mean
9206
9207 @item pm
9208 Power mean
9209
9210 @item median
9211 Median
9212 @end table
9213
9214 @item bypass
9215 Do not actually modify frame. Useful when one only wants metadata.
9216 @end table
9217
9218 @section dejudder
9219
9220 Remove judder produced by partially interlaced telecined content.
9221
9222 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9223 source was partially telecined content then the output of @code{pullup,dejudder}
9224 will have a variable frame rate. May change the recorded frame rate of the
9225 container. Aside from that change, this filter will not affect constant frame
9226 rate video.
9227
9228 The option available in this filter is:
9229 @table @option
9230
9231 @item cycle
9232 Specify the length of the window over which the judder repeats.
9233
9234 Accepts any integer greater than 1. Useful values are:
9235 @table @samp
9236
9237 @item 4
9238 If the original was telecined from 24 to 30 fps (Film to NTSC).
9239
9240 @item 5
9241 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9242
9243 @item 20
9244 If a mixture of the two.
9245 @end table
9246
9247 The default is @samp{4}.
9248 @end table
9249
9250 @section delogo
9251
9252 Suppress a TV station logo by a simple interpolation of the surrounding
9253 pixels. Just set a rectangle covering the logo and watch it disappear
9254 (and sometimes something even uglier appear - your mileage may vary).
9255
9256 It accepts the following parameters:
9257 @table @option
9258
9259 @item x
9260 @item y
9261 Specify the top left corner coordinates of the logo. They must be
9262 specified.
9263
9264 @item w
9265 @item h
9266 Specify the width and height of the logo to clear. They must be
9267 specified.
9268
9269 @item band, t
9270 Specify the thickness of the fuzzy edge of the rectangle (added to
9271 @var{w} and @var{h}). The default value is 1. This option is
9272 deprecated, setting higher values should no longer be necessary and
9273 is not recommended.
9274
9275 @item show
9276 When set to 1, a green rectangle is drawn on the screen to simplify
9277 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9278 The default value is 0.
9279
9280 The rectangle is drawn on the outermost pixels which will be (partly)
9281 replaced with interpolated values. The values of the next pixels
9282 immediately outside this rectangle in each direction will be used to
9283 compute the interpolated pixel values inside the rectangle.
9284
9285 @end table
9286
9287 @subsection Examples
9288
9289 @itemize
9290 @item
9291 Set a rectangle covering the area with top left corner coordinates 0,0
9292 and size 100x77, and a band of size 10:
9293 @example
9294 delogo=x=0:y=0:w=100:h=77:band=10
9295 @end example
9296
9297 @end itemize
9298
9299 @anchor{derain}
9300 @section derain
9301
9302 Remove the rain in the input image/video by applying the derain methods based on
9303 convolutional neural networks. Supported models:
9304
9305 @itemize
9306 @item
9307 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9308 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9309 @end itemize
9310
9311 Training as well as model generation scripts are provided in
9312 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9313
9314 Native model files (.model) can be generated from TensorFlow model
9315 files (.pb) by using tools/python/convert.py
9316
9317 The filter accepts the following options:
9318
9319 @table @option
9320 @item filter_type
9321 Specify which filter to use. This option accepts the following values:
9322
9323 @table @samp
9324 @item derain
9325 Derain filter. To conduct derain filter, you need to use a derain model.
9326
9327 @item dehaze
9328 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9329 @end table
9330 Default value is @samp{derain}.
9331
9332 @item dnn_backend
9333 Specify which DNN backend to use for model loading and execution. This option accepts
9334 the following values:
9335
9336 @table @samp
9337 @item native
9338 Native implementation of DNN loading and execution.
9339
9340 @item tensorflow
9341 TensorFlow backend. To enable this backend you
9342 need to install the TensorFlow for C library (see
9343 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9344 @code{--enable-libtensorflow}
9345 @end table
9346 Default value is @samp{native}.
9347
9348 @item model
9349 Set path to model file specifying network architecture and its parameters.
9350 Note that different backends use different file formats. TensorFlow and native
9351 backend can load files for only its format.
9352 @end table
9353
9354 It can also be finished with @ref{dnn_processing} filter.
9355
9356 @section deshake
9357
9358 Attempt to fix small changes in horizontal and/or vertical shift. This
9359 filter helps remove camera shake from hand-holding a camera, bumping a
9360 tripod, moving on a vehicle, etc.
9361
9362 The filter accepts the following options:
9363
9364 @table @option
9365
9366 @item x
9367 @item y
9368 @item w
9369 @item h
9370 Specify a rectangular area where to limit the search for motion
9371 vectors.
9372 If desired the search for motion vectors can be limited to a
9373 rectangular area of the frame defined by its top left corner, width
9374 and height. These parameters have the same meaning as the drawbox
9375 filter which can be used to visualise the position of the bounding
9376 box.
9377
9378 This is useful when simultaneous movement of subjects within the frame
9379 might be confused for camera motion by the motion vector search.
9380
9381 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9382 then the full frame is used. This allows later options to be set
9383 without specifying the bounding box for the motion vector search.
9384
9385 Default - search the whole frame.
9386
9387 @item rx
9388 @item ry
9389 Specify the maximum extent of movement in x and y directions in the
9390 range 0-64 pixels. Default 16.
9391
9392 @item edge
9393 Specify how to generate pixels to fill blanks at the edge of the
9394 frame. Available values are:
9395 @table @samp
9396 @item blank, 0
9397 Fill zeroes at blank locations
9398 @item original, 1
9399 Original image at blank locations
9400 @item clamp, 2
9401 Extruded edge value at blank locations
9402 @item mirror, 3
9403 Mirrored edge at blank locations
9404 @end table
9405 Default value is @samp{mirror}.
9406
9407 @item blocksize
9408 Specify the blocksize to use for motion search. Range 4-128 pixels,
9409 default 8.
9410
9411 @item contrast
9412 Specify the contrast threshold for blocks. Only blocks with more than
9413 the specified contrast (difference between darkest and lightest
9414 pixels) will be considered. Range 1-255, default 125.
9415
9416 @item search
9417 Specify the search strategy. Available values are:
9418 @table @samp
9419 @item exhaustive, 0
9420 Set exhaustive search
9421 @item less, 1
9422 Set less exhaustive search.
9423 @end table
9424 Default value is @samp{exhaustive}.
9425
9426 @item filename
9427 If set then a detailed log of the motion search is written to the
9428 specified file.
9429
9430 @end table
9431
9432 @section despill
9433
9434 Remove unwanted contamination of foreground colors, caused by reflected color of
9435 greenscreen or bluescreen.
9436
9437 This filter accepts the following options:
9438
9439 @table @option
9440 @item type
9441 Set what type of despill to use.
9442
9443 @item mix
9444 Set how spillmap will be generated.
9445
9446 @item expand
9447 Set how much to get rid of still remaining spill.
9448
9449 @item red
9450 Controls amount of red in spill area.
9451
9452 @item green
9453 Controls amount of green in spill area.
9454 Should be -1 for greenscreen.
9455
9456 @item blue
9457 Controls amount of blue in spill area.
9458 Should be -1 for bluescreen.
9459
9460 @item brightness
9461 Controls brightness of spill area, preserving colors.
9462
9463 @item alpha
9464 Modify alpha from generated spillmap.
9465 @end table
9466
9467 @subsection Commands
9468
9469 This filter supports the all above options as @ref{commands}.
9470
9471 @section detelecine
9472
9473 Apply an exact inverse of the telecine operation. It requires a predefined
9474 pattern specified using the pattern option which must be the same as that passed
9475 to the telecine filter.
9476
9477 This filter accepts the following options:
9478
9479 @table @option
9480 @item first_field
9481 @table @samp
9482 @item top, t
9483 top field first
9484 @item bottom, b
9485 bottom field first
9486 The default value is @code{top}.
9487 @end table
9488
9489 @item pattern
9490 A string of numbers representing the pulldown pattern you wish to apply.
9491 The default value is @code{23}.
9492
9493 @item start_frame
9494 A number representing position of the first frame with respect to the telecine
9495 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9496 @end table
9497
9498 @section dilation
9499
9500 Apply dilation effect to the video.
9501
9502 This filter replaces the pixel by the local(3x3) maximum.
9503
9504 It accepts the following options:
9505
9506 @table @option
9507 @item threshold0
9508 @item threshold1
9509 @item threshold2
9510 @item threshold3
9511 Limit the maximum change for each plane, default is 65535.
9512 If 0, plane will remain unchanged.
9513
9514 @item coordinates
9515 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9516 pixels are used.
9517
9518 Flags to local 3x3 coordinates maps like this:
9519
9520     1 2 3
9521     4   5
9522     6 7 8
9523 @end table
9524
9525 @subsection Commands
9526
9527 This filter supports the all above options as @ref{commands}.
9528
9529 @section displace
9530
9531 Displace pixels as indicated by second and third input stream.
9532
9533 It takes three input streams and outputs one stream, the first input is the
9534 source, and second and third input are displacement maps.
9535
9536 The second input specifies how much to displace pixels along the
9537 x-axis, while the third input specifies how much to displace pixels
9538 along the y-axis.
9539 If one of displacement map streams terminates, last frame from that
9540 displacement map will be used.
9541
9542 Note that once generated, displacements maps can be reused over and over again.
9543
9544 A description of the accepted options follows.
9545
9546 @table @option
9547 @item edge
9548 Set displace behavior for pixels that are out of range.
9549
9550 Available values are:
9551 @table @samp
9552 @item blank
9553 Missing pixels are replaced by black pixels.
9554
9555 @item smear
9556 Adjacent pixels will spread out to replace missing pixels.
9557
9558 @item wrap
9559 Out of range pixels are wrapped so they point to pixels of other side.
9560
9561 @item mirror
9562 Out of range pixels will be replaced with mirrored pixels.
9563 @end table
9564 Default is @samp{smear}.
9565
9566 @end table
9567
9568 @subsection Examples
9569
9570 @itemize
9571 @item
9572 Add ripple effect to rgb input of video size hd720:
9573 @example
9574 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
9575 @end example
9576
9577 @item
9578 Add wave effect to rgb input of video size hd720:
9579 @example
9580 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
9581 @end example
9582 @end itemize
9583
9584 @anchor{dnn_processing}
9585 @section dnn_processing
9586
9587 Do image processing with deep neural networks. It works together with another filter
9588 which converts the pixel format of the Frame to what the dnn network requires.
9589
9590 The filter accepts the following options:
9591
9592 @table @option
9593 @item dnn_backend
9594 Specify which DNN backend to use for model loading and execution. This option accepts
9595 the following values:
9596
9597 @table @samp
9598 @item native
9599 Native implementation of DNN loading and execution.
9600
9601 @item tensorflow
9602 TensorFlow backend. To enable this backend you
9603 need to install the TensorFlow for C library (see
9604 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9605 @code{--enable-libtensorflow}
9606
9607 @item openvino
9608 OpenVINO backend. To enable this backend you
9609 need to build and install the OpenVINO for C library (see
9610 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
9611 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
9612 be needed if the header files and libraries are not installed into system path)
9613
9614 @end table
9615
9616 Default value is @samp{native}.
9617
9618 @item model
9619 Set path to model file specifying network architecture and its parameters.
9620 Note that different backends use different file formats. TensorFlow, OpenVINO and native
9621 backend can load files for only its format.
9622
9623 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9624
9625 @item input
9626 Set the input name of the dnn network.
9627
9628 @item output
9629 Set the output name of the dnn network.
9630
9631 @end table
9632
9633 @subsection Examples
9634
9635 @itemize
9636 @item
9637 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
9638 @example
9639 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
9640 @end example
9641
9642 @item
9643 Halve the pixel value of the frame with format gray32f:
9644 @example
9645 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
9646 @end example
9647
9648 @item
9649 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
9650 @example
9651 ./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
9652 @end example
9653
9654 @item
9655 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
9656 @example
9657 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
9658 @end example
9659
9660 @end itemize
9661
9662 @section drawbox
9663
9664 Draw a colored box on the input image.
9665
9666 It accepts the following parameters:
9667
9668 @table @option
9669 @item x
9670 @item y
9671 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
9672
9673 @item width, w
9674 @item height, h
9675 The expressions which specify the width and height of the box; if 0 they are interpreted as
9676 the input width and height. It defaults to 0.
9677
9678 @item color, c
9679 Specify the color of the box to write. For the general syntax of this option,
9680 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9681 value @code{invert} is used, the box edge color is the same as the
9682 video with inverted luma.
9683
9684 @item thickness, t
9685 The expression which sets the thickness of the box edge.
9686 A value of @code{fill} will create a filled box. Default value is @code{3}.
9687
9688 See below for the list of accepted constants.
9689
9690 @item replace
9691 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
9692 will overwrite the video's color and alpha pixels.
9693 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
9694 @end table
9695
9696 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9697 following constants:
9698
9699 @table @option
9700 @item dar
9701 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9702
9703 @item hsub
9704 @item vsub
9705 horizontal and vertical chroma subsample values. For example for the
9706 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9707
9708 @item in_h, ih
9709 @item in_w, iw
9710 The input width and height.
9711
9712 @item sar
9713 The input sample aspect ratio.
9714
9715 @item x
9716 @item y
9717 The x and y offset coordinates where the box is drawn.
9718
9719 @item w
9720 @item h
9721 The width and height of the drawn box.
9722
9723 @item t
9724 The thickness of the drawn box.
9725
9726 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9727 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9728
9729 @end table
9730
9731 @subsection Examples
9732
9733 @itemize
9734 @item
9735 Draw a black box around the edge of the input image:
9736 @example
9737 drawbox
9738 @end example
9739
9740 @item
9741 Draw a box with color red and an opacity of 50%:
9742 @example
9743 drawbox=10:20:200:60:red@@0.5
9744 @end example
9745
9746 The previous example can be specified as:
9747 @example
9748 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
9749 @end example
9750
9751 @item
9752 Fill the box with pink color:
9753 @example
9754 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
9755 @end example
9756
9757 @item
9758 Draw a 2-pixel red 2.40:1 mask:
9759 @example
9760 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
9761 @end example
9762 @end itemize
9763
9764 @subsection Commands
9765 This filter supports same commands as options.
9766 The command accepts the same syntax of the corresponding option.
9767
9768 If the specified expression is not valid, it is kept at its current
9769 value.
9770
9771 @anchor{drawgraph}
9772 @section drawgraph
9773 Draw a graph using input video metadata.
9774
9775 It accepts the following parameters:
9776
9777 @table @option
9778 @item m1
9779 Set 1st frame metadata key from which metadata values will be used to draw a graph.
9780
9781 @item fg1
9782 Set 1st foreground color expression.
9783
9784 @item m2
9785 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
9786
9787 @item fg2
9788 Set 2nd foreground color expression.
9789
9790 @item m3
9791 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
9792
9793 @item fg3
9794 Set 3rd foreground color expression.
9795
9796 @item m4
9797 Set 4th frame metadata key from which metadata values will be used to draw a graph.
9798
9799 @item fg4
9800 Set 4th foreground color expression.
9801
9802 @item min
9803 Set minimal value of metadata value.
9804
9805 @item max
9806 Set maximal value of metadata value.
9807
9808 @item bg
9809 Set graph background color. Default is white.
9810
9811 @item mode
9812 Set graph mode.
9813
9814 Available values for mode is:
9815 @table @samp
9816 @item bar
9817 @item dot
9818 @item line
9819 @end table
9820
9821 Default is @code{line}.
9822
9823 @item slide
9824 Set slide mode.
9825
9826 Available values for slide is:
9827 @table @samp
9828 @item frame
9829 Draw new frame when right border is reached.
9830
9831 @item replace
9832 Replace old columns with new ones.
9833
9834 @item scroll
9835 Scroll from right to left.
9836
9837 @item rscroll
9838 Scroll from left to right.
9839
9840 @item picture
9841 Draw single picture.
9842 @end table
9843
9844 Default is @code{frame}.
9845
9846 @item size
9847 Set size of graph video. For the syntax of this option, check the
9848 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9849 The default value is @code{900x256}.
9850
9851 @item rate, r
9852 Set the output frame rate. Default value is @code{25}.
9853
9854 The foreground color expressions can use the following variables:
9855 @table @option
9856 @item MIN
9857 Minimal value of metadata value.
9858
9859 @item MAX
9860 Maximal value of metadata value.
9861
9862 @item VAL
9863 Current metadata key value.
9864 @end table
9865
9866 The color is defined as 0xAABBGGRR.
9867 @end table
9868
9869 Example using metadata from @ref{signalstats} filter:
9870 @example
9871 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
9872 @end example
9873
9874 Example using metadata from @ref{ebur128} filter:
9875 @example
9876 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
9877 @end example
9878
9879 @section drawgrid
9880
9881 Draw a grid on the input image.
9882
9883 It accepts the following parameters:
9884
9885 @table @option
9886 @item x
9887 @item y
9888 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
9889
9890 @item width, w
9891 @item height, h
9892 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
9893 input width and height, respectively, minus @code{thickness}, so image gets
9894 framed. Default to 0.
9895
9896 @item color, c
9897 Specify the color of the grid. For the general syntax of this option,
9898 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9899 value @code{invert} is used, the grid color is the same as the
9900 video with inverted luma.
9901
9902 @item thickness, t
9903 The expression which sets the thickness of the grid line. Default value is @code{1}.
9904
9905 See below for the list of accepted constants.
9906
9907 @item replace
9908 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
9909 will overwrite the video's color and alpha pixels.
9910 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
9911 @end table
9912
9913 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9914 following constants:
9915
9916 @table @option
9917 @item dar
9918 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9919
9920 @item hsub
9921 @item vsub
9922 horizontal and vertical chroma subsample values. For example for the
9923 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9924
9925 @item in_h, ih
9926 @item in_w, iw
9927 The input grid cell width and height.
9928
9929 @item sar
9930 The input sample aspect ratio.
9931
9932 @item x
9933 @item y
9934 The x and y coordinates of some point of grid intersection (meant to configure offset).
9935
9936 @item w
9937 @item h
9938 The width and height of the drawn cell.
9939
9940 @item t
9941 The thickness of the drawn cell.
9942
9943 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9944 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9945
9946 @end table
9947
9948 @subsection Examples
9949
9950 @itemize
9951 @item
9952 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
9953 @example
9954 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
9955 @end example
9956
9957 @item
9958 Draw a white 3x3 grid with an opacity of 50%:
9959 @example
9960 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
9961 @end example
9962 @end itemize
9963
9964 @subsection Commands
9965 This filter supports same commands as options.
9966 The command accepts the same syntax of the corresponding option.
9967
9968 If the specified expression is not valid, it is kept at its current
9969 value.
9970
9971 @anchor{drawtext}
9972 @section drawtext
9973
9974 Draw a text string or text from a specified file on top of a video, using the
9975 libfreetype library.
9976
9977 To enable compilation of this filter, you need to configure FFmpeg with
9978 @code{--enable-libfreetype}.
9979 To enable default font fallback and the @var{font} option you need to
9980 configure FFmpeg with @code{--enable-libfontconfig}.
9981 To enable the @var{text_shaping} option, you need to configure FFmpeg with
9982 @code{--enable-libfribidi}.
9983
9984 @subsection Syntax
9985
9986 It accepts the following parameters:
9987
9988 @table @option
9989
9990 @item box
9991 Used to draw a box around text using the background color.
9992 The value must be either 1 (enable) or 0 (disable).
9993 The default value of @var{box} is 0.
9994
9995 @item boxborderw
9996 Set the width of the border to be drawn around the box using @var{boxcolor}.
9997 The default value of @var{boxborderw} is 0.
9998
9999 @item boxcolor
10000 The color to be used for drawing box around text. For the syntax of this
10001 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10002
10003 The default value of @var{boxcolor} is "white".
10004
10005 @item line_spacing
10006 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10007 The default value of @var{line_spacing} is 0.
10008
10009 @item borderw
10010 Set the width of the border to be drawn around the text using @var{bordercolor}.
10011 The default value of @var{borderw} is 0.
10012
10013 @item bordercolor
10014 Set the color to be used for drawing border around text. For the syntax of this
10015 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10016
10017 The default value of @var{bordercolor} is "black".
10018
10019 @item expansion
10020 Select how the @var{text} is expanded. Can be either @code{none},
10021 @code{strftime} (deprecated) or
10022 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10023 below for details.
10024
10025 @item basetime
10026 Set a start time for the count. Value is in microseconds. Only applied
10027 in the deprecated strftime expansion mode. To emulate in normal expansion
10028 mode use the @code{pts} function, supplying the start time (in seconds)
10029 as the second argument.
10030
10031 @item fix_bounds
10032 If true, check and fix text coords to avoid clipping.
10033
10034 @item fontcolor
10035 The color to be used for drawing fonts. For the syntax of this option, check
10036 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10037
10038 The default value of @var{fontcolor} is "black".
10039
10040 @item fontcolor_expr
10041 String which is expanded the same way as @var{text} to obtain dynamic
10042 @var{fontcolor} value. By default this option has empty value and is not
10043 processed. When this option is set, it overrides @var{fontcolor} option.
10044
10045 @item font
10046 The font family to be used for drawing text. By default Sans.
10047
10048 @item fontfile
10049 The font file to be used for drawing text. The path must be included.
10050 This parameter is mandatory if the fontconfig support is disabled.
10051
10052 @item alpha
10053 Draw the text applying alpha blending. The value can
10054 be a number between 0.0 and 1.0.
10055 The expression accepts the same variables @var{x, y} as well.
10056 The default value is 1.
10057 Please see @var{fontcolor_expr}.
10058
10059 @item fontsize
10060 The font size to be used for drawing text.
10061 The default value of @var{fontsize} is 16.
10062
10063 @item text_shaping
10064 If set to 1, attempt to shape the text (for example, reverse the order of
10065 right-to-left text and join Arabic characters) before drawing it.
10066 Otherwise, just draw the text exactly as given.
10067 By default 1 (if supported).
10068
10069 @item ft_load_flags
10070 The flags to be used for loading the fonts.
10071
10072 The flags map the corresponding flags supported by libfreetype, and are
10073 a combination of the following values:
10074 @table @var
10075 @item default
10076 @item no_scale
10077 @item no_hinting
10078 @item render
10079 @item no_bitmap
10080 @item vertical_layout
10081 @item force_autohint
10082 @item crop_bitmap
10083 @item pedantic
10084 @item ignore_global_advance_width
10085 @item no_recurse
10086 @item ignore_transform
10087 @item monochrome
10088 @item linear_design
10089 @item no_autohint
10090 @end table
10091
10092 Default value is "default".
10093
10094 For more information consult the documentation for the FT_LOAD_*
10095 libfreetype flags.
10096
10097 @item shadowcolor
10098 The color to be used for drawing a shadow behind the drawn text. For the
10099 syntax of this option, check the @ref{color syntax,,"Color" section in the
10100 ffmpeg-utils manual,ffmpeg-utils}.
10101
10102 The default value of @var{shadowcolor} is "black".
10103
10104 @item shadowx
10105 @item shadowy
10106 The x and y offsets for the text shadow position with respect to the
10107 position of the text. They can be either positive or negative
10108 values. The default value for both is "0".
10109
10110 @item start_number
10111 The starting frame number for the n/frame_num variable. The default value
10112 is "0".
10113
10114 @item tabsize
10115 The size in number of spaces to use for rendering the tab.
10116 Default value is 4.
10117
10118 @item timecode
10119 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10120 format. It can be used with or without text parameter. @var{timecode_rate}
10121 option must be specified.
10122
10123 @item timecode_rate, rate, r
10124 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10125 integer. Minimum value is "1".
10126 Drop-frame timecode is supported for frame rates 30 & 60.
10127
10128 @item tc24hmax
10129 If set to 1, the output of the timecode option will wrap around at 24 hours.
10130 Default is 0 (disabled).
10131
10132 @item text
10133 The text string to be drawn. The text must be a sequence of UTF-8
10134 encoded characters.
10135 This parameter is mandatory if no file is specified with the parameter
10136 @var{textfile}.
10137
10138 @item textfile
10139 A text file containing text to be drawn. The text must be a sequence
10140 of UTF-8 encoded characters.
10141
10142 This parameter is mandatory if no text string is specified with the
10143 parameter @var{text}.
10144
10145 If both @var{text} and @var{textfile} are specified, an error is thrown.
10146
10147 @item reload
10148 If set to 1, the @var{textfile} will be reloaded before each frame.
10149 Be sure to update it atomically, or it may be read partially, or even fail.
10150
10151 @item x
10152 @item y
10153 The expressions which specify the offsets where text will be drawn
10154 within the video frame. They are relative to the top/left border of the
10155 output image.
10156
10157 The default value of @var{x} and @var{y} is "0".
10158
10159 See below for the list of accepted constants and functions.
10160 @end table
10161
10162 The parameters for @var{x} and @var{y} are expressions containing the
10163 following constants and functions:
10164
10165 @table @option
10166 @item dar
10167 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10168
10169 @item hsub
10170 @item vsub
10171 horizontal and vertical chroma subsample values. For example for the
10172 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10173
10174 @item line_h, lh
10175 the height of each text line
10176
10177 @item main_h, h, H
10178 the input height
10179
10180 @item main_w, w, W
10181 the input width
10182
10183 @item max_glyph_a, ascent
10184 the maximum distance from the baseline to the highest/upper grid
10185 coordinate used to place a glyph outline point, for all the rendered
10186 glyphs.
10187 It is a positive value, due to the grid's orientation with the Y axis
10188 upwards.
10189
10190 @item max_glyph_d, descent
10191 the maximum distance from the baseline to the lowest grid coordinate
10192 used to place a glyph outline point, for all the rendered glyphs.
10193 This is a negative value, due to the grid's orientation, with the Y axis
10194 upwards.
10195
10196 @item max_glyph_h
10197 maximum glyph height, that is the maximum height for all the glyphs
10198 contained in the rendered text, it is equivalent to @var{ascent} -
10199 @var{descent}.
10200
10201 @item max_glyph_w
10202 maximum glyph width, that is the maximum width for all the glyphs
10203 contained in the rendered text
10204
10205 @item n
10206 the number of input frame, starting from 0
10207
10208 @item rand(min, max)
10209 return a random number included between @var{min} and @var{max}
10210
10211 @item sar
10212 The input sample aspect ratio.
10213
10214 @item t
10215 timestamp expressed in seconds, NAN if the input timestamp is unknown
10216
10217 @item text_h, th
10218 the height of the rendered text
10219
10220 @item text_w, tw
10221 the width of the rendered text
10222
10223 @item x
10224 @item y
10225 the x and y offset coordinates where the text is drawn.
10226
10227 These parameters allow the @var{x} and @var{y} expressions to refer
10228 to each other, so you can for example specify @code{y=x/dar}.
10229
10230 @item pict_type
10231 A one character description of the current frame's picture type.
10232
10233 @item pkt_pos
10234 The current packet's position in the input file or stream
10235 (in bytes, from the start of the input). A value of -1 indicates
10236 this info is not available.
10237
10238 @item pkt_duration
10239 The current packet's duration, in seconds.
10240
10241 @item pkt_size
10242 The current packet's size (in bytes).
10243 @end table
10244
10245 @anchor{drawtext_expansion}
10246 @subsection Text expansion
10247
10248 If @option{expansion} is set to @code{strftime},
10249 the filter recognizes strftime() sequences in the provided text and
10250 expands them accordingly. Check the documentation of strftime(). This
10251 feature is deprecated.
10252
10253 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10254
10255 If @option{expansion} is set to @code{normal} (which is the default),
10256 the following expansion mechanism is used.
10257
10258 The backslash character @samp{\}, followed by any character, always expands to
10259 the second character.
10260
10261 Sequences of the form @code{%@{...@}} are expanded. The text between the
10262 braces is a function name, possibly followed by arguments separated by ':'.
10263 If the arguments contain special characters or delimiters (':' or '@}'),
10264 they should be escaped.
10265
10266 Note that they probably must also be escaped as the value for the
10267 @option{text} option in the filter argument string and as the filter
10268 argument in the filtergraph description, and possibly also for the shell,
10269 that makes up to four levels of escaping; using a text file avoids these
10270 problems.
10271
10272 The following functions are available:
10273
10274 @table @command
10275
10276 @item expr, e
10277 The expression evaluation result.
10278
10279 It must take one argument specifying the expression to be evaluated,
10280 which accepts the same constants and functions as the @var{x} and
10281 @var{y} values. Note that not all constants should be used, for
10282 example the text size is not known when evaluating the expression, so
10283 the constants @var{text_w} and @var{text_h} will have an undefined
10284 value.
10285
10286 @item expr_int_format, eif
10287 Evaluate the expression's value and output as formatted integer.
10288
10289 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10290 The second argument specifies the output format. Allowed values are @samp{x},
10291 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10292 @code{printf} function.
10293 The third parameter is optional and sets the number of positions taken by the output.
10294 It can be used to add padding with zeros from the left.
10295
10296 @item gmtime
10297 The time at which the filter is running, expressed in UTC.
10298 It can accept an argument: a strftime() format string.
10299
10300 @item localtime
10301 The time at which the filter is running, expressed in the local time zone.
10302 It can accept an argument: a strftime() format string.
10303
10304 @item metadata
10305 Frame metadata. Takes one or two arguments.
10306
10307 The first argument is mandatory and specifies the metadata key.
10308
10309 The second argument is optional and specifies a default value, used when the
10310 metadata key is not found or empty.
10311
10312 Available metadata can be identified by inspecting entries
10313 starting with TAG included within each frame section
10314 printed by running @code{ffprobe -show_frames}.
10315
10316 String metadata generated in filters leading to
10317 the drawtext filter are also available.
10318
10319 @item n, frame_num
10320 The frame number, starting from 0.
10321
10322 @item pict_type
10323 A one character description of the current picture type.
10324
10325 @item pts
10326 The timestamp of the current frame.
10327 It can take up to three arguments.
10328
10329 The first argument is the format of the timestamp; it defaults to @code{flt}
10330 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10331 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10332 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10333 @code{localtime} stands for the timestamp of the frame formatted as
10334 local time zone time.
10335
10336 The second argument is an offset added to the timestamp.
10337
10338 If the format is set to @code{hms}, a third argument @code{24HH} may be
10339 supplied to present the hour part of the formatted timestamp in 24h format
10340 (00-23).
10341
10342 If the format is set to @code{localtime} or @code{gmtime},
10343 a third argument may be supplied: a strftime() format string.
10344 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10345 @end table
10346
10347 @subsection Commands
10348
10349 This filter supports altering parameters via commands:
10350 @table @option
10351 @item reinit
10352 Alter existing filter parameters.
10353
10354 Syntax for the argument is the same as for filter invocation, e.g.
10355
10356 @example
10357 fontsize=56:fontcolor=green:text='Hello World'
10358 @end example
10359
10360 Full filter invocation with sendcmd would look like this:
10361
10362 @example
10363 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10364 @end example
10365 @end table
10366
10367 If the entire argument can't be parsed or applied as valid values then the filter will
10368 continue with its existing parameters.
10369
10370 @subsection Examples
10371
10372 @itemize
10373 @item
10374 Draw "Test Text" with font FreeSerif, using the default values for the
10375 optional parameters.
10376
10377 @example
10378 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10379 @end example
10380
10381 @item
10382 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10383 and y=50 (counting from the top-left corner of the screen), text is
10384 yellow with a red box around it. Both the text and the box have an
10385 opacity of 20%.
10386
10387 @example
10388 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10389           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10390 @end example
10391
10392 Note that the double quotes are not necessary if spaces are not used
10393 within the parameter list.
10394
10395 @item
10396 Show the text at the center of the video frame:
10397 @example
10398 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10399 @end example
10400
10401 @item
10402 Show the text at a random position, switching to a new position every 30 seconds:
10403 @example
10404 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)"
10405 @end example
10406
10407 @item
10408 Show a text line sliding from right to left in the last row of the video
10409 frame. The file @file{LONG_LINE} is assumed to contain a single line
10410 with no newlines.
10411 @example
10412 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10413 @end example
10414
10415 @item
10416 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10417 @example
10418 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10419 @end example
10420
10421 @item
10422 Draw a single green letter "g", at the center of the input video.
10423 The glyph baseline is placed at half screen height.
10424 @example
10425 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10426 @end example
10427
10428 @item
10429 Show text for 1 second every 3 seconds:
10430 @example
10431 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10432 @end example
10433
10434 @item
10435 Use fontconfig to set the font. Note that the colons need to be escaped.
10436 @example
10437 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10438 @end example
10439
10440 @item
10441 Draw "Test Text" with font size dependent on height of the video.
10442 @example
10443 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
10444 @end example
10445
10446 @item
10447 Print the date of a real-time encoding (see strftime(3)):
10448 @example
10449 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10450 @end example
10451
10452 @item
10453 Show text fading in and out (appearing/disappearing):
10454 @example
10455 #!/bin/sh
10456 DS=1.0 # display start
10457 DE=10.0 # display end
10458 FID=1.5 # fade in duration
10459 FOD=5 # fade out duration
10460 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 @}"
10461 @end example
10462
10463 @item
10464 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10465 and the @option{fontsize} value are included in the @option{y} offset.
10466 @example
10467 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10468 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10469 @end example
10470
10471 @item
10472 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10473 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10474 must have option @option{-export_path_metadata 1} for the special metadata fields
10475 to be available for filters.
10476 @example
10477 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10478 @end example
10479
10480 @end itemize
10481
10482 For more information about libfreetype, check:
10483 @url{http://www.freetype.org/}.
10484
10485 For more information about fontconfig, check:
10486 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10487
10488 For more information about libfribidi, check:
10489 @url{http://fribidi.org/}.
10490
10491 @section edgedetect
10492
10493 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10494
10495 The filter accepts the following options:
10496
10497 @table @option
10498 @item low
10499 @item high
10500 Set low and high threshold values used by the Canny thresholding
10501 algorithm.
10502
10503 The high threshold selects the "strong" edge pixels, which are then
10504 connected through 8-connectivity with the "weak" edge pixels selected
10505 by the low threshold.
10506
10507 @var{low} and @var{high} threshold values must be chosen in the range
10508 [0,1], and @var{low} should be lesser or equal to @var{high}.
10509
10510 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10511 is @code{50/255}.
10512
10513 @item mode
10514 Define the drawing mode.
10515
10516 @table @samp
10517 @item wires
10518 Draw white/gray wires on black background.
10519
10520 @item colormix
10521 Mix the colors to create a paint/cartoon effect.
10522
10523 @item canny
10524 Apply Canny edge detector on all selected planes.
10525 @end table
10526 Default value is @var{wires}.
10527
10528 @item planes
10529 Select planes for filtering. By default all available planes are filtered.
10530 @end table
10531
10532 @subsection Examples
10533
10534 @itemize
10535 @item
10536 Standard edge detection with custom values for the hysteresis thresholding:
10537 @example
10538 edgedetect=low=0.1:high=0.4
10539 @end example
10540
10541 @item
10542 Painting effect without thresholding:
10543 @example
10544 edgedetect=mode=colormix:high=0
10545 @end example
10546 @end itemize
10547
10548 @section elbg
10549
10550 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10551
10552 For each input image, the filter will compute the optimal mapping from
10553 the input to the output given the codebook length, that is the number
10554 of distinct output colors.
10555
10556 This filter accepts the following options.
10557
10558 @table @option
10559 @item codebook_length, l
10560 Set codebook length. The value must be a positive integer, and
10561 represents the number of distinct output colors. Default value is 256.
10562
10563 @item nb_steps, n
10564 Set the maximum number of iterations to apply for computing the optimal
10565 mapping. The higher the value the better the result and the higher the
10566 computation time. Default value is 1.
10567
10568 @item seed, s
10569 Set a random seed, must be an integer included between 0 and
10570 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10571 will try to use a good random seed on a best effort basis.
10572
10573 @item pal8
10574 Set pal8 output pixel format. This option does not work with codebook
10575 length greater than 256.
10576 @end table
10577
10578 @section entropy
10579
10580 Measure graylevel entropy in histogram of color channels of video frames.
10581
10582 It accepts the following parameters:
10583
10584 @table @option
10585 @item mode
10586 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10587
10588 @var{diff} mode measures entropy of histogram delta values, absolute differences
10589 between neighbour histogram values.
10590 @end table
10591
10592 @section eq
10593 Set brightness, contrast, saturation and approximate gamma adjustment.
10594
10595 The filter accepts the following options:
10596
10597 @table @option
10598 @item contrast
10599 Set the contrast expression. The value must be a float value in range
10600 @code{-1000.0} to @code{1000.0}. The default value is "1".
10601
10602 @item brightness
10603 Set the brightness expression. The value must be a float value in
10604 range @code{-1.0} to @code{1.0}. The default value is "0".
10605
10606 @item saturation
10607 Set the saturation expression. The value must be a float in
10608 range @code{0.0} to @code{3.0}. The default value is "1".
10609
10610 @item gamma
10611 Set the gamma expression. The value must be a float in range
10612 @code{0.1} to @code{10.0}.  The default value is "1".
10613
10614 @item gamma_r
10615 Set the gamma expression for red. The value must be a float in
10616 range @code{0.1} to @code{10.0}. The default value is "1".
10617
10618 @item gamma_g
10619 Set the gamma expression for green. The value must be a float in range
10620 @code{0.1} to @code{10.0}. The default value is "1".
10621
10622 @item gamma_b
10623 Set the gamma expression for blue. The value must be a float in range
10624 @code{0.1} to @code{10.0}. The default value is "1".
10625
10626 @item gamma_weight
10627 Set the gamma weight expression. It can be used to reduce the effect
10628 of a high gamma value on bright image areas, e.g. keep them from
10629 getting overamplified and just plain white. The value must be a float
10630 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10631 gamma correction all the way down while @code{1.0} leaves it at its
10632 full strength. Default is "1".
10633
10634 @item eval
10635 Set when the expressions for brightness, contrast, saturation and
10636 gamma expressions are evaluated.
10637
10638 It accepts the following values:
10639 @table @samp
10640 @item init
10641 only evaluate expressions once during the filter initialization or
10642 when a command is processed
10643
10644 @item frame
10645 evaluate expressions for each incoming frame
10646 @end table
10647
10648 Default value is @samp{init}.
10649 @end table
10650
10651 The expressions accept the following parameters:
10652 @table @option
10653 @item n
10654 frame count of the input frame starting from 0
10655
10656 @item pos
10657 byte position of the corresponding packet in the input file, NAN if
10658 unspecified
10659
10660 @item r
10661 frame rate of the input video, NAN if the input frame rate is unknown
10662
10663 @item t
10664 timestamp expressed in seconds, NAN if the input timestamp is unknown
10665 @end table
10666
10667 @subsection Commands
10668 The filter supports the following commands:
10669
10670 @table @option
10671 @item contrast
10672 Set the contrast expression.
10673
10674 @item brightness
10675 Set the brightness expression.
10676
10677 @item saturation
10678 Set the saturation expression.
10679
10680 @item gamma
10681 Set the gamma expression.
10682
10683 @item gamma_r
10684 Set the gamma_r expression.
10685
10686 @item gamma_g
10687 Set gamma_g expression.
10688
10689 @item gamma_b
10690 Set gamma_b expression.
10691
10692 @item gamma_weight
10693 Set gamma_weight expression.
10694
10695 The command accepts the same syntax of the corresponding option.
10696
10697 If the specified expression is not valid, it is kept at its current
10698 value.
10699
10700 @end table
10701
10702 @section erosion
10703
10704 Apply erosion effect to the video.
10705
10706 This filter replaces the pixel by the local(3x3) minimum.
10707
10708 It accepts the following options:
10709
10710 @table @option
10711 @item threshold0
10712 @item threshold1
10713 @item threshold2
10714 @item threshold3
10715 Limit the maximum change for each plane, default is 65535.
10716 If 0, plane will remain unchanged.
10717
10718 @item coordinates
10719 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
10720 pixels are used.
10721
10722 Flags to local 3x3 coordinates maps like this:
10723
10724     1 2 3
10725     4   5
10726     6 7 8
10727 @end table
10728
10729 @subsection Commands
10730
10731 This filter supports the all above options as @ref{commands}.
10732
10733 @section extractplanes
10734
10735 Extract color channel components from input video stream into
10736 separate grayscale video streams.
10737
10738 The filter accepts the following option:
10739
10740 @table @option
10741 @item planes
10742 Set plane(s) to extract.
10743
10744 Available values for planes are:
10745 @table @samp
10746 @item y
10747 @item u
10748 @item v
10749 @item a
10750 @item r
10751 @item g
10752 @item b
10753 @end table
10754
10755 Choosing planes not available in the input will result in an error.
10756 That means you cannot select @code{r}, @code{g}, @code{b} planes
10757 with @code{y}, @code{u}, @code{v} planes at same time.
10758 @end table
10759
10760 @subsection Examples
10761
10762 @itemize
10763 @item
10764 Extract luma, u and v color channel component from input video frame
10765 into 3 grayscale outputs:
10766 @example
10767 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
10768 @end example
10769 @end itemize
10770
10771 @section fade
10772
10773 Apply a fade-in/out effect to the input video.
10774
10775 It accepts the following parameters:
10776
10777 @table @option
10778 @item type, t
10779 The effect type can be either "in" for a fade-in, or "out" for a fade-out
10780 effect.
10781 Default is @code{in}.
10782
10783 @item start_frame, s
10784 Specify the number of the frame to start applying the fade
10785 effect at. Default is 0.
10786
10787 @item nb_frames, n
10788 The number of frames that the fade effect lasts. At the end of the
10789 fade-in effect, the output video will have the same intensity as the input video.
10790 At the end of the fade-out transition, the output video will be filled with the
10791 selected @option{color}.
10792 Default is 25.
10793
10794 @item alpha
10795 If set to 1, fade only alpha channel, if one exists on the input.
10796 Default value is 0.
10797
10798 @item start_time, st
10799 Specify the timestamp (in seconds) of the frame to start to apply the fade
10800 effect. If both start_frame and start_time are specified, the fade will start at
10801 whichever comes last.  Default is 0.
10802
10803 @item duration, d
10804 The number of seconds for which the fade effect has to last. At the end of the
10805 fade-in effect the output video will have the same intensity as the input video,
10806 at the end of the fade-out transition the output video will be filled with the
10807 selected @option{color}.
10808 If both duration and nb_frames are specified, duration is used. Default is 0
10809 (nb_frames is used by default).
10810
10811 @item color, c
10812 Specify the color of the fade. Default is "black".
10813 @end table
10814
10815 @subsection Examples
10816
10817 @itemize
10818 @item
10819 Fade in the first 30 frames of video:
10820 @example
10821 fade=in:0:30
10822 @end example
10823
10824 The command above is equivalent to:
10825 @example
10826 fade=t=in:s=0:n=30
10827 @end example
10828
10829 @item
10830 Fade out the last 45 frames of a 200-frame video:
10831 @example
10832 fade=out:155:45
10833 fade=type=out:start_frame=155:nb_frames=45
10834 @end example
10835
10836 @item
10837 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
10838 @example
10839 fade=in:0:25, fade=out:975:25
10840 @end example
10841
10842 @item
10843 Make the first 5 frames yellow, then fade in from frame 5-24:
10844 @example
10845 fade=in:5:20:color=yellow
10846 @end example
10847
10848 @item
10849 Fade in alpha over first 25 frames of video:
10850 @example
10851 fade=in:0:25:alpha=1
10852 @end example
10853
10854 @item
10855 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
10856 @example
10857 fade=t=in:st=5.5:d=0.5
10858 @end example
10859
10860 @end itemize
10861
10862 @section fftdnoiz
10863 Denoise frames using 3D FFT (frequency domain filtering).
10864
10865 The filter accepts the following options:
10866
10867 @table @option
10868 @item sigma
10869 Set the noise sigma constant. This sets denoising strength.
10870 Default value is 1. Allowed range is from 0 to 30.
10871 Using very high sigma with low overlap may give blocking artifacts.
10872
10873 @item amount
10874 Set amount of denoising. By default all detected noise is reduced.
10875 Default value is 1. Allowed range is from 0 to 1.
10876
10877 @item block
10878 Set size of block, Default is 4, can be 3, 4, 5 or 6.
10879 Actual size of block in pixels is 2 to power of @var{block}, so by default
10880 block size in pixels is 2^4 which is 16.
10881
10882 @item overlap
10883 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
10884
10885 @item prev
10886 Set number of previous frames to use for denoising. By default is set to 0.
10887
10888 @item next
10889 Set number of next frames to to use for denoising. By default is set to 0.
10890
10891 @item planes
10892 Set planes which will be filtered, by default are all available filtered
10893 except alpha.
10894 @end table
10895
10896 @section fftfilt
10897 Apply arbitrary expressions to samples in frequency domain
10898
10899 @table @option
10900 @item dc_Y
10901 Adjust the dc value (gain) of the luma plane of the image. The filter
10902 accepts an integer value in range @code{0} to @code{1000}. The default
10903 value is set to @code{0}.
10904
10905 @item dc_U
10906 Adjust the dc value (gain) of the 1st chroma plane of the image. The
10907 filter accepts an integer value in range @code{0} to @code{1000}. The
10908 default value is set to @code{0}.
10909
10910 @item dc_V
10911 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
10912 filter accepts an integer value in range @code{0} to @code{1000}. The
10913 default value is set to @code{0}.
10914
10915 @item weight_Y
10916 Set the frequency domain weight expression for the luma plane.
10917
10918 @item weight_U
10919 Set the frequency domain weight expression for the 1st chroma plane.
10920
10921 @item weight_V
10922 Set the frequency domain weight expression for the 2nd chroma plane.
10923
10924 @item eval
10925 Set when the expressions are evaluated.
10926
10927 It accepts the following values:
10928 @table @samp
10929 @item init
10930 Only evaluate expressions once during the filter initialization.
10931
10932 @item frame
10933 Evaluate expressions for each incoming frame.
10934 @end table
10935
10936 Default value is @samp{init}.
10937
10938 The filter accepts the following variables:
10939 @item X
10940 @item Y
10941 The coordinates of the current sample.
10942
10943 @item W
10944 @item H
10945 The width and height of the image.
10946
10947 @item N
10948 The number of input frame, starting from 0.
10949 @end table
10950
10951 @subsection Examples
10952
10953 @itemize
10954 @item
10955 High-pass:
10956 @example
10957 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
10958 @end example
10959
10960 @item
10961 Low-pass:
10962 @example
10963 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
10964 @end example
10965
10966 @item
10967 Sharpen:
10968 @example
10969 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
10970 @end example
10971
10972 @item
10973 Blur:
10974 @example
10975 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
10976 @end example
10977
10978 @end itemize
10979
10980 @section field
10981
10982 Extract a single field from an interlaced image using stride
10983 arithmetic to avoid wasting CPU time. The output frames are marked as
10984 non-interlaced.
10985
10986 The filter accepts the following options:
10987
10988 @table @option
10989 @item type
10990 Specify whether to extract the top (if the value is @code{0} or
10991 @code{top}) or the bottom field (if the value is @code{1} or
10992 @code{bottom}).
10993 @end table
10994
10995 @section fieldhint
10996
10997 Create new frames by copying the top and bottom fields from surrounding frames
10998 supplied as numbers by the hint file.
10999
11000 @table @option
11001 @item hint
11002 Set file containing hints: absolute/relative frame numbers.
11003
11004 There must be one line for each frame in a clip. Each line must contain two
11005 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11006 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11007 is current frame number for @code{absolute} mode or out of [-1, 1] range
11008 for @code{relative} mode. First number tells from which frame to pick up top
11009 field and second number tells from which frame to pick up bottom field.
11010
11011 If optionally followed by @code{+} output frame will be marked as interlaced,
11012 else if followed by @code{-} output frame will be marked as progressive, else
11013 it will be marked same as input frame.
11014 If optionally followed by @code{t} output frame will use only top field, or in
11015 case of @code{b} it will use only bottom field.
11016 If line starts with @code{#} or @code{;} that line is skipped.
11017
11018 @item mode
11019 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11020 @end table
11021
11022 Example of first several lines of @code{hint} file for @code{relative} mode:
11023 @example
11024 0,0 - # first frame
11025 1,0 - # second frame, use third's frame top field and second's frame bottom field
11026 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11027 1,0 -
11028 0,0 -
11029 0,0 -
11030 1,0 -
11031 1,0 -
11032 1,0 -
11033 0,0 -
11034 0,0 -
11035 1,0 -
11036 1,0 -
11037 1,0 -
11038 0,0 -
11039 @end example
11040
11041 @section fieldmatch
11042
11043 Field matching filter for inverse telecine. It is meant to reconstruct the
11044 progressive frames from a telecined stream. The filter does not drop duplicated
11045 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11046 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11047
11048 The separation of the field matching and the decimation is notably motivated by
11049 the possibility of inserting a de-interlacing filter fallback between the two.
11050 If the source has mixed telecined and real interlaced content,
11051 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11052 But these remaining combed frames will be marked as interlaced, and thus can be
11053 de-interlaced by a later filter such as @ref{yadif} before decimation.
11054
11055 In addition to the various configuration options, @code{fieldmatch} can take an
11056 optional second stream, activated through the @option{ppsrc} option. If
11057 enabled, the frames reconstruction will be based on the fields and frames from
11058 this second stream. This allows the first input to be pre-processed in order to
11059 help the various algorithms of the filter, while keeping the output lossless
11060 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11061 or brightness/contrast adjustments can help.
11062
11063 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11064 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11065 which @code{fieldmatch} is based on. While the semantic and usage are very
11066 close, some behaviour and options names can differ.
11067
11068 The @ref{decimate} filter currently only works for constant frame rate input.
11069 If your input has mixed telecined (30fps) and progressive content with a lower
11070 framerate like 24fps use the following filterchain to produce the necessary cfr
11071 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11072
11073 The filter accepts the following options:
11074
11075 @table @option
11076 @item order
11077 Specify the assumed field order of the input stream. Available values are:
11078
11079 @table @samp
11080 @item auto
11081 Auto detect parity (use FFmpeg's internal parity value).
11082 @item bff
11083 Assume bottom field first.
11084 @item tff
11085 Assume top field first.
11086 @end table
11087
11088 Note that it is sometimes recommended not to trust the parity announced by the
11089 stream.
11090
11091 Default value is @var{auto}.
11092
11093 @item mode
11094 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11095 sense that it won't risk creating jerkiness due to duplicate frames when
11096 possible, but if there are bad edits or blended fields it will end up
11097 outputting combed frames when a good match might actually exist. On the other
11098 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11099 but will almost always find a good frame if there is one. The other values are
11100 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11101 jerkiness and creating duplicate frames versus finding good matches in sections
11102 with bad edits, orphaned fields, blended fields, etc.
11103
11104 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11105
11106 Available values are:
11107
11108 @table @samp
11109 @item pc
11110 2-way matching (p/c)
11111 @item pc_n
11112 2-way matching, and trying 3rd match if still combed (p/c + n)
11113 @item pc_u
11114 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11115 @item pc_n_ub
11116 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11117 still combed (p/c + n + u/b)
11118 @item pcn
11119 3-way matching (p/c/n)
11120 @item pcn_ub
11121 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11122 detected as combed (p/c/n + u/b)
11123 @end table
11124
11125 The parenthesis at the end indicate the matches that would be used for that
11126 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11127 @var{top}).
11128
11129 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11130 the slowest.
11131
11132 Default value is @var{pc_n}.
11133
11134 @item ppsrc
11135 Mark the main input stream as a pre-processed input, and enable the secondary
11136 input stream as the clean source to pick the fields from. See the filter
11137 introduction for more details. It is similar to the @option{clip2} feature from
11138 VFM/TFM.
11139
11140 Default value is @code{0} (disabled).
11141
11142 @item field
11143 Set the field to match from. It is recommended to set this to the same value as
11144 @option{order} unless you experience matching failures with that setting. In
11145 certain circumstances changing the field that is used to match from can have a
11146 large impact on matching performance. Available values are:
11147
11148 @table @samp
11149 @item auto
11150 Automatic (same value as @option{order}).
11151 @item bottom
11152 Match from the bottom field.
11153 @item top
11154 Match from the top field.
11155 @end table
11156
11157 Default value is @var{auto}.
11158
11159 @item mchroma
11160 Set whether or not chroma is included during the match comparisons. In most
11161 cases it is recommended to leave this enabled. You should set this to @code{0}
11162 only if your clip has bad chroma problems such as heavy rainbowing or other
11163 artifacts. Setting this to @code{0} could also be used to speed things up at
11164 the cost of some accuracy.
11165
11166 Default value is @code{1}.
11167
11168 @item y0
11169 @item y1
11170 These define an exclusion band which excludes the lines between @option{y0} and
11171 @option{y1} from being included in the field matching decision. An exclusion
11172 band can be used to ignore subtitles, a logo, or other things that may
11173 interfere with the matching. @option{y0} sets the starting scan line and
11174 @option{y1} sets the ending line; all lines in between @option{y0} and
11175 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11176 @option{y0} and @option{y1} to the same value will disable the feature.
11177 @option{y0} and @option{y1} defaults to @code{0}.
11178
11179 @item scthresh
11180 Set the scene change detection threshold as a percentage of maximum change on
11181 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11182 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11183 @option{scthresh} is @code{[0.0, 100.0]}.
11184
11185 Default value is @code{12.0}.
11186
11187 @item combmatch
11188 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11189 account the combed scores of matches when deciding what match to use as the
11190 final match. Available values are:
11191
11192 @table @samp
11193 @item none
11194 No final matching based on combed scores.
11195 @item sc
11196 Combed scores are only used when a scene change is detected.
11197 @item full
11198 Use combed scores all the time.
11199 @end table
11200
11201 Default is @var{sc}.
11202
11203 @item combdbg
11204 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11205 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11206 Available values are:
11207
11208 @table @samp
11209 @item none
11210 No forced calculation.
11211 @item pcn
11212 Force p/c/n calculations.
11213 @item pcnub
11214 Force p/c/n/u/b calculations.
11215 @end table
11216
11217 Default value is @var{none}.
11218
11219 @item cthresh
11220 This is the area combing threshold used for combed frame detection. This
11221 essentially controls how "strong" or "visible" combing must be to be detected.
11222 Larger values mean combing must be more visible and smaller values mean combing
11223 can be less visible or strong and still be detected. Valid settings are from
11224 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11225 be detected as combed). This is basically a pixel difference value. A good
11226 range is @code{[8, 12]}.
11227
11228 Default value is @code{9}.
11229
11230 @item chroma
11231 Sets whether or not chroma is considered in the combed frame decision.  Only
11232 disable this if your source has chroma problems (rainbowing, etc.) that are
11233 causing problems for the combed frame detection with chroma enabled. Actually,
11234 using @option{chroma}=@var{0} is usually more reliable, except for the case
11235 where there is chroma only combing in the source.
11236
11237 Default value is @code{0}.
11238
11239 @item blockx
11240 @item blocky
11241 Respectively set the x-axis and y-axis size of the window used during combed
11242 frame detection. This has to do with the size of the area in which
11243 @option{combpel} pixels are required to be detected as combed for a frame to be
11244 declared combed. See the @option{combpel} parameter description for more info.
11245 Possible values are any number that is a power of 2 starting at 4 and going up
11246 to 512.
11247
11248 Default value is @code{16}.
11249
11250 @item combpel
11251 The number of combed pixels inside any of the @option{blocky} by
11252 @option{blockx} size blocks on the frame for the frame to be detected as
11253 combed. While @option{cthresh} controls how "visible" the combing must be, this
11254 setting controls "how much" combing there must be in any localized area (a
11255 window defined by the @option{blockx} and @option{blocky} settings) on the
11256 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11257 which point no frames will ever be detected as combed). This setting is known
11258 as @option{MI} in TFM/VFM vocabulary.
11259
11260 Default value is @code{80}.
11261 @end table
11262
11263 @anchor{p/c/n/u/b meaning}
11264 @subsection p/c/n/u/b meaning
11265
11266 @subsubsection p/c/n
11267
11268 We assume the following telecined stream:
11269
11270 @example
11271 Top fields:     1 2 2 3 4
11272 Bottom fields:  1 2 3 4 4
11273 @end example
11274
11275 The numbers correspond to the progressive frame the fields relate to. Here, the
11276 first two frames are progressive, the 3rd and 4th are combed, and so on.
11277
11278 When @code{fieldmatch} is configured to run a matching from bottom
11279 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11280
11281 @example
11282 Input stream:
11283                 T     1 2 2 3 4
11284                 B     1 2 3 4 4   <-- matching reference
11285
11286 Matches:              c c n n c
11287
11288 Output stream:
11289                 T     1 2 3 4 4
11290                 B     1 2 3 4 4
11291 @end example
11292
11293 As a result of the field matching, we can see that some frames get duplicated.
11294 To perform a complete inverse telecine, you need to rely on a decimation filter
11295 after this operation. See for instance the @ref{decimate} filter.
11296
11297 The same operation now matching from top fields (@option{field}=@var{top})
11298 looks like this:
11299
11300 @example
11301 Input stream:
11302                 T     1 2 2 3 4   <-- matching reference
11303                 B     1 2 3 4 4
11304
11305 Matches:              c c p p c
11306
11307 Output stream:
11308                 T     1 2 2 3 4
11309                 B     1 2 2 3 4
11310 @end example
11311
11312 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
11313 basically, they refer to the frame and field of the opposite parity:
11314
11315 @itemize
11316 @item @var{p} matches the field of the opposite parity in the previous frame
11317 @item @var{c} matches the field of the opposite parity in the current frame
11318 @item @var{n} matches the field of the opposite parity in the next frame
11319 @end itemize
11320
11321 @subsubsection u/b
11322
11323 The @var{u} and @var{b} matching are a bit special in the sense that they match
11324 from the opposite parity flag. In the following examples, we assume that we are
11325 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
11326 'x' is placed above and below each matched fields.
11327
11328 With bottom matching (@option{field}=@var{bottom}):
11329 @example
11330 Match:           c         p           n          b          u
11331
11332                  x       x               x        x          x
11333   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11334   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11335                  x         x           x        x              x
11336
11337 Output frames:
11338                  2          1          2          2          2
11339                  2          2          2          1          3
11340 @end example
11341
11342 With top matching (@option{field}=@var{top}):
11343 @example
11344 Match:           c         p           n          b          u
11345
11346                  x         x           x        x              x
11347   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11348   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11349                  x       x               x        x          x
11350
11351 Output frames:
11352                  2          2          2          1          2
11353                  2          1          3          2          2
11354 @end example
11355
11356 @subsection Examples
11357
11358 Simple IVTC of a top field first telecined stream:
11359 @example
11360 fieldmatch=order=tff:combmatch=none, decimate
11361 @end example
11362
11363 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
11364 @example
11365 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
11366 @end example
11367
11368 @section fieldorder
11369
11370 Transform the field order of the input video.
11371
11372 It accepts the following parameters:
11373
11374 @table @option
11375
11376 @item order
11377 The output field order. Valid values are @var{tff} for top field first or @var{bff}
11378 for bottom field first.
11379 @end table
11380
11381 The default value is @samp{tff}.
11382
11383 The transformation is done by shifting the picture content up or down
11384 by one line, and filling the remaining line with appropriate picture content.
11385 This method is consistent with most broadcast field order converters.
11386
11387 If the input video is not flagged as being interlaced, or it is already
11388 flagged as being of the required output field order, then this filter does
11389 not alter the incoming video.
11390
11391 It is very useful when converting to or from PAL DV material,
11392 which is bottom field first.
11393
11394 For example:
11395 @example
11396 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
11397 @end example
11398
11399 @section fifo, afifo
11400
11401 Buffer input images and send them when they are requested.
11402
11403 It is mainly useful when auto-inserted by the libavfilter
11404 framework.
11405
11406 It does not take parameters.
11407
11408 @section fillborders
11409
11410 Fill borders of the input video, without changing video stream dimensions.
11411 Sometimes video can have garbage at the four edges and you may not want to
11412 crop video input to keep size multiple of some number.
11413
11414 This filter accepts the following options:
11415
11416 @table @option
11417 @item left
11418 Number of pixels to fill from left border.
11419
11420 @item right
11421 Number of pixels to fill from right border.
11422
11423 @item top
11424 Number of pixels to fill from top border.
11425
11426 @item bottom
11427 Number of pixels to fill from bottom border.
11428
11429 @item mode
11430 Set fill mode.
11431
11432 It accepts the following values:
11433 @table @samp
11434 @item smear
11435 fill pixels using outermost pixels
11436
11437 @item mirror
11438 fill pixels using mirroring
11439
11440 @item fixed
11441 fill pixels with constant value
11442 @end table
11443
11444 Default is @var{smear}.
11445
11446 @item color
11447 Set color for pixels in fixed mode. Default is @var{black}.
11448 @end table
11449
11450 @subsection Commands
11451 This filter supports same @ref{commands} as options.
11452 The command accepts the same syntax of the corresponding option.
11453
11454 If the specified expression is not valid, it is kept at its current
11455 value.
11456
11457 @section find_rect
11458
11459 Find a rectangular object
11460
11461 It accepts the following options:
11462
11463 @table @option
11464 @item object
11465 Filepath of the object image, needs to be in gray8.
11466
11467 @item threshold
11468 Detection threshold, default is 0.5.
11469
11470 @item mipmaps
11471 Number of mipmaps, default is 3.
11472
11473 @item xmin, ymin, xmax, ymax
11474 Specifies the rectangle in which to search.
11475 @end table
11476
11477 @subsection Examples
11478
11479 @itemize
11480 @item
11481 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11482 @example
11483 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11484 @end example
11485 @end itemize
11486
11487 @section floodfill
11488
11489 Flood area with values of same pixel components with another values.
11490
11491 It accepts the following options:
11492 @table @option
11493 @item x
11494 Set pixel x coordinate.
11495
11496 @item y
11497 Set pixel y coordinate.
11498
11499 @item s0
11500 Set source #0 component value.
11501
11502 @item s1
11503 Set source #1 component value.
11504
11505 @item s2
11506 Set source #2 component value.
11507
11508 @item s3
11509 Set source #3 component value.
11510
11511 @item d0
11512 Set destination #0 component value.
11513
11514 @item d1
11515 Set destination #1 component value.
11516
11517 @item d2
11518 Set destination #2 component value.
11519
11520 @item d3
11521 Set destination #3 component value.
11522 @end table
11523
11524 @anchor{format}
11525 @section format
11526
11527 Convert the input video to one of the specified pixel formats.
11528 Libavfilter will try to pick one that is suitable as input to
11529 the next filter.
11530
11531 It accepts the following parameters:
11532 @table @option
11533
11534 @item pix_fmts
11535 A '|'-separated list of pixel format names, such as
11536 "pix_fmts=yuv420p|monow|rgb24".
11537
11538 @end table
11539
11540 @subsection Examples
11541
11542 @itemize
11543 @item
11544 Convert the input video to the @var{yuv420p} format
11545 @example
11546 format=pix_fmts=yuv420p
11547 @end example
11548
11549 Convert the input video to any of the formats in the list
11550 @example
11551 format=pix_fmts=yuv420p|yuv444p|yuv410p
11552 @end example
11553 @end itemize
11554
11555 @anchor{fps}
11556 @section fps
11557
11558 Convert the video to specified constant frame rate by duplicating or dropping
11559 frames as necessary.
11560
11561 It accepts the following parameters:
11562 @table @option
11563
11564 @item fps
11565 The desired output frame rate. The default is @code{25}.
11566
11567 @item start_time
11568 Assume the first PTS should be the given value, in seconds. This allows for
11569 padding/trimming at the start of stream. By default, no assumption is made
11570 about the first frame's expected PTS, so no padding or trimming is done.
11571 For example, this could be set to 0 to pad the beginning with duplicates of
11572 the first frame if a video stream starts after the audio stream or to trim any
11573 frames with a negative PTS.
11574
11575 @item round
11576 Timestamp (PTS) rounding method.
11577
11578 Possible values are:
11579 @table @option
11580 @item zero
11581 round towards 0
11582 @item inf
11583 round away from 0
11584 @item down
11585 round towards -infinity
11586 @item up
11587 round towards +infinity
11588 @item near
11589 round to nearest
11590 @end table
11591 The default is @code{near}.
11592
11593 @item eof_action
11594 Action performed when reading the last frame.
11595
11596 Possible values are:
11597 @table @option
11598 @item round
11599 Use same timestamp rounding method as used for other frames.
11600 @item pass
11601 Pass through last frame if input duration has not been reached yet.
11602 @end table
11603 The default is @code{round}.
11604
11605 @end table
11606
11607 Alternatively, the options can be specified as a flat string:
11608 @var{fps}[:@var{start_time}[:@var{round}]].
11609
11610 See also the @ref{setpts} filter.
11611
11612 @subsection Examples
11613
11614 @itemize
11615 @item
11616 A typical usage in order to set the fps to 25:
11617 @example
11618 fps=fps=25
11619 @end example
11620
11621 @item
11622 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
11623 @example
11624 fps=fps=film:round=near
11625 @end example
11626 @end itemize
11627
11628 @section framepack
11629
11630 Pack two different video streams into a stereoscopic video, setting proper
11631 metadata on supported codecs. The two views should have the same size and
11632 framerate and processing will stop when the shorter video ends. Please note
11633 that you may conveniently adjust view properties with the @ref{scale} and
11634 @ref{fps} filters.
11635
11636 It accepts the following parameters:
11637 @table @option
11638
11639 @item format
11640 The desired packing format. Supported values are:
11641
11642 @table @option
11643
11644 @item sbs
11645 The views are next to each other (default).
11646
11647 @item tab
11648 The views are on top of each other.
11649
11650 @item lines
11651 The views are packed by line.
11652
11653 @item columns
11654 The views are packed by column.
11655
11656 @item frameseq
11657 The views are temporally interleaved.
11658
11659 @end table
11660
11661 @end table
11662
11663 Some examples:
11664
11665 @example
11666 # Convert left and right views into a frame-sequential video
11667 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
11668
11669 # Convert views into a side-by-side video with the same output resolution as the input
11670 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
11671 @end example
11672
11673 @section framerate
11674
11675 Change the frame rate by interpolating new video output frames from the source
11676 frames.
11677
11678 This filter is not designed to function correctly with interlaced media. If
11679 you wish to change the frame rate of interlaced media then you are required
11680 to deinterlace before this filter and re-interlace after this filter.
11681
11682 A description of the accepted options follows.
11683
11684 @table @option
11685 @item fps
11686 Specify the output frames per second. This option can also be specified
11687 as a value alone. The default is @code{50}.
11688
11689 @item interp_start
11690 Specify the start of a range where the output frame will be created as a
11691 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11692 the default is @code{15}.
11693
11694 @item interp_end
11695 Specify the end of a range where the output frame will be created as a
11696 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11697 the default is @code{240}.
11698
11699 @item scene
11700 Specify the level at which a scene change is detected as a value between
11701 0 and 100 to indicate a new scene; a low value reflects a low
11702 probability for the current frame to introduce a new scene, while a higher
11703 value means the current frame is more likely to be one.
11704 The default is @code{8.2}.
11705
11706 @item flags
11707 Specify flags influencing the filter process.
11708
11709 Available value for @var{flags} is:
11710
11711 @table @option
11712 @item scene_change_detect, scd
11713 Enable scene change detection using the value of the option @var{scene}.
11714 This flag is enabled by default.
11715 @end table
11716 @end table
11717
11718 @section framestep
11719
11720 Select one frame every N-th frame.
11721
11722 This filter accepts the following option:
11723 @table @option
11724 @item step
11725 Select frame after every @code{step} frames.
11726 Allowed values are positive integers higher than 0. Default value is @code{1}.
11727 @end table
11728
11729 @section freezedetect
11730
11731 Detect frozen video.
11732
11733 This filter logs a message and sets frame metadata when it detects that the
11734 input video has no significant change in content during a specified duration.
11735 Video freeze detection calculates the mean average absolute difference of all
11736 the components of video frames and compares it to a noise floor.
11737
11738 The printed times and duration are expressed in seconds. The
11739 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
11740 whose timestamp equals or exceeds the detection duration and it contains the
11741 timestamp of the first frame of the freeze. The
11742 @code{lavfi.freezedetect.freeze_duration} and
11743 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
11744 after the freeze.
11745
11746 The filter accepts the following options:
11747
11748 @table @option
11749 @item noise, n
11750 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
11751 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
11752 0.001.
11753
11754 @item duration, d
11755 Set freeze duration until notification (default is 2 seconds).
11756 @end table
11757
11758 @section freezeframes
11759
11760 Freeze video frames.
11761
11762 This filter freezes video frames using frame from 2nd input.
11763
11764 The filter accepts the following options:
11765
11766 @table @option
11767 @item first
11768 Set number of first frame from which to start freeze.
11769
11770 @item last
11771 Set number of last frame from which to end freeze.
11772
11773 @item replace
11774 Set number of frame from 2nd input which will be used instead of replaced frames.
11775 @end table
11776
11777 @anchor{frei0r}
11778 @section frei0r
11779
11780 Apply a frei0r effect to the input video.
11781
11782 To enable the compilation of this filter, you need to install the frei0r
11783 header and configure FFmpeg with @code{--enable-frei0r}.
11784
11785 It accepts the following parameters:
11786
11787 @table @option
11788
11789 @item filter_name
11790 The name of the frei0r effect to load. If the environment variable
11791 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
11792 directories specified by the colon-separated list in @env{FREI0R_PATH}.
11793 Otherwise, the standard frei0r paths are searched, in this order:
11794 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
11795 @file{/usr/lib/frei0r-1/}.
11796
11797 @item filter_params
11798 A '|'-separated list of parameters to pass to the frei0r effect.
11799
11800 @end table
11801
11802 A frei0r effect parameter can be a boolean (its value is either
11803 "y" or "n"), a double, a color (specified as
11804 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
11805 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
11806 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
11807 a position (specified as @var{X}/@var{Y}, where
11808 @var{X} and @var{Y} are floating point numbers) and/or a string.
11809
11810 The number and types of parameters depend on the loaded effect. If an
11811 effect parameter is not specified, the default value is set.
11812
11813 @subsection Examples
11814
11815 @itemize
11816 @item
11817 Apply the distort0r effect, setting the first two double parameters:
11818 @example
11819 frei0r=filter_name=distort0r:filter_params=0.5|0.01
11820 @end example
11821
11822 @item
11823 Apply the colordistance effect, taking a color as the first parameter:
11824 @example
11825 frei0r=colordistance:0.2/0.3/0.4
11826 frei0r=colordistance:violet
11827 frei0r=colordistance:0x112233
11828 @end example
11829
11830 @item
11831 Apply the perspective effect, specifying the top left and top right image
11832 positions:
11833 @example
11834 frei0r=perspective:0.2/0.2|0.8/0.2
11835 @end example
11836 @end itemize
11837
11838 For more information, see
11839 @url{http://frei0r.dyne.org}
11840
11841 @subsection Commands
11842
11843 This filter supports the @option{filter_params} option as @ref{commands}.
11844
11845 @section fspp
11846
11847 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
11848
11849 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
11850 processing filter, one of them is performed once per block, not per pixel.
11851 This allows for much higher speed.
11852
11853 The filter accepts the following options:
11854
11855 @table @option
11856 @item quality
11857 Set quality. This option defines the number of levels for averaging. It accepts
11858 an integer in the range 4-5. Default value is @code{4}.
11859
11860 @item qp
11861 Force a constant quantization parameter. It accepts an integer in range 0-63.
11862 If not set, the filter will use the QP from the video stream (if available).
11863
11864 @item strength
11865 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
11866 more details but also more artifacts, while higher values make the image smoother
11867 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
11868
11869 @item use_bframe_qp
11870 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
11871 option may cause flicker since the B-Frames have often larger QP. Default is
11872 @code{0} (not enabled).
11873
11874 @end table
11875
11876 @section gblur
11877
11878 Apply Gaussian blur filter.
11879
11880 The filter accepts the following options:
11881
11882 @table @option
11883 @item sigma
11884 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
11885
11886 @item steps
11887 Set number of steps for Gaussian approximation. Default is @code{1}.
11888
11889 @item planes
11890 Set which planes to filter. By default all planes are filtered.
11891
11892 @item sigmaV
11893 Set vertical sigma, if negative it will be same as @code{sigma}.
11894 Default is @code{-1}.
11895 @end table
11896
11897 @subsection Commands
11898 This filter supports same commands as options.
11899 The command accepts the same syntax of the corresponding option.
11900
11901 If the specified expression is not valid, it is kept at its current
11902 value.
11903
11904 @section geq
11905
11906 Apply generic equation to each pixel.
11907
11908 The filter accepts the following options:
11909
11910 @table @option
11911 @item lum_expr, lum
11912 Set the luminance expression.
11913 @item cb_expr, cb
11914 Set the chrominance blue expression.
11915 @item cr_expr, cr
11916 Set the chrominance red expression.
11917 @item alpha_expr, a
11918 Set the alpha expression.
11919 @item red_expr, r
11920 Set the red expression.
11921 @item green_expr, g
11922 Set the green expression.
11923 @item blue_expr, b
11924 Set the blue expression.
11925 @end table
11926
11927 The colorspace is selected according to the specified options. If one
11928 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
11929 options is specified, the filter will automatically select a YCbCr
11930 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
11931 @option{blue_expr} options is specified, it will select an RGB
11932 colorspace.
11933
11934 If one of the chrominance expression is not defined, it falls back on the other
11935 one. If no alpha expression is specified it will evaluate to opaque value.
11936 If none of chrominance expressions are specified, they will evaluate
11937 to the luminance expression.
11938
11939 The expressions can use the following variables and functions:
11940
11941 @table @option
11942 @item N
11943 The sequential number of the filtered frame, starting from @code{0}.
11944
11945 @item X
11946 @item Y
11947 The coordinates of the current sample.
11948
11949 @item W
11950 @item H
11951 The width and height of the image.
11952
11953 @item SW
11954 @item SH
11955 Width and height scale depending on the currently filtered plane. It is the
11956 ratio between the corresponding luma plane number of pixels and the current
11957 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
11958 @code{0.5,0.5} for chroma planes.
11959
11960 @item T
11961 Time of the current frame, expressed in seconds.
11962
11963 @item p(x, y)
11964 Return the value of the pixel at location (@var{x},@var{y}) of the current
11965 plane.
11966
11967 @item lum(x, y)
11968 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
11969 plane.
11970
11971 @item cb(x, y)
11972 Return the value of the pixel at location (@var{x},@var{y}) of the
11973 blue-difference chroma plane. Return 0 if there is no such plane.
11974
11975 @item cr(x, y)
11976 Return the value of the pixel at location (@var{x},@var{y}) of the
11977 red-difference chroma plane. Return 0 if there is no such plane.
11978
11979 @item r(x, y)
11980 @item g(x, y)
11981 @item b(x, y)
11982 Return the value of the pixel at location (@var{x},@var{y}) of the
11983 red/green/blue component. Return 0 if there is no such component.
11984
11985 @item alpha(x, y)
11986 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
11987 plane. Return 0 if there is no such plane.
11988
11989 @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)
11990 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
11991 sums of samples within a rectangle. See the functions without the sum postfix.
11992
11993 @item interpolation
11994 Set one of interpolation methods:
11995 @table @option
11996 @item nearest, n
11997 @item bilinear, b
11998 @end table
11999 Default is bilinear.
12000 @end table
12001
12002 For functions, if @var{x} and @var{y} are outside the area, the value will be
12003 automatically clipped to the closer edge.
12004
12005 Please note that this filter can use multiple threads in which case each slice
12006 will have its own expression state. If you want to use only a single expression
12007 state because your expressions depend on previous state then you should limit
12008 the number of filter threads to 1.
12009
12010 @subsection Examples
12011
12012 @itemize
12013 @item
12014 Flip the image horizontally:
12015 @example
12016 geq=p(W-X\,Y)
12017 @end example
12018
12019 @item
12020 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12021 wavelength of 100 pixels:
12022 @example
12023 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12024 @end example
12025
12026 @item
12027 Generate a fancy enigmatic moving light:
12028 @example
12029 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
12030 @end example
12031
12032 @item
12033 Generate a quick emboss effect:
12034 @example
12035 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12036 @end example
12037
12038 @item
12039 Modify RGB components depending on pixel position:
12040 @example
12041 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12042 @end example
12043
12044 @item
12045 Create a radial gradient that is the same size as the input (also see
12046 the @ref{vignette} filter):
12047 @example
12048 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12049 @end example
12050 @end itemize
12051
12052 @section gradfun
12053
12054 Fix the banding artifacts that are sometimes introduced into nearly flat
12055 regions by truncation to 8-bit color depth.
12056 Interpolate the gradients that should go where the bands are, and
12057 dither them.
12058
12059 It is designed for playback only.  Do not use it prior to
12060 lossy compression, because compression tends to lose the dither and
12061 bring back the bands.
12062
12063 It accepts the following parameters:
12064
12065 @table @option
12066
12067 @item strength
12068 The maximum amount by which the filter will change any one pixel. This is also
12069 the threshold for detecting nearly flat regions. Acceptable values range from
12070 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12071 valid range.
12072
12073 @item radius
12074 The neighborhood to fit the gradient to. A larger radius makes for smoother
12075 gradients, but also prevents the filter from modifying the pixels near detailed
12076 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12077 values will be clipped to the valid range.
12078
12079 @end table
12080
12081 Alternatively, the options can be specified as a flat string:
12082 @var{strength}[:@var{radius}]
12083
12084 @subsection Examples
12085
12086 @itemize
12087 @item
12088 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12089 @example
12090 gradfun=3.5:8
12091 @end example
12092
12093 @item
12094 Specify radius, omitting the strength (which will fall-back to the default
12095 value):
12096 @example
12097 gradfun=radius=8
12098 @end example
12099
12100 @end itemize
12101
12102 @anchor{graphmonitor}
12103 @section graphmonitor
12104 Show various filtergraph stats.
12105
12106 With this filter one can debug complete filtergraph.
12107 Especially issues with links filling with queued frames.
12108
12109 The filter accepts the following options:
12110
12111 @table @option
12112 @item size, s
12113 Set video output size. Default is @var{hd720}.
12114
12115 @item opacity, o
12116 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12117
12118 @item mode, m
12119 Set output mode, can be @var{fulll} or @var{compact}.
12120 In @var{compact} mode only filters with some queued frames have displayed stats.
12121
12122 @item flags, f
12123 Set flags which enable which stats are shown in video.
12124
12125 Available values for flags are:
12126 @table @samp
12127 @item queue
12128 Display number of queued frames in each link.
12129
12130 @item frame_count_in
12131 Display number of frames taken from filter.
12132
12133 @item frame_count_out
12134 Display number of frames given out from filter.
12135
12136 @item pts
12137 Display current filtered frame pts.
12138
12139 @item time
12140 Display current filtered frame time.
12141
12142 @item timebase
12143 Display time base for filter link.
12144
12145 @item format
12146 Display used format for filter link.
12147
12148 @item size
12149 Display video size or number of audio channels in case of audio used by filter link.
12150
12151 @item rate
12152 Display video frame rate or sample rate in case of audio used by filter link.
12153
12154 @item eof
12155 Display link output status.
12156 @end table
12157
12158 @item rate, r
12159 Set upper limit for video rate of output stream, Default value is @var{25}.
12160 This guarantee that output video frame rate will not be higher than this value.
12161 @end table
12162
12163 @section greyedge
12164 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12165 and corrects the scene colors accordingly.
12166
12167 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12168
12169 The filter accepts the following options:
12170
12171 @table @option
12172 @item difford
12173 The order of differentiation to be applied on the scene. Must be chosen in the range
12174 [0,2] and default value is 1.
12175
12176 @item minknorm
12177 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12178 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12179 max value instead of calculating Minkowski distance.
12180
12181 @item sigma
12182 The standard deviation of Gaussian blur to be applied on the scene. Must be
12183 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12184 can't be equal to 0 if @var{difford} is greater than 0.
12185 @end table
12186
12187 @subsection Examples
12188 @itemize
12189
12190 @item
12191 Grey Edge:
12192 @example
12193 greyedge=difford=1:minknorm=5:sigma=2
12194 @end example
12195
12196 @item
12197 Max Edge:
12198 @example
12199 greyedge=difford=1:minknorm=0:sigma=2
12200 @end example
12201
12202 @end itemize
12203
12204 @anchor{haldclut}
12205 @section haldclut
12206
12207 Apply a Hald CLUT to a video stream.
12208
12209 First input is the video stream to process, and second one is the Hald CLUT.
12210 The Hald CLUT input can be a simple picture or a complete video stream.
12211
12212 The filter accepts the following options:
12213
12214 @table @option
12215 @item shortest
12216 Force termination when the shortest input terminates. Default is @code{0}.
12217 @item repeatlast
12218 Continue applying the last CLUT after the end of the stream. A value of
12219 @code{0} disable the filter after the last frame of the CLUT is reached.
12220 Default is @code{1}.
12221 @end table
12222
12223 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12224 filters share the same internals).
12225
12226 This filter also supports the @ref{framesync} options.
12227
12228 More information about the Hald CLUT can be found on Eskil Steenberg's website
12229 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12230
12231 @subsection Workflow examples
12232
12233 @subsubsection Hald CLUT video stream
12234
12235 Generate an identity Hald CLUT stream altered with various effects:
12236 @example
12237 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
12238 @end example
12239
12240 Note: make sure you use a lossless codec.
12241
12242 Then use it with @code{haldclut} to apply it on some random stream:
12243 @example
12244 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12245 @end example
12246
12247 The Hald CLUT will be applied to the 10 first seconds (duration of
12248 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12249 to the remaining frames of the @code{mandelbrot} stream.
12250
12251 @subsubsection Hald CLUT with preview
12252
12253 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12254 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12255 biggest possible square starting at the top left of the picture. The remaining
12256 padding pixels (bottom or right) will be ignored. This area can be used to add
12257 a preview of the Hald CLUT.
12258
12259 Typically, the following generated Hald CLUT will be supported by the
12260 @code{haldclut} filter:
12261
12262 @example
12263 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12264    pad=iw+320 [padded_clut];
12265    smptebars=s=320x256, split [a][b];
12266    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12267    [main][b] overlay=W-320" -frames:v 1 clut.png
12268 @end example
12269
12270 It contains the original and a preview of the effect of the CLUT: SMPTE color
12271 bars are displayed on the right-top, and below the same color bars processed by
12272 the color changes.
12273
12274 Then, the effect of this Hald CLUT can be visualized with:
12275 @example
12276 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12277 @end example
12278
12279 @section hflip
12280
12281 Flip the input video horizontally.
12282
12283 For example, to horizontally flip the input video with @command{ffmpeg}:
12284 @example
12285 ffmpeg -i in.avi -vf "hflip" out.avi
12286 @end example
12287
12288 @section histeq
12289 This filter applies a global color histogram equalization on a
12290 per-frame basis.
12291
12292 It can be used to correct video that has a compressed range of pixel
12293 intensities.  The filter redistributes the pixel intensities to
12294 equalize their distribution across the intensity range. It may be
12295 viewed as an "automatically adjusting contrast filter". This filter is
12296 useful only for correcting degraded or poorly captured source
12297 video.
12298
12299 The filter accepts the following options:
12300
12301 @table @option
12302 @item strength
12303 Determine the amount of equalization to be applied.  As the strength
12304 is reduced, the distribution of pixel intensities more-and-more
12305 approaches that of the input frame. The value must be a float number
12306 in the range [0,1] and defaults to 0.200.
12307
12308 @item intensity
12309 Set the maximum intensity that can generated and scale the output
12310 values appropriately.  The strength should be set as desired and then
12311 the intensity can be limited if needed to avoid washing-out. The value
12312 must be a float number in the range [0,1] and defaults to 0.210.
12313
12314 @item antibanding
12315 Set the antibanding level. If enabled the filter will randomly vary
12316 the luminance of output pixels by a small amount to avoid banding of
12317 the histogram. Possible values are @code{none}, @code{weak} or
12318 @code{strong}. It defaults to @code{none}.
12319 @end table
12320
12321 @anchor{histogram}
12322 @section histogram
12323
12324 Compute and draw a color distribution histogram for the input video.
12325
12326 The computed histogram is a representation of the color component
12327 distribution in an image.
12328
12329 Standard histogram displays the color components distribution in an image.
12330 Displays color graph for each color component. Shows distribution of
12331 the Y, U, V, A or R, G, B components, depending on input format, in the
12332 current frame. Below each graph a color component scale meter is shown.
12333
12334 The filter accepts the following options:
12335
12336 @table @option
12337 @item level_height
12338 Set height of level. Default value is @code{200}.
12339 Allowed range is [50, 2048].
12340
12341 @item scale_height
12342 Set height of color scale. Default value is @code{12}.
12343 Allowed range is [0, 40].
12344
12345 @item display_mode
12346 Set display mode.
12347 It accepts the following values:
12348 @table @samp
12349 @item stack
12350 Per color component graphs are placed below each other.
12351
12352 @item parade
12353 Per color component graphs are placed side by side.
12354
12355 @item overlay
12356 Presents information identical to that in the @code{parade}, except
12357 that the graphs representing color components are superimposed directly
12358 over one another.
12359 @end table
12360 Default is @code{stack}.
12361
12362 @item levels_mode
12363 Set mode. Can be either @code{linear}, or @code{logarithmic}.
12364 Default is @code{linear}.
12365
12366 @item components
12367 Set what color components to display.
12368 Default is @code{7}.
12369
12370 @item fgopacity
12371 Set foreground opacity. Default is @code{0.7}.
12372
12373 @item bgopacity
12374 Set background opacity. Default is @code{0.5}.
12375 @end table
12376
12377 @subsection Examples
12378
12379 @itemize
12380
12381 @item
12382 Calculate and draw histogram:
12383 @example
12384 ffplay -i input -vf histogram
12385 @end example
12386
12387 @end itemize
12388
12389 @anchor{hqdn3d}
12390 @section hqdn3d
12391
12392 This is a high precision/quality 3d denoise filter. It aims to reduce
12393 image noise, producing smooth images and making still images really
12394 still. It should enhance compressibility.
12395
12396 It accepts the following optional parameters:
12397
12398 @table @option
12399 @item luma_spatial
12400 A non-negative floating point number which specifies spatial luma strength.
12401 It defaults to 4.0.
12402
12403 @item chroma_spatial
12404 A non-negative floating point number which specifies spatial chroma strength.
12405 It defaults to 3.0*@var{luma_spatial}/4.0.
12406
12407 @item luma_tmp
12408 A floating point number which specifies luma temporal strength. It defaults to
12409 6.0*@var{luma_spatial}/4.0.
12410
12411 @item chroma_tmp
12412 A floating point number which specifies chroma temporal strength. It defaults to
12413 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
12414 @end table
12415
12416 @subsection Commands
12417 This filter supports same @ref{commands} as options.
12418 The command accepts the same syntax of the corresponding option.
12419
12420 If the specified expression is not valid, it is kept at its current
12421 value.
12422
12423 @anchor{hwdownload}
12424 @section hwdownload
12425
12426 Download hardware frames to system memory.
12427
12428 The input must be in hardware frames, and the output a non-hardware format.
12429 Not all formats will be supported on the output - it may be necessary to insert
12430 an additional @option{format} filter immediately following in the graph to get
12431 the output in a supported format.
12432
12433 @section hwmap
12434
12435 Map hardware frames to system memory or to another device.
12436
12437 This filter has several different modes of operation; which one is used depends
12438 on the input and output formats:
12439 @itemize
12440 @item
12441 Hardware frame input, normal frame output
12442
12443 Map the input frames to system memory and pass them to the output.  If the
12444 original hardware frame is later required (for example, after overlaying
12445 something else on part of it), the @option{hwmap} filter can be used again
12446 in the next mode to retrieve it.
12447 @item
12448 Normal frame input, hardware frame output
12449
12450 If the input is actually a software-mapped hardware frame, then unmap it -
12451 that is, return the original hardware frame.
12452
12453 Otherwise, a device must be provided.  Create new hardware surfaces on that
12454 device for the output, then map them back to the software format at the input
12455 and give those frames to the preceding filter.  This will then act like the
12456 @option{hwupload} filter, but may be able to avoid an additional copy when
12457 the input is already in a compatible format.
12458 @item
12459 Hardware frame input and output
12460
12461 A device must be supplied for the output, either directly or with the
12462 @option{derive_device} option.  The input and output devices must be of
12463 different types and compatible - the exact meaning of this is
12464 system-dependent, but typically it means that they must refer to the same
12465 underlying hardware context (for example, refer to the same graphics card).
12466
12467 If the input frames were originally created on the output device, then unmap
12468 to retrieve the original frames.
12469
12470 Otherwise, map the frames to the output device - create new hardware frames
12471 on the output corresponding to the frames on the input.
12472 @end itemize
12473
12474 The following additional parameters are accepted:
12475
12476 @table @option
12477 @item mode
12478 Set the frame mapping mode.  Some combination of:
12479 @table @var
12480 @item read
12481 The mapped frame should be readable.
12482 @item write
12483 The mapped frame should be writeable.
12484 @item overwrite
12485 The mapping will always overwrite the entire frame.
12486
12487 This may improve performance in some cases, as the original contents of the
12488 frame need not be loaded.
12489 @item direct
12490 The mapping must not involve any copying.
12491
12492 Indirect mappings to copies of frames are created in some cases where either
12493 direct mapping is not possible or it would have unexpected properties.
12494 Setting this flag ensures that the mapping is direct and will fail if that is
12495 not possible.
12496 @end table
12497 Defaults to @var{read+write} if not specified.
12498
12499 @item derive_device @var{type}
12500 Rather than using the device supplied at initialisation, instead derive a new
12501 device of type @var{type} from the device the input frames exist on.
12502
12503 @item reverse
12504 In a hardware to hardware mapping, map in reverse - create frames in the sink
12505 and map them back to the source.  This may be necessary in some cases where
12506 a mapping in one direction is required but only the opposite direction is
12507 supported by the devices being used.
12508
12509 This option is dangerous - it may break the preceding filter in undefined
12510 ways if there are any additional constraints on that filter's output.
12511 Do not use it without fully understanding the implications of its use.
12512 @end table
12513
12514 @anchor{hwupload}
12515 @section hwupload
12516
12517 Upload system memory frames to hardware surfaces.
12518
12519 The device to upload to must be supplied when the filter is initialised.  If
12520 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12521 option or with the @option{derive_device} option.  The input and output devices
12522 must be of different types and compatible - the exact meaning of this is
12523 system-dependent, but typically it means that they must refer to the same
12524 underlying hardware context (for example, refer to the same graphics card).
12525
12526 The following additional parameters are accepted:
12527
12528 @table @option
12529 @item derive_device @var{type}
12530 Rather than using the device supplied at initialisation, instead derive a new
12531 device of type @var{type} from the device the input frames exist on.
12532 @end table
12533
12534 @anchor{hwupload_cuda}
12535 @section hwupload_cuda
12536
12537 Upload system memory frames to a CUDA device.
12538
12539 It accepts the following optional parameters:
12540
12541 @table @option
12542 @item device
12543 The number of the CUDA device to use
12544 @end table
12545
12546 @section hqx
12547
12548 Apply a high-quality magnification filter designed for pixel art. This filter
12549 was originally created by Maxim Stepin.
12550
12551 It accepts the following option:
12552
12553 @table @option
12554 @item n
12555 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
12556 @code{hq3x} and @code{4} for @code{hq4x}.
12557 Default is @code{3}.
12558 @end table
12559
12560 @section hstack
12561 Stack input videos horizontally.
12562
12563 All streams must be of same pixel format and of same height.
12564
12565 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12566 to create same output.
12567
12568 The filter accepts the following option:
12569
12570 @table @option
12571 @item inputs
12572 Set number of input streams. Default is 2.
12573
12574 @item shortest
12575 If set to 1, force the output to terminate when the shortest input
12576 terminates. Default value is 0.
12577 @end table
12578
12579 @section hue
12580
12581 Modify the hue and/or the saturation of the input.
12582
12583 It accepts the following parameters:
12584
12585 @table @option
12586 @item h
12587 Specify the hue angle as a number of degrees. It accepts an expression,
12588 and defaults to "0".
12589
12590 @item s
12591 Specify the saturation in the [-10,10] range. It accepts an expression and
12592 defaults to "1".
12593
12594 @item H
12595 Specify the hue angle as a number of radians. It accepts an
12596 expression, and defaults to "0".
12597
12598 @item b
12599 Specify the brightness in the [-10,10] range. It accepts an expression and
12600 defaults to "0".
12601 @end table
12602
12603 @option{h} and @option{H} are mutually exclusive, and can't be
12604 specified at the same time.
12605
12606 The @option{b}, @option{h}, @option{H} and @option{s} option values are
12607 expressions containing the following constants:
12608
12609 @table @option
12610 @item n
12611 frame count of the input frame starting from 0
12612
12613 @item pts
12614 presentation timestamp of the input frame expressed in time base units
12615
12616 @item r
12617 frame rate of the input video, NAN if the input frame rate is unknown
12618
12619 @item t
12620 timestamp expressed in seconds, NAN if the input timestamp is unknown
12621
12622 @item tb
12623 time base of the input video
12624 @end table
12625
12626 @subsection Examples
12627
12628 @itemize
12629 @item
12630 Set the hue to 90 degrees and the saturation to 1.0:
12631 @example
12632 hue=h=90:s=1
12633 @end example
12634
12635 @item
12636 Same command but expressing the hue in radians:
12637 @example
12638 hue=H=PI/2:s=1
12639 @end example
12640
12641 @item
12642 Rotate hue and make the saturation swing between 0
12643 and 2 over a period of 1 second:
12644 @example
12645 hue="H=2*PI*t: s=sin(2*PI*t)+1"
12646 @end example
12647
12648 @item
12649 Apply a 3 seconds saturation fade-in effect starting at 0:
12650 @example
12651 hue="s=min(t/3\,1)"
12652 @end example
12653
12654 The general fade-in expression can be written as:
12655 @example
12656 hue="s=min(0\, max((t-START)/DURATION\, 1))"
12657 @end example
12658
12659 @item
12660 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
12661 @example
12662 hue="s=max(0\, min(1\, (8-t)/3))"
12663 @end example
12664
12665 The general fade-out expression can be written as:
12666 @example
12667 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
12668 @end example
12669
12670 @end itemize
12671
12672 @subsection Commands
12673
12674 This filter supports the following commands:
12675 @table @option
12676 @item b
12677 @item s
12678 @item h
12679 @item H
12680 Modify the hue and/or the saturation and/or brightness of the input video.
12681 The command accepts the same syntax of the corresponding option.
12682
12683 If the specified expression is not valid, it is kept at its current
12684 value.
12685 @end table
12686
12687 @section hysteresis
12688
12689 Grow first stream into second stream by connecting components.
12690 This makes it possible to build more robust edge masks.
12691
12692 This filter accepts the following options:
12693
12694 @table @option
12695 @item planes
12696 Set which planes will be processed as bitmap, unprocessed planes will be
12697 copied from first stream.
12698 By default value 0xf, all planes will be processed.
12699
12700 @item threshold
12701 Set threshold which is used in filtering. If pixel component value is higher than
12702 this value filter algorithm for connecting components is activated.
12703 By default value is 0.
12704 @end table
12705
12706 The @code{hysteresis} filter also supports the @ref{framesync} options.
12707
12708 @section idet
12709
12710 Detect video interlacing type.
12711
12712 This filter tries to detect if the input frames are interlaced, progressive,
12713 top or bottom field first. It will also try to detect fields that are
12714 repeated between adjacent frames (a sign of telecine).
12715
12716 Single frame detection considers only immediately adjacent frames when classifying each frame.
12717 Multiple frame detection incorporates the classification history of previous frames.
12718
12719 The filter will log these metadata values:
12720
12721 @table @option
12722 @item single.current_frame
12723 Detected type of current frame using single-frame detection. One of:
12724 ``tff'' (top field first), ``bff'' (bottom field first),
12725 ``progressive'', or ``undetermined''
12726
12727 @item single.tff
12728 Cumulative number of frames detected as top field first using single-frame detection.
12729
12730 @item multiple.tff
12731 Cumulative number of frames detected as top field first using multiple-frame detection.
12732
12733 @item single.bff
12734 Cumulative number of frames detected as bottom field first using single-frame detection.
12735
12736 @item multiple.current_frame
12737 Detected type of current frame using multiple-frame detection. One of:
12738 ``tff'' (top field first), ``bff'' (bottom field first),
12739 ``progressive'', or ``undetermined''
12740
12741 @item multiple.bff
12742 Cumulative number of frames detected as bottom field first using multiple-frame detection.
12743
12744 @item single.progressive
12745 Cumulative number of frames detected as progressive using single-frame detection.
12746
12747 @item multiple.progressive
12748 Cumulative number of frames detected as progressive using multiple-frame detection.
12749
12750 @item single.undetermined
12751 Cumulative number of frames that could not be classified using single-frame detection.
12752
12753 @item multiple.undetermined
12754 Cumulative number of frames that could not be classified using multiple-frame detection.
12755
12756 @item repeated.current_frame
12757 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
12758
12759 @item repeated.neither
12760 Cumulative number of frames with no repeated field.
12761
12762 @item repeated.top
12763 Cumulative number of frames with the top field repeated from the previous frame's top field.
12764
12765 @item repeated.bottom
12766 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
12767 @end table
12768
12769 The filter accepts the following options:
12770
12771 @table @option
12772 @item intl_thres
12773 Set interlacing threshold.
12774 @item prog_thres
12775 Set progressive threshold.
12776 @item rep_thres
12777 Threshold for repeated field detection.
12778 @item half_life
12779 Number of frames after which a given frame's contribution to the
12780 statistics is halved (i.e., it contributes only 0.5 to its
12781 classification). The default of 0 means that all frames seen are given
12782 full weight of 1.0 forever.
12783 @item analyze_interlaced_flag
12784 When this is not 0 then idet will use the specified number of frames to determine
12785 if the interlaced flag is accurate, it will not count undetermined frames.
12786 If the flag is found to be accurate it will be used without any further
12787 computations, if it is found to be inaccurate it will be cleared without any
12788 further computations. This allows inserting the idet filter as a low computational
12789 method to clean up the interlaced flag
12790 @end table
12791
12792 @section il
12793
12794 Deinterleave or interleave fields.
12795
12796 This filter allows one to process interlaced images fields without
12797 deinterlacing them. Deinterleaving splits the input frame into 2
12798 fields (so called half pictures). Odd lines are moved to the top
12799 half of the output image, even lines to the bottom half.
12800 You can process (filter) them independently and then re-interleave them.
12801
12802 The filter accepts the following options:
12803
12804 @table @option
12805 @item luma_mode, l
12806 @item chroma_mode, c
12807 @item alpha_mode, a
12808 Available values for @var{luma_mode}, @var{chroma_mode} and
12809 @var{alpha_mode} are:
12810
12811 @table @samp
12812 @item none
12813 Do nothing.
12814
12815 @item deinterleave, d
12816 Deinterleave fields, placing one above the other.
12817
12818 @item interleave, i
12819 Interleave fields. Reverse the effect of deinterleaving.
12820 @end table
12821 Default value is @code{none}.
12822
12823 @item luma_swap, ls
12824 @item chroma_swap, cs
12825 @item alpha_swap, as
12826 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
12827 @end table
12828
12829 @subsection Commands
12830
12831 This filter supports the all above options as @ref{commands}.
12832
12833 @section inflate
12834
12835 Apply inflate effect to the video.
12836
12837 This filter replaces the pixel by the local(3x3) average by taking into account
12838 only values higher than the pixel.
12839
12840 It accepts the following options:
12841
12842 @table @option
12843 @item threshold0
12844 @item threshold1
12845 @item threshold2
12846 @item threshold3
12847 Limit the maximum change for each plane, default is 65535.
12848 If 0, plane will remain unchanged.
12849 @end table
12850
12851 @subsection Commands
12852
12853 This filter supports the all above options as @ref{commands}.
12854
12855 @section interlace
12856
12857 Simple interlacing filter from progressive contents. This interleaves upper (or
12858 lower) lines from odd frames with lower (or upper) lines from even frames,
12859 halving the frame rate and preserving image height.
12860
12861 @example
12862    Original        Original             New Frame
12863    Frame 'j'      Frame 'j+1'             (tff)
12864   ==========      ===========       ==================
12865     Line 0  -------------------->    Frame 'j' Line 0
12866     Line 1          Line 1  ---->   Frame 'j+1' Line 1
12867     Line 2 --------------------->    Frame 'j' Line 2
12868     Line 3          Line 3  ---->   Frame 'j+1' Line 3
12869      ...             ...                   ...
12870 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
12871 @end example
12872
12873 It accepts the following optional parameters:
12874
12875 @table @option
12876 @item scan
12877 This determines whether the interlaced frame is taken from the even
12878 (tff - default) or odd (bff) lines of the progressive frame.
12879
12880 @item lowpass
12881 Vertical lowpass filter to avoid twitter interlacing and
12882 reduce moire patterns.
12883
12884 @table @samp
12885 @item 0, off
12886 Disable vertical lowpass filter
12887
12888 @item 1, linear
12889 Enable linear filter (default)
12890
12891 @item 2, complex
12892 Enable complex filter. This will slightly less reduce twitter and moire
12893 but better retain detail and subjective sharpness impression.
12894
12895 @end table
12896 @end table
12897
12898 @section kerndeint
12899
12900 Deinterlace input video by applying Donald Graft's adaptive kernel
12901 deinterling. Work on interlaced parts of a video to produce
12902 progressive frames.
12903
12904 The description of the accepted parameters follows.
12905
12906 @table @option
12907 @item thresh
12908 Set the threshold which affects the filter's tolerance when
12909 determining if a pixel line must be processed. It must be an integer
12910 in the range [0,255] and defaults to 10. A value of 0 will result in
12911 applying the process on every pixels.
12912
12913 @item map
12914 Paint pixels exceeding the threshold value to white if set to 1.
12915 Default is 0.
12916
12917 @item order
12918 Set the fields order. Swap fields if set to 1, leave fields alone if
12919 0. Default is 0.
12920
12921 @item sharp
12922 Enable additional sharpening if set to 1. Default is 0.
12923
12924 @item twoway
12925 Enable twoway sharpening if set to 1. Default is 0.
12926 @end table
12927
12928 @subsection Examples
12929
12930 @itemize
12931 @item
12932 Apply default values:
12933 @example
12934 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
12935 @end example
12936
12937 @item
12938 Enable additional sharpening:
12939 @example
12940 kerndeint=sharp=1
12941 @end example
12942
12943 @item
12944 Paint processed pixels in white:
12945 @example
12946 kerndeint=map=1
12947 @end example
12948 @end itemize
12949
12950 @section lagfun
12951
12952 Slowly update darker pixels.
12953
12954 This filter makes short flashes of light appear longer.
12955 This filter accepts the following options:
12956
12957 @table @option
12958 @item decay
12959 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
12960
12961 @item planes
12962 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
12963 @end table
12964
12965 @section lenscorrection
12966
12967 Correct radial lens distortion
12968
12969 This filter can be used to correct for radial distortion as can result from the use
12970 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
12971 one can use tools available for example as part of opencv or simply trial-and-error.
12972 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
12973 and extract the k1 and k2 coefficients from the resulting matrix.
12974
12975 Note that effectively the same filter is available in the open-source tools Krita and
12976 Digikam from the KDE project.
12977
12978 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
12979 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
12980 brightness distribution, so you may want to use both filters together in certain
12981 cases, though you will have to take care of ordering, i.e. whether vignetting should
12982 be applied before or after lens correction.
12983
12984 @subsection Options
12985
12986 The filter accepts the following options:
12987
12988 @table @option
12989 @item cx
12990 Relative x-coordinate of the focal point of the image, and thereby the center of the
12991 distortion. This value has a range [0,1] and is expressed as fractions of the image
12992 width. Default is 0.5.
12993 @item cy
12994 Relative y-coordinate of the focal point of the image, and thereby the center of the
12995 distortion. This value has a range [0,1] and is expressed as fractions of the image
12996 height. Default is 0.5.
12997 @item k1
12998 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
12999 no correction. Default is 0.
13000 @item k2
13001 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13002 0 means no correction. Default is 0.
13003 @end table
13004
13005 The formula that generates the correction is:
13006
13007 @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)
13008
13009 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13010 distances from the focal point in the source and target images, respectively.
13011
13012 @section lensfun
13013
13014 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13015
13016 The @code{lensfun} filter requires the camera make, camera model, and lens model
13017 to apply the lens correction. The filter will load the lensfun database and
13018 query it to find the corresponding camera and lens entries in the database. As
13019 long as these entries can be found with the given options, the filter can
13020 perform corrections on frames. Note that incomplete strings will result in the
13021 filter choosing the best match with the given options, and the filter will
13022 output the chosen camera and lens models (logged with level "info"). You must
13023 provide the make, camera model, and lens model as they are required.
13024
13025 The filter accepts the following options:
13026
13027 @table @option
13028 @item make
13029 The make of the camera (for example, "Canon"). This option is required.
13030
13031 @item model
13032 The model of the camera (for example, "Canon EOS 100D"). This option is
13033 required.
13034
13035 @item lens_model
13036 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13037 option is required.
13038
13039 @item mode
13040 The type of correction to apply. The following values are valid options:
13041
13042 @table @samp
13043 @item vignetting
13044 Enables fixing lens vignetting.
13045
13046 @item geometry
13047 Enables fixing lens geometry. This is the default.
13048
13049 @item subpixel
13050 Enables fixing chromatic aberrations.
13051
13052 @item vig_geo
13053 Enables fixing lens vignetting and lens geometry.
13054
13055 @item vig_subpixel
13056 Enables fixing lens vignetting and chromatic aberrations.
13057
13058 @item distortion
13059 Enables fixing both lens geometry and chromatic aberrations.
13060
13061 @item all
13062 Enables all possible corrections.
13063
13064 @end table
13065 @item focal_length
13066 The focal length of the image/video (zoom; expected constant for video). For
13067 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13068 range should be chosen when using that lens. Default 18.
13069
13070 @item aperture
13071 The aperture of the image/video (expected constant for video). Note that
13072 aperture is only used for vignetting correction. Default 3.5.
13073
13074 @item focus_distance
13075 The focus distance of the image/video (expected constant for video). Note that
13076 focus distance is only used for vignetting and only slightly affects the
13077 vignetting correction process. If unknown, leave it at the default value (which
13078 is 1000).
13079
13080 @item scale
13081 The scale factor which is applied after transformation. After correction the
13082 video is no longer necessarily rectangular. This parameter controls how much of
13083 the resulting image is visible. The value 0 means that a value will be chosen
13084 automatically such that there is little or no unmapped area in the output
13085 image. 1.0 means that no additional scaling is done. Lower values may result
13086 in more of the corrected image being visible, while higher values may avoid
13087 unmapped areas in the output.
13088
13089 @item target_geometry
13090 The target geometry of the output image/video. The following values are valid
13091 options:
13092
13093 @table @samp
13094 @item rectilinear (default)
13095 @item fisheye
13096 @item panoramic
13097 @item equirectangular
13098 @item fisheye_orthographic
13099 @item fisheye_stereographic
13100 @item fisheye_equisolid
13101 @item fisheye_thoby
13102 @end table
13103 @item reverse
13104 Apply the reverse of image correction (instead of correcting distortion, apply
13105 it).
13106
13107 @item interpolation
13108 The type of interpolation used when correcting distortion. The following values
13109 are valid options:
13110
13111 @table @samp
13112 @item nearest
13113 @item linear (default)
13114 @item lanczos
13115 @end table
13116 @end table
13117
13118 @subsection Examples
13119
13120 @itemize
13121 @item
13122 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13123 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13124 aperture of "8.0".
13125
13126 @example
13127 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
13128 @end example
13129
13130 @item
13131 Apply the same as before, but only for the first 5 seconds of video.
13132
13133 @example
13134 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
13135 @end example
13136
13137 @end itemize
13138
13139 @section libvmaf
13140
13141 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13142 score between two input videos.
13143
13144 The obtained VMAF score is printed through the logging system.
13145
13146 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13147 After installing the library it can be enabled using:
13148 @code{./configure --enable-libvmaf}.
13149 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13150
13151 The filter has following options:
13152
13153 @table @option
13154 @item model_path
13155 Set the model path which is to be used for SVM.
13156 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13157
13158 @item log_path
13159 Set the file path to be used to store logs.
13160
13161 @item log_fmt
13162 Set the format of the log file (csv, json or xml).
13163
13164 @item enable_transform
13165 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13166 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13167 Default value: @code{false}
13168
13169 @item phone_model
13170 Invokes the phone model which will generate VMAF scores higher than in the
13171 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13172 Default value: @code{false}
13173
13174 @item psnr
13175 Enables computing psnr along with vmaf.
13176 Default value: @code{false}
13177
13178 @item ssim
13179 Enables computing ssim along with vmaf.
13180 Default value: @code{false}
13181
13182 @item ms_ssim
13183 Enables computing ms_ssim along with vmaf.
13184 Default value: @code{false}
13185
13186 @item pool
13187 Set the pool method to be used for computing vmaf.
13188 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13189
13190 @item n_threads
13191 Set number of threads to be used when computing vmaf.
13192 Default value: @code{0}, which makes use of all available logical processors.
13193
13194 @item n_subsample
13195 Set interval for frame subsampling used when computing vmaf.
13196 Default value: @code{1}
13197
13198 @item enable_conf_interval
13199 Enables confidence interval.
13200 Default value: @code{false}
13201 @end table
13202
13203 This filter also supports the @ref{framesync} options.
13204
13205 @subsection Examples
13206 @itemize
13207 @item
13208 On the below examples the input file @file{main.mpg} being processed is
13209 compared with the reference file @file{ref.mpg}.
13210
13211 @example
13212 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13213 @end example
13214
13215 @item
13216 Example with options:
13217 @example
13218 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13219 @end example
13220
13221 @item
13222 Example with options and different containers:
13223 @example
13224 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 -
13225 @end example
13226 @end itemize
13227
13228 @section limiter
13229
13230 Limits the pixel components values to the specified range [min, max].
13231
13232 The filter accepts the following options:
13233
13234 @table @option
13235 @item min
13236 Lower bound. Defaults to the lowest allowed value for the input.
13237
13238 @item max
13239 Upper bound. Defaults to the highest allowed value for the input.
13240
13241 @item planes
13242 Specify which planes will be processed. Defaults to all available.
13243 @end table
13244
13245 @section loop
13246
13247 Loop video frames.
13248
13249 The filter accepts the following options:
13250
13251 @table @option
13252 @item loop
13253 Set the number of loops. Setting this value to -1 will result in infinite loops.
13254 Default is 0.
13255
13256 @item size
13257 Set maximal size in number of frames. Default is 0.
13258
13259 @item start
13260 Set first frame of loop. Default is 0.
13261 @end table
13262
13263 @subsection Examples
13264
13265 @itemize
13266 @item
13267 Loop single first frame infinitely:
13268 @example
13269 loop=loop=-1:size=1:start=0
13270 @end example
13271
13272 @item
13273 Loop single first frame 10 times:
13274 @example
13275 loop=loop=10:size=1:start=0
13276 @end example
13277
13278 @item
13279 Loop 10 first frames 5 times:
13280 @example
13281 loop=loop=5:size=10:start=0
13282 @end example
13283 @end itemize
13284
13285 @section lut1d
13286
13287 Apply a 1D LUT to an input video.
13288
13289 The filter accepts the following options:
13290
13291 @table @option
13292 @item file
13293 Set the 1D LUT file name.
13294
13295 Currently supported formats:
13296 @table @samp
13297 @item cube
13298 Iridas
13299 @item csp
13300 cineSpace
13301 @end table
13302
13303 @item interp
13304 Select interpolation mode.
13305
13306 Available values are:
13307
13308 @table @samp
13309 @item nearest
13310 Use values from the nearest defined point.
13311 @item linear
13312 Interpolate values using the linear interpolation.
13313 @item cosine
13314 Interpolate values using the cosine interpolation.
13315 @item cubic
13316 Interpolate values using the cubic interpolation.
13317 @item spline
13318 Interpolate values using the spline interpolation.
13319 @end table
13320 @end table
13321
13322 @anchor{lut3d}
13323 @section lut3d
13324
13325 Apply a 3D LUT to an input video.
13326
13327 The filter accepts the following options:
13328
13329 @table @option
13330 @item file
13331 Set the 3D LUT file name.
13332
13333 Currently supported formats:
13334 @table @samp
13335 @item 3dl
13336 AfterEffects
13337 @item cube
13338 Iridas
13339 @item dat
13340 DaVinci
13341 @item m3d
13342 Pandora
13343 @item csp
13344 cineSpace
13345 @end table
13346 @item interp
13347 Select interpolation mode.
13348
13349 Available values are:
13350
13351 @table @samp
13352 @item nearest
13353 Use values from the nearest defined point.
13354 @item trilinear
13355 Interpolate values using the 8 points defining a cube.
13356 @item tetrahedral
13357 Interpolate values using a tetrahedron.
13358 @end table
13359 @end table
13360
13361 @section lumakey
13362
13363 Turn certain luma values into transparency.
13364
13365 The filter accepts the following options:
13366
13367 @table @option
13368 @item threshold
13369 Set the luma which will be used as base for transparency.
13370 Default value is @code{0}.
13371
13372 @item tolerance
13373 Set the range of luma values to be keyed out.
13374 Default value is @code{0.01}.
13375
13376 @item softness
13377 Set the range of softness. Default value is @code{0}.
13378 Use this to control gradual transition from zero to full transparency.
13379 @end table
13380
13381 @subsection Commands
13382 This filter supports same @ref{commands} as options.
13383 The command accepts the same syntax of the corresponding option.
13384
13385 If the specified expression is not valid, it is kept at its current
13386 value.
13387
13388 @section lut, lutrgb, lutyuv
13389
13390 Compute a look-up table for binding each pixel component input value
13391 to an output value, and apply it to the input video.
13392
13393 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
13394 to an RGB input video.
13395
13396 These filters accept the following parameters:
13397 @table @option
13398 @item c0
13399 set first pixel component expression
13400 @item c1
13401 set second pixel component expression
13402 @item c2
13403 set third pixel component expression
13404 @item c3
13405 set fourth pixel component expression, corresponds to the alpha component
13406
13407 @item r
13408 set red component expression
13409 @item g
13410 set green component expression
13411 @item b
13412 set blue component expression
13413 @item a
13414 alpha component expression
13415
13416 @item y
13417 set Y/luminance component expression
13418 @item u
13419 set U/Cb component expression
13420 @item v
13421 set V/Cr component expression
13422 @end table
13423
13424 Each of them specifies the expression to use for computing the lookup table for
13425 the corresponding pixel component values.
13426
13427 The exact component associated to each of the @var{c*} options depends on the
13428 format in input.
13429
13430 The @var{lut} filter requires either YUV or RGB pixel formats in input,
13431 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
13432
13433 The expressions can contain the following constants and functions:
13434
13435 @table @option
13436 @item w
13437 @item h
13438 The input width and height.
13439
13440 @item val
13441 The input value for the pixel component.
13442
13443 @item clipval
13444 The input value, clipped to the @var{minval}-@var{maxval} range.
13445
13446 @item maxval
13447 The maximum value for the pixel component.
13448
13449 @item minval
13450 The minimum value for the pixel component.
13451
13452 @item negval
13453 The negated value for the pixel component value, clipped to the
13454 @var{minval}-@var{maxval} range; it corresponds to the expression
13455 "maxval-clipval+minval".
13456
13457 @item clip(val)
13458 The computed value in @var{val}, clipped to the
13459 @var{minval}-@var{maxval} range.
13460
13461 @item gammaval(gamma)
13462 The computed gamma correction value of the pixel component value,
13463 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13464 expression
13465 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13466
13467 @end table
13468
13469 All expressions default to "val".
13470
13471 @subsection Examples
13472
13473 @itemize
13474 @item
13475 Negate input video:
13476 @example
13477 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13478 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13479 @end example
13480
13481 The above is the same as:
13482 @example
13483 lutrgb="r=negval:g=negval:b=negval"
13484 lutyuv="y=negval:u=negval:v=negval"
13485 @end example
13486
13487 @item
13488 Negate luminance:
13489 @example
13490 lutyuv=y=negval
13491 @end example
13492
13493 @item
13494 Remove chroma components, turning the video into a graytone image:
13495 @example
13496 lutyuv="u=128:v=128"
13497 @end example
13498
13499 @item
13500 Apply a luma burning effect:
13501 @example
13502 lutyuv="y=2*val"
13503 @end example
13504
13505 @item
13506 Remove green and blue components:
13507 @example
13508 lutrgb="g=0:b=0"
13509 @end example
13510
13511 @item
13512 Set a constant alpha channel value on input:
13513 @example
13514 format=rgba,lutrgb=a="maxval-minval/2"
13515 @end example
13516
13517 @item
13518 Correct luminance gamma by a factor of 0.5:
13519 @example
13520 lutyuv=y=gammaval(0.5)
13521 @end example
13522
13523 @item
13524 Discard least significant bits of luma:
13525 @example
13526 lutyuv=y='bitand(val, 128+64+32)'
13527 @end example
13528
13529 @item
13530 Technicolor like effect:
13531 @example
13532 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
13533 @end example
13534 @end itemize
13535
13536 @section lut2, tlut2
13537
13538 The @code{lut2} filter takes two input streams and outputs one
13539 stream.
13540
13541 The @code{tlut2} (time lut2) filter takes two consecutive frames
13542 from one single stream.
13543
13544 This filter accepts the following parameters:
13545 @table @option
13546 @item c0
13547 set first pixel component expression
13548 @item c1
13549 set second pixel component expression
13550 @item c2
13551 set third pixel component expression
13552 @item c3
13553 set fourth pixel component expression, corresponds to the alpha component
13554
13555 @item d
13556 set output bit depth, only available for @code{lut2} filter. By default is 0,
13557 which means bit depth is automatically picked from first input format.
13558 @end table
13559
13560 The @code{lut2} filter also supports the @ref{framesync} options.
13561
13562 Each of them specifies the expression to use for computing the lookup table for
13563 the corresponding pixel component values.
13564
13565 The exact component associated to each of the @var{c*} options depends on the
13566 format in inputs.
13567
13568 The expressions can contain the following constants:
13569
13570 @table @option
13571 @item w
13572 @item h
13573 The input width and height.
13574
13575 @item x
13576 The first input value for the pixel component.
13577
13578 @item y
13579 The second input value for the pixel component.
13580
13581 @item bdx
13582 The first input video bit depth.
13583
13584 @item bdy
13585 The second input video bit depth.
13586 @end table
13587
13588 All expressions default to "x".
13589
13590 @subsection Examples
13591
13592 @itemize
13593 @item
13594 Highlight differences between two RGB video streams:
13595 @example
13596 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)'
13597 @end example
13598
13599 @item
13600 Highlight differences between two YUV video streams:
13601 @example
13602 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)'
13603 @end example
13604
13605 @item
13606 Show max difference between two video streams:
13607 @example
13608 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)))'
13609 @end example
13610 @end itemize
13611
13612 @section maskedclamp
13613
13614 Clamp the first input stream with the second input and third input stream.
13615
13616 Returns the value of first stream to be between second input
13617 stream - @code{undershoot} and third input stream + @code{overshoot}.
13618
13619 This filter accepts the following options:
13620 @table @option
13621 @item undershoot
13622 Default value is @code{0}.
13623
13624 @item overshoot
13625 Default value is @code{0}.
13626
13627 @item planes
13628 Set which planes will be processed as bitmap, unprocessed planes will be
13629 copied from first stream.
13630 By default value 0xf, all planes will be processed.
13631 @end table
13632
13633 @section maskedmax
13634
13635 Merge the second and third input stream into output stream using absolute differences
13636 between second input stream and first input stream and absolute difference between
13637 third input stream and first input stream. The picked value will be from second input
13638 stream if second absolute difference is greater than first one or from third input stream
13639 otherwise.
13640
13641 This filter accepts the following options:
13642 @table @option
13643 @item planes
13644 Set which planes will be processed as bitmap, unprocessed planes will be
13645 copied from first stream.
13646 By default value 0xf, all planes will be processed.
13647 @end table
13648
13649 @section maskedmerge
13650
13651 Merge the first input stream with the second input stream using per pixel
13652 weights in the third input stream.
13653
13654 A value of 0 in the third stream pixel component means that pixel component
13655 from first stream is returned unchanged, while maximum value (eg. 255 for
13656 8-bit videos) means that pixel component from second stream is returned
13657 unchanged. Intermediate values define the amount of merging between both
13658 input stream's pixel components.
13659
13660 This filter accepts the following options:
13661 @table @option
13662 @item planes
13663 Set which planes will be processed as bitmap, unprocessed planes will be
13664 copied from first stream.
13665 By default value 0xf, all planes will be processed.
13666 @end table
13667
13668 @section maskedmin
13669
13670 Merge the second and third input stream into output stream using absolute differences
13671 between second input stream and first input stream and absolute difference between
13672 third input stream and first input stream. The picked value will be from second input
13673 stream if second absolute difference is less than first one or from third input stream
13674 otherwise.
13675
13676 This filter accepts the following options:
13677 @table @option
13678 @item planes
13679 Set which planes will be processed as bitmap, unprocessed planes will be
13680 copied from first stream.
13681 By default value 0xf, all planes will be processed.
13682 @end table
13683
13684 @section maskedthreshold
13685 Pick pixels comparing absolute difference of two video streams with fixed
13686 threshold.
13687
13688 If absolute difference between pixel component of first and second video
13689 stream is equal or lower than user supplied threshold than pixel component
13690 from first video stream is picked, otherwise pixel component from second
13691 video stream is picked.
13692
13693 This filter accepts the following options:
13694 @table @option
13695 @item threshold
13696 Set threshold used when picking pixels from absolute difference from two input
13697 video streams.
13698
13699 @item planes
13700 Set which planes will be processed as bitmap, unprocessed planes will be
13701 copied from second stream.
13702 By default value 0xf, all planes will be processed.
13703 @end table
13704
13705 @section maskfun
13706 Create mask from input video.
13707
13708 For example it is useful to create motion masks after @code{tblend} filter.
13709
13710 This filter accepts the following options:
13711
13712 @table @option
13713 @item low
13714 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
13715
13716 @item high
13717 Set high threshold. Any pixel component higher than this value will be set to max value
13718 allowed for current pixel format.
13719
13720 @item planes
13721 Set planes to filter, by default all available planes are filtered.
13722
13723 @item fill
13724 Fill all frame pixels with this value.
13725
13726 @item sum
13727 Set max average pixel value for frame. If sum of all pixel components is higher that this
13728 average, output frame will be completely filled with value set by @var{fill} option.
13729 Typically useful for scene changes when used in combination with @code{tblend} filter.
13730 @end table
13731
13732 @section mcdeint
13733
13734 Apply motion-compensation deinterlacing.
13735
13736 It needs one field per frame as input and must thus be used together
13737 with yadif=1/3 or equivalent.
13738
13739 This filter accepts the following options:
13740 @table @option
13741 @item mode
13742 Set the deinterlacing mode.
13743
13744 It accepts one of the following values:
13745 @table @samp
13746 @item fast
13747 @item medium
13748 @item slow
13749 use iterative motion estimation
13750 @item extra_slow
13751 like @samp{slow}, but use multiple reference frames.
13752 @end table
13753 Default value is @samp{fast}.
13754
13755 @item parity
13756 Set the picture field parity assumed for the input video. It must be
13757 one of the following values:
13758
13759 @table @samp
13760 @item 0, tff
13761 assume top field first
13762 @item 1, bff
13763 assume bottom field first
13764 @end table
13765
13766 Default value is @samp{bff}.
13767
13768 @item qp
13769 Set per-block quantization parameter (QP) used by the internal
13770 encoder.
13771
13772 Higher values should result in a smoother motion vector field but less
13773 optimal individual vectors. Default value is 1.
13774 @end table
13775
13776 @section median
13777
13778 Pick median pixel from certain rectangle defined by radius.
13779
13780 This filter accepts the following options:
13781
13782 @table @option
13783 @item radius
13784 Set horizontal radius size. Default value is @code{1}.
13785 Allowed range is integer from 1 to 127.
13786
13787 @item planes
13788 Set which planes to process. Default is @code{15}, which is all available planes.
13789
13790 @item radiusV
13791 Set vertical radius size. Default value is @code{0}.
13792 Allowed range is integer from 0 to 127.
13793 If it is 0, value will be picked from horizontal @code{radius} option.
13794
13795 @item percentile
13796 Set median percentile. Default value is @code{0.5}.
13797 Default value of @code{0.5} will pick always median values, while @code{0} will pick
13798 minimum values, and @code{1} maximum values.
13799 @end table
13800
13801 @subsection Commands
13802 This filter supports same @ref{commands} as options.
13803 The command accepts the same syntax of the corresponding option.
13804
13805 If the specified expression is not valid, it is kept at its current
13806 value.
13807
13808 @section mergeplanes
13809
13810 Merge color channel components from several video streams.
13811
13812 The filter accepts up to 4 input streams, and merge selected input
13813 planes to the output video.
13814
13815 This filter accepts the following options:
13816 @table @option
13817 @item mapping
13818 Set input to output plane mapping. Default is @code{0}.
13819
13820 The mappings is specified as a bitmap. It should be specified as a
13821 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
13822 mapping for the first plane of the output stream. 'A' sets the number of
13823 the input stream to use (from 0 to 3), and 'a' the plane number of the
13824 corresponding input to use (from 0 to 3). The rest of the mappings is
13825 similar, 'Bb' describes the mapping for the output stream second
13826 plane, 'Cc' describes the mapping for the output stream third plane and
13827 'Dd' describes the mapping for the output stream fourth plane.
13828
13829 @item format
13830 Set output pixel format. Default is @code{yuva444p}.
13831 @end table
13832
13833 @subsection Examples
13834
13835 @itemize
13836 @item
13837 Merge three gray video streams of same width and height into single video stream:
13838 @example
13839 [a0][a1][a2]mergeplanes=0x001020:yuv444p
13840 @end example
13841
13842 @item
13843 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
13844 @example
13845 [a0][a1]mergeplanes=0x00010210:yuva444p
13846 @end example
13847
13848 @item
13849 Swap Y and A plane in yuva444p stream:
13850 @example
13851 format=yuva444p,mergeplanes=0x03010200:yuva444p
13852 @end example
13853
13854 @item
13855 Swap U and V plane in yuv420p stream:
13856 @example
13857 format=yuv420p,mergeplanes=0x000201:yuv420p
13858 @end example
13859
13860 @item
13861 Cast a rgb24 clip to yuv444p:
13862 @example
13863 format=rgb24,mergeplanes=0x000102:yuv444p
13864 @end example
13865 @end itemize
13866
13867 @section mestimate
13868
13869 Estimate and export motion vectors using block matching algorithms.
13870 Motion vectors are stored in frame side data to be used by other filters.
13871
13872 This filter accepts the following options:
13873 @table @option
13874 @item method
13875 Specify the motion estimation method. Accepts one of the following values:
13876
13877 @table @samp
13878 @item esa
13879 Exhaustive search algorithm.
13880 @item tss
13881 Three step search algorithm.
13882 @item tdls
13883 Two dimensional logarithmic search algorithm.
13884 @item ntss
13885 New three step search algorithm.
13886 @item fss
13887 Four step search algorithm.
13888 @item ds
13889 Diamond search algorithm.
13890 @item hexbs
13891 Hexagon-based search algorithm.
13892 @item epzs
13893 Enhanced predictive zonal search algorithm.
13894 @item umh
13895 Uneven multi-hexagon search algorithm.
13896 @end table
13897 Default value is @samp{esa}.
13898
13899 @item mb_size
13900 Macroblock size. Default @code{16}.
13901
13902 @item search_param
13903 Search parameter. Default @code{7}.
13904 @end table
13905
13906 @section midequalizer
13907
13908 Apply Midway Image Equalization effect using two video streams.
13909
13910 Midway Image Equalization adjusts a pair of images to have the same
13911 histogram, while maintaining their dynamics as much as possible. It's
13912 useful for e.g. matching exposures from a pair of stereo cameras.
13913
13914 This filter has two inputs and one output, which must be of same pixel format, but
13915 may be of different sizes. The output of filter is first input adjusted with
13916 midway histogram of both inputs.
13917
13918 This filter accepts the following option:
13919
13920 @table @option
13921 @item planes
13922 Set which planes to process. Default is @code{15}, which is all available planes.
13923 @end table
13924
13925 @section minterpolate
13926
13927 Convert the video to specified frame rate using motion interpolation.
13928
13929 This filter accepts the following options:
13930 @table @option
13931 @item fps
13932 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}.
13933
13934 @item mi_mode
13935 Motion interpolation mode. Following values are accepted:
13936 @table @samp
13937 @item dup
13938 Duplicate previous or next frame for interpolating new ones.
13939 @item blend
13940 Blend source frames. Interpolated frame is mean of previous and next frames.
13941 @item mci
13942 Motion compensated interpolation. Following options are effective when this mode is selected:
13943
13944 @table @samp
13945 @item mc_mode
13946 Motion compensation mode. Following values are accepted:
13947 @table @samp
13948 @item obmc
13949 Overlapped block motion compensation.
13950 @item aobmc
13951 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
13952 @end table
13953 Default mode is @samp{obmc}.
13954
13955 @item me_mode
13956 Motion estimation mode. Following values are accepted:
13957 @table @samp
13958 @item bidir
13959 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
13960 @item bilat
13961 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
13962 @end table
13963 Default mode is @samp{bilat}.
13964
13965 @item me
13966 The algorithm to be used for motion estimation. Following values are accepted:
13967 @table @samp
13968 @item esa
13969 Exhaustive search algorithm.
13970 @item tss
13971 Three step search algorithm.
13972 @item tdls
13973 Two dimensional logarithmic search algorithm.
13974 @item ntss
13975 New three step search algorithm.
13976 @item fss
13977 Four step search algorithm.
13978 @item ds
13979 Diamond search algorithm.
13980 @item hexbs
13981 Hexagon-based search algorithm.
13982 @item epzs
13983 Enhanced predictive zonal search algorithm.
13984 @item umh
13985 Uneven multi-hexagon search algorithm.
13986 @end table
13987 Default algorithm is @samp{epzs}.
13988
13989 @item mb_size
13990 Macroblock size. Default @code{16}.
13991
13992 @item search_param
13993 Motion estimation search parameter. Default @code{32}.
13994
13995 @item vsbmc
13996 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).
13997 @end table
13998 @end table
13999
14000 @item scd
14001 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:
14002 @table @samp
14003 @item none
14004 Disable scene change detection.
14005 @item fdiff
14006 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14007 @end table
14008 Default method is @samp{fdiff}.
14009
14010 @item scd_threshold
14011 Scene change detection threshold. Default is @code{10.}.
14012 @end table
14013
14014 @section mix
14015
14016 Mix several video input streams into one video stream.
14017
14018 A description of the accepted options follows.
14019
14020 @table @option
14021 @item nb_inputs
14022 The number of inputs. If unspecified, it defaults to 2.
14023
14024 @item weights
14025 Specify weight of each input video stream as sequence.
14026 Each weight is separated by space. If number of weights
14027 is smaller than number of @var{frames} last specified
14028 weight will be used for all remaining unset weights.
14029
14030 @item scale
14031 Specify scale, if it is set it will be multiplied with sum
14032 of each weight multiplied with pixel values to give final destination
14033 pixel value. By default @var{scale} is auto scaled to sum of weights.
14034
14035 @item duration
14036 Specify how end of stream is determined.
14037 @table @samp
14038 @item longest
14039 The duration of the longest input. (default)
14040
14041 @item shortest
14042 The duration of the shortest input.
14043
14044 @item first
14045 The duration of the first input.
14046 @end table
14047 @end table
14048
14049 @section mpdecimate
14050
14051 Drop frames that do not differ greatly from the previous frame in
14052 order to reduce frame rate.
14053
14054 The main use of this filter is for very-low-bitrate encoding
14055 (e.g. streaming over dialup modem), but it could in theory be used for
14056 fixing movies that were inverse-telecined incorrectly.
14057
14058 A description of the accepted options follows.
14059
14060 @table @option
14061 @item max
14062 Set the maximum number of consecutive frames which can be dropped (if
14063 positive), or the minimum interval between dropped frames (if
14064 negative). If the value is 0, the frame is dropped disregarding the
14065 number of previous sequentially dropped frames.
14066
14067 Default value is 0.
14068
14069 @item hi
14070 @item lo
14071 @item frac
14072 Set the dropping threshold values.
14073
14074 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14075 represent actual pixel value differences, so a threshold of 64
14076 corresponds to 1 unit of difference for each pixel, or the same spread
14077 out differently over the block.
14078
14079 A frame is a candidate for dropping if no 8x8 blocks differ by more
14080 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14081 meaning the whole image) differ by more than a threshold of @option{lo}.
14082
14083 Default value for @option{hi} is 64*12, default value for @option{lo} is
14084 64*5, and default value for @option{frac} is 0.33.
14085 @end table
14086
14087
14088 @section negate
14089
14090 Negate (invert) the input video.
14091
14092 It accepts the following option:
14093
14094 @table @option
14095
14096 @item negate_alpha
14097 With value 1, it negates the alpha component, if present. Default value is 0.
14098 @end table
14099
14100 @anchor{nlmeans}
14101 @section nlmeans
14102
14103 Denoise frames using Non-Local Means algorithm.
14104
14105 Each pixel is adjusted by looking for other pixels with similar contexts. This
14106 context similarity is defined by comparing their surrounding patches of size
14107 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14108 around the pixel.
14109
14110 Note that the research area defines centers for patches, which means some
14111 patches will be made of pixels outside that research area.
14112
14113 The filter accepts the following options.
14114
14115 @table @option
14116 @item s
14117 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
14118
14119 @item p
14120 Set patch size. Default is 7. Must be odd number in range [0, 99].
14121
14122 @item pc
14123 Same as @option{p} but for chroma planes.
14124
14125 The default value is @var{0} and means automatic.
14126
14127 @item r
14128 Set research size. Default is 15. Must be odd number in range [0, 99].
14129
14130 @item rc
14131 Same as @option{r} but for chroma planes.
14132
14133 The default value is @var{0} and means automatic.
14134 @end table
14135
14136 @section nnedi
14137
14138 Deinterlace video using neural network edge directed interpolation.
14139
14140 This filter accepts the following options:
14141
14142 @table @option
14143 @item weights
14144 Mandatory option, without binary file filter can not work.
14145 Currently file can be found here:
14146 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
14147
14148 @item deint
14149 Set which frames to deinterlace, by default it is @code{all}.
14150 Can be @code{all} or @code{interlaced}.
14151
14152 @item field
14153 Set mode of operation.
14154
14155 Can be one of the following:
14156
14157 @table @samp
14158 @item af
14159 Use frame flags, both fields.
14160 @item a
14161 Use frame flags, single field.
14162 @item t
14163 Use top field only.
14164 @item b
14165 Use bottom field only.
14166 @item tf
14167 Use both fields, top first.
14168 @item bf
14169 Use both fields, bottom first.
14170 @end table
14171
14172 @item planes
14173 Set which planes to process, by default filter process all frames.
14174
14175 @item nsize
14176 Set size of local neighborhood around each pixel, used by the predictor neural
14177 network.
14178
14179 Can be one of the following:
14180
14181 @table @samp
14182 @item s8x6
14183 @item s16x6
14184 @item s32x6
14185 @item s48x6
14186 @item s8x4
14187 @item s16x4
14188 @item s32x4
14189 @end table
14190
14191 @item nns
14192 Set the number of neurons in predictor neural network.
14193 Can be one of the following:
14194
14195 @table @samp
14196 @item n16
14197 @item n32
14198 @item n64
14199 @item n128
14200 @item n256
14201 @end table
14202
14203 @item qual
14204 Controls the number of different neural network predictions that are blended
14205 together to compute the final output value. Can be @code{fast}, default or
14206 @code{slow}.
14207
14208 @item etype
14209 Set which set of weights to use in the predictor.
14210 Can be one of the following:
14211
14212 @table @samp
14213 @item a
14214 weights trained to minimize absolute error
14215 @item s
14216 weights trained to minimize squared error
14217 @end table
14218
14219 @item pscrn
14220 Controls whether or not the prescreener neural network is used to decide
14221 which pixels should be processed by the predictor neural network and which
14222 can be handled by simple cubic interpolation.
14223 The prescreener is trained to know whether cubic interpolation will be
14224 sufficient for a pixel or whether it should be predicted by the predictor nn.
14225 The computational complexity of the prescreener nn is much less than that of
14226 the predictor nn. Since most pixels can be handled by cubic interpolation,
14227 using the prescreener generally results in much faster processing.
14228 The prescreener is pretty accurate, so the difference between using it and not
14229 using it is almost always unnoticeable.
14230
14231 Can be one of the following:
14232
14233 @table @samp
14234 @item none
14235 @item original
14236 @item new
14237 @end table
14238
14239 Default is @code{new}.
14240
14241 @item fapprox
14242 Set various debugging flags.
14243 @end table
14244
14245 @section noformat
14246
14247 Force libavfilter not to use any of the specified pixel formats for the
14248 input to the next filter.
14249
14250 It accepts the following parameters:
14251 @table @option
14252
14253 @item pix_fmts
14254 A '|'-separated list of pixel format names, such as
14255 pix_fmts=yuv420p|monow|rgb24".
14256
14257 @end table
14258
14259 @subsection Examples
14260
14261 @itemize
14262 @item
14263 Force libavfilter to use a format different from @var{yuv420p} for the
14264 input to the vflip filter:
14265 @example
14266 noformat=pix_fmts=yuv420p,vflip
14267 @end example
14268
14269 @item
14270 Convert the input video to any of the formats not contained in the list:
14271 @example
14272 noformat=yuv420p|yuv444p|yuv410p
14273 @end example
14274 @end itemize
14275
14276 @section noise
14277
14278 Add noise on video input frame.
14279
14280 The filter accepts the following options:
14281
14282 @table @option
14283 @item all_seed
14284 @item c0_seed
14285 @item c1_seed
14286 @item c2_seed
14287 @item c3_seed
14288 Set noise seed for specific pixel component or all pixel components in case
14289 of @var{all_seed}. Default value is @code{123457}.
14290
14291 @item all_strength, alls
14292 @item c0_strength, c0s
14293 @item c1_strength, c1s
14294 @item c2_strength, c2s
14295 @item c3_strength, c3s
14296 Set noise strength for specific pixel component or all pixel components in case
14297 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
14298
14299 @item all_flags, allf
14300 @item c0_flags, c0f
14301 @item c1_flags, c1f
14302 @item c2_flags, c2f
14303 @item c3_flags, c3f
14304 Set pixel component flags or set flags for all components if @var{all_flags}.
14305 Available values for component flags are:
14306 @table @samp
14307 @item a
14308 averaged temporal noise (smoother)
14309 @item p
14310 mix random noise with a (semi)regular pattern
14311 @item t
14312 temporal noise (noise pattern changes between frames)
14313 @item u
14314 uniform noise (gaussian otherwise)
14315 @end table
14316 @end table
14317
14318 @subsection Examples
14319
14320 Add temporal and uniform noise to input video:
14321 @example
14322 noise=alls=20:allf=t+u
14323 @end example
14324
14325 @section normalize
14326
14327 Normalize RGB video (aka histogram stretching, contrast stretching).
14328 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
14329
14330 For each channel of each frame, the filter computes the input range and maps
14331 it linearly to the user-specified output range. The output range defaults
14332 to the full dynamic range from pure black to pure white.
14333
14334 Temporal smoothing can be used on the input range to reduce flickering (rapid
14335 changes in brightness) caused when small dark or bright objects enter or leave
14336 the scene. This is similar to the auto-exposure (automatic gain control) on a
14337 video camera, and, like a video camera, it may cause a period of over- or
14338 under-exposure of the video.
14339
14340 The R,G,B channels can be normalized independently, which may cause some
14341 color shifting, or linked together as a single channel, which prevents
14342 color shifting. Linked normalization preserves hue. Independent normalization
14343 does not, so it can be used to remove some color casts. Independent and linked
14344 normalization can be combined in any ratio.
14345
14346 The normalize filter accepts the following options:
14347
14348 @table @option
14349 @item blackpt
14350 @item whitept
14351 Colors which define the output range. The minimum input value is mapped to
14352 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
14353 The defaults are black and white respectively. Specifying white for
14354 @var{blackpt} and black for @var{whitept} will give color-inverted,
14355 normalized video. Shades of grey can be used to reduce the dynamic range
14356 (contrast). Specifying saturated colors here can create some interesting
14357 effects.
14358
14359 @item smoothing
14360 The number of previous frames to use for temporal smoothing. The input range
14361 of each channel is smoothed using a rolling average over the current frame
14362 and the @var{smoothing} previous frames. The default is 0 (no temporal
14363 smoothing).
14364
14365 @item independence
14366 Controls the ratio of independent (color shifting) channel normalization to
14367 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
14368 independent. Defaults to 1.0 (fully independent).
14369
14370 @item strength
14371 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
14372 expensive no-op. Defaults to 1.0 (full strength).
14373
14374 @end table
14375
14376 @subsection Commands
14377 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
14378 The command accepts the same syntax of the corresponding option.
14379
14380 If the specified expression is not valid, it is kept at its current
14381 value.
14382
14383 @subsection Examples
14384
14385 Stretch video contrast to use the full dynamic range, with no temporal
14386 smoothing; may flicker depending on the source content:
14387 @example
14388 normalize=blackpt=black:whitept=white:smoothing=0
14389 @end example
14390
14391 As above, but with 50 frames of temporal smoothing; flicker should be
14392 reduced, depending on the source content:
14393 @example
14394 normalize=blackpt=black:whitept=white:smoothing=50
14395 @end example
14396
14397 As above, but with hue-preserving linked channel normalization:
14398 @example
14399 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
14400 @end example
14401
14402 As above, but with half strength:
14403 @example
14404 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
14405 @end example
14406
14407 Map the darkest input color to red, the brightest input color to cyan:
14408 @example
14409 normalize=blackpt=red:whitept=cyan
14410 @end example
14411
14412 @section null
14413
14414 Pass the video source unchanged to the output.
14415
14416 @section ocr
14417 Optical Character Recognition
14418
14419 This filter uses Tesseract for optical character recognition. To enable
14420 compilation of this filter, you need to configure FFmpeg with
14421 @code{--enable-libtesseract}.
14422
14423 It accepts the following options:
14424
14425 @table @option
14426 @item datapath
14427 Set datapath to tesseract data. Default is to use whatever was
14428 set at installation.
14429
14430 @item language
14431 Set language, default is "eng".
14432
14433 @item whitelist
14434 Set character whitelist.
14435
14436 @item blacklist
14437 Set character blacklist.
14438 @end table
14439
14440 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
14441 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
14442
14443 @section ocv
14444
14445 Apply a video transform using libopencv.
14446
14447 To enable this filter, install the libopencv library and headers and
14448 configure FFmpeg with @code{--enable-libopencv}.
14449
14450 It accepts the following parameters:
14451
14452 @table @option
14453
14454 @item filter_name
14455 The name of the libopencv filter to apply.
14456
14457 @item filter_params
14458 The parameters to pass to the libopencv filter. If not specified, the default
14459 values are assumed.
14460
14461 @end table
14462
14463 Refer to the official libopencv documentation for more precise
14464 information:
14465 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
14466
14467 Several libopencv filters are supported; see the following subsections.
14468
14469 @anchor{dilate}
14470 @subsection dilate
14471
14472 Dilate an image by using a specific structuring element.
14473 It corresponds to the libopencv function @code{cvDilate}.
14474
14475 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
14476
14477 @var{struct_el} represents a structuring element, and has the syntax:
14478 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
14479
14480 @var{cols} and @var{rows} represent the number of columns and rows of
14481 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
14482 point, and @var{shape} the shape for the structuring element. @var{shape}
14483 must be "rect", "cross", "ellipse", or "custom".
14484
14485 If the value for @var{shape} is "custom", it must be followed by a
14486 string of the form "=@var{filename}". The file with name
14487 @var{filename} is assumed to represent a binary image, with each
14488 printable character corresponding to a bright pixel. When a custom
14489 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
14490 or columns and rows of the read file are assumed instead.
14491
14492 The default value for @var{struct_el} is "3x3+0x0/rect".
14493
14494 @var{nb_iterations} specifies the number of times the transform is
14495 applied to the image, and defaults to 1.
14496
14497 Some examples:
14498 @example
14499 # Use the default values
14500 ocv=dilate
14501
14502 # Dilate using a structuring element with a 5x5 cross, iterating two times
14503 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
14504
14505 # Read the shape from the file diamond.shape, iterating two times.
14506 # The file diamond.shape may contain a pattern of characters like this
14507 #   *
14508 #  ***
14509 # *****
14510 #  ***
14511 #   *
14512 # The specified columns and rows are ignored
14513 # but the anchor point coordinates are not
14514 ocv=dilate:0x0+2x2/custom=diamond.shape|2
14515 @end example
14516
14517 @subsection erode
14518
14519 Erode an image by using a specific structuring element.
14520 It corresponds to the libopencv function @code{cvErode}.
14521
14522 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
14523 with the same syntax and semantics as the @ref{dilate} filter.
14524
14525 @subsection smooth
14526
14527 Smooth the input video.
14528
14529 The filter takes the following parameters:
14530 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
14531
14532 @var{type} is the type of smooth filter to apply, and must be one of
14533 the following values: "blur", "blur_no_scale", "median", "gaussian",
14534 or "bilateral". The default value is "gaussian".
14535
14536 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
14537 depends on the smooth type. @var{param1} and
14538 @var{param2} accept integer positive values or 0. @var{param3} and
14539 @var{param4} accept floating point values.
14540
14541 The default value for @var{param1} is 3. The default value for the
14542 other parameters is 0.
14543
14544 These parameters correspond to the parameters assigned to the
14545 libopencv function @code{cvSmooth}.
14546
14547 @section oscilloscope
14548
14549 2D Video Oscilloscope.
14550
14551 Useful to measure spatial impulse, step responses, chroma delays, etc.
14552
14553 It accepts the following parameters:
14554
14555 @table @option
14556 @item x
14557 Set scope center x position.
14558
14559 @item y
14560 Set scope center y position.
14561
14562 @item s
14563 Set scope size, relative to frame diagonal.
14564
14565 @item t
14566 Set scope tilt/rotation.
14567
14568 @item o
14569 Set trace opacity.
14570
14571 @item tx
14572 Set trace center x position.
14573
14574 @item ty
14575 Set trace center y position.
14576
14577 @item tw
14578 Set trace width, relative to width of frame.
14579
14580 @item th
14581 Set trace height, relative to height of frame.
14582
14583 @item c
14584 Set which components to trace. By default it traces first three components.
14585
14586 @item g
14587 Draw trace grid. By default is enabled.
14588
14589 @item st
14590 Draw some statistics. By default is enabled.
14591
14592 @item sc
14593 Draw scope. By default is enabled.
14594 @end table
14595
14596 @subsection Commands
14597 This filter supports same @ref{commands} as options.
14598 The command accepts the same syntax of the corresponding option.
14599
14600 If the specified expression is not valid, it is kept at its current
14601 value.
14602
14603 @subsection Examples
14604
14605 @itemize
14606 @item
14607 Inspect full first row of video frame.
14608 @example
14609 oscilloscope=x=0.5:y=0:s=1
14610 @end example
14611
14612 @item
14613 Inspect full last row of video frame.
14614 @example
14615 oscilloscope=x=0.5:y=1:s=1
14616 @end example
14617
14618 @item
14619 Inspect full 5th line of video frame of height 1080.
14620 @example
14621 oscilloscope=x=0.5:y=5/1080:s=1
14622 @end example
14623
14624 @item
14625 Inspect full last column of video frame.
14626 @example
14627 oscilloscope=x=1:y=0.5:s=1:t=1
14628 @end example
14629
14630 @end itemize
14631
14632 @anchor{overlay}
14633 @section overlay
14634
14635 Overlay one video on top of another.
14636
14637 It takes two inputs and has one output. The first input is the "main"
14638 video on which the second input is overlaid.
14639
14640 It accepts the following parameters:
14641
14642 A description of the accepted options follows.
14643
14644 @table @option
14645 @item x
14646 @item y
14647 Set the expression for the x and y coordinates of the overlaid video
14648 on the main video. Default value is "0" for both expressions. In case
14649 the expression is invalid, it is set to a huge value (meaning that the
14650 overlay will not be displayed within the output visible area).
14651
14652 @item eof_action
14653 See @ref{framesync}.
14654
14655 @item eval
14656 Set when the expressions for @option{x}, and @option{y} are evaluated.
14657
14658 It accepts the following values:
14659 @table @samp
14660 @item init
14661 only evaluate expressions once during the filter initialization or
14662 when a command is processed
14663
14664 @item frame
14665 evaluate expressions for each incoming frame
14666 @end table
14667
14668 Default value is @samp{frame}.
14669
14670 @item shortest
14671 See @ref{framesync}.
14672
14673 @item format
14674 Set the format for the output video.
14675
14676 It accepts the following values:
14677 @table @samp
14678 @item yuv420
14679 force YUV420 output
14680
14681 @item yuv420p10
14682 force YUV420p10 output
14683
14684 @item yuv422
14685 force YUV422 output
14686
14687 @item yuv422p10
14688 force YUV422p10 output
14689
14690 @item yuv444
14691 force YUV444 output
14692
14693 @item rgb
14694 force packed RGB output
14695
14696 @item gbrp
14697 force planar RGB output
14698
14699 @item auto
14700 automatically pick format
14701 @end table
14702
14703 Default value is @samp{yuv420}.
14704
14705 @item repeatlast
14706 See @ref{framesync}.
14707
14708 @item alpha
14709 Set format of alpha of the overlaid video, it can be @var{straight} or
14710 @var{premultiplied}. Default is @var{straight}.
14711 @end table
14712
14713 The @option{x}, and @option{y} expressions can contain the following
14714 parameters.
14715
14716 @table @option
14717 @item main_w, W
14718 @item main_h, H
14719 The main input width and height.
14720
14721 @item overlay_w, w
14722 @item overlay_h, h
14723 The overlay input width and height.
14724
14725 @item x
14726 @item y
14727 The computed values for @var{x} and @var{y}. They are evaluated for
14728 each new frame.
14729
14730 @item hsub
14731 @item vsub
14732 horizontal and vertical chroma subsample values of the output
14733 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
14734 @var{vsub} is 1.
14735
14736 @item n
14737 the number of input frame, starting from 0
14738
14739 @item pos
14740 the position in the file of the input frame, NAN if unknown
14741
14742 @item t
14743 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
14744
14745 @end table
14746
14747 This filter also supports the @ref{framesync} options.
14748
14749 Note that the @var{n}, @var{pos}, @var{t} variables are available only
14750 when evaluation is done @emph{per frame}, and will evaluate to NAN
14751 when @option{eval} is set to @samp{init}.
14752
14753 Be aware that frames are taken from each input video in timestamp
14754 order, hence, if their initial timestamps differ, it is a good idea
14755 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
14756 have them begin in the same zero timestamp, as the example for
14757 the @var{movie} filter does.
14758
14759 You can chain together more overlays but you should test the
14760 efficiency of such approach.
14761
14762 @subsection Commands
14763
14764 This filter supports the following commands:
14765 @table @option
14766 @item x
14767 @item y
14768 Modify the x and y of the overlay input.
14769 The command accepts the same syntax of the corresponding option.
14770
14771 If the specified expression is not valid, it is kept at its current
14772 value.
14773 @end table
14774
14775 @subsection Examples
14776
14777 @itemize
14778 @item
14779 Draw the overlay at 10 pixels from the bottom right corner of the main
14780 video:
14781 @example
14782 overlay=main_w-overlay_w-10:main_h-overlay_h-10
14783 @end example
14784
14785 Using named options the example above becomes:
14786 @example
14787 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
14788 @end example
14789
14790 @item
14791 Insert a transparent PNG logo in the bottom left corner of the input,
14792 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
14793 @example
14794 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
14795 @end example
14796
14797 @item
14798 Insert 2 different transparent PNG logos (second logo on bottom
14799 right corner) using the @command{ffmpeg} tool:
14800 @example
14801 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
14802 @end example
14803
14804 @item
14805 Add a transparent color layer on top of the main video; @code{WxH}
14806 must specify the size of the main input to the overlay filter:
14807 @example
14808 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
14809 @end example
14810
14811 @item
14812 Play an original video and a filtered version (here with the deshake
14813 filter) side by side using the @command{ffplay} tool:
14814 @example
14815 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
14816 @end example
14817
14818 The above command is the same as:
14819 @example
14820 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
14821 @end example
14822
14823 @item
14824 Make a sliding overlay appearing from the left to the right top part of the
14825 screen starting since time 2:
14826 @example
14827 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
14828 @end example
14829
14830 @item
14831 Compose output by putting two input videos side to side:
14832 @example
14833 ffmpeg -i left.avi -i right.avi -filter_complex "
14834 nullsrc=size=200x100 [background];
14835 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
14836 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
14837 [background][left]       overlay=shortest=1       [background+left];
14838 [background+left][right] overlay=shortest=1:x=100 [left+right]
14839 "
14840 @end example
14841
14842 @item
14843 Mask 10-20 seconds of a video by applying the delogo filter to a section
14844 @example
14845 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
14846 -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]'
14847 masked.avi
14848 @end example
14849
14850 @item
14851 Chain several overlays in cascade:
14852 @example
14853 nullsrc=s=200x200 [bg];
14854 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
14855 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
14856 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
14857 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
14858 [in3] null,       [mid2] overlay=100:100 [out0]
14859 @end example
14860
14861 @end itemize
14862
14863 @anchor{overlay_cuda}
14864 @section overlay_cuda
14865
14866 Overlay one video on top of another.
14867
14868 This is the CUDA variant of the @ref{overlay} filter.
14869 It only accepts CUDA frames. The underlying input pixel formats have to match.
14870
14871 It takes two inputs and has one output. The first input is the "main"
14872 video on which the second input is overlaid.
14873
14874 It accepts the following parameters:
14875
14876 @table @option
14877 @item x
14878 @item y
14879 Set the x and y coordinates of the overlaid video on the main video.
14880 Default value is "0" for both expressions.
14881
14882 @item eof_action
14883 See @ref{framesync}.
14884
14885 @item shortest
14886 See @ref{framesync}.
14887
14888 @item repeatlast
14889 See @ref{framesync}.
14890
14891 @end table
14892
14893 This filter also supports the @ref{framesync} options.
14894
14895 @section owdenoise
14896
14897 Apply Overcomplete Wavelet denoiser.
14898
14899 The filter accepts the following options:
14900
14901 @table @option
14902 @item depth
14903 Set depth.
14904
14905 Larger depth values will denoise lower frequency components more, but
14906 slow down filtering.
14907
14908 Must be an int in the range 8-16, default is @code{8}.
14909
14910 @item luma_strength, ls
14911 Set luma strength.
14912
14913 Must be a double value in the range 0-1000, default is @code{1.0}.
14914
14915 @item chroma_strength, cs
14916 Set chroma strength.
14917
14918 Must be a double value in the range 0-1000, default is @code{1.0}.
14919 @end table
14920
14921 @anchor{pad}
14922 @section pad
14923
14924 Add paddings to the input image, and place the original input at the
14925 provided @var{x}, @var{y} coordinates.
14926
14927 It accepts the following parameters:
14928
14929 @table @option
14930 @item width, w
14931 @item height, h
14932 Specify an expression for the size of the output image with the
14933 paddings added. If the value for @var{width} or @var{height} is 0, the
14934 corresponding input size is used for the output.
14935
14936 The @var{width} expression can reference the value set by the
14937 @var{height} expression, and vice versa.
14938
14939 The default value of @var{width} and @var{height} is 0.
14940
14941 @item x
14942 @item y
14943 Specify the offsets to place the input image at within the padded area,
14944 with respect to the top/left border of the output image.
14945
14946 The @var{x} expression can reference the value set by the @var{y}
14947 expression, and vice versa.
14948
14949 The default value of @var{x} and @var{y} is 0.
14950
14951 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
14952 so the input image is centered on the padded area.
14953
14954 @item color
14955 Specify the color of the padded area. For the syntax of this option,
14956 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
14957 manual,ffmpeg-utils}.
14958
14959 The default value of @var{color} is "black".
14960
14961 @item eval
14962 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
14963
14964 It accepts the following values:
14965
14966 @table @samp
14967 @item init
14968 Only evaluate expressions once during the filter initialization or when
14969 a command is processed.
14970
14971 @item frame
14972 Evaluate expressions for each incoming frame.
14973
14974 @end table
14975
14976 Default value is @samp{init}.
14977
14978 @item aspect
14979 Pad to aspect instead to a resolution.
14980
14981 @end table
14982
14983 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
14984 options are expressions containing the following constants:
14985
14986 @table @option
14987 @item in_w
14988 @item in_h
14989 The input video width and height.
14990
14991 @item iw
14992 @item ih
14993 These are the same as @var{in_w} and @var{in_h}.
14994
14995 @item out_w
14996 @item out_h
14997 The output width and height (the size of the padded area), as
14998 specified by the @var{width} and @var{height} expressions.
14999
15000 @item ow
15001 @item oh
15002 These are the same as @var{out_w} and @var{out_h}.
15003
15004 @item x
15005 @item y
15006 The x and y offsets as specified by the @var{x} and @var{y}
15007 expressions, or NAN if not yet specified.
15008
15009 @item a
15010 same as @var{iw} / @var{ih}
15011
15012 @item sar
15013 input sample aspect ratio
15014
15015 @item dar
15016 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15017
15018 @item hsub
15019 @item vsub
15020 The horizontal and vertical chroma subsample values. For example for the
15021 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15022 @end table
15023
15024 @subsection Examples
15025
15026 @itemize
15027 @item
15028 Add paddings with the color "violet" to the input video. The output video
15029 size is 640x480, and the top-left corner of the input video is placed at
15030 column 0, row 40
15031 @example
15032 pad=640:480:0:40:violet
15033 @end example
15034
15035 The example above is equivalent to the following command:
15036 @example
15037 pad=width=640:height=480:x=0:y=40:color=violet
15038 @end example
15039
15040 @item
15041 Pad the input to get an output with dimensions increased by 3/2,
15042 and put the input video at the center of the padded area:
15043 @example
15044 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15045 @end example
15046
15047 @item
15048 Pad the input to get a squared output with size equal to the maximum
15049 value between the input width and height, and put the input video at
15050 the center of the padded area:
15051 @example
15052 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15053 @end example
15054
15055 @item
15056 Pad the input to get a final w/h ratio of 16:9:
15057 @example
15058 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15059 @end example
15060
15061 @item
15062 In case of anamorphic video, in order to set the output display aspect
15063 correctly, it is necessary to use @var{sar} in the expression,
15064 according to the relation:
15065 @example
15066 (ih * X / ih) * sar = output_dar
15067 X = output_dar / sar
15068 @end example
15069
15070 Thus the previous example needs to be modified to:
15071 @example
15072 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15073 @end example
15074
15075 @item
15076 Double the output size and put the input video in the bottom-right
15077 corner of the output padded area:
15078 @example
15079 pad="2*iw:2*ih:ow-iw:oh-ih"
15080 @end example
15081 @end itemize
15082
15083 @anchor{palettegen}
15084 @section palettegen
15085
15086 Generate one palette for a whole video stream.
15087
15088 It accepts the following options:
15089
15090 @table @option
15091 @item max_colors
15092 Set the maximum number of colors to quantize in the palette.
15093 Note: the palette will still contain 256 colors; the unused palette entries
15094 will be black.
15095
15096 @item reserve_transparent
15097 Create a palette of 255 colors maximum and reserve the last one for
15098 transparency. Reserving the transparency color is useful for GIF optimization.
15099 If not set, the maximum of colors in the palette will be 256. You probably want
15100 to disable this option for a standalone image.
15101 Set by default.
15102
15103 @item transparency_color
15104 Set the color that will be used as background for transparency.
15105
15106 @item stats_mode
15107 Set statistics mode.
15108
15109 It accepts the following values:
15110 @table @samp
15111 @item full
15112 Compute full frame histograms.
15113 @item diff
15114 Compute histograms only for the part that differs from previous frame. This
15115 might be relevant to give more importance to the moving part of your input if
15116 the background is static.
15117 @item single
15118 Compute new histogram for each frame.
15119 @end table
15120
15121 Default value is @var{full}.
15122 @end table
15123
15124 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
15125 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
15126 color quantization of the palette. This information is also visible at
15127 @var{info} logging level.
15128
15129 @subsection Examples
15130
15131 @itemize
15132 @item
15133 Generate a representative palette of a given video using @command{ffmpeg}:
15134 @example
15135 ffmpeg -i input.mkv -vf palettegen palette.png
15136 @end example
15137 @end itemize
15138
15139 @section paletteuse
15140
15141 Use a palette to downsample an input video stream.
15142
15143 The filter takes two inputs: one video stream and a palette. The palette must
15144 be a 256 pixels image.
15145
15146 It accepts the following options:
15147
15148 @table @option
15149 @item dither
15150 Select dithering mode. Available algorithms are:
15151 @table @samp
15152 @item bayer
15153 Ordered 8x8 bayer dithering (deterministic)
15154 @item heckbert
15155 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
15156 Note: this dithering is sometimes considered "wrong" and is included as a
15157 reference.
15158 @item floyd_steinberg
15159 Floyd and Steingberg dithering (error diffusion)
15160 @item sierra2
15161 Frankie Sierra dithering v2 (error diffusion)
15162 @item sierra2_4a
15163 Frankie Sierra dithering v2 "Lite" (error diffusion)
15164 @end table
15165
15166 Default is @var{sierra2_4a}.
15167
15168 @item bayer_scale
15169 When @var{bayer} dithering is selected, this option defines the scale of the
15170 pattern (how much the crosshatch pattern is visible). A low value means more
15171 visible pattern for less banding, and higher value means less visible pattern
15172 at the cost of more banding.
15173
15174 The option must be an integer value in the range [0,5]. Default is @var{2}.
15175
15176 @item diff_mode
15177 If set, define the zone to process
15178
15179 @table @samp
15180 @item rectangle
15181 Only the changing rectangle will be reprocessed. This is similar to GIF
15182 cropping/offsetting compression mechanism. This option can be useful for speed
15183 if only a part of the image is changing, and has use cases such as limiting the
15184 scope of the error diffusal @option{dither} to the rectangle that bounds the
15185 moving scene (it leads to more deterministic output if the scene doesn't change
15186 much, and as a result less moving noise and better GIF compression).
15187 @end table
15188
15189 Default is @var{none}.
15190
15191 @item new
15192 Take new palette for each output frame.
15193
15194 @item alpha_threshold
15195 Sets the alpha threshold for transparency. Alpha values above this threshold
15196 will be treated as completely opaque, and values below this threshold will be
15197 treated as completely transparent.
15198
15199 The option must be an integer value in the range [0,255]. Default is @var{128}.
15200 @end table
15201
15202 @subsection Examples
15203
15204 @itemize
15205 @item
15206 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
15207 using @command{ffmpeg}:
15208 @example
15209 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
15210 @end example
15211 @end itemize
15212
15213 @section perspective
15214
15215 Correct perspective of video not recorded perpendicular to the screen.
15216
15217 A description of the accepted parameters follows.
15218
15219 @table @option
15220 @item x0
15221 @item y0
15222 @item x1
15223 @item y1
15224 @item x2
15225 @item y2
15226 @item x3
15227 @item y3
15228 Set coordinates expression for top left, top right, bottom left and bottom right corners.
15229 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
15230 If the @code{sense} option is set to @code{source}, then the specified points will be sent
15231 to the corners of the destination. If the @code{sense} option is set to @code{destination},
15232 then the corners of the source will be sent to the specified coordinates.
15233
15234 The expressions can use the following variables:
15235
15236 @table @option
15237 @item W
15238 @item H
15239 the width and height of video frame.
15240 @item in
15241 Input frame count.
15242 @item on
15243 Output frame count.
15244 @end table
15245
15246 @item interpolation
15247 Set interpolation for perspective correction.
15248
15249 It accepts the following values:
15250 @table @samp
15251 @item linear
15252 @item cubic
15253 @end table
15254
15255 Default value is @samp{linear}.
15256
15257 @item sense
15258 Set interpretation of coordinate options.
15259
15260 It accepts the following values:
15261 @table @samp
15262 @item 0, source
15263
15264 Send point in the source specified by the given coordinates to
15265 the corners of the destination.
15266
15267 @item 1, destination
15268
15269 Send the corners of the source to the point in the destination specified
15270 by the given coordinates.
15271
15272 Default value is @samp{source}.
15273 @end table
15274
15275 @item eval
15276 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
15277
15278 It accepts the following values:
15279 @table @samp
15280 @item init
15281 only evaluate expressions once during the filter initialization or
15282 when a command is processed
15283
15284 @item frame
15285 evaluate expressions for each incoming frame
15286 @end table
15287
15288 Default value is @samp{init}.
15289 @end table
15290
15291 @section phase
15292
15293 Delay interlaced video by one field time so that the field order changes.
15294
15295 The intended use is to fix PAL movies that have been captured with the
15296 opposite field order to the film-to-video transfer.
15297
15298 A description of the accepted parameters follows.
15299
15300 @table @option
15301 @item mode
15302 Set phase mode.
15303
15304 It accepts the following values:
15305 @table @samp
15306 @item t
15307 Capture field order top-first, transfer bottom-first.
15308 Filter will delay the bottom field.
15309
15310 @item b
15311 Capture field order bottom-first, transfer top-first.
15312 Filter will delay the top field.
15313
15314 @item p
15315 Capture and transfer with the same field order. This mode only exists
15316 for the documentation of the other options to refer to, but if you
15317 actually select it, the filter will faithfully do nothing.
15318
15319 @item a
15320 Capture field order determined automatically by field flags, transfer
15321 opposite.
15322 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
15323 basis using field flags. If no field information is available,
15324 then this works just like @samp{u}.
15325
15326 @item u
15327 Capture unknown or varying, transfer opposite.
15328 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
15329 analyzing the images and selecting the alternative that produces best
15330 match between the fields.
15331
15332 @item T
15333 Capture top-first, transfer unknown or varying.
15334 Filter selects among @samp{t} and @samp{p} using image analysis.
15335
15336 @item B
15337 Capture bottom-first, transfer unknown or varying.
15338 Filter selects among @samp{b} and @samp{p} using image analysis.
15339
15340 @item A
15341 Capture determined by field flags, transfer unknown or varying.
15342 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
15343 image analysis. If no field information is available, then this works just
15344 like @samp{U}. This is the default mode.
15345
15346 @item U
15347 Both capture and transfer unknown or varying.
15348 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
15349 @end table
15350 @end table
15351
15352 @section photosensitivity
15353 Reduce various flashes in video, so to help users with epilepsy.
15354
15355 It accepts the following options:
15356 @table @option
15357 @item frames, f
15358 Set how many frames to use when filtering. Default is 30.
15359
15360 @item threshold, t
15361 Set detection threshold factor. Default is 1.
15362 Lower is stricter.
15363
15364 @item skip
15365 Set how many pixels to skip when sampling frames. Default is 1.
15366 Allowed range is from 1 to 1024.
15367
15368 @item bypass
15369 Leave frames unchanged. Default is disabled.
15370 @end table
15371
15372 @section pixdesctest
15373
15374 Pixel format descriptor test filter, mainly useful for internal
15375 testing. The output video should be equal to the input video.
15376
15377 For example:
15378 @example
15379 format=monow, pixdesctest
15380 @end example
15381
15382 can be used to test the monowhite pixel format descriptor definition.
15383
15384 @section pixscope
15385
15386 Display sample values of color channels. Mainly useful for checking color
15387 and levels. Minimum supported resolution is 640x480.
15388
15389 The filters accept the following options:
15390
15391 @table @option
15392 @item x
15393 Set scope X position, relative offset on X axis.
15394
15395 @item y
15396 Set scope Y position, relative offset on Y axis.
15397
15398 @item w
15399 Set scope width.
15400
15401 @item h
15402 Set scope height.
15403
15404 @item o
15405 Set window opacity. This window also holds statistics about pixel area.
15406
15407 @item wx
15408 Set window X position, relative offset on X axis.
15409
15410 @item wy
15411 Set window Y position, relative offset on Y axis.
15412 @end table
15413
15414 @section pp
15415
15416 Enable the specified chain of postprocessing subfilters using libpostproc. This
15417 library should be automatically selected with a GPL build (@code{--enable-gpl}).
15418 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
15419 Each subfilter and some options have a short and a long name that can be used
15420 interchangeably, i.e. dr/dering are the same.
15421
15422 The filters accept the following options:
15423
15424 @table @option
15425 @item subfilters
15426 Set postprocessing subfilters string.
15427 @end table
15428
15429 All subfilters share common options to determine their scope:
15430
15431 @table @option
15432 @item a/autoq
15433 Honor the quality commands for this subfilter.
15434
15435 @item c/chrom
15436 Do chrominance filtering, too (default).
15437
15438 @item y/nochrom
15439 Do luminance filtering only (no chrominance).
15440
15441 @item n/noluma
15442 Do chrominance filtering only (no luminance).
15443 @end table
15444
15445 These options can be appended after the subfilter name, separated by a '|'.
15446
15447 Available subfilters are:
15448
15449 @table @option
15450 @item hb/hdeblock[|difference[|flatness]]
15451 Horizontal deblocking filter
15452 @table @option
15453 @item difference
15454 Difference factor where higher values mean more deblocking (default: @code{32}).
15455 @item flatness
15456 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15457 @end table
15458
15459 @item vb/vdeblock[|difference[|flatness]]
15460 Vertical deblocking filter
15461 @table @option
15462 @item difference
15463 Difference factor where higher values mean more deblocking (default: @code{32}).
15464 @item flatness
15465 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15466 @end table
15467
15468 @item ha/hadeblock[|difference[|flatness]]
15469 Accurate horizontal deblocking filter
15470 @table @option
15471 @item difference
15472 Difference factor where higher values mean more deblocking (default: @code{32}).
15473 @item flatness
15474 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15475 @end table
15476
15477 @item va/vadeblock[|difference[|flatness]]
15478 Accurate vertical deblocking filter
15479 @table @option
15480 @item difference
15481 Difference factor where higher values mean more deblocking (default: @code{32}).
15482 @item flatness
15483 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15484 @end table
15485 @end table
15486
15487 The horizontal and vertical deblocking filters share the difference and
15488 flatness values so you cannot set different horizontal and vertical
15489 thresholds.
15490
15491 @table @option
15492 @item h1/x1hdeblock
15493 Experimental horizontal deblocking filter
15494
15495 @item v1/x1vdeblock
15496 Experimental vertical deblocking filter
15497
15498 @item dr/dering
15499 Deringing filter
15500
15501 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
15502 @table @option
15503 @item threshold1
15504 larger -> stronger filtering
15505 @item threshold2
15506 larger -> stronger filtering
15507 @item threshold3
15508 larger -> stronger filtering
15509 @end table
15510
15511 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15512 @table @option
15513 @item f/fullyrange
15514 Stretch luminance to @code{0-255}.
15515 @end table
15516
15517 @item lb/linblenddeint
15518 Linear blend deinterlacing filter that deinterlaces the given block by
15519 filtering all lines with a @code{(1 2 1)} filter.
15520
15521 @item li/linipoldeint
15522 Linear interpolating deinterlacing filter that deinterlaces the given block by
15523 linearly interpolating every second line.
15524
15525 @item ci/cubicipoldeint
15526 Cubic interpolating deinterlacing filter deinterlaces the given block by
15527 cubically interpolating every second line.
15528
15529 @item md/mediandeint
15530 Median deinterlacing filter that deinterlaces the given block by applying a
15531 median filter to every second line.
15532
15533 @item fd/ffmpegdeint
15534 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
15535 second line with a @code{(-1 4 2 4 -1)} filter.
15536
15537 @item l5/lowpass5
15538 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
15539 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
15540
15541 @item fq/forceQuant[|quantizer]
15542 Overrides the quantizer table from the input with the constant quantizer you
15543 specify.
15544 @table @option
15545 @item quantizer
15546 Quantizer to use
15547 @end table
15548
15549 @item de/default
15550 Default pp filter combination (@code{hb|a,vb|a,dr|a})
15551
15552 @item fa/fast
15553 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
15554
15555 @item ac
15556 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
15557 @end table
15558
15559 @subsection Examples
15560
15561 @itemize
15562 @item
15563 Apply horizontal and vertical deblocking, deringing and automatic
15564 brightness/contrast:
15565 @example
15566 pp=hb/vb/dr/al
15567 @end example
15568
15569 @item
15570 Apply default filters without brightness/contrast correction:
15571 @example
15572 pp=de/-al
15573 @end example
15574
15575 @item
15576 Apply default filters and temporal denoiser:
15577 @example
15578 pp=default/tmpnoise|1|2|3
15579 @end example
15580
15581 @item
15582 Apply deblocking on luminance only, and switch vertical deblocking on or off
15583 automatically depending on available CPU time:
15584 @example
15585 pp=hb|y/vb|a
15586 @end example
15587 @end itemize
15588
15589 @section pp7
15590 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
15591 similar to spp = 6 with 7 point DCT, where only the center sample is
15592 used after IDCT.
15593
15594 The filter accepts the following options:
15595
15596 @table @option
15597 @item qp
15598 Force a constant quantization parameter. It accepts an integer in range
15599 0 to 63. If not set, the filter will use the QP from the video stream
15600 (if available).
15601
15602 @item mode
15603 Set thresholding mode. Available modes are:
15604
15605 @table @samp
15606 @item hard
15607 Set hard thresholding.
15608 @item soft
15609 Set soft thresholding (better de-ringing effect, but likely blurrier).
15610 @item medium
15611 Set medium thresholding (good results, default).
15612 @end table
15613 @end table
15614
15615 @section premultiply
15616 Apply alpha premultiply effect to input video stream using first plane
15617 of second stream as alpha.
15618
15619 Both streams must have same dimensions and same pixel format.
15620
15621 The filter accepts the following option:
15622
15623 @table @option
15624 @item planes
15625 Set which planes will be processed, unprocessed planes will be copied.
15626 By default value 0xf, all planes will be processed.
15627
15628 @item inplace
15629 Do not require 2nd input for processing, instead use alpha plane from input stream.
15630 @end table
15631
15632 @section prewitt
15633 Apply prewitt operator to input video stream.
15634
15635 The filter accepts the following option:
15636
15637 @table @option
15638 @item planes
15639 Set which planes will be processed, unprocessed planes will be copied.
15640 By default value 0xf, all planes will be processed.
15641
15642 @item scale
15643 Set value which will be multiplied with filtered result.
15644
15645 @item delta
15646 Set value which will be added to filtered result.
15647 @end table
15648
15649 @section pseudocolor
15650
15651 Alter frame colors in video with pseudocolors.
15652
15653 This filter accepts the following options:
15654
15655 @table @option
15656 @item c0
15657 set pixel first component expression
15658
15659 @item c1
15660 set pixel second component expression
15661
15662 @item c2
15663 set pixel third component expression
15664
15665 @item c3
15666 set pixel fourth component expression, corresponds to the alpha component
15667
15668 @item i
15669 set component to use as base for altering colors
15670 @end table
15671
15672 Each of them specifies the expression to use for computing the lookup table for
15673 the corresponding pixel component values.
15674
15675 The expressions can contain the following constants and functions:
15676
15677 @table @option
15678 @item w
15679 @item h
15680 The input width and height.
15681
15682 @item val
15683 The input value for the pixel component.
15684
15685 @item ymin, umin, vmin, amin
15686 The minimum allowed component value.
15687
15688 @item ymax, umax, vmax, amax
15689 The maximum allowed component value.
15690 @end table
15691
15692 All expressions default to "val".
15693
15694 @subsection Examples
15695
15696 @itemize
15697 @item
15698 Change too high luma values to gradient:
15699 @example
15700 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'"
15701 @end example
15702 @end itemize
15703
15704 @section psnr
15705
15706 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
15707 Ratio) between two input videos.
15708
15709 This filter takes in input two input videos, the first input is
15710 considered the "main" source and is passed unchanged to the
15711 output. The second input is used as a "reference" video for computing
15712 the PSNR.
15713
15714 Both video inputs must have the same resolution and pixel format for
15715 this filter to work correctly. Also it assumes that both inputs
15716 have the same number of frames, which are compared one by one.
15717
15718 The obtained average PSNR is printed through the logging system.
15719
15720 The filter stores the accumulated MSE (mean squared error) of each
15721 frame, and at the end of the processing it is averaged across all frames
15722 equally, and the following formula is applied to obtain the PSNR:
15723
15724 @example
15725 PSNR = 10*log10(MAX^2/MSE)
15726 @end example
15727
15728 Where MAX is the average of the maximum values of each component of the
15729 image.
15730
15731 The description of the accepted parameters follows.
15732
15733 @table @option
15734 @item stats_file, f
15735 If specified the filter will use the named file to save the PSNR of
15736 each individual frame. When filename equals "-" the data is sent to
15737 standard output.
15738
15739 @item stats_version
15740 Specifies which version of the stats file format to use. Details of
15741 each format are written below.
15742 Default value is 1.
15743
15744 @item stats_add_max
15745 Determines whether the max value is output to the stats log.
15746 Default value is 0.
15747 Requires stats_version >= 2. If this is set and stats_version < 2,
15748 the filter will return an error.
15749 @end table
15750
15751 This filter also supports the @ref{framesync} options.
15752
15753 The file printed if @var{stats_file} is selected, contains a sequence of
15754 key/value pairs of the form @var{key}:@var{value} for each compared
15755 couple of frames.
15756
15757 If a @var{stats_version} greater than 1 is specified, a header line precedes
15758 the list of per-frame-pair stats, with key value pairs following the frame
15759 format with the following parameters:
15760
15761 @table @option
15762 @item psnr_log_version
15763 The version of the log file format. Will match @var{stats_version}.
15764
15765 @item fields
15766 A comma separated list of the per-frame-pair parameters included in
15767 the log.
15768 @end table
15769
15770 A description of each shown per-frame-pair parameter follows:
15771
15772 @table @option
15773 @item n
15774 sequential number of the input frame, starting from 1
15775
15776 @item mse_avg
15777 Mean Square Error pixel-by-pixel average difference of the compared
15778 frames, averaged over all the image components.
15779
15780 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
15781 Mean Square Error pixel-by-pixel average difference of the compared
15782 frames for the component specified by the suffix.
15783
15784 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
15785 Peak Signal to Noise ratio of the compared frames for the component
15786 specified by the suffix.
15787
15788 @item max_avg, max_y, max_u, max_v
15789 Maximum allowed value for each channel, and average over all
15790 channels.
15791 @end table
15792
15793 @subsection Examples
15794 @itemize
15795 @item
15796 For example:
15797 @example
15798 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
15799 [main][ref] psnr="stats_file=stats.log" [out]
15800 @end example
15801
15802 On this example the input file being processed is compared with the
15803 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
15804 is stored in @file{stats.log}.
15805
15806 @item
15807 Another example with different containers:
15808 @example
15809 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 -
15810 @end example
15811 @end itemize
15812
15813 @anchor{pullup}
15814 @section pullup
15815
15816 Pulldown reversal (inverse telecine) filter, capable of handling mixed
15817 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
15818 content.
15819
15820 The pullup filter is designed to take advantage of future context in making
15821 its decisions. This filter is stateless in the sense that it does not lock
15822 onto a pattern to follow, but it instead looks forward to the following
15823 fields in order to identify matches and rebuild progressive frames.
15824
15825 To produce content with an even framerate, insert the fps filter after
15826 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
15827 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
15828
15829 The filter accepts the following options:
15830
15831 @table @option
15832 @item jl
15833 @item jr
15834 @item jt
15835 @item jb
15836 These options set the amount of "junk" to ignore at the left, right, top, and
15837 bottom of the image, respectively. Left and right are in units of 8 pixels,
15838 while top and bottom are in units of 2 lines.
15839 The default is 8 pixels on each side.
15840
15841 @item sb
15842 Set the strict breaks. Setting this option to 1 will reduce the chances of
15843 filter generating an occasional mismatched frame, but it may also cause an
15844 excessive number of frames to be dropped during high motion sequences.
15845 Conversely, setting it to -1 will make filter match fields more easily.
15846 This may help processing of video where there is slight blurring between
15847 the fields, but may also cause there to be interlaced frames in the output.
15848 Default value is @code{0}.
15849
15850 @item mp
15851 Set the metric plane to use. It accepts the following values:
15852 @table @samp
15853 @item l
15854 Use luma plane.
15855
15856 @item u
15857 Use chroma blue plane.
15858
15859 @item v
15860 Use chroma red plane.
15861 @end table
15862
15863 This option may be set to use chroma plane instead of the default luma plane
15864 for doing filter's computations. This may improve accuracy on very clean
15865 source material, but more likely will decrease accuracy, especially if there
15866 is chroma noise (rainbow effect) or any grayscale video.
15867 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
15868 load and make pullup usable in realtime on slow machines.
15869 @end table
15870
15871 For best results (without duplicated frames in the output file) it is
15872 necessary to change the output frame rate. For example, to inverse
15873 telecine NTSC input:
15874 @example
15875 ffmpeg -i input -vf pullup -r 24000/1001 ...
15876 @end example
15877
15878 @section qp
15879
15880 Change video quantization parameters (QP).
15881
15882 The filter accepts the following option:
15883
15884 @table @option
15885 @item qp
15886 Set expression for quantization parameter.
15887 @end table
15888
15889 The expression is evaluated through the eval API and can contain, among others,
15890 the following constants:
15891
15892 @table @var
15893 @item known
15894 1 if index is not 129, 0 otherwise.
15895
15896 @item qp
15897 Sequential index starting from -129 to 128.
15898 @end table
15899
15900 @subsection Examples
15901
15902 @itemize
15903 @item
15904 Some equation like:
15905 @example
15906 qp=2+2*sin(PI*qp)
15907 @end example
15908 @end itemize
15909
15910 @section random
15911
15912 Flush video frames from internal cache of frames into a random order.
15913 No frame is discarded.
15914 Inspired by @ref{frei0r} nervous filter.
15915
15916 @table @option
15917 @item frames
15918 Set size in number of frames of internal cache, in range from @code{2} to
15919 @code{512}. Default is @code{30}.
15920
15921 @item seed
15922 Set seed for random number generator, must be an integer included between
15923 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15924 less than @code{0}, the filter will try to use a good random seed on a
15925 best effort basis.
15926 @end table
15927
15928 @section readeia608
15929
15930 Read closed captioning (EIA-608) information from the top lines of a video frame.
15931
15932 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
15933 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
15934 with EIA-608 data (starting from 0). A description of each metadata value follows:
15935
15936 @table @option
15937 @item lavfi.readeia608.X.cc
15938 The two bytes stored as EIA-608 data (printed in hexadecimal).
15939
15940 @item lavfi.readeia608.X.line
15941 The number of the line on which the EIA-608 data was identified and read.
15942 @end table
15943
15944 This filter accepts the following options:
15945
15946 @table @option
15947 @item scan_min
15948 Set the line to start scanning for EIA-608 data. Default is @code{0}.
15949
15950 @item scan_max
15951 Set the line to end scanning for EIA-608 data. Default is @code{29}.
15952
15953 @item spw
15954 Set the ratio of width reserved for sync code detection.
15955 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
15956
15957 @item chp
15958 Enable checking the parity bit. In the event of a parity error, the filter will output
15959 @code{0x00} for that character. Default is false.
15960
15961 @item lp
15962 Lowpass lines prior to further processing. Default is enabled.
15963 @end table
15964
15965 @subsection Commands
15966
15967 This filter supports the all above options as @ref{commands}.
15968
15969 @subsection Examples
15970
15971 @itemize
15972 @item
15973 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
15974 @example
15975 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
15976 @end example
15977 @end itemize
15978
15979 @section readvitc
15980
15981 Read vertical interval timecode (VITC) information from the top lines of a
15982 video frame.
15983
15984 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
15985 timecode value, if a valid timecode has been detected. Further metadata key
15986 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
15987 timecode data has been found or not.
15988
15989 This filter accepts the following options:
15990
15991 @table @option
15992 @item scan_max
15993 Set the maximum number of lines to scan for VITC data. If the value is set to
15994 @code{-1} the full video frame is scanned. Default is @code{45}.
15995
15996 @item thr_b
15997 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
15998 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
15999
16000 @item thr_w
16001 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16002 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16003 @end table
16004
16005 @subsection Examples
16006
16007 @itemize
16008 @item
16009 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16010 draw @code{--:--:--:--} as a placeholder:
16011 @example
16012 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16013 @end example
16014 @end itemize
16015
16016 @section remap
16017
16018 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16019
16020 Destination pixel at position (X, Y) will be picked from source (x, y) position
16021 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16022 value for pixel will be used for destination pixel.
16023
16024 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16025 will have Xmap/Ymap video stream dimensions.
16026 Xmap and Ymap input video streams are 16bit depth, single channel.
16027
16028 @table @option
16029 @item format
16030 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16031 Default is @code{color}.
16032
16033 @item fill
16034 Specify the color of the unmapped pixels. For the syntax of this option,
16035 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16036 manual,ffmpeg-utils}. Default color is @code{black}.
16037 @end table
16038
16039 @section removegrain
16040
16041 The removegrain filter is a spatial denoiser for progressive video.
16042
16043 @table @option
16044 @item m0
16045 Set mode for the first plane.
16046
16047 @item m1
16048 Set mode for the second plane.
16049
16050 @item m2
16051 Set mode for the third plane.
16052
16053 @item m3
16054 Set mode for the fourth plane.
16055 @end table
16056
16057 Range of mode is from 0 to 24. Description of each mode follows:
16058
16059 @table @var
16060 @item 0
16061 Leave input plane unchanged. Default.
16062
16063 @item 1
16064 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16065
16066 @item 2
16067 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16068
16069 @item 3
16070 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16071
16072 @item 4
16073 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
16074 This is equivalent to a median filter.
16075
16076 @item 5
16077 Line-sensitive clipping giving the minimal change.
16078
16079 @item 6
16080 Line-sensitive clipping, intermediate.
16081
16082 @item 7
16083 Line-sensitive clipping, intermediate.
16084
16085 @item 8
16086 Line-sensitive clipping, intermediate.
16087
16088 @item 9
16089 Line-sensitive clipping on a line where the neighbours pixels are the closest.
16090
16091 @item 10
16092 Replaces the target pixel with the closest neighbour.
16093
16094 @item 11
16095 [1 2 1] horizontal and vertical kernel blur.
16096
16097 @item 12
16098 Same as mode 11.
16099
16100 @item 13
16101 Bob mode, interpolates top field from the line where the neighbours
16102 pixels are the closest.
16103
16104 @item 14
16105 Bob mode, interpolates bottom field from the line where the neighbours
16106 pixels are the closest.
16107
16108 @item 15
16109 Bob mode, interpolates top field. Same as 13 but with a more complicated
16110 interpolation formula.
16111
16112 @item 16
16113 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
16114 interpolation formula.
16115
16116 @item 17
16117 Clips the pixel with the minimum and maximum of respectively the maximum and
16118 minimum of each pair of opposite neighbour pixels.
16119
16120 @item 18
16121 Line-sensitive clipping using opposite neighbours whose greatest distance from
16122 the current pixel is minimal.
16123
16124 @item 19
16125 Replaces the pixel with the average of its 8 neighbours.
16126
16127 @item 20
16128 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
16129
16130 @item 21
16131 Clips pixels using the averages of opposite neighbour.
16132
16133 @item 22
16134 Same as mode 21 but simpler and faster.
16135
16136 @item 23
16137 Small edge and halo removal, but reputed useless.
16138
16139 @item 24
16140 Similar as 23.
16141 @end table
16142
16143 @section removelogo
16144
16145 Suppress a TV station logo, using an image file to determine which
16146 pixels comprise the logo. It works by filling in the pixels that
16147 comprise the logo with neighboring pixels.
16148
16149 The filter accepts the following options:
16150
16151 @table @option
16152 @item filename, f
16153 Set the filter bitmap file, which can be any image format supported by
16154 libavformat. The width and height of the image file must match those of the
16155 video stream being processed.
16156 @end table
16157
16158 Pixels in the provided bitmap image with a value of zero are not
16159 considered part of the logo, non-zero pixels are considered part of
16160 the logo. If you use white (255) for the logo and black (0) for the
16161 rest, you will be safe. For making the filter bitmap, it is
16162 recommended to take a screen capture of a black frame with the logo
16163 visible, and then using a threshold filter followed by the erode
16164 filter once or twice.
16165
16166 If needed, little splotches can be fixed manually. Remember that if
16167 logo pixels are not covered, the filter quality will be much
16168 reduced. Marking too many pixels as part of the logo does not hurt as
16169 much, but it will increase the amount of blurring needed to cover over
16170 the image and will destroy more information than necessary, and extra
16171 pixels will slow things down on a large logo.
16172
16173 @section repeatfields
16174
16175 This filter uses the repeat_field flag from the Video ES headers and hard repeats
16176 fields based on its value.
16177
16178 @section reverse
16179
16180 Reverse a video clip.
16181
16182 Warning: This filter requires memory to buffer the entire clip, so trimming
16183 is suggested.
16184
16185 @subsection Examples
16186
16187 @itemize
16188 @item
16189 Take the first 5 seconds of a clip, and reverse it.
16190 @example
16191 trim=end=5,reverse
16192 @end example
16193 @end itemize
16194
16195 @section rgbashift
16196 Shift R/G/B/A pixels horizontally and/or vertically.
16197
16198 The filter accepts the following options:
16199 @table @option
16200 @item rh
16201 Set amount to shift red horizontally.
16202 @item rv
16203 Set amount to shift red vertically.
16204 @item gh
16205 Set amount to shift green horizontally.
16206 @item gv
16207 Set amount to shift green vertically.
16208 @item bh
16209 Set amount to shift blue horizontally.
16210 @item bv
16211 Set amount to shift blue vertically.
16212 @item ah
16213 Set amount to shift alpha horizontally.
16214 @item av
16215 Set amount to shift alpha vertically.
16216 @item edge
16217 Set edge mode, can be @var{smear}, default, or @var{warp}.
16218 @end table
16219
16220 @subsection Commands
16221
16222 This filter supports the all above options as @ref{commands}.
16223
16224 @section roberts
16225 Apply roberts cross operator to input video stream.
16226
16227 The filter accepts the following option:
16228
16229 @table @option
16230 @item planes
16231 Set which planes will be processed, unprocessed planes will be copied.
16232 By default value 0xf, all planes will be processed.
16233
16234 @item scale
16235 Set value which will be multiplied with filtered result.
16236
16237 @item delta
16238 Set value which will be added to filtered result.
16239 @end table
16240
16241 @section rotate
16242
16243 Rotate video by an arbitrary angle expressed in radians.
16244
16245 The filter accepts the following options:
16246
16247 A description of the optional parameters follows.
16248 @table @option
16249 @item angle, a
16250 Set an expression for the angle by which to rotate the input video
16251 clockwise, expressed as a number of radians. A negative value will
16252 result in a counter-clockwise rotation. By default it is set to "0".
16253
16254 This expression is evaluated for each frame.
16255
16256 @item out_w, ow
16257 Set the output width expression, default value is "iw".
16258 This expression is evaluated just once during configuration.
16259
16260 @item out_h, oh
16261 Set the output height expression, default value is "ih".
16262 This expression is evaluated just once during configuration.
16263
16264 @item bilinear
16265 Enable bilinear interpolation if set to 1, a value of 0 disables
16266 it. Default value is 1.
16267
16268 @item fillcolor, c
16269 Set the color used to fill the output area not covered by the rotated
16270 image. For the general syntax of this option, check the
16271 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16272 If the special value "none" is selected then no
16273 background is printed (useful for example if the background is never shown).
16274
16275 Default value is "black".
16276 @end table
16277
16278 The expressions for the angle and the output size can contain the
16279 following constants and functions:
16280
16281 @table @option
16282 @item n
16283 sequential number of the input frame, starting from 0. It is always NAN
16284 before the first frame is filtered.
16285
16286 @item t
16287 time in seconds of the input frame, it is set to 0 when the filter is
16288 configured. It is always NAN before the first frame is filtered.
16289
16290 @item hsub
16291 @item vsub
16292 horizontal and vertical chroma subsample values. For example for the
16293 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16294
16295 @item in_w, iw
16296 @item in_h, ih
16297 the input video width and height
16298
16299 @item out_w, ow
16300 @item out_h, oh
16301 the output width and height, that is the size of the padded area as
16302 specified by the @var{width} and @var{height} expressions
16303
16304 @item rotw(a)
16305 @item roth(a)
16306 the minimal width/height required for completely containing the input
16307 video rotated by @var{a} radians.
16308
16309 These are only available when computing the @option{out_w} and
16310 @option{out_h} expressions.
16311 @end table
16312
16313 @subsection Examples
16314
16315 @itemize
16316 @item
16317 Rotate the input by PI/6 radians clockwise:
16318 @example
16319 rotate=PI/6
16320 @end example
16321
16322 @item
16323 Rotate the input by PI/6 radians counter-clockwise:
16324 @example
16325 rotate=-PI/6
16326 @end example
16327
16328 @item
16329 Rotate the input by 45 degrees clockwise:
16330 @example
16331 rotate=45*PI/180
16332 @end example
16333
16334 @item
16335 Apply a constant rotation with period T, starting from an angle of PI/3:
16336 @example
16337 rotate=PI/3+2*PI*t/T
16338 @end example
16339
16340 @item
16341 Make the input video rotation oscillating with a period of T
16342 seconds and an amplitude of A radians:
16343 @example
16344 rotate=A*sin(2*PI/T*t)
16345 @end example
16346
16347 @item
16348 Rotate the video, output size is chosen so that the whole rotating
16349 input video is always completely contained in the output:
16350 @example
16351 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
16352 @end example
16353
16354 @item
16355 Rotate the video, reduce the output size so that no background is ever
16356 shown:
16357 @example
16358 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
16359 @end example
16360 @end itemize
16361
16362 @subsection Commands
16363
16364 The filter supports the following commands:
16365
16366 @table @option
16367 @item a, angle
16368 Set the angle expression.
16369 The command accepts the same syntax of the corresponding option.
16370
16371 If the specified expression is not valid, it is kept at its current
16372 value.
16373 @end table
16374
16375 @section sab
16376
16377 Apply Shape Adaptive Blur.
16378
16379 The filter accepts the following options:
16380
16381 @table @option
16382 @item luma_radius, lr
16383 Set luma blur filter strength, must be a value in range 0.1-4.0, default
16384 value is 1.0. A greater value will result in a more blurred image, and
16385 in slower processing.
16386
16387 @item luma_pre_filter_radius, lpfr
16388 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
16389 value is 1.0.
16390
16391 @item luma_strength, ls
16392 Set luma maximum difference between pixels to still be considered, must
16393 be a value in the 0.1-100.0 range, default value is 1.0.
16394
16395 @item chroma_radius, cr
16396 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
16397 greater value will result in a more blurred image, and in slower
16398 processing.
16399
16400 @item chroma_pre_filter_radius, cpfr
16401 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
16402
16403 @item chroma_strength, cs
16404 Set chroma maximum difference between pixels to still be considered,
16405 must be a value in the -0.9-100.0 range.
16406 @end table
16407
16408 Each chroma option value, if not explicitly specified, is set to the
16409 corresponding luma option value.
16410
16411 @anchor{scale}
16412 @section scale
16413
16414 Scale (resize) the input video, using the libswscale library.
16415
16416 The scale filter forces the output display aspect ratio to be the same
16417 of the input, by changing the output sample aspect ratio.
16418
16419 If the input image format is different from the format requested by
16420 the next filter, the scale filter will convert the input to the
16421 requested format.
16422
16423 @subsection Options
16424 The filter accepts the following options, or any of the options
16425 supported by the libswscale scaler.
16426
16427 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
16428 the complete list of scaler options.
16429
16430 @table @option
16431 @item width, w
16432 @item height, h
16433 Set the output video dimension expression. Default value is the input
16434 dimension.
16435
16436 If the @var{width} or @var{w} value is 0, the input width is used for
16437 the output. If the @var{height} or @var{h} value is 0, the input height
16438 is used for the output.
16439
16440 If one and only one of the values is -n with n >= 1, the scale filter
16441 will use a value that maintains the aspect ratio of the input image,
16442 calculated from the other specified dimension. After that it will,
16443 however, make sure that the calculated dimension is divisible by n and
16444 adjust the value if necessary.
16445
16446 If both values are -n with n >= 1, the behavior will be identical to
16447 both values being set to 0 as previously detailed.
16448
16449 See below for the list of accepted constants for use in the dimension
16450 expression.
16451
16452 @item eval
16453 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
16454
16455 @table @samp
16456 @item init
16457 Only evaluate expressions once during the filter initialization or when a command is processed.
16458
16459 @item frame
16460 Evaluate expressions for each incoming frame.
16461
16462 @end table
16463
16464 Default value is @samp{init}.
16465
16466
16467 @item interl
16468 Set the interlacing mode. It accepts the following values:
16469
16470 @table @samp
16471 @item 1
16472 Force interlaced aware scaling.
16473
16474 @item 0
16475 Do not apply interlaced scaling.
16476
16477 @item -1
16478 Select interlaced aware scaling depending on whether the source frames
16479 are flagged as interlaced or not.
16480 @end table
16481
16482 Default value is @samp{0}.
16483
16484 @item flags
16485 Set libswscale scaling flags. See
16486 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16487 complete list of values. If not explicitly specified the filter applies
16488 the default flags.
16489
16490
16491 @item param0, param1
16492 Set libswscale input parameters for scaling algorithms that need them. See
16493 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16494 complete documentation. If not explicitly specified the filter applies
16495 empty parameters.
16496
16497
16498
16499 @item size, s
16500 Set the video size. For the syntax of this option, check the
16501 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16502
16503 @item in_color_matrix
16504 @item out_color_matrix
16505 Set in/output YCbCr color space type.
16506
16507 This allows the autodetected value to be overridden as well as allows forcing
16508 a specific value used for the output and encoder.
16509
16510 If not specified, the color space type depends on the pixel format.
16511
16512 Possible values:
16513
16514 @table @samp
16515 @item auto
16516 Choose automatically.
16517
16518 @item bt709
16519 Format conforming to International Telecommunication Union (ITU)
16520 Recommendation BT.709.
16521
16522 @item fcc
16523 Set color space conforming to the United States Federal Communications
16524 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16525
16526 @item bt601
16527 @item bt470
16528 @item smpte170m
16529 Set color space conforming to:
16530
16531 @itemize
16532 @item
16533 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16534
16535 @item
16536 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16537
16538 @item
16539 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16540
16541 @end itemize
16542
16543 @item smpte240m
16544 Set color space conforming to SMPTE ST 240:1999.
16545
16546 @item bt2020
16547 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16548 @end table
16549
16550 @item in_range
16551 @item out_range
16552 Set in/output YCbCr sample range.
16553
16554 This allows the autodetected value to be overridden as well as allows forcing
16555 a specific value used for the output and encoder. If not specified, the
16556 range depends on the pixel format. Possible values:
16557
16558 @table @samp
16559 @item auto/unknown
16560 Choose automatically.
16561
16562 @item jpeg/full/pc
16563 Set full range (0-255 in case of 8-bit luma).
16564
16565 @item mpeg/limited/tv
16566 Set "MPEG" range (16-235 in case of 8-bit luma).
16567 @end table
16568
16569 @item force_original_aspect_ratio
16570 Enable decreasing or increasing output video width or height if necessary to
16571 keep the original aspect ratio. Possible values:
16572
16573 @table @samp
16574 @item disable
16575 Scale the video as specified and disable this feature.
16576
16577 @item decrease
16578 The output video dimensions will automatically be decreased if needed.
16579
16580 @item increase
16581 The output video dimensions will automatically be increased if needed.
16582
16583 @end table
16584
16585 One useful instance of this option is that when you know a specific device's
16586 maximum allowed resolution, you can use this to limit the output video to
16587 that, while retaining the aspect ratio. For example, device A allows
16588 1280x720 playback, and your video is 1920x800. Using this option (set it to
16589 decrease) and specifying 1280x720 to the command line makes the output
16590 1280x533.
16591
16592 Please note that this is a different thing than specifying -1 for @option{w}
16593 or @option{h}, you still need to specify the output resolution for this option
16594 to work.
16595
16596 @item force_divisible_by
16597 Ensures that both the output dimensions, width and height, are divisible by the
16598 given integer when used together with @option{force_original_aspect_ratio}. This
16599 works similar to using @code{-n} in the @option{w} and @option{h} options.
16600
16601 This option respects the value set for @option{force_original_aspect_ratio},
16602 increasing or decreasing the resolution accordingly. The video's aspect ratio
16603 may be slightly modified.
16604
16605 This option can be handy if you need to have a video fit within or exceed
16606 a defined resolution using @option{force_original_aspect_ratio} but also have
16607 encoder restrictions on width or height divisibility.
16608
16609 @end table
16610
16611 The values of the @option{w} and @option{h} options are expressions
16612 containing the following constants:
16613
16614 @table @var
16615 @item in_w
16616 @item in_h
16617 The input width and height
16618
16619 @item iw
16620 @item ih
16621 These are the same as @var{in_w} and @var{in_h}.
16622
16623 @item out_w
16624 @item out_h
16625 The output (scaled) width and height
16626
16627 @item ow
16628 @item oh
16629 These are the same as @var{out_w} and @var{out_h}
16630
16631 @item a
16632 The same as @var{iw} / @var{ih}
16633
16634 @item sar
16635 input sample aspect ratio
16636
16637 @item dar
16638 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16639
16640 @item hsub
16641 @item vsub
16642 horizontal and vertical input chroma subsample values. For example for the
16643 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16644
16645 @item ohsub
16646 @item ovsub
16647 horizontal and vertical output chroma subsample values. For example for the
16648 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16649
16650 @item n
16651 The (sequential) number of the input frame, starting from 0.
16652 Only available with @code{eval=frame}.
16653
16654 @item t
16655 The presentation timestamp of the input frame, expressed as a number of
16656 seconds. Only available with @code{eval=frame}.
16657
16658 @item pos
16659 The position (byte offset) of the frame in the input stream, or NaN if
16660 this information is unavailable and/or meaningless (for example in case of synthetic video).
16661 Only available with @code{eval=frame}.
16662 @end table
16663
16664 @subsection Examples
16665
16666 @itemize
16667 @item
16668 Scale the input video to a size of 200x100
16669 @example
16670 scale=w=200:h=100
16671 @end example
16672
16673 This is equivalent to:
16674 @example
16675 scale=200:100
16676 @end example
16677
16678 or:
16679 @example
16680 scale=200x100
16681 @end example
16682
16683 @item
16684 Specify a size abbreviation for the output size:
16685 @example
16686 scale=qcif
16687 @end example
16688
16689 which can also be written as:
16690 @example
16691 scale=size=qcif
16692 @end example
16693
16694 @item
16695 Scale the input to 2x:
16696 @example
16697 scale=w=2*iw:h=2*ih
16698 @end example
16699
16700 @item
16701 The above is the same as:
16702 @example
16703 scale=2*in_w:2*in_h
16704 @end example
16705
16706 @item
16707 Scale the input to 2x with forced interlaced scaling:
16708 @example
16709 scale=2*iw:2*ih:interl=1
16710 @end example
16711
16712 @item
16713 Scale the input to half size:
16714 @example
16715 scale=w=iw/2:h=ih/2
16716 @end example
16717
16718 @item
16719 Increase the width, and set the height to the same size:
16720 @example
16721 scale=3/2*iw:ow
16722 @end example
16723
16724 @item
16725 Seek Greek harmony:
16726 @example
16727 scale=iw:1/PHI*iw
16728 scale=ih*PHI:ih
16729 @end example
16730
16731 @item
16732 Increase the height, and set the width to 3/2 of the height:
16733 @example
16734 scale=w=3/2*oh:h=3/5*ih
16735 @end example
16736
16737 @item
16738 Increase the size, making the size a multiple of the chroma
16739 subsample values:
16740 @example
16741 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
16742 @end example
16743
16744 @item
16745 Increase the width to a maximum of 500 pixels,
16746 keeping the same aspect ratio as the input:
16747 @example
16748 scale=w='min(500\, iw*3/2):h=-1'
16749 @end example
16750
16751 @item
16752 Make pixels square by combining scale and setsar:
16753 @example
16754 scale='trunc(ih*dar):ih',setsar=1/1
16755 @end example
16756
16757 @item
16758 Make pixels square by combining scale and setsar,
16759 making sure the resulting resolution is even (required by some codecs):
16760 @example
16761 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
16762 @end example
16763 @end itemize
16764
16765 @subsection Commands
16766
16767 This filter supports the following commands:
16768 @table @option
16769 @item width, w
16770 @item height, h
16771 Set the output video dimension expression.
16772 The command accepts the same syntax of the corresponding option.
16773
16774 If the specified expression is not valid, it is kept at its current
16775 value.
16776 @end table
16777
16778 @section scale_npp
16779
16780 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
16781 format conversion on CUDA video frames. Setting the output width and height
16782 works in the same way as for the @var{scale} filter.
16783
16784 The following additional options are accepted:
16785 @table @option
16786 @item format
16787 The pixel format of the output CUDA frames. If set to the string "same" (the
16788 default), the input format will be kept. Note that automatic format negotiation
16789 and conversion is not yet supported for hardware frames
16790
16791 @item interp_algo
16792 The interpolation algorithm used for resizing. One of the following:
16793 @table @option
16794 @item nn
16795 Nearest neighbour.
16796
16797 @item linear
16798 @item cubic
16799 @item cubic2p_bspline
16800 2-parameter cubic (B=1, C=0)
16801
16802 @item cubic2p_catmullrom
16803 2-parameter cubic (B=0, C=1/2)
16804
16805 @item cubic2p_b05c03
16806 2-parameter cubic (B=1/2, C=3/10)
16807
16808 @item super
16809 Supersampling
16810
16811 @item lanczos
16812 @end table
16813
16814 @item force_original_aspect_ratio
16815 Enable decreasing or increasing output video width or height if necessary to
16816 keep the original aspect ratio. Possible values:
16817
16818 @table @samp
16819 @item disable
16820 Scale the video as specified and disable this feature.
16821
16822 @item decrease
16823 The output video dimensions will automatically be decreased if needed.
16824
16825 @item increase
16826 The output video dimensions will automatically be increased if needed.
16827
16828 @end table
16829
16830 One useful instance of this option is that when you know a specific device's
16831 maximum allowed resolution, you can use this to limit the output video to
16832 that, while retaining the aspect ratio. For example, device A allows
16833 1280x720 playback, and your video is 1920x800. Using this option (set it to
16834 decrease) and specifying 1280x720 to the command line makes the output
16835 1280x533.
16836
16837 Please note that this is a different thing than specifying -1 for @option{w}
16838 or @option{h}, you still need to specify the output resolution for this option
16839 to work.
16840
16841 @item force_divisible_by
16842 Ensures that both the output dimensions, width and height, are divisible by the
16843 given integer when used together with @option{force_original_aspect_ratio}. This
16844 works similar to using @code{-n} in the @option{w} and @option{h} options.
16845
16846 This option respects the value set for @option{force_original_aspect_ratio},
16847 increasing or decreasing the resolution accordingly. The video's aspect ratio
16848 may be slightly modified.
16849
16850 This option can be handy if you need to have a video fit within or exceed
16851 a defined resolution using @option{force_original_aspect_ratio} but also have
16852 encoder restrictions on width or height divisibility.
16853
16854 @end table
16855
16856 @section scale2ref
16857
16858 Scale (resize) the input video, based on a reference video.
16859
16860 See the scale filter for available options, scale2ref supports the same but
16861 uses the reference video instead of the main input as basis. scale2ref also
16862 supports the following additional constants for the @option{w} and
16863 @option{h} options:
16864
16865 @table @var
16866 @item main_w
16867 @item main_h
16868 The main input video's width and height
16869
16870 @item main_a
16871 The same as @var{main_w} / @var{main_h}
16872
16873 @item main_sar
16874 The main input video's sample aspect ratio
16875
16876 @item main_dar, mdar
16877 The main input video's display aspect ratio. Calculated from
16878 @code{(main_w / main_h) * main_sar}.
16879
16880 @item main_hsub
16881 @item main_vsub
16882 The main input video's horizontal and vertical chroma subsample values.
16883 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
16884 is 1.
16885
16886 @item main_n
16887 The (sequential) number of the main input frame, starting from 0.
16888 Only available with @code{eval=frame}.
16889
16890 @item main_t
16891 The presentation timestamp of the main input frame, expressed as a number of
16892 seconds. Only available with @code{eval=frame}.
16893
16894 @item main_pos
16895 The position (byte offset) of the frame in the main input stream, or NaN if
16896 this information is unavailable and/or meaningless (for example in case of synthetic video).
16897 Only available with @code{eval=frame}.
16898 @end table
16899
16900 @subsection Examples
16901
16902 @itemize
16903 @item
16904 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
16905 @example
16906 'scale2ref[b][a];[a][b]overlay'
16907 @end example
16908
16909 @item
16910 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
16911 @example
16912 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
16913 @end example
16914 @end itemize
16915
16916 @subsection Commands
16917
16918 This filter supports the following commands:
16919 @table @option
16920 @item width, w
16921 @item height, h
16922 Set the output video dimension expression.
16923 The command accepts the same syntax of the corresponding option.
16924
16925 If the specified expression is not valid, it is kept at its current
16926 value.
16927 @end table
16928
16929 @section scroll
16930 Scroll input video horizontally and/or vertically by constant speed.
16931
16932 The filter accepts the following options:
16933 @table @option
16934 @item horizontal, h
16935 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
16936 Negative values changes scrolling direction.
16937
16938 @item vertical, v
16939 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
16940 Negative values changes scrolling direction.
16941
16942 @item hpos
16943 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
16944
16945 @item vpos
16946 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
16947 @end table
16948
16949 @subsection Commands
16950
16951 This filter supports the following @ref{commands}:
16952 @table @option
16953 @item horizontal, h
16954 Set the horizontal scrolling speed.
16955 @item vertical, v
16956 Set the vertical scrolling speed.
16957 @end table
16958
16959 @anchor{scdet}
16960 @section scdet
16961
16962 Detect video scene change.
16963
16964 This filter sets frame metadata with mafd between frame, the scene score, and
16965 forward the frame to the next filter, so they can use these metadata to detect
16966 scene change or others.
16967
16968 In addition, this filter logs a message and sets frame metadata when it detects
16969 a scene change by @option{threshold}.
16970
16971 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
16972
16973 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
16974 to detect scene change.
16975
16976 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
16977 detect scene change with @option{threshold}.
16978
16979 The filter accepts the following options:
16980
16981 @table @option
16982 @item threshold, t
16983 Set the scene change detection threshold as a percentage of maximum change. Good
16984 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
16985 @code{[0., 100.]}.
16986
16987 Default value is @code{10.}.
16988
16989 @item sc_pass, s
16990 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
16991 You can enable it if you want to get snapshot of scene change frames only.
16992 @end table
16993
16994 @anchor{selectivecolor}
16995 @section selectivecolor
16996
16997 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
16998 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
16999 by the "purity" of the color (that is, how saturated it already is).
17000
17001 This filter is similar to the Adobe Photoshop Selective Color tool.
17002
17003 The filter accepts the following options:
17004
17005 @table @option
17006 @item correction_method
17007 Select color correction method.
17008
17009 Available values are:
17010 @table @samp
17011 @item absolute
17012 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17013 component value).
17014 @item relative
17015 Specified adjustments are relative to the original component value.
17016 @end table
17017 Default is @code{absolute}.
17018 @item reds
17019 Adjustments for red pixels (pixels where the red component is the maximum)
17020 @item yellows
17021 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17022 @item greens
17023 Adjustments for green pixels (pixels where the green component is the maximum)
17024 @item cyans
17025 Adjustments for cyan pixels (pixels where the red component is the minimum)
17026 @item blues
17027 Adjustments for blue pixels (pixels where the blue component is the maximum)
17028 @item magentas
17029 Adjustments for magenta pixels (pixels where the green component is the minimum)
17030 @item whites
17031 Adjustments for white pixels (pixels where all components are greater than 128)
17032 @item neutrals
17033 Adjustments for all pixels except pure black and pure white
17034 @item blacks
17035 Adjustments for black pixels (pixels where all components are lesser than 128)
17036 @item psfile
17037 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17038 @end table
17039
17040 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17041 4 space separated floating point adjustment values in the [-1,1] range,
17042 respectively to adjust the amount of cyan, magenta, yellow and black for the
17043 pixels of its range.
17044
17045 @subsection Examples
17046
17047 @itemize
17048 @item
17049 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17050 increase magenta by 27% in blue areas:
17051 @example
17052 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17053 @end example
17054
17055 @item
17056 Use a Photoshop selective color preset:
17057 @example
17058 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17059 @end example
17060 @end itemize
17061
17062 @anchor{separatefields}
17063 @section separatefields
17064
17065 The @code{separatefields} takes a frame-based video input and splits
17066 each frame into its components fields, producing a new half height clip
17067 with twice the frame rate and twice the frame count.
17068
17069 This filter use field-dominance information in frame to decide which
17070 of each pair of fields to place first in the output.
17071 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
17072
17073 @section setdar, setsar
17074
17075 The @code{setdar} filter sets the Display Aspect Ratio for the filter
17076 output video.
17077
17078 This is done by changing the specified Sample (aka Pixel) Aspect
17079 Ratio, according to the following equation:
17080 @example
17081 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
17082 @end example
17083
17084 Keep in mind that the @code{setdar} filter does not modify the pixel
17085 dimensions of the video frame. Also, the display aspect ratio set by
17086 this filter may be changed by later filters in the filterchain,
17087 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
17088 applied.
17089
17090 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
17091 the filter output video.
17092
17093 Note that as a consequence of the application of this filter, the
17094 output display aspect ratio will change according to the equation
17095 above.
17096
17097 Keep in mind that the sample aspect ratio set by the @code{setsar}
17098 filter may be changed by later filters in the filterchain, e.g. if
17099 another "setsar" or a "setdar" filter is applied.
17100
17101 It accepts the following parameters:
17102
17103 @table @option
17104 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
17105 Set the aspect ratio used by the filter.
17106
17107 The parameter can be a floating point number string, an expression, or
17108 a string of the form @var{num}:@var{den}, where @var{num} and
17109 @var{den} are the numerator and denominator of the aspect ratio. If
17110 the parameter is not specified, it is assumed the value "0".
17111 In case the form "@var{num}:@var{den}" is used, the @code{:} character
17112 should be escaped.
17113
17114 @item max
17115 Set the maximum integer value to use for expressing numerator and
17116 denominator when reducing the expressed aspect ratio to a rational.
17117 Default value is @code{100}.
17118
17119 @end table
17120
17121 The parameter @var{sar} is an expression containing
17122 the following constants:
17123
17124 @table @option
17125 @item E, PI, PHI
17126 These are approximated values for the mathematical constants e
17127 (Euler's number), pi (Greek pi), and phi (the golden ratio).
17128
17129 @item w, h
17130 The input width and height.
17131
17132 @item a
17133 These are the same as @var{w} / @var{h}.
17134
17135 @item sar
17136 The input sample aspect ratio.
17137
17138 @item dar
17139 The input display aspect ratio. It is the same as
17140 (@var{w} / @var{h}) * @var{sar}.
17141
17142 @item hsub, vsub
17143 Horizontal and vertical chroma subsample values. For example, for the
17144 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17145 @end table
17146
17147 @subsection Examples
17148
17149 @itemize
17150
17151 @item
17152 To change the display aspect ratio to 16:9, specify one of the following:
17153 @example
17154 setdar=dar=1.77777
17155 setdar=dar=16/9
17156 @end example
17157
17158 @item
17159 To change the sample aspect ratio to 10:11, specify:
17160 @example
17161 setsar=sar=10/11
17162 @end example
17163
17164 @item
17165 To set a display aspect ratio of 16:9, and specify a maximum integer value of
17166 1000 in the aspect ratio reduction, use the command:
17167 @example
17168 setdar=ratio=16/9:max=1000
17169 @end example
17170
17171 @end itemize
17172
17173 @anchor{setfield}
17174 @section setfield
17175
17176 Force field for the output video frame.
17177
17178 The @code{setfield} filter marks the interlace type field for the
17179 output frames. It does not change the input frame, but only sets the
17180 corresponding property, which affects how the frame is treated by
17181 following filters (e.g. @code{fieldorder} or @code{yadif}).
17182
17183 The filter accepts the following options:
17184
17185 @table @option
17186
17187 @item mode
17188 Available values are:
17189
17190 @table @samp
17191 @item auto
17192 Keep the same field property.
17193
17194 @item bff
17195 Mark the frame as bottom-field-first.
17196
17197 @item tff
17198 Mark the frame as top-field-first.
17199
17200 @item prog
17201 Mark the frame as progressive.
17202 @end table
17203 @end table
17204
17205 @anchor{setparams}
17206 @section setparams
17207
17208 Force frame parameter for the output video frame.
17209
17210 The @code{setparams} filter marks interlace and color range for the
17211 output frames. It does not change the input frame, but only sets the
17212 corresponding property, which affects how the frame is treated by
17213 filters/encoders.
17214
17215 @table @option
17216 @item field_mode
17217 Available values are:
17218
17219 @table @samp
17220 @item auto
17221 Keep the same field property (default).
17222
17223 @item bff
17224 Mark the frame as bottom-field-first.
17225
17226 @item tff
17227 Mark the frame as top-field-first.
17228
17229 @item prog
17230 Mark the frame as progressive.
17231 @end table
17232
17233 @item range
17234 Available values are:
17235
17236 @table @samp
17237 @item auto
17238 Keep the same color range property (default).
17239
17240 @item unspecified, unknown
17241 Mark the frame as unspecified color range.
17242
17243 @item limited, tv, mpeg
17244 Mark the frame as limited range.
17245
17246 @item full, pc, jpeg
17247 Mark the frame as full range.
17248 @end table
17249
17250 @item color_primaries
17251 Set the color primaries.
17252 Available values are:
17253
17254 @table @samp
17255 @item auto
17256 Keep the same color primaries property (default).
17257
17258 @item bt709
17259 @item unknown
17260 @item bt470m
17261 @item bt470bg
17262 @item smpte170m
17263 @item smpte240m
17264 @item film
17265 @item bt2020
17266 @item smpte428
17267 @item smpte431
17268 @item smpte432
17269 @item jedec-p22
17270 @end table
17271
17272 @item color_trc
17273 Set the color transfer.
17274 Available values are:
17275
17276 @table @samp
17277 @item auto
17278 Keep the same color trc property (default).
17279
17280 @item bt709
17281 @item unknown
17282 @item bt470m
17283 @item bt470bg
17284 @item smpte170m
17285 @item smpte240m
17286 @item linear
17287 @item log100
17288 @item log316
17289 @item iec61966-2-4
17290 @item bt1361e
17291 @item iec61966-2-1
17292 @item bt2020-10
17293 @item bt2020-12
17294 @item smpte2084
17295 @item smpte428
17296 @item arib-std-b67
17297 @end table
17298
17299 @item colorspace
17300 Set the colorspace.
17301 Available values are:
17302
17303 @table @samp
17304 @item auto
17305 Keep the same colorspace property (default).
17306
17307 @item gbr
17308 @item bt709
17309 @item unknown
17310 @item fcc
17311 @item bt470bg
17312 @item smpte170m
17313 @item smpte240m
17314 @item ycgco
17315 @item bt2020nc
17316 @item bt2020c
17317 @item smpte2085
17318 @item chroma-derived-nc
17319 @item chroma-derived-c
17320 @item ictcp
17321 @end table
17322 @end table
17323
17324 @section showinfo
17325
17326 Show a line containing various information for each input video frame.
17327 The input video is not modified.
17328
17329 This filter supports the following options:
17330
17331 @table @option
17332 @item checksum
17333 Calculate checksums of each plane. By default enabled.
17334 @end table
17335
17336 The shown line contains a sequence of key/value pairs of the form
17337 @var{key}:@var{value}.
17338
17339 The following values are shown in the output:
17340
17341 @table @option
17342 @item n
17343 The (sequential) number of the input frame, starting from 0.
17344
17345 @item pts
17346 The Presentation TimeStamp of the input frame, expressed as a number of
17347 time base units. The time base unit depends on the filter input pad.
17348
17349 @item pts_time
17350 The Presentation TimeStamp of the input frame, expressed as a number of
17351 seconds.
17352
17353 @item pos
17354 The position of the frame in the input stream, or -1 if this information is
17355 unavailable and/or meaningless (for example in case of synthetic video).
17356
17357 @item fmt
17358 The pixel format name.
17359
17360 @item sar
17361 The sample aspect ratio of the input frame, expressed in the form
17362 @var{num}/@var{den}.
17363
17364 @item s
17365 The size of the input frame. For the syntax of this option, check the
17366 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17367
17368 @item i
17369 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
17370 for bottom field first).
17371
17372 @item iskey
17373 This is 1 if the frame is a key frame, 0 otherwise.
17374
17375 @item type
17376 The picture type of the input frame ("I" for an I-frame, "P" for a
17377 P-frame, "B" for a B-frame, or "?" for an unknown type).
17378 Also refer to the documentation of the @code{AVPictureType} enum and of
17379 the @code{av_get_picture_type_char} function defined in
17380 @file{libavutil/avutil.h}.
17381
17382 @item checksum
17383 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
17384
17385 @item plane_checksum
17386 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
17387 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
17388
17389 @item mean
17390 The mean value of pixels in each plane of the input frame, expressed in the form
17391 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
17392
17393 @item stdev
17394 The standard deviation of pixel values in each plane of the input frame, expressed
17395 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
17396
17397 @end table
17398
17399 @section showpalette
17400
17401 Displays the 256 colors palette of each frame. This filter is only relevant for
17402 @var{pal8} pixel format frames.
17403
17404 It accepts the following option:
17405
17406 @table @option
17407 @item s
17408 Set the size of the box used to represent one palette color entry. Default is
17409 @code{30} (for a @code{30x30} pixel box).
17410 @end table
17411
17412 @section shuffleframes
17413
17414 Reorder and/or duplicate and/or drop video frames.
17415
17416 It accepts the following parameters:
17417
17418 @table @option
17419 @item mapping
17420 Set the destination indexes of input frames.
17421 This is space or '|' separated list of indexes that maps input frames to output
17422 frames. Number of indexes also sets maximal value that each index may have.
17423 '-1' index have special meaning and that is to drop frame.
17424 @end table
17425
17426 The first frame has the index 0. The default is to keep the input unchanged.
17427
17428 @subsection Examples
17429
17430 @itemize
17431 @item
17432 Swap second and third frame of every three frames of the input:
17433 @example
17434 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
17435 @end example
17436
17437 @item
17438 Swap 10th and 1st frame of every ten frames of the input:
17439 @example
17440 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
17441 @end example
17442 @end itemize
17443
17444 @section shuffleplanes
17445
17446 Reorder and/or duplicate video planes.
17447
17448 It accepts the following parameters:
17449
17450 @table @option
17451
17452 @item map0
17453 The index of the input plane to be used as the first output plane.
17454
17455 @item map1
17456 The index of the input plane to be used as the second output plane.
17457
17458 @item map2
17459 The index of the input plane to be used as the third output plane.
17460
17461 @item map3
17462 The index of the input plane to be used as the fourth output plane.
17463
17464 @end table
17465
17466 The first plane has the index 0. The default is to keep the input unchanged.
17467
17468 @subsection Examples
17469
17470 @itemize
17471 @item
17472 Swap the second and third planes of the input:
17473 @example
17474 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
17475 @end example
17476 @end itemize
17477
17478 @anchor{signalstats}
17479 @section signalstats
17480 Evaluate various visual metrics that assist in determining issues associated
17481 with the digitization of analog video media.
17482
17483 By default the filter will log these metadata values:
17484
17485 @table @option
17486 @item YMIN
17487 Display the minimal Y value contained within the input frame. Expressed in
17488 range of [0-255].
17489
17490 @item YLOW
17491 Display the Y value at the 10% percentile within the input frame. Expressed in
17492 range of [0-255].
17493
17494 @item YAVG
17495 Display the average Y value within the input frame. Expressed in range of
17496 [0-255].
17497
17498 @item YHIGH
17499 Display the Y value at the 90% percentile within the input frame. Expressed in
17500 range of [0-255].
17501
17502 @item YMAX
17503 Display the maximum Y value contained within the input frame. Expressed in
17504 range of [0-255].
17505
17506 @item UMIN
17507 Display the minimal U value contained within the input frame. Expressed in
17508 range of [0-255].
17509
17510 @item ULOW
17511 Display the U value at the 10% percentile within the input frame. Expressed in
17512 range of [0-255].
17513
17514 @item UAVG
17515 Display the average U value within the input frame. Expressed in range of
17516 [0-255].
17517
17518 @item UHIGH
17519 Display the U value at the 90% percentile within the input frame. Expressed in
17520 range of [0-255].
17521
17522 @item UMAX
17523 Display the maximum U value contained within the input frame. Expressed in
17524 range of [0-255].
17525
17526 @item VMIN
17527 Display the minimal V value contained within the input frame. Expressed in
17528 range of [0-255].
17529
17530 @item VLOW
17531 Display the V value at the 10% percentile within the input frame. Expressed in
17532 range of [0-255].
17533
17534 @item VAVG
17535 Display the average V value within the input frame. Expressed in range of
17536 [0-255].
17537
17538 @item VHIGH
17539 Display the V value at the 90% percentile within the input frame. Expressed in
17540 range of [0-255].
17541
17542 @item VMAX
17543 Display the maximum V value contained within the input frame. Expressed in
17544 range of [0-255].
17545
17546 @item SATMIN
17547 Display the minimal saturation value contained within the input frame.
17548 Expressed in range of [0-~181.02].
17549
17550 @item SATLOW
17551 Display the saturation value at the 10% percentile within the input frame.
17552 Expressed in range of [0-~181.02].
17553
17554 @item SATAVG
17555 Display the average saturation value within the input frame. Expressed in range
17556 of [0-~181.02].
17557
17558 @item SATHIGH
17559 Display the saturation value at the 90% percentile within the input frame.
17560 Expressed in range of [0-~181.02].
17561
17562 @item SATMAX
17563 Display the maximum saturation value contained within the input frame.
17564 Expressed in range of [0-~181.02].
17565
17566 @item HUEMED
17567 Display the median value for hue within the input frame. Expressed in range of
17568 [0-360].
17569
17570 @item HUEAVG
17571 Display the average value for hue within the input frame. Expressed in range of
17572 [0-360].
17573
17574 @item YDIF
17575 Display the average of sample value difference between all values of the Y
17576 plane in the current frame and corresponding values of the previous input frame.
17577 Expressed in range of [0-255].
17578
17579 @item UDIF
17580 Display the average of sample value difference between all values of the U
17581 plane in the current frame and corresponding values of the previous input frame.
17582 Expressed in range of [0-255].
17583
17584 @item VDIF
17585 Display the average of sample value difference between all values of the V
17586 plane in the current frame and corresponding values of the previous input frame.
17587 Expressed in range of [0-255].
17588
17589 @item YBITDEPTH
17590 Display bit depth of Y plane in current frame.
17591 Expressed in range of [0-16].
17592
17593 @item UBITDEPTH
17594 Display bit depth of U plane in current frame.
17595 Expressed in range of [0-16].
17596
17597 @item VBITDEPTH
17598 Display bit depth of V plane in current frame.
17599 Expressed in range of [0-16].
17600 @end table
17601
17602 The filter accepts the following options:
17603
17604 @table @option
17605 @item stat
17606 @item out
17607
17608 @option{stat} specify an additional form of image analysis.
17609 @option{out} output video with the specified type of pixel highlighted.
17610
17611 Both options accept the following values:
17612
17613 @table @samp
17614 @item tout
17615 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
17616 unlike the neighboring pixels of the same field. Examples of temporal outliers
17617 include the results of video dropouts, head clogs, or tape tracking issues.
17618
17619 @item vrep
17620 Identify @var{vertical line repetition}. Vertical line repetition includes
17621 similar rows of pixels within a frame. In born-digital video vertical line
17622 repetition is common, but this pattern is uncommon in video digitized from an
17623 analog source. When it occurs in video that results from the digitization of an
17624 analog source it can indicate concealment from a dropout compensator.
17625
17626 @item brng
17627 Identify pixels that fall outside of legal broadcast range.
17628 @end table
17629
17630 @item color, c
17631 Set the highlight color for the @option{out} option. The default color is
17632 yellow.
17633 @end table
17634
17635 @subsection Examples
17636
17637 @itemize
17638 @item
17639 Output data of various video metrics:
17640 @example
17641 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
17642 @end example
17643
17644 @item
17645 Output specific data about the minimum and maximum values of the Y plane per frame:
17646 @example
17647 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
17648 @end example
17649
17650 @item
17651 Playback video while highlighting pixels that are outside of broadcast range in red.
17652 @example
17653 ffplay example.mov -vf signalstats="out=brng:color=red"
17654 @end example
17655
17656 @item
17657 Playback video with signalstats metadata drawn over the frame.
17658 @example
17659 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
17660 @end example
17661
17662 The contents of signalstat_drawtext.txt used in the command are:
17663 @example
17664 time %@{pts:hms@}
17665 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
17666 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
17667 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
17668 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
17669
17670 @end example
17671 @end itemize
17672
17673 @anchor{signature}
17674 @section signature
17675
17676 Calculates the MPEG-7 Video Signature. The filter can handle more than one
17677 input. In this case the matching between the inputs can be calculated additionally.
17678 The filter always passes through the first input. The signature of each stream can
17679 be written into a file.
17680
17681 It accepts the following options:
17682
17683 @table @option
17684 @item detectmode
17685 Enable or disable the matching process.
17686
17687 Available values are:
17688
17689 @table @samp
17690 @item off
17691 Disable the calculation of a matching (default).
17692 @item full
17693 Calculate the matching for the whole video and output whether the whole video
17694 matches or only parts.
17695 @item fast
17696 Calculate only until a matching is found or the video ends. Should be faster in
17697 some cases.
17698 @end table
17699
17700 @item nb_inputs
17701 Set the number of inputs. The option value must be a non negative integer.
17702 Default value is 1.
17703
17704 @item filename
17705 Set the path to which the output is written. If there is more than one input,
17706 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
17707 integer), that will be replaced with the input number. If no filename is
17708 specified, no output will be written. This is the default.
17709
17710 @item format
17711 Choose the output format.
17712
17713 Available values are:
17714
17715 @table @samp
17716 @item binary
17717 Use the specified binary representation (default).
17718 @item xml
17719 Use the specified xml representation.
17720 @end table
17721
17722 @item th_d
17723 Set threshold to detect one word as similar. The option value must be an integer
17724 greater than zero. The default value is 9000.
17725
17726 @item th_dc
17727 Set threshold to detect all words as similar. The option value must be an integer
17728 greater than zero. The default value is 60000.
17729
17730 @item th_xh
17731 Set threshold to detect frames as similar. The option value must be an integer
17732 greater than zero. The default value is 116.
17733
17734 @item th_di
17735 Set the minimum length of a sequence in frames to recognize it as matching
17736 sequence. The option value must be a non negative integer value.
17737 The default value is 0.
17738
17739 @item th_it
17740 Set the minimum relation, that matching frames to all frames must have.
17741 The option value must be a double value between 0 and 1. The default value is 0.5.
17742 @end table
17743
17744 @subsection Examples
17745
17746 @itemize
17747 @item
17748 To calculate the signature of an input video and store it in signature.bin:
17749 @example
17750 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
17751 @end example
17752
17753 @item
17754 To detect whether two videos match and store the signatures in XML format in
17755 signature0.xml and signature1.xml:
17756 @example
17757 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 -
17758 @end example
17759
17760 @end itemize
17761
17762 @anchor{smartblur}
17763 @section smartblur
17764
17765 Blur the input video without impacting the outlines.
17766
17767 It accepts the following options:
17768
17769 @table @option
17770 @item luma_radius, lr
17771 Set the luma radius. The option value must be a float number in
17772 the range [0.1,5.0] that specifies the variance of the gaussian filter
17773 used to blur the image (slower if larger). Default value is 1.0.
17774
17775 @item luma_strength, ls
17776 Set the luma strength. The option value must be a float number
17777 in the range [-1.0,1.0] that configures the blurring. A value included
17778 in [0.0,1.0] will blur the image whereas a value included in
17779 [-1.0,0.0] will sharpen the image. Default value is 1.0.
17780
17781 @item luma_threshold, lt
17782 Set the luma threshold used as a coefficient to determine
17783 whether a pixel should be blurred or not. The option value must be an
17784 integer in the range [-30,30]. A value of 0 will filter all the image,
17785 a value included in [0,30] will filter flat areas and a value included
17786 in [-30,0] will filter edges. Default value is 0.
17787
17788 @item chroma_radius, cr
17789 Set the chroma radius. The option value must be a float number in
17790 the range [0.1,5.0] that specifies the variance of the gaussian filter
17791 used to blur the image (slower if larger). Default value is @option{luma_radius}.
17792
17793 @item chroma_strength, cs
17794 Set the chroma strength. The option value must be a float number
17795 in the range [-1.0,1.0] that configures the blurring. A value included
17796 in [0.0,1.0] will blur the image whereas a value included in
17797 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
17798
17799 @item chroma_threshold, ct
17800 Set the chroma threshold used as a coefficient to determine
17801 whether a pixel should be blurred or not. The option value must be an
17802 integer in the range [-30,30]. A value of 0 will filter all the image,
17803 a value included in [0,30] will filter flat areas and a value included
17804 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
17805 @end table
17806
17807 If a chroma option is not explicitly set, the corresponding luma value
17808 is set.
17809
17810 @section sobel
17811 Apply sobel operator to input video stream.
17812
17813 The filter accepts the following option:
17814
17815 @table @option
17816 @item planes
17817 Set which planes will be processed, unprocessed planes will be copied.
17818 By default value 0xf, all planes will be processed.
17819
17820 @item scale
17821 Set value which will be multiplied with filtered result.
17822
17823 @item delta
17824 Set value which will be added to filtered result.
17825 @end table
17826
17827 @anchor{spp}
17828 @section spp
17829
17830 Apply a simple postprocessing filter that compresses and decompresses the image
17831 at several (or - in the case of @option{quality} level @code{6} - all) shifts
17832 and average the results.
17833
17834 The filter accepts the following options:
17835
17836 @table @option
17837 @item quality
17838 Set quality. This option defines the number of levels for averaging. It accepts
17839 an integer in the range 0-6. If set to @code{0}, the filter will have no
17840 effect. A value of @code{6} means the higher quality. For each increment of
17841 that value the speed drops by a factor of approximately 2.  Default value is
17842 @code{3}.
17843
17844 @item qp
17845 Force a constant quantization parameter. If not set, the filter will use the QP
17846 from the video stream (if available).
17847
17848 @item mode
17849 Set thresholding mode. Available modes are:
17850
17851 @table @samp
17852 @item hard
17853 Set hard thresholding (default).
17854 @item soft
17855 Set soft thresholding (better de-ringing effect, but likely blurrier).
17856 @end table
17857
17858 @item use_bframe_qp
17859 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
17860 option may cause flicker since the B-Frames have often larger QP. Default is
17861 @code{0} (not enabled).
17862 @end table
17863
17864 @subsection Commands
17865
17866 This filter supports the following commands:
17867 @table @option
17868 @item quality, level
17869 Set quality level. The value @code{max} can be used to set the maximum level,
17870 currently @code{6}.
17871 @end table
17872
17873 @anchor{sr}
17874 @section sr
17875
17876 Scale the input by applying one of the super-resolution methods based on
17877 convolutional neural networks. Supported models:
17878
17879 @itemize
17880 @item
17881 Super-Resolution Convolutional Neural Network model (SRCNN).
17882 See @url{https://arxiv.org/abs/1501.00092}.
17883
17884 @item
17885 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
17886 See @url{https://arxiv.org/abs/1609.05158}.
17887 @end itemize
17888
17889 Training scripts as well as scripts for model file (.pb) saving can be found at
17890 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
17891 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
17892
17893 Native model files (.model) can be generated from TensorFlow model
17894 files (.pb) by using tools/python/convert.py
17895
17896 The filter accepts the following options:
17897
17898 @table @option
17899 @item dnn_backend
17900 Specify which DNN backend to use for model loading and execution. This option accepts
17901 the following values:
17902
17903 @table @samp
17904 @item native
17905 Native implementation of DNN loading and execution.
17906
17907 @item tensorflow
17908 TensorFlow backend. To enable this backend you
17909 need to install the TensorFlow for C library (see
17910 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
17911 @code{--enable-libtensorflow}
17912 @end table
17913
17914 Default value is @samp{native}.
17915
17916 @item model
17917 Set path to model file specifying network architecture and its parameters.
17918 Note that different backends use different file formats. TensorFlow backend
17919 can load files for both formats, while native backend can load files for only
17920 its format.
17921
17922 @item scale_factor
17923 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
17924 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
17925 input upscaled using bicubic upscaling with proper scale factor.
17926 @end table
17927
17928 This feature can also be finished with @ref{dnn_processing} filter.
17929
17930 @section ssim
17931
17932 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
17933
17934 This filter takes in input two input videos, the first input is
17935 considered the "main" source and is passed unchanged to the
17936 output. The second input is used as a "reference" video for computing
17937 the SSIM.
17938
17939 Both video inputs must have the same resolution and pixel format for
17940 this filter to work correctly. Also it assumes that both inputs
17941 have the same number of frames, which are compared one by one.
17942
17943 The filter stores the calculated SSIM of each frame.
17944
17945 The description of the accepted parameters follows.
17946
17947 @table @option
17948 @item stats_file, f
17949 If specified the filter will use the named file to save the SSIM of
17950 each individual frame. When filename equals "-" the data is sent to
17951 standard output.
17952 @end table
17953
17954 The file printed if @var{stats_file} is selected, contains a sequence of
17955 key/value pairs of the form @var{key}:@var{value} for each compared
17956 couple of frames.
17957
17958 A description of each shown parameter follows:
17959
17960 @table @option
17961 @item n
17962 sequential number of the input frame, starting from 1
17963
17964 @item Y, U, V, R, G, B
17965 SSIM of the compared frames for the component specified by the suffix.
17966
17967 @item All
17968 SSIM of the compared frames for the whole frame.
17969
17970 @item dB
17971 Same as above but in dB representation.
17972 @end table
17973
17974 This filter also supports the @ref{framesync} options.
17975
17976 @subsection Examples
17977 @itemize
17978 @item
17979 For example:
17980 @example
17981 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
17982 [main][ref] ssim="stats_file=stats.log" [out]
17983 @end example
17984
17985 On this example the input file being processed is compared with the
17986 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
17987 is stored in @file{stats.log}.
17988
17989 @item
17990 Another example with both psnr and ssim at same time:
17991 @example
17992 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
17993 @end example
17994
17995 @item
17996 Another example with different containers:
17997 @example
17998 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 -
17999 @end example
18000 @end itemize
18001
18002 @section stereo3d
18003
18004 Convert between different stereoscopic image formats.
18005
18006 The filters accept the following options:
18007
18008 @table @option
18009 @item in
18010 Set stereoscopic image format of input.
18011
18012 Available values for input image formats are:
18013 @table @samp
18014 @item sbsl
18015 side by side parallel (left eye left, right eye right)
18016
18017 @item sbsr
18018 side by side crosseye (right eye left, left eye right)
18019
18020 @item sbs2l
18021 side by side parallel with half width resolution
18022 (left eye left, right eye right)
18023
18024 @item sbs2r
18025 side by side crosseye with half width resolution
18026 (right eye left, left eye right)
18027
18028 @item abl
18029 @item tbl
18030 above-below (left eye above, right eye below)
18031
18032 @item abr
18033 @item tbr
18034 above-below (right eye above, left eye below)
18035
18036 @item ab2l
18037 @item tb2l
18038 above-below with half height resolution
18039 (left eye above, right eye below)
18040
18041 @item ab2r
18042 @item tb2r
18043 above-below with half height resolution
18044 (right eye above, left eye below)
18045
18046 @item al
18047 alternating frames (left eye first, right eye second)
18048
18049 @item ar
18050 alternating frames (right eye first, left eye second)
18051
18052 @item irl
18053 interleaved rows (left eye has top row, right eye starts on next row)
18054
18055 @item irr
18056 interleaved rows (right eye has top row, left eye starts on next row)
18057
18058 @item icl
18059 interleaved columns, left eye first
18060
18061 @item icr
18062 interleaved columns, right eye first
18063
18064 Default value is @samp{sbsl}.
18065 @end table
18066
18067 @item out
18068 Set stereoscopic image format of output.
18069
18070 @table @samp
18071 @item sbsl
18072 side by side parallel (left eye left, right eye right)
18073
18074 @item sbsr
18075 side by side crosseye (right eye left, left eye right)
18076
18077 @item sbs2l
18078 side by side parallel with half width resolution
18079 (left eye left, right eye right)
18080
18081 @item sbs2r
18082 side by side crosseye with half width resolution
18083 (right eye left, left eye right)
18084
18085 @item abl
18086 @item tbl
18087 above-below (left eye above, right eye below)
18088
18089 @item abr
18090 @item tbr
18091 above-below (right eye above, left eye below)
18092
18093 @item ab2l
18094 @item tb2l
18095 above-below with half height resolution
18096 (left eye above, right eye below)
18097
18098 @item ab2r
18099 @item tb2r
18100 above-below with half height resolution
18101 (right eye above, left eye below)
18102
18103 @item al
18104 alternating frames (left eye first, right eye second)
18105
18106 @item ar
18107 alternating frames (right eye first, left eye second)
18108
18109 @item irl
18110 interleaved rows (left eye has top row, right eye starts on next row)
18111
18112 @item irr
18113 interleaved rows (right eye has top row, left eye starts on next row)
18114
18115 @item arbg
18116 anaglyph red/blue gray
18117 (red filter on left eye, blue filter on right eye)
18118
18119 @item argg
18120 anaglyph red/green gray
18121 (red filter on left eye, green filter on right eye)
18122
18123 @item arcg
18124 anaglyph red/cyan gray
18125 (red filter on left eye, cyan filter on right eye)
18126
18127 @item arch
18128 anaglyph red/cyan half colored
18129 (red filter on left eye, cyan filter on right eye)
18130
18131 @item arcc
18132 anaglyph red/cyan color
18133 (red filter on left eye, cyan filter on right eye)
18134
18135 @item arcd
18136 anaglyph red/cyan color optimized with the least squares projection of dubois
18137 (red filter on left eye, cyan filter on right eye)
18138
18139 @item agmg
18140 anaglyph green/magenta gray
18141 (green filter on left eye, magenta filter on right eye)
18142
18143 @item agmh
18144 anaglyph green/magenta half colored
18145 (green filter on left eye, magenta filter on right eye)
18146
18147 @item agmc
18148 anaglyph green/magenta colored
18149 (green filter on left eye, magenta filter on right eye)
18150
18151 @item agmd
18152 anaglyph green/magenta color optimized with the least squares projection of dubois
18153 (green filter on left eye, magenta filter on right eye)
18154
18155 @item aybg
18156 anaglyph yellow/blue gray
18157 (yellow filter on left eye, blue filter on right eye)
18158
18159 @item aybh
18160 anaglyph yellow/blue half colored
18161 (yellow filter on left eye, blue filter on right eye)
18162
18163 @item aybc
18164 anaglyph yellow/blue colored
18165 (yellow filter on left eye, blue filter on right eye)
18166
18167 @item aybd
18168 anaglyph yellow/blue color optimized with the least squares projection of dubois
18169 (yellow filter on left eye, blue filter on right eye)
18170
18171 @item ml
18172 mono output (left eye only)
18173
18174 @item mr
18175 mono output (right eye only)
18176
18177 @item chl
18178 checkerboard, left eye first
18179
18180 @item chr
18181 checkerboard, right eye first
18182
18183 @item icl
18184 interleaved columns, left eye first
18185
18186 @item icr
18187 interleaved columns, right eye first
18188
18189 @item hdmi
18190 HDMI frame pack
18191 @end table
18192
18193 Default value is @samp{arcd}.
18194 @end table
18195
18196 @subsection Examples
18197
18198 @itemize
18199 @item
18200 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
18201 @example
18202 stereo3d=sbsl:aybd
18203 @end example
18204
18205 @item
18206 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
18207 @example
18208 stereo3d=abl:sbsr
18209 @end example
18210 @end itemize
18211
18212 @section streamselect, astreamselect
18213 Select video or audio streams.
18214
18215 The filter accepts the following options:
18216
18217 @table @option
18218 @item inputs
18219 Set number of inputs. Default is 2.
18220
18221 @item map
18222 Set input indexes to remap to outputs.
18223 @end table
18224
18225 @subsection Commands
18226
18227 The @code{streamselect} and @code{astreamselect} filter supports the following
18228 commands:
18229
18230 @table @option
18231 @item map
18232 Set input indexes to remap to outputs.
18233 @end table
18234
18235 @subsection Examples
18236
18237 @itemize
18238 @item
18239 Select first 5 seconds 1st stream and rest of time 2nd stream:
18240 @example
18241 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
18242 @end example
18243
18244 @item
18245 Same as above, but for audio:
18246 @example
18247 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
18248 @end example
18249 @end itemize
18250
18251 @anchor{subtitles}
18252 @section subtitles
18253
18254 Draw subtitles on top of input video using the libass library.
18255
18256 To enable compilation of this filter you need to configure FFmpeg with
18257 @code{--enable-libass}. This filter also requires a build with libavcodec and
18258 libavformat to convert the passed subtitles file to ASS (Advanced Substation
18259 Alpha) subtitles format.
18260
18261 The filter accepts the following options:
18262
18263 @table @option
18264 @item filename, f
18265 Set the filename of the subtitle file to read. It must be specified.
18266
18267 @item original_size
18268 Specify the size of the original video, the video for which the ASS file
18269 was composed. For the syntax of this option, check the
18270 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18271 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
18272 correctly scale the fonts if the aspect ratio has been changed.
18273
18274 @item fontsdir
18275 Set a directory path containing fonts that can be used by the filter.
18276 These fonts will be used in addition to whatever the font provider uses.
18277
18278 @item alpha
18279 Process alpha channel, by default alpha channel is untouched.
18280
18281 @item charenc
18282 Set subtitles input character encoding. @code{subtitles} filter only. Only
18283 useful if not UTF-8.
18284
18285 @item stream_index, si
18286 Set subtitles stream index. @code{subtitles} filter only.
18287
18288 @item force_style
18289 Override default style or script info parameters of the subtitles. It accepts a
18290 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
18291 @end table
18292
18293 If the first key is not specified, it is assumed that the first value
18294 specifies the @option{filename}.
18295
18296 For example, to render the file @file{sub.srt} on top of the input
18297 video, use the command:
18298 @example
18299 subtitles=sub.srt
18300 @end example
18301
18302 which is equivalent to:
18303 @example
18304 subtitles=filename=sub.srt
18305 @end example
18306
18307 To render the default subtitles stream from file @file{video.mkv}, use:
18308 @example
18309 subtitles=video.mkv
18310 @end example
18311
18312 To render the second subtitles stream from that file, use:
18313 @example
18314 subtitles=video.mkv:si=1
18315 @end example
18316
18317 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
18318 @code{DejaVu Serif}, use:
18319 @example
18320 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
18321 @end example
18322
18323 @section super2xsai
18324
18325 Scale the input by 2x and smooth using the Super2xSaI (Scale and
18326 Interpolate) pixel art scaling algorithm.
18327
18328 Useful for enlarging pixel art images without reducing sharpness.
18329
18330 @section swaprect
18331
18332 Swap two rectangular objects in video.
18333
18334 This filter accepts the following options:
18335
18336 @table @option
18337 @item w
18338 Set object width.
18339
18340 @item h
18341 Set object height.
18342
18343 @item x1
18344 Set 1st rect x coordinate.
18345
18346 @item y1
18347 Set 1st rect y coordinate.
18348
18349 @item x2
18350 Set 2nd rect x coordinate.
18351
18352 @item y2
18353 Set 2nd rect y coordinate.
18354
18355 All expressions are evaluated once for each frame.
18356 @end table
18357
18358 The all options are expressions containing the following constants:
18359
18360 @table @option
18361 @item w
18362 @item h
18363 The input width and height.
18364
18365 @item a
18366 same as @var{w} / @var{h}
18367
18368 @item sar
18369 input sample aspect ratio
18370
18371 @item dar
18372 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
18373
18374 @item n
18375 The number of the input frame, starting from 0.
18376
18377 @item t
18378 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
18379
18380 @item pos
18381 the position in the file of the input frame, NAN if unknown
18382 @end table
18383
18384 @section swapuv
18385 Swap U & V plane.
18386
18387 @section tblend
18388 Blend successive video frames.
18389
18390 See @ref{blend}
18391
18392 @section telecine
18393
18394 Apply telecine process to the video.
18395
18396 This filter accepts the following options:
18397
18398 @table @option
18399 @item first_field
18400 @table @samp
18401 @item top, t
18402 top field first
18403 @item bottom, b
18404 bottom field first
18405 The default value is @code{top}.
18406 @end table
18407
18408 @item pattern
18409 A string of numbers representing the pulldown pattern you wish to apply.
18410 The default value is @code{23}.
18411 @end table
18412
18413 @example
18414 Some typical patterns:
18415
18416 NTSC output (30i):
18417 27.5p: 32222
18418 24p: 23 (classic)
18419 24p: 2332 (preferred)
18420 20p: 33
18421 18p: 334
18422 16p: 3444
18423
18424 PAL output (25i):
18425 27.5p: 12222
18426 24p: 222222222223 ("Euro pulldown")
18427 16.67p: 33
18428 16p: 33333334
18429 @end example
18430
18431 @section thistogram
18432
18433 Compute and draw a color distribution histogram for the input video across time.
18434
18435 Unlike @ref{histogram} video filter which only shows histogram of single input frame
18436 at certain time, this filter shows also past histograms of number of frames defined
18437 by @code{width} option.
18438
18439 The computed histogram is a representation of the color component
18440 distribution in an image.
18441
18442 The filter accepts the following options:
18443
18444 @table @option
18445 @item width, w
18446 Set width of single color component output. Default value is @code{0}.
18447 Value of @code{0} means width will be picked from input video.
18448 This also set number of passed histograms to keep.
18449 Allowed range is [0, 8192].
18450
18451 @item display_mode, d
18452 Set display mode.
18453 It accepts the following values:
18454 @table @samp
18455 @item stack
18456 Per color component graphs are placed below each other.
18457
18458 @item parade
18459 Per color component graphs are placed side by side.
18460
18461 @item overlay
18462 Presents information identical to that in the @code{parade}, except
18463 that the graphs representing color components are superimposed directly
18464 over one another.
18465 @end table
18466 Default is @code{stack}.
18467
18468 @item levels_mode, m
18469 Set mode. Can be either @code{linear}, or @code{logarithmic}.
18470 Default is @code{linear}.
18471
18472 @item components, c
18473 Set what color components to display.
18474 Default is @code{7}.
18475
18476 @item bgopacity, b
18477 Set background opacity. Default is @code{0.9}.
18478
18479 @item envelope, e
18480 Show envelope. Default is disabled.
18481
18482 @item ecolor, ec
18483 Set envelope color. Default is @code{gold}.
18484
18485 @item slide
18486 Set slide mode.
18487
18488 Available values for slide is:
18489 @table @samp
18490 @item frame
18491 Draw new frame when right border is reached.
18492
18493 @item replace
18494 Replace old columns with new ones.
18495
18496 @item scroll
18497 Scroll from right to left.
18498
18499 @item rscroll
18500 Scroll from left to right.
18501
18502 @item picture
18503 Draw single picture.
18504 @end table
18505
18506 Default is @code{replace}.
18507 @end table
18508
18509 @section threshold
18510
18511 Apply threshold effect to video stream.
18512
18513 This filter needs four video streams to perform thresholding.
18514 First stream is stream we are filtering.
18515 Second stream is holding threshold values, third stream is holding min values,
18516 and last, fourth stream is holding max values.
18517
18518 The filter accepts the following option:
18519
18520 @table @option
18521 @item planes
18522 Set which planes will be processed, unprocessed planes will be copied.
18523 By default value 0xf, all planes will be processed.
18524 @end table
18525
18526 For example if first stream pixel's component value is less then threshold value
18527 of pixel component from 2nd threshold stream, third stream value will picked,
18528 otherwise fourth stream pixel component value will be picked.
18529
18530 Using color source filter one can perform various types of thresholding:
18531
18532 @subsection Examples
18533
18534 @itemize
18535 @item
18536 Binary threshold, using gray color as threshold:
18537 @example
18538 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
18539 @end example
18540
18541 @item
18542 Inverted binary threshold, using gray color as threshold:
18543 @example
18544 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
18545 @end example
18546
18547 @item
18548 Truncate binary threshold, using gray color as threshold:
18549 @example
18550 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
18551 @end example
18552
18553 @item
18554 Threshold to zero, using gray color as threshold:
18555 @example
18556 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
18557 @end example
18558
18559 @item
18560 Inverted threshold to zero, using gray color as threshold:
18561 @example
18562 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
18563 @end example
18564 @end itemize
18565
18566 @section thumbnail
18567 Select the most representative frame in a given sequence of consecutive frames.
18568
18569 The filter accepts the following options:
18570
18571 @table @option
18572 @item n
18573 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
18574 will pick one of them, and then handle the next batch of @var{n} frames until
18575 the end. Default is @code{100}.
18576 @end table
18577
18578 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
18579 value will result in a higher memory usage, so a high value is not recommended.
18580
18581 @subsection Examples
18582
18583 @itemize
18584 @item
18585 Extract one picture each 50 frames:
18586 @example
18587 thumbnail=50
18588 @end example
18589
18590 @item
18591 Complete example of a thumbnail creation with @command{ffmpeg}:
18592 @example
18593 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
18594 @end example
18595 @end itemize
18596
18597 @anchor{tile}
18598 @section tile
18599
18600 Tile several successive frames together.
18601
18602 The @ref{untile} filter can do the reverse.
18603
18604 The filter accepts the following options:
18605
18606 @table @option
18607
18608 @item layout
18609 Set the grid size (i.e. the number of lines and columns). For the syntax of
18610 this option, check the
18611 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18612
18613 @item nb_frames
18614 Set the maximum number of frames to render in the given area. It must be less
18615 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
18616 the area will be used.
18617
18618 @item margin
18619 Set the outer border margin in pixels.
18620
18621 @item padding
18622 Set the inner border thickness (i.e. the number of pixels between frames). For
18623 more advanced padding options (such as having different values for the edges),
18624 refer to the pad video filter.
18625
18626 @item color
18627 Specify the color of the unused area. For the syntax of this option, check the
18628 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18629 The default value of @var{color} is "black".
18630
18631 @item overlap
18632 Set the number of frames to overlap when tiling several successive frames together.
18633 The value must be between @code{0} and @var{nb_frames - 1}.
18634
18635 @item init_padding
18636 Set the number of frames to initially be empty before displaying first output frame.
18637 This controls how soon will one get first output frame.
18638 The value must be between @code{0} and @var{nb_frames - 1}.
18639 @end table
18640
18641 @subsection Examples
18642
18643 @itemize
18644 @item
18645 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
18646 @example
18647 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
18648 @end example
18649 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
18650 duplicating each output frame to accommodate the originally detected frame
18651 rate.
18652
18653 @item
18654 Display @code{5} pictures in an area of @code{3x2} frames,
18655 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
18656 mixed flat and named options:
18657 @example
18658 tile=3x2:nb_frames=5:padding=7:margin=2
18659 @end example
18660 @end itemize
18661
18662 @section tinterlace
18663
18664 Perform various types of temporal field interlacing.
18665
18666 Frames are counted starting from 1, so the first input frame is
18667 considered odd.
18668
18669 The filter accepts the following options:
18670
18671 @table @option
18672
18673 @item mode
18674 Specify the mode of the interlacing. This option can also be specified
18675 as a value alone. See below for a list of values for this option.
18676
18677 Available values are:
18678
18679 @table @samp
18680 @item merge, 0
18681 Move odd frames into the upper field, even into the lower field,
18682 generating a double height frame at half frame rate.
18683 @example
18684  ------> time
18685 Input:
18686 Frame 1         Frame 2         Frame 3         Frame 4
18687
18688 11111           22222           33333           44444
18689 11111           22222           33333           44444
18690 11111           22222           33333           44444
18691 11111           22222           33333           44444
18692
18693 Output:
18694 11111                           33333
18695 22222                           44444
18696 11111                           33333
18697 22222                           44444
18698 11111                           33333
18699 22222                           44444
18700 11111                           33333
18701 22222                           44444
18702 @end example
18703
18704 @item drop_even, 1
18705 Only output odd frames, even frames are dropped, generating a frame with
18706 unchanged height at half frame rate.
18707
18708 @example
18709  ------> time
18710 Input:
18711 Frame 1         Frame 2         Frame 3         Frame 4
18712
18713 11111           22222           33333           44444
18714 11111           22222           33333           44444
18715 11111           22222           33333           44444
18716 11111           22222           33333           44444
18717
18718 Output:
18719 11111                           33333
18720 11111                           33333
18721 11111                           33333
18722 11111                           33333
18723 @end example
18724
18725 @item drop_odd, 2
18726 Only output even frames, odd frames are dropped, generating a frame with
18727 unchanged height at half frame rate.
18728
18729 @example
18730  ------> time
18731 Input:
18732 Frame 1         Frame 2         Frame 3         Frame 4
18733
18734 11111           22222           33333           44444
18735 11111           22222           33333           44444
18736 11111           22222           33333           44444
18737 11111           22222           33333           44444
18738
18739 Output:
18740                 22222                           44444
18741                 22222                           44444
18742                 22222                           44444
18743                 22222                           44444
18744 @end example
18745
18746 @item pad, 3
18747 Expand each frame to full height, but pad alternate lines with black,
18748 generating a frame with double height at the same input frame rate.
18749
18750 @example
18751  ------> time
18752 Input:
18753 Frame 1         Frame 2         Frame 3         Frame 4
18754
18755 11111           22222           33333           44444
18756 11111           22222           33333           44444
18757 11111           22222           33333           44444
18758 11111           22222           33333           44444
18759
18760 Output:
18761 11111           .....           33333           .....
18762 .....           22222           .....           44444
18763 11111           .....           33333           .....
18764 .....           22222           .....           44444
18765 11111           .....           33333           .....
18766 .....           22222           .....           44444
18767 11111           .....           33333           .....
18768 .....           22222           .....           44444
18769 @end example
18770
18771
18772 @item interleave_top, 4
18773 Interleave the upper field from odd frames with the lower field from
18774 even frames, generating a frame with unchanged height at half frame rate.
18775
18776 @example
18777  ------> time
18778 Input:
18779 Frame 1         Frame 2         Frame 3         Frame 4
18780
18781 11111<-         22222           33333<-         44444
18782 11111           22222<-         33333           44444<-
18783 11111<-         22222           33333<-         44444
18784 11111           22222<-         33333           44444<-
18785
18786 Output:
18787 11111                           33333
18788 22222                           44444
18789 11111                           33333
18790 22222                           44444
18791 @end example
18792
18793
18794 @item interleave_bottom, 5
18795 Interleave the lower field from odd frames with the upper field from
18796 even frames, generating a frame with unchanged height at half frame rate.
18797
18798 @example
18799  ------> time
18800 Input:
18801 Frame 1         Frame 2         Frame 3         Frame 4
18802
18803 11111           22222<-         33333           44444<-
18804 11111<-         22222           33333<-         44444
18805 11111           22222<-         33333           44444<-
18806 11111<-         22222           33333<-         44444
18807
18808 Output:
18809 22222                           44444
18810 11111                           33333
18811 22222                           44444
18812 11111                           33333
18813 @end example
18814
18815
18816 @item interlacex2, 6
18817 Double frame rate with unchanged height. Frames are inserted each
18818 containing the second temporal field from the previous input frame and
18819 the first temporal field from the next input frame. This mode relies on
18820 the top_field_first flag. Useful for interlaced video displays with no
18821 field synchronisation.
18822
18823 @example
18824  ------> time
18825 Input:
18826 Frame 1         Frame 2         Frame 3         Frame 4
18827
18828 11111           22222           33333           44444
18829  11111           22222           33333           44444
18830 11111           22222           33333           44444
18831  11111           22222           33333           44444
18832
18833 Output:
18834 11111   22222   22222   33333   33333   44444   44444
18835  11111   11111   22222   22222   33333   33333   44444
18836 11111   22222   22222   33333   33333   44444   44444
18837  11111   11111   22222   22222   33333   33333   44444
18838 @end example
18839
18840
18841 @item mergex2, 7
18842 Move odd frames into the upper field, even into the lower field,
18843 generating a double height frame at same frame rate.
18844
18845 @example
18846  ------> time
18847 Input:
18848 Frame 1         Frame 2         Frame 3         Frame 4
18849
18850 11111           22222           33333           44444
18851 11111           22222           33333           44444
18852 11111           22222           33333           44444
18853 11111           22222           33333           44444
18854
18855 Output:
18856 11111           33333           33333           55555
18857 22222           22222           44444           44444
18858 11111           33333           33333           55555
18859 22222           22222           44444           44444
18860 11111           33333           33333           55555
18861 22222           22222           44444           44444
18862 11111           33333           33333           55555
18863 22222           22222           44444           44444
18864 @end example
18865
18866 @end table
18867
18868 Numeric values are deprecated but are accepted for backward
18869 compatibility reasons.
18870
18871 Default mode is @code{merge}.
18872
18873 @item flags
18874 Specify flags influencing the filter process.
18875
18876 Available value for @var{flags} is:
18877
18878 @table @option
18879 @item low_pass_filter, vlpf
18880 Enable linear vertical low-pass filtering in the filter.
18881 Vertical low-pass filtering is required when creating an interlaced
18882 destination from a progressive source which contains high-frequency
18883 vertical detail. Filtering will reduce interlace 'twitter' and Moire
18884 patterning.
18885
18886 @item complex_filter, cvlpf
18887 Enable complex vertical low-pass filtering.
18888 This will slightly less reduce interlace 'twitter' and Moire
18889 patterning but better retain detail and subjective sharpness impression.
18890
18891 @item bypass_il
18892 Bypass already interlaced frames, only adjust the frame rate.
18893 @end table
18894
18895 Vertical low-pass filtering and bypassing already interlaced frames can only be
18896 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
18897
18898 @end table
18899
18900 @section tmedian
18901 Pick median pixels from several successive input video frames.
18902
18903 The filter accepts the following options:
18904
18905 @table @option
18906 @item radius
18907 Set radius of median filter.
18908 Default is 1. Allowed range is from 1 to 127.
18909
18910 @item planes
18911 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
18912
18913 @item percentile
18914 Set median percentile. Default value is @code{0.5}.
18915 Default value of @code{0.5} will pick always median values, while @code{0} will pick
18916 minimum values, and @code{1} maximum values.
18917 @end table
18918
18919 @section tmix
18920
18921 Mix successive video frames.
18922
18923 A description of the accepted options follows.
18924
18925 @table @option
18926 @item frames
18927 The number of successive frames to mix. If unspecified, it defaults to 3.
18928
18929 @item weights
18930 Specify weight of each input video frame.
18931 Each weight is separated by space. If number of weights is smaller than
18932 number of @var{frames} last specified weight will be used for all remaining
18933 unset weights.
18934
18935 @item scale
18936 Specify scale, if it is set it will be multiplied with sum
18937 of each weight multiplied with pixel values to give final destination
18938 pixel value. By default @var{scale} is auto scaled to sum of weights.
18939 @end table
18940
18941 @subsection Examples
18942
18943 @itemize
18944 @item
18945 Average 7 successive frames:
18946 @example
18947 tmix=frames=7:weights="1 1 1 1 1 1 1"
18948 @end example
18949
18950 @item
18951 Apply simple temporal convolution:
18952 @example
18953 tmix=frames=3:weights="-1 3 -1"
18954 @end example
18955
18956 @item
18957 Similar as above but only showing temporal differences:
18958 @example
18959 tmix=frames=3:weights="-1 2 -1":scale=1
18960 @end example
18961 @end itemize
18962
18963 @anchor{tonemap}
18964 @section tonemap
18965 Tone map colors from different dynamic ranges.
18966
18967 This filter expects data in single precision floating point, as it needs to
18968 operate on (and can output) out-of-range values. Another filter, such as
18969 @ref{zscale}, is needed to convert the resulting frame to a usable format.
18970
18971 The tonemapping algorithms implemented only work on linear light, so input
18972 data should be linearized beforehand (and possibly correctly tagged).
18973
18974 @example
18975 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
18976 @end example
18977
18978 @subsection Options
18979 The filter accepts the following options.
18980
18981 @table @option
18982 @item tonemap
18983 Set the tone map algorithm to use.
18984
18985 Possible values are:
18986 @table @var
18987 @item none
18988 Do not apply any tone map, only desaturate overbright pixels.
18989
18990 @item clip
18991 Hard-clip any out-of-range values. Use it for perfect color accuracy for
18992 in-range values, while distorting out-of-range values.
18993
18994 @item linear
18995 Stretch the entire reference gamut to a linear multiple of the display.
18996
18997 @item gamma
18998 Fit a logarithmic transfer between the tone curves.
18999
19000 @item reinhard
19001 Preserve overall image brightness with a simple curve, using nonlinear
19002 contrast, which results in flattening details and degrading color accuracy.
19003
19004 @item hable
19005 Preserve both dark and bright details better than @var{reinhard}, at the cost
19006 of slightly darkening everything. Use it when detail preservation is more
19007 important than color and brightness accuracy.
19008
19009 @item mobius
19010 Smoothly map out-of-range values, while retaining contrast and colors for
19011 in-range material as much as possible. Use it when color accuracy is more
19012 important than detail preservation.
19013 @end table
19014
19015 Default is none.
19016
19017 @item param
19018 Tune the tone mapping algorithm.
19019
19020 This affects the following algorithms:
19021 @table @var
19022 @item none
19023 Ignored.
19024
19025 @item linear
19026 Specifies the scale factor to use while stretching.
19027 Default to 1.0.
19028
19029 @item gamma
19030 Specifies the exponent of the function.
19031 Default to 1.8.
19032
19033 @item clip
19034 Specify an extra linear coefficient to multiply into the signal before clipping.
19035 Default to 1.0.
19036
19037 @item reinhard
19038 Specify the local contrast coefficient at the display peak.
19039 Default to 0.5, which means that in-gamut values will be about half as bright
19040 as when clipping.
19041
19042 @item hable
19043 Ignored.
19044
19045 @item mobius
19046 Specify the transition point from linear to mobius transform. Every value
19047 below this point is guaranteed to be mapped 1:1. The higher the value, the
19048 more accurate the result will be, at the cost of losing bright details.
19049 Default to 0.3, which due to the steep initial slope still preserves in-range
19050 colors fairly accurately.
19051 @end table
19052
19053 @item desat
19054 Apply desaturation for highlights that exceed this level of brightness. The
19055 higher the parameter, the more color information will be preserved. This
19056 setting helps prevent unnaturally blown-out colors for super-highlights, by
19057 (smoothly) turning into white instead. This makes images feel more natural,
19058 at the cost of reducing information about out-of-range colors.
19059
19060 The default of 2.0 is somewhat conservative and will mostly just apply to
19061 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
19062
19063 This option works only if the input frame has a supported color tag.
19064
19065 @item peak
19066 Override signal/nominal/reference peak with this value. Useful when the
19067 embedded peak information in display metadata is not reliable or when tone
19068 mapping from a lower range to a higher range.
19069 @end table
19070
19071 @section tpad
19072
19073 Temporarily pad video frames.
19074
19075 The filter accepts the following options:
19076
19077 @table @option
19078 @item start
19079 Specify number of delay frames before input video stream. Default is 0.
19080
19081 @item stop
19082 Specify number of padding frames after input video stream.
19083 Set to -1 to pad indefinitely. Default is 0.
19084
19085 @item start_mode
19086 Set kind of frames added to beginning of stream.
19087 Can be either @var{add} or @var{clone}.
19088 With @var{add} frames of solid-color are added.
19089 With @var{clone} frames are clones of first frame.
19090 Default is @var{add}.
19091
19092 @item stop_mode
19093 Set kind of frames added to end of stream.
19094 Can be either @var{add} or @var{clone}.
19095 With @var{add} frames of solid-color are added.
19096 With @var{clone} frames are clones of last frame.
19097 Default is @var{add}.
19098
19099 @item start_duration, stop_duration
19100 Specify the duration of the start/stop delay. See
19101 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19102 for the accepted syntax.
19103 These options override @var{start} and @var{stop}. Default is 0.
19104
19105 @item color
19106 Specify the color of the padded area. For the syntax of this option,
19107 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
19108 manual,ffmpeg-utils}.
19109
19110 The default value of @var{color} is "black".
19111 @end table
19112
19113 @anchor{transpose}
19114 @section transpose
19115
19116 Transpose rows with columns in the input video and optionally flip it.
19117
19118 It accepts the following parameters:
19119
19120 @table @option
19121
19122 @item dir
19123 Specify the transposition direction.
19124
19125 Can assume the following values:
19126 @table @samp
19127 @item 0, 4, cclock_flip
19128 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
19129 @example
19130 L.R     L.l
19131 . . ->  . .
19132 l.r     R.r
19133 @end example
19134
19135 @item 1, 5, clock
19136 Rotate by 90 degrees clockwise, that is:
19137 @example
19138 L.R     l.L
19139 . . ->  . .
19140 l.r     r.R
19141 @end example
19142
19143 @item 2, 6, cclock
19144 Rotate by 90 degrees counterclockwise, that is:
19145 @example
19146 L.R     R.r
19147 . . ->  . .
19148 l.r     L.l
19149 @end example
19150
19151 @item 3, 7, clock_flip
19152 Rotate by 90 degrees clockwise and vertically flip, that is:
19153 @example
19154 L.R     r.R
19155 . . ->  . .
19156 l.r     l.L
19157 @end example
19158 @end table
19159
19160 For values between 4-7, the transposition is only done if the input
19161 video geometry is portrait and not landscape. These values are
19162 deprecated, the @code{passthrough} option should be used instead.
19163
19164 Numerical values are deprecated, and should be dropped in favor of
19165 symbolic constants.
19166
19167 @item passthrough
19168 Do not apply the transposition if the input geometry matches the one
19169 specified by the specified value. It accepts the following values:
19170 @table @samp
19171 @item none
19172 Always apply transposition.
19173 @item portrait
19174 Preserve portrait geometry (when @var{height} >= @var{width}).
19175 @item landscape
19176 Preserve landscape geometry (when @var{width} >= @var{height}).
19177 @end table
19178
19179 Default value is @code{none}.
19180 @end table
19181
19182 For example to rotate by 90 degrees clockwise and preserve portrait
19183 layout:
19184 @example
19185 transpose=dir=1:passthrough=portrait
19186 @end example
19187
19188 The command above can also be specified as:
19189 @example
19190 transpose=1:portrait
19191 @end example
19192
19193 @section transpose_npp
19194
19195 Transpose rows with columns in the input video and optionally flip it.
19196 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
19197
19198 It accepts the following parameters:
19199
19200 @table @option
19201
19202 @item dir
19203 Specify the transposition direction.
19204
19205 Can assume the following values:
19206 @table @samp
19207 @item cclock_flip
19208 Rotate by 90 degrees counterclockwise and vertically flip. (default)
19209
19210 @item clock
19211 Rotate by 90 degrees clockwise.
19212
19213 @item cclock
19214 Rotate by 90 degrees counterclockwise.
19215
19216 @item clock_flip
19217 Rotate by 90 degrees clockwise and vertically flip.
19218 @end table
19219
19220 @item passthrough
19221 Do not apply the transposition if the input geometry matches the one
19222 specified by the specified value. It accepts the following values:
19223 @table @samp
19224 @item none
19225 Always apply transposition. (default)
19226 @item portrait
19227 Preserve portrait geometry (when @var{height} >= @var{width}).
19228 @item landscape
19229 Preserve landscape geometry (when @var{width} >= @var{height}).
19230 @end table
19231
19232 @end table
19233
19234 @section trim
19235 Trim the input so that the output contains one continuous subpart of the input.
19236
19237 It accepts the following parameters:
19238 @table @option
19239 @item start
19240 Specify the time of the start of the kept section, i.e. the frame with the
19241 timestamp @var{start} will be the first frame in the output.
19242
19243 @item end
19244 Specify the time of the first frame that will be dropped, i.e. the frame
19245 immediately preceding the one with the timestamp @var{end} will be the last
19246 frame in the output.
19247
19248 @item start_pts
19249 This is the same as @var{start}, except this option sets the start timestamp
19250 in timebase units instead of seconds.
19251
19252 @item end_pts
19253 This is the same as @var{end}, except this option sets the end timestamp
19254 in timebase units instead of seconds.
19255
19256 @item duration
19257 The maximum duration of the output in seconds.
19258
19259 @item start_frame
19260 The number of the first frame that should be passed to the output.
19261
19262 @item end_frame
19263 The number of the first frame that should be dropped.
19264 @end table
19265
19266 @option{start}, @option{end}, and @option{duration} are expressed as time
19267 duration specifications; see
19268 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19269 for the accepted syntax.
19270
19271 Note that the first two sets of the start/end options and the @option{duration}
19272 option look at the frame timestamp, while the _frame variants simply count the
19273 frames that pass through the filter. Also note that this filter does not modify
19274 the timestamps. If you wish for the output timestamps to start at zero, insert a
19275 setpts filter after the trim filter.
19276
19277 If multiple start or end options are set, this filter tries to be greedy and
19278 keep all the frames that match at least one of the specified constraints. To keep
19279 only the part that matches all the constraints at once, chain multiple trim
19280 filters.
19281
19282 The defaults are such that all the input is kept. So it is possible to set e.g.
19283 just the end values to keep everything before the specified time.
19284
19285 Examples:
19286 @itemize
19287 @item
19288 Drop everything except the second minute of input:
19289 @example
19290 ffmpeg -i INPUT -vf trim=60:120
19291 @end example
19292
19293 @item
19294 Keep only the first second:
19295 @example
19296 ffmpeg -i INPUT -vf trim=duration=1
19297 @end example
19298
19299 @end itemize
19300
19301 @section unpremultiply
19302 Apply alpha unpremultiply effect to input video stream using first plane
19303 of second stream as alpha.
19304
19305 Both streams must have same dimensions and same pixel format.
19306
19307 The filter accepts the following option:
19308
19309 @table @option
19310 @item planes
19311 Set which planes will be processed, unprocessed planes will be copied.
19312 By default value 0xf, all planes will be processed.
19313
19314 If the format has 1 or 2 components, then luma is bit 0.
19315 If the format has 3 or 4 components:
19316 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
19317 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
19318 If present, the alpha channel is always the last bit.
19319
19320 @item inplace
19321 Do not require 2nd input for processing, instead use alpha plane from input stream.
19322 @end table
19323
19324 @anchor{unsharp}
19325 @section unsharp
19326
19327 Sharpen or blur the input video.
19328
19329 It accepts the following parameters:
19330
19331 @table @option
19332 @item luma_msize_x, lx
19333 Set the luma matrix horizontal size. It must be an odd integer between
19334 3 and 23. The default value is 5.
19335
19336 @item luma_msize_y, ly
19337 Set the luma matrix vertical size. It must be an odd integer between 3
19338 and 23. The default value is 5.
19339
19340 @item luma_amount, la
19341 Set the luma effect strength. It must be a floating point number, reasonable
19342 values lay between -1.5 and 1.5.
19343
19344 Negative values will blur the input video, while positive values will
19345 sharpen it, a value of zero will disable the effect.
19346
19347 Default value is 1.0.
19348
19349 @item chroma_msize_x, cx
19350 Set the chroma matrix horizontal size. It must be an odd integer
19351 between 3 and 23. The default value is 5.
19352
19353 @item chroma_msize_y, cy
19354 Set the chroma matrix vertical size. It must be an odd integer
19355 between 3 and 23. The default value is 5.
19356
19357 @item chroma_amount, ca
19358 Set the chroma effect strength. It must be a floating point number, reasonable
19359 values lay between -1.5 and 1.5.
19360
19361 Negative values will blur the input video, while positive values will
19362 sharpen it, a value of zero will disable the effect.
19363
19364 Default value is 0.0.
19365
19366 @end table
19367
19368 All parameters are optional and default to the equivalent of the
19369 string '5:5:1.0:5:5:0.0'.
19370
19371 @subsection Examples
19372
19373 @itemize
19374 @item
19375 Apply strong luma sharpen effect:
19376 @example
19377 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
19378 @end example
19379
19380 @item
19381 Apply a strong blur of both luma and chroma parameters:
19382 @example
19383 unsharp=7:7:-2:7:7:-2
19384 @end example
19385 @end itemize
19386
19387 @anchor{untile}
19388 @section untile
19389
19390 Decompose a video made of tiled images into the individual images.
19391
19392 The frame rate of the output video is the frame rate of the input video
19393 multiplied by the number of tiles.
19394
19395 This filter does the reverse of @ref{tile}.
19396
19397 The filter accepts the following options:
19398
19399 @table @option
19400
19401 @item layout
19402 Set the grid size (i.e. the number of lines and columns). For the syntax of
19403 this option, check the
19404 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19405 @end table
19406
19407 @subsection Examples
19408
19409 @itemize
19410 @item
19411 Produce a 1-second video from a still image file made of 25 frames stacked
19412 vertically, like an analogic film reel:
19413 @example
19414 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
19415 @end example
19416 @end itemize
19417
19418 @section uspp
19419
19420 Apply ultra slow/simple postprocessing filter that compresses and decompresses
19421 the image at several (or - in the case of @option{quality} level @code{8} - all)
19422 shifts and average the results.
19423
19424 The way this differs from the behavior of spp is that uspp actually encodes &
19425 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
19426 DCT similar to MJPEG.
19427
19428 The filter accepts the following options:
19429
19430 @table @option
19431 @item quality
19432 Set quality. This option defines the number of levels for averaging. It accepts
19433 an integer in the range 0-8. If set to @code{0}, the filter will have no
19434 effect. A value of @code{8} means the higher quality. For each increment of
19435 that value the speed drops by a factor of approximately 2.  Default value is
19436 @code{3}.
19437
19438 @item qp
19439 Force a constant quantization parameter. If not set, the filter will use the QP
19440 from the video stream (if available).
19441 @end table
19442
19443 @section v360
19444
19445 Convert 360 videos between various formats.
19446
19447 The filter accepts the following options:
19448
19449 @table @option
19450
19451 @item input
19452 @item output
19453 Set format of the input/output video.
19454
19455 Available formats:
19456
19457 @table @samp
19458
19459 @item e
19460 @item equirect
19461 Equirectangular projection.
19462
19463 @item c3x2
19464 @item c6x1
19465 @item c1x6
19466 Cubemap with 3x2/6x1/1x6 layout.
19467
19468 Format specific options:
19469
19470 @table @option
19471 @item in_pad
19472 @item out_pad
19473 Set padding proportion for the input/output cubemap. Values in decimals.
19474
19475 Example values:
19476 @table @samp
19477 @item 0
19478 No padding.
19479 @item 0.01
19480 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)
19481 @end table
19482
19483 Default value is @b{@samp{0}}.
19484 Maximum value is @b{@samp{0.1}}.
19485
19486 @item fin_pad
19487 @item fout_pad
19488 Set fixed padding for the input/output cubemap. Values in pixels.
19489
19490 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
19491
19492 @item in_forder
19493 @item out_forder
19494 Set order of faces for the input/output cubemap. Choose one direction for each position.
19495
19496 Designation of directions:
19497 @table @samp
19498 @item r
19499 right
19500 @item l
19501 left
19502 @item u
19503 up
19504 @item d
19505 down
19506 @item f
19507 forward
19508 @item b
19509 back
19510 @end table
19511
19512 Default value is @b{@samp{rludfb}}.
19513
19514 @item in_frot
19515 @item out_frot
19516 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
19517
19518 Designation of angles:
19519 @table @samp
19520 @item 0
19521 0 degrees clockwise
19522 @item 1
19523 90 degrees clockwise
19524 @item 2
19525 180 degrees clockwise
19526 @item 3
19527 270 degrees clockwise
19528 @end table
19529
19530 Default value is @b{@samp{000000}}.
19531 @end table
19532
19533 @item eac
19534 Equi-Angular Cubemap.
19535
19536 @item flat
19537 @item gnomonic
19538 @item rectilinear
19539 Regular video.
19540
19541 Format specific options:
19542 @table @option
19543 @item h_fov
19544 @item v_fov
19545 @item d_fov
19546 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19547
19548 If diagonal field of view is set it overrides horizontal and vertical field of view.
19549
19550 @item ih_fov
19551 @item iv_fov
19552 @item id_fov
19553 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19554
19555 If diagonal field of view is set it overrides horizontal and vertical field of view.
19556 @end table
19557
19558 @item dfisheye
19559 Dual fisheye.
19560
19561 Format specific options:
19562 @table @option
19563 @item h_fov
19564 @item v_fov
19565 @item d_fov
19566 Set output 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
19570 @item ih_fov
19571 @item iv_fov
19572 @item id_fov
19573 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19574
19575 If diagonal field of view is set it overrides horizontal and vertical field of view.
19576 @end table
19577
19578 @item barrel
19579 @item fb
19580 @item barrelsplit
19581 Facebook's 360 formats.
19582
19583 @item sg
19584 Stereographic format.
19585
19586 Format specific options:
19587 @table @option
19588 @item h_fov
19589 @item v_fov
19590 @item d_fov
19591 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19592
19593 If diagonal field of view is set it overrides horizontal and vertical field of view.
19594
19595 @item ih_fov
19596 @item iv_fov
19597 @item id_fov
19598 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19599
19600 If diagonal field of view is set it overrides horizontal and vertical field of view.
19601 @end table
19602
19603 @item mercator
19604 Mercator format.
19605
19606 @item ball
19607 Ball format, gives significant distortion toward the back.
19608
19609 @item hammer
19610 Hammer-Aitoff map projection format.
19611
19612 @item sinusoidal
19613 Sinusoidal map projection format.
19614
19615 @item fisheye
19616 Fisheye projection.
19617
19618 Format specific options:
19619 @table @option
19620 @item h_fov
19621 @item v_fov
19622 @item d_fov
19623 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19624
19625 If diagonal field of view is set it overrides horizontal and vertical field of view.
19626
19627 @item ih_fov
19628 @item iv_fov
19629 @item id_fov
19630 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19631
19632 If diagonal field of view is set it overrides horizontal and vertical field of view.
19633 @end table
19634
19635 @item pannini
19636 Pannini projection.
19637
19638 Format specific options:
19639 @table @option
19640 @item h_fov
19641 Set output pannini parameter.
19642
19643 @item ih_fov
19644 Set input pannini parameter.
19645 @end table
19646
19647 @item cylindrical
19648 Cylindrical projection.
19649
19650 Format specific options:
19651 @table @option
19652 @item h_fov
19653 @item v_fov
19654 @item d_fov
19655 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19656
19657 If diagonal field of view is set it overrides horizontal and vertical field of view.
19658
19659 @item ih_fov
19660 @item iv_fov
19661 @item id_fov
19662 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19663
19664 If diagonal field of view is set it overrides horizontal and vertical field of view.
19665 @end table
19666
19667 @item perspective
19668 Perspective projection. @i{(output only)}
19669
19670 Format specific options:
19671 @table @option
19672 @item v_fov
19673 Set perspective parameter.
19674 @end table
19675
19676 @item tetrahedron
19677 Tetrahedron projection.
19678
19679 @item tsp
19680 Truncated square pyramid projection.
19681
19682 @item he
19683 @item hequirect
19684 Half equirectangular projection.
19685
19686 @item equisolid
19687 Equisolid format.
19688
19689 Format specific options:
19690 @table @option
19691 @item h_fov
19692 @item v_fov
19693 @item d_fov
19694 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19695
19696 If diagonal field of view is set it overrides horizontal and vertical field of view.
19697
19698 @item ih_fov
19699 @item iv_fov
19700 @item id_fov
19701 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19702
19703 If diagonal field of view is set it overrides horizontal and vertical field of view.
19704 @end table
19705
19706 @item og
19707 Orthographic format.
19708
19709 Format specific options:
19710 @table @option
19711 @item h_fov
19712 @item v_fov
19713 @item d_fov
19714 Set output 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
19718 @item ih_fov
19719 @item iv_fov
19720 @item id_fov
19721 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19722
19723 If diagonal field of view is set it overrides horizontal and vertical field of view.
19724 @end table
19725
19726 @item octahedron
19727 Octahedron projection.
19728 @end table
19729
19730 @item interp
19731 Set interpolation method.@*
19732 @i{Note: more complex interpolation methods require much more memory to run.}
19733
19734 Available methods:
19735
19736 @table @samp
19737 @item near
19738 @item nearest
19739 Nearest neighbour.
19740 @item line
19741 @item linear
19742 Bilinear interpolation.
19743 @item lagrange9
19744 Lagrange9 interpolation.
19745 @item cube
19746 @item cubic
19747 Bicubic interpolation.
19748 @item lanc
19749 @item lanczos
19750 Lanczos interpolation.
19751 @item sp16
19752 @item spline16
19753 Spline16 interpolation.
19754 @item gauss
19755 @item gaussian
19756 Gaussian interpolation.
19757 @item mitchell
19758 Mitchell interpolation.
19759 @end table
19760
19761 Default value is @b{@samp{line}}.
19762
19763 @item w
19764 @item h
19765 Set the output video resolution.
19766
19767 Default resolution depends on formats.
19768
19769 @item in_stereo
19770 @item out_stereo
19771 Set the input/output stereo format.
19772
19773 @table @samp
19774 @item 2d
19775 2D mono
19776 @item sbs
19777 Side by side
19778 @item tb
19779 Top bottom
19780 @end table
19781
19782 Default value is @b{@samp{2d}} for input and output format.
19783
19784 @item yaw
19785 @item pitch
19786 @item roll
19787 Set rotation for the output video. Values in degrees.
19788
19789 @item rorder
19790 Set rotation order for the output video. Choose one item for each position.
19791
19792 @table @samp
19793 @item y, Y
19794 yaw
19795 @item p, P
19796 pitch
19797 @item r, R
19798 roll
19799 @end table
19800
19801 Default value is @b{@samp{ypr}}.
19802
19803 @item h_flip
19804 @item v_flip
19805 @item d_flip
19806 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
19807
19808 @item ih_flip
19809 @item iv_flip
19810 Set if input video is flipped horizontally/vertically. Boolean values.
19811
19812 @item in_trans
19813 Set if input video is transposed. Boolean value, by default disabled.
19814
19815 @item out_trans
19816 Set if output video needs to be transposed. Boolean value, by default disabled.
19817
19818 @item alpha_mask
19819 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
19820 @end table
19821
19822 @subsection Examples
19823
19824 @itemize
19825 @item
19826 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
19827 @example
19828 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
19829 @end example
19830 @item
19831 Extract back view of Equi-Angular Cubemap:
19832 @example
19833 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
19834 @end example
19835 @item
19836 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
19837 @example
19838 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
19839 @end example
19840 @end itemize
19841
19842 @subsection Commands
19843
19844 This filter supports subset of above options as @ref{commands}.
19845
19846 @section vaguedenoiser
19847
19848 Apply a wavelet based denoiser.
19849
19850 It transforms each frame from the video input into the wavelet domain,
19851 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
19852 the obtained coefficients. It does an inverse wavelet transform after.
19853 Due to wavelet properties, it should give a nice smoothed result, and
19854 reduced noise, without blurring picture features.
19855
19856 This filter accepts the following options:
19857
19858 @table @option
19859 @item threshold
19860 The filtering strength. The higher, the more filtered the video will be.
19861 Hard thresholding can use a higher threshold than soft thresholding
19862 before the video looks overfiltered. Default value is 2.
19863
19864 @item method
19865 The filtering method the filter will use.
19866
19867 It accepts the following values:
19868 @table @samp
19869 @item hard
19870 All values under the threshold will be zeroed.
19871
19872 @item soft
19873 All values under the threshold will be zeroed. All values above will be
19874 reduced by the threshold.
19875
19876 @item garrote
19877 Scales or nullifies coefficients - intermediary between (more) soft and
19878 (less) hard thresholding.
19879 @end table
19880
19881 Default is garrote.
19882
19883 @item nsteps
19884 Number of times, the wavelet will decompose the picture. Picture can't
19885 be decomposed beyond a particular point (typically, 8 for a 640x480
19886 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
19887
19888 @item percent
19889 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
19890
19891 @item planes
19892 A list of the planes to process. By default all planes are processed.
19893
19894 @item type
19895 The threshold type the filter will use.
19896
19897 It accepts the following values:
19898 @table @samp
19899 @item universal
19900 Threshold used is same for all decompositions.
19901
19902 @item bayes
19903 Threshold used depends also on each decomposition coefficients.
19904 @end table
19905
19906 Default is universal.
19907 @end table
19908
19909 @section vectorscope
19910
19911 Display 2 color component values in the two dimensional graph (which is called
19912 a vectorscope).
19913
19914 This filter accepts the following options:
19915
19916 @table @option
19917 @item mode, m
19918 Set vectorscope mode.
19919
19920 It accepts the following values:
19921 @table @samp
19922 @item gray
19923 @item tint
19924 Gray values are displayed on graph, higher brightness means more pixels have
19925 same component color value on location in graph. This is the default mode.
19926
19927 @item color
19928 Gray values are displayed on graph. Surrounding pixels values which are not
19929 present in video frame are drawn in gradient of 2 color components which are
19930 set by option @code{x} and @code{y}. The 3rd color component is static.
19931
19932 @item color2
19933 Actual color components values present in video frame are displayed on graph.
19934
19935 @item color3
19936 Similar as color2 but higher frequency of same values @code{x} and @code{y}
19937 on graph increases value of another color component, which is luminance by
19938 default values of @code{x} and @code{y}.
19939
19940 @item color4
19941 Actual colors present in video frame are displayed on graph. If two different
19942 colors map to same position on graph then color with higher value of component
19943 not present in graph is picked.
19944
19945 @item color5
19946 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
19947 component picked from radial gradient.
19948 @end table
19949
19950 @item x
19951 Set which color component will be represented on X-axis. Default is @code{1}.
19952
19953 @item y
19954 Set which color component will be represented on Y-axis. Default is @code{2}.
19955
19956 @item intensity, i
19957 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
19958 of color component which represents frequency of (X, Y) location in graph.
19959
19960 @item envelope, e
19961 @table @samp
19962 @item none
19963 No envelope, this is default.
19964
19965 @item instant
19966 Instant envelope, even darkest single pixel will be clearly highlighted.
19967
19968 @item peak
19969 Hold maximum and minimum values presented in graph over time. This way you
19970 can still spot out of range values without constantly looking at vectorscope.
19971
19972 @item peak+instant
19973 Peak and instant envelope combined together.
19974 @end table
19975
19976 @item graticule, g
19977 Set what kind of graticule to draw.
19978 @table @samp
19979 @item none
19980 @item green
19981 @item color
19982 @item invert
19983 @end table
19984
19985 @item opacity, o
19986 Set graticule opacity.
19987
19988 @item flags, f
19989 Set graticule flags.
19990
19991 @table @samp
19992 @item white
19993 Draw graticule for white point.
19994
19995 @item black
19996 Draw graticule for black point.
19997
19998 @item name
19999 Draw color points short names.
20000 @end table
20001
20002 @item bgopacity, b
20003 Set background opacity.
20004
20005 @item lthreshold, l
20006 Set low threshold for color component not represented on X or Y axis.
20007 Values lower than this value will be ignored. Default is 0.
20008 Note this value is multiplied with actual max possible value one pixel component
20009 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
20010 is 0.1 * 255 = 25.
20011
20012 @item hthreshold, h
20013 Set high threshold for color component not represented on X or Y axis.
20014 Values higher than this value will be ignored. Default is 1.
20015 Note this value is multiplied with actual max possible value one pixel component
20016 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
20017 is 0.9 * 255 = 230.
20018
20019 @item colorspace, c
20020 Set what kind of colorspace to use when drawing graticule.
20021 @table @samp
20022 @item auto
20023 @item 601
20024 @item 709
20025 @end table
20026 Default is auto.
20027
20028 @item tint0, t0
20029 @item tint1, t1
20030 Set color tint for gray/tint vectorscope mode. By default both options are zero.
20031 This means no tint, and output will remain gray.
20032 @end table
20033
20034 @anchor{vidstabdetect}
20035 @section vidstabdetect
20036
20037 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
20038 @ref{vidstabtransform} for pass 2.
20039
20040 This filter generates a file with relative translation and rotation
20041 transform information about subsequent frames, which is then used by
20042 the @ref{vidstabtransform} filter.
20043
20044 To enable compilation of this filter you need to configure FFmpeg with
20045 @code{--enable-libvidstab}.
20046
20047 This filter accepts the following options:
20048
20049 @table @option
20050 @item result
20051 Set the path to the file used to write the transforms information.
20052 Default value is @file{transforms.trf}.
20053
20054 @item shakiness
20055 Set how shaky the video is and how quick the camera is. It accepts an
20056 integer in the range 1-10, a value of 1 means little shakiness, a
20057 value of 10 means strong shakiness. Default value is 5.
20058
20059 @item accuracy
20060 Set the accuracy of the detection process. It must be a value in the
20061 range 1-15. A value of 1 means low accuracy, a value of 15 means high
20062 accuracy. Default value is 15.
20063
20064 @item stepsize
20065 Set stepsize of the search process. The region around minimum is
20066 scanned with 1 pixel resolution. Default value is 6.
20067
20068 @item mincontrast
20069 Set minimum contrast. Below this value a local measurement field is
20070 discarded. Must be a floating point value in the range 0-1. Default
20071 value is 0.3.
20072
20073 @item tripod
20074 Set reference frame number for tripod mode.
20075
20076 If enabled, the motion of the frames is compared to a reference frame
20077 in the filtered stream, identified by the specified number. The idea
20078 is to compensate all movements in a more-or-less static scene and keep
20079 the camera view absolutely still.
20080
20081 If set to 0, it is disabled. The frames are counted starting from 1.
20082
20083 @item show
20084 Show fields and transforms in the resulting frames. It accepts an
20085 integer in the range 0-2. Default value is 0, which disables any
20086 visualization.
20087 @end table
20088
20089 @subsection Examples
20090
20091 @itemize
20092 @item
20093 Use default values:
20094 @example
20095 vidstabdetect
20096 @end example
20097
20098 @item
20099 Analyze strongly shaky movie and put the results in file
20100 @file{mytransforms.trf}:
20101 @example
20102 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
20103 @end example
20104
20105 @item
20106 Visualize the result of internal transformations in the resulting
20107 video:
20108 @example
20109 vidstabdetect=show=1
20110 @end example
20111
20112 @item
20113 Analyze a video with medium shakiness using @command{ffmpeg}:
20114 @example
20115 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
20116 @end example
20117 @end itemize
20118
20119 @anchor{vidstabtransform}
20120 @section vidstabtransform
20121
20122 Video stabilization/deshaking: pass 2 of 2,
20123 see @ref{vidstabdetect} for pass 1.
20124
20125 Read a file with transform information for each frame and
20126 apply/compensate them. Together with the @ref{vidstabdetect}
20127 filter this can be used to deshake videos. See also
20128 @url{http://public.hronopik.de/vid.stab}. It is important to also use
20129 the @ref{unsharp} filter, see below.
20130
20131 To enable compilation of this filter you need to configure FFmpeg with
20132 @code{--enable-libvidstab}.
20133
20134 @subsection Options
20135
20136 @table @option
20137 @item input
20138 Set path to the file used to read the transforms. Default value is
20139 @file{transforms.trf}.
20140
20141 @item smoothing
20142 Set the number of frames (value*2 + 1) used for lowpass filtering the
20143 camera movements. Default value is 10.
20144
20145 For example a number of 10 means that 21 frames are used (10 in the
20146 past and 10 in the future) to smoothen the motion in the video. A
20147 larger value leads to a smoother video, but limits the acceleration of
20148 the camera (pan/tilt movements). 0 is a special case where a static
20149 camera is simulated.
20150
20151 @item optalgo
20152 Set the camera path optimization algorithm.
20153
20154 Accepted values are:
20155 @table @samp
20156 @item gauss
20157 gaussian kernel low-pass filter on camera motion (default)
20158 @item avg
20159 averaging on transformations
20160 @end table
20161
20162 @item maxshift
20163 Set maximal number of pixels to translate frames. Default value is -1,
20164 meaning no limit.
20165
20166 @item maxangle
20167 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
20168 value is -1, meaning no limit.
20169
20170 @item crop
20171 Specify how to deal with borders that may be visible due to movement
20172 compensation.
20173
20174 Available values are:
20175 @table @samp
20176 @item keep
20177 keep image information from previous frame (default)
20178 @item black
20179 fill the border black
20180 @end table
20181
20182 @item invert
20183 Invert transforms if set to 1. Default value is 0.
20184
20185 @item relative
20186 Consider transforms as relative to previous frame if set to 1,
20187 absolute if set to 0. Default value is 0.
20188
20189 @item zoom
20190 Set percentage to zoom. A positive value will result in a zoom-in
20191 effect, a negative value in a zoom-out effect. Default value is 0 (no
20192 zoom).
20193
20194 @item optzoom
20195 Set optimal zooming to avoid borders.
20196
20197 Accepted values are:
20198 @table @samp
20199 @item 0
20200 disabled
20201 @item 1
20202 optimal static zoom value is determined (only very strong movements
20203 will lead to visible borders) (default)
20204 @item 2
20205 optimal adaptive zoom value is determined (no borders will be
20206 visible), see @option{zoomspeed}
20207 @end table
20208
20209 Note that the value given at zoom is added to the one calculated here.
20210
20211 @item zoomspeed
20212 Set percent to zoom maximally each frame (enabled when
20213 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
20214 0.25.
20215
20216 @item interpol
20217 Specify type of interpolation.
20218
20219 Available values are:
20220 @table @samp
20221 @item no
20222 no interpolation
20223 @item linear
20224 linear only horizontal
20225 @item bilinear
20226 linear in both directions (default)
20227 @item bicubic
20228 cubic in both directions (slow)
20229 @end table
20230
20231 @item tripod
20232 Enable virtual tripod mode if set to 1, which is equivalent to
20233 @code{relative=0:smoothing=0}. Default value is 0.
20234
20235 Use also @code{tripod} option of @ref{vidstabdetect}.
20236
20237 @item debug
20238 Increase log verbosity if set to 1. Also the detected global motions
20239 are written to the temporary file @file{global_motions.trf}. Default
20240 value is 0.
20241 @end table
20242
20243 @subsection Examples
20244
20245 @itemize
20246 @item
20247 Use @command{ffmpeg} for a typical stabilization with default values:
20248 @example
20249 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
20250 @end example
20251
20252 Note the use of the @ref{unsharp} filter which is always recommended.
20253
20254 @item
20255 Zoom in a bit more and load transform data from a given file:
20256 @example
20257 vidstabtransform=zoom=5:input="mytransforms.trf"
20258 @end example
20259
20260 @item
20261 Smoothen the video even more:
20262 @example
20263 vidstabtransform=smoothing=30
20264 @end example
20265 @end itemize
20266
20267 @section vflip
20268
20269 Flip the input video vertically.
20270
20271 For example, to vertically flip a video with @command{ffmpeg}:
20272 @example
20273 ffmpeg -i in.avi -vf "vflip" out.avi
20274 @end example
20275
20276 @section vfrdet
20277
20278 Detect variable frame rate video.
20279
20280 This filter tries to detect if the input is variable or constant frame rate.
20281
20282 At end it will output number of frames detected as having variable delta pts,
20283 and ones with constant delta pts.
20284 If there was frames with variable delta, than it will also show min, max and
20285 average delta encountered.
20286
20287 @section vibrance
20288
20289 Boost or alter saturation.
20290
20291 The filter accepts the following options:
20292 @table @option
20293 @item intensity
20294 Set strength of boost if positive value or strength of alter if negative value.
20295 Default is 0. Allowed range is from -2 to 2.
20296
20297 @item rbal
20298 Set the red balance. Default is 1. Allowed range is from -10 to 10.
20299
20300 @item gbal
20301 Set the green balance. Default is 1. Allowed range is from -10 to 10.
20302
20303 @item bbal
20304 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
20305
20306 @item rlum
20307 Set the red luma coefficient.
20308
20309 @item glum
20310 Set the green luma coefficient.
20311
20312 @item blum
20313 Set the blue luma coefficient.
20314
20315 @item alternate
20316 If @code{intensity} is negative and this is set to 1, colors will change,
20317 otherwise colors will be less saturated, more towards gray.
20318 @end table
20319
20320 @subsection Commands
20321
20322 This filter supports the all above options as @ref{commands}.
20323
20324 @anchor{vignette}
20325 @section vignette
20326
20327 Make or reverse a natural vignetting effect.
20328
20329 The filter accepts the following options:
20330
20331 @table @option
20332 @item angle, a
20333 Set lens angle expression as a number of radians.
20334
20335 The value is clipped in the @code{[0,PI/2]} range.
20336
20337 Default value: @code{"PI/5"}
20338
20339 @item x0
20340 @item y0
20341 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
20342 by default.
20343
20344 @item mode
20345 Set forward/backward mode.
20346
20347 Available modes are:
20348 @table @samp
20349 @item forward
20350 The larger the distance from the central point, the darker the image becomes.
20351
20352 @item backward
20353 The larger the distance from the central point, the brighter the image becomes.
20354 This can be used to reverse a vignette effect, though there is no automatic
20355 detection to extract the lens @option{angle} and other settings (yet). It can
20356 also be used to create a burning effect.
20357 @end table
20358
20359 Default value is @samp{forward}.
20360
20361 @item eval
20362 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
20363
20364 It accepts the following values:
20365 @table @samp
20366 @item init
20367 Evaluate expressions only once during the filter initialization.
20368
20369 @item frame
20370 Evaluate expressions for each incoming frame. This is way slower than the
20371 @samp{init} mode since it requires all the scalers to be re-computed, but it
20372 allows advanced dynamic expressions.
20373 @end table
20374
20375 Default value is @samp{init}.
20376
20377 @item dither
20378 Set dithering to reduce the circular banding effects. Default is @code{1}
20379 (enabled).
20380
20381 @item aspect
20382 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
20383 Setting this value to the SAR of the input will make a rectangular vignetting
20384 following the dimensions of the video.
20385
20386 Default is @code{1/1}.
20387 @end table
20388
20389 @subsection Expressions
20390
20391 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
20392 following parameters.
20393
20394 @table @option
20395 @item w
20396 @item h
20397 input width and height
20398
20399 @item n
20400 the number of input frame, starting from 0
20401
20402 @item pts
20403 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
20404 @var{TB} units, NAN if undefined
20405
20406 @item r
20407 frame rate of the input video, NAN if the input frame rate is unknown
20408
20409 @item t
20410 the PTS (Presentation TimeStamp) of the filtered video frame,
20411 expressed in seconds, NAN if undefined
20412
20413 @item tb
20414 time base of the input video
20415 @end table
20416
20417
20418 @subsection Examples
20419
20420 @itemize
20421 @item
20422 Apply simple strong vignetting effect:
20423 @example
20424 vignette=PI/4
20425 @end example
20426
20427 @item
20428 Make a flickering vignetting:
20429 @example
20430 vignette='PI/4+random(1)*PI/50':eval=frame
20431 @end example
20432
20433 @end itemize
20434
20435 @section vmafmotion
20436
20437 Obtain the average VMAF motion score of a video.
20438 It is one of the component metrics of VMAF.
20439
20440 The obtained average motion score is printed through the logging system.
20441
20442 The filter accepts the following options:
20443
20444 @table @option
20445 @item stats_file
20446 If specified, the filter will use the named file to save the motion score of
20447 each frame with respect to the previous frame.
20448 When filename equals "-" the data is sent to standard output.
20449 @end table
20450
20451 Example:
20452 @example
20453 ffmpeg -i ref.mpg -vf vmafmotion -f null -
20454 @end example
20455
20456 @section vstack
20457 Stack input videos vertically.
20458
20459 All streams must be of same pixel format and of same width.
20460
20461 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
20462 to create same output.
20463
20464 The filter accepts the following options:
20465
20466 @table @option
20467 @item inputs
20468 Set number of input streams. Default is 2.
20469
20470 @item shortest
20471 If set to 1, force the output to terminate when the shortest input
20472 terminates. Default value is 0.
20473 @end table
20474
20475 @section w3fdif
20476
20477 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
20478 Deinterlacing Filter").
20479
20480 Based on the process described by Martin Weston for BBC R&D, and
20481 implemented based on the de-interlace algorithm written by Jim
20482 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
20483 uses filter coefficients calculated by BBC R&D.
20484
20485 This filter uses field-dominance information in frame to decide which
20486 of each pair of fields to place first in the output.
20487 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
20488
20489 There are two sets of filter coefficients, so called "simple"
20490 and "complex". Which set of filter coefficients is used can
20491 be set by passing an optional parameter:
20492
20493 @table @option
20494 @item filter
20495 Set the interlacing filter coefficients. Accepts one of the following values:
20496
20497 @table @samp
20498 @item simple
20499 Simple filter coefficient set.
20500 @item complex
20501 More-complex filter coefficient set.
20502 @end table
20503 Default value is @samp{complex}.
20504
20505 @item deint
20506 Specify which frames to deinterlace. Accepts one of the following values:
20507
20508 @table @samp
20509 @item all
20510 Deinterlace all frames,
20511 @item interlaced
20512 Only deinterlace frames marked as interlaced.
20513 @end table
20514
20515 Default value is @samp{all}.
20516 @end table
20517
20518 @section waveform
20519 Video waveform monitor.
20520
20521 The waveform monitor plots color component intensity. By default luminance
20522 only. Each column of the waveform corresponds to a column of pixels in the
20523 source video.
20524
20525 It accepts the following options:
20526
20527 @table @option
20528 @item mode, m
20529 Can be either @code{row}, or @code{column}. Default is @code{column}.
20530 In row mode, the graph on the left side represents color component value 0 and
20531 the right side represents value = 255. In column mode, the top side represents
20532 color component value = 0 and bottom side represents value = 255.
20533
20534 @item intensity, i
20535 Set intensity. Smaller values are useful to find out how many values of the same
20536 luminance are distributed across input rows/columns.
20537 Default value is @code{0.04}. Allowed range is [0, 1].
20538
20539 @item mirror, r
20540 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
20541 In mirrored mode, higher values will be represented on the left
20542 side for @code{row} mode and at the top for @code{column} mode. Default is
20543 @code{1} (mirrored).
20544
20545 @item display, d
20546 Set display mode.
20547 It accepts the following values:
20548 @table @samp
20549 @item overlay
20550 Presents information identical to that in the @code{parade}, except
20551 that the graphs representing color components are superimposed directly
20552 over one another.
20553
20554 This display mode makes it easier to spot relative differences or similarities
20555 in overlapping areas of the color components that are supposed to be identical,
20556 such as neutral whites, grays, or blacks.
20557
20558 @item stack
20559 Display separate graph for the color components side by side in
20560 @code{row} mode or one below the other in @code{column} mode.
20561
20562 @item parade
20563 Display separate graph for the color components side by side in
20564 @code{column} mode or one below the other in @code{row} mode.
20565
20566 Using this display mode makes it easy to spot color casts in the highlights
20567 and shadows of an image, by comparing the contours of the top and the bottom
20568 graphs of each waveform. Since whites, grays, and blacks are characterized
20569 by exactly equal amounts of red, green, and blue, neutral areas of the picture
20570 should display three waveforms of roughly equal width/height. If not, the
20571 correction is easy to perform by making level adjustments the three waveforms.
20572 @end table
20573 Default is @code{stack}.
20574
20575 @item components, c
20576 Set which color components to display. Default is 1, which means only luminance
20577 or red color component if input is in RGB colorspace. If is set for example to
20578 7 it will display all 3 (if) available color components.
20579
20580 @item envelope, e
20581 @table @samp
20582 @item none
20583 No envelope, this is default.
20584
20585 @item instant
20586 Instant envelope, minimum and maximum values presented in graph will be easily
20587 visible even with small @code{step} value.
20588
20589 @item peak
20590 Hold minimum and maximum values presented in graph across time. This way you
20591 can still spot out of range values without constantly looking at waveforms.
20592
20593 @item peak+instant
20594 Peak and instant envelope combined together.
20595 @end table
20596
20597 @item filter, f
20598 @table @samp
20599 @item lowpass
20600 No filtering, this is default.
20601
20602 @item flat
20603 Luma and chroma combined together.
20604
20605 @item aflat
20606 Similar as above, but shows difference between blue and red chroma.
20607
20608 @item xflat
20609 Similar as above, but use different colors.
20610
20611 @item yflat
20612 Similar as above, but again with different colors.
20613
20614 @item chroma
20615 Displays only chroma.
20616
20617 @item color
20618 Displays actual color value on waveform.
20619
20620 @item acolor
20621 Similar as above, but with luma showing frequency of chroma values.
20622 @end table
20623
20624 @item graticule, g
20625 Set which graticule to display.
20626
20627 @table @samp
20628 @item none
20629 Do not display graticule.
20630
20631 @item green
20632 Display green graticule showing legal broadcast ranges.
20633
20634 @item orange
20635 Display orange graticule showing legal broadcast ranges.
20636
20637 @item invert
20638 Display invert graticule showing legal broadcast ranges.
20639 @end table
20640
20641 @item opacity, o
20642 Set graticule opacity.
20643
20644 @item flags, fl
20645 Set graticule flags.
20646
20647 @table @samp
20648 @item numbers
20649 Draw numbers above lines. By default enabled.
20650
20651 @item dots
20652 Draw dots instead of lines.
20653 @end table
20654
20655 @item scale, s
20656 Set scale used for displaying graticule.
20657
20658 @table @samp
20659 @item digital
20660 @item millivolts
20661 @item ire
20662 @end table
20663 Default is digital.
20664
20665 @item bgopacity, b
20666 Set background opacity.
20667
20668 @item tint0, t0
20669 @item tint1, t1
20670 Set tint for output.
20671 Only used with lowpass filter and when display is not overlay and input
20672 pixel formats are not RGB.
20673 @end table
20674
20675 @section weave, doubleweave
20676
20677 The @code{weave} takes a field-based video input and join
20678 each two sequential fields into single frame, producing a new double
20679 height clip with half the frame rate and half the frame count.
20680
20681 The @code{doubleweave} works same as @code{weave} but without
20682 halving frame rate and frame count.
20683
20684 It accepts the following option:
20685
20686 @table @option
20687 @item first_field
20688 Set first field. Available values are:
20689
20690 @table @samp
20691 @item top, t
20692 Set the frame as top-field-first.
20693
20694 @item bottom, b
20695 Set the frame as bottom-field-first.
20696 @end table
20697 @end table
20698
20699 @subsection Examples
20700
20701 @itemize
20702 @item
20703 Interlace video using @ref{select} and @ref{separatefields} filter:
20704 @example
20705 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
20706 @end example
20707 @end itemize
20708
20709 @section xbr
20710 Apply the xBR high-quality magnification filter which is designed for pixel
20711 art. It follows a set of edge-detection rules, see
20712 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
20713
20714 It accepts the following option:
20715
20716 @table @option
20717 @item n
20718 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
20719 @code{3xBR} and @code{4} for @code{4xBR}.
20720 Default is @code{3}.
20721 @end table
20722
20723 @section xfade
20724
20725 Apply cross fade from one input video stream to another input video stream.
20726 The cross fade is applied for specified duration.
20727
20728 The filter accepts the following options:
20729
20730 @table @option
20731 @item transition
20732 Set one of available transition effects:
20733
20734 @table @samp
20735 @item custom
20736 @item fade
20737 @item wipeleft
20738 @item wiperight
20739 @item wipeup
20740 @item wipedown
20741 @item slideleft
20742 @item slideright
20743 @item slideup
20744 @item slidedown
20745 @item circlecrop
20746 @item rectcrop
20747 @item distance
20748 @item fadeblack
20749 @item fadewhite
20750 @item radial
20751 @item smoothleft
20752 @item smoothright
20753 @item smoothup
20754 @item smoothdown
20755 @item circleopen
20756 @item circleclose
20757 @item vertopen
20758 @item vertclose
20759 @item horzopen
20760 @item horzclose
20761 @item dissolve
20762 @item pixelize
20763 @item diagtl
20764 @item diagtr
20765 @item diagbl
20766 @item diagbr
20767 @item hlslice
20768 @item hrslice
20769 @item vuslice
20770 @item vdslice
20771 @item hblur
20772 @item fadegrays
20773 @item wipetl
20774 @item wipetr
20775 @item wipebl
20776 @item wipebr
20777 @item squeezeh
20778 @item squeezev
20779 @end table
20780 Default transition effect is fade.
20781
20782 @item duration
20783 Set cross fade duration in seconds.
20784 Default duration is 1 second.
20785
20786 @item offset
20787 Set cross fade start relative to first input stream in seconds.
20788 Default offset is 0.
20789
20790 @item expr
20791 Set expression for custom transition effect.
20792
20793 The expressions can use the following variables and functions:
20794
20795 @table @option
20796 @item X
20797 @item Y
20798 The coordinates of the current sample.
20799
20800 @item W
20801 @item H
20802 The width and height of the image.
20803
20804 @item P
20805 Progress of transition effect.
20806
20807 @item PLANE
20808 Currently processed plane.
20809
20810 @item A
20811 Return value of first input at current location and plane.
20812
20813 @item B
20814 Return value of second input at current location and plane.
20815
20816 @item a0(x, y)
20817 @item a1(x, y)
20818 @item a2(x, y)
20819 @item a3(x, y)
20820 Return the value of the pixel at location (@var{x},@var{y}) of the
20821 first/second/third/fourth component of first input.
20822
20823 @item b0(x, y)
20824 @item b1(x, y)
20825 @item b2(x, y)
20826 @item b3(x, y)
20827 Return the value of the pixel at location (@var{x},@var{y}) of the
20828 first/second/third/fourth component of second input.
20829 @end table
20830 @end table
20831
20832 @subsection Examples
20833
20834 @itemize
20835 @item
20836 Cross fade from one input video to another input video, with fade transition and duration of transition
20837 of 2 seconds starting at offset of 5 seconds:
20838 @example
20839 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
20840 @end example
20841 @end itemize
20842
20843 @section xmedian
20844 Pick median pixels from several input videos.
20845
20846 The filter accepts the following options:
20847
20848 @table @option
20849 @item inputs
20850 Set number of inputs.
20851 Default is 3. Allowed range is from 3 to 255.
20852 If number of inputs is even number, than result will be mean value between two median values.
20853
20854 @item planes
20855 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
20856
20857 @item percentile
20858 Set median percentile. Default value is @code{0.5}.
20859 Default value of @code{0.5} will pick always median values, while @code{0} will pick
20860 minimum values, and @code{1} maximum values.
20861 @end table
20862
20863 @section xstack
20864 Stack video inputs into custom layout.
20865
20866 All streams must be of same pixel format.
20867
20868 The filter accepts the following options:
20869
20870 @table @option
20871 @item inputs
20872 Set number of input streams. Default is 2.
20873
20874 @item layout
20875 Specify layout of inputs.
20876 This option requires the desired layout configuration to be explicitly set by the user.
20877 This sets position of each video input in output. Each input
20878 is separated by '|'.
20879 The first number represents the column, and the second number represents the row.
20880 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
20881 where X is video input from which to take width or height.
20882 Multiple values can be used when separated by '+'. In such
20883 case values are summed together.
20884
20885 Note that if inputs are of different sizes gaps may appear, as not all of
20886 the output video frame will be filled. Similarly, videos can overlap each
20887 other if their position doesn't leave enough space for the full frame of
20888 adjoining videos.
20889
20890 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
20891 a layout must be set by the user.
20892
20893 @item shortest
20894 If set to 1, force the output to terminate when the shortest input
20895 terminates. Default value is 0.
20896
20897 @item fill
20898 If set to valid color, all unused pixels will be filled with that color.
20899 By default fill is set to none, so it is disabled.
20900 @end table
20901
20902 @subsection Examples
20903
20904 @itemize
20905 @item
20906 Display 4 inputs into 2x2 grid.
20907
20908 Layout:
20909 @example
20910 input1(0, 0)  | input3(w0, 0)
20911 input2(0, h0) | input4(w0, h0)
20912 @end example
20913
20914 @example
20915 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
20916 @end example
20917
20918 Note that if inputs are of different sizes, gaps or overlaps may occur.
20919
20920 @item
20921 Display 4 inputs into 1x4 grid.
20922
20923 Layout:
20924 @example
20925 input1(0, 0)
20926 input2(0, h0)
20927 input3(0, h0+h1)
20928 input4(0, h0+h1+h2)
20929 @end example
20930
20931 @example
20932 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
20933 @end example
20934
20935 Note that if inputs are of different widths, unused space will appear.
20936
20937 @item
20938 Display 9 inputs into 3x3 grid.
20939
20940 Layout:
20941 @example
20942 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
20943 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
20944 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
20945 @end example
20946
20947 @example
20948 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
20949 @end example
20950
20951 Note that if inputs are of different sizes, gaps or overlaps may occur.
20952
20953 @item
20954 Display 16 inputs into 4x4 grid.
20955
20956 Layout:
20957 @example
20958 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
20959 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
20960 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
20961 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
20962 @end example
20963
20964 @example
20965 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|
20966 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
20967 @end example
20968
20969 Note that if inputs are of different sizes, gaps or overlaps may occur.
20970
20971 @end itemize
20972
20973 @anchor{yadif}
20974 @section yadif
20975
20976 Deinterlace the input video ("yadif" means "yet another deinterlacing
20977 filter").
20978
20979 It accepts the following parameters:
20980
20981
20982 @table @option
20983
20984 @item mode
20985 The interlacing mode to adopt. It accepts one of the following values:
20986
20987 @table @option
20988 @item 0, send_frame
20989 Output one frame for each frame.
20990 @item 1, send_field
20991 Output one frame for each field.
20992 @item 2, send_frame_nospatial
20993 Like @code{send_frame}, but it skips the spatial interlacing check.
20994 @item 3, send_field_nospatial
20995 Like @code{send_field}, but it skips the spatial interlacing check.
20996 @end table
20997
20998 The default value is @code{send_frame}.
20999
21000 @item parity
21001 The picture field parity assumed for the input interlaced video. It accepts one
21002 of the following values:
21003
21004 @table @option
21005 @item 0, tff
21006 Assume the top field is first.
21007 @item 1, bff
21008 Assume the bottom field is first.
21009 @item -1, auto
21010 Enable automatic detection of field parity.
21011 @end table
21012
21013 The default value is @code{auto}.
21014 If the interlacing is unknown or the decoder does not export this information,
21015 top field first will be assumed.
21016
21017 @item deint
21018 Specify which frames to deinterlace. Accepts one of the following
21019 values:
21020
21021 @table @option
21022 @item 0, all
21023 Deinterlace all frames.
21024 @item 1, interlaced
21025 Only deinterlace frames marked as interlaced.
21026 @end table
21027
21028 The default value is @code{all}.
21029 @end table
21030
21031 @section yadif_cuda
21032
21033 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
21034 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
21035 and/or nvenc.
21036
21037 It accepts the following parameters:
21038
21039
21040 @table @option
21041
21042 @item mode
21043 The interlacing mode to adopt. It accepts one of the following values:
21044
21045 @table @option
21046 @item 0, send_frame
21047 Output one frame for each frame.
21048 @item 1, send_field
21049 Output one frame for each field.
21050 @item 2, send_frame_nospatial
21051 Like @code{send_frame}, but it skips the spatial interlacing check.
21052 @item 3, send_field_nospatial
21053 Like @code{send_field}, but it skips the spatial interlacing check.
21054 @end table
21055
21056 The default value is @code{send_frame}.
21057
21058 @item parity
21059 The picture field parity assumed for the input interlaced video. It accepts one
21060 of the following values:
21061
21062 @table @option
21063 @item 0, tff
21064 Assume the top field is first.
21065 @item 1, bff
21066 Assume the bottom field is first.
21067 @item -1, auto
21068 Enable automatic detection of field parity.
21069 @end table
21070
21071 The default value is @code{auto}.
21072 If the interlacing is unknown or the decoder does not export this information,
21073 top field first will be assumed.
21074
21075 @item deint
21076 Specify which frames to deinterlace. Accepts one of the following
21077 values:
21078
21079 @table @option
21080 @item 0, all
21081 Deinterlace all frames.
21082 @item 1, interlaced
21083 Only deinterlace frames marked as interlaced.
21084 @end table
21085
21086 The default value is @code{all}.
21087 @end table
21088
21089 @section yaepblur
21090
21091 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
21092 The algorithm is described in
21093 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
21094
21095 It accepts the following parameters:
21096
21097 @table @option
21098 @item radius, r
21099 Set the window radius. Default value is 3.
21100
21101 @item planes, p
21102 Set which planes to filter. Default is only the first plane.
21103
21104 @item sigma, s
21105 Set blur strength. Default value is 128.
21106 @end table
21107
21108 @subsection Commands
21109 This filter supports same @ref{commands} as options.
21110
21111 @section zoompan
21112
21113 Apply Zoom & Pan effect.
21114
21115 This filter accepts the following options:
21116
21117 @table @option
21118 @item zoom, z
21119 Set the zoom expression. Range is 1-10. Default is 1.
21120
21121 @item x
21122 @item y
21123 Set the x and y expression. Default is 0.
21124
21125 @item d
21126 Set the duration expression in number of frames.
21127 This sets for how many number of frames effect will last for
21128 single input image.
21129
21130 @item s
21131 Set the output image size, default is 'hd720'.
21132
21133 @item fps
21134 Set the output frame rate, default is '25'.
21135 @end table
21136
21137 Each expression can contain the following constants:
21138
21139 @table @option
21140 @item in_w, iw
21141 Input width.
21142
21143 @item in_h, ih
21144 Input height.
21145
21146 @item out_w, ow
21147 Output width.
21148
21149 @item out_h, oh
21150 Output height.
21151
21152 @item in
21153 Input frame count.
21154
21155 @item on
21156 Output frame count.
21157
21158 @item in_time, it
21159 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
21160
21161 @item out_time, time, ot
21162 The output timestamp expressed in seconds.
21163
21164 @item x
21165 @item y
21166 Last calculated 'x' and 'y' position from 'x' and 'y' expression
21167 for current input frame.
21168
21169 @item px
21170 @item py
21171 'x' and 'y' of last output frame of previous input frame or 0 when there was
21172 not yet such frame (first input frame).
21173
21174 @item zoom
21175 Last calculated zoom from 'z' expression for current input frame.
21176
21177 @item pzoom
21178 Last calculated zoom of last output frame of previous input frame.
21179
21180 @item duration
21181 Number of output frames for current input frame. Calculated from 'd' expression
21182 for each input frame.
21183
21184 @item pduration
21185 number of output frames created for previous input frame
21186
21187 @item a
21188 Rational number: input width / input height
21189
21190 @item sar
21191 sample aspect ratio
21192
21193 @item dar
21194 display aspect ratio
21195
21196 @end table
21197
21198 @subsection Examples
21199
21200 @itemize
21201 @item
21202 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
21203 @example
21204 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
21205 @end example
21206
21207 @item
21208 Zoom in up to 1.5x and pan always at center of picture:
21209 @example
21210 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21211 @end example
21212
21213 @item
21214 Same as above but without pausing:
21215 @example
21216 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21217 @end example
21218
21219 @item
21220 Zoom in 2x into center of picture only for the first second of the input video:
21221 @example
21222 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21223 @end example
21224
21225 @end itemize
21226
21227 @anchor{zscale}
21228 @section zscale
21229 Scale (resize) the input video, using the z.lib library:
21230 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
21231 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
21232
21233 The zscale filter forces the output display aspect ratio to be the same
21234 as the input, by changing the output sample aspect ratio.
21235
21236 If the input image format is different from the format requested by
21237 the next filter, the zscale filter will convert the input to the
21238 requested format.
21239
21240 @subsection Options
21241 The filter accepts the following options.
21242
21243 @table @option
21244 @item width, w
21245 @item height, h
21246 Set the output video dimension expression. Default value is the input
21247 dimension.
21248
21249 If the @var{width} or @var{w} value is 0, the input width is used for
21250 the output. If the @var{height} or @var{h} value is 0, the input height
21251 is used for the output.
21252
21253 If one and only one of the values is -n with n >= 1, the zscale filter
21254 will use a value that maintains the aspect ratio of the input image,
21255 calculated from the other specified dimension. After that it will,
21256 however, make sure that the calculated dimension is divisible by n and
21257 adjust the value if necessary.
21258
21259 If both values are -n with n >= 1, the behavior will be identical to
21260 both values being set to 0 as previously detailed.
21261
21262 See below for the list of accepted constants for use in the dimension
21263 expression.
21264
21265 @item size, s
21266 Set the video size. For the syntax of this option, check the
21267 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21268
21269 @item dither, d
21270 Set the dither type.
21271
21272 Possible values are:
21273 @table @var
21274 @item none
21275 @item ordered
21276 @item random
21277 @item error_diffusion
21278 @end table
21279
21280 Default is none.
21281
21282 @item filter, f
21283 Set the resize filter type.
21284
21285 Possible values are:
21286 @table @var
21287 @item point
21288 @item bilinear
21289 @item bicubic
21290 @item spline16
21291 @item spline36
21292 @item lanczos
21293 @end table
21294
21295 Default is bilinear.
21296
21297 @item range, r
21298 Set the color range.
21299
21300 Possible values are:
21301 @table @var
21302 @item input
21303 @item limited
21304 @item full
21305 @end table
21306
21307 Default is same as input.
21308
21309 @item primaries, p
21310 Set the color primaries.
21311
21312 Possible values are:
21313 @table @var
21314 @item input
21315 @item 709
21316 @item unspecified
21317 @item 170m
21318 @item 240m
21319 @item 2020
21320 @end table
21321
21322 Default is same as input.
21323
21324 @item transfer, t
21325 Set the transfer characteristics.
21326
21327 Possible values are:
21328 @table @var
21329 @item input
21330 @item 709
21331 @item unspecified
21332 @item 601
21333 @item linear
21334 @item 2020_10
21335 @item 2020_12
21336 @item smpte2084
21337 @item iec61966-2-1
21338 @item arib-std-b67
21339 @end table
21340
21341 Default is same as input.
21342
21343 @item matrix, m
21344 Set the colorspace matrix.
21345
21346 Possible value are:
21347 @table @var
21348 @item input
21349 @item 709
21350 @item unspecified
21351 @item 470bg
21352 @item 170m
21353 @item 2020_ncl
21354 @item 2020_cl
21355 @end table
21356
21357 Default is same as input.
21358
21359 @item rangein, rin
21360 Set the input color range.
21361
21362 Possible values are:
21363 @table @var
21364 @item input
21365 @item limited
21366 @item full
21367 @end table
21368
21369 Default is same as input.
21370
21371 @item primariesin, pin
21372 Set the input color primaries.
21373
21374 Possible values are:
21375 @table @var
21376 @item input
21377 @item 709
21378 @item unspecified
21379 @item 170m
21380 @item 240m
21381 @item 2020
21382 @end table
21383
21384 Default is same as input.
21385
21386 @item transferin, tin
21387 Set the input transfer characteristics.
21388
21389 Possible values are:
21390 @table @var
21391 @item input
21392 @item 709
21393 @item unspecified
21394 @item 601
21395 @item linear
21396 @item 2020_10
21397 @item 2020_12
21398 @end table
21399
21400 Default is same as input.
21401
21402 @item matrixin, min
21403 Set the input colorspace matrix.
21404
21405 Possible value are:
21406 @table @var
21407 @item input
21408 @item 709
21409 @item unspecified
21410 @item 470bg
21411 @item 170m
21412 @item 2020_ncl
21413 @item 2020_cl
21414 @end table
21415
21416 @item chromal, c
21417 Set the output chroma location.
21418
21419 Possible values are:
21420 @table @var
21421 @item input
21422 @item left
21423 @item center
21424 @item topleft
21425 @item top
21426 @item bottomleft
21427 @item bottom
21428 @end table
21429
21430 @item chromalin, cin
21431 Set the input chroma location.
21432
21433 Possible values are:
21434 @table @var
21435 @item input
21436 @item left
21437 @item center
21438 @item topleft
21439 @item top
21440 @item bottomleft
21441 @item bottom
21442 @end table
21443
21444 @item npl
21445 Set the nominal peak luminance.
21446 @end table
21447
21448 The values of the @option{w} and @option{h} options are expressions
21449 containing the following constants:
21450
21451 @table @var
21452 @item in_w
21453 @item in_h
21454 The input width and height
21455
21456 @item iw
21457 @item ih
21458 These are the same as @var{in_w} and @var{in_h}.
21459
21460 @item out_w
21461 @item out_h
21462 The output (scaled) width and height
21463
21464 @item ow
21465 @item oh
21466 These are the same as @var{out_w} and @var{out_h}
21467
21468 @item a
21469 The same as @var{iw} / @var{ih}
21470
21471 @item sar
21472 input sample aspect ratio
21473
21474 @item dar
21475 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
21476
21477 @item hsub
21478 @item vsub
21479 horizontal and vertical input chroma subsample values. For example for the
21480 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
21481
21482 @item ohsub
21483 @item ovsub
21484 horizontal and vertical output chroma subsample values. For example for the
21485 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
21486 @end table
21487
21488 @subsection Commands
21489
21490 This filter supports the following commands:
21491 @table @option
21492 @item width, w
21493 @item height, h
21494 Set the output video dimension expression.
21495 The command accepts the same syntax of the corresponding option.
21496
21497 If the specified expression is not valid, it is kept at its current
21498 value.
21499 @end table
21500
21501 @c man end VIDEO FILTERS
21502
21503 @chapter OpenCL Video Filters
21504 @c man begin OPENCL VIDEO FILTERS
21505
21506 Below is a description of the currently available OpenCL video filters.
21507
21508 To enable compilation of these filters you need to configure FFmpeg with
21509 @code{--enable-opencl}.
21510
21511 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
21512 @table @option
21513
21514 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
21515 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
21516 given device parameters.
21517
21518 @item -filter_hw_device @var{name}
21519 Pass the hardware device called @var{name} to all filters in any filter graph.
21520
21521 @end table
21522
21523 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
21524
21525 @itemize
21526 @item
21527 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
21528 @example
21529 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
21530 @end example
21531 @end itemize
21532
21533 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.
21534
21535 @section avgblur_opencl
21536
21537 Apply average blur filter.
21538
21539 The filter accepts the following options:
21540
21541 @table @option
21542 @item sizeX
21543 Set horizontal radius size.
21544 Range is @code{[1, 1024]} and default value is @code{1}.
21545
21546 @item planes
21547 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21548
21549 @item sizeY
21550 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
21551 @end table
21552
21553 @subsection Example
21554
21555 @itemize
21556 @item
21557 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.
21558 @example
21559 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
21560 @end example
21561 @end itemize
21562
21563 @section boxblur_opencl
21564
21565 Apply a boxblur algorithm to the input video.
21566
21567 It accepts the following parameters:
21568
21569 @table @option
21570
21571 @item luma_radius, lr
21572 @item luma_power, lp
21573 @item chroma_radius, cr
21574 @item chroma_power, cp
21575 @item alpha_radius, ar
21576 @item alpha_power, ap
21577
21578 @end table
21579
21580 A description of the accepted options follows.
21581
21582 @table @option
21583 @item luma_radius, lr
21584 @item chroma_radius, cr
21585 @item alpha_radius, ar
21586 Set an expression for the box radius in pixels used for blurring the
21587 corresponding input plane.
21588
21589 The radius value must be a non-negative number, and must not be
21590 greater than the value of the expression @code{min(w,h)/2} for the
21591 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
21592 planes.
21593
21594 Default value for @option{luma_radius} is "2". If not specified,
21595 @option{chroma_radius} and @option{alpha_radius} default to the
21596 corresponding value set for @option{luma_radius}.
21597
21598 The expressions can contain the following constants:
21599 @table @option
21600 @item w
21601 @item h
21602 The input width and height in pixels.
21603
21604 @item cw
21605 @item ch
21606 The input chroma image width and height in pixels.
21607
21608 @item hsub
21609 @item vsub
21610 The horizontal and vertical chroma subsample values. For example, for the
21611 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
21612 @end table
21613
21614 @item luma_power, lp
21615 @item chroma_power, cp
21616 @item alpha_power, ap
21617 Specify how many times the boxblur filter is applied to the
21618 corresponding plane.
21619
21620 Default value for @option{luma_power} is 2. If not specified,
21621 @option{chroma_power} and @option{alpha_power} default to the
21622 corresponding value set for @option{luma_power}.
21623
21624 A value of 0 will disable the effect.
21625 @end table
21626
21627 @subsection Examples
21628
21629 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.
21630
21631 @itemize
21632 @item
21633 Apply a boxblur filter with the luma, chroma, and alpha radius
21634 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.
21635 @example
21636 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
21637 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
21638 @end example
21639
21640 @item
21641 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.
21642
21643 For the luma plane, a 2x2 box radius will be run once.
21644
21645 For the chroma plane, a 4x4 box radius will be run 5 times.
21646
21647 For the alpha plane, a 3x3 box radius will be run 7 times.
21648 @example
21649 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
21650 @end example
21651 @end itemize
21652
21653 @section colorkey_opencl
21654 RGB colorspace color keying.
21655
21656 The filter accepts the following options:
21657
21658 @table @option
21659 @item color
21660 The color which will be replaced with transparency.
21661
21662 @item similarity
21663 Similarity percentage with the key color.
21664
21665 0.01 matches only the exact key color, while 1.0 matches everything.
21666
21667 @item blend
21668 Blend percentage.
21669
21670 0.0 makes pixels either fully transparent, or not transparent at all.
21671
21672 Higher values result in semi-transparent pixels, with a higher transparency
21673 the more similar the pixels color is to the key color.
21674 @end table
21675
21676 @subsection Examples
21677
21678 @itemize
21679 @item
21680 Make every semi-green pixel in the input transparent with some slight blending:
21681 @example
21682 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
21683 @end example
21684 @end itemize
21685
21686 @section convolution_opencl
21687
21688 Apply convolution of 3x3, 5x5, 7x7 matrix.
21689
21690 The filter accepts the following options:
21691
21692 @table @option
21693 @item 0m
21694 @item 1m
21695 @item 2m
21696 @item 3m
21697 Set matrix for each plane.
21698 Matrix is sequence of 9, 25 or 49 signed numbers.
21699 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
21700
21701 @item 0rdiv
21702 @item 1rdiv
21703 @item 2rdiv
21704 @item 3rdiv
21705 Set multiplier for calculated value for each plane.
21706 If unset or 0, it will be sum of all matrix elements.
21707 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
21708
21709 @item 0bias
21710 @item 1bias
21711 @item 2bias
21712 @item 3bias
21713 Set bias for each plane. This value is added to the result of the multiplication.
21714 Useful for making the overall image brighter or darker.
21715 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
21716
21717 @end table
21718
21719 @subsection Examples
21720
21721 @itemize
21722 @item
21723 Apply sharpen:
21724 @example
21725 -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
21726 @end example
21727
21728 @item
21729 Apply blur:
21730 @example
21731 -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
21732 @end example
21733
21734 @item
21735 Apply edge enhance:
21736 @example
21737 -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
21738 @end example
21739
21740 @item
21741 Apply edge detect:
21742 @example
21743 -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
21744 @end example
21745
21746 @item
21747 Apply laplacian edge detector which includes diagonals:
21748 @example
21749 -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
21750 @end example
21751
21752 @item
21753 Apply emboss:
21754 @example
21755 -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
21756 @end example
21757 @end itemize
21758
21759 @section erosion_opencl
21760
21761 Apply erosion effect to the video.
21762
21763 This filter replaces the pixel by the local(3x3) minimum.
21764
21765 It accepts the following options:
21766
21767 @table @option
21768 @item threshold0
21769 @item threshold1
21770 @item threshold2
21771 @item threshold3
21772 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21773 If @code{0}, plane will remain unchanged.
21774
21775 @item coordinates
21776 Flag which specifies the pixel to refer to.
21777 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21778
21779 Flags to local 3x3 coordinates region centered on @code{x}:
21780
21781     1 2 3
21782
21783     4 x 5
21784
21785     6 7 8
21786 @end table
21787
21788 @subsection Example
21789
21790 @itemize
21791 @item
21792 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.
21793 @example
21794 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21795 @end example
21796 @end itemize
21797
21798 @section deshake_opencl
21799 Feature-point based video stabilization filter.
21800
21801 The filter accepts the following options:
21802
21803 @table @option
21804 @item tripod
21805 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
21806
21807 @item debug
21808 Whether or not additional debug info should be displayed, both in the processed output and in the console.
21809
21810 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
21811
21812 Viewing point matches in the output video is only supported for RGB input.
21813
21814 Defaults to @code{0}.
21815
21816 @item adaptive_crop
21817 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
21818
21819 Defaults to @code{1}.
21820
21821 @item refine_features
21822 Whether or not feature points should be refined at a sub-pixel level.
21823
21824 This can be turned off for a slight performance gain at the cost of precision.
21825
21826 Defaults to @code{1}.
21827
21828 @item smooth_strength
21829 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
21830
21831 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
21832
21833 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
21834
21835 Defaults to @code{0.0}.
21836
21837 @item smooth_window_multiplier
21838 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
21839
21840 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
21841
21842 Acceptable values range from @code{0.1} to @code{10.0}.
21843
21844 Larger values increase the amount of motion data available for determining how to smooth the camera path,
21845 potentially improving smoothness, but also increase latency and memory usage.
21846
21847 Defaults to @code{2.0}.
21848
21849 @end table
21850
21851 @subsection Examples
21852
21853 @itemize
21854 @item
21855 Stabilize a video with a fixed, medium smoothing strength:
21856 @example
21857 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
21858 @end example
21859
21860 @item
21861 Stabilize a video with debugging (both in console and in rendered video):
21862 @example
21863 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
21864 @end example
21865 @end itemize
21866
21867 @section dilation_opencl
21868
21869 Apply dilation effect to the video.
21870
21871 This filter replaces the pixel by the local(3x3) maximum.
21872
21873 It accepts the following options:
21874
21875 @table @option
21876 @item threshold0
21877 @item threshold1
21878 @item threshold2
21879 @item threshold3
21880 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21881 If @code{0}, plane will remain unchanged.
21882
21883 @item coordinates
21884 Flag which specifies the pixel to refer to.
21885 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21886
21887 Flags to local 3x3 coordinates region centered on @code{x}:
21888
21889     1 2 3
21890
21891     4 x 5
21892
21893     6 7 8
21894 @end table
21895
21896 @subsection Example
21897
21898 @itemize
21899 @item
21900 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.
21901 @example
21902 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21903 @end example
21904 @end itemize
21905
21906 @section nlmeans_opencl
21907
21908 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
21909
21910 @section overlay_opencl
21911
21912 Overlay one video on top of another.
21913
21914 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
21915 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
21916
21917 The filter accepts the following options:
21918
21919 @table @option
21920
21921 @item x
21922 Set the x coordinate of the overlaid video on the main video.
21923 Default value is @code{0}.
21924
21925 @item y
21926 Set the y coordinate of the overlaid video on the main video.
21927 Default value is @code{0}.
21928
21929 @end table
21930
21931 @subsection Examples
21932
21933 @itemize
21934 @item
21935 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
21936 @example
21937 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21938 @end example
21939 @item
21940 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
21941 @example
21942 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21943 @end example
21944
21945 @end itemize
21946
21947 @section pad_opencl
21948
21949 Add paddings to the input image, and place the original input at the
21950 provided @var{x}, @var{y} coordinates.
21951
21952 It accepts the following options:
21953
21954 @table @option
21955 @item width, w
21956 @item height, h
21957 Specify an expression for the size of the output image with the
21958 paddings added. If the value for @var{width} or @var{height} is 0, the
21959 corresponding input size is used for the output.
21960
21961 The @var{width} expression can reference the value set by the
21962 @var{height} expression, and vice versa.
21963
21964 The default value of @var{width} and @var{height} is 0.
21965
21966 @item x
21967 @item y
21968 Specify the offsets to place the input image at within the padded area,
21969 with respect to the top/left border of the output image.
21970
21971 The @var{x} expression can reference the value set by the @var{y}
21972 expression, and vice versa.
21973
21974 The default value of @var{x} and @var{y} is 0.
21975
21976 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
21977 so the input image is centered on the padded area.
21978
21979 @item color
21980 Specify the color of the padded area. For the syntax of this option,
21981 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
21982 manual,ffmpeg-utils}.
21983
21984 @item aspect
21985 Pad to an aspect instead to a resolution.
21986 @end table
21987
21988 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
21989 options are expressions containing the following constants:
21990
21991 @table @option
21992 @item in_w
21993 @item in_h
21994 The input video width and height.
21995
21996 @item iw
21997 @item ih
21998 These are the same as @var{in_w} and @var{in_h}.
21999
22000 @item out_w
22001 @item out_h
22002 The output width and height (the size of the padded area), as
22003 specified by the @var{width} and @var{height} expressions.
22004
22005 @item ow
22006 @item oh
22007 These are the same as @var{out_w} and @var{out_h}.
22008
22009 @item x
22010 @item y
22011 The x and y offsets as specified by the @var{x} and @var{y}
22012 expressions, or NAN if not yet specified.
22013
22014 @item a
22015 same as @var{iw} / @var{ih}
22016
22017 @item sar
22018 input sample aspect ratio
22019
22020 @item dar
22021 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
22022 @end table
22023
22024 @section prewitt_opencl
22025
22026 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
22027
22028 The filter accepts the following option:
22029
22030 @table @option
22031 @item planes
22032 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22033
22034 @item scale
22035 Set value which will be multiplied with filtered result.
22036 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22037
22038 @item delta
22039 Set value which will be added to filtered result.
22040 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22041 @end table
22042
22043 @subsection Example
22044
22045 @itemize
22046 @item
22047 Apply the Prewitt operator with scale set to 2 and delta set to 10.
22048 @example
22049 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
22050 @end example
22051 @end itemize
22052
22053 @anchor{program_opencl}
22054 @section program_opencl
22055
22056 Filter video using an OpenCL program.
22057
22058 @table @option
22059
22060 @item source
22061 OpenCL program source file.
22062
22063 @item kernel
22064 Kernel name in program.
22065
22066 @item inputs
22067 Number of inputs to the filter.  Defaults to 1.
22068
22069 @item size, s
22070 Size of output frames.  Defaults to the same as the first input.
22071
22072 @end table
22073
22074 The @code{program_opencl} filter also supports the @ref{framesync} options.
22075
22076 The program source file must contain a kernel function with the given name,
22077 which will be run once for each plane of the output.  Each run on a plane
22078 gets enqueued as a separate 2D global NDRange with one work-item for each
22079 pixel to be generated.  The global ID offset for each work-item is therefore
22080 the coordinates of a pixel in the destination image.
22081
22082 The kernel function needs to take the following arguments:
22083 @itemize
22084 @item
22085 Destination image, @var{__write_only image2d_t}.
22086
22087 This image will become the output; the kernel should write all of it.
22088 @item
22089 Frame index, @var{unsigned int}.
22090
22091 This is a counter starting from zero and increasing by one for each frame.
22092 @item
22093 Source images, @var{__read_only image2d_t}.
22094
22095 These are the most recent images on each input.  The kernel may read from
22096 them to generate the output, but they can't be written to.
22097 @end itemize
22098
22099 Example programs:
22100
22101 @itemize
22102 @item
22103 Copy the input to the output (output must be the same size as the input).
22104 @verbatim
22105 __kernel void copy(__write_only image2d_t destination,
22106                    unsigned int index,
22107                    __read_only  image2d_t source)
22108 {
22109     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
22110
22111     int2 location = (int2)(get_global_id(0), get_global_id(1));
22112
22113     float4 value = read_imagef(source, sampler, location);
22114
22115     write_imagef(destination, location, value);
22116 }
22117 @end verbatim
22118
22119 @item
22120 Apply a simple transformation, rotating the input by an amount increasing
22121 with the index counter.  Pixel values are linearly interpolated by the
22122 sampler, and the output need not have the same dimensions as the input.
22123 @verbatim
22124 __kernel void rotate_image(__write_only image2d_t dst,
22125                            unsigned int index,
22126                            __read_only  image2d_t src)
22127 {
22128     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22129                                CLK_FILTER_LINEAR);
22130
22131     float angle = (float)index / 100.0f;
22132
22133     float2 dst_dim = convert_float2(get_image_dim(dst));
22134     float2 src_dim = convert_float2(get_image_dim(src));
22135
22136     float2 dst_cen = dst_dim / 2.0f;
22137     float2 src_cen = src_dim / 2.0f;
22138
22139     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
22140
22141     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
22142     float2 src_pos = {
22143         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
22144         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
22145     };
22146     src_pos = src_pos * src_dim / dst_dim;
22147
22148     float2 src_loc = src_pos + src_cen;
22149
22150     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
22151         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
22152         write_imagef(dst, dst_loc, 0.5f);
22153     else
22154         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
22155 }
22156 @end verbatim
22157
22158 @item
22159 Blend two inputs together, with the amount of each input used varying
22160 with the index counter.
22161 @verbatim
22162 __kernel void blend_images(__write_only image2d_t dst,
22163                            unsigned int index,
22164                            __read_only  image2d_t src1,
22165                            __read_only  image2d_t src2)
22166 {
22167     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22168                                CLK_FILTER_LINEAR);
22169
22170     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
22171
22172     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
22173     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
22174     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
22175
22176     float4 val1 = read_imagef(src1, sampler, src1_loc);
22177     float4 val2 = read_imagef(src2, sampler, src2_loc);
22178
22179     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
22180 }
22181 @end verbatim
22182
22183 @end itemize
22184
22185 @section roberts_opencl
22186 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
22187
22188 The filter accepts the following option:
22189
22190 @table @option
22191 @item planes
22192 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22193
22194 @item scale
22195 Set value which will be multiplied with filtered result.
22196 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22197
22198 @item delta
22199 Set value which will be added to filtered result.
22200 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22201 @end table
22202
22203 @subsection Example
22204
22205 @itemize
22206 @item
22207 Apply the Roberts cross operator with scale set to 2 and delta set to 10
22208 @example
22209 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
22210 @end example
22211 @end itemize
22212
22213 @section sobel_opencl
22214
22215 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
22216
22217 The filter accepts the following option:
22218
22219 @table @option
22220 @item planes
22221 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22222
22223 @item scale
22224 Set value which will be multiplied with filtered result.
22225 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22226
22227 @item delta
22228 Set value which will be added to filtered result.
22229 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22230 @end table
22231
22232 @subsection Example
22233
22234 @itemize
22235 @item
22236 Apply sobel operator with scale set to 2 and delta set to 10
22237 @example
22238 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
22239 @end example
22240 @end itemize
22241
22242 @section tonemap_opencl
22243
22244 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
22245
22246 It accepts the following parameters:
22247
22248 @table @option
22249 @item tonemap
22250 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
22251
22252 @item param
22253 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
22254
22255 @item desat
22256 Apply desaturation for highlights that exceed this level of brightness. The
22257 higher the parameter, the more color information will be preserved. This
22258 setting helps prevent unnaturally blown-out colors for super-highlights, by
22259 (smoothly) turning into white instead. This makes images feel more natural,
22260 at the cost of reducing information about out-of-range colors.
22261
22262 The default value is 0.5, and the algorithm here is a little different from
22263 the cpu version tonemap currently. A setting of 0.0 disables this option.
22264
22265 @item threshold
22266 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
22267 is used to detect whether the scene has changed or not. If the distance between
22268 the current frame average brightness and the current running average exceeds
22269 a threshold value, we would re-calculate scene average and peak brightness.
22270 The default value is 0.2.
22271
22272 @item format
22273 Specify the output pixel format.
22274
22275 Currently supported formats are:
22276 @table @var
22277 @item p010
22278 @item nv12
22279 @end table
22280
22281 @item range, r
22282 Set the output color range.
22283
22284 Possible values are:
22285 @table @var
22286 @item tv/mpeg
22287 @item pc/jpeg
22288 @end table
22289
22290 Default is same as input.
22291
22292 @item primaries, p
22293 Set the output color primaries.
22294
22295 Possible values are:
22296 @table @var
22297 @item bt709
22298 @item bt2020
22299 @end table
22300
22301 Default is same as input.
22302
22303 @item transfer, t
22304 Set the output transfer characteristics.
22305
22306 Possible values are:
22307 @table @var
22308 @item bt709
22309 @item bt2020
22310 @end table
22311
22312 Default is bt709.
22313
22314 @item matrix, m
22315 Set the output colorspace matrix.
22316
22317 Possible value are:
22318 @table @var
22319 @item bt709
22320 @item bt2020
22321 @end table
22322
22323 Default is same as input.
22324
22325 @end table
22326
22327 @subsection Example
22328
22329 @itemize
22330 @item
22331 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
22332 @example
22333 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
22334 @end example
22335 @end itemize
22336
22337 @section unsharp_opencl
22338
22339 Sharpen or blur the input video.
22340
22341 It accepts the following parameters:
22342
22343 @table @option
22344 @item luma_msize_x, lx
22345 Set the luma matrix horizontal size.
22346 Range is @code{[1, 23]} and default value is @code{5}.
22347
22348 @item luma_msize_y, ly
22349 Set the luma matrix vertical size.
22350 Range is @code{[1, 23]} and default value is @code{5}.
22351
22352 @item luma_amount, la
22353 Set the luma effect strength.
22354 Range is @code{[-10, 10]} and default value is @code{1.0}.
22355
22356 Negative values will blur the input video, while positive values will
22357 sharpen it, a value of zero will disable the effect.
22358
22359 @item chroma_msize_x, cx
22360 Set the chroma matrix horizontal size.
22361 Range is @code{[1, 23]} and default value is @code{5}.
22362
22363 @item chroma_msize_y, cy
22364 Set the chroma matrix vertical size.
22365 Range is @code{[1, 23]} and default value is @code{5}.
22366
22367 @item chroma_amount, ca
22368 Set the chroma effect strength.
22369 Range is @code{[-10, 10]} and default value is @code{0.0}.
22370
22371 Negative values will blur the input video, while positive values will
22372 sharpen it, a value of zero will disable the effect.
22373
22374 @end table
22375
22376 All parameters are optional and default to the equivalent of the
22377 string '5:5:1.0:5:5:0.0'.
22378
22379 @subsection Examples
22380
22381 @itemize
22382 @item
22383 Apply strong luma sharpen effect:
22384 @example
22385 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
22386 @end example
22387
22388 @item
22389 Apply a strong blur of both luma and chroma parameters:
22390 @example
22391 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
22392 @end example
22393 @end itemize
22394
22395 @section xfade_opencl
22396
22397 Cross fade two videos with custom transition effect by using OpenCL.
22398
22399 It accepts the following options:
22400
22401 @table @option
22402 @item transition
22403 Set one of possible transition effects.
22404
22405 @table @option
22406 @item custom
22407 Select custom transition effect, the actual transition description
22408 will be picked from source and kernel options.
22409
22410 @item fade
22411 @item wipeleft
22412 @item wiperight
22413 @item wipeup
22414 @item wipedown
22415 @item slideleft
22416 @item slideright
22417 @item slideup
22418 @item slidedown
22419
22420 Default transition is fade.
22421 @end table
22422
22423 @item source
22424 OpenCL program source file for custom transition.
22425
22426 @item kernel
22427 Set name of kernel to use for custom transition from program source file.
22428
22429 @item duration
22430 Set duration of video transition.
22431
22432 @item offset
22433 Set time of start of transition relative to first video.
22434 @end table
22435
22436 The program source file must contain a kernel function with the given name,
22437 which will be run once for each plane of the output.  Each run on a plane
22438 gets enqueued as a separate 2D global NDRange with one work-item for each
22439 pixel to be generated.  The global ID offset for each work-item is therefore
22440 the coordinates of a pixel in the destination image.
22441
22442 The kernel function needs to take the following arguments:
22443 @itemize
22444 @item
22445 Destination image, @var{__write_only image2d_t}.
22446
22447 This image will become the output; the kernel should write all of it.
22448
22449 @item
22450 First Source image, @var{__read_only image2d_t}.
22451 Second Source image, @var{__read_only image2d_t}.
22452
22453 These are the most recent images on each input.  The kernel may read from
22454 them to generate the output, but they can't be written to.
22455
22456 @item
22457 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
22458 @end itemize
22459
22460 Example programs:
22461
22462 @itemize
22463 @item
22464 Apply dots curtain transition effect:
22465 @verbatim
22466 __kernel void blend_images(__write_only image2d_t dst,
22467                            __read_only  image2d_t src1,
22468                            __read_only  image2d_t src2,
22469                            float progress)
22470 {
22471     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22472                                CLK_FILTER_LINEAR);
22473     int2  p = (int2)(get_global_id(0), get_global_id(1));
22474     float2 rp = (float2)(get_global_id(0), get_global_id(1));
22475     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
22476     rp = rp / dim;
22477
22478     float2 dots = (float2)(20.0, 20.0);
22479     float2 center = (float2)(0,0);
22480     float2 unused;
22481
22482     float4 val1 = read_imagef(src1, sampler, p);
22483     float4 val2 = read_imagef(src2, sampler, p);
22484     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
22485
22486     write_imagef(dst, p, next ? val1 : val2);
22487 }
22488 @end verbatim
22489
22490 @end itemize
22491
22492 @c man end OPENCL VIDEO FILTERS
22493
22494 @chapter VAAPI Video Filters
22495 @c man begin VAAPI VIDEO FILTERS
22496
22497 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
22498
22499 To enable compilation of these filters you need to configure FFmpeg with
22500 @code{--enable-vaapi}.
22501
22502 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}
22503
22504 @section tonemap_vaapi
22505
22506 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
22507 It maps the dynamic range of HDR10 content to the SDR content.
22508 It currently only accepts HDR10 as input.
22509
22510 It accepts the following parameters:
22511
22512 @table @option
22513 @item format
22514 Specify the output pixel format.
22515
22516 Currently supported formats are:
22517 @table @var
22518 @item p010
22519 @item nv12
22520 @end table
22521
22522 Default is nv12.
22523
22524 @item primaries, p
22525 Set the output color primaries.
22526
22527 Default is same as input.
22528
22529 @item transfer, t
22530 Set the output transfer characteristics.
22531
22532 Default is bt709.
22533
22534 @item matrix, m
22535 Set the output colorspace matrix.
22536
22537 Default is same as input.
22538
22539 @end table
22540
22541 @subsection Example
22542
22543 @itemize
22544 @item
22545 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
22546 @example
22547 tonemap_vaapi=format=p010:t=bt2020-10
22548 @end example
22549 @end itemize
22550
22551 @c man end VAAPI VIDEO FILTERS
22552
22553 @chapter Video Sources
22554 @c man begin VIDEO SOURCES
22555
22556 Below is a description of the currently available video sources.
22557
22558 @section buffer
22559
22560 Buffer video frames, and make them available to the filter chain.
22561
22562 This source is mainly intended for a programmatic use, in particular
22563 through the interface defined in @file{libavfilter/buffersrc.h}.
22564
22565 It accepts the following parameters:
22566
22567 @table @option
22568
22569 @item video_size
22570 Specify the size (width and height) of the buffered video frames. For the
22571 syntax of this option, check the
22572 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22573
22574 @item width
22575 The input video width.
22576
22577 @item height
22578 The input video height.
22579
22580 @item pix_fmt
22581 A string representing the pixel format of the buffered video frames.
22582 It may be a number corresponding to a pixel format, or a pixel format
22583 name.
22584
22585 @item time_base
22586 Specify the timebase assumed by the timestamps of the buffered frames.
22587
22588 @item frame_rate
22589 Specify the frame rate expected for the video stream.
22590
22591 @item pixel_aspect, sar
22592 The sample (pixel) aspect ratio of the input video.
22593
22594 @item sws_param
22595 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
22596 to the filtergraph description to specify swscale flags for automatically
22597 inserted scalers. See @ref{Filtergraph syntax}.
22598
22599 @item hw_frames_ctx
22600 When using a hardware pixel format, this should be a reference to an
22601 AVHWFramesContext describing input frames.
22602 @end table
22603
22604 For example:
22605 @example
22606 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
22607 @end example
22608
22609 will instruct the source to accept video frames with size 320x240 and
22610 with format "yuv410p", assuming 1/24 as the timestamps timebase and
22611 square pixels (1:1 sample aspect ratio).
22612 Since the pixel format with name "yuv410p" corresponds to the number 6
22613 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
22614 this example corresponds to:
22615 @example
22616 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
22617 @end example
22618
22619 Alternatively, the options can be specified as a flat string, but this
22620 syntax is deprecated:
22621
22622 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
22623
22624 @section cellauto
22625
22626 Create a pattern generated by an elementary cellular automaton.
22627
22628 The initial state of the cellular automaton can be defined through the
22629 @option{filename} and @option{pattern} options. If such options are
22630 not specified an initial state is created randomly.
22631
22632 At each new frame a new row in the video is filled with the result of
22633 the cellular automaton next generation. The behavior when the whole
22634 frame is filled is defined by the @option{scroll} option.
22635
22636 This source accepts the following options:
22637
22638 @table @option
22639 @item filename, f
22640 Read the initial cellular automaton state, i.e. the starting row, from
22641 the specified file.
22642 In the file, each non-whitespace character is considered an alive
22643 cell, a newline will terminate the row, and further characters in the
22644 file will be ignored.
22645
22646 @item pattern, p
22647 Read the initial cellular automaton state, i.e. the starting row, from
22648 the specified string.
22649
22650 Each non-whitespace character in the string is considered an alive
22651 cell, a newline will terminate the row, and further characters in the
22652 string will be ignored.
22653
22654 @item rate, r
22655 Set the video rate, that is the number of frames generated per second.
22656 Default is 25.
22657
22658 @item random_fill_ratio, ratio
22659 Set the random fill ratio for the initial cellular automaton row. It
22660 is a floating point number value ranging from 0 to 1, defaults to
22661 1/PHI.
22662
22663 This option is ignored when a file or a pattern is specified.
22664
22665 @item random_seed, seed
22666 Set the seed for filling randomly the initial row, must be an integer
22667 included between 0 and UINT32_MAX. If not specified, or if explicitly
22668 set to -1, the filter will try to use a good random seed on a best
22669 effort basis.
22670
22671 @item rule
22672 Set the cellular automaton rule, it is a number ranging from 0 to 255.
22673 Default value is 110.
22674
22675 @item size, s
22676 Set the size of the output video. For the syntax of this option, check the
22677 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22678
22679 If @option{filename} or @option{pattern} is specified, the size is set
22680 by default to the width of the specified initial state row, and the
22681 height is set to @var{width} * PHI.
22682
22683 If @option{size} is set, it must contain the width of the specified
22684 pattern string, and the specified pattern will be centered in the
22685 larger row.
22686
22687 If a filename or a pattern string is not specified, the size value
22688 defaults to "320x518" (used for a randomly generated initial state).
22689
22690 @item scroll
22691 If set to 1, scroll the output upward when all the rows in the output
22692 have been already filled. If set to 0, the new generated row will be
22693 written over the top row just after the bottom row is filled.
22694 Defaults to 1.
22695
22696 @item start_full, full
22697 If set to 1, completely fill the output with generated rows before
22698 outputting the first frame.
22699 This is the default behavior, for disabling set the value to 0.
22700
22701 @item stitch
22702 If set to 1, stitch the left and right row edges together.
22703 This is the default behavior, for disabling set the value to 0.
22704 @end table
22705
22706 @subsection Examples
22707
22708 @itemize
22709 @item
22710 Read the initial state from @file{pattern}, and specify an output of
22711 size 200x400.
22712 @example
22713 cellauto=f=pattern:s=200x400
22714 @end example
22715
22716 @item
22717 Generate a random initial row with a width of 200 cells, with a fill
22718 ratio of 2/3:
22719 @example
22720 cellauto=ratio=2/3:s=200x200
22721 @end example
22722
22723 @item
22724 Create a pattern generated by rule 18 starting by a single alive cell
22725 centered on an initial row with width 100:
22726 @example
22727 cellauto=p=@@:s=100x400:full=0:rule=18
22728 @end example
22729
22730 @item
22731 Specify a more elaborated initial pattern:
22732 @example
22733 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
22734 @end example
22735
22736 @end itemize
22737
22738 @anchor{coreimagesrc}
22739 @section coreimagesrc
22740 Video source generated on GPU using Apple's CoreImage API on OSX.
22741
22742 This video source is a specialized version of the @ref{coreimage} video filter.
22743 Use a core image generator at the beginning of the applied filterchain to
22744 generate the content.
22745
22746 The coreimagesrc video source accepts the following options:
22747 @table @option
22748 @item list_generators
22749 List all available generators along with all their respective options as well as
22750 possible minimum and maximum values along with the default values.
22751 @example
22752 list_generators=true
22753 @end example
22754
22755 @item size, s
22756 Specify the size of the sourced video. For the syntax of this option, check the
22757 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22758 The default value is @code{320x240}.
22759
22760 @item rate, r
22761 Specify the frame rate of the sourced video, as the number of frames
22762 generated per second. It has to be a string in the format
22763 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22764 number or a valid video frame rate abbreviation. The default value is
22765 "25".
22766
22767 @item sar
22768 Set the sample aspect ratio of the sourced video.
22769
22770 @item duration, d
22771 Set the duration of the sourced video. See
22772 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22773 for the accepted syntax.
22774
22775 If not specified, or the expressed duration is negative, the video is
22776 supposed to be generated forever.
22777 @end table
22778
22779 Additionally, all options of the @ref{coreimage} video filter are accepted.
22780 A complete filterchain can be used for further processing of the
22781 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
22782 and examples for details.
22783
22784 @subsection Examples
22785
22786 @itemize
22787
22788 @item
22789 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
22790 given as complete and escaped command-line for Apple's standard bash shell:
22791 @example
22792 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
22793 @end example
22794 This example is equivalent to the QRCode example of @ref{coreimage} without the
22795 need for a nullsrc video source.
22796 @end itemize
22797
22798
22799 @section gradients
22800 Generate several gradients.
22801
22802 @table @option
22803 @item size, s
22804 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22805 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22806
22807 @item rate, r
22808 Set frame rate, expressed as number of frames per second. Default
22809 value is "25".
22810
22811 @item c0, c1, c2, c3, c4, c5, c6, c7
22812 Set 8 colors. Default values for colors is to pick random one.
22813
22814 @item x0, y0, y0, y1
22815 Set gradient line source and destination points. If negative or out of range, random ones
22816 are picked.
22817
22818 @item nb_colors, n
22819 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
22820
22821 @item seed
22822 Set seed for picking gradient line points.
22823
22824 @item duration, d
22825 Set the duration of the sourced video. See
22826 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22827 for the accepted syntax.
22828
22829 If not specified, or the expressed duration is negative, the video is
22830 supposed to be generated forever.
22831
22832 @item speed
22833 Set speed of gradients rotation.
22834 @end table
22835
22836
22837 @section mandelbrot
22838
22839 Generate a Mandelbrot set fractal, and progressively zoom towards the
22840 point specified with @var{start_x} and @var{start_y}.
22841
22842 This source accepts the following options:
22843
22844 @table @option
22845
22846 @item end_pts
22847 Set the terminal pts value. Default value is 400.
22848
22849 @item end_scale
22850 Set the terminal scale value.
22851 Must be a floating point value. Default value is 0.3.
22852
22853 @item inner
22854 Set the inner coloring mode, that is the algorithm used to draw the
22855 Mandelbrot fractal internal region.
22856
22857 It shall assume one of the following values:
22858 @table @option
22859 @item black
22860 Set black mode.
22861 @item convergence
22862 Show time until convergence.
22863 @item mincol
22864 Set color based on point closest to the origin of the iterations.
22865 @item period
22866 Set period mode.
22867 @end table
22868
22869 Default value is @var{mincol}.
22870
22871 @item bailout
22872 Set the bailout value. Default value is 10.0.
22873
22874 @item maxiter
22875 Set the maximum of iterations performed by the rendering
22876 algorithm. Default value is 7189.
22877
22878 @item outer
22879 Set outer coloring mode.
22880 It shall assume one of following values:
22881 @table @option
22882 @item iteration_count
22883 Set iteration count mode.
22884 @item normalized_iteration_count
22885 set normalized iteration count mode.
22886 @end table
22887 Default value is @var{normalized_iteration_count}.
22888
22889 @item rate, r
22890 Set frame rate, expressed as number of frames per second. Default
22891 value is "25".
22892
22893 @item size, s
22894 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22895 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22896
22897 @item start_scale
22898 Set the initial scale value. Default value is 3.0.
22899
22900 @item start_x
22901 Set the initial x position. Must be a floating point value between
22902 -100 and 100. Default value is -0.743643887037158704752191506114774.
22903
22904 @item start_y
22905 Set the initial y position. Must be a floating point value between
22906 -100 and 100. Default value is -0.131825904205311970493132056385139.
22907 @end table
22908
22909 @section mptestsrc
22910
22911 Generate various test patterns, as generated by the MPlayer test filter.
22912
22913 The size of the generated video is fixed, and is 256x256.
22914 This source is useful in particular for testing encoding features.
22915
22916 This source accepts the following options:
22917
22918 @table @option
22919
22920 @item rate, r
22921 Specify the frame rate of the sourced video, as the number of frames
22922 generated per second. It has to be a string in the format
22923 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22924 number or a valid video frame rate abbreviation. The default value is
22925 "25".
22926
22927 @item duration, d
22928 Set the duration of the sourced video. See
22929 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22930 for the accepted syntax.
22931
22932 If not specified, or the expressed duration is negative, the video is
22933 supposed to be generated forever.
22934
22935 @item test, t
22936
22937 Set the number or the name of the test to perform. Supported tests are:
22938 @table @option
22939 @item dc_luma
22940 @item dc_chroma
22941 @item freq_luma
22942 @item freq_chroma
22943 @item amp_luma
22944 @item amp_chroma
22945 @item cbp
22946 @item mv
22947 @item ring1
22948 @item ring2
22949 @item all
22950
22951 @item max_frames, m
22952 Set the maximum number of frames generated for each test, default value is 30.
22953
22954 @end table
22955
22956 Default value is "all", which will cycle through the list of all tests.
22957 @end table
22958
22959 Some examples:
22960 @example
22961 mptestsrc=t=dc_luma
22962 @end example
22963
22964 will generate a "dc_luma" test pattern.
22965
22966 @section frei0r_src
22967
22968 Provide a frei0r source.
22969
22970 To enable compilation of this filter you need to install the frei0r
22971 header and configure FFmpeg with @code{--enable-frei0r}.
22972
22973 This source accepts the following parameters:
22974
22975 @table @option
22976
22977 @item size
22978 The size of the video to generate. For the syntax of this option, check the
22979 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22980
22981 @item framerate
22982 The framerate of the generated video. It may be a string of the form
22983 @var{num}/@var{den} or a frame rate abbreviation.
22984
22985 @item filter_name
22986 The name to the frei0r source to load. For more information regarding frei0r and
22987 how to set the parameters, read the @ref{frei0r} section in the video filters
22988 documentation.
22989
22990 @item filter_params
22991 A '|'-separated list of parameters to pass to the frei0r source.
22992
22993 @end table
22994
22995 For example, to generate a frei0r partik0l source with size 200x200
22996 and frame rate 10 which is overlaid on the overlay filter main input:
22997 @example
22998 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
22999 @end example
23000
23001 @section life
23002
23003 Generate a life pattern.
23004
23005 This source is based on a generalization of John Conway's life game.
23006
23007 The sourced input represents a life grid, each pixel represents a cell
23008 which can be in one of two possible states, alive or dead. Every cell
23009 interacts with its eight neighbours, which are the cells that are
23010 horizontally, vertically, or diagonally adjacent.
23011
23012 At each interaction the grid evolves according to the adopted rule,
23013 which specifies the number of neighbor alive cells which will make a
23014 cell stay alive or born. The @option{rule} option allows one to specify
23015 the rule to adopt.
23016
23017 This source accepts the following options:
23018
23019 @table @option
23020 @item filename, f
23021 Set the file from which to read the initial grid state. In the file,
23022 each non-whitespace character is considered an alive cell, and newline
23023 is used to delimit the end of each row.
23024
23025 If this option is not specified, the initial grid is generated
23026 randomly.
23027
23028 @item rate, r
23029 Set the video rate, that is the number of frames generated per second.
23030 Default is 25.
23031
23032 @item random_fill_ratio, ratio
23033 Set the random fill ratio for the initial random grid. It is a
23034 floating point number value ranging from 0 to 1, defaults to 1/PHI.
23035 It is ignored when a file is specified.
23036
23037 @item random_seed, seed
23038 Set the seed for filling the initial random grid, must be an integer
23039 included between 0 and UINT32_MAX. If not specified, or if explicitly
23040 set to -1, the filter will try to use a good random seed on a best
23041 effort basis.
23042
23043 @item rule
23044 Set the life rule.
23045
23046 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
23047 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
23048 @var{NS} specifies the number of alive neighbor cells which make a
23049 live cell stay alive, and @var{NB} the number of alive neighbor cells
23050 which make a dead cell to become alive (i.e. to "born").
23051 "s" and "b" can be used in place of "S" and "B", respectively.
23052
23053 Alternatively a rule can be specified by an 18-bits integer. The 9
23054 high order bits are used to encode the next cell state if it is alive
23055 for each number of neighbor alive cells, the low order bits specify
23056 the rule for "borning" new cells. Higher order bits encode for an
23057 higher number of neighbor cells.
23058 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
23059 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
23060
23061 Default value is "S23/B3", which is the original Conway's game of life
23062 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
23063 cells, and will born a new cell if there are three alive cells around
23064 a dead cell.
23065
23066 @item size, s
23067 Set the size of the output video. For the syntax of this option, check the
23068 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23069
23070 If @option{filename} is specified, the size is set by default to the
23071 same size of the input file. If @option{size} is set, it must contain
23072 the size specified in the input file, and the initial grid defined in
23073 that file is centered in the larger resulting area.
23074
23075 If a filename is not specified, the size value defaults to "320x240"
23076 (used for a randomly generated initial grid).
23077
23078 @item stitch
23079 If set to 1, stitch the left and right grid edges together, and the
23080 top and bottom edges also. Defaults to 1.
23081
23082 @item mold
23083 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
23084 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
23085 value from 0 to 255.
23086
23087 @item life_color
23088 Set the color of living (or new born) cells.
23089
23090 @item death_color
23091 Set the color of dead cells. If @option{mold} is set, this is the first color
23092 used to represent a dead cell.
23093
23094 @item mold_color
23095 Set mold color, for definitely dead and moldy cells.
23096
23097 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
23098 ffmpeg-utils manual,ffmpeg-utils}.
23099 @end table
23100
23101 @subsection Examples
23102
23103 @itemize
23104 @item
23105 Read a grid from @file{pattern}, and center it on a grid of size
23106 300x300 pixels:
23107 @example
23108 life=f=pattern:s=300x300
23109 @end example
23110
23111 @item
23112 Generate a random grid of size 200x200, with a fill ratio of 2/3:
23113 @example
23114 life=ratio=2/3:s=200x200
23115 @end example
23116
23117 @item
23118 Specify a custom rule for evolving a randomly generated grid:
23119 @example
23120 life=rule=S14/B34
23121 @end example
23122
23123 @item
23124 Full example with slow death effect (mold) using @command{ffplay}:
23125 @example
23126 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
23127 @end example
23128 @end itemize
23129
23130 @anchor{allrgb}
23131 @anchor{allyuv}
23132 @anchor{color}
23133 @anchor{haldclutsrc}
23134 @anchor{nullsrc}
23135 @anchor{pal75bars}
23136 @anchor{pal100bars}
23137 @anchor{rgbtestsrc}
23138 @anchor{smptebars}
23139 @anchor{smptehdbars}
23140 @anchor{testsrc}
23141 @anchor{testsrc2}
23142 @anchor{yuvtestsrc}
23143 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
23144
23145 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
23146
23147 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
23148
23149 The @code{color} source provides an uniformly colored input.
23150
23151 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
23152 @ref{haldclut} filter.
23153
23154 The @code{nullsrc} source returns unprocessed video frames. It is
23155 mainly useful to be employed in analysis / debugging tools, or as the
23156 source for filters which ignore the input data.
23157
23158 The @code{pal75bars} source generates a color bars pattern, based on
23159 EBU PAL recommendations with 75% color levels.
23160
23161 The @code{pal100bars} source generates a color bars pattern, based on
23162 EBU PAL recommendations with 100% color levels.
23163
23164 The @code{rgbtestsrc} source generates an RGB test pattern useful for
23165 detecting RGB vs BGR issues. You should see a red, green and blue
23166 stripe from top to bottom.
23167
23168 The @code{smptebars} source generates a color bars pattern, based on
23169 the SMPTE Engineering Guideline EG 1-1990.
23170
23171 The @code{smptehdbars} source generates a color bars pattern, based on
23172 the SMPTE RP 219-2002.
23173
23174 The @code{testsrc} source generates a test video pattern, showing a
23175 color pattern, a scrolling gradient and a timestamp. This is mainly
23176 intended for testing purposes.
23177
23178 The @code{testsrc2} source is similar to testsrc, but supports more
23179 pixel formats instead of just @code{rgb24}. This allows using it as an
23180 input for other tests without requiring a format conversion.
23181
23182 The @code{yuvtestsrc} source generates an YUV test pattern. You should
23183 see a y, cb and cr stripe from top to bottom.
23184
23185 The sources accept the following parameters:
23186
23187 @table @option
23188
23189 @item level
23190 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
23191 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
23192 pixels to be used as identity matrix for 3D lookup tables. Each component is
23193 coded on a @code{1/(N*N)} scale.
23194
23195 @item color, c
23196 Specify the color of the source, only available in the @code{color}
23197 source. For the syntax of this option, check the
23198 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
23199
23200 @item size, s
23201 Specify the size of the sourced video. For the syntax of this option, check the
23202 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23203 The default value is @code{320x240}.
23204
23205 This option is not available with the @code{allrgb}, @code{allyuv}, and
23206 @code{haldclutsrc} filters.
23207
23208 @item rate, r
23209 Specify the frame rate of the sourced video, as the number of frames
23210 generated per second. It has to be a string in the format
23211 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23212 number or a valid video frame rate abbreviation. The default value is
23213 "25".
23214
23215 @item duration, d
23216 Set the duration of the sourced video. See
23217 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23218 for the accepted syntax.
23219
23220 If not specified, or the expressed duration is negative, the video is
23221 supposed to be generated forever.
23222
23223 Since the frame rate is used as time base, all frames including the last one
23224 will have their full duration. If the specified duration is not a multiple
23225 of the frame duration, it will be rounded up.
23226
23227 @item sar
23228 Set the sample aspect ratio of the sourced video.
23229
23230 @item alpha
23231 Specify the alpha (opacity) of the background, only available in the
23232 @code{testsrc2} source. The value must be between 0 (fully transparent) and
23233 255 (fully opaque, the default).
23234
23235 @item decimals, n
23236 Set the number of decimals to show in the timestamp, only available in the
23237 @code{testsrc} source.
23238
23239 The displayed timestamp value will correspond to the original
23240 timestamp value multiplied by the power of 10 of the specified
23241 value. Default value is 0.
23242 @end table
23243
23244 @subsection Examples
23245
23246 @itemize
23247 @item
23248 Generate a video with a duration of 5.3 seconds, with size
23249 176x144 and a frame rate of 10 frames per second:
23250 @example
23251 testsrc=duration=5.3:size=qcif:rate=10
23252 @end example
23253
23254 @item
23255 The following graph description will generate a red source
23256 with an opacity of 0.2, with size "qcif" and a frame rate of 10
23257 frames per second:
23258 @example
23259 color=c=red@@0.2:s=qcif:r=10
23260 @end example
23261
23262 @item
23263 If the input content is to be ignored, @code{nullsrc} can be used. The
23264 following command generates noise in the luminance plane by employing
23265 the @code{geq} filter:
23266 @example
23267 nullsrc=s=256x256, geq=random(1)*255:128:128
23268 @end example
23269 @end itemize
23270
23271 @subsection Commands
23272
23273 The @code{color} source supports the following commands:
23274
23275 @table @option
23276 @item c, color
23277 Set the color of the created image. Accepts the same syntax of the
23278 corresponding @option{color} option.
23279 @end table
23280
23281 @section openclsrc
23282
23283 Generate video using an OpenCL program.
23284
23285 @table @option
23286
23287 @item source
23288 OpenCL program source file.
23289
23290 @item kernel
23291 Kernel name in program.
23292
23293 @item size, s
23294 Size of frames to generate.  This must be set.
23295
23296 @item format
23297 Pixel format to use for the generated frames.  This must be set.
23298
23299 @item rate, r
23300 Number of frames generated every second.  Default value is '25'.
23301
23302 @end table
23303
23304 For details of how the program loading works, see the @ref{program_opencl}
23305 filter.
23306
23307 Example programs:
23308
23309 @itemize
23310 @item
23311 Generate a colour ramp by setting pixel values from the position of the pixel
23312 in the output image.  (Note that this will work with all pixel formats, but
23313 the generated output will not be the same.)
23314 @verbatim
23315 __kernel void ramp(__write_only image2d_t dst,
23316                    unsigned int index)
23317 {
23318     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23319
23320     float4 val;
23321     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
23322
23323     write_imagef(dst, loc, val);
23324 }
23325 @end verbatim
23326
23327 @item
23328 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
23329 @verbatim
23330 __kernel void sierpinski_carpet(__write_only image2d_t dst,
23331                                 unsigned int index)
23332 {
23333     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23334
23335     float4 value = 0.0f;
23336     int x = loc.x + index;
23337     int y = loc.y + index;
23338     while (x > 0 || y > 0) {
23339         if (x % 3 == 1 && y % 3 == 1) {
23340             value = 1.0f;
23341             break;
23342         }
23343         x /= 3;
23344         y /= 3;
23345     }
23346
23347     write_imagef(dst, loc, value);
23348 }
23349 @end verbatim
23350
23351 @end itemize
23352
23353 @section sierpinski
23354
23355 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
23356
23357 This source accepts the following options:
23358
23359 @table @option
23360 @item size, s
23361 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23362 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23363
23364 @item rate, r
23365 Set frame rate, expressed as number of frames per second. Default
23366 value is "25".
23367
23368 @item seed
23369 Set seed which is used for random panning.
23370
23371 @item jump
23372 Set max jump for single pan destination. Allowed range is from 1 to 10000.
23373
23374 @item type
23375 Set fractal type, can be default @code{carpet} or @code{triangle}.
23376 @end table
23377
23378 @c man end VIDEO SOURCES
23379
23380 @chapter Video Sinks
23381 @c man begin VIDEO SINKS
23382
23383 Below is a description of the currently available video sinks.
23384
23385 @section buffersink
23386
23387 Buffer video frames, and make them available to the end of the filter
23388 graph.
23389
23390 This sink is mainly intended for programmatic use, in particular
23391 through the interface defined in @file{libavfilter/buffersink.h}
23392 or the options system.
23393
23394 It accepts a pointer to an AVBufferSinkContext structure, which
23395 defines the incoming buffers' formats, to be passed as the opaque
23396 parameter to @code{avfilter_init_filter} for initialization.
23397
23398 @section nullsink
23399
23400 Null video sink: do absolutely nothing with the input video. It is
23401 mainly useful as a template and for use in analysis / debugging
23402 tools.
23403
23404 @c man end VIDEO SINKS
23405
23406 @chapter Multimedia Filters
23407 @c man begin MULTIMEDIA FILTERS
23408
23409 Below is a description of the currently available multimedia filters.
23410
23411 @section abitscope
23412
23413 Convert input audio to a video output, displaying the audio bit scope.
23414
23415 The filter accepts the following options:
23416
23417 @table @option
23418 @item rate, r
23419 Set frame rate, expressed as number of frames per second. Default
23420 value is "25".
23421
23422 @item size, s
23423 Specify the video size for the output. For the syntax of this option, check the
23424 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23425 Default value is @code{1024x256}.
23426
23427 @item colors
23428 Specify list of colors separated by space or by '|' which will be used to
23429 draw channels. Unrecognized or missing colors will be replaced
23430 by white color.
23431 @end table
23432
23433 @section adrawgraph
23434 Draw a graph using input audio metadata.
23435
23436 See @ref{drawgraph}
23437
23438 @section agraphmonitor
23439
23440 See @ref{graphmonitor}.
23441
23442 @section ahistogram
23443
23444 Convert input audio to a video output, displaying the volume histogram.
23445
23446 The filter accepts the following options:
23447
23448 @table @option
23449 @item dmode
23450 Specify how histogram is calculated.
23451
23452 It accepts the following values:
23453 @table @samp
23454 @item single
23455 Use single histogram for all channels.
23456 @item separate
23457 Use separate histogram for each channel.
23458 @end table
23459 Default is @code{single}.
23460
23461 @item rate, r
23462 Set frame rate, expressed as number of frames per second. Default
23463 value is "25".
23464
23465 @item size, s
23466 Specify the video size for the output. For the syntax of this option, check the
23467 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23468 Default value is @code{hd720}.
23469
23470 @item scale
23471 Set display scale.
23472
23473 It accepts the following values:
23474 @table @samp
23475 @item log
23476 logarithmic
23477 @item sqrt
23478 square root
23479 @item cbrt
23480 cubic root
23481 @item lin
23482 linear
23483 @item rlog
23484 reverse logarithmic
23485 @end table
23486 Default is @code{log}.
23487
23488 @item ascale
23489 Set amplitude scale.
23490
23491 It accepts the following values:
23492 @table @samp
23493 @item log
23494 logarithmic
23495 @item lin
23496 linear
23497 @end table
23498 Default is @code{log}.
23499
23500 @item acount
23501 Set how much frames to accumulate in histogram.
23502 Default is 1. Setting this to -1 accumulates all frames.
23503
23504 @item rheight
23505 Set histogram ratio of window height.
23506
23507 @item slide
23508 Set sonogram sliding.
23509
23510 It accepts the following values:
23511 @table @samp
23512 @item replace
23513 replace old rows with new ones.
23514 @item scroll
23515 scroll from top to bottom.
23516 @end table
23517 Default is @code{replace}.
23518 @end table
23519
23520 @section aphasemeter
23521
23522 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
23523 representing mean phase of current audio frame. A video output can also be produced and is
23524 enabled by default. The audio is passed through as first output.
23525
23526 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
23527 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
23528 and @code{1} means channels are in phase.
23529
23530 The filter accepts the following options, all related to its video output:
23531
23532 @table @option
23533 @item rate, r
23534 Set the output frame rate. Default value is @code{25}.
23535
23536 @item size, s
23537 Set the video size for the output. For the syntax of this option, check the
23538 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23539 Default value is @code{800x400}.
23540
23541 @item rc
23542 @item gc
23543 @item bc
23544 Specify the red, green, blue contrast. Default values are @code{2},
23545 @code{7} and @code{1}.
23546 Allowed range is @code{[0, 255]}.
23547
23548 @item mpc
23549 Set color which will be used for drawing median phase. If color is
23550 @code{none} which is default, no median phase value will be drawn.
23551
23552 @item video
23553 Enable video output. Default is enabled.
23554 @end table
23555
23556 @subsection phasing detection
23557
23558 The filter also detects out of phase and mono sequences in stereo streams.
23559 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
23560
23561 The filter accepts the following options for this detection:
23562
23563 @table @option
23564 @item phasing
23565 Enable mono and out of phase detection. Default is disabled.
23566
23567 @item tolerance, t
23568 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
23569 Allowed range is @code{[0, 1]}.
23570
23571 @item angle, a
23572 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
23573 Allowed range is @code{[90, 180]}.
23574
23575 @item duration, d
23576 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
23577 @end table
23578
23579 @subsection Examples
23580
23581 @itemize
23582 @item
23583 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
23584 @example
23585 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
23586 @end example
23587 @end itemize
23588
23589 @section avectorscope
23590
23591 Convert input audio to a video output, representing the audio vector
23592 scope.
23593
23594 The filter is used to measure the difference between channels of stereo
23595 audio stream. A monaural signal, consisting of identical left and right
23596 signal, results in straight vertical line. Any stereo separation is visible
23597 as a deviation from this line, creating a Lissajous figure.
23598 If the straight (or deviation from it) but horizontal line appears this
23599 indicates that the left and right channels are out of phase.
23600
23601 The filter accepts the following options:
23602
23603 @table @option
23604 @item mode, m
23605 Set the vectorscope mode.
23606
23607 Available values are:
23608 @table @samp
23609 @item lissajous
23610 Lissajous rotated by 45 degrees.
23611
23612 @item lissajous_xy
23613 Same as above but not rotated.
23614
23615 @item polar
23616 Shape resembling half of circle.
23617 @end table
23618
23619 Default value is @samp{lissajous}.
23620
23621 @item size, s
23622 Set the video size for the output. For the syntax of this option, check the
23623 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23624 Default value is @code{400x400}.
23625
23626 @item rate, r
23627 Set the output frame rate. Default value is @code{25}.
23628
23629 @item rc
23630 @item gc
23631 @item bc
23632 @item ac
23633 Specify the red, green, blue and alpha contrast. Default values are @code{40},
23634 @code{160}, @code{80} and @code{255}.
23635 Allowed range is @code{[0, 255]}.
23636
23637 @item rf
23638 @item gf
23639 @item bf
23640 @item af
23641 Specify the red, green, blue and alpha fade. Default values are @code{15},
23642 @code{10}, @code{5} and @code{5}.
23643 Allowed range is @code{[0, 255]}.
23644
23645 @item zoom
23646 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
23647 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
23648
23649 @item draw
23650 Set the vectorscope drawing mode.
23651
23652 Available values are:
23653 @table @samp
23654 @item dot
23655 Draw dot for each sample.
23656
23657 @item line
23658 Draw line between previous and current sample.
23659 @end table
23660
23661 Default value is @samp{dot}.
23662
23663 @item scale
23664 Specify amplitude scale of audio samples.
23665
23666 Available values are:
23667 @table @samp
23668 @item lin
23669 Linear.
23670
23671 @item sqrt
23672 Square root.
23673
23674 @item cbrt
23675 Cubic root.
23676
23677 @item log
23678 Logarithmic.
23679 @end table
23680
23681 @item swap
23682 Swap left channel axis with right channel axis.
23683
23684 @item mirror
23685 Mirror axis.
23686
23687 @table @samp
23688 @item none
23689 No mirror.
23690
23691 @item x
23692 Mirror only x axis.
23693
23694 @item y
23695 Mirror only y axis.
23696
23697 @item xy
23698 Mirror both axis.
23699 @end table
23700
23701 @end table
23702
23703 @subsection Examples
23704
23705 @itemize
23706 @item
23707 Complete example using @command{ffplay}:
23708 @example
23709 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
23710              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
23711 @end example
23712 @end itemize
23713
23714 @section bench, abench
23715
23716 Benchmark part of a filtergraph.
23717
23718 The filter accepts the following options:
23719
23720 @table @option
23721 @item action
23722 Start or stop a timer.
23723
23724 Available values are:
23725 @table @samp
23726 @item start
23727 Get the current time, set it as frame metadata (using the key
23728 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
23729
23730 @item stop
23731 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
23732 the input frame metadata to get the time difference. Time difference, average,
23733 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
23734 @code{min}) are then printed. The timestamps are expressed in seconds.
23735 @end table
23736 @end table
23737
23738 @subsection Examples
23739
23740 @itemize
23741 @item
23742 Benchmark @ref{selectivecolor} filter:
23743 @example
23744 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
23745 @end example
23746 @end itemize
23747
23748 @section concat
23749
23750 Concatenate audio and video streams, joining them together one after the
23751 other.
23752
23753 The filter works on segments of synchronized video and audio streams. All
23754 segments must have the same number of streams of each type, and that will
23755 also be the number of streams at output.
23756
23757 The filter accepts the following options:
23758
23759 @table @option
23760
23761 @item n
23762 Set the number of segments. Default is 2.
23763
23764 @item v
23765 Set the number of output video streams, that is also the number of video
23766 streams in each segment. Default is 1.
23767
23768 @item a
23769 Set the number of output audio streams, that is also the number of audio
23770 streams in each segment. Default is 0.
23771
23772 @item unsafe
23773 Activate unsafe mode: do not fail if segments have a different format.
23774
23775 @end table
23776
23777 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
23778 @var{a} audio outputs.
23779
23780 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
23781 segment, in the same order as the outputs, then the inputs for the second
23782 segment, etc.
23783
23784 Related streams do not always have exactly the same duration, for various
23785 reasons including codec frame size or sloppy authoring. For that reason,
23786 related synchronized streams (e.g. a video and its audio track) should be
23787 concatenated at once. The concat filter will use the duration of the longest
23788 stream in each segment (except the last one), and if necessary pad shorter
23789 audio streams with silence.
23790
23791 For this filter to work correctly, all segments must start at timestamp 0.
23792
23793 All corresponding streams must have the same parameters in all segments; the
23794 filtering system will automatically select a common pixel format for video
23795 streams, and a common sample format, sample rate and channel layout for
23796 audio streams, but other settings, such as resolution, must be converted
23797 explicitly by the user.
23798
23799 Different frame rates are acceptable but will result in variable frame rate
23800 at output; be sure to configure the output file to handle it.
23801
23802 @subsection Examples
23803
23804 @itemize
23805 @item
23806 Concatenate an opening, an episode and an ending, all in bilingual version
23807 (video in stream 0, audio in streams 1 and 2):
23808 @example
23809 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
23810   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
23811    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
23812   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
23813 @end example
23814
23815 @item
23816 Concatenate two parts, handling audio and video separately, using the
23817 (a)movie sources, and adjusting the resolution:
23818 @example
23819 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
23820 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
23821 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
23822 @end example
23823 Note that a desync will happen at the stitch if the audio and video streams
23824 do not have exactly the same duration in the first file.
23825
23826 @end itemize
23827
23828 @subsection Commands
23829
23830 This filter supports the following commands:
23831 @table @option
23832 @item next
23833 Close the current segment and step to the next one
23834 @end table
23835
23836 @anchor{ebur128}
23837 @section ebur128
23838
23839 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
23840 level. By default, it logs a message at a frequency of 10Hz with the
23841 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
23842 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
23843
23844 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
23845 sample format is double-precision floating point. The input stream will be converted to
23846 this specification, if needed. Users may need to insert aformat and/or aresample filters
23847 after this filter to obtain the original parameters.
23848
23849 The filter also has a video output (see the @var{video} option) with a real
23850 time graph to observe the loudness evolution. The graphic contains the logged
23851 message mentioned above, so it is not printed anymore when this option is set,
23852 unless the verbose logging is set. The main graphing area contains the
23853 short-term loudness (3 seconds of analysis), and the gauge on the right is for
23854 the momentary loudness (400 milliseconds), but can optionally be configured
23855 to instead display short-term loudness (see @var{gauge}).
23856
23857 The green area marks a  +/- 1LU target range around the target loudness
23858 (-23LUFS by default, unless modified through @var{target}).
23859
23860 More information about the Loudness Recommendation EBU R128 on
23861 @url{http://tech.ebu.ch/loudness}.
23862
23863 The filter accepts the following options:
23864
23865 @table @option
23866
23867 @item video
23868 Activate the video output. The audio stream is passed unchanged whether this
23869 option is set or no. The video stream will be the first output stream if
23870 activated. Default is @code{0}.
23871
23872 @item size
23873 Set the video size. This option is for video only. For the syntax of this
23874 option, check the
23875 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23876 Default and minimum resolution is @code{640x480}.
23877
23878 @item meter
23879 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
23880 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
23881 other integer value between this range is allowed.
23882
23883 @item metadata
23884 Set metadata injection. If set to @code{1}, the audio input will be segmented
23885 into 100ms output frames, each of them containing various loudness information
23886 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
23887
23888 Default is @code{0}.
23889
23890 @item framelog
23891 Force the frame logging level.
23892
23893 Available values are:
23894 @table @samp
23895 @item info
23896 information logging level
23897 @item verbose
23898 verbose logging level
23899 @end table
23900
23901 By default, the logging level is set to @var{info}. If the @option{video} or
23902 the @option{metadata} options are set, it switches to @var{verbose}.
23903
23904 @item peak
23905 Set peak mode(s).
23906
23907 Available modes can be cumulated (the option is a @code{flag} type). Possible
23908 values are:
23909 @table @samp
23910 @item none
23911 Disable any peak mode (default).
23912 @item sample
23913 Enable sample-peak mode.
23914
23915 Simple peak mode looking for the higher sample value. It logs a message
23916 for sample-peak (identified by @code{SPK}).
23917 @item true
23918 Enable true-peak mode.
23919
23920 If enabled, the peak lookup is done on an over-sampled version of the input
23921 stream for better peak accuracy. It logs a message for true-peak.
23922 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
23923 This mode requires a build with @code{libswresample}.
23924 @end table
23925
23926 @item dualmono
23927 Treat mono input files as "dual mono". If a mono file is intended for playback
23928 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
23929 If set to @code{true}, this option will compensate for this effect.
23930 Multi-channel input files are not affected by this option.
23931
23932 @item panlaw
23933 Set a specific pan law to be used for the measurement of dual mono files.
23934 This parameter is optional, and has a default value of -3.01dB.
23935
23936 @item target
23937 Set a specific target level (in LUFS) used as relative zero in the visualization.
23938 This parameter is optional and has a default value of -23LUFS as specified
23939 by EBU R128. However, material published online may prefer a level of -16LUFS
23940 (e.g. for use with podcasts or video platforms).
23941
23942 @item gauge
23943 Set the value displayed by the gauge. Valid values are @code{momentary} and s
23944 @code{shortterm}. By default the momentary value will be used, but in certain
23945 scenarios it may be more useful to observe the short term value instead (e.g.
23946 live mixing).
23947
23948 @item scale
23949 Sets the display scale for the loudness. Valid parameters are @code{absolute}
23950 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
23951 video output, not the summary or continuous log output.
23952 @end table
23953
23954 @subsection Examples
23955
23956 @itemize
23957 @item
23958 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
23959 @example
23960 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
23961 @end example
23962
23963 @item
23964 Run an analysis with @command{ffmpeg}:
23965 @example
23966 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
23967 @end example
23968 @end itemize
23969
23970 @section interleave, ainterleave
23971
23972 Temporally interleave frames from several inputs.
23973
23974 @code{interleave} works with video inputs, @code{ainterleave} with audio.
23975
23976 These filters read frames from several inputs and send the oldest
23977 queued frame to the output.
23978
23979 Input streams must have well defined, monotonically increasing frame
23980 timestamp values.
23981
23982 In order to submit one frame to output, these filters need to enqueue
23983 at least one frame for each input, so they cannot work in case one
23984 input is not yet terminated and will not receive incoming frames.
23985
23986 For example consider the case when one input is a @code{select} filter
23987 which always drops input frames. The @code{interleave} filter will keep
23988 reading from that input, but it will never be able to send new frames
23989 to output until the input sends an end-of-stream signal.
23990
23991 Also, depending on inputs synchronization, the filters will drop
23992 frames in case one input receives more frames than the other ones, and
23993 the queue is already filled.
23994
23995 These filters accept the following options:
23996
23997 @table @option
23998 @item nb_inputs, n
23999 Set the number of different inputs, it is 2 by default.
24000
24001 @item duration
24002 How to determine the end-of-stream.
24003
24004 @table @option
24005 @item longest
24006 The duration of the longest input. (default)
24007
24008 @item shortest
24009 The duration of the shortest input.
24010
24011 @item first
24012 The duration of the first input.
24013 @end table
24014
24015 @end table
24016
24017 @subsection Examples
24018
24019 @itemize
24020 @item
24021 Interleave frames belonging to different streams using @command{ffmpeg}:
24022 @example
24023 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
24024 @end example
24025
24026 @item
24027 Add flickering blur effect:
24028 @example
24029 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
24030 @end example
24031 @end itemize
24032
24033 @section metadata, ametadata
24034
24035 Manipulate frame metadata.
24036
24037 This filter accepts the following options:
24038
24039 @table @option
24040 @item mode
24041 Set mode of operation of the filter.
24042
24043 Can be one of the following:
24044
24045 @table @samp
24046 @item select
24047 If both @code{value} and @code{key} is set, select frames
24048 which have such metadata. If only @code{key} is set, select
24049 every frame that has such key in metadata.
24050
24051 @item add
24052 Add new metadata @code{key} and @code{value}. If key is already available
24053 do nothing.
24054
24055 @item modify
24056 Modify value of already present key.
24057
24058 @item delete
24059 If @code{value} is set, delete only keys that have such value.
24060 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
24061 the frame.
24062
24063 @item print
24064 Print key and its value if metadata was found. If @code{key} is not set print all
24065 metadata values available in frame.
24066 @end table
24067
24068 @item key
24069 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
24070
24071 @item value
24072 Set metadata value which will be used. This option is mandatory for
24073 @code{modify} and @code{add} mode.
24074
24075 @item function
24076 Which function to use when comparing metadata value and @code{value}.
24077
24078 Can be one of following:
24079
24080 @table @samp
24081 @item same_str
24082 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
24083
24084 @item starts_with
24085 Values are interpreted as strings, returns true if metadata value starts with
24086 the @code{value} option string.
24087
24088 @item less
24089 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
24090
24091 @item equal
24092 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
24093
24094 @item greater
24095 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
24096
24097 @item expr
24098 Values are interpreted as floats, returns true if expression from option @code{expr}
24099 evaluates to true.
24100
24101 @item ends_with
24102 Values are interpreted as strings, returns true if metadata value ends with
24103 the @code{value} option string.
24104 @end table
24105
24106 @item expr
24107 Set expression which is used when @code{function} is set to @code{expr}.
24108 The expression is evaluated through the eval API and can contain the following
24109 constants:
24110
24111 @table @option
24112 @item VALUE1
24113 Float representation of @code{value} from metadata key.
24114
24115 @item VALUE2
24116 Float representation of @code{value} as supplied by user in @code{value} option.
24117 @end table
24118
24119 @item file
24120 If specified in @code{print} mode, output is written to the named file. Instead of
24121 plain filename any writable url can be specified. Filename ``-'' is a shorthand
24122 for standard output. If @code{file} option is not set, output is written to the log
24123 with AV_LOG_INFO loglevel.
24124
24125 @item direct
24126 Reduces buffering in print mode when output is written to a URL set using @var{file}.
24127
24128 @end table
24129
24130 @subsection Examples
24131
24132 @itemize
24133 @item
24134 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
24135 between 0 and 1.
24136 @example
24137 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
24138 @end example
24139 @item
24140 Print silencedetect output to file @file{metadata.txt}.
24141 @example
24142 silencedetect,ametadata=mode=print:file=metadata.txt
24143 @end example
24144 @item
24145 Direct all metadata to a pipe with file descriptor 4.
24146 @example
24147 metadata=mode=print:file='pipe\:4'
24148 @end example
24149 @end itemize
24150
24151 @section perms, aperms
24152
24153 Set read/write permissions for the output frames.
24154
24155 These filters are mainly aimed at developers to test direct path in the
24156 following filter in the filtergraph.
24157
24158 The filters accept the following options:
24159
24160 @table @option
24161 @item mode
24162 Select the permissions mode.
24163
24164 It accepts the following values:
24165 @table @samp
24166 @item none
24167 Do nothing. This is the default.
24168 @item ro
24169 Set all the output frames read-only.
24170 @item rw
24171 Set all the output frames directly writable.
24172 @item toggle
24173 Make the frame read-only if writable, and writable if read-only.
24174 @item random
24175 Set each output frame read-only or writable randomly.
24176 @end table
24177
24178 @item seed
24179 Set the seed for the @var{random} mode, must be an integer included between
24180 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
24181 @code{-1}, the filter will try to use a good random seed on a best effort
24182 basis.
24183 @end table
24184
24185 Note: in case of auto-inserted filter between the permission filter and the
24186 following one, the permission might not be received as expected in that
24187 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
24188 perms/aperms filter can avoid this problem.
24189
24190 @section realtime, arealtime
24191
24192 Slow down filtering to match real time approximately.
24193
24194 These filters will pause the filtering for a variable amount of time to
24195 match the output rate with the input timestamps.
24196 They are similar to the @option{re} option to @code{ffmpeg}.
24197
24198 They accept the following options:
24199
24200 @table @option
24201 @item limit
24202 Time limit for the pauses. Any pause longer than that will be considered
24203 a timestamp discontinuity and reset the timer. Default is 2 seconds.
24204 @item speed
24205 Speed factor for processing. The value must be a float larger than zero.
24206 Values larger than 1.0 will result in faster than realtime processing,
24207 smaller will slow processing down. The @var{limit} is automatically adapted
24208 accordingly. Default is 1.0.
24209
24210 A processing speed faster than what is possible without these filters cannot
24211 be achieved.
24212 @end table
24213
24214 @anchor{select}
24215 @section select, aselect
24216
24217 Select frames to pass in output.
24218
24219 This filter accepts the following options:
24220
24221 @table @option
24222
24223 @item expr, e
24224 Set expression, which is evaluated for each input frame.
24225
24226 If the expression is evaluated to zero, the frame is discarded.
24227
24228 If the evaluation result is negative or NaN, the frame is sent to the
24229 first output; otherwise it is sent to the output with index
24230 @code{ceil(val)-1}, assuming that the input index starts from 0.
24231
24232 For example a value of @code{1.2} corresponds to the output with index
24233 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
24234
24235 @item outputs, n
24236 Set the number of outputs. The output to which to send the selected
24237 frame is based on the result of the evaluation. Default value is 1.
24238 @end table
24239
24240 The expression can contain the following constants:
24241
24242 @table @option
24243 @item n
24244 The (sequential) number of the filtered frame, starting from 0.
24245
24246 @item selected_n
24247 The (sequential) number of the selected frame, starting from 0.
24248
24249 @item prev_selected_n
24250 The sequential number of the last selected frame. It's NAN if undefined.
24251
24252 @item TB
24253 The timebase of the input timestamps.
24254
24255 @item pts
24256 The PTS (Presentation TimeStamp) of the filtered video frame,
24257 expressed in @var{TB} units. It's NAN if undefined.
24258
24259 @item t
24260 The PTS of the filtered video frame,
24261 expressed in seconds. It's NAN if undefined.
24262
24263 @item prev_pts
24264 The PTS of the previously filtered video frame. It's NAN if undefined.
24265
24266 @item prev_selected_pts
24267 The PTS of the last previously filtered video frame. It's NAN if undefined.
24268
24269 @item prev_selected_t
24270 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
24271
24272 @item start_pts
24273 The PTS of the first video frame in the video. It's NAN if undefined.
24274
24275 @item start_t
24276 The time of the first video frame in the video. It's NAN if undefined.
24277
24278 @item pict_type @emph{(video only)}
24279 The type of the filtered frame. It can assume one of the following
24280 values:
24281 @table @option
24282 @item I
24283 @item P
24284 @item B
24285 @item S
24286 @item SI
24287 @item SP
24288 @item BI
24289 @end table
24290
24291 @item interlace_type @emph{(video only)}
24292 The frame interlace type. It can assume one of the following values:
24293 @table @option
24294 @item PROGRESSIVE
24295 The frame is progressive (not interlaced).
24296 @item TOPFIRST
24297 The frame is top-field-first.
24298 @item BOTTOMFIRST
24299 The frame is bottom-field-first.
24300 @end table
24301
24302 @item consumed_sample_n @emph{(audio only)}
24303 the number of selected samples before the current frame
24304
24305 @item samples_n @emph{(audio only)}
24306 the number of samples in the current frame
24307
24308 @item sample_rate @emph{(audio only)}
24309 the input sample rate
24310
24311 @item key
24312 This is 1 if the filtered frame is a key-frame, 0 otherwise.
24313
24314 @item pos
24315 the position in the file of the filtered frame, -1 if the information
24316 is not available (e.g. for synthetic video)
24317
24318 @item scene @emph{(video only)}
24319 value between 0 and 1 to indicate a new scene; a low value reflects a low
24320 probability for the current frame to introduce a new scene, while a higher
24321 value means the current frame is more likely to be one (see the example below)
24322
24323 @item concatdec_select
24324 The concat demuxer can select only part of a concat input file by setting an
24325 inpoint and an outpoint, but the output packets may not be entirely contained
24326 in the selected interval. By using this variable, it is possible to skip frames
24327 generated by the concat demuxer which are not exactly contained in the selected
24328 interval.
24329
24330 This works by comparing the frame pts against the @var{lavf.concat.start_time}
24331 and the @var{lavf.concat.duration} packet metadata values which are also
24332 present in the decoded frames.
24333
24334 The @var{concatdec_select} variable is -1 if the frame pts is at least
24335 start_time and either the duration metadata is missing or the frame pts is less
24336 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
24337 missing.
24338
24339 That basically means that an input frame is selected if its pts is within the
24340 interval set by the concat demuxer.
24341
24342 @end table
24343
24344 The default value of the select expression is "1".
24345
24346 @subsection Examples
24347
24348 @itemize
24349 @item
24350 Select all frames in input:
24351 @example
24352 select
24353 @end example
24354
24355 The example above is the same as:
24356 @example
24357 select=1
24358 @end example
24359
24360 @item
24361 Skip all frames:
24362 @example
24363 select=0
24364 @end example
24365
24366 @item
24367 Select only I-frames:
24368 @example
24369 select='eq(pict_type\,I)'
24370 @end example
24371
24372 @item
24373 Select one frame every 100:
24374 @example
24375 select='not(mod(n\,100))'
24376 @end example
24377
24378 @item
24379 Select only frames contained in the 10-20 time interval:
24380 @example
24381 select=between(t\,10\,20)
24382 @end example
24383
24384 @item
24385 Select only I-frames contained in the 10-20 time interval:
24386 @example
24387 select=between(t\,10\,20)*eq(pict_type\,I)
24388 @end example
24389
24390 @item
24391 Select frames with a minimum distance of 10 seconds:
24392 @example
24393 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
24394 @end example
24395
24396 @item
24397 Use aselect to select only audio frames with samples number > 100:
24398 @example
24399 aselect='gt(samples_n\,100)'
24400 @end example
24401
24402 @item
24403 Create a mosaic of the first scenes:
24404 @example
24405 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
24406 @end example
24407
24408 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
24409 choice.
24410
24411 @item
24412 Send even and odd frames to separate outputs, and compose them:
24413 @example
24414 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
24415 @end example
24416
24417 @item
24418 Select useful frames from an ffconcat file which is using inpoints and
24419 outpoints but where the source files are not intra frame only.
24420 @example
24421 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
24422 @end example
24423 @end itemize
24424
24425 @section sendcmd, asendcmd
24426
24427 Send commands to filters in the filtergraph.
24428
24429 These filters read commands to be sent to other filters in the
24430 filtergraph.
24431
24432 @code{sendcmd} must be inserted between two video filters,
24433 @code{asendcmd} must be inserted between two audio filters, but apart
24434 from that they act the same way.
24435
24436 The specification of commands can be provided in the filter arguments
24437 with the @var{commands} option, or in a file specified by the
24438 @var{filename} option.
24439
24440 These filters accept the following options:
24441 @table @option
24442 @item commands, c
24443 Set the commands to be read and sent to the other filters.
24444 @item filename, f
24445 Set the filename of the commands to be read and sent to the other
24446 filters.
24447 @end table
24448
24449 @subsection Commands syntax
24450
24451 A commands description consists of a sequence of interval
24452 specifications, comprising a list of commands to be executed when a
24453 particular event related to that interval occurs. The occurring event
24454 is typically the current frame time entering or leaving a given time
24455 interval.
24456
24457 An interval is specified by the following syntax:
24458 @example
24459 @var{START}[-@var{END}] @var{COMMANDS};
24460 @end example
24461
24462 The time interval is specified by the @var{START} and @var{END} times.
24463 @var{END} is optional and defaults to the maximum time.
24464
24465 The current frame time is considered within the specified interval if
24466 it is included in the interval [@var{START}, @var{END}), that is when
24467 the time is greater or equal to @var{START} and is lesser than
24468 @var{END}.
24469
24470 @var{COMMANDS} consists of a sequence of one or more command
24471 specifications, separated by ",", relating to that interval.  The
24472 syntax of a command specification is given by:
24473 @example
24474 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
24475 @end example
24476
24477 @var{FLAGS} is optional and specifies the type of events relating to
24478 the time interval which enable sending the specified command, and must
24479 be a non-null sequence of identifier flags separated by "+" or "|" and
24480 enclosed between "[" and "]".
24481
24482 The following flags are recognized:
24483 @table @option
24484 @item enter
24485 The command is sent when the current frame timestamp enters the
24486 specified interval. In other words, the command is sent when the
24487 previous frame timestamp was not in the given interval, and the
24488 current is.
24489
24490 @item leave
24491 The command is sent when the current frame timestamp leaves the
24492 specified interval. In other words, the command is sent when the
24493 previous frame timestamp was in the given interval, and the
24494 current is not.
24495
24496 @item expr
24497 The command @var{ARG} is interpreted as expression and result of
24498 expression is passed as @var{ARG}.
24499
24500 The expression is evaluated through the eval API and can contain the following
24501 constants:
24502
24503 @table @option
24504 @item POS
24505 Original position in the file of the frame, or undefined if undefined
24506 for the current frame.
24507
24508 @item PTS
24509 The presentation timestamp in input.
24510
24511 @item N
24512 The count of the input frame for video or audio, starting from 0.
24513
24514 @item T
24515 The time in seconds of the current frame.
24516
24517 @item TS
24518 The start time in seconds of the current command interval.
24519
24520 @item TE
24521 The end time in seconds of the current command interval.
24522
24523 @item TI
24524 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
24525 @end table
24526
24527 @end table
24528
24529 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
24530 assumed.
24531
24532 @var{TARGET} specifies the target of the command, usually the name of
24533 the filter class or a specific filter instance name.
24534
24535 @var{COMMAND} specifies the name of the command for the target filter.
24536
24537 @var{ARG} is optional and specifies the optional list of argument for
24538 the given @var{COMMAND}.
24539
24540 Between one interval specification and another, whitespaces, or
24541 sequences of characters starting with @code{#} until the end of line,
24542 are ignored and can be used to annotate comments.
24543
24544 A simplified BNF description of the commands specification syntax
24545 follows:
24546 @example
24547 @var{COMMAND_FLAG}  ::= "enter" | "leave"
24548 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
24549 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
24550 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
24551 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
24552 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
24553 @end example
24554
24555 @subsection Examples
24556
24557 @itemize
24558 @item
24559 Specify audio tempo change at second 4:
24560 @example
24561 asendcmd=c='4.0 atempo tempo 1.5',atempo
24562 @end example
24563
24564 @item
24565 Target a specific filter instance:
24566 @example
24567 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
24568 @end example
24569
24570 @item
24571 Specify a list of drawtext and hue commands in a file.
24572 @example
24573 # show text in the interval 5-10
24574 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
24575          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
24576
24577 # desaturate the image in the interval 15-20
24578 15.0-20.0 [enter] hue s 0,
24579           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
24580           [leave] hue s 1,
24581           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
24582
24583 # apply an exponential saturation fade-out effect, starting from time 25
24584 25 [enter] hue s exp(25-t)
24585 @end example
24586
24587 A filtergraph allowing to read and process the above command list
24588 stored in a file @file{test.cmd}, can be specified with:
24589 @example
24590 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
24591 @end example
24592 @end itemize
24593
24594 @anchor{setpts}
24595 @section setpts, asetpts
24596
24597 Change the PTS (presentation timestamp) of the input frames.
24598
24599 @code{setpts} works on video frames, @code{asetpts} on audio frames.
24600
24601 This filter accepts the following options:
24602
24603 @table @option
24604
24605 @item expr
24606 The expression which is evaluated for each frame to construct its timestamp.
24607
24608 @end table
24609
24610 The expression is evaluated through the eval API and can contain the following
24611 constants:
24612
24613 @table @option
24614 @item FRAME_RATE, FR
24615 frame rate, only defined for constant frame-rate video
24616
24617 @item PTS
24618 The presentation timestamp in input
24619
24620 @item N
24621 The count of the input frame for video or the number of consumed samples,
24622 not including the current frame for audio, starting from 0.
24623
24624 @item NB_CONSUMED_SAMPLES
24625 The number of consumed samples, not including the current frame (only
24626 audio)
24627
24628 @item NB_SAMPLES, S
24629 The number of samples in the current frame (only audio)
24630
24631 @item SAMPLE_RATE, SR
24632 The audio sample rate.
24633
24634 @item STARTPTS
24635 The PTS of the first frame.
24636
24637 @item STARTT
24638 the time in seconds of the first frame
24639
24640 @item INTERLACED
24641 State whether the current frame is interlaced.
24642
24643 @item T
24644 the time in seconds of the current frame
24645
24646 @item POS
24647 original position in the file of the frame, or undefined if undefined
24648 for the current frame
24649
24650 @item PREV_INPTS
24651 The previous input PTS.
24652
24653 @item PREV_INT
24654 previous input time in seconds
24655
24656 @item PREV_OUTPTS
24657 The previous output PTS.
24658
24659 @item PREV_OUTT
24660 previous output time in seconds
24661
24662 @item RTCTIME
24663 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
24664 instead.
24665
24666 @item RTCSTART
24667 The wallclock (RTC) time at the start of the movie in microseconds.
24668
24669 @item TB
24670 The timebase of the input timestamps.
24671
24672 @end table
24673
24674 @subsection Examples
24675
24676 @itemize
24677 @item
24678 Start counting PTS from zero
24679 @example
24680 setpts=PTS-STARTPTS
24681 @end example
24682
24683 @item
24684 Apply fast motion effect:
24685 @example
24686 setpts=0.5*PTS
24687 @end example
24688
24689 @item
24690 Apply slow motion effect:
24691 @example
24692 setpts=2.0*PTS
24693 @end example
24694
24695 @item
24696 Set fixed rate of 25 frames per second:
24697 @example
24698 setpts=N/(25*TB)
24699 @end example
24700
24701 @item
24702 Set fixed rate 25 fps with some jitter:
24703 @example
24704 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
24705 @end example
24706
24707 @item
24708 Apply an offset of 10 seconds to the input PTS:
24709 @example
24710 setpts=PTS+10/TB
24711 @end example
24712
24713 @item
24714 Generate timestamps from a "live source" and rebase onto the current timebase:
24715 @example
24716 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
24717 @end example
24718
24719 @item
24720 Generate timestamps by counting samples:
24721 @example
24722 asetpts=N/SR/TB
24723 @end example
24724
24725 @end itemize
24726
24727 @section setrange
24728
24729 Force color range for the output video frame.
24730
24731 The @code{setrange} filter marks the color range property for the
24732 output frames. It does not change the input frame, but only sets the
24733 corresponding property, which affects how the frame is treated by
24734 following filters.
24735
24736 The filter accepts the following options:
24737
24738 @table @option
24739
24740 @item range
24741 Available values are:
24742
24743 @table @samp
24744 @item auto
24745 Keep the same color range property.
24746
24747 @item unspecified, unknown
24748 Set the color range as unspecified.
24749
24750 @item limited, tv, mpeg
24751 Set the color range as limited.
24752
24753 @item full, pc, jpeg
24754 Set the color range as full.
24755 @end table
24756 @end table
24757
24758 @section settb, asettb
24759
24760 Set the timebase to use for the output frames timestamps.
24761 It is mainly useful for testing timebase configuration.
24762
24763 It accepts the following parameters:
24764
24765 @table @option
24766
24767 @item expr, tb
24768 The expression which is evaluated into the output timebase.
24769
24770 @end table
24771
24772 The value for @option{tb} is an arithmetic expression representing a
24773 rational. The expression can contain the constants "AVTB" (the default
24774 timebase), "intb" (the input timebase) and "sr" (the sample rate,
24775 audio only). Default value is "intb".
24776
24777 @subsection Examples
24778
24779 @itemize
24780 @item
24781 Set the timebase to 1/25:
24782 @example
24783 settb=expr=1/25
24784 @end example
24785
24786 @item
24787 Set the timebase to 1/10:
24788 @example
24789 settb=expr=0.1
24790 @end example
24791
24792 @item
24793 Set the timebase to 1001/1000:
24794 @example
24795 settb=1+0.001
24796 @end example
24797
24798 @item
24799 Set the timebase to 2*intb:
24800 @example
24801 settb=2*intb
24802 @end example
24803
24804 @item
24805 Set the default timebase value:
24806 @example
24807 settb=AVTB
24808 @end example
24809 @end itemize
24810
24811 @section showcqt
24812 Convert input audio to a video output representing frequency spectrum
24813 logarithmically using Brown-Puckette constant Q transform algorithm with
24814 direct frequency domain coefficient calculation (but the transform itself
24815 is not really constant Q, instead the Q factor is actually variable/clamped),
24816 with musical tone scale, from E0 to D#10.
24817
24818 The filter accepts the following options:
24819
24820 @table @option
24821 @item size, s
24822 Specify the video size for the output. It must be even. For the syntax of this option,
24823 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24824 Default value is @code{1920x1080}.
24825
24826 @item fps, rate, r
24827 Set the output frame rate. Default value is @code{25}.
24828
24829 @item bar_h
24830 Set the bargraph height. It must be even. Default value is @code{-1} which
24831 computes the bargraph height automatically.
24832
24833 @item axis_h
24834 Set the axis height. It must be even. Default value is @code{-1} which computes
24835 the axis height automatically.
24836
24837 @item sono_h
24838 Set the sonogram height. It must be even. Default value is @code{-1} which
24839 computes the sonogram height automatically.
24840
24841 @item fullhd
24842 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
24843 instead. Default value is @code{1}.
24844
24845 @item sono_v, volume
24846 Specify the sonogram volume expression. It can contain variables:
24847 @table @option
24848 @item bar_v
24849 the @var{bar_v} evaluated expression
24850 @item frequency, freq, f
24851 the frequency where it is evaluated
24852 @item timeclamp, tc
24853 the value of @var{timeclamp} option
24854 @end table
24855 and functions:
24856 @table @option
24857 @item a_weighting(f)
24858 A-weighting of equal loudness
24859 @item b_weighting(f)
24860 B-weighting of equal loudness
24861 @item c_weighting(f)
24862 C-weighting of equal loudness.
24863 @end table
24864 Default value is @code{16}.
24865
24866 @item bar_v, volume2
24867 Specify the bargraph volume expression. It can contain variables:
24868 @table @option
24869 @item sono_v
24870 the @var{sono_v} evaluated expression
24871 @item frequency, freq, f
24872 the frequency where it is evaluated
24873 @item timeclamp, tc
24874 the value of @var{timeclamp} option
24875 @end table
24876 and functions:
24877 @table @option
24878 @item a_weighting(f)
24879 A-weighting of equal loudness
24880 @item b_weighting(f)
24881 B-weighting of equal loudness
24882 @item c_weighting(f)
24883 C-weighting of equal loudness.
24884 @end table
24885 Default value is @code{sono_v}.
24886
24887 @item sono_g, gamma
24888 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
24889 higher gamma makes the spectrum having more range. Default value is @code{3}.
24890 Acceptable range is @code{[1, 7]}.
24891
24892 @item bar_g, gamma2
24893 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
24894 @code{[1, 7]}.
24895
24896 @item bar_t
24897 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
24898 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
24899
24900 @item timeclamp, tc
24901 Specify the transform timeclamp. At low frequency, there is trade-off between
24902 accuracy in time domain and frequency domain. If timeclamp is lower,
24903 event in time domain is represented more accurately (such as fast bass drum),
24904 otherwise event in frequency domain is represented more accurately
24905 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
24906
24907 @item attack
24908 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
24909 limits future samples by applying asymmetric windowing in time domain, useful
24910 when low latency is required. Accepted range is @code{[0, 1]}.
24911
24912 @item basefreq
24913 Specify the transform base frequency. Default value is @code{20.01523126408007475},
24914 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
24915
24916 @item endfreq
24917 Specify the transform end frequency. Default value is @code{20495.59681441799654},
24918 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
24919
24920 @item coeffclamp
24921 This option is deprecated and ignored.
24922
24923 @item tlength
24924 Specify the transform length in time domain. Use this option to control accuracy
24925 trade-off between time domain and frequency domain at every frequency sample.
24926 It can contain variables:
24927 @table @option
24928 @item frequency, freq, f
24929 the frequency where it is evaluated
24930 @item timeclamp, tc
24931 the value of @var{timeclamp} option.
24932 @end table
24933 Default value is @code{384*tc/(384+tc*f)}.
24934
24935 @item count
24936 Specify the transform count for every video frame. Default value is @code{6}.
24937 Acceptable range is @code{[1, 30]}.
24938
24939 @item fcount
24940 Specify the transform count for every single pixel. Default value is @code{0},
24941 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
24942
24943 @item fontfile
24944 Specify font file for use with freetype to draw the axis. If not specified,
24945 use embedded font. Note that drawing with font file or embedded font is not
24946 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
24947 option instead.
24948
24949 @item font
24950 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
24951 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
24952 escaping.
24953
24954 @item fontcolor
24955 Specify font color expression. This is arithmetic expression that should return
24956 integer value 0xRRGGBB. It can contain variables:
24957 @table @option
24958 @item frequency, freq, f
24959 the frequency where it is evaluated
24960 @item timeclamp, tc
24961 the value of @var{timeclamp} option
24962 @end table
24963 and functions:
24964 @table @option
24965 @item midi(f)
24966 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
24967 @item r(x), g(x), b(x)
24968 red, green, and blue value of intensity x.
24969 @end table
24970 Default value is @code{st(0, (midi(f)-59.5)/12);
24971 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
24972 r(1-ld(1)) + b(ld(1))}.
24973
24974 @item axisfile
24975 Specify image file to draw the axis. This option override @var{fontfile} and
24976 @var{fontcolor} option.
24977
24978 @item axis, text
24979 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
24980 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
24981 Default value is @code{1}.
24982
24983 @item csp
24984 Set colorspace. The accepted values are:
24985 @table @samp
24986 @item unspecified
24987 Unspecified (default)
24988
24989 @item bt709
24990 BT.709
24991
24992 @item fcc
24993 FCC
24994
24995 @item bt470bg
24996 BT.470BG or BT.601-6 625
24997
24998 @item smpte170m
24999 SMPTE-170M or BT.601-6 525
25000
25001 @item smpte240m
25002 SMPTE-240M
25003
25004 @item bt2020ncl
25005 BT.2020 with non-constant luminance
25006
25007 @end table
25008
25009 @item cscheme
25010 Set spectrogram color scheme. This is list of floating point values with format
25011 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
25012 The default is @code{1|0.5|0|0|0.5|1}.
25013
25014 @end table
25015
25016 @subsection Examples
25017
25018 @itemize
25019 @item
25020 Playing audio while showing the spectrum:
25021 @example
25022 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
25023 @end example
25024
25025 @item
25026 Same as above, but with frame rate 30 fps:
25027 @example
25028 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
25029 @end example
25030
25031 @item
25032 Playing at 1280x720:
25033 @example
25034 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
25035 @end example
25036
25037 @item
25038 Disable sonogram display:
25039 @example
25040 sono_h=0
25041 @end example
25042
25043 @item
25044 A1 and its harmonics: A1, A2, (near)E3, A3:
25045 @example
25046 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),
25047                  asplit[a][out1]; [a] showcqt [out0]'
25048 @end example
25049
25050 @item
25051 Same as above, but with more accuracy in frequency domain:
25052 @example
25053 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),
25054                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
25055 @end example
25056
25057 @item
25058 Custom volume:
25059 @example
25060 bar_v=10:sono_v=bar_v*a_weighting(f)
25061 @end example
25062
25063 @item
25064 Custom gamma, now spectrum is linear to the amplitude.
25065 @example
25066 bar_g=2:sono_g=2
25067 @end example
25068
25069 @item
25070 Custom tlength equation:
25071 @example
25072 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)))'
25073 @end example
25074
25075 @item
25076 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
25077 @example
25078 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
25079 @end example
25080
25081 @item
25082 Custom font using fontconfig:
25083 @example
25084 font='Courier New,Monospace,mono|bold'
25085 @end example
25086
25087 @item
25088 Custom frequency range with custom axis using image file:
25089 @example
25090 axisfile=myaxis.png:basefreq=40:endfreq=10000
25091 @end example
25092 @end itemize
25093
25094 @section showfreqs
25095
25096 Convert input audio to video output representing the audio power spectrum.
25097 Audio amplitude is on Y-axis while frequency is on X-axis.
25098
25099 The filter accepts the following options:
25100
25101 @table @option
25102 @item size, s
25103 Specify size of video. For the syntax of this option, check the
25104 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25105 Default is @code{1024x512}.
25106
25107 @item mode
25108 Set display mode.
25109 This set how each frequency bin will be represented.
25110
25111 It accepts the following values:
25112 @table @samp
25113 @item line
25114 @item bar
25115 @item dot
25116 @end table
25117 Default is @code{bar}.
25118
25119 @item ascale
25120 Set amplitude scale.
25121
25122 It accepts the following values:
25123 @table @samp
25124 @item lin
25125 Linear scale.
25126
25127 @item sqrt
25128 Square root scale.
25129
25130 @item cbrt
25131 Cubic root scale.
25132
25133 @item log
25134 Logarithmic scale.
25135 @end table
25136 Default is @code{log}.
25137
25138 @item fscale
25139 Set frequency scale.
25140
25141 It accepts the following values:
25142 @table @samp
25143 @item lin
25144 Linear scale.
25145
25146 @item log
25147 Logarithmic scale.
25148
25149 @item rlog
25150 Reverse logarithmic scale.
25151 @end table
25152 Default is @code{lin}.
25153
25154 @item win_size
25155 Set window size. Allowed range is from 16 to 65536.
25156
25157 Default is @code{2048}
25158
25159 @item win_func
25160 Set windowing function.
25161
25162 It accepts the following values:
25163 @table @samp
25164 @item rect
25165 @item bartlett
25166 @item hanning
25167 @item hamming
25168 @item blackman
25169 @item welch
25170 @item flattop
25171 @item bharris
25172 @item bnuttall
25173 @item bhann
25174 @item sine
25175 @item nuttall
25176 @item lanczos
25177 @item gauss
25178 @item tukey
25179 @item dolph
25180 @item cauchy
25181 @item parzen
25182 @item poisson
25183 @item bohman
25184 @end table
25185 Default is @code{hanning}.
25186
25187 @item overlap
25188 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25189 which means optimal overlap for selected window function will be picked.
25190
25191 @item averaging
25192 Set time averaging. Setting this to 0 will display current maximal peaks.
25193 Default is @code{1}, which means time averaging is disabled.
25194
25195 @item colors
25196 Specify list of colors separated by space or by '|' which will be used to
25197 draw channel frequencies. Unrecognized or missing colors will be replaced
25198 by white color.
25199
25200 @item cmode
25201 Set channel display mode.
25202
25203 It accepts the following values:
25204 @table @samp
25205 @item combined
25206 @item separate
25207 @end table
25208 Default is @code{combined}.
25209
25210 @item minamp
25211 Set minimum amplitude used in @code{log} amplitude scaler.
25212
25213 @item data
25214 Set data display mode.
25215
25216 It accepts the following values:
25217 @table @samp
25218 @item magnitude
25219 @item phase
25220 @end table
25221 Default is @code{magnitude}.
25222 @end table
25223
25224 @section showspatial
25225
25226 Convert stereo input audio to a video output, representing the spatial relationship
25227 between two channels.
25228
25229 The filter accepts the following options:
25230
25231 @table @option
25232 @item size, s
25233 Specify the video size for the output. For the syntax of this option, check the
25234 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25235 Default value is @code{512x512}.
25236
25237 @item win_size
25238 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
25239
25240 @item win_func
25241 Set window function.
25242
25243 It accepts the following values:
25244 @table @samp
25245 @item rect
25246 @item bartlett
25247 @item hann
25248 @item hanning
25249 @item hamming
25250 @item blackman
25251 @item welch
25252 @item flattop
25253 @item bharris
25254 @item bnuttall
25255 @item bhann
25256 @item sine
25257 @item nuttall
25258 @item lanczos
25259 @item gauss
25260 @item tukey
25261 @item dolph
25262 @item cauchy
25263 @item parzen
25264 @item poisson
25265 @item bohman
25266 @end table
25267
25268 Default value is @code{hann}.
25269
25270 @item overlap
25271 Set ratio of overlap window. Default value is @code{0.5}.
25272 When value is @code{1} overlap is set to recommended size for specific
25273 window function currently used.
25274 @end table
25275
25276 @anchor{showspectrum}
25277 @section showspectrum
25278
25279 Convert input audio to a video output, representing the audio frequency
25280 spectrum.
25281
25282 The filter accepts the following options:
25283
25284 @table @option
25285 @item size, s
25286 Specify the video size for the output. For the syntax of this option, check the
25287 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25288 Default value is @code{640x512}.
25289
25290 @item slide
25291 Specify how the spectrum should slide along the window.
25292
25293 It accepts the following values:
25294 @table @samp
25295 @item replace
25296 the samples start again on the left when they reach the right
25297 @item scroll
25298 the samples scroll from right to left
25299 @item fullframe
25300 frames are only produced when the samples reach the right
25301 @item rscroll
25302 the samples scroll from left to right
25303 @end table
25304
25305 Default value is @code{replace}.
25306
25307 @item mode
25308 Specify display mode.
25309
25310 It accepts the following values:
25311 @table @samp
25312 @item combined
25313 all channels are displayed in the same row
25314 @item separate
25315 all channels are displayed in separate rows
25316 @end table
25317
25318 Default value is @samp{combined}.
25319
25320 @item color
25321 Specify display color mode.
25322
25323 It accepts the following values:
25324 @table @samp
25325 @item channel
25326 each channel is displayed in a separate color
25327 @item intensity
25328 each channel is displayed using the same color scheme
25329 @item rainbow
25330 each channel is displayed using the rainbow color scheme
25331 @item moreland
25332 each channel is displayed using the moreland color scheme
25333 @item nebulae
25334 each channel is displayed using the nebulae color scheme
25335 @item fire
25336 each channel is displayed using the fire color scheme
25337 @item fiery
25338 each channel is displayed using the fiery color scheme
25339 @item fruit
25340 each channel is displayed using the fruit color scheme
25341 @item cool
25342 each channel is displayed using the cool color scheme
25343 @item magma
25344 each channel is displayed using the magma color scheme
25345 @item green
25346 each channel is displayed using the green color scheme
25347 @item viridis
25348 each channel is displayed using the viridis color scheme
25349 @item plasma
25350 each channel is displayed using the plasma color scheme
25351 @item cividis
25352 each channel is displayed using the cividis color scheme
25353 @item terrain
25354 each channel is displayed using the terrain color scheme
25355 @end table
25356
25357 Default value is @samp{channel}.
25358
25359 @item scale
25360 Specify scale used for calculating intensity color values.
25361
25362 It accepts the following values:
25363 @table @samp
25364 @item lin
25365 linear
25366 @item sqrt
25367 square root, default
25368 @item cbrt
25369 cubic root
25370 @item log
25371 logarithmic
25372 @item 4thrt
25373 4th root
25374 @item 5thrt
25375 5th root
25376 @end table
25377
25378 Default value is @samp{sqrt}.
25379
25380 @item fscale
25381 Specify frequency scale.
25382
25383 It accepts the following values:
25384 @table @samp
25385 @item lin
25386 linear
25387 @item log
25388 logarithmic
25389 @end table
25390
25391 Default value is @samp{lin}.
25392
25393 @item saturation
25394 Set saturation modifier for displayed colors. Negative values provide
25395 alternative color scheme. @code{0} is no saturation at all.
25396 Saturation must be in [-10.0, 10.0] range.
25397 Default value is @code{1}.
25398
25399 @item win_func
25400 Set window function.
25401
25402 It accepts the following values:
25403 @table @samp
25404 @item rect
25405 @item bartlett
25406 @item hann
25407 @item hanning
25408 @item hamming
25409 @item blackman
25410 @item welch
25411 @item flattop
25412 @item bharris
25413 @item bnuttall
25414 @item bhann
25415 @item sine
25416 @item nuttall
25417 @item lanczos
25418 @item gauss
25419 @item tukey
25420 @item dolph
25421 @item cauchy
25422 @item parzen
25423 @item poisson
25424 @item bohman
25425 @end table
25426
25427 Default value is @code{hann}.
25428
25429 @item orientation
25430 Set orientation of time vs frequency axis. Can be @code{vertical} or
25431 @code{horizontal}. Default is @code{vertical}.
25432
25433 @item overlap
25434 Set ratio of overlap window. Default value is @code{0}.
25435 When value is @code{1} overlap is set to recommended size for specific
25436 window function currently used.
25437
25438 @item gain
25439 Set scale gain for calculating intensity color values.
25440 Default value is @code{1}.
25441
25442 @item data
25443 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
25444
25445 @item rotation
25446 Set color rotation, must be in [-1.0, 1.0] range.
25447 Default value is @code{0}.
25448
25449 @item start
25450 Set start frequency from which to display spectrogram. Default is @code{0}.
25451
25452 @item stop
25453 Set stop frequency to which to display spectrogram. Default is @code{0}.
25454
25455 @item fps
25456 Set upper frame rate limit. Default is @code{auto}, unlimited.
25457
25458 @item legend
25459 Draw time and frequency axes and legends. Default is disabled.
25460 @end table
25461
25462 The usage is very similar to the showwaves filter; see the examples in that
25463 section.
25464
25465 @subsection Examples
25466
25467 @itemize
25468 @item
25469 Large window with logarithmic color scaling:
25470 @example
25471 showspectrum=s=1280x480:scale=log
25472 @end example
25473
25474 @item
25475 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
25476 @example
25477 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
25478              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
25479 @end example
25480 @end itemize
25481
25482 @section showspectrumpic
25483
25484 Convert input audio to a single video frame, representing the audio frequency
25485 spectrum.
25486
25487 The filter accepts the following options:
25488
25489 @table @option
25490 @item size, s
25491 Specify the video size for the output. For the syntax of this option, check the
25492 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25493 Default value is @code{4096x2048}.
25494
25495 @item mode
25496 Specify display mode.
25497
25498 It accepts the following values:
25499 @table @samp
25500 @item combined
25501 all channels are displayed in the same row
25502 @item separate
25503 all channels are displayed in separate rows
25504 @end table
25505 Default value is @samp{combined}.
25506
25507 @item color
25508 Specify display color mode.
25509
25510 It accepts the following values:
25511 @table @samp
25512 @item channel
25513 each channel is displayed in a separate color
25514 @item intensity
25515 each channel is displayed using the same color scheme
25516 @item rainbow
25517 each channel is displayed using the rainbow color scheme
25518 @item moreland
25519 each channel is displayed using the moreland color scheme
25520 @item nebulae
25521 each channel is displayed using the nebulae color scheme
25522 @item fire
25523 each channel is displayed using the fire color scheme
25524 @item fiery
25525 each channel is displayed using the fiery color scheme
25526 @item fruit
25527 each channel is displayed using the fruit color scheme
25528 @item cool
25529 each channel is displayed using the cool color scheme
25530 @item magma
25531 each channel is displayed using the magma color scheme
25532 @item green
25533 each channel is displayed using the green color scheme
25534 @item viridis
25535 each channel is displayed using the viridis color scheme
25536 @item plasma
25537 each channel is displayed using the plasma color scheme
25538 @item cividis
25539 each channel is displayed using the cividis color scheme
25540 @item terrain
25541 each channel is displayed using the terrain color scheme
25542 @end table
25543 Default value is @samp{intensity}.
25544
25545 @item scale
25546 Specify scale used for calculating intensity color values.
25547
25548 It accepts the following values:
25549 @table @samp
25550 @item lin
25551 linear
25552 @item sqrt
25553 square root, default
25554 @item cbrt
25555 cubic root
25556 @item log
25557 logarithmic
25558 @item 4thrt
25559 4th root
25560 @item 5thrt
25561 5th root
25562 @end table
25563 Default value is @samp{log}.
25564
25565 @item fscale
25566 Specify frequency scale.
25567
25568 It accepts the following values:
25569 @table @samp
25570 @item lin
25571 linear
25572 @item log
25573 logarithmic
25574 @end table
25575
25576 Default value is @samp{lin}.
25577
25578 @item saturation
25579 Set saturation modifier for displayed colors. Negative values provide
25580 alternative color scheme. @code{0} is no saturation at all.
25581 Saturation must be in [-10.0, 10.0] range.
25582 Default value is @code{1}.
25583
25584 @item win_func
25585 Set window function.
25586
25587 It accepts the following values:
25588 @table @samp
25589 @item rect
25590 @item bartlett
25591 @item hann
25592 @item hanning
25593 @item hamming
25594 @item blackman
25595 @item welch
25596 @item flattop
25597 @item bharris
25598 @item bnuttall
25599 @item bhann
25600 @item sine
25601 @item nuttall
25602 @item lanczos
25603 @item gauss
25604 @item tukey
25605 @item dolph
25606 @item cauchy
25607 @item parzen
25608 @item poisson
25609 @item bohman
25610 @end table
25611 Default value is @code{hann}.
25612
25613 @item orientation
25614 Set orientation of time vs frequency axis. Can be @code{vertical} or
25615 @code{horizontal}. Default is @code{vertical}.
25616
25617 @item gain
25618 Set scale gain for calculating intensity color values.
25619 Default value is @code{1}.
25620
25621 @item legend
25622 Draw time and frequency axes and legends. Default is enabled.
25623
25624 @item rotation
25625 Set color rotation, must be in [-1.0, 1.0] range.
25626 Default value is @code{0}.
25627
25628 @item start
25629 Set start frequency from which to display spectrogram. Default is @code{0}.
25630
25631 @item stop
25632 Set stop frequency to which to display spectrogram. Default is @code{0}.
25633 @end table
25634
25635 @subsection Examples
25636
25637 @itemize
25638 @item
25639 Extract an audio spectrogram of a whole audio track
25640 in a 1024x1024 picture using @command{ffmpeg}:
25641 @example
25642 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
25643 @end example
25644 @end itemize
25645
25646 @section showvolume
25647
25648 Convert input audio volume to a video output.
25649
25650 The filter accepts the following options:
25651
25652 @table @option
25653 @item rate, r
25654 Set video rate.
25655
25656 @item b
25657 Set border width, allowed range is [0, 5]. Default is 1.
25658
25659 @item w
25660 Set channel width, allowed range is [80, 8192]. Default is 400.
25661
25662 @item h
25663 Set channel height, allowed range is [1, 900]. Default is 20.
25664
25665 @item f
25666 Set fade, allowed range is [0, 1]. Default is 0.95.
25667
25668 @item c
25669 Set volume color expression.
25670
25671 The expression can use the following variables:
25672
25673 @table @option
25674 @item VOLUME
25675 Current max volume of channel in dB.
25676
25677 @item PEAK
25678 Current peak.
25679
25680 @item CHANNEL
25681 Current channel number, starting from 0.
25682 @end table
25683
25684 @item t
25685 If set, displays channel names. Default is enabled.
25686
25687 @item v
25688 If set, displays volume values. Default is enabled.
25689
25690 @item o
25691 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
25692 default is @code{h}.
25693
25694 @item s
25695 Set step size, allowed range is [0, 5]. Default is 0, which means
25696 step is disabled.
25697
25698 @item p
25699 Set background opacity, allowed range is [0, 1]. Default is 0.
25700
25701 @item m
25702 Set metering mode, can be peak: @code{p} or rms: @code{r},
25703 default is @code{p}.
25704
25705 @item ds
25706 Set display scale, can be linear: @code{lin} or log: @code{log},
25707 default is @code{lin}.
25708
25709 @item dm
25710 In second.
25711 If set to > 0., display a line for the max level
25712 in the previous seconds.
25713 default is disabled: @code{0.}
25714
25715 @item dmc
25716 The color of the max line. Use when @code{dm} option is set to > 0.
25717 default is: @code{orange}
25718 @end table
25719
25720 @section showwaves
25721
25722 Convert input audio to a video output, representing the samples waves.
25723
25724 The filter accepts the following options:
25725
25726 @table @option
25727 @item size, s
25728 Specify the video size for the output. For the syntax of this option, check the
25729 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25730 Default value is @code{600x240}.
25731
25732 @item mode
25733 Set display mode.
25734
25735 Available values are:
25736 @table @samp
25737 @item point
25738 Draw a point for each sample.
25739
25740 @item line
25741 Draw a vertical line for each sample.
25742
25743 @item p2p
25744 Draw a point for each sample and a line between them.
25745
25746 @item cline
25747 Draw a centered vertical line for each sample.
25748 @end table
25749
25750 Default value is @code{point}.
25751
25752 @item n
25753 Set the number of samples which are printed on the same column. A
25754 larger value will decrease the frame rate. Must be a positive
25755 integer. This option can be set only if the value for @var{rate}
25756 is not explicitly specified.
25757
25758 @item rate, r
25759 Set the (approximate) output frame rate. This is done by setting the
25760 option @var{n}. Default value is "25".
25761
25762 @item split_channels
25763 Set if channels should be drawn separately or overlap. Default value is 0.
25764
25765 @item colors
25766 Set colors separated by '|' which are going to be used for drawing of each channel.
25767
25768 @item scale
25769 Set amplitude scale.
25770
25771 Available values are:
25772 @table @samp
25773 @item lin
25774 Linear.
25775
25776 @item log
25777 Logarithmic.
25778
25779 @item sqrt
25780 Square root.
25781
25782 @item cbrt
25783 Cubic root.
25784 @end table
25785
25786 Default is linear.
25787
25788 @item draw
25789 Set the draw mode. This is mostly useful to set for high @var{n}.
25790
25791 Available values are:
25792 @table @samp
25793 @item scale
25794 Scale pixel values for each drawn sample.
25795
25796 @item full
25797 Draw every sample directly.
25798 @end table
25799
25800 Default value is @code{scale}.
25801 @end table
25802
25803 @subsection Examples
25804
25805 @itemize
25806 @item
25807 Output the input file audio and the corresponding video representation
25808 at the same time:
25809 @example
25810 amovie=a.mp3,asplit[out0],showwaves[out1]
25811 @end example
25812
25813 @item
25814 Create a synthetic signal and show it with showwaves, forcing a
25815 frame rate of 30 frames per second:
25816 @example
25817 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
25818 @end example
25819 @end itemize
25820
25821 @section showwavespic
25822
25823 Convert input audio to a single video frame, representing the samples waves.
25824
25825 The filter accepts the following options:
25826
25827 @table @option
25828 @item size, s
25829 Specify the video size for the output. For the syntax of this option, check the
25830 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25831 Default value is @code{600x240}.
25832
25833 @item split_channels
25834 Set if channels should be drawn separately or overlap. Default value is 0.
25835
25836 @item colors
25837 Set colors separated by '|' which are going to be used for drawing of each channel.
25838
25839 @item scale
25840 Set amplitude scale.
25841
25842 Available values are:
25843 @table @samp
25844 @item lin
25845 Linear.
25846
25847 @item log
25848 Logarithmic.
25849
25850 @item sqrt
25851 Square root.
25852
25853 @item cbrt
25854 Cubic root.
25855 @end table
25856
25857 Default is linear.
25858
25859 @item draw
25860 Set the draw mode.
25861
25862 Available values are:
25863 @table @samp
25864 @item scale
25865 Scale pixel values for each drawn sample.
25866
25867 @item full
25868 Draw every sample directly.
25869 @end table
25870
25871 Default value is @code{scale}.
25872
25873 @item filter
25874 Set the filter mode.
25875
25876 Available values are:
25877 @table @samp
25878 @item average
25879 Use average samples values for each drawn sample.
25880
25881 @item peak
25882 Use peak samples values for each drawn sample.
25883 @end table
25884
25885 Default value is @code{average}.
25886 @end table
25887
25888 @subsection Examples
25889
25890 @itemize
25891 @item
25892 Extract a channel split representation of the wave form of a whole audio track
25893 in a 1024x800 picture using @command{ffmpeg}:
25894 @example
25895 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
25896 @end example
25897 @end itemize
25898
25899 @section sidedata, asidedata
25900
25901 Delete frame side data, or select frames based on it.
25902
25903 This filter accepts the following options:
25904
25905 @table @option
25906 @item mode
25907 Set mode of operation of the filter.
25908
25909 Can be one of the following:
25910
25911 @table @samp
25912 @item select
25913 Select every frame with side data of @code{type}.
25914
25915 @item delete
25916 Delete side data of @code{type}. If @code{type} is not set, delete all side
25917 data in the frame.
25918
25919 @end table
25920
25921 @item type
25922 Set side data type used with all modes. Must be set for @code{select} mode. For
25923 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
25924 in @file{libavutil/frame.h}. For example, to choose
25925 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
25926
25927 @end table
25928
25929 @section spectrumsynth
25930
25931 Synthesize audio from 2 input video spectrums, first input stream represents
25932 magnitude across time and second represents phase across time.
25933 The filter will transform from frequency domain as displayed in videos back
25934 to time domain as presented in audio output.
25935
25936 This filter is primarily created for reversing processed @ref{showspectrum}
25937 filter outputs, but can synthesize sound from other spectrograms too.
25938 But in such case results are going to be poor if the phase data is not
25939 available, because in such cases phase data need to be recreated, usually
25940 it's just recreated from random noise.
25941 For best results use gray only output (@code{channel} color mode in
25942 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
25943 @code{lin} scale for phase video. To produce phase, for 2nd video, use
25944 @code{data} option. Inputs videos should generally use @code{fullframe}
25945 slide mode as that saves resources needed for decoding video.
25946
25947 The filter accepts the following options:
25948
25949 @table @option
25950 @item sample_rate
25951 Specify sample rate of output audio, the sample rate of audio from which
25952 spectrum was generated may differ.
25953
25954 @item channels
25955 Set number of channels represented in input video spectrums.
25956
25957 @item scale
25958 Set scale which was used when generating magnitude input spectrum.
25959 Can be @code{lin} or @code{log}. Default is @code{log}.
25960
25961 @item slide
25962 Set slide which was used when generating inputs spectrums.
25963 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
25964 Default is @code{fullframe}.
25965
25966 @item win_func
25967 Set window function used for resynthesis.
25968
25969 @item overlap
25970 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25971 which means optimal overlap for selected window function will be picked.
25972
25973 @item orientation
25974 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
25975 Default is @code{vertical}.
25976 @end table
25977
25978 @subsection Examples
25979
25980 @itemize
25981 @item
25982 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
25983 then resynthesize videos back to audio with spectrumsynth:
25984 @example
25985 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
25986 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
25987 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
25988 @end example
25989 @end itemize
25990
25991 @section split, asplit
25992
25993 Split input into several identical outputs.
25994
25995 @code{asplit} works with audio input, @code{split} with video.
25996
25997 The filter accepts a single parameter which specifies the number of outputs. If
25998 unspecified, it defaults to 2.
25999
26000 @subsection Examples
26001
26002 @itemize
26003 @item
26004 Create two separate outputs from the same input:
26005 @example
26006 [in] split [out0][out1]
26007 @end example
26008
26009 @item
26010 To create 3 or more outputs, you need to specify the number of
26011 outputs, like in:
26012 @example
26013 [in] asplit=3 [out0][out1][out2]
26014 @end example
26015
26016 @item
26017 Create two separate outputs from the same input, one cropped and
26018 one padded:
26019 @example
26020 [in] split [splitout1][splitout2];
26021 [splitout1] crop=100:100:0:0    [cropout];
26022 [splitout2] pad=200:200:100:100 [padout];
26023 @end example
26024
26025 @item
26026 Create 5 copies of the input audio with @command{ffmpeg}:
26027 @example
26028 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
26029 @end example
26030 @end itemize
26031
26032 @section zmq, azmq
26033
26034 Receive commands sent through a libzmq client, and forward them to
26035 filters in the filtergraph.
26036
26037 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
26038 must be inserted between two video filters, @code{azmq} between two
26039 audio filters. Both are capable to send messages to any filter type.
26040
26041 To enable these filters you need to install the libzmq library and
26042 headers and configure FFmpeg with @code{--enable-libzmq}.
26043
26044 For more information about libzmq see:
26045 @url{http://www.zeromq.org/}
26046
26047 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
26048 receives messages sent through a network interface defined by the
26049 @option{bind_address} (or the abbreviation "@option{b}") option.
26050 Default value of this option is @file{tcp://localhost:5555}. You may
26051 want to alter this value to your needs, but do not forget to escape any
26052 ':' signs (see @ref{filtergraph escaping}).
26053
26054 The received message must be in the form:
26055 @example
26056 @var{TARGET} @var{COMMAND} [@var{ARG}]
26057 @end example
26058
26059 @var{TARGET} specifies the target of the command, usually the name of
26060 the filter class or a specific filter instance name. The default
26061 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
26062 but you can override this by using the @samp{filter_name@@id} syntax
26063 (see @ref{Filtergraph syntax}).
26064
26065 @var{COMMAND} specifies the name of the command for the target filter.
26066
26067 @var{ARG} is optional and specifies the optional argument list for the
26068 given @var{COMMAND}.
26069
26070 Upon reception, the message is processed and the corresponding command
26071 is injected into the filtergraph. Depending on the result, the filter
26072 will send a reply to the client, adopting the format:
26073 @example
26074 @var{ERROR_CODE} @var{ERROR_REASON}
26075 @var{MESSAGE}
26076 @end example
26077
26078 @var{MESSAGE} is optional.
26079
26080 @subsection Examples
26081
26082 Look at @file{tools/zmqsend} for an example of a zmq client which can
26083 be used to send commands processed by these filters.
26084
26085 Consider the following filtergraph generated by @command{ffplay}.
26086 In this example the last overlay filter has an instance name. All other
26087 filters will have default instance names.
26088
26089 @example
26090 ffplay -dumpgraph 1 -f lavfi "
26091 color=s=100x100:c=red  [l];
26092 color=s=100x100:c=blue [r];
26093 nullsrc=s=200x100, zmq [bg];
26094 [bg][l]   overlay     [bg+l];
26095 [bg+l][r] overlay@@my=x=100 "
26096 @end example
26097
26098 To change the color of the left side of the video, the following
26099 command can be used:
26100 @example
26101 echo Parsed_color_0 c yellow | tools/zmqsend
26102 @end example
26103
26104 To change the right side:
26105 @example
26106 echo Parsed_color_1 c pink | tools/zmqsend
26107 @end example
26108
26109 To change the position of the right side:
26110 @example
26111 echo overlay@@my x 150 | tools/zmqsend
26112 @end example
26113
26114
26115 @c man end MULTIMEDIA FILTERS
26116
26117 @chapter Multimedia Sources
26118 @c man begin MULTIMEDIA SOURCES
26119
26120 Below is a description of the currently available multimedia sources.
26121
26122 @section amovie
26123
26124 This is the same as @ref{movie} source, except it selects an audio
26125 stream by default.
26126
26127 @anchor{movie}
26128 @section movie
26129
26130 Read audio and/or video stream(s) from a movie container.
26131
26132 It accepts the following parameters:
26133
26134 @table @option
26135 @item filename
26136 The name of the resource to read (not necessarily a file; it can also be a
26137 device or a stream accessed through some protocol).
26138
26139 @item format_name, f
26140 Specifies the format assumed for the movie to read, and can be either
26141 the name of a container or an input device. If not specified, the
26142 format is guessed from @var{movie_name} or by probing.
26143
26144 @item seek_point, sp
26145 Specifies the seek point in seconds. The frames will be output
26146 starting from this seek point. The parameter is evaluated with
26147 @code{av_strtod}, so the numerical value may be suffixed by an IS
26148 postfix. The default value is "0".
26149
26150 @item streams, s
26151 Specifies the streams to read. Several streams can be specified,
26152 separated by "+". The source will then have as many outputs, in the
26153 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
26154 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
26155 respectively the default (best suited) video and audio stream. Default
26156 is "dv", or "da" if the filter is called as "amovie".
26157
26158 @item stream_index, si
26159 Specifies the index of the video stream to read. If the value is -1,
26160 the most suitable video stream will be automatically selected. The default
26161 value is "-1". Deprecated. If the filter is called "amovie", it will select
26162 audio instead of video.
26163
26164 @item loop
26165 Specifies how many times to read the stream in sequence.
26166 If the value is 0, the stream will be looped infinitely.
26167 Default value is "1".
26168
26169 Note that when the movie is looped the source timestamps are not
26170 changed, so it will generate non monotonically increasing timestamps.
26171
26172 @item discontinuity
26173 Specifies the time difference between frames above which the point is
26174 considered a timestamp discontinuity which is removed by adjusting the later
26175 timestamps.
26176 @end table
26177
26178 It allows overlaying a second video on top of the main input of
26179 a filtergraph, as shown in this graph:
26180 @example
26181 input -----------> deltapts0 --> overlay --> output
26182                                     ^
26183                                     |
26184 movie --> scale--> deltapts1 -------+
26185 @end example
26186 @subsection Examples
26187
26188 @itemize
26189 @item
26190 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
26191 on top of the input labelled "in":
26192 @example
26193 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
26194 [in] setpts=PTS-STARTPTS [main];
26195 [main][over] overlay=16:16 [out]
26196 @end example
26197
26198 @item
26199 Read from a video4linux2 device, and overlay it on top of the input
26200 labelled "in":
26201 @example
26202 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
26203 [in] setpts=PTS-STARTPTS [main];
26204 [main][over] overlay=16:16 [out]
26205 @end example
26206
26207 @item
26208 Read the first video stream and the audio stream with id 0x81 from
26209 dvd.vob; the video is connected to the pad named "video" and the audio is
26210 connected to the pad named "audio":
26211 @example
26212 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
26213 @end example
26214 @end itemize
26215
26216 @subsection Commands
26217
26218 Both movie and amovie support the following commands:
26219 @table @option
26220 @item seek
26221 Perform seek using "av_seek_frame".
26222 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
26223 @itemize
26224 @item
26225 @var{stream_index}: If stream_index is -1, a default
26226 stream is selected, and @var{timestamp} is automatically converted
26227 from AV_TIME_BASE units to the stream specific time_base.
26228 @item
26229 @var{timestamp}: Timestamp in AVStream.time_base units
26230 or, if no stream is specified, in AV_TIME_BASE units.
26231 @item
26232 @var{flags}: Flags which select direction and seeking mode.
26233 @end itemize
26234
26235 @item get_duration
26236 Get movie duration in AV_TIME_BASE units.
26237
26238 @end table
26239
26240 @c man end MULTIMEDIA SOURCES