]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
tools/target_dec_fuzzer: Sort threshold list alphabetically
[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, can be @var{2nd}, @var{4th} or @var{8th}.
527 Default is @var{4th}.
528 @end table
529
530 @section acrusher
531
532 Reduce audio bit resolution.
533
534 This filter is bit crusher with enhanced functionality. A bit crusher
535 is used to audibly reduce number of bits an audio signal is sampled
536 with. This doesn't change the bit depth at all, it just produces the
537 effect. Material reduced in bit depth sounds more harsh and "digital".
538 This filter is able to even round to continuous values instead of discrete
539 bit depths.
540 Additionally it has a D/C offset which results in different crushing of
541 the lower and the upper half of the signal.
542 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
543
544 Another feature of this filter is the logarithmic mode.
545 This setting switches from linear distances between bits to logarithmic ones.
546 The result is a much more "natural" sounding crusher which doesn't gate low
547 signals for example. The human ear has a logarithmic perception,
548 so this kind of crushing is much more pleasant.
549 Logarithmic crushing is also able to get anti-aliased.
550
551 The filter accepts the following options:
552
553 @table @option
554 @item level_in
555 Set level in.
556
557 @item level_out
558 Set level out.
559
560 @item bits
561 Set bit reduction.
562
563 @item mix
564 Set mixing amount.
565
566 @item mode
567 Can be linear: @code{lin} or logarithmic: @code{log}.
568
569 @item dc
570 Set DC.
571
572 @item aa
573 Set anti-aliasing.
574
575 @item samples
576 Set sample reduction.
577
578 @item lfo
579 Enable LFO. By default disabled.
580
581 @item lforange
582 Set LFO range.
583
584 @item lforate
585 Set LFO rate.
586 @end table
587
588 @section acue
589
590 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
591 filter.
592
593 @section adeclick
594 Remove impulsive noise from input audio.
595
596 Samples detected as impulsive noise are replaced by interpolated samples using
597 autoregressive modelling.
598
599 @table @option
600 @item w
601 Set window size, in milliseconds. Allowed range is from @code{10} to
602 @code{100}. Default value is @code{55} milliseconds.
603 This sets size of window which will be processed at once.
604
605 @item o
606 Set window overlap, in percentage of window size. Allowed range is from
607 @code{50} to @code{95}. Default value is @code{75} percent.
608 Setting this to a very high value increases impulsive noise removal but makes
609 whole process much slower.
610
611 @item a
612 Set autoregression order, in percentage of window size. Allowed range is from
613 @code{0} to @code{25}. Default value is @code{2} percent. This option also
614 controls quality of interpolated samples using neighbour good samples.
615
616 @item t
617 Set threshold value. Allowed range is from @code{1} to @code{100}.
618 Default value is @code{2}.
619 This controls the strength of impulsive noise which is going to be removed.
620 The lower value, the more samples will be detected as impulsive noise.
621
622 @item b
623 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
624 @code{10}. Default value is @code{2}.
625 If any two samples detected as noise are spaced less than this value then any
626 sample between those two samples will be also detected as noise.
627
628 @item m
629 Set overlap method.
630
631 It accepts the following values:
632 @table @option
633 @item a
634 Select overlap-add method. Even not interpolated samples are slightly
635 changed with this method.
636
637 @item s
638 Select overlap-save method. Not interpolated samples remain unchanged.
639 @end table
640
641 Default value is @code{a}.
642 @end table
643
644 @section adeclip
645 Remove clipped samples from input audio.
646
647 Samples detected as clipped are replaced by interpolated samples using
648 autoregressive modelling.
649
650 @table @option
651 @item w
652 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
653 Default value is @code{55} milliseconds.
654 This sets size of window which will be processed at once.
655
656 @item o
657 Set window overlap, in percentage of window size. Allowed range is from @code{50}
658 to @code{95}. Default value is @code{75} percent.
659
660 @item a
661 Set autoregression order, in percentage of window size. Allowed range is from
662 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
663 quality of interpolated samples using neighbour good samples.
664
665 @item t
666 Set threshold value. Allowed range is from @code{1} to @code{100}.
667 Default value is @code{10}. Higher values make clip detection less aggressive.
668
669 @item n
670 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
671 Default value is @code{1000}. Higher values make clip detection less aggressive.
672
673 @item m
674 Set overlap method.
675
676 It accepts the following values:
677 @table @option
678 @item a
679 Select overlap-add method. Even not interpolated samples are slightly changed
680 with this method.
681
682 @item s
683 Select overlap-save method. Not interpolated samples remain unchanged.
684 @end table
685
686 Default value is @code{a}.
687 @end table
688
689 @section adelay
690
691 Delay one or more audio channels.
692
693 Samples in delayed channel are filled with silence.
694
695 The filter accepts the following option:
696
697 @table @option
698 @item delays
699 Set list of delays in milliseconds for each channel separated by '|'.
700 Unused delays will be silently ignored. If number of given delays is
701 smaller than number of channels all remaining channels will not be delayed.
702 If you want to delay exact number of samples, append 'S' to number.
703 If you want instead to delay in seconds, append 's' to number.
704
705 @item all
706 Use last set delay for all remaining channels. By default is disabled.
707 This option if enabled changes how option @code{delays} is interpreted.
708 @end table
709
710 @subsection Examples
711
712 @itemize
713 @item
714 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
715 the second channel (and any other channels that may be present) unchanged.
716 @example
717 adelay=1500|0|500
718 @end example
719
720 @item
721 Delay second channel by 500 samples, the third channel by 700 samples and leave
722 the first channel (and any other channels that may be present) unchanged.
723 @example
724 adelay=0|500S|700S
725 @end example
726
727 @item
728 Delay all channels by same number of samples:
729 @example
730 adelay=delays=64S:all=1
731 @end example
732 @end itemize
733
734 @section aderivative, aintegral
735
736 Compute derivative/integral of audio stream.
737
738 Applying both filters one after another produces original audio.
739
740 @section aecho
741
742 Apply echoing to the input audio.
743
744 Echoes are reflected sound and can occur naturally amongst mountains
745 (and sometimes large buildings) when talking or shouting; digital echo
746 effects emulate this behaviour and are often used to help fill out the
747 sound of a single instrument or vocal. The time difference between the
748 original signal and the reflection is the @code{delay}, and the
749 loudness of the reflected signal is the @code{decay}.
750 Multiple echoes can have different delays and decays.
751
752 A description of the accepted parameters follows.
753
754 @table @option
755 @item in_gain
756 Set input gain of reflected signal. Default is @code{0.6}.
757
758 @item out_gain
759 Set output gain of reflected signal. Default is @code{0.3}.
760
761 @item delays
762 Set list of time intervals in milliseconds between original signal and reflections
763 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
764 Default is @code{1000}.
765
766 @item decays
767 Set list of loudness of reflected signals separated by '|'.
768 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
769 Default is @code{0.5}.
770 @end table
771
772 @subsection Examples
773
774 @itemize
775 @item
776 Make it sound as if there are twice as many instruments as are actually playing:
777 @example
778 aecho=0.8:0.88:60:0.4
779 @end example
780
781 @item
782 If delay is very short, then it sounds like a (metallic) robot playing music:
783 @example
784 aecho=0.8:0.88:6:0.4
785 @end example
786
787 @item
788 A longer delay will sound like an open air concert in the mountains:
789 @example
790 aecho=0.8:0.9:1000:0.3
791 @end example
792
793 @item
794 Same as above but with one more mountain:
795 @example
796 aecho=0.8:0.9:1000|1800:0.3|0.25
797 @end example
798 @end itemize
799
800 @section aemphasis
801 Audio emphasis filter creates or restores material directly taken from LPs or
802 emphased CDs with different filter curves. E.g. to store music on vinyl the
803 signal has to be altered by a filter first to even out the disadvantages of
804 this recording medium.
805 Once the material is played back the inverse filter has to be applied to
806 restore the distortion of the frequency response.
807
808 The filter accepts the following options:
809
810 @table @option
811 @item level_in
812 Set input gain.
813
814 @item level_out
815 Set output gain.
816
817 @item mode
818 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
819 use @code{production} mode. Default is @code{reproduction} mode.
820
821 @item type
822 Set filter type. Selects medium. Can be one of the following:
823
824 @table @option
825 @item col
826 select Columbia.
827 @item emi
828 select EMI.
829 @item bsi
830 select BSI (78RPM).
831 @item riaa
832 select RIAA.
833 @item cd
834 select Compact Disc (CD).
835 @item 50fm
836 select 50µs (FM).
837 @item 75fm
838 select 75µs (FM).
839 @item 50kf
840 select 50µs (FM-KF).
841 @item 75kf
842 select 75µs (FM-KF).
843 @end table
844 @end table
845
846 @section aeval
847
848 Modify an audio signal according to the specified expressions.
849
850 This filter accepts one or more expressions (one for each channel),
851 which are evaluated and used to modify a corresponding audio signal.
852
853 It accepts the following parameters:
854
855 @table @option
856 @item exprs
857 Set the '|'-separated expressions list for each separate channel. If
858 the number of input channels is greater than the number of
859 expressions, the last specified expression is used for the remaining
860 output channels.
861
862 @item channel_layout, c
863 Set output channel layout. If not specified, the channel layout is
864 specified by the number of expressions. If set to @samp{same}, it will
865 use by default the same input channel layout.
866 @end table
867
868 Each expression in @var{exprs} can contain the following constants and functions:
869
870 @table @option
871 @item ch
872 channel number of the current expression
873
874 @item n
875 number of the evaluated sample, starting from 0
876
877 @item s
878 sample rate
879
880 @item t
881 time of the evaluated sample expressed in seconds
882
883 @item nb_in_channels
884 @item nb_out_channels
885 input and output number of channels
886
887 @item val(CH)
888 the value of input channel with number @var{CH}
889 @end table
890
891 Note: this filter is slow. For faster processing you should use a
892 dedicated filter.
893
894 @subsection Examples
895
896 @itemize
897 @item
898 Half volume:
899 @example
900 aeval=val(ch)/2:c=same
901 @end example
902
903 @item
904 Invert phase of the second channel:
905 @example
906 aeval=val(0)|-val(1)
907 @end example
908 @end itemize
909
910 @anchor{afade}
911 @section afade
912
913 Apply fade-in/out effect to input audio.
914
915 A description of the accepted parameters follows.
916
917 @table @option
918 @item type, t
919 Specify the effect type, can be either @code{in} for fade-in, or
920 @code{out} for a fade-out effect. Default is @code{in}.
921
922 @item start_sample, ss
923 Specify the number of the start sample for starting to apply the fade
924 effect. Default is 0.
925
926 @item nb_samples, ns
927 Specify the number of samples for which the fade effect has to last. At
928 the end of the fade-in effect the output audio will have the same
929 volume as the input audio, at the end of the fade-out transition
930 the output audio will be silence. Default is 44100.
931
932 @item start_time, st
933 Specify the start time of the fade effect. Default is 0.
934 The value must be specified as a time duration; see
935 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
936 for the accepted syntax.
937 If set this option is used instead of @var{start_sample}.
938
939 @item duration, d
940 Specify the duration of the fade effect. See
941 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
942 for the accepted syntax.
943 At the end of the fade-in effect the output audio will have the same
944 volume as the input audio, at the end of the fade-out transition
945 the output audio will be silence.
946 By default the duration is determined by @var{nb_samples}.
947 If set this option is used instead of @var{nb_samples}.
948
949 @item curve
950 Set curve for fade transition.
951
952 It accepts the following values:
953 @table @option
954 @item tri
955 select triangular, linear slope (default)
956 @item qsin
957 select quarter of sine wave
958 @item hsin
959 select half of sine wave
960 @item esin
961 select exponential sine wave
962 @item log
963 select logarithmic
964 @item ipar
965 select inverted parabola
966 @item qua
967 select quadratic
968 @item cub
969 select cubic
970 @item squ
971 select square root
972 @item cbr
973 select cubic root
974 @item par
975 select parabola
976 @item exp
977 select exponential
978 @item iqsin
979 select inverted quarter of sine wave
980 @item ihsin
981 select inverted half of sine wave
982 @item dese
983 select double-exponential seat
984 @item desi
985 select double-exponential sigmoid
986 @item losi
987 select logistic sigmoid
988 @item nofade
989 no fade applied
990 @end table
991 @end table
992
993 @subsection Examples
994
995 @itemize
996 @item
997 Fade in first 15 seconds of audio:
998 @example
999 afade=t=in:ss=0:d=15
1000 @end example
1001
1002 @item
1003 Fade out last 25 seconds of a 900 seconds audio:
1004 @example
1005 afade=t=out:st=875:d=25
1006 @end example
1007 @end itemize
1008
1009 @section afftdn
1010 Denoise audio samples with FFT.
1011
1012 A description of the accepted parameters follows.
1013
1014 @table @option
1015 @item nr
1016 Set the noise reduction in dB, allowed range is 0.01 to 97.
1017 Default value is 12 dB.
1018
1019 @item nf
1020 Set the noise floor in dB, allowed range is -80 to -20.
1021 Default value is -50 dB.
1022
1023 @item nt
1024 Set the noise type.
1025
1026 It accepts the following values:
1027 @table @option
1028 @item w
1029 Select white noise.
1030
1031 @item v
1032 Select vinyl noise.
1033
1034 @item s
1035 Select shellac noise.
1036
1037 @item c
1038 Select custom noise, defined in @code{bn} option.
1039
1040 Default value is white noise.
1041 @end table
1042
1043 @item bn
1044 Set custom band noise for every one of 15 bands.
1045 Bands are separated by ' ' or '|'.
1046
1047 @item rf
1048 Set the residual floor in dB, allowed range is -80 to -20.
1049 Default value is -38 dB.
1050
1051 @item tn
1052 Enable noise tracking. By default is disabled.
1053 With this enabled, noise floor is automatically adjusted.
1054
1055 @item tr
1056 Enable residual tracking. By default is disabled.
1057
1058 @item om
1059 Set the output mode.
1060
1061 It accepts the following values:
1062 @table @option
1063 @item i
1064 Pass input unchanged.
1065
1066 @item o
1067 Pass noise filtered out.
1068
1069 @item n
1070 Pass only noise.
1071
1072 Default value is @var{o}.
1073 @end table
1074 @end table
1075
1076 @subsection Commands
1077
1078 This filter supports the following commands:
1079 @table @option
1080 @item sample_noise, sn
1081 Start or stop measuring noise profile.
1082 Syntax for the command is : "start" or "stop" string.
1083 After measuring noise profile is stopped it will be
1084 automatically applied in filtering.
1085
1086 @item noise_reduction, nr
1087 Change noise reduction. Argument is single float number.
1088 Syntax for the command is : "@var{noise_reduction}"
1089
1090 @item noise_floor, nf
1091 Change noise floor. Argument is single float number.
1092 Syntax for the command is : "@var{noise_floor}"
1093
1094 @item output_mode, om
1095 Change output mode operation.
1096 Syntax for the command is : "i", "o" or "n" string.
1097 @end table
1098
1099 @section afftfilt
1100 Apply arbitrary expressions to samples in frequency domain.
1101
1102 @table @option
1103 @item real
1104 Set frequency domain real expression for each separate channel separated
1105 by '|'. Default is "re".
1106 If the number of input channels is greater than the number of
1107 expressions, the last specified expression is used for the remaining
1108 output channels.
1109
1110 @item imag
1111 Set frequency domain imaginary expression for each separate channel
1112 separated by '|'. Default is "im".
1113
1114 Each expression in @var{real} and @var{imag} can contain the following
1115 constants and functions:
1116
1117 @table @option
1118 @item sr
1119 sample rate
1120
1121 @item b
1122 current frequency bin number
1123
1124 @item nb
1125 number of available bins
1126
1127 @item ch
1128 channel number of the current expression
1129
1130 @item chs
1131 number of channels
1132
1133 @item pts
1134 current frame pts
1135
1136 @item re
1137 current real part of frequency bin of current channel
1138
1139 @item im
1140 current imaginary part of frequency bin of current channel
1141
1142 @item real(b, ch)
1143 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1144
1145 @item imag(b, ch)
1146 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1147 @end table
1148
1149 @item win_size
1150 Set window size. Allowed range is from 16 to 131072.
1151 Default is @code{4096}
1152
1153 @item win_func
1154 Set window function. Default is @code{hann}.
1155
1156 @item overlap
1157 Set window overlap. If set to 1, the recommended overlap for selected
1158 window function will be picked. Default is @code{0.75}.
1159 @end table
1160
1161 @subsection Examples
1162
1163 @itemize
1164 @item
1165 Leave almost only low frequencies in audio:
1166 @example
1167 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1168 @end example
1169
1170 @item
1171 Apply robotize effect:
1172 @example
1173 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1174 @end example
1175
1176 @item
1177 Apply whisper effect:
1178 @example
1179 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"
1180 @end example
1181 @end itemize
1182
1183 @anchor{afir}
1184 @section afir
1185
1186 Apply an arbitrary Finite Impulse Response filter.
1187
1188 This filter is designed for applying long FIR filters,
1189 up to 60 seconds long.
1190
1191 It can be used as component for digital crossover filters,
1192 room equalization, cross talk cancellation, wavefield synthesis,
1193 auralization, ambiophonics, ambisonics and spatialization.
1194
1195 This filter uses the streams higher than first one as FIR coefficients.
1196 If the non-first stream holds a single channel, it will be used
1197 for all input channels in the first stream, otherwise
1198 the number of channels in the non-first stream must be same as
1199 the number of channels in the first stream.
1200
1201 It accepts the following parameters:
1202
1203 @table @option
1204 @item dry
1205 Set dry gain. This sets input gain.
1206
1207 @item wet
1208 Set wet gain. This sets final output gain.
1209
1210 @item length
1211 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1212
1213 @item gtype
1214 Enable applying gain measured from power of IR.
1215
1216 Set which approach to use for auto gain measurement.
1217
1218 @table @option
1219 @item none
1220 Do not apply any gain.
1221
1222 @item peak
1223 select peak gain, very conservative approach. This is default value.
1224
1225 @item dc
1226 select DC gain, limited application.
1227
1228 @item gn
1229 select gain to noise approach, this is most popular one.
1230 @end table
1231
1232 @item irgain
1233 Set gain to be applied to IR coefficients before filtering.
1234 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1235
1236 @item irfmt
1237 Set format of IR stream. Can be @code{mono} or @code{input}.
1238 Default is @code{input}.
1239
1240 @item maxir
1241 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1242 Allowed range is 0.1 to 60 seconds.
1243
1244 @item response
1245 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1246 By default it is disabled.
1247
1248 @item channel
1249 Set for which IR channel to display frequency response. By default is first channel
1250 displayed. This option is used only when @var{response} is enabled.
1251
1252 @item size
1253 Set video stream size. This option is used only when @var{response} is enabled.
1254
1255 @item rate
1256 Set video stream frame rate. This option is used only when @var{response} is enabled.
1257
1258 @item minp
1259 Set minimal partition size used for convolution. Default is @var{8192}.
1260 Allowed range is from @var{1} to @var{32768}.
1261 Lower values decreases latency at cost of higher CPU usage.
1262
1263 @item maxp
1264 Set maximal partition size used for convolution. Default is @var{8192}.
1265 Allowed range is from @var{8} to @var{32768}.
1266 Lower values may increase CPU usage.
1267
1268 @item nbirs
1269 Set number of input impulse responses streams which will be switchable at runtime.
1270 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1271
1272 @item ir
1273 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1274 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1275 This option can be changed at runtime via @ref{commands}.
1276 @end table
1277
1278 @subsection Examples
1279
1280 @itemize
1281 @item
1282 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1283 @example
1284 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1285 @end example
1286 @end itemize
1287
1288 @anchor{aformat}
1289 @section aformat
1290
1291 Set output format constraints for the input audio. The framework will
1292 negotiate the most appropriate format to minimize conversions.
1293
1294 It accepts the following parameters:
1295 @table @option
1296
1297 @item sample_fmts, f
1298 A '|'-separated list of requested sample formats.
1299
1300 @item sample_rates, r
1301 A '|'-separated list of requested sample rates.
1302
1303 @item channel_layouts, cl
1304 A '|'-separated list of requested channel layouts.
1305
1306 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1307 for the required syntax.
1308 @end table
1309
1310 If a parameter is omitted, all values are allowed.
1311
1312 Force the output to either unsigned 8-bit or signed 16-bit stereo
1313 @example
1314 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1315 @end example
1316
1317 @section agate
1318
1319 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1320 processing reduces disturbing noise between useful signals.
1321
1322 Gating is done by detecting the volume below a chosen level @var{threshold}
1323 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1324 floor is set via @var{range}. Because an exact manipulation of the signal
1325 would cause distortion of the waveform the reduction can be levelled over
1326 time. This is done by setting @var{attack} and @var{release}.
1327
1328 @var{attack} determines how long the signal has to fall below the threshold
1329 before any reduction will occur and @var{release} sets the time the signal
1330 has to rise above the threshold to reduce the reduction again.
1331 Shorter signals than the chosen attack time will be left untouched.
1332
1333 @table @option
1334 @item level_in
1335 Set input level before filtering.
1336 Default is 1. Allowed range is from 0.015625 to 64.
1337
1338 @item mode
1339 Set the mode of operation. Can be @code{upward} or @code{downward}.
1340 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1341 will be amplified, expanding dynamic range in upward direction.
1342 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1343
1344 @item range
1345 Set the level of gain reduction when the signal is below the threshold.
1346 Default is 0.06125. Allowed range is from 0 to 1.
1347 Setting this to 0 disables reduction and then filter behaves like expander.
1348
1349 @item threshold
1350 If a signal rises above this level the gain reduction is released.
1351 Default is 0.125. Allowed range is from 0 to 1.
1352
1353 @item ratio
1354 Set a ratio by which the signal is reduced.
1355 Default is 2. Allowed range is from 1 to 9000.
1356
1357 @item attack
1358 Amount of milliseconds the signal has to rise above the threshold before gain
1359 reduction stops.
1360 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1361
1362 @item release
1363 Amount of milliseconds the signal has to fall below the threshold before the
1364 reduction is increased again. Default is 250 milliseconds.
1365 Allowed range is from 0.01 to 9000.
1366
1367 @item makeup
1368 Set amount of amplification of signal after processing.
1369 Default is 1. Allowed range is from 1 to 64.
1370
1371 @item knee
1372 Curve the sharp knee around the threshold to enter gain reduction more softly.
1373 Default is 2.828427125. Allowed range is from 1 to 8.
1374
1375 @item detection
1376 Choose if exact signal should be taken for detection or an RMS like one.
1377 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1378
1379 @item link
1380 Choose if the average level between all channels or the louder channel affects
1381 the reduction.
1382 Default is @code{average}. Can be @code{average} or @code{maximum}.
1383 @end table
1384
1385 @section aiir
1386
1387 Apply an arbitrary Infinite Impulse Response filter.
1388
1389 It accepts the following parameters:
1390
1391 @table @option
1392 @item z
1393 Set numerator/zeros coefficients.
1394
1395 @item p
1396 Set denominator/poles coefficients.
1397
1398 @item k
1399 Set channels gains.
1400
1401 @item dry_gain
1402 Set input gain.
1403
1404 @item wet_gain
1405 Set output gain.
1406
1407 @item f
1408 Set coefficients format.
1409
1410 @table @samp
1411 @item tf
1412 transfer function
1413 @item zp
1414 Z-plane zeros/poles, cartesian (default)
1415 @item pr
1416 Z-plane zeros/poles, polar radians
1417 @item pd
1418 Z-plane zeros/poles, polar degrees
1419 @end table
1420
1421 @item r
1422 Set kind of processing.
1423 Can be @code{d} - direct or @code{s} - serial cascading. Default is @code{s}.
1424
1425 @item e
1426 Set filtering precision.
1427
1428 @table @samp
1429 @item dbl
1430 double-precision floating-point (default)
1431 @item flt
1432 single-precision floating-point
1433 @item i32
1434 32-bit integers
1435 @item i16
1436 16-bit integers
1437 @end table
1438
1439 @item mix
1440 How much to use filtered signal in output. Default is 1.
1441 Range is between 0 and 1.
1442
1443 @item response
1444 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1445 By default it is disabled.
1446
1447 @item channel
1448 Set for which IR channel to display frequency response. By default is first channel
1449 displayed. This option is used only when @var{response} is enabled.
1450
1451 @item size
1452 Set video stream size. This option is used only when @var{response} is enabled.
1453 @end table
1454
1455 Coefficients in @code{tf} format are separated by spaces and are in ascending
1456 order.
1457
1458 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1459 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1460 imaginary unit.
1461
1462 Different coefficients and gains can be provided for every channel, in such case
1463 use '|' to separate coefficients or gains. Last provided coefficients will be
1464 used for all remaining channels.
1465
1466 @subsection Examples
1467
1468 @itemize
1469 @item
1470 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1471 @example
1472 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
1473 @end example
1474
1475 @item
1476 Same as above but in @code{zp} format:
1477 @example
1478 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
1479 @end example
1480 @end itemize
1481
1482 @section alimiter
1483
1484 The limiter prevents an input signal from rising over a desired threshold.
1485 This limiter uses lookahead technology to prevent your signal from distorting.
1486 It means that there is a small delay after the signal is processed. Keep in mind
1487 that the delay it produces is the attack time you set.
1488
1489 The filter accepts the following options:
1490
1491 @table @option
1492 @item level_in
1493 Set input gain. Default is 1.
1494
1495 @item level_out
1496 Set output gain. Default is 1.
1497
1498 @item limit
1499 Don't let signals above this level pass the limiter. Default is 1.
1500
1501 @item attack
1502 The limiter will reach its attenuation level in this amount of time in
1503 milliseconds. Default is 5 milliseconds.
1504
1505 @item release
1506 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1507 Default is 50 milliseconds.
1508
1509 @item asc
1510 When gain reduction is always needed ASC takes care of releasing to an
1511 average reduction level rather than reaching a reduction of 0 in the release
1512 time.
1513
1514 @item asc_level
1515 Select how much the release time is affected by ASC, 0 means nearly no changes
1516 in release time while 1 produces higher release times.
1517
1518 @item level
1519 Auto level output signal. Default is enabled.
1520 This normalizes audio back to 0dB if enabled.
1521 @end table
1522
1523 Depending on picked setting it is recommended to upsample input 2x or 4x times
1524 with @ref{aresample} before applying this filter.
1525
1526 @section allpass
1527
1528 Apply a two-pole all-pass filter with central frequency (in Hz)
1529 @var{frequency}, and filter-width @var{width}.
1530 An all-pass filter changes the audio's frequency to phase relationship
1531 without changing its frequency to amplitude relationship.
1532
1533 The filter accepts the following options:
1534
1535 @table @option
1536 @item frequency, f
1537 Set frequency in Hz.
1538
1539 @item width_type, t
1540 Set method to specify band-width of filter.
1541 @table @option
1542 @item h
1543 Hz
1544 @item q
1545 Q-Factor
1546 @item o
1547 octave
1548 @item s
1549 slope
1550 @item k
1551 kHz
1552 @end table
1553
1554 @item width, w
1555 Specify the band-width of a filter in width_type units.
1556
1557 @item mix, m
1558 How much to use filtered signal in output. Default is 1.
1559 Range is between 0 and 1.
1560
1561 @item channels, c
1562 Specify which channels to filter, by default all available are filtered.
1563
1564 @item normalize, n
1565 Normalize biquad coefficients, by default is disabled.
1566 Enabling it will normalize magnitude response at DC to 0dB.
1567 @end table
1568
1569 @subsection Commands
1570
1571 This filter supports the following commands:
1572 @table @option
1573 @item frequency, f
1574 Change allpass frequency.
1575 Syntax for the command is : "@var{frequency}"
1576
1577 @item width_type, t
1578 Change allpass width_type.
1579 Syntax for the command is : "@var{width_type}"
1580
1581 @item width, w
1582 Change allpass width.
1583 Syntax for the command is : "@var{width}"
1584
1585 @item mix, m
1586 Change allpass mix.
1587 Syntax for the command is : "@var{mix}"
1588 @end table
1589
1590 @section aloop
1591
1592 Loop audio samples.
1593
1594 The filter accepts the following options:
1595
1596 @table @option
1597 @item loop
1598 Set the number of loops. Setting this value to -1 will result in infinite loops.
1599 Default is 0.
1600
1601 @item size
1602 Set maximal number of samples. Default is 0.
1603
1604 @item start
1605 Set first sample of loop. Default is 0.
1606 @end table
1607
1608 @anchor{amerge}
1609 @section amerge
1610
1611 Merge two or more audio streams into a single multi-channel stream.
1612
1613 The filter accepts the following options:
1614
1615 @table @option
1616
1617 @item inputs
1618 Set the number of inputs. Default is 2.
1619
1620 @end table
1621
1622 If the channel layouts of the inputs are disjoint, and therefore compatible,
1623 the channel layout of the output will be set accordingly and the channels
1624 will be reordered as necessary. If the channel layouts of the inputs are not
1625 disjoint, the output will have all the channels of the first input then all
1626 the channels of the second input, in that order, and the channel layout of
1627 the output will be the default value corresponding to the total number of
1628 channels.
1629
1630 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1631 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1632 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1633 first input, b1 is the first channel of the second input).
1634
1635 On the other hand, if both input are in stereo, the output channels will be
1636 in the default order: a1, a2, b1, b2, and the channel layout will be
1637 arbitrarily set to 4.0, which may or may not be the expected value.
1638
1639 All inputs must have the same sample rate, and format.
1640
1641 If inputs do not have the same duration, the output will stop with the
1642 shortest.
1643
1644 @subsection Examples
1645
1646 @itemize
1647 @item
1648 Merge two mono files into a stereo stream:
1649 @example
1650 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1651 @end example
1652
1653 @item
1654 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1655 @example
1656 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
1657 @end example
1658 @end itemize
1659
1660 @section amix
1661
1662 Mixes multiple audio inputs into a single output.
1663
1664 Note that this filter only supports float samples (the @var{amerge}
1665 and @var{pan} audio filters support many formats). If the @var{amix}
1666 input has integer samples then @ref{aresample} will be automatically
1667 inserted to perform the conversion to float samples.
1668
1669 For example
1670 @example
1671 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1672 @end example
1673 will mix 3 input audio streams to a single output with the same duration as the
1674 first input and a dropout transition time of 3 seconds.
1675
1676 It accepts the following parameters:
1677 @table @option
1678
1679 @item inputs
1680 The number of inputs. If unspecified, it defaults to 2.
1681
1682 @item duration
1683 How to determine the end-of-stream.
1684 @table @option
1685
1686 @item longest
1687 The duration of the longest input. (default)
1688
1689 @item shortest
1690 The duration of the shortest input.
1691
1692 @item first
1693 The duration of the first input.
1694
1695 @end table
1696
1697 @item dropout_transition
1698 The transition time, in seconds, for volume renormalization when an input
1699 stream ends. The default value is 2 seconds.
1700
1701 @item weights
1702 Specify weight of each input audio stream as sequence.
1703 Each weight is separated by space. By default all inputs have same weight.
1704 @end table
1705
1706 @section amultiply
1707
1708 Multiply first audio stream with second audio stream and store result
1709 in output audio stream. Multiplication is done by multiplying each
1710 sample from first stream with sample at same position from second stream.
1711
1712 With this element-wise multiplication one can create amplitude fades and
1713 amplitude modulations.
1714
1715 @section anequalizer
1716
1717 High-order parametric multiband equalizer for each channel.
1718
1719 It accepts the following parameters:
1720 @table @option
1721 @item params
1722
1723 This option string is in format:
1724 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1725 Each equalizer band is separated by '|'.
1726
1727 @table @option
1728 @item chn
1729 Set channel number to which equalization will be applied.
1730 If input doesn't have that channel the entry is ignored.
1731
1732 @item f
1733 Set central frequency for band.
1734 If input doesn't have that frequency the entry is ignored.
1735
1736 @item w
1737 Set band width in hertz.
1738
1739 @item g
1740 Set band gain in dB.
1741
1742 @item t
1743 Set filter type for band, optional, can be:
1744
1745 @table @samp
1746 @item 0
1747 Butterworth, this is default.
1748
1749 @item 1
1750 Chebyshev type 1.
1751
1752 @item 2
1753 Chebyshev type 2.
1754 @end table
1755 @end table
1756
1757 @item curves
1758 With this option activated frequency response of anequalizer is displayed
1759 in video stream.
1760
1761 @item size
1762 Set video stream size. Only useful if curves option is activated.
1763
1764 @item mgain
1765 Set max gain that will be displayed. Only useful if curves option is activated.
1766 Setting this to a reasonable value makes it possible to display gain which is derived from
1767 neighbour bands which are too close to each other and thus produce higher gain
1768 when both are activated.
1769
1770 @item fscale
1771 Set frequency scale used to draw frequency response in video output.
1772 Can be linear or logarithmic. Default is logarithmic.
1773
1774 @item colors
1775 Set color for each channel curve which is going to be displayed in video stream.
1776 This is list of color names separated by space or by '|'.
1777 Unrecognised or missing colors will be replaced by white color.
1778 @end table
1779
1780 @subsection Examples
1781
1782 @itemize
1783 @item
1784 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1785 for first 2 channels using Chebyshev type 1 filter:
1786 @example
1787 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1788 @end example
1789 @end itemize
1790
1791 @subsection Commands
1792
1793 This filter supports the following commands:
1794 @table @option
1795 @item change
1796 Alter existing filter parameters.
1797 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1798
1799 @var{fN} is existing filter number, starting from 0, if no such filter is available
1800 error is returned.
1801 @var{freq} set new frequency parameter.
1802 @var{width} set new width parameter in herz.
1803 @var{gain} set new gain parameter in dB.
1804
1805 Full filter invocation with asendcmd may look like this:
1806 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1807 @end table
1808
1809 @section anlmdn
1810
1811 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1812
1813 Each sample is adjusted by looking for other samples with similar contexts. This
1814 context similarity is defined by comparing their surrounding patches of size
1815 @option{p}. Patches are searched in an area of @option{r} around the sample.
1816
1817 The filter accepts the following options:
1818
1819 @table @option
1820 @item s
1821 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1822
1823 @item p
1824 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1825 Default value is 2 milliseconds.
1826
1827 @item r
1828 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1829 Default value is 6 milliseconds.
1830
1831 @item o
1832 Set the output mode.
1833
1834 It accepts the following values:
1835 @table @option
1836 @item i
1837 Pass input unchanged.
1838
1839 @item o
1840 Pass noise filtered out.
1841
1842 @item n
1843 Pass only noise.
1844
1845 Default value is @var{o}.
1846 @end table
1847
1848 @item m
1849 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
1850 @end table
1851
1852 @subsection Commands
1853
1854 This filter supports the following commands:
1855 @table @option
1856 @item s
1857 Change denoise strength. Argument is single float number.
1858 Syntax for the command is : "@var{s}"
1859
1860 @item o
1861 Change output mode.
1862 Syntax for the command is : "i", "o" or "n" string.
1863 @end table
1864
1865 @section anlms
1866 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
1867
1868 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
1869 relate to producing the least mean square of the error signal (difference between the desired,
1870 2nd input audio stream and the actual signal, the 1st input audio stream).
1871
1872 A description of the accepted options follows.
1873
1874 @table @option
1875 @item order
1876 Set filter order.
1877
1878 @item mu
1879 Set filter mu.
1880
1881 @item eps
1882 Set the filter eps.
1883
1884 @item leakage
1885 Set the filter leakage.
1886
1887 @item out_mode
1888 It accepts the following values:
1889 @table @option
1890 @item i
1891 Pass the 1st input.
1892
1893 @item d
1894 Pass the 2nd input.
1895
1896 @item o
1897 Pass filtered samples.
1898
1899 @item n
1900 Pass difference between desired and filtered samples.
1901
1902 Default value is @var{o}.
1903 @end table
1904 @end table
1905
1906 @subsection Examples
1907
1908 @itemize
1909 @item
1910 One of many usages of this filter is noise reduction, input audio is filtered
1911 with same samples that are delayed by fixed amount, one such example for stereo audio is:
1912 @example
1913 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
1914 @end example
1915 @end itemize
1916
1917 @subsection Commands
1918
1919 This filter supports the same commands as options, excluding option @code{order}.
1920
1921 @section anull
1922
1923 Pass the audio source unchanged to the output.
1924
1925 @section apad
1926
1927 Pad the end of an audio stream with silence.
1928
1929 This can be used together with @command{ffmpeg} @option{-shortest} to
1930 extend audio streams to the same length as the video stream.
1931
1932 A description of the accepted options follows.
1933
1934 @table @option
1935 @item packet_size
1936 Set silence packet size. Default value is 4096.
1937
1938 @item pad_len
1939 Set the number of samples of silence to add to the end. After the
1940 value is reached, the stream is terminated. This option is mutually
1941 exclusive with @option{whole_len}.
1942
1943 @item whole_len
1944 Set the minimum total number of samples in the output audio stream. If
1945 the value is longer than the input audio length, silence is added to
1946 the end, until the value is reached. This option is mutually exclusive
1947 with @option{pad_len}.
1948
1949 @item pad_dur
1950 Specify the duration of samples of silence to add. See
1951 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1952 for the accepted syntax. Used only if set to non-zero value.
1953
1954 @item whole_dur
1955 Specify the minimum total duration in the output audio stream. See
1956 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1957 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
1958 the input audio length, silence is added to the end, until the value is reached.
1959 This option is mutually exclusive with @option{pad_dur}
1960 @end table
1961
1962 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
1963 nor @option{whole_dur} option is set, the filter will add silence to the end of
1964 the input stream indefinitely.
1965
1966 @subsection Examples
1967
1968 @itemize
1969 @item
1970 Add 1024 samples of silence to the end of the input:
1971 @example
1972 apad=pad_len=1024
1973 @end example
1974
1975 @item
1976 Make sure the audio output will contain at least 10000 samples, pad
1977 the input with silence if required:
1978 @example
1979 apad=whole_len=10000
1980 @end example
1981
1982 @item
1983 Use @command{ffmpeg} to pad the audio input with silence, so that the
1984 video stream will always result the shortest and will be converted
1985 until the end in the output file when using the @option{shortest}
1986 option:
1987 @example
1988 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1989 @end example
1990 @end itemize
1991
1992 @section aphaser
1993 Add a phasing effect to the input audio.
1994
1995 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1996 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1997
1998 A description of the accepted parameters follows.
1999
2000 @table @option
2001 @item in_gain
2002 Set input gain. Default is 0.4.
2003
2004 @item out_gain
2005 Set output gain. Default is 0.74
2006
2007 @item delay
2008 Set delay in milliseconds. Default is 3.0.
2009
2010 @item decay
2011 Set decay. Default is 0.4.
2012
2013 @item speed
2014 Set modulation speed in Hz. Default is 0.5.
2015
2016 @item type
2017 Set modulation type. Default is triangular.
2018
2019 It accepts the following values:
2020 @table @samp
2021 @item triangular, t
2022 @item sinusoidal, s
2023 @end table
2024 @end table
2025
2026 @section apulsator
2027
2028 Audio pulsator is something between an autopanner and a tremolo.
2029 But it can produce funny stereo effects as well. Pulsator changes the volume
2030 of the left and right channel based on a LFO (low frequency oscillator) with
2031 different waveforms and shifted phases.
2032 This filter have the ability to define an offset between left and right
2033 channel. An offset of 0 means that both LFO shapes match each other.
2034 The left and right channel are altered equally - a conventional tremolo.
2035 An offset of 50% means that the shape of the right channel is exactly shifted
2036 in phase (or moved backwards about half of the frequency) - pulsator acts as
2037 an autopanner. At 1 both curves match again. Every setting in between moves the
2038 phase shift gapless between all stages and produces some "bypassing" sounds with
2039 sine and triangle waveforms. The more you set the offset near 1 (starting from
2040 the 0.5) the faster the signal passes from the left to the right speaker.
2041
2042 The filter accepts the following options:
2043
2044 @table @option
2045 @item level_in
2046 Set input gain. By default it is 1. Range is [0.015625 - 64].
2047
2048 @item level_out
2049 Set output gain. By default it is 1. Range is [0.015625 - 64].
2050
2051 @item mode
2052 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2053 sawup or sawdown. Default is sine.
2054
2055 @item amount
2056 Set modulation. Define how much of original signal is affected by the LFO.
2057
2058 @item offset_l
2059 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2060
2061 @item offset_r
2062 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2063
2064 @item width
2065 Set pulse width. Default is 1. Allowed range is [0 - 2].
2066
2067 @item timing
2068 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2069
2070 @item bpm
2071 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2072 is set to bpm.
2073
2074 @item ms
2075 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2076 is set to ms.
2077
2078 @item hz
2079 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2080 if timing is set to hz.
2081 @end table
2082
2083 @anchor{aresample}
2084 @section aresample
2085
2086 Resample the input audio to the specified parameters, using the
2087 libswresample library. If none are specified then the filter will
2088 automatically convert between its input and output.
2089
2090 This filter is also able to stretch/squeeze the audio data to make it match
2091 the timestamps or to inject silence / cut out audio to make it match the
2092 timestamps, do a combination of both or do neither.
2093
2094 The filter accepts the syntax
2095 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2096 expresses a sample rate and @var{resampler_options} is a list of
2097 @var{key}=@var{value} pairs, separated by ":". See the
2098 @ref{Resampler Options,,"Resampler Options" section in the
2099 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2100 for the complete list of supported options.
2101
2102 @subsection Examples
2103
2104 @itemize
2105 @item
2106 Resample the input audio to 44100Hz:
2107 @example
2108 aresample=44100
2109 @end example
2110
2111 @item
2112 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2113 samples per second compensation:
2114 @example
2115 aresample=async=1000
2116 @end example
2117 @end itemize
2118
2119 @section areverse
2120
2121 Reverse an audio clip.
2122
2123 Warning: This filter requires memory to buffer the entire clip, so trimming
2124 is suggested.
2125
2126 @subsection Examples
2127
2128 @itemize
2129 @item
2130 Take the first 5 seconds of a clip, and reverse it.
2131 @example
2132 atrim=end=5,areverse
2133 @end example
2134 @end itemize
2135
2136 @section arnndn
2137
2138 Reduce noise from speech using Recurrent Neural Networks.
2139
2140 This filter accepts the following options:
2141
2142 @table @option
2143 @item model, m
2144 Set train model file to load. This option is always required.
2145 @end table
2146
2147 @section asetnsamples
2148
2149 Set the number of samples per each output audio frame.
2150
2151 The last output packet may contain a different number of samples, as
2152 the filter will flush all the remaining samples when the input audio
2153 signals its end.
2154
2155 The filter accepts the following options:
2156
2157 @table @option
2158
2159 @item nb_out_samples, n
2160 Set the number of frames per each output audio frame. The number is
2161 intended as the number of samples @emph{per each channel}.
2162 Default value is 1024.
2163
2164 @item pad, p
2165 If set to 1, the filter will pad the last audio frame with zeroes, so
2166 that the last frame will contain the same number of samples as the
2167 previous ones. Default value is 1.
2168 @end table
2169
2170 For example, to set the number of per-frame samples to 1234 and
2171 disable padding for the last frame, use:
2172 @example
2173 asetnsamples=n=1234:p=0
2174 @end example
2175
2176 @section asetrate
2177
2178 Set the sample rate without altering the PCM data.
2179 This will result in a change of speed and pitch.
2180
2181 The filter accepts the following options:
2182
2183 @table @option
2184 @item sample_rate, r
2185 Set the output sample rate. Default is 44100 Hz.
2186 @end table
2187
2188 @section ashowinfo
2189
2190 Show a line containing various information for each input audio frame.
2191 The input audio is not modified.
2192
2193 The shown line contains a sequence of key/value pairs of the form
2194 @var{key}:@var{value}.
2195
2196 The following values are shown in the output:
2197
2198 @table @option
2199 @item n
2200 The (sequential) number of the input frame, starting from 0.
2201
2202 @item pts
2203 The presentation timestamp of the input frame, in time base units; the time base
2204 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2205
2206 @item pts_time
2207 The presentation timestamp of the input frame in seconds.
2208
2209 @item pos
2210 position of the frame in the input stream, -1 if this information in
2211 unavailable and/or meaningless (for example in case of synthetic audio)
2212
2213 @item fmt
2214 The sample format.
2215
2216 @item chlayout
2217 The channel layout.
2218
2219 @item rate
2220 The sample rate for the audio frame.
2221
2222 @item nb_samples
2223 The number of samples (per channel) in the frame.
2224
2225 @item checksum
2226 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2227 audio, the data is treated as if all the planes were concatenated.
2228
2229 @item plane_checksums
2230 A list of Adler-32 checksums for each data plane.
2231 @end table
2232
2233 @section asoftclip
2234 Apply audio soft clipping.
2235
2236 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2237 along a smooth curve, rather than the abrupt shape of hard-clipping.
2238
2239 This filter accepts the following options:
2240
2241 @table @option
2242 @item type
2243 Set type of soft-clipping.
2244
2245 It accepts the following values:
2246 @table @option
2247 @item tanh
2248 @item atan
2249 @item cubic
2250 @item exp
2251 @item alg
2252 @item quintic
2253 @item sin
2254 @end table
2255
2256 @item param
2257 Set additional parameter which controls sigmoid function.
2258 @end table
2259
2260 @section asr
2261 Automatic Speech Recognition
2262
2263 This filter uses PocketSphinx for speech recognition. To enable
2264 compilation of this filter, you need to configure FFmpeg with
2265 @code{--enable-pocketsphinx}.
2266
2267 It accepts the following options:
2268
2269 @table @option
2270 @item rate
2271 Set sampling rate of input audio. Defaults is @code{16000}.
2272 This need to match speech models, otherwise one will get poor results.
2273
2274 @item hmm
2275 Set dictionary containing acoustic model files.
2276
2277 @item dict
2278 Set pronunciation dictionary.
2279
2280 @item lm
2281 Set language model file.
2282
2283 @item lmctl
2284 Set language model set.
2285
2286 @item lmname
2287 Set which language model to use.
2288
2289 @item logfn
2290 Set output for log messages.
2291 @end table
2292
2293 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2294
2295 @anchor{astats}
2296 @section astats
2297
2298 Display time domain statistical information about the audio channels.
2299 Statistics are calculated and displayed for each audio channel and,
2300 where applicable, an overall figure is also given.
2301
2302 It accepts the following option:
2303 @table @option
2304 @item length
2305 Short window length in seconds, used for peak and trough RMS measurement.
2306 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2307
2308 @item metadata
2309
2310 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2311 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2312 disabled.
2313
2314 Available keys for each channel are:
2315 DC_offset
2316 Min_level
2317 Max_level
2318 Min_difference
2319 Max_difference
2320 Mean_difference
2321 RMS_difference
2322 Peak_level
2323 RMS_peak
2324 RMS_trough
2325 Crest_factor
2326 Flat_factor
2327 Peak_count
2328 Bit_depth
2329 Dynamic_range
2330 Zero_crossings
2331 Zero_crossings_rate
2332 Number_of_NaNs
2333 Number_of_Infs
2334 Number_of_denormals
2335
2336 and for Overall:
2337 DC_offset
2338 Min_level
2339 Max_level
2340 Min_difference
2341 Max_difference
2342 Mean_difference
2343 RMS_difference
2344 Peak_level
2345 RMS_level
2346 RMS_peak
2347 RMS_trough
2348 Flat_factor
2349 Peak_count
2350 Bit_depth
2351 Number_of_samples
2352 Number_of_NaNs
2353 Number_of_Infs
2354 Number_of_denormals
2355
2356 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2357 this @code{lavfi.astats.Overall.Peak_count}.
2358
2359 For description what each key means read below.
2360
2361 @item reset
2362 Set number of frame after which stats are going to be recalculated.
2363 Default is disabled.
2364
2365 @item measure_perchannel
2366 Select the entries which need to be measured per channel. The metadata keys can
2367 be used as flags, default is @option{all} which measures everything.
2368 @option{none} disables all per channel measurement.
2369
2370 @item measure_overall
2371 Select the entries which need to be measured overall. The metadata keys can
2372 be used as flags, default is @option{all} which measures everything.
2373 @option{none} disables all overall measurement.
2374
2375 @end table
2376
2377 A description of each shown parameter follows:
2378
2379 @table @option
2380 @item DC offset
2381 Mean amplitude displacement from zero.
2382
2383 @item Min level
2384 Minimal sample level.
2385
2386 @item Max level
2387 Maximal sample level.
2388
2389 @item Min difference
2390 Minimal difference between two consecutive samples.
2391
2392 @item Max difference
2393 Maximal difference between two consecutive samples.
2394
2395 @item Mean difference
2396 Mean difference between two consecutive samples.
2397 The average of each difference between two consecutive samples.
2398
2399 @item RMS difference
2400 Root Mean Square difference between two consecutive samples.
2401
2402 @item Peak level dB
2403 @item RMS level dB
2404 Standard peak and RMS level measured in dBFS.
2405
2406 @item RMS peak dB
2407 @item RMS trough dB
2408 Peak and trough values for RMS level measured over a short window.
2409
2410 @item Crest factor
2411 Standard ratio of peak to RMS level (note: not in dB).
2412
2413 @item Flat factor
2414 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2415 (i.e. either @var{Min level} or @var{Max level}).
2416
2417 @item Peak count
2418 Number of occasions (not the number of samples) that the signal attained either
2419 @var{Min level} or @var{Max level}.
2420
2421 @item Bit depth
2422 Overall bit depth of audio. Number of bits used for each sample.
2423
2424 @item Dynamic range
2425 Measured dynamic range of audio in dB.
2426
2427 @item Zero crossings
2428 Number of points where the waveform crosses the zero level axis.
2429
2430 @item Zero crossings rate
2431 Rate of Zero crossings and number of audio samples.
2432 @end table
2433
2434 @section atempo
2435
2436 Adjust audio tempo.
2437
2438 The filter accepts exactly one parameter, the audio tempo. If not
2439 specified then the filter will assume nominal 1.0 tempo. Tempo must
2440 be in the [0.5, 100.0] range.
2441
2442 Note that tempo greater than 2 will skip some samples rather than
2443 blend them in.  If for any reason this is a concern it is always
2444 possible to daisy-chain several instances of atempo to achieve the
2445 desired product tempo.
2446
2447 @subsection Examples
2448
2449 @itemize
2450 @item
2451 Slow down audio to 80% tempo:
2452 @example
2453 atempo=0.8
2454 @end example
2455
2456 @item
2457 To speed up audio to 300% tempo:
2458 @example
2459 atempo=3
2460 @end example
2461
2462 @item
2463 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2464 @example
2465 atempo=sqrt(3),atempo=sqrt(3)
2466 @end example
2467 @end itemize
2468
2469 @subsection Commands
2470
2471 This filter supports the following commands:
2472 @table @option
2473 @item tempo
2474 Change filter tempo scale factor.
2475 Syntax for the command is : "@var{tempo}"
2476 @end table
2477
2478 @section atrim
2479
2480 Trim the input so that the output contains one continuous subpart of the input.
2481
2482 It accepts the following parameters:
2483 @table @option
2484 @item start
2485 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2486 sample with the timestamp @var{start} will be the first sample in the output.
2487
2488 @item end
2489 Specify time of the first audio sample that will be dropped, i.e. the
2490 audio sample immediately preceding the one with the timestamp @var{end} will be
2491 the last sample in the output.
2492
2493 @item start_pts
2494 Same as @var{start}, except this option sets the start timestamp in samples
2495 instead of seconds.
2496
2497 @item end_pts
2498 Same as @var{end}, except this option sets the end timestamp in samples instead
2499 of seconds.
2500
2501 @item duration
2502 The maximum duration of the output in seconds.
2503
2504 @item start_sample
2505 The number of the first sample that should be output.
2506
2507 @item end_sample
2508 The number of the first sample that should be dropped.
2509 @end table
2510
2511 @option{start}, @option{end}, and @option{duration} are expressed as time
2512 duration specifications; see
2513 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2514
2515 Note that the first two sets of the start/end options and the @option{duration}
2516 option look at the frame timestamp, while the _sample options simply count the
2517 samples that pass through the filter. So start/end_pts and start/end_sample will
2518 give different results when the timestamps are wrong, inexact or do not start at
2519 zero. Also note that this filter does not modify the timestamps. If you wish
2520 to have the output timestamps start at zero, insert the asetpts filter after the
2521 atrim filter.
2522
2523 If multiple start or end options are set, this filter tries to be greedy and
2524 keep all samples that match at least one of the specified constraints. To keep
2525 only the part that matches all the constraints at once, chain multiple atrim
2526 filters.
2527
2528 The defaults are such that all the input is kept. So it is possible to set e.g.
2529 just the end values to keep everything before the specified time.
2530
2531 Examples:
2532 @itemize
2533 @item
2534 Drop everything except the second minute of input:
2535 @example
2536 ffmpeg -i INPUT -af atrim=60:120
2537 @end example
2538
2539 @item
2540 Keep only the first 1000 samples:
2541 @example
2542 ffmpeg -i INPUT -af atrim=end_sample=1000
2543 @end example
2544
2545 @end itemize
2546
2547 @section axcorrelate
2548 Calculate normalized cross-correlation between two input audio streams.
2549
2550 Resulted samples are always between -1 and 1 inclusive.
2551 If result is 1 it means two input samples are highly correlated in that selected segment.
2552 Result 0 means they are not correlated at all.
2553 If result is -1 it means two input samples are out of phase, which means they cancel each
2554 other.
2555
2556 The filter accepts the following options:
2557
2558 @table @option
2559 @item size
2560 Set size of segment over which cross-correlation is calculated.
2561 Default is 256. Allowed range is from 2 to 131072.
2562
2563 @item algo
2564 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2565 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2566 are always zero and thus need much less calculations to make.
2567 This is generally not true, but is valid for typical audio streams.
2568 @end table
2569
2570 @subsection Examples
2571
2572 @itemize
2573 @item
2574 Calculate correlation between channels in stereo audio stream:
2575 @example
2576 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2577 @end example
2578 @end itemize
2579
2580 @section bandpass
2581
2582 Apply a two-pole Butterworth band-pass filter with central
2583 frequency @var{frequency}, and (3dB-point) band-width width.
2584 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2585 instead of the default: constant 0dB peak gain.
2586 The filter roll off at 6dB per octave (20dB per decade).
2587
2588 The filter accepts the following options:
2589
2590 @table @option
2591 @item frequency, f
2592 Set the filter's central frequency. Default is @code{3000}.
2593
2594 @item csg
2595 Constant skirt gain if set to 1. Defaults to 0.
2596
2597 @item width_type, t
2598 Set method to specify band-width of filter.
2599 @table @option
2600 @item h
2601 Hz
2602 @item q
2603 Q-Factor
2604 @item o
2605 octave
2606 @item s
2607 slope
2608 @item k
2609 kHz
2610 @end table
2611
2612 @item width, w
2613 Specify the band-width of a filter in width_type units.
2614
2615 @item mix, m
2616 How much to use filtered signal in output. Default is 1.
2617 Range is between 0 and 1.
2618
2619 @item channels, c
2620 Specify which channels to filter, by default all available are filtered.
2621
2622 @item normalize, n
2623 Normalize biquad coefficients, by default is disabled.
2624 Enabling it will normalize magnitude response at DC to 0dB.
2625 @end table
2626
2627 @subsection Commands
2628
2629 This filter supports the following commands:
2630 @table @option
2631 @item frequency, f
2632 Change bandpass frequency.
2633 Syntax for the command is : "@var{frequency}"
2634
2635 @item width_type, t
2636 Change bandpass width_type.
2637 Syntax for the command is : "@var{width_type}"
2638
2639 @item width, w
2640 Change bandpass width.
2641 Syntax for the command is : "@var{width}"
2642
2643 @item mix, m
2644 Change bandpass mix.
2645 Syntax for the command is : "@var{mix}"
2646 @end table
2647
2648 @section bandreject
2649
2650 Apply a two-pole Butterworth band-reject filter with central
2651 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2652 The filter roll off at 6dB per octave (20dB per decade).
2653
2654 The filter accepts the following options:
2655
2656 @table @option
2657 @item frequency, f
2658 Set the filter's central frequency. Default is @code{3000}.
2659
2660 @item width_type, t
2661 Set method to specify band-width of filter.
2662 @table @option
2663 @item h
2664 Hz
2665 @item q
2666 Q-Factor
2667 @item o
2668 octave
2669 @item s
2670 slope
2671 @item k
2672 kHz
2673 @end table
2674
2675 @item width, w
2676 Specify the band-width of a filter in width_type units.
2677
2678 @item mix, m
2679 How much to use filtered signal in output. Default is 1.
2680 Range is between 0 and 1.
2681
2682 @item channels, c
2683 Specify which channels to filter, by default all available are filtered.
2684
2685 @item normalize, n
2686 Normalize biquad coefficients, by default is disabled.
2687 Enabling it will normalize magnitude response at DC to 0dB.
2688 @end table
2689
2690 @subsection Commands
2691
2692 This filter supports the following commands:
2693 @table @option
2694 @item frequency, f
2695 Change bandreject frequency.
2696 Syntax for the command is : "@var{frequency}"
2697
2698 @item width_type, t
2699 Change bandreject width_type.
2700 Syntax for the command is : "@var{width_type}"
2701
2702 @item width, w
2703 Change bandreject width.
2704 Syntax for the command is : "@var{width}"
2705
2706 @item mix, m
2707 Change bandreject mix.
2708 Syntax for the command is : "@var{mix}"
2709 @end table
2710
2711 @section bass, lowshelf
2712
2713 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2714 shelving filter with a response similar to that of a standard
2715 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2716
2717 The filter accepts the following options:
2718
2719 @table @option
2720 @item gain, g
2721 Give the gain at 0 Hz. Its useful range is about -20
2722 (for a large cut) to +20 (for a large boost).
2723 Beware of clipping when using a positive gain.
2724
2725 @item frequency, f
2726 Set the filter's central frequency and so can be used
2727 to extend or reduce the frequency range to be boosted or cut.
2728 The default value is @code{100} Hz.
2729
2730 @item width_type, t
2731 Set method to specify band-width of filter.
2732 @table @option
2733 @item h
2734 Hz
2735 @item q
2736 Q-Factor
2737 @item o
2738 octave
2739 @item s
2740 slope
2741 @item k
2742 kHz
2743 @end table
2744
2745 @item width, w
2746 Determine how steep is the filter's shelf transition.
2747
2748 @item mix, m
2749 How much to use filtered signal in output. Default is 1.
2750 Range is between 0 and 1.
2751
2752 @item channels, c
2753 Specify which channels to filter, by default all available are filtered.
2754
2755 @item normalize, n
2756 Normalize biquad coefficients, by default is disabled.
2757 Enabling it will normalize magnitude response at DC to 0dB.
2758 @end table
2759
2760 @subsection Commands
2761
2762 This filter supports the following commands:
2763 @table @option
2764 @item frequency, f
2765 Change bass frequency.
2766 Syntax for the command is : "@var{frequency}"
2767
2768 @item width_type, t
2769 Change bass width_type.
2770 Syntax for the command is : "@var{width_type}"
2771
2772 @item width, w
2773 Change bass width.
2774 Syntax for the command is : "@var{width}"
2775
2776 @item gain, g
2777 Change bass gain.
2778 Syntax for the command is : "@var{gain}"
2779
2780 @item mix, m
2781 Change bass mix.
2782 Syntax for the command is : "@var{mix}"
2783 @end table
2784
2785 @section biquad
2786
2787 Apply a biquad IIR filter with the given coefficients.
2788 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2789 are the numerator and denominator coefficients respectively.
2790 and @var{channels}, @var{c} specify which channels to filter, by default all
2791 available are filtered.
2792
2793 @subsection Commands
2794
2795 This filter supports the following commands:
2796 @table @option
2797 @item a0
2798 @item a1
2799 @item a2
2800 @item b0
2801 @item b1
2802 @item b2
2803 Change biquad parameter.
2804 Syntax for the command is : "@var{value}"
2805
2806 @item mix, m
2807 How much to use filtered signal in output. Default is 1.
2808 Range is between 0 and 1.
2809
2810 @item channels, c
2811 Specify which channels to filter, by default all available are filtered.
2812
2813 @item normalize, n
2814 Normalize biquad coefficients, by default is disabled.
2815 Enabling it will normalize magnitude response at DC to 0dB.
2816 @end table
2817
2818 @section bs2b
2819 Bauer stereo to binaural transformation, which improves headphone listening of
2820 stereo audio records.
2821
2822 To enable compilation of this filter you need to configure FFmpeg with
2823 @code{--enable-libbs2b}.
2824
2825 It accepts the following parameters:
2826 @table @option
2827
2828 @item profile
2829 Pre-defined crossfeed level.
2830 @table @option
2831
2832 @item default
2833 Default level (fcut=700, feed=50).
2834
2835 @item cmoy
2836 Chu Moy circuit (fcut=700, feed=60).
2837
2838 @item jmeier
2839 Jan Meier circuit (fcut=650, feed=95).
2840
2841 @end table
2842
2843 @item fcut
2844 Cut frequency (in Hz).
2845
2846 @item feed
2847 Feed level (in Hz).
2848
2849 @end table
2850
2851 @section channelmap
2852
2853 Remap input channels to new locations.
2854
2855 It accepts the following parameters:
2856 @table @option
2857 @item map
2858 Map channels from input to output. The argument is a '|'-separated list of
2859 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2860 @var{in_channel} form. @var{in_channel} can be either the name of the input
2861 channel (e.g. FL for front left) or its index in the input channel layout.
2862 @var{out_channel} is the name of the output channel or its index in the output
2863 channel layout. If @var{out_channel} is not given then it is implicitly an
2864 index, starting with zero and increasing by one for each mapping.
2865
2866 @item channel_layout
2867 The channel layout of the output stream.
2868 @end table
2869
2870 If no mapping is present, the filter will implicitly map input channels to
2871 output channels, preserving indices.
2872
2873 @subsection Examples
2874
2875 @itemize
2876 @item
2877 For example, assuming a 5.1+downmix input MOV file,
2878 @example
2879 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2880 @end example
2881 will create an output WAV file tagged as stereo from the downmix channels of
2882 the input.
2883
2884 @item
2885 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2886 @example
2887 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2888 @end example
2889 @end itemize
2890
2891 @section channelsplit
2892
2893 Split each channel from an input audio stream into a separate output stream.
2894
2895 It accepts the following parameters:
2896 @table @option
2897 @item channel_layout
2898 The channel layout of the input stream. The default is "stereo".
2899 @item channels
2900 A channel layout describing the channels to be extracted as separate output streams
2901 or "all" to extract each input channel as a separate stream. The default is "all".
2902
2903 Choosing channels not present in channel layout in the input will result in an error.
2904 @end table
2905
2906 @subsection Examples
2907
2908 @itemize
2909 @item
2910 For example, assuming a stereo input MP3 file,
2911 @example
2912 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2913 @end example
2914 will create an output Matroska file with two audio streams, one containing only
2915 the left channel and the other the right channel.
2916
2917 @item
2918 Split a 5.1 WAV file into per-channel files:
2919 @example
2920 ffmpeg -i in.wav -filter_complex
2921 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2922 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2923 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2924 side_right.wav
2925 @end example
2926
2927 @item
2928 Extract only LFE from a 5.1 WAV file:
2929 @example
2930 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2931 -map '[LFE]' lfe.wav
2932 @end example
2933 @end itemize
2934
2935 @section chorus
2936 Add a chorus effect to the audio.
2937
2938 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2939
2940 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2941 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2942 The modulation depth defines the range the modulated delay is played before or after
2943 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2944 sound tuned around the original one, like in a chorus where some vocals are slightly
2945 off key.
2946
2947 It accepts the following parameters:
2948 @table @option
2949 @item in_gain
2950 Set input gain. Default is 0.4.
2951
2952 @item out_gain
2953 Set output gain. Default is 0.4.
2954
2955 @item delays
2956 Set delays. A typical delay is around 40ms to 60ms.
2957
2958 @item decays
2959 Set decays.
2960
2961 @item speeds
2962 Set speeds.
2963
2964 @item depths
2965 Set depths.
2966 @end table
2967
2968 @subsection Examples
2969
2970 @itemize
2971 @item
2972 A single delay:
2973 @example
2974 chorus=0.7:0.9:55:0.4:0.25:2
2975 @end example
2976
2977 @item
2978 Two delays:
2979 @example
2980 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2981 @end example
2982
2983 @item
2984 Fuller sounding chorus with three delays:
2985 @example
2986 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
2987 @end example
2988 @end itemize
2989
2990 @section compand
2991 Compress or expand the audio's dynamic range.
2992
2993 It accepts the following parameters:
2994
2995 @table @option
2996
2997 @item attacks
2998 @item decays
2999 A list of times in seconds for each channel over which the instantaneous level
3000 of the input signal is averaged to determine its volume. @var{attacks} refers to
3001 increase of volume and @var{decays} refers to decrease of volume. For most
3002 situations, the attack time (response to the audio getting louder) should be
3003 shorter than the decay time, because the human ear is more sensitive to sudden
3004 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3005 a typical value for decay is 0.8 seconds.
3006 If specified number of attacks & decays is lower than number of channels, the last
3007 set attack/decay will be used for all remaining channels.
3008
3009 @item points
3010 A list of points for the transfer function, specified in dB relative to the
3011 maximum possible signal amplitude. Each key points list must be defined using
3012 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3013 @code{x0/y0 x1/y1 x2/y2 ....}
3014
3015 The input values must be in strictly increasing order but the transfer function
3016 does not have to be monotonically rising. The point @code{0/0} is assumed but
3017 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3018 function are @code{-70/-70|-60/-20|1/0}.
3019
3020 @item soft-knee
3021 Set the curve radius in dB for all joints. It defaults to 0.01.
3022
3023 @item gain
3024 Set the additional gain in dB to be applied at all points on the transfer
3025 function. This allows for easy adjustment of the overall gain.
3026 It defaults to 0.
3027
3028 @item volume
3029 Set an initial volume, in dB, to be assumed for each channel when filtering
3030 starts. This permits the user to supply a nominal level initially, so that, for
3031 example, a very large gain is not applied to initial signal levels before the
3032 companding has begun to operate. A typical value for audio which is initially
3033 quiet is -90 dB. It defaults to 0.
3034
3035 @item delay
3036 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3037 delayed before being fed to the volume adjuster. Specifying a delay
3038 approximately equal to the attack/decay times allows the filter to effectively
3039 operate in predictive rather than reactive mode. It defaults to 0.
3040
3041 @end table
3042
3043 @subsection Examples
3044
3045 @itemize
3046 @item
3047 Make music with both quiet and loud passages suitable for listening to in a
3048 noisy environment:
3049 @example
3050 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3051 @end example
3052
3053 Another example for audio with whisper and explosion parts:
3054 @example
3055 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3056 @end example
3057
3058 @item
3059 A noise gate for when the noise is at a lower level than the signal:
3060 @example
3061 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3062 @end example
3063
3064 @item
3065 Here is another noise gate, this time for when the noise is at a higher level
3066 than the signal (making it, in some ways, similar to squelch):
3067 @example
3068 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3069 @end example
3070
3071 @item
3072 2:1 compression starting at -6dB:
3073 @example
3074 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3075 @end example
3076
3077 @item
3078 2:1 compression starting at -9dB:
3079 @example
3080 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3081 @end example
3082
3083 @item
3084 2:1 compression starting at -12dB:
3085 @example
3086 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3087 @end example
3088
3089 @item
3090 2:1 compression starting at -18dB:
3091 @example
3092 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3093 @end example
3094
3095 @item
3096 3:1 compression starting at -15dB:
3097 @example
3098 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3099 @end example
3100
3101 @item
3102 Compressor/Gate:
3103 @example
3104 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3105 @end example
3106
3107 @item
3108 Expander:
3109 @example
3110 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
3111 @end example
3112
3113 @item
3114 Hard limiter at -6dB:
3115 @example
3116 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3117 @end example
3118
3119 @item
3120 Hard limiter at -12dB:
3121 @example
3122 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3123 @end example
3124
3125 @item
3126 Hard noise gate at -35 dB:
3127 @example
3128 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3129 @end example
3130
3131 @item
3132 Soft limiter:
3133 @example
3134 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3135 @end example
3136 @end itemize
3137
3138 @section compensationdelay
3139
3140 Compensation Delay Line is a metric based delay to compensate differing
3141 positions of microphones or speakers.
3142
3143 For example, you have recorded guitar with two microphones placed in
3144 different locations. Because the front of sound wave has fixed speed in
3145 normal conditions, the phasing of microphones can vary and depends on
3146 their location and interposition. The best sound mix can be achieved when
3147 these microphones are in phase (synchronized). Note that a distance of
3148 ~30 cm between microphones makes one microphone capture the signal in
3149 antiphase to the other microphone. That makes the final mix sound moody.
3150 This filter helps to solve phasing problems by adding different delays
3151 to each microphone track and make them synchronized.
3152
3153 The best result can be reached when you take one track as base and
3154 synchronize other tracks one by one with it.
3155 Remember that synchronization/delay tolerance depends on sample rate, too.
3156 Higher sample rates will give more tolerance.
3157
3158 The filter accepts the following parameters:
3159
3160 @table @option
3161 @item mm
3162 Set millimeters distance. This is compensation distance for fine tuning.
3163 Default is 0.
3164
3165 @item cm
3166 Set cm distance. This is compensation distance for tightening distance setup.
3167 Default is 0.
3168
3169 @item m
3170 Set meters distance. This is compensation distance for hard distance setup.
3171 Default is 0.
3172
3173 @item dry
3174 Set dry amount. Amount of unprocessed (dry) signal.
3175 Default is 0.
3176
3177 @item wet
3178 Set wet amount. Amount of processed (wet) signal.
3179 Default is 1.
3180
3181 @item temp
3182 Set temperature in degrees Celsius. This is the temperature of the environment.
3183 Default is 20.
3184 @end table
3185
3186 @section crossfeed
3187 Apply headphone crossfeed filter.
3188
3189 Crossfeed is the process of blending the left and right channels of stereo
3190 audio recording.
3191 It is mainly used to reduce extreme stereo separation of low frequencies.
3192
3193 The intent is to produce more speaker like sound to the listener.
3194
3195 The filter accepts the following options:
3196
3197 @table @option
3198 @item strength
3199 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3200 This sets gain of low shelf filter for side part of stereo image.
3201 Default is -6dB. Max allowed is -30db when strength is set to 1.
3202
3203 @item range
3204 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3205 This sets cut off frequency of low shelf filter. Default is cut off near
3206 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3207
3208 @item level_in
3209 Set input gain. Default is 0.9.
3210
3211 @item level_out
3212 Set output gain. Default is 1.
3213 @end table
3214
3215 @section crystalizer
3216 Simple algorithm to expand audio dynamic range.
3217
3218 The filter accepts the following options:
3219
3220 @table @option
3221 @item i
3222 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3223 (unchanged sound) to 10.0 (maximum effect).
3224
3225 @item c
3226 Enable clipping. By default is enabled.
3227 @end table
3228
3229 @subsection Commands
3230
3231 This filter supports the all above options as @ref{commands}.
3232
3233 @section dcshift
3234 Apply a DC shift to the audio.
3235
3236 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3237 in the recording chain) from the audio. The effect of a DC offset is reduced
3238 headroom and hence volume. The @ref{astats} filter can be used to determine if
3239 a signal has a DC offset.
3240
3241 @table @option
3242 @item shift
3243 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3244 the audio.
3245
3246 @item limitergain
3247 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3248 used to prevent clipping.
3249 @end table
3250
3251 @section deesser
3252
3253 Apply de-essing to the audio samples.
3254
3255 @table @option
3256 @item i
3257 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3258 Default is 0.
3259
3260 @item m
3261 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3262 Default is 0.5.
3263
3264 @item f
3265 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3266 Default is 0.5.
3267
3268 @item s
3269 Set the output mode.
3270
3271 It accepts the following values:
3272 @table @option
3273 @item i
3274 Pass input unchanged.
3275
3276 @item o
3277 Pass ess filtered out.
3278
3279 @item e
3280 Pass only ess.
3281
3282 Default value is @var{o}.
3283 @end table
3284
3285 @end table
3286
3287 @section drmeter
3288 Measure audio dynamic range.
3289
3290 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3291 is found in transition material. And anything less that 8 have very poor dynamics
3292 and is very compressed.
3293
3294 The filter accepts the following options:
3295
3296 @table @option
3297 @item length
3298 Set window length in seconds used to split audio into segments of equal length.
3299 Default is 3 seconds.
3300 @end table
3301
3302 @section dynaudnorm
3303 Dynamic Audio Normalizer.
3304
3305 This filter applies a certain amount of gain to the input audio in order
3306 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3307 contrast to more "simple" normalization algorithms, the Dynamic Audio
3308 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3309 This allows for applying extra gain to the "quiet" sections of the audio
3310 while avoiding distortions or clipping the "loud" sections. In other words:
3311 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3312 sections, in the sense that the volume of each section is brought to the
3313 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3314 this goal *without* applying "dynamic range compressing". It will retain 100%
3315 of the dynamic range *within* each section of the audio file.
3316
3317 @table @option
3318 @item framelen, f
3319 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3320 Default is 500 milliseconds.
3321 The Dynamic Audio Normalizer processes the input audio in small chunks,
3322 referred to as frames. This is required, because a peak magnitude has no
3323 meaning for just a single sample value. Instead, we need to determine the
3324 peak magnitude for a contiguous sequence of sample values. While a "standard"
3325 normalizer would simply use the peak magnitude of the complete file, the
3326 Dynamic Audio Normalizer determines the peak magnitude individually for each
3327 frame. The length of a frame is specified in milliseconds. By default, the
3328 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3329 been found to give good results with most files.
3330 Note that the exact frame length, in number of samples, will be determined
3331 automatically, based on the sampling rate of the individual input audio file.
3332
3333 @item gausssize, g
3334 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3335 number. Default is 31.
3336 Probably the most important parameter of the Dynamic Audio Normalizer is the
3337 @code{window size} of the Gaussian smoothing filter. The filter's window size
3338 is specified in frames, centered around the current frame. For the sake of
3339 simplicity, this must be an odd number. Consequently, the default value of 31
3340 takes into account the current frame, as well as the 15 preceding frames and
3341 the 15 subsequent frames. Using a larger window results in a stronger
3342 smoothing effect and thus in less gain variation, i.e. slower gain
3343 adaptation. Conversely, using a smaller window results in a weaker smoothing
3344 effect and thus in more gain variation, i.e. faster gain adaptation.
3345 In other words, the more you increase this value, the more the Dynamic Audio
3346 Normalizer will behave like a "traditional" normalization filter. On the
3347 contrary, the more you decrease this value, the more the Dynamic Audio
3348 Normalizer will behave like a dynamic range compressor.
3349
3350 @item peak, p
3351 Set the target peak value. This specifies the highest permissible magnitude
3352 level for the normalized audio input. This filter will try to approach the
3353 target peak magnitude as closely as possible, but at the same time it also
3354 makes sure that the normalized signal will never exceed the peak magnitude.
3355 A frame's maximum local gain factor is imposed directly by the target peak
3356 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3357 It is not recommended to go above this value.
3358
3359 @item maxgain, m
3360 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3361 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3362 factor for each input frame, i.e. the maximum gain factor that does not
3363 result in clipping or distortion. The maximum gain factor is determined by
3364 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3365 additionally bounds the frame's maximum gain factor by a predetermined
3366 (global) maximum gain factor. This is done in order to avoid excessive gain
3367 factors in "silent" or almost silent frames. By default, the maximum gain
3368 factor is 10.0, For most inputs the default value should be sufficient and
3369 it usually is not recommended to increase this value. Though, for input
3370 with an extremely low overall volume level, it may be necessary to allow even
3371 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3372 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3373 Instead, a "sigmoid" threshold function will be applied. This way, the
3374 gain factors will smoothly approach the threshold value, but never exceed that
3375 value.
3376
3377 @item targetrms, r
3378 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3379 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3380 This means that the maximum local gain factor for each frame is defined
3381 (only) by the frame's highest magnitude sample. This way, the samples can
3382 be amplified as much as possible without exceeding the maximum signal
3383 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3384 Normalizer can also take into account the frame's root mean square,
3385 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3386 determine the power of a time-varying signal. It is therefore considered
3387 that the RMS is a better approximation of the "perceived loudness" than
3388 just looking at the signal's peak magnitude. Consequently, by adjusting all
3389 frames to a constant RMS value, a uniform "perceived loudness" can be
3390 established. If a target RMS value has been specified, a frame's local gain
3391 factor is defined as the factor that would result in exactly that RMS value.
3392 Note, however, that the maximum local gain factor is still restricted by the
3393 frame's highest magnitude sample, in order to prevent clipping.
3394
3395 @item coupling, n
3396 Enable channels coupling. By default is enabled.
3397 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3398 amount. This means the same gain factor will be applied to all channels, i.e.
3399 the maximum possible gain factor is determined by the "loudest" channel.
3400 However, in some recordings, it may happen that the volume of the different
3401 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3402 In this case, this option can be used to disable the channel coupling. This way,
3403 the gain factor will be determined independently for each channel, depending
3404 only on the individual channel's highest magnitude sample. This allows for
3405 harmonizing the volume of the different channels.
3406
3407 @item correctdc, c
3408 Enable DC bias correction. By default is disabled.
3409 An audio signal (in the time domain) is a sequence of sample values.
3410 In the Dynamic Audio Normalizer these sample values are represented in the
3411 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3412 audio signal, or "waveform", should be centered around the zero point.
3413 That means if we calculate the mean value of all samples in a file, or in a
3414 single frame, then the result should be 0.0 or at least very close to that
3415 value. If, however, there is a significant deviation of the mean value from
3416 0.0, in either positive or negative direction, this is referred to as a
3417 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3418 Audio Normalizer provides optional DC bias correction.
3419 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3420 the mean value, or "DC correction" offset, of each input frame and subtract
3421 that value from all of the frame's sample values which ensures those samples
3422 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3423 boundaries, the DC correction offset values will be interpolated smoothly
3424 between neighbouring frames.
3425
3426 @item altboundary, b
3427 Enable alternative boundary mode. By default is disabled.
3428 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3429 around each frame. This includes the preceding frames as well as the
3430 subsequent frames. However, for the "boundary" frames, located at the very
3431 beginning and at the very end of the audio file, not all neighbouring
3432 frames are available. In particular, for the first few frames in the audio
3433 file, the preceding frames are not known. And, similarly, for the last few
3434 frames in the audio file, the subsequent frames are not known. Thus, the
3435 question arises which gain factors should be assumed for the missing frames
3436 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3437 to deal with this situation. The default boundary mode assumes a gain factor
3438 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3439 "fade out" at the beginning and at the end of the input, respectively.
3440
3441 @item compress, s
3442 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3443 By default, the Dynamic Audio Normalizer does not apply "traditional"
3444 compression. This means that signal peaks will not be pruned and thus the
3445 full dynamic range will be retained within each local neighbourhood. However,
3446 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3447 normalization algorithm with a more "traditional" compression.
3448 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3449 (thresholding) function. If (and only if) the compression feature is enabled,
3450 all input frames will be processed by a soft knee thresholding function prior
3451 to the actual normalization process. Put simply, the thresholding function is
3452 going to prune all samples whose magnitude exceeds a certain threshold value.
3453 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3454 value. Instead, the threshold value will be adjusted for each individual
3455 frame.
3456 In general, smaller parameters result in stronger compression, and vice versa.
3457 Values below 3.0 are not recommended, because audible distortion may appear.
3458
3459 @item threshold, t
3460 Set the target threshold value. This specifies the lowest permissible
3461 magnitude level for the audio input which will be normalized.
3462 If input frame volume is above this value frame will be normalized.
3463 Otherwise frame may not be normalized at all. The default value is set
3464 to 0, which means all input frames will be normalized.
3465 This option is mostly useful if digital noise is not wanted to be amplified.
3466 @end table
3467
3468 @subsection Commands
3469
3470 This filter supports the all above options as @ref{commands}.
3471
3472 @section earwax
3473
3474 Make audio easier to listen to on headphones.
3475
3476 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3477 so that when listened to on headphones the stereo image is moved from
3478 inside your head (standard for headphones) to outside and in front of
3479 the listener (standard for speakers).
3480
3481 Ported from SoX.
3482
3483 @section equalizer
3484
3485 Apply a two-pole peaking equalisation (EQ) filter. With this
3486 filter, the signal-level at and around a selected frequency can
3487 be increased or decreased, whilst (unlike bandpass and bandreject
3488 filters) that at all other frequencies is unchanged.
3489
3490 In order to produce complex equalisation curves, this filter can
3491 be given several times, each with a different central frequency.
3492
3493 The filter accepts the following options:
3494
3495 @table @option
3496 @item frequency, f
3497 Set the filter's central frequency in Hz.
3498
3499 @item width_type, t
3500 Set method to specify band-width of filter.
3501 @table @option
3502 @item h
3503 Hz
3504 @item q
3505 Q-Factor
3506 @item o
3507 octave
3508 @item s
3509 slope
3510 @item k
3511 kHz
3512 @end table
3513
3514 @item width, w
3515 Specify the band-width of a filter in width_type units.
3516
3517 @item gain, g
3518 Set the required gain or attenuation in dB.
3519 Beware of clipping when using a positive gain.
3520
3521 @item mix, m
3522 How much to use filtered signal in output. Default is 1.
3523 Range is between 0 and 1.
3524
3525 @item channels, c
3526 Specify which channels to filter, by default all available are filtered.
3527
3528 @item normalize, n
3529 Normalize biquad coefficients, by default is disabled.
3530 Enabling it will normalize magnitude response at DC to 0dB.
3531 @end table
3532
3533 @subsection Examples
3534 @itemize
3535 @item
3536 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3537 @example
3538 equalizer=f=1000:t=h:width=200:g=-10
3539 @end example
3540
3541 @item
3542 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3543 @example
3544 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3545 @end example
3546 @end itemize
3547
3548 @subsection Commands
3549
3550 This filter supports the following commands:
3551 @table @option
3552 @item frequency, f
3553 Change equalizer frequency.
3554 Syntax for the command is : "@var{frequency}"
3555
3556 @item width_type, t
3557 Change equalizer width_type.
3558 Syntax for the command is : "@var{width_type}"
3559
3560 @item width, w
3561 Change equalizer width.
3562 Syntax for the command is : "@var{width}"
3563
3564 @item gain, g
3565 Change equalizer gain.
3566 Syntax for the command is : "@var{gain}"
3567
3568 @item mix, m
3569 Change equalizer mix.
3570 Syntax for the command is : "@var{mix}"
3571 @end table
3572
3573 @section extrastereo
3574
3575 Linearly increases the difference between left and right channels which
3576 adds some sort of "live" effect to playback.
3577
3578 The filter accepts the following options:
3579
3580 @table @option
3581 @item m
3582 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3583 (average of both channels), with 1.0 sound will be unchanged, with
3584 -1.0 left and right channels will be swapped.
3585
3586 @item c
3587 Enable clipping. By default is enabled.
3588 @end table
3589
3590 @subsection Commands
3591
3592 This filter supports the all above options as @ref{commands}.
3593
3594 @section firequalizer
3595 Apply FIR Equalization using arbitrary frequency response.
3596
3597 The filter accepts the following option:
3598
3599 @table @option
3600 @item gain
3601 Set gain curve equation (in dB). The expression can contain variables:
3602 @table @option
3603 @item f
3604 the evaluated frequency
3605 @item sr
3606 sample rate
3607 @item ch
3608 channel number, set to 0 when multichannels evaluation is disabled
3609 @item chid
3610 channel id, see libavutil/channel_layout.h, set to the first channel id when
3611 multichannels evaluation is disabled
3612 @item chs
3613 number of channels
3614 @item chlayout
3615 channel_layout, see libavutil/channel_layout.h
3616
3617 @end table
3618 and functions:
3619 @table @option
3620 @item gain_interpolate(f)
3621 interpolate gain on frequency f based on gain_entry
3622 @item cubic_interpolate(f)
3623 same as gain_interpolate, but smoother
3624 @end table
3625 This option is also available as command. Default is @code{gain_interpolate(f)}.
3626
3627 @item gain_entry
3628 Set gain entry for gain_interpolate function. The expression can
3629 contain functions:
3630 @table @option
3631 @item entry(f, g)
3632 store gain entry at frequency f with value g
3633 @end table
3634 This option is also available as command.
3635
3636 @item delay
3637 Set filter delay in seconds. Higher value means more accurate.
3638 Default is @code{0.01}.
3639
3640 @item accuracy
3641 Set filter accuracy in Hz. Lower value means more accurate.
3642 Default is @code{5}.
3643
3644 @item wfunc
3645 Set window function. Acceptable values are:
3646 @table @option
3647 @item rectangular
3648 rectangular window, useful when gain curve is already smooth
3649 @item hann
3650 hann window (default)
3651 @item hamming
3652 hamming window
3653 @item blackman
3654 blackman window
3655 @item nuttall3
3656 3-terms continuous 1st derivative nuttall window
3657 @item mnuttall3
3658 minimum 3-terms discontinuous nuttall window
3659 @item nuttall
3660 4-terms continuous 1st derivative nuttall window
3661 @item bnuttall
3662 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3663 @item bharris
3664 blackman-harris window
3665 @item tukey
3666 tukey window
3667 @end table
3668
3669 @item fixed
3670 If enabled, use fixed number of audio samples. This improves speed when
3671 filtering with large delay. Default is disabled.
3672
3673 @item multi
3674 Enable multichannels evaluation on gain. Default is disabled.
3675
3676 @item zero_phase
3677 Enable zero phase mode by subtracting timestamp to compensate delay.
3678 Default is disabled.
3679
3680 @item scale
3681 Set scale used by gain. Acceptable values are:
3682 @table @option
3683 @item linlin
3684 linear frequency, linear gain
3685 @item linlog
3686 linear frequency, logarithmic (in dB) gain (default)
3687 @item loglin
3688 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3689 @item loglog
3690 logarithmic frequency, logarithmic gain
3691 @end table
3692
3693 @item dumpfile
3694 Set file for dumping, suitable for gnuplot.
3695
3696 @item dumpscale
3697 Set scale for dumpfile. Acceptable values are same with scale option.
3698 Default is linlog.
3699
3700 @item fft2
3701 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3702 Default is disabled.
3703
3704 @item min_phase
3705 Enable minimum phase impulse response. Default is disabled.
3706 @end table
3707
3708 @subsection Examples
3709 @itemize
3710 @item
3711 lowpass at 1000 Hz:
3712 @example
3713 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3714 @end example
3715 @item
3716 lowpass at 1000 Hz with gain_entry:
3717 @example
3718 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3719 @end example
3720 @item
3721 custom equalization:
3722 @example
3723 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3724 @end example
3725 @item
3726 higher delay with zero phase to compensate delay:
3727 @example
3728 firequalizer=delay=0.1:fixed=on:zero_phase=on
3729 @end example
3730 @item
3731 lowpass on left channel, highpass on right channel:
3732 @example
3733 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3734 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3735 @end example
3736 @end itemize
3737
3738 @section flanger
3739 Apply a flanging effect to the audio.
3740
3741 The filter accepts the following options:
3742
3743 @table @option
3744 @item delay
3745 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3746
3747 @item depth
3748 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3749
3750 @item regen
3751 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3752 Default value is 0.
3753
3754 @item width
3755 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3756 Default value is 71.
3757
3758 @item speed
3759 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3760
3761 @item shape
3762 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3763 Default value is @var{sinusoidal}.
3764
3765 @item phase
3766 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3767 Default value is 25.
3768
3769 @item interp
3770 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3771 Default is @var{linear}.
3772 @end table
3773
3774 @section haas
3775 Apply Haas effect to audio.
3776
3777 Note that this makes most sense to apply on mono signals.
3778 With this filter applied to mono signals it give some directionality and
3779 stretches its stereo image.
3780
3781 The filter accepts the following options:
3782
3783 @table @option
3784 @item level_in
3785 Set input level. By default is @var{1}, or 0dB
3786
3787 @item level_out
3788 Set output level. By default is @var{1}, or 0dB.
3789
3790 @item side_gain
3791 Set gain applied to side part of signal. By default is @var{1}.
3792
3793 @item middle_source
3794 Set kind of middle source. Can be one of the following:
3795
3796 @table @samp
3797 @item left
3798 Pick left channel.
3799
3800 @item right
3801 Pick right channel.
3802
3803 @item mid
3804 Pick middle part signal of stereo image.
3805
3806 @item side
3807 Pick side part signal of stereo image.
3808 @end table
3809
3810 @item middle_phase
3811 Change middle phase. By default is disabled.
3812
3813 @item left_delay
3814 Set left channel delay. By default is @var{2.05} milliseconds.
3815
3816 @item left_balance
3817 Set left channel balance. By default is @var{-1}.
3818
3819 @item left_gain
3820 Set left channel gain. By default is @var{1}.
3821
3822 @item left_phase
3823 Change left phase. By default is disabled.
3824
3825 @item right_delay
3826 Set right channel delay. By defaults is @var{2.12} milliseconds.
3827
3828 @item right_balance
3829 Set right channel balance. By default is @var{1}.
3830
3831 @item right_gain
3832 Set right channel gain. By default is @var{1}.
3833
3834 @item right_phase
3835 Change right phase. By default is enabled.
3836 @end table
3837
3838 @section hdcd
3839
3840 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3841 embedded HDCD codes is expanded into a 20-bit PCM stream.
3842
3843 The filter supports the Peak Extend and Low-level Gain Adjustment features
3844 of HDCD, and detects the Transient Filter flag.
3845
3846 @example
3847 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3848 @end example
3849
3850 When using the filter with wav, note the default encoding for wav is 16-bit,
3851 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3852 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3853 @example
3854 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3855 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3856 @end example
3857
3858 The filter accepts the following options:
3859
3860 @table @option
3861 @item disable_autoconvert
3862 Disable any automatic format conversion or resampling in the filter graph.
3863
3864 @item process_stereo
3865 Process the stereo channels together. If target_gain does not match between
3866 channels, consider it invalid and use the last valid target_gain.
3867
3868 @item cdt_ms
3869 Set the code detect timer period in ms.
3870
3871 @item force_pe
3872 Always extend peaks above -3dBFS even if PE isn't signaled.
3873
3874 @item analyze_mode
3875 Replace audio with a solid tone and adjust the amplitude to signal some
3876 specific aspect of the decoding process. The output file can be loaded in
3877 an audio editor alongside the original to aid analysis.
3878
3879 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3880
3881 Modes are:
3882 @table @samp
3883 @item 0, off
3884 Disabled
3885 @item 1, lle
3886 Gain adjustment level at each sample
3887 @item 2, pe
3888 Samples where peak extend occurs
3889 @item 3, cdt
3890 Samples where the code detect timer is active
3891 @item 4, tgm
3892 Samples where the target gain does not match between channels
3893 @end table
3894 @end table
3895
3896 @section headphone
3897
3898 Apply head-related transfer functions (HRTFs) to create virtual
3899 loudspeakers around the user for binaural listening via headphones.
3900 The HRIRs are provided via additional streams, for each channel
3901 one stereo input stream is needed.
3902
3903 The filter accepts the following options:
3904
3905 @table @option
3906 @item map
3907 Set mapping of input streams for convolution.
3908 The argument is a '|'-separated list of channel names in order as they
3909 are given as additional stream inputs for filter.
3910 This also specify number of input streams. Number of input streams
3911 must be not less than number of channels in first stream plus one.
3912
3913 @item gain
3914 Set gain applied to audio. Value is in dB. Default is 0.
3915
3916 @item type
3917 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3918 processing audio in time domain which is slow.
3919 @var{freq} is processing audio in frequency domain which is fast.
3920 Default is @var{freq}.
3921
3922 @item lfe
3923 Set custom gain for LFE channels. Value is in dB. Default is 0.
3924
3925 @item size
3926 Set size of frame in number of samples which will be processed at once.
3927 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3928
3929 @item hrir
3930 Set format of hrir stream.
3931 Default value is @var{stereo}. Alternative value is @var{multich}.
3932 If value is set to @var{stereo}, number of additional streams should
3933 be greater or equal to number of input channels in first input stream.
3934 Also each additional stream should have stereo number of channels.
3935 If value is set to @var{multich}, number of additional streams should
3936 be exactly one. Also number of input channels of additional stream
3937 should be equal or greater than twice number of channels of first input
3938 stream.
3939 @end table
3940
3941 @subsection Examples
3942
3943 @itemize
3944 @item
3945 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3946 each amovie filter use stereo file with IR coefficients as input.
3947 The files give coefficients for each position of virtual loudspeaker:
3948 @example
3949 ffmpeg -i input.wav
3950 -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"
3951 output.wav
3952 @end example
3953
3954 @item
3955 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3956 but now in @var{multich} @var{hrir} format.
3957 @example
3958 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"
3959 output.wav
3960 @end example
3961 @end itemize
3962
3963 @section highpass
3964
3965 Apply a high-pass filter with 3dB point frequency.
3966 The filter can be either single-pole, or double-pole (the default).
3967 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3968
3969 The filter accepts the following options:
3970
3971 @table @option
3972 @item frequency, f
3973 Set frequency in Hz. Default is 3000.
3974
3975 @item poles, p
3976 Set number of poles. Default is 2.
3977
3978 @item width_type, t
3979 Set method to specify band-width of filter.
3980 @table @option
3981 @item h
3982 Hz
3983 @item q
3984 Q-Factor
3985 @item o
3986 octave
3987 @item s
3988 slope
3989 @item k
3990 kHz
3991 @end table
3992
3993 @item width, w
3994 Specify the band-width of a filter in width_type units.
3995 Applies only to double-pole filter.
3996 The default is 0.707q and gives a Butterworth response.
3997
3998 @item mix, m
3999 How much to use filtered signal in output. Default is 1.
4000 Range is between 0 and 1.
4001
4002 @item channels, c
4003 Specify which channels to filter, by default all available are filtered.
4004
4005 @item normalize, n
4006 Normalize biquad coefficients, by default is disabled.
4007 Enabling it will normalize magnitude response at DC to 0dB.
4008 @end table
4009
4010 @subsection Commands
4011
4012 This filter supports the following commands:
4013 @table @option
4014 @item frequency, f
4015 Change highpass frequency.
4016 Syntax for the command is : "@var{frequency}"
4017
4018 @item width_type, t
4019 Change highpass width_type.
4020 Syntax for the command is : "@var{width_type}"
4021
4022 @item width, w
4023 Change highpass width.
4024 Syntax for the command is : "@var{width}"
4025
4026 @item mix, m
4027 Change highpass mix.
4028 Syntax for the command is : "@var{mix}"
4029 @end table
4030
4031 @section join
4032
4033 Join multiple input streams into one multi-channel stream.
4034
4035 It accepts the following parameters:
4036 @table @option
4037
4038 @item inputs
4039 The number of input streams. It defaults to 2.
4040
4041 @item channel_layout
4042 The desired output channel layout. It defaults to stereo.
4043
4044 @item map
4045 Map channels from inputs to output. The argument is a '|'-separated list of
4046 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4047 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4048 can be either the name of the input channel (e.g. FL for front left) or its
4049 index in the specified input stream. @var{out_channel} is the name of the output
4050 channel.
4051 @end table
4052
4053 The filter will attempt to guess the mappings when they are not specified
4054 explicitly. It does so by first trying to find an unused matching input channel
4055 and if that fails it picks the first unused input channel.
4056
4057 Join 3 inputs (with properly set channel layouts):
4058 @example
4059 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4060 @end example
4061
4062 Build a 5.1 output from 6 single-channel streams:
4063 @example
4064 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4065 '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'
4066 out
4067 @end example
4068
4069 @section ladspa
4070
4071 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4072
4073 To enable compilation of this filter you need to configure FFmpeg with
4074 @code{--enable-ladspa}.
4075
4076 @table @option
4077 @item file, f
4078 Specifies the name of LADSPA plugin library to load. If the environment
4079 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4080 each one of the directories specified by the colon separated list in
4081 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4082 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4083 @file{/usr/lib/ladspa/}.
4084
4085 @item plugin, p
4086 Specifies the plugin within the library. Some libraries contain only
4087 one plugin, but others contain many of them. If this is not set filter
4088 will list all available plugins within the specified library.
4089
4090 @item controls, c
4091 Set the '|' separated list of controls which are zero or more floating point
4092 values that determine the behavior of the loaded plugin (for example delay,
4093 threshold or gain).
4094 Controls need to be defined using the following syntax:
4095 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4096 @var{valuei} is the value set on the @var{i}-th control.
4097 Alternatively they can be also defined using the following syntax:
4098 @var{value0}|@var{value1}|@var{value2}|..., where
4099 @var{valuei} is the value set on the @var{i}-th control.
4100 If @option{controls} is set to @code{help}, all available controls and
4101 their valid ranges are printed.
4102
4103 @item sample_rate, s
4104 Specify the sample rate, default to 44100. Only used if plugin have
4105 zero inputs.
4106
4107 @item nb_samples, n
4108 Set the number of samples per channel per each output frame, default
4109 is 1024. Only used if plugin have zero inputs.
4110
4111 @item duration, d
4112 Set the minimum duration of the sourced audio. See
4113 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4114 for the accepted syntax.
4115 Note that the resulting duration may be greater than the specified duration,
4116 as the generated audio is always cut at the end of a complete frame.
4117 If not specified, or the expressed duration is negative, the audio is
4118 supposed to be generated forever.
4119 Only used if plugin have zero inputs.
4120
4121 @end table
4122
4123 @subsection Examples
4124
4125 @itemize
4126 @item
4127 List all available plugins within amp (LADSPA example plugin) library:
4128 @example
4129 ladspa=file=amp
4130 @end example
4131
4132 @item
4133 List all available controls and their valid ranges for @code{vcf_notch}
4134 plugin from @code{VCF} library:
4135 @example
4136 ladspa=f=vcf:p=vcf_notch:c=help
4137 @end example
4138
4139 @item
4140 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4141 plugin library:
4142 @example
4143 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4144 @end example
4145
4146 @item
4147 Add reverberation to the audio using TAP-plugins
4148 (Tom's Audio Processing plugins):
4149 @example
4150 ladspa=file=tap_reverb:tap_reverb
4151 @end example
4152
4153 @item
4154 Generate white noise, with 0.2 amplitude:
4155 @example
4156 ladspa=file=cmt:noise_source_white:c=c0=.2
4157 @end example
4158
4159 @item
4160 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4161 @code{C* Audio Plugin Suite} (CAPS) library:
4162 @example
4163 ladspa=file=caps:Click:c=c1=20'
4164 @end example
4165
4166 @item
4167 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4168 @example
4169 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4170 @end example
4171
4172 @item
4173 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4174 @code{SWH Plugins} collection:
4175 @example
4176 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4177 @end example
4178
4179 @item
4180 Attenuate low frequencies using Multiband EQ from Steve Harris
4181 @code{SWH Plugins} collection:
4182 @example
4183 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4184 @end example
4185
4186 @item
4187 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4188 (CAPS) library:
4189 @example
4190 ladspa=caps:Narrower
4191 @end example
4192
4193 @item
4194 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4195 @example
4196 ladspa=caps:White:.2
4197 @end example
4198
4199 @item
4200 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4201 @example
4202 ladspa=caps:Fractal:c=c1=1
4203 @end example
4204
4205 @item
4206 Dynamic volume normalization using @code{VLevel} plugin:
4207 @example
4208 ladspa=vlevel-ladspa:vlevel_mono
4209 @end example
4210 @end itemize
4211
4212 @subsection Commands
4213
4214 This filter supports the following commands:
4215 @table @option
4216 @item cN
4217 Modify the @var{N}-th control value.
4218
4219 If the specified value is not valid, it is ignored and prior one is kept.
4220 @end table
4221
4222 @section loudnorm
4223
4224 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4225 Support for both single pass (livestreams, files) and double pass (files) modes.
4226 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4227 detect true peaks, the audio stream will be upsampled to 192 kHz.
4228 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4229
4230 The filter accepts the following options:
4231
4232 @table @option
4233 @item I, i
4234 Set integrated loudness target.
4235 Range is -70.0 - -5.0. Default value is -24.0.
4236
4237 @item LRA, lra
4238 Set loudness range target.
4239 Range is 1.0 - 20.0. Default value is 7.0.
4240
4241 @item TP, tp
4242 Set maximum true peak.
4243 Range is -9.0 - +0.0. Default value is -2.0.
4244
4245 @item measured_I, measured_i
4246 Measured IL of input file.
4247 Range is -99.0 - +0.0.
4248
4249 @item measured_LRA, measured_lra
4250 Measured LRA of input file.
4251 Range is  0.0 - 99.0.
4252
4253 @item measured_TP, measured_tp
4254 Measured true peak of input file.
4255 Range is  -99.0 - +99.0.
4256
4257 @item measured_thresh
4258 Measured threshold of input file.
4259 Range is -99.0 - +0.0.
4260
4261 @item offset
4262 Set offset gain. Gain is applied before the true-peak limiter.
4263 Range is  -99.0 - +99.0. Default is +0.0.
4264
4265 @item linear
4266 Normalize by linearly scaling the source audio.
4267 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4268 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4269 be lower than source LRA and the change in integrated loudness shouldn't
4270 result in a true peak which exceeds the target TP. If any of these
4271 conditions aren't met, normalization mode will revert to @var{dynamic}.
4272 Options are @code{true} or @code{false}. Default is @code{true}.
4273
4274 @item dual_mono
4275 Treat mono input files as "dual-mono". If a mono file is intended for playback
4276 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4277 If set to @code{true}, this option will compensate for this effect.
4278 Multi-channel input files are not affected by this option.
4279 Options are true or false. Default is false.
4280
4281 @item print_format
4282 Set print format for stats. Options are summary, json, or none.
4283 Default value is none.
4284 @end table
4285
4286 @section lowpass
4287
4288 Apply a low-pass filter with 3dB point frequency.
4289 The filter can be either single-pole or double-pole (the default).
4290 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4291
4292 The filter accepts the following options:
4293
4294 @table @option
4295 @item frequency, f
4296 Set frequency in Hz. Default is 500.
4297
4298 @item poles, p
4299 Set number of poles. Default is 2.
4300
4301 @item width_type, t
4302 Set method to specify band-width of filter.
4303 @table @option
4304 @item h
4305 Hz
4306 @item q
4307 Q-Factor
4308 @item o
4309 octave
4310 @item s
4311 slope
4312 @item k
4313 kHz
4314 @end table
4315
4316 @item width, w
4317 Specify the band-width of a filter in width_type units.
4318 Applies only to double-pole filter.
4319 The default is 0.707q and gives a Butterworth response.
4320
4321 @item mix, m
4322 How much to use filtered signal in output. Default is 1.
4323 Range is between 0 and 1.
4324
4325 @item channels, c
4326 Specify which channels to filter, by default all available are filtered.
4327
4328 @item normalize, n
4329 Normalize biquad coefficients, by default is disabled.
4330 Enabling it will normalize magnitude response at DC to 0dB.
4331 @end table
4332
4333 @subsection Examples
4334 @itemize
4335 @item
4336 Lowpass only LFE channel, it LFE is not present it does nothing:
4337 @example
4338 lowpass=c=LFE
4339 @end example
4340 @end itemize
4341
4342 @subsection Commands
4343
4344 This filter supports the following commands:
4345 @table @option
4346 @item frequency, f
4347 Change lowpass frequency.
4348 Syntax for the command is : "@var{frequency}"
4349
4350 @item width_type, t
4351 Change lowpass width_type.
4352 Syntax for the command is : "@var{width_type}"
4353
4354 @item width, w
4355 Change lowpass width.
4356 Syntax for the command is : "@var{width}"
4357
4358 @item mix, m
4359 Change lowpass mix.
4360 Syntax for the command is : "@var{mix}"
4361 @end table
4362
4363 @section lv2
4364
4365 Load a LV2 (LADSPA Version 2) plugin.
4366
4367 To enable compilation of this filter you need to configure FFmpeg with
4368 @code{--enable-lv2}.
4369
4370 @table @option
4371 @item plugin, p
4372 Specifies the plugin URI. You may need to escape ':'.
4373
4374 @item controls, c
4375 Set the '|' separated list of controls which are zero or more floating point
4376 values that determine the behavior of the loaded plugin (for example delay,
4377 threshold or gain).
4378 If @option{controls} is set to @code{help}, all available controls and
4379 their valid ranges are printed.
4380
4381 @item sample_rate, s
4382 Specify the sample rate, default to 44100. Only used if plugin have
4383 zero inputs.
4384
4385 @item nb_samples, n
4386 Set the number of samples per channel per each output frame, default
4387 is 1024. Only used if plugin have zero inputs.
4388
4389 @item duration, d
4390 Set the minimum duration of the sourced audio. See
4391 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4392 for the accepted syntax.
4393 Note that the resulting duration may be greater than the specified duration,
4394 as the generated audio is always cut at the end of a complete frame.
4395 If not specified, or the expressed duration is negative, the audio is
4396 supposed to be generated forever.
4397 Only used if plugin have zero inputs.
4398 @end table
4399
4400 @subsection Examples
4401
4402 @itemize
4403 @item
4404 Apply bass enhancer plugin from Calf:
4405 @example
4406 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4407 @end example
4408
4409 @item
4410 Apply vinyl plugin from Calf:
4411 @example
4412 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4413 @end example
4414
4415 @item
4416 Apply bit crusher plugin from ArtyFX:
4417 @example
4418 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4419 @end example
4420 @end itemize
4421
4422 @section mcompand
4423 Multiband Compress or expand the audio's dynamic range.
4424
4425 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4426 This is akin to the crossover of a loudspeaker, and results in flat frequency
4427 response when absent compander action.
4428
4429 It accepts the following parameters:
4430
4431 @table @option
4432 @item args
4433 This option syntax is:
4434 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4435 For explanation of each item refer to compand filter documentation.
4436 @end table
4437
4438 @anchor{pan}
4439 @section pan
4440
4441 Mix channels with specific gain levels. The filter accepts the output
4442 channel layout followed by a set of channels definitions.
4443
4444 This filter is also designed to efficiently remap the channels of an audio
4445 stream.
4446
4447 The filter accepts parameters of the form:
4448 "@var{l}|@var{outdef}|@var{outdef}|..."
4449
4450 @table @option
4451 @item l
4452 output channel layout or number of channels
4453
4454 @item outdef
4455 output channel specification, of the form:
4456 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4457
4458 @item out_name
4459 output channel to define, either a channel name (FL, FR, etc.) or a channel
4460 number (c0, c1, etc.)
4461
4462 @item gain
4463 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4464
4465 @item in_name
4466 input channel to use, see out_name for details; it is not possible to mix
4467 named and numbered input channels
4468 @end table
4469
4470 If the `=' in a channel specification is replaced by `<', then the gains for
4471 that specification will be renormalized so that the total is 1, thus
4472 avoiding clipping noise.
4473
4474 @subsection Mixing examples
4475
4476 For example, if you want to down-mix from stereo to mono, but with a bigger
4477 factor for the left channel:
4478 @example
4479 pan=1c|c0=0.9*c0+0.1*c1
4480 @end example
4481
4482 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4483 7-channels surround:
4484 @example
4485 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4486 @end example
4487
4488 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4489 that should be preferred (see "-ac" option) unless you have very specific
4490 needs.
4491
4492 @subsection Remapping examples
4493
4494 The channel remapping will be effective if, and only if:
4495
4496 @itemize
4497 @item gain coefficients are zeroes or ones,
4498 @item only one input per channel output,
4499 @end itemize
4500
4501 If all these conditions are satisfied, the filter will notify the user ("Pure
4502 channel mapping detected"), and use an optimized and lossless method to do the
4503 remapping.
4504
4505 For example, if you have a 5.1 source and want a stereo audio stream by
4506 dropping the extra channels:
4507 @example
4508 pan="stereo| c0=FL | c1=FR"
4509 @end example
4510
4511 Given the same source, you can also switch front left and front right channels
4512 and keep the input channel layout:
4513 @example
4514 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4515 @end example
4516
4517 If the input is a stereo audio stream, you can mute the front left channel (and
4518 still keep the stereo channel layout) with:
4519 @example
4520 pan="stereo|c1=c1"
4521 @end example
4522
4523 Still with a stereo audio stream input, you can copy the right channel in both
4524 front left and right:
4525 @example
4526 pan="stereo| c0=FR | c1=FR"
4527 @end example
4528
4529 @section replaygain
4530
4531 ReplayGain scanner filter. This filter takes an audio stream as an input and
4532 outputs it unchanged.
4533 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4534
4535 @section resample
4536
4537 Convert the audio sample format, sample rate and channel layout. It is
4538 not meant to be used directly.
4539
4540 @section rubberband
4541 Apply time-stretching and pitch-shifting with librubberband.
4542
4543 To enable compilation of this filter, you need to configure FFmpeg with
4544 @code{--enable-librubberband}.
4545
4546 The filter accepts the following options:
4547
4548 @table @option
4549 @item tempo
4550 Set tempo scale factor.
4551
4552 @item pitch
4553 Set pitch scale factor.
4554
4555 @item transients
4556 Set transients detector.
4557 Possible values are:
4558 @table @var
4559 @item crisp
4560 @item mixed
4561 @item smooth
4562 @end table
4563
4564 @item detector
4565 Set detector.
4566 Possible values are:
4567 @table @var
4568 @item compound
4569 @item percussive
4570 @item soft
4571 @end table
4572
4573 @item phase
4574 Set phase.
4575 Possible values are:
4576 @table @var
4577 @item laminar
4578 @item independent
4579 @end table
4580
4581 @item window
4582 Set processing window size.
4583 Possible values are:
4584 @table @var
4585 @item standard
4586 @item short
4587 @item long
4588 @end table
4589
4590 @item smoothing
4591 Set smoothing.
4592 Possible values are:
4593 @table @var
4594 @item off
4595 @item on
4596 @end table
4597
4598 @item formant
4599 Enable formant preservation when shift pitching.
4600 Possible values are:
4601 @table @var
4602 @item shifted
4603 @item preserved
4604 @end table
4605
4606 @item pitchq
4607 Set pitch quality.
4608 Possible values are:
4609 @table @var
4610 @item quality
4611 @item speed
4612 @item consistency
4613 @end table
4614
4615 @item channels
4616 Set channels.
4617 Possible values are:
4618 @table @var
4619 @item apart
4620 @item together
4621 @end table
4622 @end table
4623
4624 @subsection Commands
4625
4626 This filter supports the following commands:
4627 @table @option
4628 @item tempo
4629 Change filter tempo scale factor.
4630 Syntax for the command is : "@var{tempo}"
4631
4632 @item pitch
4633 Change filter pitch scale factor.
4634 Syntax for the command is : "@var{pitch}"
4635 @end table
4636
4637 @section sidechaincompress
4638
4639 This filter acts like normal compressor but has the ability to compress
4640 detected signal using second input signal.
4641 It needs two input streams and returns one output stream.
4642 First input stream will be processed depending on second stream signal.
4643 The filtered signal then can be filtered with other filters in later stages of
4644 processing. See @ref{pan} and @ref{amerge} filter.
4645
4646 The filter accepts the following options:
4647
4648 @table @option
4649 @item level_in
4650 Set input gain. Default is 1. Range is between 0.015625 and 64.
4651
4652 @item mode
4653 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4654 Default is @code{downward}.
4655
4656 @item threshold
4657 If a signal of second stream raises above this level it will affect the gain
4658 reduction of first stream.
4659 By default is 0.125. Range is between 0.00097563 and 1.
4660
4661 @item ratio
4662 Set a ratio about which the signal is reduced. 1:2 means that if the level
4663 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4664 Default is 2. Range is between 1 and 20.
4665
4666 @item attack
4667 Amount of milliseconds the signal has to rise above the threshold before gain
4668 reduction starts. Default is 20. Range is between 0.01 and 2000.
4669
4670 @item release
4671 Amount of milliseconds the signal has to fall below the threshold before
4672 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4673
4674 @item makeup
4675 Set the amount by how much signal will be amplified after processing.
4676 Default is 1. Range is from 1 to 64.
4677
4678 @item knee
4679 Curve the sharp knee around the threshold to enter gain reduction more softly.
4680 Default is 2.82843. Range is between 1 and 8.
4681
4682 @item link
4683 Choose if the @code{average} level between all channels of side-chain stream
4684 or the louder(@code{maximum}) channel of side-chain stream affects the
4685 reduction. Default is @code{average}.
4686
4687 @item detection
4688 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4689 of @code{rms}. Default is @code{rms} which is mainly smoother.
4690
4691 @item level_sc
4692 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4693
4694 @item mix
4695 How much to use compressed signal in output. Default is 1.
4696 Range is between 0 and 1.
4697 @end table
4698
4699 @subsection Commands
4700
4701 This filter supports the all above options as @ref{commands}.
4702
4703 @subsection Examples
4704
4705 @itemize
4706 @item
4707 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4708 depending on the signal of 2nd input and later compressed signal to be
4709 merged with 2nd input:
4710 @example
4711 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4712 @end example
4713 @end itemize
4714
4715 @section sidechaingate
4716
4717 A sidechain gate acts like a normal (wideband) gate but has the ability to
4718 filter the detected signal before sending it to the gain reduction stage.
4719 Normally a gate uses the full range signal to detect a level above the
4720 threshold.
4721 For example: If you cut all lower frequencies from your sidechain signal
4722 the gate will decrease the volume of your track only if not enough highs
4723 appear. With this technique you are able to reduce the resonation of a
4724 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4725 guitar.
4726 It needs two input streams and returns one output stream.
4727 First input stream will be processed depending on second stream signal.
4728
4729 The filter accepts the following options:
4730
4731 @table @option
4732 @item level_in
4733 Set input level before filtering.
4734 Default is 1. Allowed range is from 0.015625 to 64.
4735
4736 @item mode
4737 Set the mode of operation. Can be @code{upward} or @code{downward}.
4738 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4739 will be amplified, expanding dynamic range in upward direction.
4740 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4741
4742 @item range
4743 Set the level of gain reduction when the signal is below the threshold.
4744 Default is 0.06125. Allowed range is from 0 to 1.
4745 Setting this to 0 disables reduction and then filter behaves like expander.
4746
4747 @item threshold
4748 If a signal rises above this level the gain reduction is released.
4749 Default is 0.125. Allowed range is from 0 to 1.
4750
4751 @item ratio
4752 Set a ratio about which the signal is reduced.
4753 Default is 2. Allowed range is from 1 to 9000.
4754
4755 @item attack
4756 Amount of milliseconds the signal has to rise above the threshold before gain
4757 reduction stops.
4758 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4759
4760 @item release
4761 Amount of milliseconds the signal has to fall below the threshold before the
4762 reduction is increased again. Default is 250 milliseconds.
4763 Allowed range is from 0.01 to 9000.
4764
4765 @item makeup
4766 Set amount of amplification of signal after processing.
4767 Default is 1. Allowed range is from 1 to 64.
4768
4769 @item knee
4770 Curve the sharp knee around the threshold to enter gain reduction more softly.
4771 Default is 2.828427125. Allowed range is from 1 to 8.
4772
4773 @item detection
4774 Choose if exact signal should be taken for detection or an RMS like one.
4775 Default is rms. Can be peak or rms.
4776
4777 @item link
4778 Choose if the average level between all channels or the louder channel affects
4779 the reduction.
4780 Default is average. Can be average or maximum.
4781
4782 @item level_sc
4783 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4784 @end table
4785
4786 @section silencedetect
4787
4788 Detect silence in an audio stream.
4789
4790 This filter logs a message when it detects that the input audio volume is less
4791 or equal to a noise tolerance value for a duration greater or equal to the
4792 minimum detected noise duration.
4793
4794 The printed times and duration are expressed in seconds. The
4795 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
4796 is set on the first frame whose timestamp equals or exceeds the detection
4797 duration and it contains the timestamp of the first frame of the silence.
4798
4799 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
4800 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
4801 keys are set on the first frame after the silence. If @option{mono} is
4802 enabled, and each channel is evaluated separately, the @code{.X}
4803 suffixed keys are used, and @code{X} corresponds to the channel number.
4804
4805 The filter accepts the following options:
4806
4807 @table @option
4808 @item noise, n
4809 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4810 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4811
4812 @item duration, d
4813 Set silence duration until notification (default is 2 seconds). See
4814 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4815 for the accepted syntax.
4816
4817 @item mono, m
4818 Process each channel separately, instead of combined. By default is disabled.
4819 @end table
4820
4821 @subsection Examples
4822
4823 @itemize
4824 @item
4825 Detect 5 seconds of silence with -50dB noise tolerance:
4826 @example
4827 silencedetect=n=-50dB:d=5
4828 @end example
4829
4830 @item
4831 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4832 tolerance in @file{silence.mp3}:
4833 @example
4834 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4835 @end example
4836 @end itemize
4837
4838 @section silenceremove
4839
4840 Remove silence from the beginning, middle or end of the audio.
4841
4842 The filter accepts the following options:
4843
4844 @table @option
4845 @item start_periods
4846 This value is used to indicate if audio should be trimmed at beginning of
4847 the audio. A value of zero indicates no silence should be trimmed from the
4848 beginning. When specifying a non-zero value, it trims audio up until it
4849 finds non-silence. Normally, when trimming silence from beginning of audio
4850 the @var{start_periods} will be @code{1} but it can be increased to higher
4851 values to trim all audio up to specific count of non-silence periods.
4852 Default value is @code{0}.
4853
4854 @item start_duration
4855 Specify the amount of time that non-silence must be detected before it stops
4856 trimming audio. By increasing the duration, bursts of noises can be treated
4857 as silence and trimmed off. Default value is @code{0}.
4858
4859 @item start_threshold
4860 This indicates what sample value should be treated as silence. For digital
4861 audio, a value of @code{0} may be fine but for audio recorded from analog,
4862 you may wish to increase the value to account for background noise.
4863 Can be specified in dB (in case "dB" is appended to the specified value)
4864 or amplitude ratio. Default value is @code{0}.
4865
4866 @item start_silence
4867 Specify max duration of silence at beginning that will be kept after
4868 trimming. Default is 0, which is equal to trimming all samples detected
4869 as silence.
4870
4871 @item start_mode
4872 Specify mode of detection of silence end in start of multi-channel audio.
4873 Can be @var{any} or @var{all}. Default is @var{any}.
4874 With @var{any}, any sample that is detected as non-silence will cause
4875 stopped trimming of silence.
4876 With @var{all}, only if all channels are detected as non-silence will cause
4877 stopped trimming of silence.
4878
4879 @item stop_periods
4880 Set the count for trimming silence from the end of audio.
4881 To remove silence from the middle of a file, specify a @var{stop_periods}
4882 that is negative. This value is then treated as a positive value and is
4883 used to indicate the effect should restart processing as specified by
4884 @var{start_periods}, making it suitable for removing periods of silence
4885 in the middle of the audio.
4886 Default value is @code{0}.
4887
4888 @item stop_duration
4889 Specify a duration of silence that must exist before audio is not copied any
4890 more. By specifying a higher duration, silence that is wanted can be left in
4891 the audio.
4892 Default value is @code{0}.
4893
4894 @item stop_threshold
4895 This is the same as @option{start_threshold} but for trimming silence from
4896 the end of audio.
4897 Can be specified in dB (in case "dB" is appended to the specified value)
4898 or amplitude ratio. Default value is @code{0}.
4899
4900 @item stop_silence
4901 Specify max duration of silence at end that will be kept after
4902 trimming. Default is 0, which is equal to trimming all samples detected
4903 as silence.
4904
4905 @item stop_mode
4906 Specify mode of detection of silence start in end of multi-channel audio.
4907 Can be @var{any} or @var{all}. Default is @var{any}.
4908 With @var{any}, any sample that is detected as non-silence will cause
4909 stopped trimming of silence.
4910 With @var{all}, only if all channels are detected as non-silence will cause
4911 stopped trimming of silence.
4912
4913 @item detection
4914 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4915 and works better with digital silence which is exactly 0.
4916 Default value is @code{rms}.
4917
4918 @item window
4919 Set duration in number of seconds used to calculate size of window in number
4920 of samples for detecting silence.
4921 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4922 @end table
4923
4924 @subsection Examples
4925
4926 @itemize
4927 @item
4928 The following example shows how this filter can be used to start a recording
4929 that does not contain the delay at the start which usually occurs between
4930 pressing the record button and the start of the performance:
4931 @example
4932 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4933 @end example
4934
4935 @item
4936 Trim all silence encountered from beginning to end where there is more than 1
4937 second of silence in audio:
4938 @example
4939 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4940 @end example
4941
4942 @item
4943 Trim all digital silence samples, using peak detection, from beginning to end
4944 where there is more than 0 samples of digital silence in audio and digital
4945 silence is detected in all channels at same positions in stream:
4946 @example
4947 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
4948 @end example
4949 @end itemize
4950
4951 @section sofalizer
4952
4953 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4954 loudspeakers around the user for binaural listening via headphones (audio
4955 formats up to 9 channels supported).
4956 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4957 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4958 Austrian Academy of Sciences.
4959
4960 To enable compilation of this filter you need to configure FFmpeg with
4961 @code{--enable-libmysofa}.
4962
4963 The filter accepts the following options:
4964
4965 @table @option
4966 @item sofa
4967 Set the SOFA file used for rendering.
4968
4969 @item gain
4970 Set gain applied to audio. Value is in dB. Default is 0.
4971
4972 @item rotation
4973 Set rotation of virtual loudspeakers in deg. Default is 0.
4974
4975 @item elevation
4976 Set elevation of virtual speakers in deg. Default is 0.
4977
4978 @item radius
4979 Set distance in meters between loudspeakers and the listener with near-field
4980 HRTFs. Default is 1.
4981
4982 @item type
4983 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4984 processing audio in time domain which is slow.
4985 @var{freq} is processing audio in frequency domain which is fast.
4986 Default is @var{freq}.
4987
4988 @item speakers
4989 Set custom positions of virtual loudspeakers. Syntax for this option is:
4990 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4991 Each virtual loudspeaker is described with short channel name following with
4992 azimuth and elevation in degrees.
4993 Each virtual loudspeaker description is separated by '|'.
4994 For example to override front left and front right channel positions use:
4995 'speakers=FL 45 15|FR 345 15'.
4996 Descriptions with unrecognised channel names are ignored.
4997
4998 @item lfegain
4999 Set custom gain for LFE channels. Value is in dB. Default is 0.
5000
5001 @item framesize
5002 Set custom frame size in number of samples. Default is 1024.
5003 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5004 is set to @var{freq}.
5005
5006 @item normalize
5007 Should all IRs be normalized upon importing SOFA file.
5008 By default is enabled.
5009
5010 @item interpolate
5011 Should nearest IRs be interpolated with neighbor IRs if exact position
5012 does not match. By default is disabled.
5013
5014 @item minphase
5015 Minphase all IRs upon loading of SOFA file. By default is disabled.
5016
5017 @item anglestep
5018 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5019
5020 @item radstep
5021 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5022 @end table
5023
5024 @subsection Examples
5025
5026 @itemize
5027 @item
5028 Using ClubFritz6 sofa file:
5029 @example
5030 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5031 @end example
5032
5033 @item
5034 Using ClubFritz12 sofa file and bigger radius with small rotation:
5035 @example
5036 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5037 @end example
5038
5039 @item
5040 Similar as above but with custom speaker positions for front left, front right, back left and back right
5041 and also with custom gain:
5042 @example
5043 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5044 @end example
5045 @end itemize
5046
5047 @section stereotools
5048
5049 This filter has some handy utilities to manage stereo signals, for converting
5050 M/S stereo recordings to L/R signal while having control over the parameters
5051 or spreading the stereo image of master track.
5052
5053 The filter accepts the following options:
5054
5055 @table @option
5056 @item level_in
5057 Set input level before filtering for both channels. Defaults is 1.
5058 Allowed range is from 0.015625 to 64.
5059
5060 @item level_out
5061 Set output level after filtering for both channels. Defaults is 1.
5062 Allowed range is from 0.015625 to 64.
5063
5064 @item balance_in
5065 Set input balance between both channels. Default is 0.
5066 Allowed range is from -1 to 1.
5067
5068 @item balance_out
5069 Set output balance between both channels. Default is 0.
5070 Allowed range is from -1 to 1.
5071
5072 @item softclip
5073 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5074 clipping. Disabled by default.
5075
5076 @item mutel
5077 Mute the left channel. Disabled by default.
5078
5079 @item muter
5080 Mute the right channel. Disabled by default.
5081
5082 @item phasel
5083 Change the phase of the left channel. Disabled by default.
5084
5085 @item phaser
5086 Change the phase of the right channel. Disabled by default.
5087
5088 @item mode
5089 Set stereo mode. Available values are:
5090
5091 @table @samp
5092 @item lr>lr
5093 Left/Right to Left/Right, this is default.
5094
5095 @item lr>ms
5096 Left/Right to Mid/Side.
5097
5098 @item ms>lr
5099 Mid/Side to Left/Right.
5100
5101 @item lr>ll
5102 Left/Right to Left/Left.
5103
5104 @item lr>rr
5105 Left/Right to Right/Right.
5106
5107 @item lr>l+r
5108 Left/Right to Left + Right.
5109
5110 @item lr>rl
5111 Left/Right to Right/Left.
5112
5113 @item ms>ll
5114 Mid/Side to Left/Left.
5115
5116 @item ms>rr
5117 Mid/Side to Right/Right.
5118 @end table
5119
5120 @item slev
5121 Set level of side signal. Default is 1.
5122 Allowed range is from 0.015625 to 64.
5123
5124 @item sbal
5125 Set balance of side signal. Default is 0.
5126 Allowed range is from -1 to 1.
5127
5128 @item mlev
5129 Set level of the middle signal. Default is 1.
5130 Allowed range is from 0.015625 to 64.
5131
5132 @item mpan
5133 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5134
5135 @item base
5136 Set stereo base between mono and inversed channels. Default is 0.
5137 Allowed range is from -1 to 1.
5138
5139 @item delay
5140 Set delay in milliseconds how much to delay left from right channel and
5141 vice versa. Default is 0. Allowed range is from -20 to 20.
5142
5143 @item sclevel
5144 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5145
5146 @item phase
5147 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5148
5149 @item bmode_in, bmode_out
5150 Set balance mode for balance_in/balance_out option.
5151
5152 Can be one of the following:
5153
5154 @table @samp
5155 @item balance
5156 Classic balance mode. Attenuate one channel at time.
5157 Gain is raised up to 1.
5158
5159 @item amplitude
5160 Similar as classic mode above but gain is raised up to 2.
5161
5162 @item power
5163 Equal power distribution, from -6dB to +6dB range.
5164 @end table
5165 @end table
5166
5167 @subsection Examples
5168
5169 @itemize
5170 @item
5171 Apply karaoke like effect:
5172 @example
5173 stereotools=mlev=0.015625
5174 @end example
5175
5176 @item
5177 Convert M/S signal to L/R:
5178 @example
5179 "stereotools=mode=ms>lr"
5180 @end example
5181 @end itemize
5182
5183 @section stereowiden
5184
5185 This filter enhance the stereo effect by suppressing signal common to both
5186 channels and by delaying the signal of left into right and vice versa,
5187 thereby widening the stereo effect.
5188
5189 The filter accepts the following options:
5190
5191 @table @option
5192 @item delay
5193 Time in milliseconds of the delay of left signal into right and vice versa.
5194 Default is 20 milliseconds.
5195
5196 @item feedback
5197 Amount of gain in delayed signal into right and vice versa. Gives a delay
5198 effect of left signal in right output and vice versa which gives widening
5199 effect. Default is 0.3.
5200
5201 @item crossfeed
5202 Cross feed of left into right with inverted phase. This helps in suppressing
5203 the mono. If the value is 1 it will cancel all the signal common to both
5204 channels. Default is 0.3.
5205
5206 @item drymix
5207 Set level of input signal of original channel. Default is 0.8.
5208 @end table
5209
5210 @subsection Commands
5211
5212 This filter supports the all above options except @code{delay} as @ref{commands}.
5213
5214 @section superequalizer
5215 Apply 18 band equalizer.
5216
5217 The filter accepts the following options:
5218 @table @option
5219 @item 1b
5220 Set 65Hz band gain.
5221 @item 2b
5222 Set 92Hz band gain.
5223 @item 3b
5224 Set 131Hz band gain.
5225 @item 4b
5226 Set 185Hz band gain.
5227 @item 5b
5228 Set 262Hz band gain.
5229 @item 6b
5230 Set 370Hz band gain.
5231 @item 7b
5232 Set 523Hz band gain.
5233 @item 8b
5234 Set 740Hz band gain.
5235 @item 9b
5236 Set 1047Hz band gain.
5237 @item 10b
5238 Set 1480Hz band gain.
5239 @item 11b
5240 Set 2093Hz band gain.
5241 @item 12b
5242 Set 2960Hz band gain.
5243 @item 13b
5244 Set 4186Hz band gain.
5245 @item 14b
5246 Set 5920Hz band gain.
5247 @item 15b
5248 Set 8372Hz band gain.
5249 @item 16b
5250 Set 11840Hz band gain.
5251 @item 17b
5252 Set 16744Hz band gain.
5253 @item 18b
5254 Set 20000Hz band gain.
5255 @end table
5256
5257 @section surround
5258 Apply audio surround upmix filter.
5259
5260 This filter allows to produce multichannel output from audio stream.
5261
5262 The filter accepts the following options:
5263
5264 @table @option
5265 @item chl_out
5266 Set output channel layout. By default, this is @var{5.1}.
5267
5268 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5269 for the required syntax.
5270
5271 @item chl_in
5272 Set input channel layout. By default, this is @var{stereo}.
5273
5274 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5275 for the required syntax.
5276
5277 @item level_in
5278 Set input volume level. By default, this is @var{1}.
5279
5280 @item level_out
5281 Set output volume level. By default, this is @var{1}.
5282
5283 @item lfe
5284 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5285
5286 @item lfe_low
5287 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5288
5289 @item lfe_high
5290 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5291
5292 @item lfe_mode
5293 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5294 In @var{add} mode, LFE channel is created from input audio and added to output.
5295 In @var{sub} mode, LFE channel is created from input audio and added to output but
5296 also all non-LFE output channels are subtracted with output LFE channel.
5297
5298 @item angle
5299 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5300 Default is @var{90}.
5301
5302 @item fc_in
5303 Set front center input volume. By default, this is @var{1}.
5304
5305 @item fc_out
5306 Set front center output volume. By default, this is @var{1}.
5307
5308 @item fl_in
5309 Set front left input volume. By default, this is @var{1}.
5310
5311 @item fl_out
5312 Set front left output volume. By default, this is @var{1}.
5313
5314 @item fr_in
5315 Set front right input volume. By default, this is @var{1}.
5316
5317 @item fr_out
5318 Set front right output volume. By default, this is @var{1}.
5319
5320 @item sl_in
5321 Set side left input volume. By default, this is @var{1}.
5322
5323 @item sl_out
5324 Set side left output volume. By default, this is @var{1}.
5325
5326 @item sr_in
5327 Set side right input volume. By default, this is @var{1}.
5328
5329 @item sr_out
5330 Set side right output volume. By default, this is @var{1}.
5331
5332 @item bl_in
5333 Set back left input volume. By default, this is @var{1}.
5334
5335 @item bl_out
5336 Set back left output volume. By default, this is @var{1}.
5337
5338 @item br_in
5339 Set back right input volume. By default, this is @var{1}.
5340
5341 @item br_out
5342 Set back right output volume. By default, this is @var{1}.
5343
5344 @item bc_in
5345 Set back center input volume. By default, this is @var{1}.
5346
5347 @item bc_out
5348 Set back center output volume. By default, this is @var{1}.
5349
5350 @item lfe_in
5351 Set LFE input volume. By default, this is @var{1}.
5352
5353 @item lfe_out
5354 Set LFE output volume. By default, this is @var{1}.
5355
5356 @item allx
5357 Set spread usage of stereo image across X axis for all channels.
5358
5359 @item ally
5360 Set spread usage of stereo image across Y axis for all channels.
5361
5362 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5363 Set spread usage of stereo image across X axis for each channel.
5364
5365 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5366 Set spread usage of stereo image across Y axis for each channel.
5367
5368 @item win_size
5369 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5370
5371 @item win_func
5372 Set window function.
5373
5374 It accepts the following values:
5375 @table @samp
5376 @item rect
5377 @item bartlett
5378 @item hann, hanning
5379 @item hamming
5380 @item blackman
5381 @item welch
5382 @item flattop
5383 @item bharris
5384 @item bnuttall
5385 @item bhann
5386 @item sine
5387 @item nuttall
5388 @item lanczos
5389 @item gauss
5390 @item tukey
5391 @item dolph
5392 @item cauchy
5393 @item parzen
5394 @item poisson
5395 @item bohman
5396 @end table
5397 Default is @code{hann}.
5398
5399 @item overlap
5400 Set window overlap. If set to 1, the recommended overlap for selected
5401 window function will be picked. Default is @code{0.5}.
5402 @end table
5403
5404 @section treble, highshelf
5405
5406 Boost or cut treble (upper) frequencies of the audio using a two-pole
5407 shelving filter with a response similar to that of a standard
5408 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5409
5410 The filter accepts the following options:
5411
5412 @table @option
5413 @item gain, g
5414 Give the gain at whichever is the lower of ~22 kHz and the
5415 Nyquist frequency. Its useful range is about -20 (for a large cut)
5416 to +20 (for a large boost). Beware of clipping when using a positive gain.
5417
5418 @item frequency, f
5419 Set the filter's central frequency and so can be used
5420 to extend or reduce the frequency range to be boosted or cut.
5421 The default value is @code{3000} Hz.
5422
5423 @item width_type, t
5424 Set method to specify band-width of filter.
5425 @table @option
5426 @item h
5427 Hz
5428 @item q
5429 Q-Factor
5430 @item o
5431 octave
5432 @item s
5433 slope
5434 @item k
5435 kHz
5436 @end table
5437
5438 @item width, w
5439 Determine how steep is the filter's shelf transition.
5440
5441 @item mix, m
5442 How much to use filtered signal in output. Default is 1.
5443 Range is between 0 and 1.
5444
5445 @item channels, c
5446 Specify which channels to filter, by default all available are filtered.
5447
5448 @item normalize, n
5449 Normalize biquad coefficients, by default is disabled.
5450 Enabling it will normalize magnitude response at DC to 0dB.
5451 @end table
5452
5453 @subsection Commands
5454
5455 This filter supports the following commands:
5456 @table @option
5457 @item frequency, f
5458 Change treble frequency.
5459 Syntax for the command is : "@var{frequency}"
5460
5461 @item width_type, t
5462 Change treble width_type.
5463 Syntax for the command is : "@var{width_type}"
5464
5465 @item width, w
5466 Change treble width.
5467 Syntax for the command is : "@var{width}"
5468
5469 @item gain, g
5470 Change treble gain.
5471 Syntax for the command is : "@var{gain}"
5472
5473 @item mix, m
5474 Change treble mix.
5475 Syntax for the command is : "@var{mix}"
5476 @end table
5477
5478 @section tremolo
5479
5480 Sinusoidal amplitude modulation.
5481
5482 The filter accepts the following options:
5483
5484 @table @option
5485 @item f
5486 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5487 (20 Hz or lower) will result in a tremolo effect.
5488 This filter may also be used as a ring modulator by specifying
5489 a modulation frequency higher than 20 Hz.
5490 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5491
5492 @item d
5493 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5494 Default value is 0.5.
5495 @end table
5496
5497 @section vibrato
5498
5499 Sinusoidal phase modulation.
5500
5501 The filter accepts the following options:
5502
5503 @table @option
5504 @item f
5505 Modulation frequency in Hertz.
5506 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5507
5508 @item d
5509 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5510 Default value is 0.5.
5511 @end table
5512
5513 @section volume
5514
5515 Adjust the input audio volume.
5516
5517 It accepts the following parameters:
5518 @table @option
5519
5520 @item volume
5521 Set audio volume expression.
5522
5523 Output values are clipped to the maximum value.
5524
5525 The output audio volume is given by the relation:
5526 @example
5527 @var{output_volume} = @var{volume} * @var{input_volume}
5528 @end example
5529
5530 The default value for @var{volume} is "1.0".
5531
5532 @item precision
5533 This parameter represents the mathematical precision.
5534
5535 It determines which input sample formats will be allowed, which affects the
5536 precision of the volume scaling.
5537
5538 @table @option
5539 @item fixed
5540 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5541 @item float
5542 32-bit floating-point; this limits input sample format to FLT. (default)
5543 @item double
5544 64-bit floating-point; this limits input sample format to DBL.
5545 @end table
5546
5547 @item replaygain
5548 Choose the behaviour on encountering ReplayGain side data in input frames.
5549
5550 @table @option
5551 @item drop
5552 Remove ReplayGain side data, ignoring its contents (the default).
5553
5554 @item ignore
5555 Ignore ReplayGain side data, but leave it in the frame.
5556
5557 @item track
5558 Prefer the track gain, if present.
5559
5560 @item album
5561 Prefer the album gain, if present.
5562 @end table
5563
5564 @item replaygain_preamp
5565 Pre-amplification gain in dB to apply to the selected replaygain gain.
5566
5567 Default value for @var{replaygain_preamp} is 0.0.
5568
5569 @item replaygain_noclip
5570 Prevent clipping by limiting the gain applied.
5571
5572 Default value for @var{replaygain_noclip} is 1.
5573
5574 @item eval
5575 Set when the volume expression is evaluated.
5576
5577 It accepts the following values:
5578 @table @samp
5579 @item once
5580 only evaluate expression once during the filter initialization, or
5581 when the @samp{volume} command is sent
5582
5583 @item frame
5584 evaluate expression for each incoming frame
5585 @end table
5586
5587 Default value is @samp{once}.
5588 @end table
5589
5590 The volume expression can contain the following parameters.
5591
5592 @table @option
5593 @item n
5594 frame number (starting at zero)
5595 @item nb_channels
5596 number of channels
5597 @item nb_consumed_samples
5598 number of samples consumed by the filter
5599 @item nb_samples
5600 number of samples in the current frame
5601 @item pos
5602 original frame position in the file
5603 @item pts
5604 frame PTS
5605 @item sample_rate
5606 sample rate
5607 @item startpts
5608 PTS at start of stream
5609 @item startt
5610 time at start of stream
5611 @item t
5612 frame time
5613 @item tb
5614 timestamp timebase
5615 @item volume
5616 last set volume value
5617 @end table
5618
5619 Note that when @option{eval} is set to @samp{once} only the
5620 @var{sample_rate} and @var{tb} variables are available, all other
5621 variables will evaluate to NAN.
5622
5623 @subsection Commands
5624
5625 This filter supports the following commands:
5626 @table @option
5627 @item volume
5628 Modify the volume expression.
5629 The command accepts the same syntax of the corresponding option.
5630
5631 If the specified expression is not valid, it is kept at its current
5632 value.
5633 @end table
5634
5635 @subsection Examples
5636
5637 @itemize
5638 @item
5639 Halve the input audio volume:
5640 @example
5641 volume=volume=0.5
5642 volume=volume=1/2
5643 volume=volume=-6.0206dB
5644 @end example
5645
5646 In all the above example the named key for @option{volume} can be
5647 omitted, for example like in:
5648 @example
5649 volume=0.5
5650 @end example
5651
5652 @item
5653 Increase input audio power by 6 decibels using fixed-point precision:
5654 @example
5655 volume=volume=6dB:precision=fixed
5656 @end example
5657
5658 @item
5659 Fade volume after time 10 with an annihilation period of 5 seconds:
5660 @example
5661 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5662 @end example
5663 @end itemize
5664
5665 @section volumedetect
5666
5667 Detect the volume of the input video.
5668
5669 The filter has no parameters. The input is not modified. Statistics about
5670 the volume will be printed in the log when the input stream end is reached.
5671
5672 In particular it will show the mean volume (root mean square), maximum
5673 volume (on a per-sample basis), and the beginning of a histogram of the
5674 registered volume values (from the maximum value to a cumulated 1/1000 of
5675 the samples).
5676
5677 All volumes are in decibels relative to the maximum PCM value.
5678
5679 @subsection Examples
5680
5681 Here is an excerpt of the output:
5682 @example
5683 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5684 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5685 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5686 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5687 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5688 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5689 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5690 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5691 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5692 @end example
5693
5694 It means that:
5695 @itemize
5696 @item
5697 The mean square energy is approximately -27 dB, or 10^-2.7.
5698 @item
5699 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5700 @item
5701 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5702 @end itemize
5703
5704 In other words, raising the volume by +4 dB does not cause any clipping,
5705 raising it by +5 dB causes clipping for 6 samples, etc.
5706
5707 @c man end AUDIO FILTERS
5708
5709 @chapter Audio Sources
5710 @c man begin AUDIO SOURCES
5711
5712 Below is a description of the currently available audio sources.
5713
5714 @section abuffer
5715
5716 Buffer audio frames, and make them available to the filter chain.
5717
5718 This source is mainly intended for a programmatic use, in particular
5719 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5720
5721 It accepts the following parameters:
5722 @table @option
5723
5724 @item time_base
5725 The timebase which will be used for timestamps of submitted frames. It must be
5726 either a floating-point number or in @var{numerator}/@var{denominator} form.
5727
5728 @item sample_rate
5729 The sample rate of the incoming audio buffers.
5730
5731 @item sample_fmt
5732 The sample format of the incoming audio buffers.
5733 Either a sample format name or its corresponding integer representation from
5734 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5735
5736 @item channel_layout
5737 The channel layout of the incoming audio buffers.
5738 Either a channel layout name from channel_layout_map in
5739 @file{libavutil/channel_layout.c} or its corresponding integer representation
5740 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5741
5742 @item channels
5743 The number of channels of the incoming audio buffers.
5744 If both @var{channels} and @var{channel_layout} are specified, then they
5745 must be consistent.
5746
5747 @end table
5748
5749 @subsection Examples
5750
5751 @example
5752 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5753 @end example
5754
5755 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5756 Since the sample format with name "s16p" corresponds to the number
5757 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5758 equivalent to:
5759 @example
5760 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5761 @end example
5762
5763 @section aevalsrc
5764
5765 Generate an audio signal specified by an expression.
5766
5767 This source accepts in input one or more expressions (one for each
5768 channel), which are evaluated and used to generate a corresponding
5769 audio signal.
5770
5771 This source accepts the following options:
5772
5773 @table @option
5774 @item exprs
5775 Set the '|'-separated expressions list for each separate channel. In case the
5776 @option{channel_layout} option is not specified, the selected channel layout
5777 depends on the number of provided expressions. Otherwise the last
5778 specified expression is applied to the remaining output channels.
5779
5780 @item channel_layout, c
5781 Set the channel layout. The number of channels in the specified layout
5782 must be equal to the number of specified expressions.
5783
5784 @item duration, d
5785 Set the minimum duration of the sourced audio. See
5786 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5787 for the accepted syntax.
5788 Note that the resulting duration may be greater than the specified
5789 duration, as the generated audio is always cut at the end of a
5790 complete frame.
5791
5792 If not specified, or the expressed duration is negative, the audio is
5793 supposed to be generated forever.
5794
5795 @item nb_samples, n
5796 Set the number of samples per channel per each output frame,
5797 default to 1024.
5798
5799 @item sample_rate, s
5800 Specify the sample rate, default to 44100.
5801 @end table
5802
5803 Each expression in @var{exprs} can contain the following constants:
5804
5805 @table @option
5806 @item n
5807 number of the evaluated sample, starting from 0
5808
5809 @item t
5810 time of the evaluated sample expressed in seconds, starting from 0
5811
5812 @item s
5813 sample rate
5814
5815 @end table
5816
5817 @subsection Examples
5818
5819 @itemize
5820 @item
5821 Generate silence:
5822 @example
5823 aevalsrc=0
5824 @end example
5825
5826 @item
5827 Generate a sin signal with frequency of 440 Hz, set sample rate to
5828 8000 Hz:
5829 @example
5830 aevalsrc="sin(440*2*PI*t):s=8000"
5831 @end example
5832
5833 @item
5834 Generate a two channels signal, specify the channel layout (Front
5835 Center + Back Center) explicitly:
5836 @example
5837 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5838 @end example
5839
5840 @item
5841 Generate white noise:
5842 @example
5843 aevalsrc="-2+random(0)"
5844 @end example
5845
5846 @item
5847 Generate an amplitude modulated signal:
5848 @example
5849 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5850 @end example
5851
5852 @item
5853 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5854 @example
5855 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5856 @end example
5857
5858 @end itemize
5859
5860 @section anullsrc
5861
5862 The null audio source, return unprocessed audio frames. It is mainly useful
5863 as a template and to be employed in analysis / debugging tools, or as
5864 the source for filters which ignore the input data (for example the sox
5865 synth filter).
5866
5867 This source accepts the following options:
5868
5869 @table @option
5870
5871 @item channel_layout, cl
5872
5873 Specifies the channel layout, and can be either an integer or a string
5874 representing a channel layout. The default value of @var{channel_layout}
5875 is "stereo".
5876
5877 Check the channel_layout_map definition in
5878 @file{libavutil/channel_layout.c} for the mapping between strings and
5879 channel layout values.
5880
5881 @item sample_rate, r
5882 Specifies the sample rate, and defaults to 44100.
5883
5884 @item nb_samples, n
5885 Set the number of samples per requested frames.
5886
5887 @end table
5888
5889 @subsection Examples
5890
5891 @itemize
5892 @item
5893 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5894 @example
5895 anullsrc=r=48000:cl=4
5896 @end example
5897
5898 @item
5899 Do the same operation with a more obvious syntax:
5900 @example
5901 anullsrc=r=48000:cl=mono
5902 @end example
5903 @end itemize
5904
5905 All the parameters need to be explicitly defined.
5906
5907 @section flite
5908
5909 Synthesize a voice utterance using the libflite library.
5910
5911 To enable compilation of this filter you need to configure FFmpeg with
5912 @code{--enable-libflite}.
5913
5914 Note that versions of the flite library prior to 2.0 are not thread-safe.
5915
5916 The filter accepts the following options:
5917
5918 @table @option
5919
5920 @item list_voices
5921 If set to 1, list the names of the available voices and exit
5922 immediately. Default value is 0.
5923
5924 @item nb_samples, n
5925 Set the maximum number of samples per frame. Default value is 512.
5926
5927 @item textfile
5928 Set the filename containing the text to speak.
5929
5930 @item text
5931 Set the text to speak.
5932
5933 @item voice, v
5934 Set the voice to use for the speech synthesis. Default value is
5935 @code{kal}. See also the @var{list_voices} option.
5936 @end table
5937
5938 @subsection Examples
5939
5940 @itemize
5941 @item
5942 Read from file @file{speech.txt}, and synthesize the text using the
5943 standard flite voice:
5944 @example
5945 flite=textfile=speech.txt
5946 @end example
5947
5948 @item
5949 Read the specified text selecting the @code{slt} voice:
5950 @example
5951 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5952 @end example
5953
5954 @item
5955 Input text to ffmpeg:
5956 @example
5957 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5958 @end example
5959
5960 @item
5961 Make @file{ffplay} speak the specified text, using @code{flite} and
5962 the @code{lavfi} device:
5963 @example
5964 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
5965 @end example
5966 @end itemize
5967
5968 For more information about libflite, check:
5969 @url{http://www.festvox.org/flite/}
5970
5971 @section anoisesrc
5972
5973 Generate a noise audio signal.
5974
5975 The filter accepts the following options:
5976
5977 @table @option
5978 @item sample_rate, r
5979 Specify the sample rate. Default value is 48000 Hz.
5980
5981 @item amplitude, a
5982 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
5983 is 1.0.
5984
5985 @item duration, d
5986 Specify the duration of the generated audio stream. Not specifying this option
5987 results in noise with an infinite length.
5988
5989 @item color, colour, c
5990 Specify the color of noise. Available noise colors are white, pink, brown,
5991 blue, violet and velvet. Default color is white.
5992
5993 @item seed, s
5994 Specify a value used to seed the PRNG.
5995
5996 @item nb_samples, n
5997 Set the number of samples per each output frame, default is 1024.
5998 @end table
5999
6000 @subsection Examples
6001
6002 @itemize
6003
6004 @item
6005 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6006 @example
6007 anoisesrc=d=60:c=pink:r=44100:a=0.5
6008 @end example
6009 @end itemize
6010
6011 @section hilbert
6012
6013 Generate odd-tap Hilbert transform FIR coefficients.
6014
6015 The resulting stream can be used with @ref{afir} filter for phase-shifting
6016 the signal by 90 degrees.
6017
6018 This is used in many matrix coding schemes and for analytic signal generation.
6019 The process is often written as a multiplication by i (or j), the imaginary unit.
6020
6021 The filter accepts the following options:
6022
6023 @table @option
6024
6025 @item sample_rate, s
6026 Set sample rate, default is 44100.
6027
6028 @item taps, t
6029 Set length of FIR filter, default is 22051.
6030
6031 @item nb_samples, n
6032 Set number of samples per each frame.
6033
6034 @item win_func, w
6035 Set window function to be used when generating FIR coefficients.
6036 @end table
6037
6038 @section sinc
6039
6040 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6041
6042 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6043
6044 The filter accepts the following options:
6045
6046 @table @option
6047 @item sample_rate, r
6048 Set sample rate, default is 44100.
6049
6050 @item nb_samples, n
6051 Set number of samples per each frame. Default is 1024.
6052
6053 @item hp
6054 Set high-pass frequency. Default is 0.
6055
6056 @item lp
6057 Set low-pass frequency. Default is 0.
6058 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6059 is higher than 0 then filter will create band-pass filter coefficients,
6060 otherwise band-reject filter coefficients.
6061
6062 @item phase
6063 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6064
6065 @item beta
6066 Set Kaiser window beta.
6067
6068 @item att
6069 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6070
6071 @item round
6072 Enable rounding, by default is disabled.
6073
6074 @item hptaps
6075 Set number of taps for high-pass filter.
6076
6077 @item lptaps
6078 Set number of taps for low-pass filter.
6079 @end table
6080
6081 @section sine
6082
6083 Generate an audio signal made of a sine wave with amplitude 1/8.
6084
6085 The audio signal is bit-exact.
6086
6087 The filter accepts the following options:
6088
6089 @table @option
6090
6091 @item frequency, f
6092 Set the carrier frequency. Default is 440 Hz.
6093
6094 @item beep_factor, b
6095 Enable a periodic beep every second with frequency @var{beep_factor} times
6096 the carrier frequency. Default is 0, meaning the beep is disabled.
6097
6098 @item sample_rate, r
6099 Specify the sample rate, default is 44100.
6100
6101 @item duration, d
6102 Specify the duration of the generated audio stream.
6103
6104 @item samples_per_frame
6105 Set the number of samples per output frame.
6106
6107 The expression can contain the following constants:
6108
6109 @table @option
6110 @item n
6111 The (sequential) number of the output audio frame, starting from 0.
6112
6113 @item pts
6114 The PTS (Presentation TimeStamp) of the output audio frame,
6115 expressed in @var{TB} units.
6116
6117 @item t
6118 The PTS of the output audio frame, expressed in seconds.
6119
6120 @item TB
6121 The timebase of the output audio frames.
6122 @end table
6123
6124 Default is @code{1024}.
6125 @end table
6126
6127 @subsection Examples
6128
6129 @itemize
6130
6131 @item
6132 Generate a simple 440 Hz sine wave:
6133 @example
6134 sine
6135 @end example
6136
6137 @item
6138 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6139 @example
6140 sine=220:4:d=5
6141 sine=f=220:b=4:d=5
6142 sine=frequency=220:beep_factor=4:duration=5
6143 @end example
6144
6145 @item
6146 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6147 pattern:
6148 @example
6149 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6150 @end example
6151 @end itemize
6152
6153 @c man end AUDIO SOURCES
6154
6155 @chapter Audio Sinks
6156 @c man begin AUDIO SINKS
6157
6158 Below is a description of the currently available audio sinks.
6159
6160 @section abuffersink
6161
6162 Buffer audio frames, and make them available to the end of filter chain.
6163
6164 This sink is mainly intended for programmatic use, in particular
6165 through the interface defined in @file{libavfilter/buffersink.h}
6166 or the options system.
6167
6168 It accepts a pointer to an AVABufferSinkContext structure, which
6169 defines the incoming buffers' formats, to be passed as the opaque
6170 parameter to @code{avfilter_init_filter} for initialization.
6171 @section anullsink
6172
6173 Null audio sink; do absolutely nothing with the input audio. It is
6174 mainly useful as a template and for use in analysis / debugging
6175 tools.
6176
6177 @c man end AUDIO SINKS
6178
6179 @chapter Video Filters
6180 @c man begin VIDEO FILTERS
6181
6182 When you configure your FFmpeg build, you can disable any of the
6183 existing filters using @code{--disable-filters}.
6184 The configure output will show the video filters included in your
6185 build.
6186
6187 Below is a description of the currently available video filters.
6188
6189 @section addroi
6190
6191 Mark a region of interest in a video frame.
6192
6193 The frame data is passed through unchanged, but metadata is attached
6194 to the frame indicating regions of interest which can affect the
6195 behaviour of later encoding.  Multiple regions can be marked by
6196 applying the filter multiple times.
6197
6198 @table @option
6199 @item x
6200 Region distance in pixels from the left edge of the frame.
6201 @item y
6202 Region distance in pixels from the top edge of the frame.
6203 @item w
6204 Region width in pixels.
6205 @item h
6206 Region height in pixels.
6207
6208 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6209 and may contain the following variables:
6210 @table @option
6211 @item iw
6212 Width of the input frame.
6213 @item ih
6214 Height of the input frame.
6215 @end table
6216
6217 @item qoffset
6218 Quantisation offset to apply within the region.
6219
6220 This must be a real value in the range -1 to +1.  A value of zero
6221 indicates no quality change.  A negative value asks for better quality
6222 (less quantisation), while a positive value asks for worse quality
6223 (greater quantisation).
6224
6225 The range is calibrated so that the extreme values indicate the
6226 largest possible offset - if the rest of the frame is encoded with the
6227 worst possible quality, an offset of -1 indicates that this region
6228 should be encoded with the best possible quality anyway.  Intermediate
6229 values are then interpolated in some codec-dependent way.
6230
6231 For example, in 10-bit H.264 the quantisation parameter varies between
6232 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6233 this region should be encoded with a QP around one-tenth of the full
6234 range better than the rest of the frame.  So, if most of the frame
6235 were to be encoded with a QP of around 30, this region would get a QP
6236 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6237 An extreme value of -1 would indicate that this region should be
6238 encoded with the best possible quality regardless of the treatment of
6239 the rest of the frame - that is, should be encoded at a QP of -12.
6240 @item clear
6241 If set to true, remove any existing regions of interest marked on the
6242 frame before adding the new one.
6243 @end table
6244
6245 @subsection Examples
6246
6247 @itemize
6248 @item
6249 Mark the centre quarter of the frame as interesting.
6250 @example
6251 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6252 @end example
6253 @item
6254 Mark the 100-pixel-wide region on the left edge of the frame as very
6255 uninteresting (to be encoded at much lower quality than the rest of
6256 the frame).
6257 @example
6258 addroi=0:0:100:ih:+1/5
6259 @end example
6260 @end itemize
6261
6262 @section alphaextract
6263
6264 Extract the alpha component from the input as a grayscale video. This
6265 is especially useful with the @var{alphamerge} filter.
6266
6267 @section alphamerge
6268
6269 Add or replace the alpha component of the primary input with the
6270 grayscale value of a second input. This is intended for use with
6271 @var{alphaextract} to allow the transmission or storage of frame
6272 sequences that have alpha in a format that doesn't support an alpha
6273 channel.
6274
6275 For example, to reconstruct full frames from a normal YUV-encoded video
6276 and a separate video created with @var{alphaextract}, you might use:
6277 @example
6278 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6279 @end example
6280
6281 Since this filter is designed for reconstruction, it operates on frame
6282 sequences without considering timestamps, and terminates when either
6283 input reaches end of stream. This will cause problems if your encoding
6284 pipeline drops frames. If you're trying to apply an image as an
6285 overlay to a video stream, consider the @var{overlay} filter instead.
6286
6287 @section amplify
6288
6289 Amplify differences between current pixel and pixels of adjacent frames in
6290 same pixel location.
6291
6292 This filter accepts the following options:
6293
6294 @table @option
6295 @item radius
6296 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6297 For example radius of 3 will instruct filter to calculate average of 7 frames.
6298
6299 @item factor
6300 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6301
6302 @item threshold
6303 Set threshold for difference amplification. Any difference greater or equal to
6304 this value will not alter source pixel. Default is 10.
6305 Allowed range is from 0 to 65535.
6306
6307 @item tolerance
6308 Set tolerance for difference amplification. Any difference lower to
6309 this value will not alter source pixel. Default is 0.
6310 Allowed range is from 0 to 65535.
6311
6312 @item low
6313 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6314 This option controls maximum possible value that will decrease source pixel value.
6315
6316 @item high
6317 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6318 This option controls maximum possible value that will increase source pixel value.
6319
6320 @item planes
6321 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6322 @end table
6323
6324 @subsection Commands
6325
6326 This filter supports the following @ref{commands} that corresponds to option of same name:
6327 @table @option
6328 @item factor
6329 @item threshold
6330 @item tolerance
6331 @item low
6332 @item high
6333 @item planes
6334 @end table
6335
6336 @section ass
6337
6338 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6339 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6340 Substation Alpha) subtitles files.
6341
6342 This filter accepts the following option in addition to the common options from
6343 the @ref{subtitles} filter:
6344
6345 @table @option
6346 @item shaping
6347 Set the shaping engine
6348
6349 Available values are:
6350 @table @samp
6351 @item auto
6352 The default libass shaping engine, which is the best available.
6353 @item simple
6354 Fast, font-agnostic shaper that can do only substitutions
6355 @item complex
6356 Slower shaper using OpenType for substitutions and positioning
6357 @end table
6358
6359 The default is @code{auto}.
6360 @end table
6361
6362 @section atadenoise
6363 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6364
6365 The filter accepts the following options:
6366
6367 @table @option
6368 @item 0a
6369 Set threshold A for 1st plane. Default is 0.02.
6370 Valid range is 0 to 0.3.
6371
6372 @item 0b
6373 Set threshold B for 1st plane. Default is 0.04.
6374 Valid range is 0 to 5.
6375
6376 @item 1a
6377 Set threshold A for 2nd plane. Default is 0.02.
6378 Valid range is 0 to 0.3.
6379
6380 @item 1b
6381 Set threshold B for 2nd plane. Default is 0.04.
6382 Valid range is 0 to 5.
6383
6384 @item 2a
6385 Set threshold A for 3rd plane. Default is 0.02.
6386 Valid range is 0 to 0.3.
6387
6388 @item 2b
6389 Set threshold B for 3rd plane. Default is 0.04.
6390 Valid range is 0 to 5.
6391
6392 Threshold A is designed to react on abrupt changes in the input signal and
6393 threshold B is designed to react on continuous changes in the input signal.
6394
6395 @item s
6396 Set number of frames filter will use for averaging. Default is 9. Must be odd
6397 number in range [5, 129].
6398
6399 @item p
6400 Set what planes of frame filter will use for averaging. Default is all.
6401
6402 @item a
6403 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
6404 Alternatively can be set to @code{s} serial.
6405
6406 Parallel can be faster then serial, while other way around is never true.
6407 Parallel will abort early on first change being greater then thresholds, while serial
6408 will continue processing other side of frames if they are equal or bellow thresholds.
6409 @end table
6410
6411 @subsection Commands
6412 This filter supports same @ref{commands} as options except option @code{s}.
6413 The command accepts the same syntax of the corresponding option.
6414
6415 @section avgblur
6416
6417 Apply average blur filter.
6418
6419 The filter accepts the following options:
6420
6421 @table @option
6422 @item sizeX
6423 Set horizontal radius size.
6424
6425 @item planes
6426 Set which planes to filter. By default all planes are filtered.
6427
6428 @item sizeY
6429 Set vertical radius size, if zero it will be same as @code{sizeX}.
6430 Default is @code{0}.
6431 @end table
6432
6433 @subsection Commands
6434 This filter supports same commands as options.
6435 The command accepts the same syntax of the corresponding option.
6436
6437 If the specified expression is not valid, it is kept at its current
6438 value.
6439
6440 @section bbox
6441
6442 Compute the bounding box for the non-black pixels in the input frame
6443 luminance plane.
6444
6445 This filter computes the bounding box containing all the pixels with a
6446 luminance value greater than the minimum allowed value.
6447 The parameters describing the bounding box are printed on the filter
6448 log.
6449
6450 The filter accepts the following option:
6451
6452 @table @option
6453 @item min_val
6454 Set the minimal luminance value. Default is @code{16}.
6455 @end table
6456
6457 @section bilateral
6458 Apply bilateral filter, spatial smoothing while preserving edges.
6459
6460 The filter accepts the following options:
6461 @table @option
6462 @item sigmaS
6463 Set sigma of gaussian function to calculate spatial weight.
6464 Allowed range is 0 to 10. Default is 0.1.
6465
6466 @item sigmaR
6467 Set sigma of gaussian function to calculate range weight.
6468 Allowed range is 0 to 1. Default is 0.1.
6469
6470 @item planes
6471 Set planes to filter. Default is first only.
6472 @end table
6473
6474 @section bitplanenoise
6475
6476 Show and measure bit plane noise.
6477
6478 The filter accepts the following options:
6479
6480 @table @option
6481 @item bitplane
6482 Set which plane to analyze. Default is @code{1}.
6483
6484 @item filter
6485 Filter out noisy pixels from @code{bitplane} set above.
6486 Default is disabled.
6487 @end table
6488
6489 @section blackdetect
6490
6491 Detect video intervals that are (almost) completely black. Can be
6492 useful to detect chapter transitions, commercials, or invalid
6493 recordings. Output lines contains the time for the start, end and
6494 duration of the detected black interval expressed in seconds.
6495
6496 In order to display the output lines, you need to set the loglevel at
6497 least to the AV_LOG_INFO value.
6498
6499 The filter accepts the following options:
6500
6501 @table @option
6502 @item black_min_duration, d
6503 Set the minimum detected black duration expressed in seconds. It must
6504 be a non-negative floating point number.
6505
6506 Default value is 2.0.
6507
6508 @item picture_black_ratio_th, pic_th
6509 Set the threshold for considering a picture "black".
6510 Express the minimum value for the ratio:
6511 @example
6512 @var{nb_black_pixels} / @var{nb_pixels}
6513 @end example
6514
6515 for which a picture is considered black.
6516 Default value is 0.98.
6517
6518 @item pixel_black_th, pix_th
6519 Set the threshold for considering a pixel "black".
6520
6521 The threshold expresses the maximum pixel luminance value for which a
6522 pixel is considered "black". The provided value is scaled according to
6523 the following equation:
6524 @example
6525 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6526 @end example
6527
6528 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6529 the input video format, the range is [0-255] for YUV full-range
6530 formats and [16-235] for YUV non full-range formats.
6531
6532 Default value is 0.10.
6533 @end table
6534
6535 The following example sets the maximum pixel threshold to the minimum
6536 value, and detects only black intervals of 2 or more seconds:
6537 @example
6538 blackdetect=d=2:pix_th=0.00
6539 @end example
6540
6541 @section blackframe
6542
6543 Detect frames that are (almost) completely black. Can be useful to
6544 detect chapter transitions or commercials. Output lines consist of
6545 the frame number of the detected frame, the percentage of blackness,
6546 the position in the file if known or -1 and the timestamp in seconds.
6547
6548 In order to display the output lines, you need to set the loglevel at
6549 least to the AV_LOG_INFO value.
6550
6551 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6552 The value represents the percentage of pixels in the picture that
6553 are below the threshold value.
6554
6555 It accepts the following parameters:
6556
6557 @table @option
6558
6559 @item amount
6560 The percentage of the pixels that have to be below the threshold; it defaults to
6561 @code{98}.
6562
6563 @item threshold, thresh
6564 The threshold below which a pixel value is considered black; it defaults to
6565 @code{32}.
6566
6567 @end table
6568
6569 @section blend, tblend
6570
6571 Blend two video frames into each other.
6572
6573 The @code{blend} filter takes two input streams and outputs one
6574 stream, the first input is the "top" layer and second input is
6575 "bottom" layer.  By default, the output terminates when the longest input terminates.
6576
6577 The @code{tblend} (time blend) filter takes two consecutive frames
6578 from one single stream, and outputs the result obtained by blending
6579 the new frame on top of the old frame.
6580
6581 A description of the accepted options follows.
6582
6583 @table @option
6584 @item c0_mode
6585 @item c1_mode
6586 @item c2_mode
6587 @item c3_mode
6588 @item all_mode
6589 Set blend mode for specific pixel component or all pixel components in case
6590 of @var{all_mode}. Default value is @code{normal}.
6591
6592 Available values for component modes are:
6593 @table @samp
6594 @item addition
6595 @item grainmerge
6596 @item and
6597 @item average
6598 @item burn
6599 @item darken
6600 @item difference
6601 @item grainextract
6602 @item divide
6603 @item dodge
6604 @item freeze
6605 @item exclusion
6606 @item extremity
6607 @item glow
6608 @item hardlight
6609 @item hardmix
6610 @item heat
6611 @item lighten
6612 @item linearlight
6613 @item multiply
6614 @item multiply128
6615 @item negation
6616 @item normal
6617 @item or
6618 @item overlay
6619 @item phoenix
6620 @item pinlight
6621 @item reflect
6622 @item screen
6623 @item softlight
6624 @item subtract
6625 @item vividlight
6626 @item xor
6627 @end table
6628
6629 @item c0_opacity
6630 @item c1_opacity
6631 @item c2_opacity
6632 @item c3_opacity
6633 @item all_opacity
6634 Set blend opacity for specific pixel component or all pixel components in case
6635 of @var{all_opacity}. Only used in combination with pixel component blend modes.
6636
6637 @item c0_expr
6638 @item c1_expr
6639 @item c2_expr
6640 @item c3_expr
6641 @item all_expr
6642 Set blend expression for specific pixel component or all pixel components in case
6643 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6644
6645 The expressions can use the following variables:
6646
6647 @table @option
6648 @item N
6649 The sequential number of the filtered frame, starting from @code{0}.
6650
6651 @item X
6652 @item Y
6653 the coordinates of the current sample
6654
6655 @item W
6656 @item H
6657 the width and height of currently filtered plane
6658
6659 @item SW
6660 @item SH
6661 Width and height scale for the plane being filtered. It is the
6662 ratio between the dimensions of the current plane to the luma plane,
6663 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6664 the luma plane and @code{0.5,0.5} for the chroma planes.
6665
6666 @item T
6667 Time of the current frame, expressed in seconds.
6668
6669 @item TOP, A
6670 Value of pixel component at current location for first video frame (top layer).
6671
6672 @item BOTTOM, B
6673 Value of pixel component at current location for second video frame (bottom layer).
6674 @end table
6675 @end table
6676
6677 The @code{blend} filter also supports the @ref{framesync} options.
6678
6679 @subsection Examples
6680
6681 @itemize
6682 @item
6683 Apply transition from bottom layer to top layer in first 10 seconds:
6684 @example
6685 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6686 @end example
6687
6688 @item
6689 Apply linear horizontal transition from top layer to bottom layer:
6690 @example
6691 blend=all_expr='A*(X/W)+B*(1-X/W)'
6692 @end example
6693
6694 @item
6695 Apply 1x1 checkerboard effect:
6696 @example
6697 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6698 @end example
6699
6700 @item
6701 Apply uncover left effect:
6702 @example
6703 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6704 @end example
6705
6706 @item
6707 Apply uncover down effect:
6708 @example
6709 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6710 @end example
6711
6712 @item
6713 Apply uncover up-left effect:
6714 @example
6715 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6716 @end example
6717
6718 @item
6719 Split diagonally video and shows top and bottom layer on each side:
6720 @example
6721 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6722 @end example
6723
6724 @item
6725 Display differences between the current and the previous frame:
6726 @example
6727 tblend=all_mode=grainextract
6728 @end example
6729 @end itemize
6730
6731 @section bm3d
6732
6733 Denoise frames using Block-Matching 3D algorithm.
6734
6735 The filter accepts the following options.
6736
6737 @table @option
6738 @item sigma
6739 Set denoising strength. Default value is 1.
6740 Allowed range is from 0 to 999.9.
6741 The denoising algorithm is very sensitive to sigma, so adjust it
6742 according to the source.
6743
6744 @item block
6745 Set local patch size. This sets dimensions in 2D.
6746
6747 @item bstep
6748 Set sliding step for processing blocks. Default value is 4.
6749 Allowed range is from 1 to 64.
6750 Smaller values allows processing more reference blocks and is slower.
6751
6752 @item group
6753 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6754 When set to 1, no block matching is done. Larger values allows more blocks
6755 in single group.
6756 Allowed range is from 1 to 256.
6757
6758 @item range
6759 Set radius for search block matching. Default is 9.
6760 Allowed range is from 1 to INT32_MAX.
6761
6762 @item mstep
6763 Set step between two search locations for block matching. Default is 1.
6764 Allowed range is from 1 to 64. Smaller is slower.
6765
6766 @item thmse
6767 Set threshold of mean square error for block matching. Valid range is 0 to
6768 INT32_MAX.
6769
6770 @item hdthr
6771 Set thresholding parameter for hard thresholding in 3D transformed domain.
6772 Larger values results in stronger hard-thresholding filtering in frequency
6773 domain.
6774
6775 @item estim
6776 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6777 Default is @code{basic}.
6778
6779 @item ref
6780 If enabled, filter will use 2nd stream for block matching.
6781 Default is disabled for @code{basic} value of @var{estim} option,
6782 and always enabled if value of @var{estim} is @code{final}.
6783
6784 @item planes
6785 Set planes to filter. Default is all available except alpha.
6786 @end table
6787
6788 @subsection Examples
6789
6790 @itemize
6791 @item
6792 Basic filtering with bm3d:
6793 @example
6794 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6795 @end example
6796
6797 @item
6798 Same as above, but filtering only luma:
6799 @example
6800 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6801 @end example
6802
6803 @item
6804 Same as above, but with both estimation modes:
6805 @example
6806 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
6807 @end example
6808
6809 @item
6810 Same as above, but prefilter with @ref{nlmeans} filter instead:
6811 @example
6812 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
6813 @end example
6814 @end itemize
6815
6816 @section boxblur
6817
6818 Apply a boxblur algorithm to the input video.
6819
6820 It accepts the following parameters:
6821
6822 @table @option
6823
6824 @item luma_radius, lr
6825 @item luma_power, lp
6826 @item chroma_radius, cr
6827 @item chroma_power, cp
6828 @item alpha_radius, ar
6829 @item alpha_power, ap
6830
6831 @end table
6832
6833 A description of the accepted options follows.
6834
6835 @table @option
6836 @item luma_radius, lr
6837 @item chroma_radius, cr
6838 @item alpha_radius, ar
6839 Set an expression for the box radius in pixels used for blurring the
6840 corresponding input plane.
6841
6842 The radius value must be a non-negative number, and must not be
6843 greater than the value of the expression @code{min(w,h)/2} for the
6844 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6845 planes.
6846
6847 Default value for @option{luma_radius} is "2". If not specified,
6848 @option{chroma_radius} and @option{alpha_radius} default to the
6849 corresponding value set for @option{luma_radius}.
6850
6851 The expressions can contain the following constants:
6852 @table @option
6853 @item w
6854 @item h
6855 The input width and height in pixels.
6856
6857 @item cw
6858 @item ch
6859 The input chroma image width and height in pixels.
6860
6861 @item hsub
6862 @item vsub
6863 The horizontal and vertical chroma subsample values. For example, for the
6864 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6865 @end table
6866
6867 @item luma_power, lp
6868 @item chroma_power, cp
6869 @item alpha_power, ap
6870 Specify how many times the boxblur filter is applied to the
6871 corresponding plane.
6872
6873 Default value for @option{luma_power} is 2. If not specified,
6874 @option{chroma_power} and @option{alpha_power} default to the
6875 corresponding value set for @option{luma_power}.
6876
6877 A value of 0 will disable the effect.
6878 @end table
6879
6880 @subsection Examples
6881
6882 @itemize
6883 @item
6884 Apply a boxblur filter with the luma, chroma, and alpha radii
6885 set to 2:
6886 @example
6887 boxblur=luma_radius=2:luma_power=1
6888 boxblur=2:1
6889 @end example
6890
6891 @item
6892 Set the luma radius to 2, and alpha and chroma radius to 0:
6893 @example
6894 boxblur=2:1:cr=0:ar=0
6895 @end example
6896
6897 @item
6898 Set the luma and chroma radii to a fraction of the video dimension:
6899 @example
6900 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6901 @end example
6902 @end itemize
6903
6904 @section bwdif
6905
6906 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6907 Deinterlacing Filter").
6908
6909 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6910 interpolation algorithms.
6911 It accepts the following parameters:
6912
6913 @table @option
6914 @item mode
6915 The interlacing mode to adopt. It accepts one of the following values:
6916
6917 @table @option
6918 @item 0, send_frame
6919 Output one frame for each frame.
6920 @item 1, send_field
6921 Output one frame for each field.
6922 @end table
6923
6924 The default value is @code{send_field}.
6925
6926 @item parity
6927 The picture field parity assumed for the input interlaced video. It accepts one
6928 of the following values:
6929
6930 @table @option
6931 @item 0, tff
6932 Assume the top field is first.
6933 @item 1, bff
6934 Assume the bottom field is first.
6935 @item -1, auto
6936 Enable automatic detection of field parity.
6937 @end table
6938
6939 The default value is @code{auto}.
6940 If the interlacing is unknown or the decoder does not export this information,
6941 top field first will be assumed.
6942
6943 @item deint
6944 Specify which frames to deinterlace. Accepts one of the following
6945 values:
6946
6947 @table @option
6948 @item 0, all
6949 Deinterlace all frames.
6950 @item 1, interlaced
6951 Only deinterlace frames marked as interlaced.
6952 @end table
6953
6954 The default value is @code{all}.
6955 @end table
6956
6957 @section chromahold
6958 Remove all color information for all colors except for certain one.
6959
6960 The filter accepts the following options:
6961
6962 @table @option
6963 @item color
6964 The color which will not be replaced with neutral chroma.
6965
6966 @item similarity
6967 Similarity percentage with the above color.
6968 0.01 matches only the exact key color, while 1.0 matches everything.
6969
6970 @item blend
6971 Blend percentage.
6972 0.0 makes pixels either fully gray, or not gray at all.
6973 Higher values result in more preserved color.
6974
6975 @item yuv
6976 Signals that the color passed is already in YUV instead of RGB.
6977
6978 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6979 This can be used to pass exact YUV values as hexadecimal numbers.
6980 @end table
6981
6982 @subsection Commands
6983 This filter supports same @ref{commands} as options.
6984 The command accepts the same syntax of the corresponding option.
6985
6986 If the specified expression is not valid, it is kept at its current
6987 value.
6988
6989 @section chromakey
6990 YUV colorspace color/chroma keying.
6991
6992 The filter accepts the following options:
6993
6994 @table @option
6995 @item color
6996 The color which will be replaced with transparency.
6997
6998 @item similarity
6999 Similarity percentage with the key color.
7000
7001 0.01 matches only the exact key color, while 1.0 matches everything.
7002
7003 @item blend
7004 Blend percentage.
7005
7006 0.0 makes pixels either fully transparent, or not transparent at all.
7007
7008 Higher values result in semi-transparent pixels, with a higher transparency
7009 the more similar the pixels color is to the key color.
7010
7011 @item yuv
7012 Signals that the color passed is already in YUV instead of RGB.
7013
7014 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7015 This can be used to pass exact YUV values as hexadecimal numbers.
7016 @end table
7017
7018 @subsection Commands
7019 This filter supports same @ref{commands} as options.
7020 The command accepts the same syntax of the corresponding option.
7021
7022 If the specified expression is not valid, it is kept at its current
7023 value.
7024
7025 @subsection Examples
7026
7027 @itemize
7028 @item
7029 Make every green pixel in the input image transparent:
7030 @example
7031 ffmpeg -i input.png -vf chromakey=green out.png
7032 @end example
7033
7034 @item
7035 Overlay a greenscreen-video on top of a static black background.
7036 @example
7037 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
7038 @end example
7039 @end itemize
7040
7041 @section chromashift
7042 Shift chroma pixels horizontally and/or vertically.
7043
7044 The filter accepts the following options:
7045 @table @option
7046 @item cbh
7047 Set amount to shift chroma-blue horizontally.
7048 @item cbv
7049 Set amount to shift chroma-blue vertically.
7050 @item crh
7051 Set amount to shift chroma-red horizontally.
7052 @item crv
7053 Set amount to shift chroma-red vertically.
7054 @item edge
7055 Set edge mode, can be @var{smear}, default, or @var{warp}.
7056 @end table
7057
7058 @subsection Commands
7059
7060 This filter supports the all above options as @ref{commands}.
7061
7062 @section ciescope
7063
7064 Display CIE color diagram with pixels overlaid onto it.
7065
7066 The filter accepts the following options:
7067
7068 @table @option
7069 @item system
7070 Set color system.
7071
7072 @table @samp
7073 @item ntsc, 470m
7074 @item ebu, 470bg
7075 @item smpte
7076 @item 240m
7077 @item apple
7078 @item widergb
7079 @item cie1931
7080 @item rec709, hdtv
7081 @item uhdtv, rec2020
7082 @item dcip3
7083 @end table
7084
7085 @item cie
7086 Set CIE system.
7087
7088 @table @samp
7089 @item xyy
7090 @item ucs
7091 @item luv
7092 @end table
7093
7094 @item gamuts
7095 Set what gamuts to draw.
7096
7097 See @code{system} option for available values.
7098
7099 @item size, s
7100 Set ciescope size, by default set to 512.
7101
7102 @item intensity, i
7103 Set intensity used to map input pixel values to CIE diagram.
7104
7105 @item contrast
7106 Set contrast used to draw tongue colors that are out of active color system gamut.
7107
7108 @item corrgamma
7109 Correct gamma displayed on scope, by default enabled.
7110
7111 @item showwhite
7112 Show white point on CIE diagram, by default disabled.
7113
7114 @item gamma
7115 Set input gamma. Used only with XYZ input color space.
7116 @end table
7117
7118 @section codecview
7119
7120 Visualize information exported by some codecs.
7121
7122 Some codecs can export information through frames using side-data or other
7123 means. For example, some MPEG based codecs export motion vectors through the
7124 @var{export_mvs} flag in the codec @option{flags2} option.
7125
7126 The filter accepts the following option:
7127
7128 @table @option
7129 @item mv
7130 Set motion vectors to visualize.
7131
7132 Available flags for @var{mv} are:
7133
7134 @table @samp
7135 @item pf
7136 forward predicted MVs of P-frames
7137 @item bf
7138 forward predicted MVs of B-frames
7139 @item bb
7140 backward predicted MVs of B-frames
7141 @end table
7142
7143 @item qp
7144 Display quantization parameters using the chroma planes.
7145
7146 @item mv_type, mvt
7147 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7148
7149 Available flags for @var{mv_type} are:
7150
7151 @table @samp
7152 @item fp
7153 forward predicted MVs
7154 @item bp
7155 backward predicted MVs
7156 @end table
7157
7158 @item frame_type, ft
7159 Set frame type to visualize motion vectors of.
7160
7161 Available flags for @var{frame_type} are:
7162
7163 @table @samp
7164 @item if
7165 intra-coded frames (I-frames)
7166 @item pf
7167 predicted frames (P-frames)
7168 @item bf
7169 bi-directionally predicted frames (B-frames)
7170 @end table
7171 @end table
7172
7173 @subsection Examples
7174
7175 @itemize
7176 @item
7177 Visualize forward predicted MVs of all frames using @command{ffplay}:
7178 @example
7179 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7180 @end example
7181
7182 @item
7183 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7184 @example
7185 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7186 @end example
7187 @end itemize
7188
7189 @section colorbalance
7190 Modify intensity of primary colors (red, green and blue) of input frames.
7191
7192 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7193 regions for the red-cyan, green-magenta or blue-yellow balance.
7194
7195 A positive adjustment value shifts the balance towards the primary color, a negative
7196 value towards the complementary color.
7197
7198 The filter accepts the following options:
7199
7200 @table @option
7201 @item rs
7202 @item gs
7203 @item bs
7204 Adjust red, green and blue shadows (darkest pixels).
7205
7206 @item rm
7207 @item gm
7208 @item bm
7209 Adjust red, green and blue midtones (medium pixels).
7210
7211 @item rh
7212 @item gh
7213 @item bh
7214 Adjust red, green and blue highlights (brightest pixels).
7215
7216 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7217
7218 @item pl
7219 Preserve lightness when changing color balance. Default is disabled.
7220 @end table
7221
7222 @subsection Examples
7223
7224 @itemize
7225 @item
7226 Add red color cast to shadows:
7227 @example
7228 colorbalance=rs=.3
7229 @end example
7230 @end itemize
7231
7232 @subsection Commands
7233
7234 This filter supports the all above options as @ref{commands}.
7235
7236 @section colorchannelmixer
7237
7238 Adjust video input frames by re-mixing color channels.
7239
7240 This filter modifies a color channel by adding the values associated to
7241 the other channels of the same pixels. For example if the value to
7242 modify is red, the output value will be:
7243 @example
7244 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
7245 @end example
7246
7247 The filter accepts the following options:
7248
7249 @table @option
7250 @item rr
7251 @item rg
7252 @item rb
7253 @item ra
7254 Adjust contribution of input red, green, blue and alpha channels for output red channel.
7255 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
7256
7257 @item gr
7258 @item gg
7259 @item gb
7260 @item ga
7261 Adjust contribution of input red, green, blue and alpha channels for output green channel.
7262 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
7263
7264 @item br
7265 @item bg
7266 @item bb
7267 @item ba
7268 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
7269 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
7270
7271 @item ar
7272 @item ag
7273 @item ab
7274 @item aa
7275 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
7276 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
7277
7278 Allowed ranges for options are @code{[-2.0, 2.0]}.
7279 @end table
7280
7281 @subsection Examples
7282
7283 @itemize
7284 @item
7285 Convert source to grayscale:
7286 @example
7287 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
7288 @end example
7289 @item
7290 Simulate sepia tones:
7291 @example
7292 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
7293 @end example
7294 @end itemize
7295
7296 @subsection Commands
7297
7298 This filter supports the all above options as @ref{commands}.
7299
7300 @section colorkey
7301 RGB colorspace color keying.
7302
7303 The filter accepts the following options:
7304
7305 @table @option
7306 @item color
7307 The color which will be replaced with transparency.
7308
7309 @item similarity
7310 Similarity percentage with the key color.
7311
7312 0.01 matches only the exact key color, while 1.0 matches everything.
7313
7314 @item blend
7315 Blend percentage.
7316
7317 0.0 makes pixels either fully transparent, or not transparent at all.
7318
7319 Higher values result in semi-transparent pixels, with a higher transparency
7320 the more similar the pixels color is to the key color.
7321 @end table
7322
7323 @subsection Examples
7324
7325 @itemize
7326 @item
7327 Make every green pixel in the input image transparent:
7328 @example
7329 ffmpeg -i input.png -vf colorkey=green out.png
7330 @end example
7331
7332 @item
7333 Overlay a greenscreen-video on top of a static background image.
7334 @example
7335 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
7336 @end example
7337 @end itemize
7338
7339 @section colorhold
7340 Remove all color information for all RGB colors except for certain one.
7341
7342 The filter accepts the following options:
7343
7344 @table @option
7345 @item color
7346 The color which will not be replaced with neutral gray.
7347
7348 @item similarity
7349 Similarity percentage with the above color.
7350 0.01 matches only the exact key color, while 1.0 matches everything.
7351
7352 @item blend
7353 Blend percentage. 0.0 makes pixels fully gray.
7354 Higher values result in more preserved color.
7355 @end table
7356
7357 @section colorlevels
7358
7359 Adjust video input frames using levels.
7360
7361 The filter accepts the following options:
7362
7363 @table @option
7364 @item rimin
7365 @item gimin
7366 @item bimin
7367 @item aimin
7368 Adjust red, green, blue and alpha input black point.
7369 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7370
7371 @item rimax
7372 @item gimax
7373 @item bimax
7374 @item aimax
7375 Adjust red, green, blue and alpha input white point.
7376 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
7377
7378 Input levels are used to lighten highlights (bright tones), darken shadows
7379 (dark tones), change the balance of bright and dark tones.
7380
7381 @item romin
7382 @item gomin
7383 @item bomin
7384 @item aomin
7385 Adjust red, green, blue and alpha output black point.
7386 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
7387
7388 @item romax
7389 @item gomax
7390 @item bomax
7391 @item aomax
7392 Adjust red, green, blue and alpha output white point.
7393 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
7394
7395 Output levels allows manual selection of a constrained output level range.
7396 @end table
7397
7398 @subsection Examples
7399
7400 @itemize
7401 @item
7402 Make video output darker:
7403 @example
7404 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
7405 @end example
7406
7407 @item
7408 Increase contrast:
7409 @example
7410 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
7411 @end example
7412
7413 @item
7414 Make video output lighter:
7415 @example
7416 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
7417 @end example
7418
7419 @item
7420 Increase brightness:
7421 @example
7422 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
7423 @end example
7424 @end itemize
7425
7426 @section colormatrix
7427
7428 Convert color matrix.
7429
7430 The filter accepts the following options:
7431
7432 @table @option
7433 @item src
7434 @item dst
7435 Specify the source and destination color matrix. Both values must be
7436 specified.
7437
7438 The accepted values are:
7439 @table @samp
7440 @item bt709
7441 BT.709
7442
7443 @item fcc
7444 FCC
7445
7446 @item bt601
7447 BT.601
7448
7449 @item bt470
7450 BT.470
7451
7452 @item bt470bg
7453 BT.470BG
7454
7455 @item smpte170m
7456 SMPTE-170M
7457
7458 @item smpte240m
7459 SMPTE-240M
7460
7461 @item bt2020
7462 BT.2020
7463 @end table
7464 @end table
7465
7466 For example to convert from BT.601 to SMPTE-240M, use the command:
7467 @example
7468 colormatrix=bt601:smpte240m
7469 @end example
7470
7471 @section colorspace
7472
7473 Convert colorspace, transfer characteristics or color primaries.
7474 Input video needs to have an even size.
7475
7476 The filter accepts the following options:
7477
7478 @table @option
7479 @anchor{all}
7480 @item all
7481 Specify all color properties at once.
7482
7483 The accepted values are:
7484 @table @samp
7485 @item bt470m
7486 BT.470M
7487
7488 @item bt470bg
7489 BT.470BG
7490
7491 @item bt601-6-525
7492 BT.601-6 525
7493
7494 @item bt601-6-625
7495 BT.601-6 625
7496
7497 @item bt709
7498 BT.709
7499
7500 @item smpte170m
7501 SMPTE-170M
7502
7503 @item smpte240m
7504 SMPTE-240M
7505
7506 @item bt2020
7507 BT.2020
7508
7509 @end table
7510
7511 @anchor{space}
7512 @item space
7513 Specify output colorspace.
7514
7515 The accepted values are:
7516 @table @samp
7517 @item bt709
7518 BT.709
7519
7520 @item fcc
7521 FCC
7522
7523 @item bt470bg
7524 BT.470BG or BT.601-6 625
7525
7526 @item smpte170m
7527 SMPTE-170M or BT.601-6 525
7528
7529 @item smpte240m
7530 SMPTE-240M
7531
7532 @item ycgco
7533 YCgCo
7534
7535 @item bt2020ncl
7536 BT.2020 with non-constant luminance
7537
7538 @end table
7539
7540 @anchor{trc}
7541 @item trc
7542 Specify output transfer characteristics.
7543
7544 The accepted values are:
7545 @table @samp
7546 @item bt709
7547 BT.709
7548
7549 @item bt470m
7550 BT.470M
7551
7552 @item bt470bg
7553 BT.470BG
7554
7555 @item gamma22
7556 Constant gamma of 2.2
7557
7558 @item gamma28
7559 Constant gamma of 2.8
7560
7561 @item smpte170m
7562 SMPTE-170M, BT.601-6 625 or BT.601-6 525
7563
7564 @item smpte240m
7565 SMPTE-240M
7566
7567 @item srgb
7568 SRGB
7569
7570 @item iec61966-2-1
7571 iec61966-2-1
7572
7573 @item iec61966-2-4
7574 iec61966-2-4
7575
7576 @item xvycc
7577 xvycc
7578
7579 @item bt2020-10
7580 BT.2020 for 10-bits content
7581
7582 @item bt2020-12
7583 BT.2020 for 12-bits content
7584
7585 @end table
7586
7587 @anchor{primaries}
7588 @item primaries
7589 Specify output color primaries.
7590
7591 The accepted values are:
7592 @table @samp
7593 @item bt709
7594 BT.709
7595
7596 @item bt470m
7597 BT.470M
7598
7599 @item bt470bg
7600 BT.470BG or BT.601-6 625
7601
7602 @item smpte170m
7603 SMPTE-170M or BT.601-6 525
7604
7605 @item smpte240m
7606 SMPTE-240M
7607
7608 @item film
7609 film
7610
7611 @item smpte431
7612 SMPTE-431
7613
7614 @item smpte432
7615 SMPTE-432
7616
7617 @item bt2020
7618 BT.2020
7619
7620 @item jedec-p22
7621 JEDEC P22 phosphors
7622
7623 @end table
7624
7625 @anchor{range}
7626 @item range
7627 Specify output color range.
7628
7629 The accepted values are:
7630 @table @samp
7631 @item tv
7632 TV (restricted) range
7633
7634 @item mpeg
7635 MPEG (restricted) range
7636
7637 @item pc
7638 PC (full) range
7639
7640 @item jpeg
7641 JPEG (full) range
7642
7643 @end table
7644
7645 @item format
7646 Specify output color format.
7647
7648 The accepted values are:
7649 @table @samp
7650 @item yuv420p
7651 YUV 4:2:0 planar 8-bits
7652
7653 @item yuv420p10
7654 YUV 4:2:0 planar 10-bits
7655
7656 @item yuv420p12
7657 YUV 4:2:0 planar 12-bits
7658
7659 @item yuv422p
7660 YUV 4:2:2 planar 8-bits
7661
7662 @item yuv422p10
7663 YUV 4:2:2 planar 10-bits
7664
7665 @item yuv422p12
7666 YUV 4:2:2 planar 12-bits
7667
7668 @item yuv444p
7669 YUV 4:4:4 planar 8-bits
7670
7671 @item yuv444p10
7672 YUV 4:4:4 planar 10-bits
7673
7674 @item yuv444p12
7675 YUV 4:4:4 planar 12-bits
7676
7677 @end table
7678
7679 @item fast
7680 Do a fast conversion, which skips gamma/primary correction. This will take
7681 significantly less CPU, but will be mathematically incorrect. To get output
7682 compatible with that produced by the colormatrix filter, use fast=1.
7683
7684 @item dither
7685 Specify dithering mode.
7686
7687 The accepted values are:
7688 @table @samp
7689 @item none
7690 No dithering
7691
7692 @item fsb
7693 Floyd-Steinberg dithering
7694 @end table
7695
7696 @item wpadapt
7697 Whitepoint adaptation mode.
7698
7699 The accepted values are:
7700 @table @samp
7701 @item bradford
7702 Bradford whitepoint adaptation
7703
7704 @item vonkries
7705 von Kries whitepoint adaptation
7706
7707 @item identity
7708 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7709 @end table
7710
7711 @item iall
7712 Override all input properties at once. Same accepted values as @ref{all}.
7713
7714 @item ispace
7715 Override input colorspace. Same accepted values as @ref{space}.
7716
7717 @item iprimaries
7718 Override input color primaries. Same accepted values as @ref{primaries}.
7719
7720 @item itrc
7721 Override input transfer characteristics. Same accepted values as @ref{trc}.
7722
7723 @item irange
7724 Override input color range. Same accepted values as @ref{range}.
7725
7726 @end table
7727
7728 The filter converts the transfer characteristics, color space and color
7729 primaries to the specified user values. The output value, if not specified,
7730 is set to a default value based on the "all" property. If that property is
7731 also not specified, the filter will log an error. The output color range and
7732 format default to the same value as the input color range and format. The
7733 input transfer characteristics, color space, color primaries and color range
7734 should be set on the input data. If any of these are missing, the filter will
7735 log an error and no conversion will take place.
7736
7737 For example to convert the input to SMPTE-240M, use the command:
7738 @example
7739 colorspace=smpte240m
7740 @end example
7741
7742 @section convolution
7743
7744 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7745
7746 The filter accepts the following options:
7747
7748 @table @option
7749 @item 0m
7750 @item 1m
7751 @item 2m
7752 @item 3m
7753 Set matrix for each plane.
7754 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7755 and from 1 to 49 odd number of signed integers in @var{row} mode.
7756
7757 @item 0rdiv
7758 @item 1rdiv
7759 @item 2rdiv
7760 @item 3rdiv
7761 Set multiplier for calculated value for each plane.
7762 If unset or 0, it will be sum of all matrix elements.
7763
7764 @item 0bias
7765 @item 1bias
7766 @item 2bias
7767 @item 3bias
7768 Set bias for each plane. This value is added to the result of the multiplication.
7769 Useful for making the overall image brighter or darker. Default is 0.0.
7770
7771 @item 0mode
7772 @item 1mode
7773 @item 2mode
7774 @item 3mode
7775 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7776 Default is @var{square}.
7777 @end table
7778
7779 @subsection Examples
7780
7781 @itemize
7782 @item
7783 Apply sharpen:
7784 @example
7785 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"
7786 @end example
7787
7788 @item
7789 Apply blur:
7790 @example
7791 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"
7792 @end example
7793
7794 @item
7795 Apply edge enhance:
7796 @example
7797 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"
7798 @end example
7799
7800 @item
7801 Apply edge detect:
7802 @example
7803 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"
7804 @end example
7805
7806 @item
7807 Apply laplacian edge detector which includes diagonals:
7808 @example
7809 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"
7810 @end example
7811
7812 @item
7813 Apply emboss:
7814 @example
7815 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"
7816 @end example
7817 @end itemize
7818
7819 @section convolve
7820
7821 Apply 2D convolution of video stream in frequency domain using second stream
7822 as impulse.
7823
7824 The filter accepts the following options:
7825
7826 @table @option
7827 @item planes
7828 Set which planes to process.
7829
7830 @item impulse
7831 Set which impulse video frames will be processed, can be @var{first}
7832 or @var{all}. Default is @var{all}.
7833 @end table
7834
7835 The @code{convolve} filter also supports the @ref{framesync} options.
7836
7837 @section copy
7838
7839 Copy the input video source unchanged to the output. This is mainly useful for
7840 testing purposes.
7841
7842 @anchor{coreimage}
7843 @section coreimage
7844 Video filtering on GPU using Apple's CoreImage API on OSX.
7845
7846 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7847 processed by video hardware. However, software-based OpenGL implementations
7848 exist which means there is no guarantee for hardware processing. It depends on
7849 the respective OSX.
7850
7851 There are many filters and image generators provided by Apple that come with a
7852 large variety of options. The filter has to be referenced by its name along
7853 with its options.
7854
7855 The coreimage filter accepts the following options:
7856 @table @option
7857 @item list_filters
7858 List all available filters and generators along with all their respective
7859 options as well as possible minimum and maximum values along with the default
7860 values.
7861 @example
7862 list_filters=true
7863 @end example
7864
7865 @item filter
7866 Specify all filters by their respective name and options.
7867 Use @var{list_filters} to determine all valid filter names and options.
7868 Numerical options are specified by a float value and are automatically clamped
7869 to their respective value range.  Vector and color options have to be specified
7870 by a list of space separated float values. Character escaping has to be done.
7871 A special option name @code{default} is available to use default options for a
7872 filter.
7873
7874 It is required to specify either @code{default} or at least one of the filter options.
7875 All omitted options are used with their default values.
7876 The syntax of the filter string is as follows:
7877 @example
7878 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7879 @end example
7880
7881 @item output_rect
7882 Specify a rectangle where the output of the filter chain is copied into the
7883 input image. It is given by a list of space separated float values:
7884 @example
7885 output_rect=x\ y\ width\ height
7886 @end example
7887 If not given, the output rectangle equals the dimensions of the input image.
7888 The output rectangle is automatically cropped at the borders of the input
7889 image. Negative values are valid for each component.
7890 @example
7891 output_rect=25\ 25\ 100\ 100
7892 @end example
7893 @end table
7894
7895 Several filters can be chained for successive processing without GPU-HOST
7896 transfers allowing for fast processing of complex filter chains.
7897 Currently, only filters with zero (generators) or exactly one (filters) input
7898 image and one output image are supported. Also, transition filters are not yet
7899 usable as intended.
7900
7901 Some filters generate output images with additional padding depending on the
7902 respective filter kernel. The padding is automatically removed to ensure the
7903 filter output has the same size as the input image.
7904
7905 For image generators, the size of the output image is determined by the
7906 previous output image of the filter chain or the input image of the whole
7907 filterchain, respectively. The generators do not use the pixel information of
7908 this image to generate their output. However, the generated output is
7909 blended onto this image, resulting in partial or complete coverage of the
7910 output image.
7911
7912 The @ref{coreimagesrc} video source can be used for generating input images
7913 which are directly fed into the filter chain. By using it, providing input
7914 images by another video source or an input video is not required.
7915
7916 @subsection Examples
7917
7918 @itemize
7919
7920 @item
7921 List all filters available:
7922 @example
7923 coreimage=list_filters=true
7924 @end example
7925
7926 @item
7927 Use the CIBoxBlur filter with default options to blur an image:
7928 @example
7929 coreimage=filter=CIBoxBlur@@default
7930 @end example
7931
7932 @item
7933 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
7934 its center at 100x100 and a radius of 50 pixels:
7935 @example
7936 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
7937 @end example
7938
7939 @item
7940 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
7941 given as complete and escaped command-line for Apple's standard bash shell:
7942 @example
7943 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
7944 @end example
7945 @end itemize
7946
7947 @section cover_rect
7948
7949 Cover a rectangular object
7950
7951 It accepts the following options:
7952
7953 @table @option
7954 @item cover
7955 Filepath of the optional cover image, needs to be in yuv420.
7956
7957 @item mode
7958 Set covering mode.
7959
7960 It accepts the following values:
7961 @table @samp
7962 @item cover
7963 cover it by the supplied image
7964 @item blur
7965 cover it by interpolating the surrounding pixels
7966 @end table
7967
7968 Default value is @var{blur}.
7969 @end table
7970
7971 @subsection Examples
7972
7973 @itemize
7974 @item
7975 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
7976 @example
7977 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7978 @end example
7979 @end itemize
7980
7981 @section crop
7982
7983 Crop the input video to given dimensions.
7984
7985 It accepts the following parameters:
7986
7987 @table @option
7988 @item w, out_w
7989 The width of the output video. It defaults to @code{iw}.
7990 This expression is evaluated only once during the filter
7991 configuration, or when the @samp{w} or @samp{out_w} command is sent.
7992
7993 @item h, out_h
7994 The height of the output video. It defaults to @code{ih}.
7995 This expression is evaluated only once during the filter
7996 configuration, or when the @samp{h} or @samp{out_h} command is sent.
7997
7998 @item x
7999 The horizontal position, in the input video, of the left edge of the output
8000 video. It defaults to @code{(in_w-out_w)/2}.
8001 This expression is evaluated per-frame.
8002
8003 @item y
8004 The vertical position, in the input video, of the top edge of the output video.
8005 It defaults to @code{(in_h-out_h)/2}.
8006 This expression is evaluated per-frame.
8007
8008 @item keep_aspect
8009 If set to 1 will force the output display aspect ratio
8010 to be the same of the input, by changing the output sample aspect
8011 ratio. It defaults to 0.
8012
8013 @item exact
8014 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8015 width/height/x/y as specified and will not be rounded to nearest smaller value.
8016 It defaults to 0.
8017 @end table
8018
8019 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8020 expressions containing the following constants:
8021
8022 @table @option
8023 @item x
8024 @item y
8025 The computed values for @var{x} and @var{y}. They are evaluated for
8026 each new frame.
8027
8028 @item in_w
8029 @item in_h
8030 The input width and height.
8031
8032 @item iw
8033 @item ih
8034 These are the same as @var{in_w} and @var{in_h}.
8035
8036 @item out_w
8037 @item out_h
8038 The output (cropped) width and height.
8039
8040 @item ow
8041 @item oh
8042 These are the same as @var{out_w} and @var{out_h}.
8043
8044 @item a
8045 same as @var{iw} / @var{ih}
8046
8047 @item sar
8048 input sample aspect ratio
8049
8050 @item dar
8051 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8052
8053 @item hsub
8054 @item vsub
8055 horizontal and vertical chroma subsample values. For example for the
8056 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8057
8058 @item n
8059 The number of the input frame, starting from 0.
8060
8061 @item pos
8062 the position in the file of the input frame, NAN if unknown
8063
8064 @item t
8065 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8066
8067 @end table
8068
8069 The expression for @var{out_w} may depend on the value of @var{out_h},
8070 and the expression for @var{out_h} may depend on @var{out_w}, but they
8071 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8072 evaluated after @var{out_w} and @var{out_h}.
8073
8074 The @var{x} and @var{y} parameters specify the expressions for the
8075 position of the top-left corner of the output (non-cropped) area. They
8076 are evaluated for each frame. If the evaluated value is not valid, it
8077 is approximated to the nearest valid value.
8078
8079 The expression for @var{x} may depend on @var{y}, and the expression
8080 for @var{y} may depend on @var{x}.
8081
8082 @subsection Examples
8083
8084 @itemize
8085 @item
8086 Crop area with size 100x100 at position (12,34).
8087 @example
8088 crop=100:100:12:34
8089 @end example
8090
8091 Using named options, the example above becomes:
8092 @example
8093 crop=w=100:h=100:x=12:y=34
8094 @end example
8095
8096 @item
8097 Crop the central input area with size 100x100:
8098 @example
8099 crop=100:100
8100 @end example
8101
8102 @item
8103 Crop the central input area with size 2/3 of the input video:
8104 @example
8105 crop=2/3*in_w:2/3*in_h
8106 @end example
8107
8108 @item
8109 Crop the input video central square:
8110 @example
8111 crop=out_w=in_h
8112 crop=in_h
8113 @end example
8114
8115 @item
8116 Delimit the rectangle with the top-left corner placed at position
8117 100:100 and the right-bottom corner corresponding to the right-bottom
8118 corner of the input image.
8119 @example
8120 crop=in_w-100:in_h-100:100:100
8121 @end example
8122
8123 @item
8124 Crop 10 pixels from the left and right borders, and 20 pixels from
8125 the top and bottom borders
8126 @example
8127 crop=in_w-2*10:in_h-2*20
8128 @end example
8129
8130 @item
8131 Keep only the bottom right quarter of the input image:
8132 @example
8133 crop=in_w/2:in_h/2:in_w/2:in_h/2
8134 @end example
8135
8136 @item
8137 Crop height for getting Greek harmony:
8138 @example
8139 crop=in_w:1/PHI*in_w
8140 @end example
8141
8142 @item
8143 Apply trembling effect:
8144 @example
8145 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)
8146 @end example
8147
8148 @item
8149 Apply erratic camera effect depending on timestamp:
8150 @example
8151 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)"
8152 @end example
8153
8154 @item
8155 Set x depending on the value of y:
8156 @example
8157 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8158 @end example
8159 @end itemize
8160
8161 @subsection Commands
8162
8163 This filter supports the following commands:
8164 @table @option
8165 @item w, out_w
8166 @item h, out_h
8167 @item x
8168 @item y
8169 Set width/height of the output video and the horizontal/vertical position
8170 in the input video.
8171 The command accepts the same syntax of the corresponding option.
8172
8173 If the specified expression is not valid, it is kept at its current
8174 value.
8175 @end table
8176
8177 @section cropdetect
8178
8179 Auto-detect the crop size.
8180
8181 It calculates the necessary cropping parameters and prints the
8182 recommended parameters via the logging system. The detected dimensions
8183 correspond to the non-black area of the input video.
8184
8185 It accepts the following parameters:
8186
8187 @table @option
8188
8189 @item limit
8190 Set higher black value threshold, which can be optionally specified
8191 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8192 value greater to the set value is considered non-black. It defaults to 24.
8193 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8194 on the bitdepth of the pixel format.
8195
8196 @item round
8197 The value which the width/height should be divisible by. It defaults to
8198 16. The offset is automatically adjusted to center the video. Use 2 to
8199 get only even dimensions (needed for 4:2:2 video). 16 is best when
8200 encoding to most video codecs.
8201
8202 @item reset_count, reset
8203 Set the counter that determines after how many frames cropdetect will
8204 reset the previously detected largest video area and start over to
8205 detect the current optimal crop area. Default value is 0.
8206
8207 This can be useful when channel logos distort the video area. 0
8208 indicates 'never reset', and returns the largest area encountered during
8209 playback.
8210 @end table
8211
8212 @anchor{cue}
8213 @section cue
8214
8215 Delay video filtering until a given wallclock timestamp. The filter first
8216 passes on @option{preroll} amount of frames, then it buffers at most
8217 @option{buffer} amount of frames and waits for the cue. After reaching the cue
8218 it forwards the buffered frames and also any subsequent frames coming in its
8219 input.
8220
8221 The filter can be used synchronize the output of multiple ffmpeg processes for
8222 realtime output devices like decklink. By putting the delay in the filtering
8223 chain and pre-buffering frames the process can pass on data to output almost
8224 immediately after the target wallclock timestamp is reached.
8225
8226 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
8227 some use cases.
8228
8229 @table @option
8230
8231 @item cue
8232 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
8233
8234 @item preroll
8235 The duration of content to pass on as preroll expressed in seconds. Default is 0.
8236
8237 @item buffer
8238 The maximum duration of content to buffer before waiting for the cue expressed
8239 in seconds. Default is 0.
8240
8241 @end table
8242
8243 @anchor{curves}
8244 @section curves
8245
8246 Apply color adjustments using curves.
8247
8248 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
8249 component (red, green and blue) has its values defined by @var{N} key points
8250 tied from each other using a smooth curve. The x-axis represents the pixel
8251 values from the input frame, and the y-axis the new pixel values to be set for
8252 the output frame.
8253
8254 By default, a component curve is defined by the two points @var{(0;0)} and
8255 @var{(1;1)}. This creates a straight line where each original pixel value is
8256 "adjusted" to its own value, which means no change to the image.
8257
8258 The filter allows you to redefine these two points and add some more. A new
8259 curve (using a natural cubic spline interpolation) will be define to pass
8260 smoothly through all these new coordinates. The new defined points needs to be
8261 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
8262 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
8263 the vector spaces, the values will be clipped accordingly.
8264
8265 The filter accepts the following options:
8266
8267 @table @option
8268 @item preset
8269 Select one of the available color presets. This option can be used in addition
8270 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
8271 options takes priority on the preset values.
8272 Available presets are:
8273 @table @samp
8274 @item none
8275 @item color_negative
8276 @item cross_process
8277 @item darker
8278 @item increase_contrast
8279 @item lighter
8280 @item linear_contrast
8281 @item medium_contrast
8282 @item negative
8283 @item strong_contrast
8284 @item vintage
8285 @end table
8286 Default is @code{none}.
8287 @item master, m
8288 Set the master key points. These points will define a second pass mapping. It
8289 is sometimes called a "luminance" or "value" mapping. It can be used with
8290 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
8291 post-processing LUT.
8292 @item red, r
8293 Set the key points for the red component.
8294 @item green, g
8295 Set the key points for the green component.
8296 @item blue, b
8297 Set the key points for the blue component.
8298 @item all
8299 Set the key points for all components (not including master).
8300 Can be used in addition to the other key points component
8301 options. In this case, the unset component(s) will fallback on this
8302 @option{all} setting.
8303 @item psfile
8304 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
8305 @item plot
8306 Save Gnuplot script of the curves in specified file.
8307 @end table
8308
8309 To avoid some filtergraph syntax conflicts, each key points list need to be
8310 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
8311
8312 @subsection Examples
8313
8314 @itemize
8315 @item
8316 Increase slightly the middle level of blue:
8317 @example
8318 curves=blue='0/0 0.5/0.58 1/1'
8319 @end example
8320
8321 @item
8322 Vintage effect:
8323 @example
8324 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'
8325 @end example
8326 Here we obtain the following coordinates for each components:
8327 @table @var
8328 @item red
8329 @code{(0;0.11) (0.42;0.51) (1;0.95)}
8330 @item green
8331 @code{(0;0) (0.50;0.48) (1;1)}
8332 @item blue
8333 @code{(0;0.22) (0.49;0.44) (1;0.80)}
8334 @end table
8335
8336 @item
8337 The previous example can also be achieved with the associated built-in preset:
8338 @example
8339 curves=preset=vintage
8340 @end example
8341
8342 @item
8343 Or simply:
8344 @example
8345 curves=vintage
8346 @end example
8347
8348 @item
8349 Use a Photoshop preset and redefine the points of the green component:
8350 @example
8351 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
8352 @end example
8353
8354 @item
8355 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
8356 and @command{gnuplot}:
8357 @example
8358 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
8359 gnuplot -p /tmp/curves.plt
8360 @end example
8361 @end itemize
8362
8363 @section datascope
8364
8365 Video data analysis filter.
8366
8367 This filter shows hexadecimal pixel values of part of video.
8368
8369 The filter accepts the following options:
8370
8371 @table @option
8372 @item size, s
8373 Set output video size.
8374
8375 @item x
8376 Set x offset from where to pick pixels.
8377
8378 @item y
8379 Set y offset from where to pick pixels.
8380
8381 @item mode
8382 Set scope mode, can be one of the following:
8383 @table @samp
8384 @item mono
8385 Draw hexadecimal pixel values with white color on black background.
8386
8387 @item color
8388 Draw hexadecimal pixel values with input video pixel color on black
8389 background.
8390
8391 @item color2
8392 Draw hexadecimal pixel values on color background picked from input video,
8393 the text color is picked in such way so its always visible.
8394 @end table
8395
8396 @item axis
8397 Draw rows and columns numbers on left and top of video.
8398
8399 @item opacity
8400 Set background opacity.
8401
8402 @item format
8403 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
8404 @end table
8405
8406 @section dctdnoiz
8407
8408 Denoise frames using 2D DCT (frequency domain filtering).
8409
8410 This filter is not designed for real time.
8411
8412 The filter accepts the following options:
8413
8414 @table @option
8415 @item sigma, s
8416 Set the noise sigma constant.
8417
8418 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
8419 coefficient (absolute value) below this threshold with be dropped.
8420
8421 If you need a more advanced filtering, see @option{expr}.
8422
8423 Default is @code{0}.
8424
8425 @item overlap
8426 Set number overlapping pixels for each block. Since the filter can be slow, you
8427 may want to reduce this value, at the cost of a less effective filter and the
8428 risk of various artefacts.
8429
8430 If the overlapping value doesn't permit processing the whole input width or
8431 height, a warning will be displayed and according borders won't be denoised.
8432
8433 Default value is @var{blocksize}-1, which is the best possible setting.
8434
8435 @item expr, e
8436 Set the coefficient factor expression.
8437
8438 For each coefficient of a DCT block, this expression will be evaluated as a
8439 multiplier value for the coefficient.
8440
8441 If this is option is set, the @option{sigma} option will be ignored.
8442
8443 The absolute value of the coefficient can be accessed through the @var{c}
8444 variable.
8445
8446 @item n
8447 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8448 @var{blocksize}, which is the width and height of the processed blocks.
8449
8450 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8451 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8452 on the speed processing. Also, a larger block size does not necessarily means a
8453 better de-noising.
8454 @end table
8455
8456 @subsection Examples
8457
8458 Apply a denoise with a @option{sigma} of @code{4.5}:
8459 @example
8460 dctdnoiz=4.5
8461 @end example
8462
8463 The same operation can be achieved using the expression system:
8464 @example
8465 dctdnoiz=e='gte(c, 4.5*3)'
8466 @end example
8467
8468 Violent denoise using a block size of @code{16x16}:
8469 @example
8470 dctdnoiz=15:n=4
8471 @end example
8472
8473 @section deband
8474
8475 Remove banding artifacts from input video.
8476 It works by replacing banded pixels with average value of referenced pixels.
8477
8478 The filter accepts the following options:
8479
8480 @table @option
8481 @item 1thr
8482 @item 2thr
8483 @item 3thr
8484 @item 4thr
8485 Set banding detection threshold for each plane. Default is 0.02.
8486 Valid range is 0.00003 to 0.5.
8487 If difference between current pixel and reference pixel is less than threshold,
8488 it will be considered as banded.
8489
8490 @item range, r
8491 Banding detection range in pixels. Default is 16. If positive, random number
8492 in range 0 to set value will be used. If negative, exact absolute value
8493 will be used.
8494 The range defines square of four pixels around current pixel.
8495
8496 @item direction, d
8497 Set direction in radians from which four pixel will be compared. If positive,
8498 random direction from 0 to set direction will be picked. If negative, exact of
8499 absolute value will be picked. For example direction 0, -PI or -2*PI radians
8500 will pick only pixels on same row and -PI/2 will pick only pixels on same
8501 column.
8502
8503 @item blur, b
8504 If enabled, current pixel is compared with average value of all four
8505 surrounding pixels. The default is enabled. If disabled current pixel is
8506 compared with all four surrounding pixels. The pixel is considered banded
8507 if only all four differences with surrounding pixels are less than threshold.
8508
8509 @item coupling, c
8510 If enabled, current pixel is changed if and only if all pixel components are banded,
8511 e.g. banding detection threshold is triggered for all color components.
8512 The default is disabled.
8513 @end table
8514
8515 @section deblock
8516
8517 Remove blocking artifacts from input video.
8518
8519 The filter accepts the following options:
8520
8521 @table @option
8522 @item filter
8523 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
8524 This controls what kind of deblocking is applied.
8525
8526 @item block
8527 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
8528
8529 @item alpha
8530 @item beta
8531 @item gamma
8532 @item delta
8533 Set blocking detection thresholds. Allowed range is 0 to 1.
8534 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
8535 Using higher threshold gives more deblocking strength.
8536 Setting @var{alpha} controls threshold detection at exact edge of block.
8537 Remaining options controls threshold detection near the edge. Each one for
8538 below/above or left/right. Setting any of those to @var{0} disables
8539 deblocking.
8540
8541 @item planes
8542 Set planes to filter. Default is to filter all available planes.
8543 @end table
8544
8545 @subsection Examples
8546
8547 @itemize
8548 @item
8549 Deblock using weak filter and block size of 4 pixels.
8550 @example
8551 deblock=filter=weak:block=4
8552 @end example
8553
8554 @item
8555 Deblock using strong filter, block size of 4 pixels and custom thresholds for
8556 deblocking more edges.
8557 @example
8558 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
8559 @end example
8560
8561 @item
8562 Similar as above, but filter only first plane.
8563 @example
8564 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
8565 @end example
8566
8567 @item
8568 Similar as above, but filter only second and third plane.
8569 @example
8570 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
8571 @end example
8572 @end itemize
8573
8574 @anchor{decimate}
8575 @section decimate
8576
8577 Drop duplicated frames at regular intervals.
8578
8579 The filter accepts the following options:
8580
8581 @table @option
8582 @item cycle
8583 Set the number of frames from which one will be dropped. Setting this to
8584 @var{N} means one frame in every batch of @var{N} frames will be dropped.
8585 Default is @code{5}.
8586
8587 @item dupthresh
8588 Set the threshold for duplicate detection. If the difference metric for a frame
8589 is less than or equal to this value, then it is declared as duplicate. Default
8590 is @code{1.1}
8591
8592 @item scthresh
8593 Set scene change threshold. Default is @code{15}.
8594
8595 @item blockx
8596 @item blocky
8597 Set the size of the x and y-axis blocks used during metric calculations.
8598 Larger blocks give better noise suppression, but also give worse detection of
8599 small movements. Must be a power of two. Default is @code{32}.
8600
8601 @item ppsrc
8602 Mark main input as a pre-processed input and activate clean source input
8603 stream. This allows the input to be pre-processed with various filters to help
8604 the metrics calculation while keeping the frame selection lossless. When set to
8605 @code{1}, the first stream is for the pre-processed input, and the second
8606 stream is the clean source from where the kept frames are chosen. Default is
8607 @code{0}.
8608
8609 @item chroma
8610 Set whether or not chroma is considered in the metric calculations. Default is
8611 @code{1}.
8612 @end table
8613
8614 @section deconvolve
8615
8616 Apply 2D deconvolution of video stream in frequency domain using second stream
8617 as impulse.
8618
8619 The filter accepts the following options:
8620
8621 @table @option
8622 @item planes
8623 Set which planes to process.
8624
8625 @item impulse
8626 Set which impulse video frames will be processed, can be @var{first}
8627 or @var{all}. Default is @var{all}.
8628
8629 @item noise
8630 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
8631 and height are not same and not power of 2 or if stream prior to convolving
8632 had noise.
8633 @end table
8634
8635 The @code{deconvolve} filter also supports the @ref{framesync} options.
8636
8637 @section dedot
8638
8639 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
8640
8641 It accepts the following options:
8642
8643 @table @option
8644 @item m
8645 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
8646 @var{rainbows} for cross-color reduction.
8647
8648 @item lt
8649 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
8650
8651 @item tl
8652 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
8653
8654 @item tc
8655 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
8656
8657 @item ct
8658 Set temporal chroma threshold. Lower values increases reduction of cross-color.
8659 @end table
8660
8661 @section deflate
8662
8663 Apply deflate effect to the video.
8664
8665 This filter replaces the pixel by the local(3x3) average by taking into account
8666 only values lower than the pixel.
8667
8668 It accepts the following options:
8669
8670 @table @option
8671 @item threshold0
8672 @item threshold1
8673 @item threshold2
8674 @item threshold3
8675 Limit the maximum change for each plane, default is 65535.
8676 If 0, plane will remain unchanged.
8677 @end table
8678
8679 @subsection Commands
8680
8681 This filter supports the all above options as @ref{commands}.
8682
8683 @section deflicker
8684
8685 Remove temporal frame luminance variations.
8686
8687 It accepts the following options:
8688
8689 @table @option
8690 @item size, s
8691 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
8692
8693 @item mode, m
8694 Set averaging mode to smooth temporal luminance variations.
8695
8696 Available values are:
8697 @table @samp
8698 @item am
8699 Arithmetic mean
8700
8701 @item gm
8702 Geometric mean
8703
8704 @item hm
8705 Harmonic mean
8706
8707 @item qm
8708 Quadratic mean
8709
8710 @item cm
8711 Cubic mean
8712
8713 @item pm
8714 Power mean
8715
8716 @item median
8717 Median
8718 @end table
8719
8720 @item bypass
8721 Do not actually modify frame. Useful when one only wants metadata.
8722 @end table
8723
8724 @section dejudder
8725
8726 Remove judder produced by partially interlaced telecined content.
8727
8728 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
8729 source was partially telecined content then the output of @code{pullup,dejudder}
8730 will have a variable frame rate. May change the recorded frame rate of the
8731 container. Aside from that change, this filter will not affect constant frame
8732 rate video.
8733
8734 The option available in this filter is:
8735 @table @option
8736
8737 @item cycle
8738 Specify the length of the window over which the judder repeats.
8739
8740 Accepts any integer greater than 1. Useful values are:
8741 @table @samp
8742
8743 @item 4
8744 If the original was telecined from 24 to 30 fps (Film to NTSC).
8745
8746 @item 5
8747 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8748
8749 @item 20
8750 If a mixture of the two.
8751 @end table
8752
8753 The default is @samp{4}.
8754 @end table
8755
8756 @section delogo
8757
8758 Suppress a TV station logo by a simple interpolation of the surrounding
8759 pixels. Just set a rectangle covering the logo and watch it disappear
8760 (and sometimes something even uglier appear - your mileage may vary).
8761
8762 It accepts the following parameters:
8763 @table @option
8764
8765 @item x
8766 @item y
8767 Specify the top left corner coordinates of the logo. They must be
8768 specified.
8769
8770 @item w
8771 @item h
8772 Specify the width and height of the logo to clear. They must be
8773 specified.
8774
8775 @item band, t
8776 Specify the thickness of the fuzzy edge of the rectangle (added to
8777 @var{w} and @var{h}). The default value is 1. This option is
8778 deprecated, setting higher values should no longer be necessary and
8779 is not recommended.
8780
8781 @item show
8782 When set to 1, a green rectangle is drawn on the screen to simplify
8783 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8784 The default value is 0.
8785
8786 The rectangle is drawn on the outermost pixels which will be (partly)
8787 replaced with interpolated values. The values of the next pixels
8788 immediately outside this rectangle in each direction will be used to
8789 compute the interpolated pixel values inside the rectangle.
8790
8791 @end table
8792
8793 @subsection Examples
8794
8795 @itemize
8796 @item
8797 Set a rectangle covering the area with top left corner coordinates 0,0
8798 and size 100x77, and a band of size 10:
8799 @example
8800 delogo=x=0:y=0:w=100:h=77:band=10
8801 @end example
8802
8803 @end itemize
8804
8805 @section derain
8806
8807 Remove the rain in the input image/video by applying the derain methods based on
8808 convolutional neural networks. Supported models:
8809
8810 @itemize
8811 @item
8812 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
8813 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
8814 @end itemize
8815
8816 Training as well as model generation scripts are provided in
8817 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
8818
8819 Native model files (.model) can be generated from TensorFlow model
8820 files (.pb) by using tools/python/convert.py
8821
8822 The filter accepts the following options:
8823
8824 @table @option
8825 @item filter_type
8826 Specify which filter to use. This option accepts the following values:
8827
8828 @table @samp
8829 @item derain
8830 Derain filter. To conduct derain filter, you need to use a derain model.
8831
8832 @item dehaze
8833 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
8834 @end table
8835 Default value is @samp{derain}.
8836
8837 @item dnn_backend
8838 Specify which DNN backend to use for model loading and execution. This option accepts
8839 the following values:
8840
8841 @table @samp
8842 @item native
8843 Native implementation of DNN loading and execution.
8844
8845 @item tensorflow
8846 TensorFlow backend. To enable this backend you
8847 need to install the TensorFlow for C library (see
8848 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
8849 @code{--enable-libtensorflow}
8850 @end table
8851 Default value is @samp{native}.
8852
8853 @item model
8854 Set path to model file specifying network architecture and its parameters.
8855 Note that different backends use different file formats. TensorFlow and native
8856 backend can load files for only its format.
8857 @end table
8858
8859 @section deshake
8860
8861 Attempt to fix small changes in horizontal and/or vertical shift. This
8862 filter helps remove camera shake from hand-holding a camera, bumping a
8863 tripod, moving on a vehicle, etc.
8864
8865 The filter accepts the following options:
8866
8867 @table @option
8868
8869 @item x
8870 @item y
8871 @item w
8872 @item h
8873 Specify a rectangular area where to limit the search for motion
8874 vectors.
8875 If desired the search for motion vectors can be limited to a
8876 rectangular area of the frame defined by its top left corner, width
8877 and height. These parameters have the same meaning as the drawbox
8878 filter which can be used to visualise the position of the bounding
8879 box.
8880
8881 This is useful when simultaneous movement of subjects within the frame
8882 might be confused for camera motion by the motion vector search.
8883
8884 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8885 then the full frame is used. This allows later options to be set
8886 without specifying the bounding box for the motion vector search.
8887
8888 Default - search the whole frame.
8889
8890 @item rx
8891 @item ry
8892 Specify the maximum extent of movement in x and y directions in the
8893 range 0-64 pixels. Default 16.
8894
8895 @item edge
8896 Specify how to generate pixels to fill blanks at the edge of the
8897 frame. Available values are:
8898 @table @samp
8899 @item blank, 0
8900 Fill zeroes at blank locations
8901 @item original, 1
8902 Original image at blank locations
8903 @item clamp, 2
8904 Extruded edge value at blank locations
8905 @item mirror, 3
8906 Mirrored edge at blank locations
8907 @end table
8908 Default value is @samp{mirror}.
8909
8910 @item blocksize
8911 Specify the blocksize to use for motion search. Range 4-128 pixels,
8912 default 8.
8913
8914 @item contrast
8915 Specify the contrast threshold for blocks. Only blocks with more than
8916 the specified contrast (difference between darkest and lightest
8917 pixels) will be considered. Range 1-255, default 125.
8918
8919 @item search
8920 Specify the search strategy. Available values are:
8921 @table @samp
8922 @item exhaustive, 0
8923 Set exhaustive search
8924 @item less, 1
8925 Set less exhaustive search.
8926 @end table
8927 Default value is @samp{exhaustive}.
8928
8929 @item filename
8930 If set then a detailed log of the motion search is written to the
8931 specified file.
8932
8933 @end table
8934
8935 @section despill
8936
8937 Remove unwanted contamination of foreground colors, caused by reflected color of
8938 greenscreen or bluescreen.
8939
8940 This filter accepts the following options:
8941
8942 @table @option
8943 @item type
8944 Set what type of despill to use.
8945
8946 @item mix
8947 Set how spillmap will be generated.
8948
8949 @item expand
8950 Set how much to get rid of still remaining spill.
8951
8952 @item red
8953 Controls amount of red in spill area.
8954
8955 @item green
8956 Controls amount of green in spill area.
8957 Should be -1 for greenscreen.
8958
8959 @item blue
8960 Controls amount of blue in spill area.
8961 Should be -1 for bluescreen.
8962
8963 @item brightness
8964 Controls brightness of spill area, preserving colors.
8965
8966 @item alpha
8967 Modify alpha from generated spillmap.
8968 @end table
8969
8970 @section detelecine
8971
8972 Apply an exact inverse of the telecine operation. It requires a predefined
8973 pattern specified using the pattern option which must be the same as that passed
8974 to the telecine filter.
8975
8976 This filter accepts the following options:
8977
8978 @table @option
8979 @item first_field
8980 @table @samp
8981 @item top, t
8982 top field first
8983 @item bottom, b
8984 bottom field first
8985 The default value is @code{top}.
8986 @end table
8987
8988 @item pattern
8989 A string of numbers representing the pulldown pattern you wish to apply.
8990 The default value is @code{23}.
8991
8992 @item start_frame
8993 A number representing position of the first frame with respect to the telecine
8994 pattern. This is to be used if the stream is cut. The default value is @code{0}.
8995 @end table
8996
8997 @section dilation
8998
8999 Apply dilation effect to the video.
9000
9001 This filter replaces the pixel by the local(3x3) maximum.
9002
9003 It accepts the following options:
9004
9005 @table @option
9006 @item threshold0
9007 @item threshold1
9008 @item threshold2
9009 @item threshold3
9010 Limit the maximum change for each plane, default is 65535.
9011 If 0, plane will remain unchanged.
9012
9013 @item coordinates
9014 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9015 pixels are used.
9016
9017 Flags to local 3x3 coordinates maps like this:
9018
9019     1 2 3
9020     4   5
9021     6 7 8
9022 @end table
9023
9024 @subsection Commands
9025
9026 This filter supports the all above options as @ref{commands}.
9027
9028 @section displace
9029
9030 Displace pixels as indicated by second and third input stream.
9031
9032 It takes three input streams and outputs one stream, the first input is the
9033 source, and second and third input are displacement maps.
9034
9035 The second input specifies how much to displace pixels along the
9036 x-axis, while the third input specifies how much to displace pixels
9037 along the y-axis.
9038 If one of displacement map streams terminates, last frame from that
9039 displacement map will be used.
9040
9041 Note that once generated, displacements maps can be reused over and over again.
9042
9043 A description of the accepted options follows.
9044
9045 @table @option
9046 @item edge
9047 Set displace behavior for pixels that are out of range.
9048
9049 Available values are:
9050 @table @samp
9051 @item blank
9052 Missing pixels are replaced by black pixels.
9053
9054 @item smear
9055 Adjacent pixels will spread out to replace missing pixels.
9056
9057 @item wrap
9058 Out of range pixels are wrapped so they point to pixels of other side.
9059
9060 @item mirror
9061 Out of range pixels will be replaced with mirrored pixels.
9062 @end table
9063 Default is @samp{smear}.
9064
9065 @end table
9066
9067 @subsection Examples
9068
9069 @itemize
9070 @item
9071 Add ripple effect to rgb input of video size hd720:
9072 @example
9073 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
9074 @end example
9075
9076 @item
9077 Add wave effect to rgb input of video size hd720:
9078 @example
9079 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
9080 @end example
9081 @end itemize
9082
9083 @section dnn_processing
9084
9085 Do image processing with deep neural networks. It works together with another filter
9086 which converts the pixel format of the Frame to what the dnn network requires.
9087
9088 The filter accepts the following options:
9089
9090 @table @option
9091 @item dnn_backend
9092 Specify which DNN backend to use for model loading and execution. This option accepts
9093 the following values:
9094
9095 @table @samp
9096 @item native
9097 Native implementation of DNN loading and execution.
9098
9099 @item tensorflow
9100 TensorFlow backend. To enable this backend you
9101 need to install the TensorFlow for C library (see
9102 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9103 @code{--enable-libtensorflow}
9104 @end table
9105
9106 Default value is @samp{native}.
9107
9108 @item model
9109 Set path to model file specifying network architecture and its parameters.
9110 Note that different backends use different file formats. TensorFlow and native
9111 backend can load files for only its format.
9112
9113 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9114
9115 @item input
9116 Set the input name of the dnn network.
9117
9118 @item output
9119 Set the output name of the dnn network.
9120
9121 @end table
9122
9123 @itemize
9124 @item
9125 Halve the red channle of the frame with format rgb24:
9126 @example
9127 ffmpeg -i input.jpg -vf format=rgb24,dnn_processing=model=halve_first_channel.model:input=dnn_in:output=dnn_out:dnn_backend=native out.native.png
9128 @end example
9129
9130 @item
9131 Halve the pixel value of the frame with format gray32f:
9132 @example
9133 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
9134 @end example
9135
9136 @end itemize
9137
9138 @section drawbox
9139
9140 Draw a colored box on the input image.
9141
9142 It accepts the following parameters:
9143
9144 @table @option
9145 @item x
9146 @item y
9147 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
9148
9149 @item width, w
9150 @item height, h
9151 The expressions which specify the width and height of the box; if 0 they are interpreted as
9152 the input width and height. It defaults to 0.
9153
9154 @item color, c
9155 Specify the color of the box to write. For the general syntax of this option,
9156 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9157 value @code{invert} is used, the box edge color is the same as the
9158 video with inverted luma.
9159
9160 @item thickness, t
9161 The expression which sets the thickness of the box edge.
9162 A value of @code{fill} will create a filled box. Default value is @code{3}.
9163
9164 See below for the list of accepted constants.
9165
9166 @item replace
9167 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
9168 will overwrite the video's color and alpha pixels.
9169 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
9170 @end table
9171
9172 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9173 following constants:
9174
9175 @table @option
9176 @item dar
9177 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9178
9179 @item hsub
9180 @item vsub
9181 horizontal and vertical chroma subsample values. For example for the
9182 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9183
9184 @item in_h, ih
9185 @item in_w, iw
9186 The input width and height.
9187
9188 @item sar
9189 The input sample aspect ratio.
9190
9191 @item x
9192 @item y
9193 The x and y offset coordinates where the box is drawn.
9194
9195 @item w
9196 @item h
9197 The width and height of the drawn box.
9198
9199 @item t
9200 The thickness of the drawn box.
9201
9202 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9203 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9204
9205 @end table
9206
9207 @subsection Examples
9208
9209 @itemize
9210 @item
9211 Draw a black box around the edge of the input image:
9212 @example
9213 drawbox
9214 @end example
9215
9216 @item
9217 Draw a box with color red and an opacity of 50%:
9218 @example
9219 drawbox=10:20:200:60:red@@0.5
9220 @end example
9221
9222 The previous example can be specified as:
9223 @example
9224 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
9225 @end example
9226
9227 @item
9228 Fill the box with pink color:
9229 @example
9230 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
9231 @end example
9232
9233 @item
9234 Draw a 2-pixel red 2.40:1 mask:
9235 @example
9236 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
9237 @end example
9238 @end itemize
9239
9240 @subsection Commands
9241 This filter supports same commands as options.
9242 The command accepts the same syntax of the corresponding option.
9243
9244 If the specified expression is not valid, it is kept at its current
9245 value.
9246
9247 @anchor{drawgraph}
9248 @section drawgraph
9249 Draw a graph using input video metadata.
9250
9251 It accepts the following parameters:
9252
9253 @table @option
9254 @item m1
9255 Set 1st frame metadata key from which metadata values will be used to draw a graph.
9256
9257 @item fg1
9258 Set 1st foreground color expression.
9259
9260 @item m2
9261 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
9262
9263 @item fg2
9264 Set 2nd foreground color expression.
9265
9266 @item m3
9267 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
9268
9269 @item fg3
9270 Set 3rd foreground color expression.
9271
9272 @item m4
9273 Set 4th frame metadata key from which metadata values will be used to draw a graph.
9274
9275 @item fg4
9276 Set 4th foreground color expression.
9277
9278 @item min
9279 Set minimal value of metadata value.
9280
9281 @item max
9282 Set maximal value of metadata value.
9283
9284 @item bg
9285 Set graph background color. Default is white.
9286
9287 @item mode
9288 Set graph mode.
9289
9290 Available values for mode is:
9291 @table @samp
9292 @item bar
9293 @item dot
9294 @item line
9295 @end table
9296
9297 Default is @code{line}.
9298
9299 @item slide
9300 Set slide mode.
9301
9302 Available values for slide is:
9303 @table @samp
9304 @item frame
9305 Draw new frame when right border is reached.
9306
9307 @item replace
9308 Replace old columns with new ones.
9309
9310 @item scroll
9311 Scroll from right to left.
9312
9313 @item rscroll
9314 Scroll from left to right.
9315
9316 @item picture
9317 Draw single picture.
9318 @end table
9319
9320 Default is @code{frame}.
9321
9322 @item size
9323 Set size of graph video. For the syntax of this option, check the
9324 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9325 The default value is @code{900x256}.
9326
9327 @item rate, r
9328 Set the output frame rate. Default value is @code{25}.
9329
9330 The foreground color expressions can use the following variables:
9331 @table @option
9332 @item MIN
9333 Minimal value of metadata value.
9334
9335 @item MAX
9336 Maximal value of metadata value.
9337
9338 @item VAL
9339 Current metadata key value.
9340 @end table
9341
9342 The color is defined as 0xAABBGGRR.
9343 @end table
9344
9345 Example using metadata from @ref{signalstats} filter:
9346 @example
9347 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
9348 @end example
9349
9350 Example using metadata from @ref{ebur128} filter:
9351 @example
9352 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
9353 @end example
9354
9355 @section drawgrid
9356
9357 Draw a grid on the input image.
9358
9359 It accepts the following parameters:
9360
9361 @table @option
9362 @item x
9363 @item y
9364 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
9365
9366 @item width, w
9367 @item height, h
9368 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
9369 input width and height, respectively, minus @code{thickness}, so image gets
9370 framed. Default to 0.
9371
9372 @item color, c
9373 Specify the color of the grid. For the general syntax of this option,
9374 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9375 value @code{invert} is used, the grid color is the same as the
9376 video with inverted luma.
9377
9378 @item thickness, t
9379 The expression which sets the thickness of the grid line. Default value is @code{1}.
9380
9381 See below for the list of accepted constants.
9382
9383 @item replace
9384 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
9385 will overwrite the video's color and alpha pixels.
9386 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
9387 @end table
9388
9389 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9390 following constants:
9391
9392 @table @option
9393 @item dar
9394 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9395
9396 @item hsub
9397 @item vsub
9398 horizontal and vertical chroma subsample values. For example for the
9399 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9400
9401 @item in_h, ih
9402 @item in_w, iw
9403 The input grid cell width and height.
9404
9405 @item sar
9406 The input sample aspect ratio.
9407
9408 @item x
9409 @item y
9410 The x and y coordinates of some point of grid intersection (meant to configure offset).
9411
9412 @item w
9413 @item h
9414 The width and height of the drawn cell.
9415
9416 @item t
9417 The thickness of the drawn cell.
9418
9419 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9420 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9421
9422 @end table
9423
9424 @subsection Examples
9425
9426 @itemize
9427 @item
9428 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
9429 @example
9430 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
9431 @end example
9432
9433 @item
9434 Draw a white 3x3 grid with an opacity of 50%:
9435 @example
9436 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
9437 @end example
9438 @end itemize
9439
9440 @subsection Commands
9441 This filter supports same commands as options.
9442 The command accepts the same syntax of the corresponding option.
9443
9444 If the specified expression is not valid, it is kept at its current
9445 value.
9446
9447 @anchor{drawtext}
9448 @section drawtext
9449
9450 Draw a text string or text from a specified file on top of a video, using the
9451 libfreetype library.
9452
9453 To enable compilation of this filter, you need to configure FFmpeg with
9454 @code{--enable-libfreetype}.
9455 To enable default font fallback and the @var{font} option you need to
9456 configure FFmpeg with @code{--enable-libfontconfig}.
9457 To enable the @var{text_shaping} option, you need to configure FFmpeg with
9458 @code{--enable-libfribidi}.
9459
9460 @subsection Syntax
9461
9462 It accepts the following parameters:
9463
9464 @table @option
9465
9466 @item box
9467 Used to draw a box around text using the background color.
9468 The value must be either 1 (enable) or 0 (disable).
9469 The default value of @var{box} is 0.
9470
9471 @item boxborderw
9472 Set the width of the border to be drawn around the box using @var{boxcolor}.
9473 The default value of @var{boxborderw} is 0.
9474
9475 @item boxcolor
9476 The color to be used for drawing box around text. For the syntax of this
9477 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9478
9479 The default value of @var{boxcolor} is "white".
9480
9481 @item line_spacing
9482 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
9483 The default value of @var{line_spacing} is 0.
9484
9485 @item borderw
9486 Set the width of the border to be drawn around the text using @var{bordercolor}.
9487 The default value of @var{borderw} is 0.
9488
9489 @item bordercolor
9490 Set the color to be used for drawing border around text. For the syntax of this
9491 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9492
9493 The default value of @var{bordercolor} is "black".
9494
9495 @item expansion
9496 Select how the @var{text} is expanded. Can be either @code{none},
9497 @code{strftime} (deprecated) or
9498 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
9499 below for details.
9500
9501 @item basetime
9502 Set a start time for the count. Value is in microseconds. Only applied
9503 in the deprecated strftime expansion mode. To emulate in normal expansion
9504 mode use the @code{pts} function, supplying the start time (in seconds)
9505 as the second argument.
9506
9507 @item fix_bounds
9508 If true, check and fix text coords to avoid clipping.
9509
9510 @item fontcolor
9511 The color to be used for drawing fonts. For the syntax of this option, check
9512 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9513
9514 The default value of @var{fontcolor} is "black".
9515
9516 @item fontcolor_expr
9517 String which is expanded the same way as @var{text} to obtain dynamic
9518 @var{fontcolor} value. By default this option has empty value and is not
9519 processed. When this option is set, it overrides @var{fontcolor} option.
9520
9521 @item font
9522 The font family to be used for drawing text. By default Sans.
9523
9524 @item fontfile
9525 The font file to be used for drawing text. The path must be included.
9526 This parameter is mandatory if the fontconfig support is disabled.
9527
9528 @item alpha
9529 Draw the text applying alpha blending. The value can
9530 be a number between 0.0 and 1.0.
9531 The expression accepts the same variables @var{x, y} as well.
9532 The default value is 1.
9533 Please see @var{fontcolor_expr}.
9534
9535 @item fontsize
9536 The font size to be used for drawing text.
9537 The default value of @var{fontsize} is 16.
9538
9539 @item text_shaping
9540 If set to 1, attempt to shape the text (for example, reverse the order of
9541 right-to-left text and join Arabic characters) before drawing it.
9542 Otherwise, just draw the text exactly as given.
9543 By default 1 (if supported).
9544
9545 @item ft_load_flags
9546 The flags to be used for loading the fonts.
9547
9548 The flags map the corresponding flags supported by libfreetype, and are
9549 a combination of the following values:
9550 @table @var
9551 @item default
9552 @item no_scale
9553 @item no_hinting
9554 @item render
9555 @item no_bitmap
9556 @item vertical_layout
9557 @item force_autohint
9558 @item crop_bitmap
9559 @item pedantic
9560 @item ignore_global_advance_width
9561 @item no_recurse
9562 @item ignore_transform
9563 @item monochrome
9564 @item linear_design
9565 @item no_autohint
9566 @end table
9567
9568 Default value is "default".
9569
9570 For more information consult the documentation for the FT_LOAD_*
9571 libfreetype flags.
9572
9573 @item shadowcolor
9574 The color to be used for drawing a shadow behind the drawn text. For the
9575 syntax of this option, check the @ref{color syntax,,"Color" section in the
9576 ffmpeg-utils manual,ffmpeg-utils}.
9577
9578 The default value of @var{shadowcolor} is "black".
9579
9580 @item shadowx
9581 @item shadowy
9582 The x and y offsets for the text shadow position with respect to the
9583 position of the text. They can be either positive or negative
9584 values. The default value for both is "0".
9585
9586 @item start_number
9587 The starting frame number for the n/frame_num variable. The default value
9588 is "0".
9589
9590 @item tabsize
9591 The size in number of spaces to use for rendering the tab.
9592 Default value is 4.
9593
9594 @item timecode
9595 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
9596 format. It can be used with or without text parameter. @var{timecode_rate}
9597 option must be specified.
9598
9599 @item timecode_rate, rate, r
9600 Set the timecode frame rate (timecode only). Value will be rounded to nearest
9601 integer. Minimum value is "1".
9602 Drop-frame timecode is supported for frame rates 30 & 60.
9603
9604 @item tc24hmax
9605 If set to 1, the output of the timecode option will wrap around at 24 hours.
9606 Default is 0 (disabled).
9607
9608 @item text
9609 The text string to be drawn. The text must be a sequence of UTF-8
9610 encoded characters.
9611 This parameter is mandatory if no file is specified with the parameter
9612 @var{textfile}.
9613
9614 @item textfile
9615 A text file containing text to be drawn. The text must be a sequence
9616 of UTF-8 encoded characters.
9617
9618 This parameter is mandatory if no text string is specified with the
9619 parameter @var{text}.
9620
9621 If both @var{text} and @var{textfile} are specified, an error is thrown.
9622
9623 @item reload
9624 If set to 1, the @var{textfile} will be reloaded before each frame.
9625 Be sure to update it atomically, or it may be read partially, or even fail.
9626
9627 @item x
9628 @item y
9629 The expressions which specify the offsets where text will be drawn
9630 within the video frame. They are relative to the top/left border of the
9631 output image.
9632
9633 The default value of @var{x} and @var{y} is "0".
9634
9635 See below for the list of accepted constants and functions.
9636 @end table
9637
9638 The parameters for @var{x} and @var{y} are expressions containing the
9639 following constants and functions:
9640
9641 @table @option
9642 @item dar
9643 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
9644
9645 @item hsub
9646 @item vsub
9647 horizontal and vertical chroma subsample values. For example for the
9648 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9649
9650 @item line_h, lh
9651 the height of each text line
9652
9653 @item main_h, h, H
9654 the input height
9655
9656 @item main_w, w, W
9657 the input width
9658
9659 @item max_glyph_a, ascent
9660 the maximum distance from the baseline to the highest/upper grid
9661 coordinate used to place a glyph outline point, for all the rendered
9662 glyphs.
9663 It is a positive value, due to the grid's orientation with the Y axis
9664 upwards.
9665
9666 @item max_glyph_d, descent
9667 the maximum distance from the baseline to the lowest grid coordinate
9668 used to place a glyph outline point, for all the rendered glyphs.
9669 This is a negative value, due to the grid's orientation, with the Y axis
9670 upwards.
9671
9672 @item max_glyph_h
9673 maximum glyph height, that is the maximum height for all the glyphs
9674 contained in the rendered text, it is equivalent to @var{ascent} -
9675 @var{descent}.
9676
9677 @item max_glyph_w
9678 maximum glyph width, that is the maximum width for all the glyphs
9679 contained in the rendered text
9680
9681 @item n
9682 the number of input frame, starting from 0
9683
9684 @item rand(min, max)
9685 return a random number included between @var{min} and @var{max}
9686
9687 @item sar
9688 The input sample aspect ratio.
9689
9690 @item t
9691 timestamp expressed in seconds, NAN if the input timestamp is unknown
9692
9693 @item text_h, th
9694 the height of the rendered text
9695
9696 @item text_w, tw
9697 the width of the rendered text
9698
9699 @item x
9700 @item y
9701 the x and y offset coordinates where the text is drawn.
9702
9703 These parameters allow the @var{x} and @var{y} expressions to refer
9704 to each other, so you can for example specify @code{y=x/dar}.
9705
9706 @item pict_type
9707 A one character description of the current frame's picture type.
9708
9709 @item pkt_pos
9710 The current packet's position in the input file or stream
9711 (in bytes, from the start of the input). A value of -1 indicates
9712 this info is not available.
9713
9714 @item pkt_duration
9715 The current packet's duration, in seconds.
9716
9717 @item pkt_size
9718 The current packet's size (in bytes).
9719 @end table
9720
9721 @anchor{drawtext_expansion}
9722 @subsection Text expansion
9723
9724 If @option{expansion} is set to @code{strftime},
9725 the filter recognizes strftime() sequences in the provided text and
9726 expands them accordingly. Check the documentation of strftime(). This
9727 feature is deprecated.
9728
9729 If @option{expansion} is set to @code{none}, the text is printed verbatim.
9730
9731 If @option{expansion} is set to @code{normal} (which is the default),
9732 the following expansion mechanism is used.
9733
9734 The backslash character @samp{\}, followed by any character, always expands to
9735 the second character.
9736
9737 Sequences of the form @code{%@{...@}} are expanded. The text between the
9738 braces is a function name, possibly followed by arguments separated by ':'.
9739 If the arguments contain special characters or delimiters (':' or '@}'),
9740 they should be escaped.
9741
9742 Note that they probably must also be escaped as the value for the
9743 @option{text} option in the filter argument string and as the filter
9744 argument in the filtergraph description, and possibly also for the shell,
9745 that makes up to four levels of escaping; using a text file avoids these
9746 problems.
9747
9748 The following functions are available:
9749
9750 @table @command
9751
9752 @item expr, e
9753 The expression evaluation result.
9754
9755 It must take one argument specifying the expression to be evaluated,
9756 which accepts the same constants and functions as the @var{x} and
9757 @var{y} values. Note that not all constants should be used, for
9758 example the text size is not known when evaluating the expression, so
9759 the constants @var{text_w} and @var{text_h} will have an undefined
9760 value.
9761
9762 @item expr_int_format, eif
9763 Evaluate the expression's value and output as formatted integer.
9764
9765 The first argument is the expression to be evaluated, just as for the @var{expr} function.
9766 The second argument specifies the output format. Allowed values are @samp{x},
9767 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
9768 @code{printf} function.
9769 The third parameter is optional and sets the number of positions taken by the output.
9770 It can be used to add padding with zeros from the left.
9771
9772 @item gmtime
9773 The time at which the filter is running, expressed in UTC.
9774 It can accept an argument: a strftime() format string.
9775
9776 @item localtime
9777 The time at which the filter is running, expressed in the local time zone.
9778 It can accept an argument: a strftime() format string.
9779
9780 @item metadata
9781 Frame metadata. Takes one or two arguments.
9782
9783 The first argument is mandatory and specifies the metadata key.
9784
9785 The second argument is optional and specifies a default value, used when the
9786 metadata key is not found or empty.
9787
9788 Available metadata can be identified by inspecting entries
9789 starting with TAG included within each frame section
9790 printed by running @code{ffprobe -show_frames}.
9791
9792 String metadata generated in filters leading to
9793 the drawtext filter are also available.
9794
9795 @item n, frame_num
9796 The frame number, starting from 0.
9797
9798 @item pict_type
9799 A one character description of the current picture type.
9800
9801 @item pts
9802 The timestamp of the current frame.
9803 It can take up to three arguments.
9804
9805 The first argument is the format of the timestamp; it defaults to @code{flt}
9806 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
9807 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
9808 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
9809 @code{localtime} stands for the timestamp of the frame formatted as
9810 local time zone time.
9811
9812 The second argument is an offset added to the timestamp.
9813
9814 If the format is set to @code{hms}, a third argument @code{24HH} may be
9815 supplied to present the hour part of the formatted timestamp in 24h format
9816 (00-23).
9817
9818 If the format is set to @code{localtime} or @code{gmtime},
9819 a third argument may be supplied: a strftime() format string.
9820 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
9821 @end table
9822
9823 @subsection Commands
9824
9825 This filter supports altering parameters via commands:
9826 @table @option
9827 @item reinit
9828 Alter existing filter parameters.
9829
9830 Syntax for the argument is the same as for filter invocation, e.g.
9831
9832 @example
9833 fontsize=56:fontcolor=green:text='Hello World'
9834 @end example
9835
9836 Full filter invocation with sendcmd would look like this:
9837
9838 @example
9839 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
9840 @end example
9841 @end table
9842
9843 If the entire argument can't be parsed or applied as valid values then the filter will
9844 continue with its existing parameters.
9845
9846 @subsection Examples
9847
9848 @itemize
9849 @item
9850 Draw "Test Text" with font FreeSerif, using the default values for the
9851 optional parameters.
9852
9853 @example
9854 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
9855 @end example
9856
9857 @item
9858 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
9859 and y=50 (counting from the top-left corner of the screen), text is
9860 yellow with a red box around it. Both the text and the box have an
9861 opacity of 20%.
9862
9863 @example
9864 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
9865           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
9866 @end example
9867
9868 Note that the double quotes are not necessary if spaces are not used
9869 within the parameter list.
9870
9871 @item
9872 Show the text at the center of the video frame:
9873 @example
9874 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
9875 @end example
9876
9877 @item
9878 Show the text at a random position, switching to a new position every 30 seconds:
9879 @example
9880 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)"
9881 @end example
9882
9883 @item
9884 Show a text line sliding from right to left in the last row of the video
9885 frame. The file @file{LONG_LINE} is assumed to contain a single line
9886 with no newlines.
9887 @example
9888 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
9889 @end example
9890
9891 @item
9892 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
9893 @example
9894 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
9895 @end example
9896
9897 @item
9898 Draw a single green letter "g", at the center of the input video.
9899 The glyph baseline is placed at half screen height.
9900 @example
9901 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
9902 @end example
9903
9904 @item
9905 Show text for 1 second every 3 seconds:
9906 @example
9907 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
9908 @end example
9909
9910 @item
9911 Use fontconfig to set the font. Note that the colons need to be escaped.
9912 @example
9913 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
9914 @end example
9915
9916 @item
9917 Print the date of a real-time encoding (see strftime(3)):
9918 @example
9919 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
9920 @end example
9921
9922 @item
9923 Show text fading in and out (appearing/disappearing):
9924 @example
9925 #!/bin/sh
9926 DS=1.0 # display start
9927 DE=10.0 # display end
9928 FID=1.5 # fade in duration
9929 FOD=5 # fade out duration
9930 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 @}"
9931 @end example
9932
9933 @item
9934 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
9935 and the @option{fontsize} value are included in the @option{y} offset.
9936 @example
9937 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
9938 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
9939 @end example
9940
9941 @item
9942 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
9943 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
9944 must have option @option{-export_path_metadata 1} for the special metadata fields
9945 to be available for filters.
9946 @example
9947 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
9948 @end example
9949
9950 @end itemize
9951
9952 For more information about libfreetype, check:
9953 @url{http://www.freetype.org/}.
9954
9955 For more information about fontconfig, check:
9956 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
9957
9958 For more information about libfribidi, check:
9959 @url{http://fribidi.org/}.
9960
9961 @section edgedetect
9962
9963 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
9964
9965 The filter accepts the following options:
9966
9967 @table @option
9968 @item low
9969 @item high
9970 Set low and high threshold values used by the Canny thresholding
9971 algorithm.
9972
9973 The high threshold selects the "strong" edge pixels, which are then
9974 connected through 8-connectivity with the "weak" edge pixels selected
9975 by the low threshold.
9976
9977 @var{low} and @var{high} threshold values must be chosen in the range
9978 [0,1], and @var{low} should be lesser or equal to @var{high}.
9979
9980 Default value for @var{low} is @code{20/255}, and default value for @var{high}
9981 is @code{50/255}.
9982
9983 @item mode
9984 Define the drawing mode.
9985
9986 @table @samp
9987 @item wires
9988 Draw white/gray wires on black background.
9989
9990 @item colormix
9991 Mix the colors to create a paint/cartoon effect.
9992
9993 @item canny
9994 Apply Canny edge detector on all selected planes.
9995 @end table
9996 Default value is @var{wires}.
9997
9998 @item planes
9999 Select planes for filtering. By default all available planes are filtered.
10000 @end table
10001
10002 @subsection Examples
10003
10004 @itemize
10005 @item
10006 Standard edge detection with custom values for the hysteresis thresholding:
10007 @example
10008 edgedetect=low=0.1:high=0.4
10009 @end example
10010
10011 @item
10012 Painting effect without thresholding:
10013 @example
10014 edgedetect=mode=colormix:high=0
10015 @end example
10016 @end itemize
10017
10018 @section elbg
10019
10020 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10021
10022 For each input image, the filter will compute the optimal mapping from
10023 the input to the output given the codebook length, that is the number
10024 of distinct output colors.
10025
10026 This filter accepts the following options.
10027
10028 @table @option
10029 @item codebook_length, l
10030 Set codebook length. The value must be a positive integer, and
10031 represents the number of distinct output colors. Default value is 256.
10032
10033 @item nb_steps, n
10034 Set the maximum number of iterations to apply for computing the optimal
10035 mapping. The higher the value the better the result and the higher the
10036 computation time. Default value is 1.
10037
10038 @item seed, s
10039 Set a random seed, must be an integer included between 0 and
10040 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10041 will try to use a good random seed on a best effort basis.
10042
10043 @item pal8
10044 Set pal8 output pixel format. This option does not work with codebook
10045 length greater than 256.
10046 @end table
10047
10048 @section entropy
10049
10050 Measure graylevel entropy in histogram of color channels of video frames.
10051
10052 It accepts the following parameters:
10053
10054 @table @option
10055 @item mode
10056 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10057
10058 @var{diff} mode measures entropy of histogram delta values, absolute differences
10059 between neighbour histogram values.
10060 @end table
10061
10062 @section eq
10063 Set brightness, contrast, saturation and approximate gamma adjustment.
10064
10065 The filter accepts the following options:
10066
10067 @table @option
10068 @item contrast
10069 Set the contrast expression. The value must be a float value in range
10070 @code{-1000.0} to @code{1000.0}. The default value is "1".
10071
10072 @item brightness
10073 Set the brightness expression. The value must be a float value in
10074 range @code{-1.0} to @code{1.0}. The default value is "0".
10075
10076 @item saturation
10077 Set the saturation expression. The value must be a float in
10078 range @code{0.0} to @code{3.0}. The default value is "1".
10079
10080 @item gamma
10081 Set the gamma expression. The value must be a float in range
10082 @code{0.1} to @code{10.0}.  The default value is "1".
10083
10084 @item gamma_r
10085 Set the gamma expression for red. The value must be a float in
10086 range @code{0.1} to @code{10.0}. The default value is "1".
10087
10088 @item gamma_g
10089 Set the gamma expression for green. The value must be a float in range
10090 @code{0.1} to @code{10.0}. The default value is "1".
10091
10092 @item gamma_b
10093 Set the gamma expression for blue. The value must be a float in range
10094 @code{0.1} to @code{10.0}. The default value is "1".
10095
10096 @item gamma_weight
10097 Set the gamma weight expression. It can be used to reduce the effect
10098 of a high gamma value on bright image areas, e.g. keep them from
10099 getting overamplified and just plain white. The value must be a float
10100 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10101 gamma correction all the way down while @code{1.0} leaves it at its
10102 full strength. Default is "1".
10103
10104 @item eval
10105 Set when the expressions for brightness, contrast, saturation and
10106 gamma expressions are evaluated.
10107
10108 It accepts the following values:
10109 @table @samp
10110 @item init
10111 only evaluate expressions once during the filter initialization or
10112 when a command is processed
10113
10114 @item frame
10115 evaluate expressions for each incoming frame
10116 @end table
10117
10118 Default value is @samp{init}.
10119 @end table
10120
10121 The expressions accept the following parameters:
10122 @table @option
10123 @item n
10124 frame count of the input frame starting from 0
10125
10126 @item pos
10127 byte position of the corresponding packet in the input file, NAN if
10128 unspecified
10129
10130 @item r
10131 frame rate of the input video, NAN if the input frame rate is unknown
10132
10133 @item t
10134 timestamp expressed in seconds, NAN if the input timestamp is unknown
10135 @end table
10136
10137 @subsection Commands
10138 The filter supports the following commands:
10139
10140 @table @option
10141 @item contrast
10142 Set the contrast expression.
10143
10144 @item brightness
10145 Set the brightness expression.
10146
10147 @item saturation
10148 Set the saturation expression.
10149
10150 @item gamma
10151 Set the gamma expression.
10152
10153 @item gamma_r
10154 Set the gamma_r expression.
10155
10156 @item gamma_g
10157 Set gamma_g expression.
10158
10159 @item gamma_b
10160 Set gamma_b expression.
10161
10162 @item gamma_weight
10163 Set gamma_weight expression.
10164
10165 The command accepts the same syntax of the corresponding option.
10166
10167 If the specified expression is not valid, it is kept at its current
10168 value.
10169
10170 @end table
10171
10172 @section erosion
10173
10174 Apply erosion effect to the video.
10175
10176 This filter replaces the pixel by the local(3x3) minimum.
10177
10178 It accepts the following options:
10179
10180 @table @option
10181 @item threshold0
10182 @item threshold1
10183 @item threshold2
10184 @item threshold3
10185 Limit the maximum change for each plane, default is 65535.
10186 If 0, plane will remain unchanged.
10187
10188 @item coordinates
10189 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
10190 pixels are used.
10191
10192 Flags to local 3x3 coordinates maps like this:
10193
10194     1 2 3
10195     4   5
10196     6 7 8
10197 @end table
10198
10199 @subsection Commands
10200
10201 This filter supports the all above options as @ref{commands}.
10202
10203 @section extractplanes
10204
10205 Extract color channel components from input video stream into
10206 separate grayscale video streams.
10207
10208 The filter accepts the following option:
10209
10210 @table @option
10211 @item planes
10212 Set plane(s) to extract.
10213
10214 Available values for planes are:
10215 @table @samp
10216 @item y
10217 @item u
10218 @item v
10219 @item a
10220 @item r
10221 @item g
10222 @item b
10223 @end table
10224
10225 Choosing planes not available in the input will result in an error.
10226 That means you cannot select @code{r}, @code{g}, @code{b} planes
10227 with @code{y}, @code{u}, @code{v} planes at same time.
10228 @end table
10229
10230 @subsection Examples
10231
10232 @itemize
10233 @item
10234 Extract luma, u and v color channel component from input video frame
10235 into 3 grayscale outputs:
10236 @example
10237 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
10238 @end example
10239 @end itemize
10240
10241 @section fade
10242
10243 Apply a fade-in/out effect to the input video.
10244
10245 It accepts the following parameters:
10246
10247 @table @option
10248 @item type, t
10249 The effect type can be either "in" for a fade-in, or "out" for a fade-out
10250 effect.
10251 Default is @code{in}.
10252
10253 @item start_frame, s
10254 Specify the number of the frame to start applying the fade
10255 effect at. Default is 0.
10256
10257 @item nb_frames, n
10258 The number of frames that the fade effect lasts. At the end of the
10259 fade-in effect, the output video will have the same intensity as the input video.
10260 At the end of the fade-out transition, the output video will be filled with the
10261 selected @option{color}.
10262 Default is 25.
10263
10264 @item alpha
10265 If set to 1, fade only alpha channel, if one exists on the input.
10266 Default value is 0.
10267
10268 @item start_time, st
10269 Specify the timestamp (in seconds) of the frame to start to apply the fade
10270 effect. If both start_frame and start_time are specified, the fade will start at
10271 whichever comes last.  Default is 0.
10272
10273 @item duration, d
10274 The number of seconds for which the fade effect has to last. At the end of the
10275 fade-in effect the output video will have the same intensity as the input video,
10276 at the end of the fade-out transition the output video will be filled with the
10277 selected @option{color}.
10278 If both duration and nb_frames are specified, duration is used. Default is 0
10279 (nb_frames is used by default).
10280
10281 @item color, c
10282 Specify the color of the fade. Default is "black".
10283 @end table
10284
10285 @subsection Examples
10286
10287 @itemize
10288 @item
10289 Fade in the first 30 frames of video:
10290 @example
10291 fade=in:0:30
10292 @end example
10293
10294 The command above is equivalent to:
10295 @example
10296 fade=t=in:s=0:n=30
10297 @end example
10298
10299 @item
10300 Fade out the last 45 frames of a 200-frame video:
10301 @example
10302 fade=out:155:45
10303 fade=type=out:start_frame=155:nb_frames=45
10304 @end example
10305
10306 @item
10307 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
10308 @example
10309 fade=in:0:25, fade=out:975:25
10310 @end example
10311
10312 @item
10313 Make the first 5 frames yellow, then fade in from frame 5-24:
10314 @example
10315 fade=in:5:20:color=yellow
10316 @end example
10317
10318 @item
10319 Fade in alpha over first 25 frames of video:
10320 @example
10321 fade=in:0:25:alpha=1
10322 @end example
10323
10324 @item
10325 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
10326 @example
10327 fade=t=in:st=5.5:d=0.5
10328 @end example
10329
10330 @end itemize
10331
10332 @section fftdnoiz
10333 Denoise frames using 3D FFT (frequency domain filtering).
10334
10335 The filter accepts the following options:
10336
10337 @table @option
10338 @item sigma
10339 Set the noise sigma constant. This sets denoising strength.
10340 Default value is 1. Allowed range is from 0 to 30.
10341 Using very high sigma with low overlap may give blocking artifacts.
10342
10343 @item amount
10344 Set amount of denoising. By default all detected noise is reduced.
10345 Default value is 1. Allowed range is from 0 to 1.
10346
10347 @item block
10348 Set size of block, Default is 4, can be 3, 4, 5 or 6.
10349 Actual size of block in pixels is 2 to power of @var{block}, so by default
10350 block size in pixels is 2^4 which is 16.
10351
10352 @item overlap
10353 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
10354
10355 @item prev
10356 Set number of previous frames to use for denoising. By default is set to 0.
10357
10358 @item next
10359 Set number of next frames to to use for denoising. By default is set to 0.
10360
10361 @item planes
10362 Set planes which will be filtered, by default are all available filtered
10363 except alpha.
10364 @end table
10365
10366 @section fftfilt
10367 Apply arbitrary expressions to samples in frequency domain
10368
10369 @table @option
10370 @item dc_Y
10371 Adjust the dc value (gain) of the luma plane of the image. The filter
10372 accepts an integer value in range @code{0} to @code{1000}. The default
10373 value is set to @code{0}.
10374
10375 @item dc_U
10376 Adjust the dc value (gain) of the 1st chroma plane of the image. The
10377 filter accepts an integer value in range @code{0} to @code{1000}. The
10378 default value is set to @code{0}.
10379
10380 @item dc_V
10381 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
10382 filter accepts an integer value in range @code{0} to @code{1000}. The
10383 default value is set to @code{0}.
10384
10385 @item weight_Y
10386 Set the frequency domain weight expression for the luma plane.
10387
10388 @item weight_U
10389 Set the frequency domain weight expression for the 1st chroma plane.
10390
10391 @item weight_V
10392 Set the frequency domain weight expression for the 2nd chroma plane.
10393
10394 @item eval
10395 Set when the expressions are evaluated.
10396
10397 It accepts the following values:
10398 @table @samp
10399 @item init
10400 Only evaluate expressions once during the filter initialization.
10401
10402 @item frame
10403 Evaluate expressions for each incoming frame.
10404 @end table
10405
10406 Default value is @samp{init}.
10407
10408 The filter accepts the following variables:
10409 @item X
10410 @item Y
10411 The coordinates of the current sample.
10412
10413 @item W
10414 @item H
10415 The width and height of the image.
10416
10417 @item N
10418 The number of input frame, starting from 0.
10419 @end table
10420
10421 @subsection Examples
10422
10423 @itemize
10424 @item
10425 High-pass:
10426 @example
10427 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
10428 @end example
10429
10430 @item
10431 Low-pass:
10432 @example
10433 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
10434 @end example
10435
10436 @item
10437 Sharpen:
10438 @example
10439 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
10440 @end example
10441
10442 @item
10443 Blur:
10444 @example
10445 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
10446 @end example
10447
10448 @end itemize
10449
10450 @section field
10451
10452 Extract a single field from an interlaced image using stride
10453 arithmetic to avoid wasting CPU time. The output frames are marked as
10454 non-interlaced.
10455
10456 The filter accepts the following options:
10457
10458 @table @option
10459 @item type
10460 Specify whether to extract the top (if the value is @code{0} or
10461 @code{top}) or the bottom field (if the value is @code{1} or
10462 @code{bottom}).
10463 @end table
10464
10465 @section fieldhint
10466
10467 Create new frames by copying the top and bottom fields from surrounding frames
10468 supplied as numbers by the hint file.
10469
10470 @table @option
10471 @item hint
10472 Set file containing hints: absolute/relative frame numbers.
10473
10474 There must be one line for each frame in a clip. Each line must contain two
10475 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
10476 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
10477 is current frame number for @code{absolute} mode or out of [-1, 1] range
10478 for @code{relative} mode. First number tells from which frame to pick up top
10479 field and second number tells from which frame to pick up bottom field.
10480
10481 If optionally followed by @code{+} output frame will be marked as interlaced,
10482 else if followed by @code{-} output frame will be marked as progressive, else
10483 it will be marked same as input frame.
10484 If optionally followed by @code{t} output frame will use only top field, or in
10485 case of @code{b} it will use only bottom field.
10486 If line starts with @code{#} or @code{;} that line is skipped.
10487
10488 @item mode
10489 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
10490 @end table
10491
10492 Example of first several lines of @code{hint} file for @code{relative} mode:
10493 @example
10494 0,0 - # first frame
10495 1,0 - # second frame, use third's frame top field and second's frame bottom field
10496 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
10497 1,0 -
10498 0,0 -
10499 0,0 -
10500 1,0 -
10501 1,0 -
10502 1,0 -
10503 0,0 -
10504 0,0 -
10505 1,0 -
10506 1,0 -
10507 1,0 -
10508 0,0 -
10509 @end example
10510
10511 @section fieldmatch
10512
10513 Field matching filter for inverse telecine. It is meant to reconstruct the
10514 progressive frames from a telecined stream. The filter does not drop duplicated
10515 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
10516 followed by a decimation filter such as @ref{decimate} in the filtergraph.
10517
10518 The separation of the field matching and the decimation is notably motivated by
10519 the possibility of inserting a de-interlacing filter fallback between the two.
10520 If the source has mixed telecined and real interlaced content,
10521 @code{fieldmatch} will not be able to match fields for the interlaced parts.
10522 But these remaining combed frames will be marked as interlaced, and thus can be
10523 de-interlaced by a later filter such as @ref{yadif} before decimation.
10524
10525 In addition to the various configuration options, @code{fieldmatch} can take an
10526 optional second stream, activated through the @option{ppsrc} option. If
10527 enabled, the frames reconstruction will be based on the fields and frames from
10528 this second stream. This allows the first input to be pre-processed in order to
10529 help the various algorithms of the filter, while keeping the output lossless
10530 (assuming the fields are matched properly). Typically, a field-aware denoiser,
10531 or brightness/contrast adjustments can help.
10532
10533 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
10534 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
10535 which @code{fieldmatch} is based on. While the semantic and usage are very
10536 close, some behaviour and options names can differ.
10537
10538 The @ref{decimate} filter currently only works for constant frame rate input.
10539 If your input has mixed telecined (30fps) and progressive content with a lower
10540 framerate like 24fps use the following filterchain to produce the necessary cfr
10541 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
10542
10543 The filter accepts the following options:
10544
10545 @table @option
10546 @item order
10547 Specify the assumed field order of the input stream. Available values are:
10548
10549 @table @samp
10550 @item auto
10551 Auto detect parity (use FFmpeg's internal parity value).
10552 @item bff
10553 Assume bottom field first.
10554 @item tff
10555 Assume top field first.
10556 @end table
10557
10558 Note that it is sometimes recommended not to trust the parity announced by the
10559 stream.
10560
10561 Default value is @var{auto}.
10562
10563 @item mode
10564 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
10565 sense that it won't risk creating jerkiness due to duplicate frames when
10566 possible, but if there are bad edits or blended fields it will end up
10567 outputting combed frames when a good match might actually exist. On the other
10568 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
10569 but will almost always find a good frame if there is one. The other values are
10570 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
10571 jerkiness and creating duplicate frames versus finding good matches in sections
10572 with bad edits, orphaned fields, blended fields, etc.
10573
10574 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
10575
10576 Available values are:
10577
10578 @table @samp
10579 @item pc
10580 2-way matching (p/c)
10581 @item pc_n
10582 2-way matching, and trying 3rd match if still combed (p/c + n)
10583 @item pc_u
10584 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
10585 @item pc_n_ub
10586 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
10587 still combed (p/c + n + u/b)
10588 @item pcn
10589 3-way matching (p/c/n)
10590 @item pcn_ub
10591 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
10592 detected as combed (p/c/n + u/b)
10593 @end table
10594
10595 The parenthesis at the end indicate the matches that would be used for that
10596 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
10597 @var{top}).
10598
10599 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
10600 the slowest.
10601
10602 Default value is @var{pc_n}.
10603
10604 @item ppsrc
10605 Mark the main input stream as a pre-processed input, and enable the secondary
10606 input stream as the clean source to pick the fields from. See the filter
10607 introduction for more details. It is similar to the @option{clip2} feature from
10608 VFM/TFM.
10609
10610 Default value is @code{0} (disabled).
10611
10612 @item field
10613 Set the field to match from. It is recommended to set this to the same value as
10614 @option{order} unless you experience matching failures with that setting. In
10615 certain circumstances changing the field that is used to match from can have a
10616 large impact on matching performance. Available values are:
10617
10618 @table @samp
10619 @item auto
10620 Automatic (same value as @option{order}).
10621 @item bottom
10622 Match from the bottom field.
10623 @item top
10624 Match from the top field.
10625 @end table
10626
10627 Default value is @var{auto}.
10628
10629 @item mchroma
10630 Set whether or not chroma is included during the match comparisons. In most
10631 cases it is recommended to leave this enabled. You should set this to @code{0}
10632 only if your clip has bad chroma problems such as heavy rainbowing or other
10633 artifacts. Setting this to @code{0} could also be used to speed things up at
10634 the cost of some accuracy.
10635
10636 Default value is @code{1}.
10637
10638 @item y0
10639 @item y1
10640 These define an exclusion band which excludes the lines between @option{y0} and
10641 @option{y1} from being included in the field matching decision. An exclusion
10642 band can be used to ignore subtitles, a logo, or other things that may
10643 interfere with the matching. @option{y0} sets the starting scan line and
10644 @option{y1} sets the ending line; all lines in between @option{y0} and
10645 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
10646 @option{y0} and @option{y1} to the same value will disable the feature.
10647 @option{y0} and @option{y1} defaults to @code{0}.
10648
10649 @item scthresh
10650 Set the scene change detection threshold as a percentage of maximum change on
10651 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
10652 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
10653 @option{scthresh} is @code{[0.0, 100.0]}.
10654
10655 Default value is @code{12.0}.
10656
10657 @item combmatch
10658 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
10659 account the combed scores of matches when deciding what match to use as the
10660 final match. Available values are:
10661
10662 @table @samp
10663 @item none
10664 No final matching based on combed scores.
10665 @item sc
10666 Combed scores are only used when a scene change is detected.
10667 @item full
10668 Use combed scores all the time.
10669 @end table
10670
10671 Default is @var{sc}.
10672
10673 @item combdbg
10674 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
10675 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
10676 Available values are:
10677
10678 @table @samp
10679 @item none
10680 No forced calculation.
10681 @item pcn
10682 Force p/c/n calculations.
10683 @item pcnub
10684 Force p/c/n/u/b calculations.
10685 @end table
10686
10687 Default value is @var{none}.
10688
10689 @item cthresh
10690 This is the area combing threshold used for combed frame detection. This
10691 essentially controls how "strong" or "visible" combing must be to be detected.
10692 Larger values mean combing must be more visible and smaller values mean combing
10693 can be less visible or strong and still be detected. Valid settings are from
10694 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
10695 be detected as combed). This is basically a pixel difference value. A good
10696 range is @code{[8, 12]}.
10697
10698 Default value is @code{9}.
10699
10700 @item chroma
10701 Sets whether or not chroma is considered in the combed frame decision.  Only
10702 disable this if your source has chroma problems (rainbowing, etc.) that are
10703 causing problems for the combed frame detection with chroma enabled. Actually,
10704 using @option{chroma}=@var{0} is usually more reliable, except for the case
10705 where there is chroma only combing in the source.
10706
10707 Default value is @code{0}.
10708
10709 @item blockx
10710 @item blocky
10711 Respectively set the x-axis and y-axis size of the window used during combed
10712 frame detection. This has to do with the size of the area in which
10713 @option{combpel} pixels are required to be detected as combed for a frame to be
10714 declared combed. See the @option{combpel} parameter description for more info.
10715 Possible values are any number that is a power of 2 starting at 4 and going up
10716 to 512.
10717
10718 Default value is @code{16}.
10719
10720 @item combpel
10721 The number of combed pixels inside any of the @option{blocky} by
10722 @option{blockx} size blocks on the frame for the frame to be detected as
10723 combed. While @option{cthresh} controls how "visible" the combing must be, this
10724 setting controls "how much" combing there must be in any localized area (a
10725 window defined by the @option{blockx} and @option{blocky} settings) on the
10726 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
10727 which point no frames will ever be detected as combed). This setting is known
10728 as @option{MI} in TFM/VFM vocabulary.
10729
10730 Default value is @code{80}.
10731 @end table
10732
10733 @anchor{p/c/n/u/b meaning}
10734 @subsection p/c/n/u/b meaning
10735
10736 @subsubsection p/c/n
10737
10738 We assume the following telecined stream:
10739
10740 @example
10741 Top fields:     1 2 2 3 4
10742 Bottom fields:  1 2 3 4 4
10743 @end example
10744
10745 The numbers correspond to the progressive frame the fields relate to. Here, the
10746 first two frames are progressive, the 3rd and 4th are combed, and so on.
10747
10748 When @code{fieldmatch} is configured to run a matching from bottom
10749 (@option{field}=@var{bottom}) this is how this input stream get transformed:
10750
10751 @example
10752 Input stream:
10753                 T     1 2 2 3 4
10754                 B     1 2 3 4 4   <-- matching reference
10755
10756 Matches:              c c n n c
10757
10758 Output stream:
10759                 T     1 2 3 4 4
10760                 B     1 2 3 4 4
10761 @end example
10762
10763 As a result of the field matching, we can see that some frames get duplicated.
10764 To perform a complete inverse telecine, you need to rely on a decimation filter
10765 after this operation. See for instance the @ref{decimate} filter.
10766
10767 The same operation now matching from top fields (@option{field}=@var{top})
10768 looks like this:
10769
10770 @example
10771 Input stream:
10772                 T     1 2 2 3 4   <-- matching reference
10773                 B     1 2 3 4 4
10774
10775 Matches:              c c p p c
10776
10777 Output stream:
10778                 T     1 2 2 3 4
10779                 B     1 2 2 3 4
10780 @end example
10781
10782 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
10783 basically, they refer to the frame and field of the opposite parity:
10784
10785 @itemize
10786 @item @var{p} matches the field of the opposite parity in the previous frame
10787 @item @var{c} matches the field of the opposite parity in the current frame
10788 @item @var{n} matches the field of the opposite parity in the next frame
10789 @end itemize
10790
10791 @subsubsection u/b
10792
10793 The @var{u} and @var{b} matching are a bit special in the sense that they match
10794 from the opposite parity flag. In the following examples, we assume that we are
10795 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
10796 'x' is placed above and below each matched fields.
10797
10798 With bottom matching (@option{field}=@var{bottom}):
10799 @example
10800 Match:           c         p           n          b          u
10801
10802                  x       x               x        x          x
10803   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10804   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10805                  x         x           x        x              x
10806
10807 Output frames:
10808                  2          1          2          2          2
10809                  2          2          2          1          3
10810 @end example
10811
10812 With top matching (@option{field}=@var{top}):
10813 @example
10814 Match:           c         p           n          b          u
10815
10816                  x         x           x        x              x
10817   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10818   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10819                  x       x               x        x          x
10820
10821 Output frames:
10822                  2          2          2          1          2
10823                  2          1          3          2          2
10824 @end example
10825
10826 @subsection Examples
10827
10828 Simple IVTC of a top field first telecined stream:
10829 @example
10830 fieldmatch=order=tff:combmatch=none, decimate
10831 @end example
10832
10833 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
10834 @example
10835 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
10836 @end example
10837
10838 @section fieldorder
10839
10840 Transform the field order of the input video.
10841
10842 It accepts the following parameters:
10843
10844 @table @option
10845
10846 @item order
10847 The output field order. Valid values are @var{tff} for top field first or @var{bff}
10848 for bottom field first.
10849 @end table
10850
10851 The default value is @samp{tff}.
10852
10853 The transformation is done by shifting the picture content up or down
10854 by one line, and filling the remaining line with appropriate picture content.
10855 This method is consistent with most broadcast field order converters.
10856
10857 If the input video is not flagged as being interlaced, or it is already
10858 flagged as being of the required output field order, then this filter does
10859 not alter the incoming video.
10860
10861 It is very useful when converting to or from PAL DV material,
10862 which is bottom field first.
10863
10864 For example:
10865 @example
10866 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
10867 @end example
10868
10869 @section fifo, afifo
10870
10871 Buffer input images and send them when they are requested.
10872
10873 It is mainly useful when auto-inserted by the libavfilter
10874 framework.
10875
10876 It does not take parameters.
10877
10878 @section fillborders
10879
10880 Fill borders of the input video, without changing video stream dimensions.
10881 Sometimes video can have garbage at the four edges and you may not want to
10882 crop video input to keep size multiple of some number.
10883
10884 This filter accepts the following options:
10885
10886 @table @option
10887 @item left
10888 Number of pixels to fill from left border.
10889
10890 @item right
10891 Number of pixels to fill from right border.
10892
10893 @item top
10894 Number of pixels to fill from top border.
10895
10896 @item bottom
10897 Number of pixels to fill from bottom border.
10898
10899 @item mode
10900 Set fill mode.
10901
10902 It accepts the following values:
10903 @table @samp
10904 @item smear
10905 fill pixels using outermost pixels
10906
10907 @item mirror
10908 fill pixels using mirroring
10909
10910 @item fixed
10911 fill pixels with constant value
10912 @end table
10913
10914 Default is @var{smear}.
10915
10916 @item color
10917 Set color for pixels in fixed mode. Default is @var{black}.
10918 @end table
10919
10920 @subsection Commands
10921 This filter supports same @ref{commands} as options.
10922 The command accepts the same syntax of the corresponding option.
10923
10924 If the specified expression is not valid, it is kept at its current
10925 value.
10926
10927 @section find_rect
10928
10929 Find a rectangular object
10930
10931 It accepts the following options:
10932
10933 @table @option
10934 @item object
10935 Filepath of the object image, needs to be in gray8.
10936
10937 @item threshold
10938 Detection threshold, default is 0.5.
10939
10940 @item mipmaps
10941 Number of mipmaps, default is 3.
10942
10943 @item xmin, ymin, xmax, ymax
10944 Specifies the rectangle in which to search.
10945 @end table
10946
10947 @subsection Examples
10948
10949 @itemize
10950 @item
10951 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
10952 @example
10953 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
10954 @end example
10955 @end itemize
10956
10957 @section floodfill
10958
10959 Flood area with values of same pixel components with another values.
10960
10961 It accepts the following options:
10962 @table @option
10963 @item x
10964 Set pixel x coordinate.
10965
10966 @item y
10967 Set pixel y coordinate.
10968
10969 @item s0
10970 Set source #0 component value.
10971
10972 @item s1
10973 Set source #1 component value.
10974
10975 @item s2
10976 Set source #2 component value.
10977
10978 @item s3
10979 Set source #3 component value.
10980
10981 @item d0
10982 Set destination #0 component value.
10983
10984 @item d1
10985 Set destination #1 component value.
10986
10987 @item d2
10988 Set destination #2 component value.
10989
10990 @item d3
10991 Set destination #3 component value.
10992 @end table
10993
10994 @anchor{format}
10995 @section format
10996
10997 Convert the input video to one of the specified pixel formats.
10998 Libavfilter will try to pick one that is suitable as input to
10999 the next filter.
11000
11001 It accepts the following parameters:
11002 @table @option
11003
11004 @item pix_fmts
11005 A '|'-separated list of pixel format names, such as
11006 "pix_fmts=yuv420p|monow|rgb24".
11007
11008 @end table
11009
11010 @subsection Examples
11011
11012 @itemize
11013 @item
11014 Convert the input video to the @var{yuv420p} format
11015 @example
11016 format=pix_fmts=yuv420p
11017 @end example
11018
11019 Convert the input video to any of the formats in the list
11020 @example
11021 format=pix_fmts=yuv420p|yuv444p|yuv410p
11022 @end example
11023 @end itemize
11024
11025 @anchor{fps}
11026 @section fps
11027
11028 Convert the video to specified constant frame rate by duplicating or dropping
11029 frames as necessary.
11030
11031 It accepts the following parameters:
11032 @table @option
11033
11034 @item fps
11035 The desired output frame rate. The default is @code{25}.
11036
11037 @item start_time
11038 Assume the first PTS should be the given value, in seconds. This allows for
11039 padding/trimming at the start of stream. By default, no assumption is made
11040 about the first frame's expected PTS, so no padding or trimming is done.
11041 For example, this could be set to 0 to pad the beginning with duplicates of
11042 the first frame if a video stream starts after the audio stream or to trim any
11043 frames with a negative PTS.
11044
11045 @item round
11046 Timestamp (PTS) rounding method.
11047
11048 Possible values are:
11049 @table @option
11050 @item zero
11051 round towards 0
11052 @item inf
11053 round away from 0
11054 @item down
11055 round towards -infinity
11056 @item up
11057 round towards +infinity
11058 @item near
11059 round to nearest
11060 @end table
11061 The default is @code{near}.
11062
11063 @item eof_action
11064 Action performed when reading the last frame.
11065
11066 Possible values are:
11067 @table @option
11068 @item round
11069 Use same timestamp rounding method as used for other frames.
11070 @item pass
11071 Pass through last frame if input duration has not been reached yet.
11072 @end table
11073 The default is @code{round}.
11074
11075 @end table
11076
11077 Alternatively, the options can be specified as a flat string:
11078 @var{fps}[:@var{start_time}[:@var{round}]].
11079
11080 See also the @ref{setpts} filter.
11081
11082 @subsection Examples
11083
11084 @itemize
11085 @item
11086 A typical usage in order to set the fps to 25:
11087 @example
11088 fps=fps=25
11089 @end example
11090
11091 @item
11092 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
11093 @example
11094 fps=fps=film:round=near
11095 @end example
11096 @end itemize
11097
11098 @section framepack
11099
11100 Pack two different video streams into a stereoscopic video, setting proper
11101 metadata on supported codecs. The two views should have the same size and
11102 framerate and processing will stop when the shorter video ends. Please note
11103 that you may conveniently adjust view properties with the @ref{scale} and
11104 @ref{fps} filters.
11105
11106 It accepts the following parameters:
11107 @table @option
11108
11109 @item format
11110 The desired packing format. Supported values are:
11111
11112 @table @option
11113
11114 @item sbs
11115 The views are next to each other (default).
11116
11117 @item tab
11118 The views are on top of each other.
11119
11120 @item lines
11121 The views are packed by line.
11122
11123 @item columns
11124 The views are packed by column.
11125
11126 @item frameseq
11127 The views are temporally interleaved.
11128
11129 @end table
11130
11131 @end table
11132
11133 Some examples:
11134
11135 @example
11136 # Convert left and right views into a frame-sequential video
11137 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
11138
11139 # Convert views into a side-by-side video with the same output resolution as the input
11140 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
11141 @end example
11142
11143 @section framerate
11144
11145 Change the frame rate by interpolating new video output frames from the source
11146 frames.
11147
11148 This filter is not designed to function correctly with interlaced media. If
11149 you wish to change the frame rate of interlaced media then you are required
11150 to deinterlace before this filter and re-interlace after this filter.
11151
11152 A description of the accepted options follows.
11153
11154 @table @option
11155 @item fps
11156 Specify the output frames per second. This option can also be specified
11157 as a value alone. The default is @code{50}.
11158
11159 @item interp_start
11160 Specify the start of a range where the output frame will be created as a
11161 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11162 the default is @code{15}.
11163
11164 @item interp_end
11165 Specify the end of a range where the output frame will be created as a
11166 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11167 the default is @code{240}.
11168
11169 @item scene
11170 Specify the level at which a scene change is detected as a value between
11171 0 and 100 to indicate a new scene; a low value reflects a low
11172 probability for the current frame to introduce a new scene, while a higher
11173 value means the current frame is more likely to be one.
11174 The default is @code{8.2}.
11175
11176 @item flags
11177 Specify flags influencing the filter process.
11178
11179 Available value for @var{flags} is:
11180
11181 @table @option
11182 @item scene_change_detect, scd
11183 Enable scene change detection using the value of the option @var{scene}.
11184 This flag is enabled by default.
11185 @end table
11186 @end table
11187
11188 @section framestep
11189
11190 Select one frame every N-th frame.
11191
11192 This filter accepts the following option:
11193 @table @option
11194 @item step
11195 Select frame after every @code{step} frames.
11196 Allowed values are positive integers higher than 0. Default value is @code{1}.
11197 @end table
11198
11199 @section freezedetect
11200
11201 Detect frozen video.
11202
11203 This filter logs a message and sets frame metadata when it detects that the
11204 input video has no significant change in content during a specified duration.
11205 Video freeze detection calculates the mean average absolute difference of all
11206 the components of video frames and compares it to a noise floor.
11207
11208 The printed times and duration are expressed in seconds. The
11209 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
11210 whose timestamp equals or exceeds the detection duration and it contains the
11211 timestamp of the first frame of the freeze. The
11212 @code{lavfi.freezedetect.freeze_duration} and
11213 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
11214 after the freeze.
11215
11216 The filter accepts the following options:
11217
11218 @table @option
11219 @item noise, n
11220 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
11221 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
11222 0.001.
11223
11224 @item duration, d
11225 Set freeze duration until notification (default is 2 seconds).
11226 @end table
11227
11228 @section freezeframes
11229
11230 Freeze video frames.
11231
11232 This filter freezes video frames using frame from 2nd input.
11233
11234 The filter accepts the following options:
11235
11236 @table @option
11237 @item first
11238 Set number of first frame from which to start freeze.
11239
11240 @item last
11241 Set number of last frame from which to end freeze.
11242
11243 @item replace
11244 Set number of frame from 2nd input which will be used instead of replaced frames.
11245 @end table
11246
11247 @anchor{frei0r}
11248 @section frei0r
11249
11250 Apply a frei0r effect to the input video.
11251
11252 To enable the compilation of this filter, you need to install the frei0r
11253 header and configure FFmpeg with @code{--enable-frei0r}.
11254
11255 It accepts the following parameters:
11256
11257 @table @option
11258
11259 @item filter_name
11260 The name of the frei0r effect to load. If the environment variable
11261 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
11262 directories specified by the colon-separated list in @env{FREI0R_PATH}.
11263 Otherwise, the standard frei0r paths are searched, in this order:
11264 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
11265 @file{/usr/lib/frei0r-1/}.
11266
11267 @item filter_params
11268 A '|'-separated list of parameters to pass to the frei0r effect.
11269
11270 @end table
11271
11272 A frei0r effect parameter can be a boolean (its value is either
11273 "y" or "n"), a double, a color (specified as
11274 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
11275 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
11276 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
11277 a position (specified as @var{X}/@var{Y}, where
11278 @var{X} and @var{Y} are floating point numbers) and/or a string.
11279
11280 The number and types of parameters depend on the loaded effect. If an
11281 effect parameter is not specified, the default value is set.
11282
11283 @subsection Examples
11284
11285 @itemize
11286 @item
11287 Apply the distort0r effect, setting the first two double parameters:
11288 @example
11289 frei0r=filter_name=distort0r:filter_params=0.5|0.01
11290 @end example
11291
11292 @item
11293 Apply the colordistance effect, taking a color as the first parameter:
11294 @example
11295 frei0r=colordistance:0.2/0.3/0.4
11296 frei0r=colordistance:violet
11297 frei0r=colordistance:0x112233
11298 @end example
11299
11300 @item
11301 Apply the perspective effect, specifying the top left and top right image
11302 positions:
11303 @example
11304 frei0r=perspective:0.2/0.2|0.8/0.2
11305 @end example
11306 @end itemize
11307
11308 For more information, see
11309 @url{http://frei0r.dyne.org}
11310
11311 @section fspp
11312
11313 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
11314
11315 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
11316 processing filter, one of them is performed once per block, not per pixel.
11317 This allows for much higher speed.
11318
11319 The filter accepts the following options:
11320
11321 @table @option
11322 @item quality
11323 Set quality. This option defines the number of levels for averaging. It accepts
11324 an integer in the range 4-5. Default value is @code{4}.
11325
11326 @item qp
11327 Force a constant quantization parameter. It accepts an integer in range 0-63.
11328 If not set, the filter will use the QP from the video stream (if available).
11329
11330 @item strength
11331 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
11332 more details but also more artifacts, while higher values make the image smoother
11333 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
11334
11335 @item use_bframe_qp
11336 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
11337 option may cause flicker since the B-Frames have often larger QP. Default is
11338 @code{0} (not enabled).
11339
11340 @end table
11341
11342 @section gblur
11343
11344 Apply Gaussian blur filter.
11345
11346 The filter accepts the following options:
11347
11348 @table @option
11349 @item sigma
11350 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
11351
11352 @item steps
11353 Set number of steps for Gaussian approximation. Default is @code{1}.
11354
11355 @item planes
11356 Set which planes to filter. By default all planes are filtered.
11357
11358 @item sigmaV
11359 Set vertical sigma, if negative it will be same as @code{sigma}.
11360 Default is @code{-1}.
11361 @end table
11362
11363 @subsection Commands
11364 This filter supports same commands as options.
11365 The command accepts the same syntax of the corresponding option.
11366
11367 If the specified expression is not valid, it is kept at its current
11368 value.
11369
11370 @section geq
11371
11372 Apply generic equation to each pixel.
11373
11374 The filter accepts the following options:
11375
11376 @table @option
11377 @item lum_expr, lum
11378 Set the luminance expression.
11379 @item cb_expr, cb
11380 Set the chrominance blue expression.
11381 @item cr_expr, cr
11382 Set the chrominance red expression.
11383 @item alpha_expr, a
11384 Set the alpha expression.
11385 @item red_expr, r
11386 Set the red expression.
11387 @item green_expr, g
11388 Set the green expression.
11389 @item blue_expr, b
11390 Set the blue expression.
11391 @end table
11392
11393 The colorspace is selected according to the specified options. If one
11394 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
11395 options is specified, the filter will automatically select a YCbCr
11396 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
11397 @option{blue_expr} options is specified, it will select an RGB
11398 colorspace.
11399
11400 If one of the chrominance expression is not defined, it falls back on the other
11401 one. If no alpha expression is specified it will evaluate to opaque value.
11402 If none of chrominance expressions are specified, they will evaluate
11403 to the luminance expression.
11404
11405 The expressions can use the following variables and functions:
11406
11407 @table @option
11408 @item N
11409 The sequential number of the filtered frame, starting from @code{0}.
11410
11411 @item X
11412 @item Y
11413 The coordinates of the current sample.
11414
11415 @item W
11416 @item H
11417 The width and height of the image.
11418
11419 @item SW
11420 @item SH
11421 Width and height scale depending on the currently filtered plane. It is the
11422 ratio between the corresponding luma plane number of pixels and the current
11423 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
11424 @code{0.5,0.5} for chroma planes.
11425
11426 @item T
11427 Time of the current frame, expressed in seconds.
11428
11429 @item p(x, y)
11430 Return the value of the pixel at location (@var{x},@var{y}) of the current
11431 plane.
11432
11433 @item lum(x, y)
11434 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
11435 plane.
11436
11437 @item cb(x, y)
11438 Return the value of the pixel at location (@var{x},@var{y}) of the
11439 blue-difference chroma plane. Return 0 if there is no such plane.
11440
11441 @item cr(x, y)
11442 Return the value of the pixel at location (@var{x},@var{y}) of the
11443 red-difference chroma plane. Return 0 if there is no such plane.
11444
11445 @item r(x, y)
11446 @item g(x, y)
11447 @item b(x, y)
11448 Return the value of the pixel at location (@var{x},@var{y}) of the
11449 red/green/blue component. Return 0 if there is no such component.
11450
11451 @item alpha(x, y)
11452 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
11453 plane. Return 0 if there is no such plane.
11454
11455 @item interpolation
11456 Set one of interpolation methods:
11457 @table @option
11458 @item nearest, n
11459 @item bilinear, b
11460 @end table
11461 Default is bilinear.
11462 @end table
11463
11464 For functions, if @var{x} and @var{y} are outside the area, the value will be
11465 automatically clipped to the closer edge.
11466
11467 @subsection Examples
11468
11469 @itemize
11470 @item
11471 Flip the image horizontally:
11472 @example
11473 geq=p(W-X\,Y)
11474 @end example
11475
11476 @item
11477 Generate a bidimensional sine wave, with angle @code{PI/3} and a
11478 wavelength of 100 pixels:
11479 @example
11480 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
11481 @end example
11482
11483 @item
11484 Generate a fancy enigmatic moving light:
11485 @example
11486 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
11487 @end example
11488
11489 @item
11490 Generate a quick emboss effect:
11491 @example
11492 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
11493 @end example
11494
11495 @item
11496 Modify RGB components depending on pixel position:
11497 @example
11498 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
11499 @end example
11500
11501 @item
11502 Create a radial gradient that is the same size as the input (also see
11503 the @ref{vignette} filter):
11504 @example
11505 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
11506 @end example
11507 @end itemize
11508
11509 @section gradfun
11510
11511 Fix the banding artifacts that are sometimes introduced into nearly flat
11512 regions by truncation to 8-bit color depth.
11513 Interpolate the gradients that should go where the bands are, and
11514 dither them.
11515
11516 It is designed for playback only.  Do not use it prior to
11517 lossy compression, because compression tends to lose the dither and
11518 bring back the bands.
11519
11520 It accepts the following parameters:
11521
11522 @table @option
11523
11524 @item strength
11525 The maximum amount by which the filter will change any one pixel. This is also
11526 the threshold for detecting nearly flat regions. Acceptable values range from
11527 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
11528 valid range.
11529
11530 @item radius
11531 The neighborhood to fit the gradient to. A larger radius makes for smoother
11532 gradients, but also prevents the filter from modifying the pixels near detailed
11533 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
11534 values will be clipped to the valid range.
11535
11536 @end table
11537
11538 Alternatively, the options can be specified as a flat string:
11539 @var{strength}[:@var{radius}]
11540
11541 @subsection Examples
11542
11543 @itemize
11544 @item
11545 Apply the filter with a @code{3.5} strength and radius of @code{8}:
11546 @example
11547 gradfun=3.5:8
11548 @end example
11549
11550 @item
11551 Specify radius, omitting the strength (which will fall-back to the default
11552 value):
11553 @example
11554 gradfun=radius=8
11555 @end example
11556
11557 @end itemize
11558
11559 @anchor{graphmonitor}
11560 @section graphmonitor
11561 Show various filtergraph stats.
11562
11563 With this filter one can debug complete filtergraph.
11564 Especially issues with links filling with queued frames.
11565
11566 The filter accepts the following options:
11567
11568 @table @option
11569 @item size, s
11570 Set video output size. Default is @var{hd720}.
11571
11572 @item opacity, o
11573 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
11574
11575 @item mode, m
11576 Set output mode, can be @var{fulll} or @var{compact}.
11577 In @var{compact} mode only filters with some queued frames have displayed stats.
11578
11579 @item flags, f
11580 Set flags which enable which stats are shown in video.
11581
11582 Available values for flags are:
11583 @table @samp
11584 @item queue
11585 Display number of queued frames in each link.
11586
11587 @item frame_count_in
11588 Display number of frames taken from filter.
11589
11590 @item frame_count_out
11591 Display number of frames given out from filter.
11592
11593 @item pts
11594 Display current filtered frame pts.
11595
11596 @item time
11597 Display current filtered frame time.
11598
11599 @item timebase
11600 Display time base for filter link.
11601
11602 @item format
11603 Display used format for filter link.
11604
11605 @item size
11606 Display video size or number of audio channels in case of audio used by filter link.
11607
11608 @item rate
11609 Display video frame rate or sample rate in case of audio used by filter link.
11610 @end table
11611
11612 @item rate, r
11613 Set upper limit for video rate of output stream, Default value is @var{25}.
11614 This guarantee that output video frame rate will not be higher than this value.
11615 @end table
11616
11617 @section greyedge
11618 A color constancy variation filter which estimates scene illumination via grey edge algorithm
11619 and corrects the scene colors accordingly.
11620
11621 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
11622
11623 The filter accepts the following options:
11624
11625 @table @option
11626 @item difford
11627 The order of differentiation to be applied on the scene. Must be chosen in the range
11628 [0,2] and default value is 1.
11629
11630 @item minknorm
11631 The Minkowski parameter to be used for calculating the Minkowski distance. Must
11632 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
11633 max value instead of calculating Minkowski distance.
11634
11635 @item sigma
11636 The standard deviation of Gaussian blur to be applied on the scene. Must be
11637 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
11638 can't be equal to 0 if @var{difford} is greater than 0.
11639 @end table
11640
11641 @subsection Examples
11642 @itemize
11643
11644 @item
11645 Grey Edge:
11646 @example
11647 greyedge=difford=1:minknorm=5:sigma=2
11648 @end example
11649
11650 @item
11651 Max Edge:
11652 @example
11653 greyedge=difford=1:minknorm=0:sigma=2
11654 @end example
11655
11656 @end itemize
11657
11658 @anchor{haldclut}
11659 @section haldclut
11660
11661 Apply a Hald CLUT to a video stream.
11662
11663 First input is the video stream to process, and second one is the Hald CLUT.
11664 The Hald CLUT input can be a simple picture or a complete video stream.
11665
11666 The filter accepts the following options:
11667
11668 @table @option
11669 @item shortest
11670 Force termination when the shortest input terminates. Default is @code{0}.
11671 @item repeatlast
11672 Continue applying the last CLUT after the end of the stream. A value of
11673 @code{0} disable the filter after the last frame of the CLUT is reached.
11674 Default is @code{1}.
11675 @end table
11676
11677 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
11678 filters share the same internals).
11679
11680 This filter also supports the @ref{framesync} options.
11681
11682 More information about the Hald CLUT can be found on Eskil Steenberg's website
11683 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
11684
11685 @subsection Workflow examples
11686
11687 @subsubsection Hald CLUT video stream
11688
11689 Generate an identity Hald CLUT stream altered with various effects:
11690 @example
11691 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
11692 @end example
11693
11694 Note: make sure you use a lossless codec.
11695
11696 Then use it with @code{haldclut} to apply it on some random stream:
11697 @example
11698 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
11699 @end example
11700
11701 The Hald CLUT will be applied to the 10 first seconds (duration of
11702 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
11703 to the remaining frames of the @code{mandelbrot} stream.
11704
11705 @subsubsection Hald CLUT with preview
11706
11707 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
11708 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
11709 biggest possible square starting at the top left of the picture. The remaining
11710 padding pixels (bottom or right) will be ignored. This area can be used to add
11711 a preview of the Hald CLUT.
11712
11713 Typically, the following generated Hald CLUT will be supported by the
11714 @code{haldclut} filter:
11715
11716 @example
11717 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
11718    pad=iw+320 [padded_clut];
11719    smptebars=s=320x256, split [a][b];
11720    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
11721    [main][b] overlay=W-320" -frames:v 1 clut.png
11722 @end example
11723
11724 It contains the original and a preview of the effect of the CLUT: SMPTE color
11725 bars are displayed on the right-top, and below the same color bars processed by
11726 the color changes.
11727
11728 Then, the effect of this Hald CLUT can be visualized with:
11729 @example
11730 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
11731 @end example
11732
11733 @section hflip
11734
11735 Flip the input video horizontally.
11736
11737 For example, to horizontally flip the input video with @command{ffmpeg}:
11738 @example
11739 ffmpeg -i in.avi -vf "hflip" out.avi
11740 @end example
11741
11742 @section histeq
11743 This filter applies a global color histogram equalization on a
11744 per-frame basis.
11745
11746 It can be used to correct video that has a compressed range of pixel
11747 intensities.  The filter redistributes the pixel intensities to
11748 equalize their distribution across the intensity range. It may be
11749 viewed as an "automatically adjusting contrast filter". This filter is
11750 useful only for correcting degraded or poorly captured source
11751 video.
11752
11753 The filter accepts the following options:
11754
11755 @table @option
11756 @item strength
11757 Determine the amount of equalization to be applied.  As the strength
11758 is reduced, the distribution of pixel intensities more-and-more
11759 approaches that of the input frame. The value must be a float number
11760 in the range [0,1] and defaults to 0.200.
11761
11762 @item intensity
11763 Set the maximum intensity that can generated and scale the output
11764 values appropriately.  The strength should be set as desired and then
11765 the intensity can be limited if needed to avoid washing-out. The value
11766 must be a float number in the range [0,1] and defaults to 0.210.
11767
11768 @item antibanding
11769 Set the antibanding level. If enabled the filter will randomly vary
11770 the luminance of output pixels by a small amount to avoid banding of
11771 the histogram. Possible values are @code{none}, @code{weak} or
11772 @code{strong}. It defaults to @code{none}.
11773 @end table
11774
11775 @anchor{histogram}
11776 @section histogram
11777
11778 Compute and draw a color distribution histogram for the input video.
11779
11780 The computed histogram is a representation of the color component
11781 distribution in an image.
11782
11783 Standard histogram displays the color components distribution in an image.
11784 Displays color graph for each color component. Shows distribution of
11785 the Y, U, V, A or R, G, B components, depending on input format, in the
11786 current frame. Below each graph a color component scale meter is shown.
11787
11788 The filter accepts the following options:
11789
11790 @table @option
11791 @item level_height
11792 Set height of level. Default value is @code{200}.
11793 Allowed range is [50, 2048].
11794
11795 @item scale_height
11796 Set height of color scale. Default value is @code{12}.
11797 Allowed range is [0, 40].
11798
11799 @item display_mode
11800 Set display mode.
11801 It accepts the following values:
11802 @table @samp
11803 @item stack
11804 Per color component graphs are placed below each other.
11805
11806 @item parade
11807 Per color component graphs are placed side by side.
11808
11809 @item overlay
11810 Presents information identical to that in the @code{parade}, except
11811 that the graphs representing color components are superimposed directly
11812 over one another.
11813 @end table
11814 Default is @code{stack}.
11815
11816 @item levels_mode
11817 Set mode. Can be either @code{linear}, or @code{logarithmic}.
11818 Default is @code{linear}.
11819
11820 @item components
11821 Set what color components to display.
11822 Default is @code{7}.
11823
11824 @item fgopacity
11825 Set foreground opacity. Default is @code{0.7}.
11826
11827 @item bgopacity
11828 Set background opacity. Default is @code{0.5}.
11829 @end table
11830
11831 @subsection Examples
11832
11833 @itemize
11834
11835 @item
11836 Calculate and draw histogram:
11837 @example
11838 ffplay -i input -vf histogram
11839 @end example
11840
11841 @end itemize
11842
11843 @anchor{hqdn3d}
11844 @section hqdn3d
11845
11846 This is a high precision/quality 3d denoise filter. It aims to reduce
11847 image noise, producing smooth images and making still images really
11848 still. It should enhance compressibility.
11849
11850 It accepts the following optional parameters:
11851
11852 @table @option
11853 @item luma_spatial
11854 A non-negative floating point number which specifies spatial luma strength.
11855 It defaults to 4.0.
11856
11857 @item chroma_spatial
11858 A non-negative floating point number which specifies spatial chroma strength.
11859 It defaults to 3.0*@var{luma_spatial}/4.0.
11860
11861 @item luma_tmp
11862 A floating point number which specifies luma temporal strength. It defaults to
11863 6.0*@var{luma_spatial}/4.0.
11864
11865 @item chroma_tmp
11866 A floating point number which specifies chroma temporal strength. It defaults to
11867 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
11868 @end table
11869
11870 @subsection Commands
11871 This filter supports same @ref{commands} as options.
11872 The command accepts the same syntax of the corresponding option.
11873
11874 If the specified expression is not valid, it is kept at its current
11875 value.
11876
11877 @anchor{hwdownload}
11878 @section hwdownload
11879
11880 Download hardware frames to system memory.
11881
11882 The input must be in hardware frames, and the output a non-hardware format.
11883 Not all formats will be supported on the output - it may be necessary to insert
11884 an additional @option{format} filter immediately following in the graph to get
11885 the output in a supported format.
11886
11887 @section hwmap
11888
11889 Map hardware frames to system memory or to another device.
11890
11891 This filter has several different modes of operation; which one is used depends
11892 on the input and output formats:
11893 @itemize
11894 @item
11895 Hardware frame input, normal frame output
11896
11897 Map the input frames to system memory and pass them to the output.  If the
11898 original hardware frame is later required (for example, after overlaying
11899 something else on part of it), the @option{hwmap} filter can be used again
11900 in the next mode to retrieve it.
11901 @item
11902 Normal frame input, hardware frame output
11903
11904 If the input is actually a software-mapped hardware frame, then unmap it -
11905 that is, return the original hardware frame.
11906
11907 Otherwise, a device must be provided.  Create new hardware surfaces on that
11908 device for the output, then map them back to the software format at the input
11909 and give those frames to the preceding filter.  This will then act like the
11910 @option{hwupload} filter, but may be able to avoid an additional copy when
11911 the input is already in a compatible format.
11912 @item
11913 Hardware frame input and output
11914
11915 A device must be supplied for the output, either directly or with the
11916 @option{derive_device} option.  The input and output devices must be of
11917 different types and compatible - the exact meaning of this is
11918 system-dependent, but typically it means that they must refer to the same
11919 underlying hardware context (for example, refer to the same graphics card).
11920
11921 If the input frames were originally created on the output device, then unmap
11922 to retrieve the original frames.
11923
11924 Otherwise, map the frames to the output device - create new hardware frames
11925 on the output corresponding to the frames on the input.
11926 @end itemize
11927
11928 The following additional parameters are accepted:
11929
11930 @table @option
11931 @item mode
11932 Set the frame mapping mode.  Some combination of:
11933 @table @var
11934 @item read
11935 The mapped frame should be readable.
11936 @item write
11937 The mapped frame should be writeable.
11938 @item overwrite
11939 The mapping will always overwrite the entire frame.
11940
11941 This may improve performance in some cases, as the original contents of the
11942 frame need not be loaded.
11943 @item direct
11944 The mapping must not involve any copying.
11945
11946 Indirect mappings to copies of frames are created in some cases where either
11947 direct mapping is not possible or it would have unexpected properties.
11948 Setting this flag ensures that the mapping is direct and will fail if that is
11949 not possible.
11950 @end table
11951 Defaults to @var{read+write} if not specified.
11952
11953 @item derive_device @var{type}
11954 Rather than using the device supplied at initialisation, instead derive a new
11955 device of type @var{type} from the device the input frames exist on.
11956
11957 @item reverse
11958 In a hardware to hardware mapping, map in reverse - create frames in the sink
11959 and map them back to the source.  This may be necessary in some cases where
11960 a mapping in one direction is required but only the opposite direction is
11961 supported by the devices being used.
11962
11963 This option is dangerous - it may break the preceding filter in undefined
11964 ways if there are any additional constraints on that filter's output.
11965 Do not use it without fully understanding the implications of its use.
11966 @end table
11967
11968 @anchor{hwupload}
11969 @section hwupload
11970
11971 Upload system memory frames to hardware surfaces.
11972
11973 The device to upload to must be supplied when the filter is initialised.  If
11974 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
11975 option.
11976
11977 @anchor{hwupload_cuda}
11978 @section hwupload_cuda
11979
11980 Upload system memory frames to a CUDA device.
11981
11982 It accepts the following optional parameters:
11983
11984 @table @option
11985 @item device
11986 The number of the CUDA device to use
11987 @end table
11988
11989 @section hqx
11990
11991 Apply a high-quality magnification filter designed for pixel art. This filter
11992 was originally created by Maxim Stepin.
11993
11994 It accepts the following option:
11995
11996 @table @option
11997 @item n
11998 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
11999 @code{hq3x} and @code{4} for @code{hq4x}.
12000 Default is @code{3}.
12001 @end table
12002
12003 @section hstack
12004 Stack input videos horizontally.
12005
12006 All streams must be of same pixel format and of same height.
12007
12008 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12009 to create same output.
12010
12011 The filter accepts the following option:
12012
12013 @table @option
12014 @item inputs
12015 Set number of input streams. Default is 2.
12016
12017 @item shortest
12018 If set to 1, force the output to terminate when the shortest input
12019 terminates. Default value is 0.
12020 @end table
12021
12022 @section hue
12023
12024 Modify the hue and/or the saturation of the input.
12025
12026 It accepts the following parameters:
12027
12028 @table @option
12029 @item h
12030 Specify the hue angle as a number of degrees. It accepts an expression,
12031 and defaults to "0".
12032
12033 @item s
12034 Specify the saturation in the [-10,10] range. It accepts an expression and
12035 defaults to "1".
12036
12037 @item H
12038 Specify the hue angle as a number of radians. It accepts an
12039 expression, and defaults to "0".
12040
12041 @item b
12042 Specify the brightness in the [-10,10] range. It accepts an expression and
12043 defaults to "0".
12044 @end table
12045
12046 @option{h} and @option{H} are mutually exclusive, and can't be
12047 specified at the same time.
12048
12049 The @option{b}, @option{h}, @option{H} and @option{s} option values are
12050 expressions containing the following constants:
12051
12052 @table @option
12053 @item n
12054 frame count of the input frame starting from 0
12055
12056 @item pts
12057 presentation timestamp of the input frame expressed in time base units
12058
12059 @item r
12060 frame rate of the input video, NAN if the input frame rate is unknown
12061
12062 @item t
12063 timestamp expressed in seconds, NAN if the input timestamp is unknown
12064
12065 @item tb
12066 time base of the input video
12067 @end table
12068
12069 @subsection Examples
12070
12071 @itemize
12072 @item
12073 Set the hue to 90 degrees and the saturation to 1.0:
12074 @example
12075 hue=h=90:s=1
12076 @end example
12077
12078 @item
12079 Same command but expressing the hue in radians:
12080 @example
12081 hue=H=PI/2:s=1
12082 @end example
12083
12084 @item
12085 Rotate hue and make the saturation swing between 0
12086 and 2 over a period of 1 second:
12087 @example
12088 hue="H=2*PI*t: s=sin(2*PI*t)+1"
12089 @end example
12090
12091 @item
12092 Apply a 3 seconds saturation fade-in effect starting at 0:
12093 @example
12094 hue="s=min(t/3\,1)"
12095 @end example
12096
12097 The general fade-in expression can be written as:
12098 @example
12099 hue="s=min(0\, max((t-START)/DURATION\, 1))"
12100 @end example
12101
12102 @item
12103 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
12104 @example
12105 hue="s=max(0\, min(1\, (8-t)/3))"
12106 @end example
12107
12108 The general fade-out expression can be written as:
12109 @example
12110 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
12111 @end example
12112
12113 @end itemize
12114
12115 @subsection Commands
12116
12117 This filter supports the following commands:
12118 @table @option
12119 @item b
12120 @item s
12121 @item h
12122 @item H
12123 Modify the hue and/or the saturation and/or brightness of the input video.
12124 The command accepts the same syntax of the corresponding option.
12125
12126 If the specified expression is not valid, it is kept at its current
12127 value.
12128 @end table
12129
12130 @section hysteresis
12131
12132 Grow first stream into second stream by connecting components.
12133 This makes it possible to build more robust edge masks.
12134
12135 This filter accepts the following options:
12136
12137 @table @option
12138 @item planes
12139 Set which planes will be processed as bitmap, unprocessed planes will be
12140 copied from first stream.
12141 By default value 0xf, all planes will be processed.
12142
12143 @item threshold
12144 Set threshold which is used in filtering. If pixel component value is higher than
12145 this value filter algorithm for connecting components is activated.
12146 By default value is 0.
12147 @end table
12148
12149 @section idet
12150
12151 Detect video interlacing type.
12152
12153 This filter tries to detect if the input frames are interlaced, progressive,
12154 top or bottom field first. It will also try to detect fields that are
12155 repeated between adjacent frames (a sign of telecine).
12156
12157 Single frame detection considers only immediately adjacent frames when classifying each frame.
12158 Multiple frame detection incorporates the classification history of previous frames.
12159
12160 The filter will log these metadata values:
12161
12162 @table @option
12163 @item single.current_frame
12164 Detected type of current frame using single-frame detection. One of:
12165 ``tff'' (top field first), ``bff'' (bottom field first),
12166 ``progressive'', or ``undetermined''
12167
12168 @item single.tff
12169 Cumulative number of frames detected as top field first using single-frame detection.
12170
12171 @item multiple.tff
12172 Cumulative number of frames detected as top field first using multiple-frame detection.
12173
12174 @item single.bff
12175 Cumulative number of frames detected as bottom field first using single-frame detection.
12176
12177 @item multiple.current_frame
12178 Detected type of current frame using multiple-frame detection. One of:
12179 ``tff'' (top field first), ``bff'' (bottom field first),
12180 ``progressive'', or ``undetermined''
12181
12182 @item multiple.bff
12183 Cumulative number of frames detected as bottom field first using multiple-frame detection.
12184
12185 @item single.progressive
12186 Cumulative number of frames detected as progressive using single-frame detection.
12187
12188 @item multiple.progressive
12189 Cumulative number of frames detected as progressive using multiple-frame detection.
12190
12191 @item single.undetermined
12192 Cumulative number of frames that could not be classified using single-frame detection.
12193
12194 @item multiple.undetermined
12195 Cumulative number of frames that could not be classified using multiple-frame detection.
12196
12197 @item repeated.current_frame
12198 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
12199
12200 @item repeated.neither
12201 Cumulative number of frames with no repeated field.
12202
12203 @item repeated.top
12204 Cumulative number of frames with the top field repeated from the previous frame's top field.
12205
12206 @item repeated.bottom
12207 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
12208 @end table
12209
12210 The filter accepts the following options:
12211
12212 @table @option
12213 @item intl_thres
12214 Set interlacing threshold.
12215 @item prog_thres
12216 Set progressive threshold.
12217 @item rep_thres
12218 Threshold for repeated field detection.
12219 @item half_life
12220 Number of frames after which a given frame's contribution to the
12221 statistics is halved (i.e., it contributes only 0.5 to its
12222 classification). The default of 0 means that all frames seen are given
12223 full weight of 1.0 forever.
12224 @item analyze_interlaced_flag
12225 When this is not 0 then idet will use the specified number of frames to determine
12226 if the interlaced flag is accurate, it will not count undetermined frames.
12227 If the flag is found to be accurate it will be used without any further
12228 computations, if it is found to be inaccurate it will be cleared without any
12229 further computations. This allows inserting the idet filter as a low computational
12230 method to clean up the interlaced flag
12231 @end table
12232
12233 @section il
12234
12235 Deinterleave or interleave fields.
12236
12237 This filter allows one to process interlaced images fields without
12238 deinterlacing them. Deinterleaving splits the input frame into 2
12239 fields (so called half pictures). Odd lines are moved to the top
12240 half of the output image, even lines to the bottom half.
12241 You can process (filter) them independently and then re-interleave them.
12242
12243 The filter accepts the following options:
12244
12245 @table @option
12246 @item luma_mode, l
12247 @item chroma_mode, c
12248 @item alpha_mode, a
12249 Available values for @var{luma_mode}, @var{chroma_mode} and
12250 @var{alpha_mode} are:
12251
12252 @table @samp
12253 @item none
12254 Do nothing.
12255
12256 @item deinterleave, d
12257 Deinterleave fields, placing one above the other.
12258
12259 @item interleave, i
12260 Interleave fields. Reverse the effect of deinterleaving.
12261 @end table
12262 Default value is @code{none}.
12263
12264 @item luma_swap, ls
12265 @item chroma_swap, cs
12266 @item alpha_swap, as
12267 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
12268 @end table
12269
12270 @subsection Commands
12271
12272 This filter supports the all above options as @ref{commands}.
12273
12274 @section inflate
12275
12276 Apply inflate effect to the video.
12277
12278 This filter replaces the pixel by the local(3x3) average by taking into account
12279 only values higher than the pixel.
12280
12281 It accepts the following options:
12282
12283 @table @option
12284 @item threshold0
12285 @item threshold1
12286 @item threshold2
12287 @item threshold3
12288 Limit the maximum change for each plane, default is 65535.
12289 If 0, plane will remain unchanged.
12290 @end table
12291
12292 @subsection Commands
12293
12294 This filter supports the all above options as @ref{commands}.
12295
12296 @section interlace
12297
12298 Simple interlacing filter from progressive contents. This interleaves upper (or
12299 lower) lines from odd frames with lower (or upper) lines from even frames,
12300 halving the frame rate and preserving image height.
12301
12302 @example
12303    Original        Original             New Frame
12304    Frame 'j'      Frame 'j+1'             (tff)
12305   ==========      ===========       ==================
12306     Line 0  -------------------->    Frame 'j' Line 0
12307     Line 1          Line 1  ---->   Frame 'j+1' Line 1
12308     Line 2 --------------------->    Frame 'j' Line 2
12309     Line 3          Line 3  ---->   Frame 'j+1' Line 3
12310      ...             ...                   ...
12311 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
12312 @end example
12313
12314 It accepts the following optional parameters:
12315
12316 @table @option
12317 @item scan
12318 This determines whether the interlaced frame is taken from the even
12319 (tff - default) or odd (bff) lines of the progressive frame.
12320
12321 @item lowpass
12322 Vertical lowpass filter to avoid twitter interlacing and
12323 reduce moire patterns.
12324
12325 @table @samp
12326 @item 0, off
12327 Disable vertical lowpass filter
12328
12329 @item 1, linear
12330 Enable linear filter (default)
12331
12332 @item 2, complex
12333 Enable complex filter. This will slightly less reduce twitter and moire
12334 but better retain detail and subjective sharpness impression.
12335
12336 @end table
12337 @end table
12338
12339 @section kerndeint
12340
12341 Deinterlace input video by applying Donald Graft's adaptive kernel
12342 deinterling. Work on interlaced parts of a video to produce
12343 progressive frames.
12344
12345 The description of the accepted parameters follows.
12346
12347 @table @option
12348 @item thresh
12349 Set the threshold which affects the filter's tolerance when
12350 determining if a pixel line must be processed. It must be an integer
12351 in the range [0,255] and defaults to 10. A value of 0 will result in
12352 applying the process on every pixels.
12353
12354 @item map
12355 Paint pixels exceeding the threshold value to white if set to 1.
12356 Default is 0.
12357
12358 @item order
12359 Set the fields order. Swap fields if set to 1, leave fields alone if
12360 0. Default is 0.
12361
12362 @item sharp
12363 Enable additional sharpening if set to 1. Default is 0.
12364
12365 @item twoway
12366 Enable twoway sharpening if set to 1. Default is 0.
12367 @end table
12368
12369 @subsection Examples
12370
12371 @itemize
12372 @item
12373 Apply default values:
12374 @example
12375 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
12376 @end example
12377
12378 @item
12379 Enable additional sharpening:
12380 @example
12381 kerndeint=sharp=1
12382 @end example
12383
12384 @item
12385 Paint processed pixels in white:
12386 @example
12387 kerndeint=map=1
12388 @end example
12389 @end itemize
12390
12391 @section lagfun
12392
12393 Slowly update darker pixels.
12394
12395 This filter makes short flashes of light appear longer.
12396 This filter accepts the following options:
12397
12398 @table @option
12399 @item decay
12400 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
12401
12402 @item planes
12403 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
12404 @end table
12405
12406 @section lenscorrection
12407
12408 Correct radial lens distortion
12409
12410 This filter can be used to correct for radial distortion as can result from the use
12411 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
12412 one can use tools available for example as part of opencv or simply trial-and-error.
12413 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
12414 and extract the k1 and k2 coefficients from the resulting matrix.
12415
12416 Note that effectively the same filter is available in the open-source tools Krita and
12417 Digikam from the KDE project.
12418
12419 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
12420 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
12421 brightness distribution, so you may want to use both filters together in certain
12422 cases, though you will have to take care of ordering, i.e. whether vignetting should
12423 be applied before or after lens correction.
12424
12425 @subsection Options
12426
12427 The filter accepts the following options:
12428
12429 @table @option
12430 @item cx
12431 Relative x-coordinate of the focal point of the image, and thereby the center of the
12432 distortion. This value has a range [0,1] and is expressed as fractions of the image
12433 width. Default is 0.5.
12434 @item cy
12435 Relative y-coordinate of the focal point of the image, and thereby the center of the
12436 distortion. This value has a range [0,1] and is expressed as fractions of the image
12437 height. Default is 0.5.
12438 @item k1
12439 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
12440 no correction. Default is 0.
12441 @item k2
12442 Coefficient of the double quadratic correction term. This value has a range [-1,1].
12443 0 means no correction. Default is 0.
12444 @end table
12445
12446 The formula that generates the correction is:
12447
12448 @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)
12449
12450 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
12451 distances from the focal point in the source and target images, respectively.
12452
12453 @section lensfun
12454
12455 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
12456
12457 The @code{lensfun} filter requires the camera make, camera model, and lens model
12458 to apply the lens correction. The filter will load the lensfun database and
12459 query it to find the corresponding camera and lens entries in the database. As
12460 long as these entries can be found with the given options, the filter can
12461 perform corrections on frames. Note that incomplete strings will result in the
12462 filter choosing the best match with the given options, and the filter will
12463 output the chosen camera and lens models (logged with level "info"). You must
12464 provide the make, camera model, and lens model as they are required.
12465
12466 The filter accepts the following options:
12467
12468 @table @option
12469 @item make
12470 The make of the camera (for example, "Canon"). This option is required.
12471
12472 @item model
12473 The model of the camera (for example, "Canon EOS 100D"). This option is
12474 required.
12475
12476 @item lens_model
12477 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
12478 option is required.
12479
12480 @item mode
12481 The type of correction to apply. The following values are valid options:
12482
12483 @table @samp
12484 @item vignetting
12485 Enables fixing lens vignetting.
12486
12487 @item geometry
12488 Enables fixing lens geometry. This is the default.
12489
12490 @item subpixel
12491 Enables fixing chromatic aberrations.
12492
12493 @item vig_geo
12494 Enables fixing lens vignetting and lens geometry.
12495
12496 @item vig_subpixel
12497 Enables fixing lens vignetting and chromatic aberrations.
12498
12499 @item distortion
12500 Enables fixing both lens geometry and chromatic aberrations.
12501
12502 @item all
12503 Enables all possible corrections.
12504
12505 @end table
12506 @item focal_length
12507 The focal length of the image/video (zoom; expected constant for video). For
12508 example, a 18--55mm lens has focal length range of [18--55], so a value in that
12509 range should be chosen when using that lens. Default 18.
12510
12511 @item aperture
12512 The aperture of the image/video (expected constant for video). Note that
12513 aperture is only used for vignetting correction. Default 3.5.
12514
12515 @item focus_distance
12516 The focus distance of the image/video (expected constant for video). Note that
12517 focus distance is only used for vignetting and only slightly affects the
12518 vignetting correction process. If unknown, leave it at the default value (which
12519 is 1000).
12520
12521 @item scale
12522 The scale factor which is applied after transformation. After correction the
12523 video is no longer necessarily rectangular. This parameter controls how much of
12524 the resulting image is visible. The value 0 means that a value will be chosen
12525 automatically such that there is little or no unmapped area in the output
12526 image. 1.0 means that no additional scaling is done. Lower values may result
12527 in more of the corrected image being visible, while higher values may avoid
12528 unmapped areas in the output.
12529
12530 @item target_geometry
12531 The target geometry of the output image/video. The following values are valid
12532 options:
12533
12534 @table @samp
12535 @item rectilinear (default)
12536 @item fisheye
12537 @item panoramic
12538 @item equirectangular
12539 @item fisheye_orthographic
12540 @item fisheye_stereographic
12541 @item fisheye_equisolid
12542 @item fisheye_thoby
12543 @end table
12544 @item reverse
12545 Apply the reverse of image correction (instead of correcting distortion, apply
12546 it).
12547
12548 @item interpolation
12549 The type of interpolation used when correcting distortion. The following values
12550 are valid options:
12551
12552 @table @samp
12553 @item nearest
12554 @item linear (default)
12555 @item lanczos
12556 @end table
12557 @end table
12558
12559 @subsection Examples
12560
12561 @itemize
12562 @item
12563 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
12564 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
12565 aperture of "8.0".
12566
12567 @example
12568 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
12569 @end example
12570
12571 @item
12572 Apply the same as before, but only for the first 5 seconds of video.
12573
12574 @example
12575 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
12576 @end example
12577
12578 @end itemize
12579
12580 @section libvmaf
12581
12582 Obtain the VMAF (Video Multi-Method Assessment Fusion)
12583 score between two input videos.
12584
12585 The obtained VMAF score is printed through the logging system.
12586
12587 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
12588 After installing the library it can be enabled using:
12589 @code{./configure --enable-libvmaf --enable-version3}.
12590 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
12591
12592 The filter has following options:
12593
12594 @table @option
12595 @item model_path
12596 Set the model path which is to be used for SVM.
12597 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
12598
12599 @item log_path
12600 Set the file path to be used to store logs.
12601
12602 @item log_fmt
12603 Set the format of the log file (xml or json).
12604
12605 @item enable_transform
12606 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
12607 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
12608 Default value: @code{false}
12609
12610 @item phone_model
12611 Invokes the phone model which will generate VMAF scores higher than in the
12612 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
12613 Default value: @code{false}
12614
12615 @item psnr
12616 Enables computing psnr along with vmaf.
12617 Default value: @code{false}
12618
12619 @item ssim
12620 Enables computing ssim along with vmaf.
12621 Default value: @code{false}
12622
12623 @item ms_ssim
12624 Enables computing ms_ssim along with vmaf.
12625 Default value: @code{false}
12626
12627 @item pool
12628 Set the pool method to be used for computing vmaf.
12629 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
12630
12631 @item n_threads
12632 Set number of threads to be used when computing vmaf.
12633 Default value: @code{0}, which makes use of all available logical processors.
12634
12635 @item n_subsample
12636 Set interval for frame subsampling used when computing vmaf.
12637 Default value: @code{1}
12638
12639 @item enable_conf_interval
12640 Enables confidence interval.
12641 Default value: @code{false}
12642 @end table
12643
12644 This filter also supports the @ref{framesync} options.
12645
12646 @subsection Examples
12647 @itemize
12648 @item
12649 On the below examples the input file @file{main.mpg} being processed is
12650 compared with the reference file @file{ref.mpg}.
12651
12652 @example
12653 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
12654 @end example
12655
12656 @item
12657 Example with options:
12658 @example
12659 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
12660 @end example
12661
12662 @item
12663 Example with options and different containers:
12664 @example
12665 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 -
12666 @end example
12667 @end itemize
12668
12669 @section limiter
12670
12671 Limits the pixel components values to the specified range [min, max].
12672
12673 The filter accepts the following options:
12674
12675 @table @option
12676 @item min
12677 Lower bound. Defaults to the lowest allowed value for the input.
12678
12679 @item max
12680 Upper bound. Defaults to the highest allowed value for the input.
12681
12682 @item planes
12683 Specify which planes will be processed. Defaults to all available.
12684 @end table
12685
12686 @section loop
12687
12688 Loop video frames.
12689
12690 The filter accepts the following options:
12691
12692 @table @option
12693 @item loop
12694 Set the number of loops. Setting this value to -1 will result in infinite loops.
12695 Default is 0.
12696
12697 @item size
12698 Set maximal size in number of frames. Default is 0.
12699
12700 @item start
12701 Set first frame of loop. Default is 0.
12702 @end table
12703
12704 @subsection Examples
12705
12706 @itemize
12707 @item
12708 Loop single first frame infinitely:
12709 @example
12710 loop=loop=-1:size=1:start=0
12711 @end example
12712
12713 @item
12714 Loop single first frame 10 times:
12715 @example
12716 loop=loop=10:size=1:start=0
12717 @end example
12718
12719 @item
12720 Loop 10 first frames 5 times:
12721 @example
12722 loop=loop=5:size=10:start=0
12723 @end example
12724 @end itemize
12725
12726 @section lut1d
12727
12728 Apply a 1D LUT to an input video.
12729
12730 The filter accepts the following options:
12731
12732 @table @option
12733 @item file
12734 Set the 1D LUT file name.
12735
12736 Currently supported formats:
12737 @table @samp
12738 @item cube
12739 Iridas
12740 @item csp
12741 cineSpace
12742 @end table
12743
12744 @item interp
12745 Select interpolation mode.
12746
12747 Available values are:
12748
12749 @table @samp
12750 @item nearest
12751 Use values from the nearest defined point.
12752 @item linear
12753 Interpolate values using the linear interpolation.
12754 @item cosine
12755 Interpolate values using the cosine interpolation.
12756 @item cubic
12757 Interpolate values using the cubic interpolation.
12758 @item spline
12759 Interpolate values using the spline interpolation.
12760 @end table
12761 @end table
12762
12763 @anchor{lut3d}
12764 @section lut3d
12765
12766 Apply a 3D LUT to an input video.
12767
12768 The filter accepts the following options:
12769
12770 @table @option
12771 @item file
12772 Set the 3D LUT file name.
12773
12774 Currently supported formats:
12775 @table @samp
12776 @item 3dl
12777 AfterEffects
12778 @item cube
12779 Iridas
12780 @item dat
12781 DaVinci
12782 @item m3d
12783 Pandora
12784 @item csp
12785 cineSpace
12786 @end table
12787 @item interp
12788 Select interpolation mode.
12789
12790 Available values are:
12791
12792 @table @samp
12793 @item nearest
12794 Use values from the nearest defined point.
12795 @item trilinear
12796 Interpolate values using the 8 points defining a cube.
12797 @item tetrahedral
12798 Interpolate values using a tetrahedron.
12799 @end table
12800 @end table
12801
12802 @section lumakey
12803
12804 Turn certain luma values into transparency.
12805
12806 The filter accepts the following options:
12807
12808 @table @option
12809 @item threshold
12810 Set the luma which will be used as base for transparency.
12811 Default value is @code{0}.
12812
12813 @item tolerance
12814 Set the range of luma values to be keyed out.
12815 Default value is @code{0.01}.
12816
12817 @item softness
12818 Set the range of softness. Default value is @code{0}.
12819 Use this to control gradual transition from zero to full transparency.
12820 @end table
12821
12822 @subsection Commands
12823 This filter supports same @ref{commands} as options.
12824 The command accepts the same syntax of the corresponding option.
12825
12826 If the specified expression is not valid, it is kept at its current
12827 value.
12828
12829 @section lut, lutrgb, lutyuv
12830
12831 Compute a look-up table for binding each pixel component input value
12832 to an output value, and apply it to the input video.
12833
12834 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
12835 to an RGB input video.
12836
12837 These filters accept the following parameters:
12838 @table @option
12839 @item c0
12840 set first pixel component expression
12841 @item c1
12842 set second pixel component expression
12843 @item c2
12844 set third pixel component expression
12845 @item c3
12846 set fourth pixel component expression, corresponds to the alpha component
12847
12848 @item r
12849 set red component expression
12850 @item g
12851 set green component expression
12852 @item b
12853 set blue component expression
12854 @item a
12855 alpha component expression
12856
12857 @item y
12858 set Y/luminance component expression
12859 @item u
12860 set U/Cb component expression
12861 @item v
12862 set V/Cr component expression
12863 @end table
12864
12865 Each of them specifies the expression to use for computing the lookup table for
12866 the corresponding pixel component values.
12867
12868 The exact component associated to each of the @var{c*} options depends on the
12869 format in input.
12870
12871 The @var{lut} filter requires either YUV or RGB pixel formats in input,
12872 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
12873
12874 The expressions can contain the following constants and functions:
12875
12876 @table @option
12877 @item w
12878 @item h
12879 The input width and height.
12880
12881 @item val
12882 The input value for the pixel component.
12883
12884 @item clipval
12885 The input value, clipped to the @var{minval}-@var{maxval} range.
12886
12887 @item maxval
12888 The maximum value for the pixel component.
12889
12890 @item minval
12891 The minimum value for the pixel component.
12892
12893 @item negval
12894 The negated value for the pixel component value, clipped to the
12895 @var{minval}-@var{maxval} range; it corresponds to the expression
12896 "maxval-clipval+minval".
12897
12898 @item clip(val)
12899 The computed value in @var{val}, clipped to the
12900 @var{minval}-@var{maxval} range.
12901
12902 @item gammaval(gamma)
12903 The computed gamma correction value of the pixel component value,
12904 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
12905 expression
12906 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
12907
12908 @end table
12909
12910 All expressions default to "val".
12911
12912 @subsection Examples
12913
12914 @itemize
12915 @item
12916 Negate input video:
12917 @example
12918 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
12919 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
12920 @end example
12921
12922 The above is the same as:
12923 @example
12924 lutrgb="r=negval:g=negval:b=negval"
12925 lutyuv="y=negval:u=negval:v=negval"
12926 @end example
12927
12928 @item
12929 Negate luminance:
12930 @example
12931 lutyuv=y=negval
12932 @end example
12933
12934 @item
12935 Remove chroma components, turning the video into a graytone image:
12936 @example
12937 lutyuv="u=128:v=128"
12938 @end example
12939
12940 @item
12941 Apply a luma burning effect:
12942 @example
12943 lutyuv="y=2*val"
12944 @end example
12945
12946 @item
12947 Remove green and blue components:
12948 @example
12949 lutrgb="g=0:b=0"
12950 @end example
12951
12952 @item
12953 Set a constant alpha channel value on input:
12954 @example
12955 format=rgba,lutrgb=a="maxval-minval/2"
12956 @end example
12957
12958 @item
12959 Correct luminance gamma by a factor of 0.5:
12960 @example
12961 lutyuv=y=gammaval(0.5)
12962 @end example
12963
12964 @item
12965 Discard least significant bits of luma:
12966 @example
12967 lutyuv=y='bitand(val, 128+64+32)'
12968 @end example
12969
12970 @item
12971 Technicolor like effect:
12972 @example
12973 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
12974 @end example
12975 @end itemize
12976
12977 @section lut2, tlut2
12978
12979 The @code{lut2} filter takes two input streams and outputs one
12980 stream.
12981
12982 The @code{tlut2} (time lut2) filter takes two consecutive frames
12983 from one single stream.
12984
12985 This filter accepts the following parameters:
12986 @table @option
12987 @item c0
12988 set first pixel component expression
12989 @item c1
12990 set second pixel component expression
12991 @item c2
12992 set third pixel component expression
12993 @item c3
12994 set fourth pixel component expression, corresponds to the alpha component
12995
12996 @item d
12997 set output bit depth, only available for @code{lut2} filter. By default is 0,
12998 which means bit depth is automatically picked from first input format.
12999 @end table
13000
13001 Each of them specifies the expression to use for computing the lookup table for
13002 the corresponding pixel component values.
13003
13004 The exact component associated to each of the @var{c*} options depends on the
13005 format in inputs.
13006
13007 The expressions can contain the following constants:
13008
13009 @table @option
13010 @item w
13011 @item h
13012 The input width and height.
13013
13014 @item x
13015 The first input value for the pixel component.
13016
13017 @item y
13018 The second input value for the pixel component.
13019
13020 @item bdx
13021 The first input video bit depth.
13022
13023 @item bdy
13024 The second input video bit depth.
13025 @end table
13026
13027 All expressions default to "x".
13028
13029 @subsection Examples
13030
13031 @itemize
13032 @item
13033 Highlight differences between two RGB video streams:
13034 @example
13035 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)'
13036 @end example
13037
13038 @item
13039 Highlight differences between two YUV video streams:
13040 @example
13041 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)'
13042 @end example
13043
13044 @item
13045 Show max difference between two video streams:
13046 @example
13047 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)))'
13048 @end example
13049 @end itemize
13050
13051 @section maskedclamp
13052
13053 Clamp the first input stream with the second input and third input stream.
13054
13055 Returns the value of first stream to be between second input
13056 stream - @code{undershoot} and third input stream + @code{overshoot}.
13057
13058 This filter accepts the following options:
13059 @table @option
13060 @item undershoot
13061 Default value is @code{0}.
13062
13063 @item overshoot
13064 Default value is @code{0}.
13065
13066 @item planes
13067 Set which planes will be processed as bitmap, unprocessed planes will be
13068 copied from first stream.
13069 By default value 0xf, all planes will be processed.
13070 @end table
13071
13072 @section maskedmax
13073
13074 Merge the second and third input stream into output stream using absolute differences
13075 between second input stream and first input stream and absolute difference between
13076 third input stream and first input stream. The picked value will be from second input
13077 stream if second absolute difference is greater than first one or from third input stream
13078 otherwise.
13079
13080 This filter accepts the following options:
13081 @table @option
13082 @item planes
13083 Set which planes will be processed as bitmap, unprocessed planes will be
13084 copied from first stream.
13085 By default value 0xf, all planes will be processed.
13086 @end table
13087
13088 @section maskedmerge
13089
13090 Merge the first input stream with the second input stream using per pixel
13091 weights in the third input stream.
13092
13093 A value of 0 in the third stream pixel component means that pixel component
13094 from first stream is returned unchanged, while maximum value (eg. 255 for
13095 8-bit videos) means that pixel component from second stream is returned
13096 unchanged. Intermediate values define the amount of merging between both
13097 input stream's pixel components.
13098
13099 This filter accepts the following options:
13100 @table @option
13101 @item planes
13102 Set which planes will be processed as bitmap, unprocessed planes will be
13103 copied from first stream.
13104 By default value 0xf, all planes will be processed.
13105 @end table
13106
13107 @section maskedmin
13108
13109 Merge the second and third input stream into output stream using absolute differences
13110 between second input stream and first input stream and absolute difference between
13111 third input stream and first input stream. The picked value will be from second input
13112 stream if second absolute difference is less than first one or from third input stream
13113 otherwise.
13114
13115 This filter accepts the following options:
13116 @table @option
13117 @item planes
13118 Set which planes will be processed as bitmap, unprocessed planes will be
13119 copied from first stream.
13120 By default value 0xf, all planes will be processed.
13121 @end table
13122
13123 @section maskfun
13124 Create mask from input video.
13125
13126 For example it is useful to create motion masks after @code{tblend} filter.
13127
13128 This filter accepts the following options:
13129
13130 @table @option
13131 @item low
13132 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
13133
13134 @item high
13135 Set high threshold. Any pixel component higher than this value will be set to max value
13136 allowed for current pixel format.
13137
13138 @item planes
13139 Set planes to filter, by default all available planes are filtered.
13140
13141 @item fill
13142 Fill all frame pixels with this value.
13143
13144 @item sum
13145 Set max average pixel value for frame. If sum of all pixel components is higher that this
13146 average, output frame will be completely filled with value set by @var{fill} option.
13147 Typically useful for scene changes when used in combination with @code{tblend} filter.
13148 @end table
13149
13150 @section mcdeint
13151
13152 Apply motion-compensation deinterlacing.
13153
13154 It needs one field per frame as input and must thus be used together
13155 with yadif=1/3 or equivalent.
13156
13157 This filter accepts the following options:
13158 @table @option
13159 @item mode
13160 Set the deinterlacing mode.
13161
13162 It accepts one of the following values:
13163 @table @samp
13164 @item fast
13165 @item medium
13166 @item slow
13167 use iterative motion estimation
13168 @item extra_slow
13169 like @samp{slow}, but use multiple reference frames.
13170 @end table
13171 Default value is @samp{fast}.
13172
13173 @item parity
13174 Set the picture field parity assumed for the input video. It must be
13175 one of the following values:
13176
13177 @table @samp
13178 @item 0, tff
13179 assume top field first
13180 @item 1, bff
13181 assume bottom field first
13182 @end table
13183
13184 Default value is @samp{bff}.
13185
13186 @item qp
13187 Set per-block quantization parameter (QP) used by the internal
13188 encoder.
13189
13190 Higher values should result in a smoother motion vector field but less
13191 optimal individual vectors. Default value is 1.
13192 @end table
13193
13194 @section median
13195
13196 Pick median pixel from certain rectangle defined by radius.
13197
13198 This filter accepts the following options:
13199
13200 @table @option
13201 @item radius
13202 Set horizontal radius size. Default value is @code{1}.
13203 Allowed range is integer from 1 to 127.
13204
13205 @item planes
13206 Set which planes to process. Default is @code{15}, which is all available planes.
13207
13208 @item radiusV
13209 Set vertical radius size. Default value is @code{0}.
13210 Allowed range is integer from 0 to 127.
13211 If it is 0, value will be picked from horizontal @code{radius} option.
13212 @end table
13213
13214 @subsection Commands
13215 This filter supports same @ref{commands} as options.
13216 The command accepts the same syntax of the corresponding option.
13217
13218 If the specified expression is not valid, it is kept at its current
13219 value.
13220
13221 @section mergeplanes
13222
13223 Merge color channel components from several video streams.
13224
13225 The filter accepts up to 4 input streams, and merge selected input
13226 planes to the output video.
13227
13228 This filter accepts the following options:
13229 @table @option
13230 @item mapping
13231 Set input to output plane mapping. Default is @code{0}.
13232
13233 The mappings is specified as a bitmap. It should be specified as a
13234 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
13235 mapping for the first plane of the output stream. 'A' sets the number of
13236 the input stream to use (from 0 to 3), and 'a' the plane number of the
13237 corresponding input to use (from 0 to 3). The rest of the mappings is
13238 similar, 'Bb' describes the mapping for the output stream second
13239 plane, 'Cc' describes the mapping for the output stream third plane and
13240 'Dd' describes the mapping for the output stream fourth plane.
13241
13242 @item format
13243 Set output pixel format. Default is @code{yuva444p}.
13244 @end table
13245
13246 @subsection Examples
13247
13248 @itemize
13249 @item
13250 Merge three gray video streams of same width and height into single video stream:
13251 @example
13252 [a0][a1][a2]mergeplanes=0x001020:yuv444p
13253 @end example
13254
13255 @item
13256 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
13257 @example
13258 [a0][a1]mergeplanes=0x00010210:yuva444p
13259 @end example
13260
13261 @item
13262 Swap Y and A plane in yuva444p stream:
13263 @example
13264 format=yuva444p,mergeplanes=0x03010200:yuva444p
13265 @end example
13266
13267 @item
13268 Swap U and V plane in yuv420p stream:
13269 @example
13270 format=yuv420p,mergeplanes=0x000201:yuv420p
13271 @end example
13272
13273 @item
13274 Cast a rgb24 clip to yuv444p:
13275 @example
13276 format=rgb24,mergeplanes=0x000102:yuv444p
13277 @end example
13278 @end itemize
13279
13280 @section mestimate
13281
13282 Estimate and export motion vectors using block matching algorithms.
13283 Motion vectors are stored in frame side data to be used by other filters.
13284
13285 This filter accepts the following options:
13286 @table @option
13287 @item method
13288 Specify the motion estimation method. Accepts one of the following values:
13289
13290 @table @samp
13291 @item esa
13292 Exhaustive search algorithm.
13293 @item tss
13294 Three step search algorithm.
13295 @item tdls
13296 Two dimensional logarithmic search algorithm.
13297 @item ntss
13298 New three step search algorithm.
13299 @item fss
13300 Four step search algorithm.
13301 @item ds
13302 Diamond search algorithm.
13303 @item hexbs
13304 Hexagon-based search algorithm.
13305 @item epzs
13306 Enhanced predictive zonal search algorithm.
13307 @item umh
13308 Uneven multi-hexagon search algorithm.
13309 @end table
13310 Default value is @samp{esa}.
13311
13312 @item mb_size
13313 Macroblock size. Default @code{16}.
13314
13315 @item search_param
13316 Search parameter. Default @code{7}.
13317 @end table
13318
13319 @section midequalizer
13320
13321 Apply Midway Image Equalization effect using two video streams.
13322
13323 Midway Image Equalization adjusts a pair of images to have the same
13324 histogram, while maintaining their dynamics as much as possible. It's
13325 useful for e.g. matching exposures from a pair of stereo cameras.
13326
13327 This filter has two inputs and one output, which must be of same pixel format, but
13328 may be of different sizes. The output of filter is first input adjusted with
13329 midway histogram of both inputs.
13330
13331 This filter accepts the following option:
13332
13333 @table @option
13334 @item planes
13335 Set which planes to process. Default is @code{15}, which is all available planes.
13336 @end table
13337
13338 @section minterpolate
13339
13340 Convert the video to specified frame rate using motion interpolation.
13341
13342 This filter accepts the following options:
13343 @table @option
13344 @item fps
13345 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}.
13346
13347 @item mi_mode
13348 Motion interpolation mode. Following values are accepted:
13349 @table @samp
13350 @item dup
13351 Duplicate previous or next frame for interpolating new ones.
13352 @item blend
13353 Blend source frames. Interpolated frame is mean of previous and next frames.
13354 @item mci
13355 Motion compensated interpolation. Following options are effective when this mode is selected:
13356
13357 @table @samp
13358 @item mc_mode
13359 Motion compensation mode. Following values are accepted:
13360 @table @samp
13361 @item obmc
13362 Overlapped block motion compensation.
13363 @item aobmc
13364 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
13365 @end table
13366 Default mode is @samp{obmc}.
13367
13368 @item me_mode
13369 Motion estimation mode. Following values are accepted:
13370 @table @samp
13371 @item bidir
13372 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
13373 @item bilat
13374 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
13375 @end table
13376 Default mode is @samp{bilat}.
13377
13378 @item me
13379 The algorithm to be used for motion estimation. Following values are accepted:
13380 @table @samp
13381 @item esa
13382 Exhaustive search algorithm.
13383 @item tss
13384 Three step search algorithm.
13385 @item tdls
13386 Two dimensional logarithmic search algorithm.
13387 @item ntss
13388 New three step search algorithm.
13389 @item fss
13390 Four step search algorithm.
13391 @item ds
13392 Diamond search algorithm.
13393 @item hexbs
13394 Hexagon-based search algorithm.
13395 @item epzs
13396 Enhanced predictive zonal search algorithm.
13397 @item umh
13398 Uneven multi-hexagon search algorithm.
13399 @end table
13400 Default algorithm is @samp{epzs}.
13401
13402 @item mb_size
13403 Macroblock size. Default @code{16}.
13404
13405 @item search_param
13406 Motion estimation search parameter. Default @code{32}.
13407
13408 @item vsbmc
13409 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).
13410 @end table
13411 @end table
13412
13413 @item scd
13414 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:
13415 @table @samp
13416 @item none
13417 Disable scene change detection.
13418 @item fdiff
13419 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
13420 @end table
13421 Default method is @samp{fdiff}.
13422
13423 @item scd_threshold
13424 Scene change detection threshold. Default is @code{5.0}.
13425 @end table
13426
13427 @section mix
13428
13429 Mix several video input streams into one video stream.
13430
13431 A description of the accepted options follows.
13432
13433 @table @option
13434 @item nb_inputs
13435 The number of inputs. If unspecified, it defaults to 2.
13436
13437 @item weights
13438 Specify weight of each input video stream as sequence.
13439 Each weight is separated by space. If number of weights
13440 is smaller than number of @var{frames} last specified
13441 weight will be used for all remaining unset weights.
13442
13443 @item scale
13444 Specify scale, if it is set it will be multiplied with sum
13445 of each weight multiplied with pixel values to give final destination
13446 pixel value. By default @var{scale} is auto scaled to sum of weights.
13447
13448 @item duration
13449 Specify how end of stream is determined.
13450 @table @samp
13451 @item longest
13452 The duration of the longest input. (default)
13453
13454 @item shortest
13455 The duration of the shortest input.
13456
13457 @item first
13458 The duration of the first input.
13459 @end table
13460 @end table
13461
13462 @section mpdecimate
13463
13464 Drop frames that do not differ greatly from the previous frame in
13465 order to reduce frame rate.
13466
13467 The main use of this filter is for very-low-bitrate encoding
13468 (e.g. streaming over dialup modem), but it could in theory be used for
13469 fixing movies that were inverse-telecined incorrectly.
13470
13471 A description of the accepted options follows.
13472
13473 @table @option
13474 @item max
13475 Set the maximum number of consecutive frames which can be dropped (if
13476 positive), or the minimum interval between dropped frames (if
13477 negative). If the value is 0, the frame is dropped disregarding the
13478 number of previous sequentially dropped frames.
13479
13480 Default value is 0.
13481
13482 @item hi
13483 @item lo
13484 @item frac
13485 Set the dropping threshold values.
13486
13487 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
13488 represent actual pixel value differences, so a threshold of 64
13489 corresponds to 1 unit of difference for each pixel, or the same spread
13490 out differently over the block.
13491
13492 A frame is a candidate for dropping if no 8x8 blocks differ by more
13493 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
13494 meaning the whole image) differ by more than a threshold of @option{lo}.
13495
13496 Default value for @option{hi} is 64*12, default value for @option{lo} is
13497 64*5, and default value for @option{frac} is 0.33.
13498 @end table
13499
13500
13501 @section negate
13502
13503 Negate (invert) the input video.
13504
13505 It accepts the following option:
13506
13507 @table @option
13508
13509 @item negate_alpha
13510 With value 1, it negates the alpha component, if present. Default value is 0.
13511 @end table
13512
13513 @anchor{nlmeans}
13514 @section nlmeans
13515
13516 Denoise frames using Non-Local Means algorithm.
13517
13518 Each pixel is adjusted by looking for other pixels with similar contexts. This
13519 context similarity is defined by comparing their surrounding patches of size
13520 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
13521 around the pixel.
13522
13523 Note that the research area defines centers for patches, which means some
13524 patches will be made of pixels outside that research area.
13525
13526 The filter accepts the following options.
13527
13528 @table @option
13529 @item s
13530 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
13531
13532 @item p
13533 Set patch size. Default is 7. Must be odd number in range [0, 99].
13534
13535 @item pc
13536 Same as @option{p} but for chroma planes.
13537
13538 The default value is @var{0} and means automatic.
13539
13540 @item r
13541 Set research size. Default is 15. Must be odd number in range [0, 99].
13542
13543 @item rc
13544 Same as @option{r} but for chroma planes.
13545
13546 The default value is @var{0} and means automatic.
13547 @end table
13548
13549 @section nnedi
13550
13551 Deinterlace video using neural network edge directed interpolation.
13552
13553 This filter accepts the following options:
13554
13555 @table @option
13556 @item weights
13557 Mandatory option, without binary file filter can not work.
13558 Currently file can be found here:
13559 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
13560
13561 @item deint
13562 Set which frames to deinterlace, by default it is @code{all}.
13563 Can be @code{all} or @code{interlaced}.
13564
13565 @item field
13566 Set mode of operation.
13567
13568 Can be one of the following:
13569
13570 @table @samp
13571 @item af
13572 Use frame flags, both fields.
13573 @item a
13574 Use frame flags, single field.
13575 @item t
13576 Use top field only.
13577 @item b
13578 Use bottom field only.
13579 @item tf
13580 Use both fields, top first.
13581 @item bf
13582 Use both fields, bottom first.
13583 @end table
13584
13585 @item planes
13586 Set which planes to process, by default filter process all frames.
13587
13588 @item nsize
13589 Set size of local neighborhood around each pixel, used by the predictor neural
13590 network.
13591
13592 Can be one of the following:
13593
13594 @table @samp
13595 @item s8x6
13596 @item s16x6
13597 @item s32x6
13598 @item s48x6
13599 @item s8x4
13600 @item s16x4
13601 @item s32x4
13602 @end table
13603
13604 @item nns
13605 Set the number of neurons in predictor neural network.
13606 Can be one of the following:
13607
13608 @table @samp
13609 @item n16
13610 @item n32
13611 @item n64
13612 @item n128
13613 @item n256
13614 @end table
13615
13616 @item qual
13617 Controls the number of different neural network predictions that are blended
13618 together to compute the final output value. Can be @code{fast}, default or
13619 @code{slow}.
13620
13621 @item etype
13622 Set which set of weights to use in the predictor.
13623 Can be one of the following:
13624
13625 @table @samp
13626 @item a
13627 weights trained to minimize absolute error
13628 @item s
13629 weights trained to minimize squared error
13630 @end table
13631
13632 @item pscrn
13633 Controls whether or not the prescreener neural network is used to decide
13634 which pixels should be processed by the predictor neural network and which
13635 can be handled by simple cubic interpolation.
13636 The prescreener is trained to know whether cubic interpolation will be
13637 sufficient for a pixel or whether it should be predicted by the predictor nn.
13638 The computational complexity of the prescreener nn is much less than that of
13639 the predictor nn. Since most pixels can be handled by cubic interpolation,
13640 using the prescreener generally results in much faster processing.
13641 The prescreener is pretty accurate, so the difference between using it and not
13642 using it is almost always unnoticeable.
13643
13644 Can be one of the following:
13645
13646 @table @samp
13647 @item none
13648 @item original
13649 @item new
13650 @end table
13651
13652 Default is @code{new}.
13653
13654 @item fapprox
13655 Set various debugging flags.
13656 @end table
13657
13658 @section noformat
13659
13660 Force libavfilter not to use any of the specified pixel formats for the
13661 input to the next filter.
13662
13663 It accepts the following parameters:
13664 @table @option
13665
13666 @item pix_fmts
13667 A '|'-separated list of pixel format names, such as
13668 pix_fmts=yuv420p|monow|rgb24".
13669
13670 @end table
13671
13672 @subsection Examples
13673
13674 @itemize
13675 @item
13676 Force libavfilter to use a format different from @var{yuv420p} for the
13677 input to the vflip filter:
13678 @example
13679 noformat=pix_fmts=yuv420p,vflip
13680 @end example
13681
13682 @item
13683 Convert the input video to any of the formats not contained in the list:
13684 @example
13685 noformat=yuv420p|yuv444p|yuv410p
13686 @end example
13687 @end itemize
13688
13689 @section noise
13690
13691 Add noise on video input frame.
13692
13693 The filter accepts the following options:
13694
13695 @table @option
13696 @item all_seed
13697 @item c0_seed
13698 @item c1_seed
13699 @item c2_seed
13700 @item c3_seed
13701 Set noise seed for specific pixel component or all pixel components in case
13702 of @var{all_seed}. Default value is @code{123457}.
13703
13704 @item all_strength, alls
13705 @item c0_strength, c0s
13706 @item c1_strength, c1s
13707 @item c2_strength, c2s
13708 @item c3_strength, c3s
13709 Set noise strength for specific pixel component or all pixel components in case
13710 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
13711
13712 @item all_flags, allf
13713 @item c0_flags, c0f
13714 @item c1_flags, c1f
13715 @item c2_flags, c2f
13716 @item c3_flags, c3f
13717 Set pixel component flags or set flags for all components if @var{all_flags}.
13718 Available values for component flags are:
13719 @table @samp
13720 @item a
13721 averaged temporal noise (smoother)
13722 @item p
13723 mix random noise with a (semi)regular pattern
13724 @item t
13725 temporal noise (noise pattern changes between frames)
13726 @item u
13727 uniform noise (gaussian otherwise)
13728 @end table
13729 @end table
13730
13731 @subsection Examples
13732
13733 Add temporal and uniform noise to input video:
13734 @example
13735 noise=alls=20:allf=t+u
13736 @end example
13737
13738 @section normalize
13739
13740 Normalize RGB video (aka histogram stretching, contrast stretching).
13741 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
13742
13743 For each channel of each frame, the filter computes the input range and maps
13744 it linearly to the user-specified output range. The output range defaults
13745 to the full dynamic range from pure black to pure white.
13746
13747 Temporal smoothing can be used on the input range to reduce flickering (rapid
13748 changes in brightness) caused when small dark or bright objects enter or leave
13749 the scene. This is similar to the auto-exposure (automatic gain control) on a
13750 video camera, and, like a video camera, it may cause a period of over- or
13751 under-exposure of the video.
13752
13753 The R,G,B channels can be normalized independently, which may cause some
13754 color shifting, or linked together as a single channel, which prevents
13755 color shifting. Linked normalization preserves hue. Independent normalization
13756 does not, so it can be used to remove some color casts. Independent and linked
13757 normalization can be combined in any ratio.
13758
13759 The normalize filter accepts the following options:
13760
13761 @table @option
13762 @item blackpt
13763 @item whitept
13764 Colors which define the output range. The minimum input value is mapped to
13765 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
13766 The defaults are black and white respectively. Specifying white for
13767 @var{blackpt} and black for @var{whitept} will give color-inverted,
13768 normalized video. Shades of grey can be used to reduce the dynamic range
13769 (contrast). Specifying saturated colors here can create some interesting
13770 effects.
13771
13772 @item smoothing
13773 The number of previous frames to use for temporal smoothing. The input range
13774 of each channel is smoothed using a rolling average over the current frame
13775 and the @var{smoothing} previous frames. The default is 0 (no temporal
13776 smoothing).
13777
13778 @item independence
13779 Controls the ratio of independent (color shifting) channel normalization to
13780 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
13781 independent. Defaults to 1.0 (fully independent).
13782
13783 @item strength
13784 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
13785 expensive no-op. Defaults to 1.0 (full strength).
13786
13787 @end table
13788
13789 @subsection Commands
13790 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
13791 The command accepts the same syntax of the corresponding option.
13792
13793 If the specified expression is not valid, it is kept at its current
13794 value.
13795
13796 @subsection Examples
13797
13798 Stretch video contrast to use the full dynamic range, with no temporal
13799 smoothing; may flicker depending on the source content:
13800 @example
13801 normalize=blackpt=black:whitept=white:smoothing=0
13802 @end example
13803
13804 As above, but with 50 frames of temporal smoothing; flicker should be
13805 reduced, depending on the source content:
13806 @example
13807 normalize=blackpt=black:whitept=white:smoothing=50
13808 @end example
13809
13810 As above, but with hue-preserving linked channel normalization:
13811 @example
13812 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
13813 @end example
13814
13815 As above, but with half strength:
13816 @example
13817 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
13818 @end example
13819
13820 Map the darkest input color to red, the brightest input color to cyan:
13821 @example
13822 normalize=blackpt=red:whitept=cyan
13823 @end example
13824
13825 @section null
13826
13827 Pass the video source unchanged to the output.
13828
13829 @section ocr
13830 Optical Character Recognition
13831
13832 This filter uses Tesseract for optical character recognition. To enable
13833 compilation of this filter, you need to configure FFmpeg with
13834 @code{--enable-libtesseract}.
13835
13836 It accepts the following options:
13837
13838 @table @option
13839 @item datapath
13840 Set datapath to tesseract data. Default is to use whatever was
13841 set at installation.
13842
13843 @item language
13844 Set language, default is "eng".
13845
13846 @item whitelist
13847 Set character whitelist.
13848
13849 @item blacklist
13850 Set character blacklist.
13851 @end table
13852
13853 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
13854 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
13855
13856 @section ocv
13857
13858 Apply a video transform using libopencv.
13859
13860 To enable this filter, install the libopencv library and headers and
13861 configure FFmpeg with @code{--enable-libopencv}.
13862
13863 It accepts the following parameters:
13864
13865 @table @option
13866
13867 @item filter_name
13868 The name of the libopencv filter to apply.
13869
13870 @item filter_params
13871 The parameters to pass to the libopencv filter. If not specified, the default
13872 values are assumed.
13873
13874 @end table
13875
13876 Refer to the official libopencv documentation for more precise
13877 information:
13878 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
13879
13880 Several libopencv filters are supported; see the following subsections.
13881
13882 @anchor{dilate}
13883 @subsection dilate
13884
13885 Dilate an image by using a specific structuring element.
13886 It corresponds to the libopencv function @code{cvDilate}.
13887
13888 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
13889
13890 @var{struct_el} represents a structuring element, and has the syntax:
13891 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
13892
13893 @var{cols} and @var{rows} represent the number of columns and rows of
13894 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
13895 point, and @var{shape} the shape for the structuring element. @var{shape}
13896 must be "rect", "cross", "ellipse", or "custom".
13897
13898 If the value for @var{shape} is "custom", it must be followed by a
13899 string of the form "=@var{filename}". The file with name
13900 @var{filename} is assumed to represent a binary image, with each
13901 printable character corresponding to a bright pixel. When a custom
13902 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
13903 or columns and rows of the read file are assumed instead.
13904
13905 The default value for @var{struct_el} is "3x3+0x0/rect".
13906
13907 @var{nb_iterations} specifies the number of times the transform is
13908 applied to the image, and defaults to 1.
13909
13910 Some examples:
13911 @example
13912 # Use the default values
13913 ocv=dilate
13914
13915 # Dilate using a structuring element with a 5x5 cross, iterating two times
13916 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
13917
13918 # Read the shape from the file diamond.shape, iterating two times.
13919 # The file diamond.shape may contain a pattern of characters like this
13920 #   *
13921 #  ***
13922 # *****
13923 #  ***
13924 #   *
13925 # The specified columns and rows are ignored
13926 # but the anchor point coordinates are not
13927 ocv=dilate:0x0+2x2/custom=diamond.shape|2
13928 @end example
13929
13930 @subsection erode
13931
13932 Erode an image by using a specific structuring element.
13933 It corresponds to the libopencv function @code{cvErode}.
13934
13935 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
13936 with the same syntax and semantics as the @ref{dilate} filter.
13937
13938 @subsection smooth
13939
13940 Smooth the input video.
13941
13942 The filter takes the following parameters:
13943 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
13944
13945 @var{type} is the type of smooth filter to apply, and must be one of
13946 the following values: "blur", "blur_no_scale", "median", "gaussian",
13947 or "bilateral". The default value is "gaussian".
13948
13949 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
13950 depends on the smooth type. @var{param1} and
13951 @var{param2} accept integer positive values or 0. @var{param3} and
13952 @var{param4} accept floating point values.
13953
13954 The default value for @var{param1} is 3. The default value for the
13955 other parameters is 0.
13956
13957 These parameters correspond to the parameters assigned to the
13958 libopencv function @code{cvSmooth}.
13959
13960 @section oscilloscope
13961
13962 2D Video Oscilloscope.
13963
13964 Useful to measure spatial impulse, step responses, chroma delays, etc.
13965
13966 It accepts the following parameters:
13967
13968 @table @option
13969 @item x
13970 Set scope center x position.
13971
13972 @item y
13973 Set scope center y position.
13974
13975 @item s
13976 Set scope size, relative to frame diagonal.
13977
13978 @item t
13979 Set scope tilt/rotation.
13980
13981 @item o
13982 Set trace opacity.
13983
13984 @item tx
13985 Set trace center x position.
13986
13987 @item ty
13988 Set trace center y position.
13989
13990 @item tw
13991 Set trace width, relative to width of frame.
13992
13993 @item th
13994 Set trace height, relative to height of frame.
13995
13996 @item c
13997 Set which components to trace. By default it traces first three components.
13998
13999 @item g
14000 Draw trace grid. By default is enabled.
14001
14002 @item st
14003 Draw some statistics. By default is enabled.
14004
14005 @item sc
14006 Draw scope. By default is enabled.
14007 @end table
14008
14009 @subsection Commands
14010 This filter supports same @ref{commands} as options.
14011 The command accepts the same syntax of the corresponding option.
14012
14013 If the specified expression is not valid, it is kept at its current
14014 value.
14015
14016 @subsection Examples
14017
14018 @itemize
14019 @item
14020 Inspect full first row of video frame.
14021 @example
14022 oscilloscope=x=0.5:y=0:s=1
14023 @end example
14024
14025 @item
14026 Inspect full last row of video frame.
14027 @example
14028 oscilloscope=x=0.5:y=1:s=1
14029 @end example
14030
14031 @item
14032 Inspect full 5th line of video frame of height 1080.
14033 @example
14034 oscilloscope=x=0.5:y=5/1080:s=1
14035 @end example
14036
14037 @item
14038 Inspect full last column of video frame.
14039 @example
14040 oscilloscope=x=1:y=0.5:s=1:t=1
14041 @end example
14042
14043 @end itemize
14044
14045 @anchor{overlay}
14046 @section overlay
14047
14048 Overlay one video on top of another.
14049
14050 It takes two inputs and has one output. The first input is the "main"
14051 video on which the second input is overlaid.
14052
14053 It accepts the following parameters:
14054
14055 A description of the accepted options follows.
14056
14057 @table @option
14058 @item x
14059 @item y
14060 Set the expression for the x and y coordinates of the overlaid video
14061 on the main video. Default value is "0" for both expressions. In case
14062 the expression is invalid, it is set to a huge value (meaning that the
14063 overlay will not be displayed within the output visible area).
14064
14065 @item eof_action
14066 See @ref{framesync}.
14067
14068 @item eval
14069 Set when the expressions for @option{x}, and @option{y} are evaluated.
14070
14071 It accepts the following values:
14072 @table @samp
14073 @item init
14074 only evaluate expressions once during the filter initialization or
14075 when a command is processed
14076
14077 @item frame
14078 evaluate expressions for each incoming frame
14079 @end table
14080
14081 Default value is @samp{frame}.
14082
14083 @item shortest
14084 See @ref{framesync}.
14085
14086 @item format
14087 Set the format for the output video.
14088
14089 It accepts the following values:
14090 @table @samp
14091 @item yuv420
14092 force YUV420 output
14093
14094 @item yuv422
14095 force YUV422 output
14096
14097 @item yuv444
14098 force YUV444 output
14099
14100 @item rgb
14101 force packed RGB output
14102
14103 @item gbrp
14104 force planar RGB output
14105
14106 @item auto
14107 automatically pick format
14108 @end table
14109
14110 Default value is @samp{yuv420}.
14111
14112 @item repeatlast
14113 See @ref{framesync}.
14114
14115 @item alpha
14116 Set format of alpha of the overlaid video, it can be @var{straight} or
14117 @var{premultiplied}. Default is @var{straight}.
14118 @end table
14119
14120 The @option{x}, and @option{y} expressions can contain the following
14121 parameters.
14122
14123 @table @option
14124 @item main_w, W
14125 @item main_h, H
14126 The main input width and height.
14127
14128 @item overlay_w, w
14129 @item overlay_h, h
14130 The overlay input width and height.
14131
14132 @item x
14133 @item y
14134 The computed values for @var{x} and @var{y}. They are evaluated for
14135 each new frame.
14136
14137 @item hsub
14138 @item vsub
14139 horizontal and vertical chroma subsample values of the output
14140 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
14141 @var{vsub} is 1.
14142
14143 @item n
14144 the number of input frame, starting from 0
14145
14146 @item pos
14147 the position in the file of the input frame, NAN if unknown
14148
14149 @item t
14150 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
14151
14152 @end table
14153
14154 This filter also supports the @ref{framesync} options.
14155
14156 Note that the @var{n}, @var{pos}, @var{t} variables are available only
14157 when evaluation is done @emph{per frame}, and will evaluate to NAN
14158 when @option{eval} is set to @samp{init}.
14159
14160 Be aware that frames are taken from each input video in timestamp
14161 order, hence, if their initial timestamps differ, it is a good idea
14162 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
14163 have them begin in the same zero timestamp, as the example for
14164 the @var{movie} filter does.
14165
14166 You can chain together more overlays but you should test the
14167 efficiency of such approach.
14168
14169 @subsection Commands
14170
14171 This filter supports the following commands:
14172 @table @option
14173 @item x
14174 @item y
14175 Modify the x and y of the overlay input.
14176 The command accepts the same syntax of the corresponding option.
14177
14178 If the specified expression is not valid, it is kept at its current
14179 value.
14180 @end table
14181
14182 @subsection Examples
14183
14184 @itemize
14185 @item
14186 Draw the overlay at 10 pixels from the bottom right corner of the main
14187 video:
14188 @example
14189 overlay=main_w-overlay_w-10:main_h-overlay_h-10
14190 @end example
14191
14192 Using named options the example above becomes:
14193 @example
14194 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
14195 @end example
14196
14197 @item
14198 Insert a transparent PNG logo in the bottom left corner of the input,
14199 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
14200 @example
14201 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
14202 @end example
14203
14204 @item
14205 Insert 2 different transparent PNG logos (second logo on bottom
14206 right corner) using the @command{ffmpeg} tool:
14207 @example
14208 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
14209 @end example
14210
14211 @item
14212 Add a transparent color layer on top of the main video; @code{WxH}
14213 must specify the size of the main input to the overlay filter:
14214 @example
14215 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
14216 @end example
14217
14218 @item
14219 Play an original video and a filtered version (here with the deshake
14220 filter) side by side using the @command{ffplay} tool:
14221 @example
14222 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
14223 @end example
14224
14225 The above command is the same as:
14226 @example
14227 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
14228 @end example
14229
14230 @item
14231 Make a sliding overlay appearing from the left to the right top part of the
14232 screen starting since time 2:
14233 @example
14234 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
14235 @end example
14236
14237 @item
14238 Compose output by putting two input videos side to side:
14239 @example
14240 ffmpeg -i left.avi -i right.avi -filter_complex "
14241 nullsrc=size=200x100 [background];
14242 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
14243 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
14244 [background][left]       overlay=shortest=1       [background+left];
14245 [background+left][right] overlay=shortest=1:x=100 [left+right]
14246 "
14247 @end example
14248
14249 @item
14250 Mask 10-20 seconds of a video by applying the delogo filter to a section
14251 @example
14252 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
14253 -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]'
14254 masked.avi
14255 @end example
14256
14257 @item
14258 Chain several overlays in cascade:
14259 @example
14260 nullsrc=s=200x200 [bg];
14261 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
14262 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
14263 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
14264 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
14265 [in3] null,       [mid2] overlay=100:100 [out0]
14266 @end example
14267
14268 @end itemize
14269
14270 @section owdenoise
14271
14272 Apply Overcomplete Wavelet denoiser.
14273
14274 The filter accepts the following options:
14275
14276 @table @option
14277 @item depth
14278 Set depth.
14279
14280 Larger depth values will denoise lower frequency components more, but
14281 slow down filtering.
14282
14283 Must be an int in the range 8-16, default is @code{8}.
14284
14285 @item luma_strength, ls
14286 Set luma strength.
14287
14288 Must be a double value in the range 0-1000, default is @code{1.0}.
14289
14290 @item chroma_strength, cs
14291 Set chroma strength.
14292
14293 Must be a double value in the range 0-1000, default is @code{1.0}.
14294 @end table
14295
14296 @anchor{pad}
14297 @section pad
14298
14299 Add paddings to the input image, and place the original input at the
14300 provided @var{x}, @var{y} coordinates.
14301
14302 It accepts the following parameters:
14303
14304 @table @option
14305 @item width, w
14306 @item height, h
14307 Specify an expression for the size of the output image with the
14308 paddings added. If the value for @var{width} or @var{height} is 0, the
14309 corresponding input size is used for the output.
14310
14311 The @var{width} expression can reference the value set by the
14312 @var{height} expression, and vice versa.
14313
14314 The default value of @var{width} and @var{height} is 0.
14315
14316 @item x
14317 @item y
14318 Specify the offsets to place the input image at within the padded area,
14319 with respect to the top/left border of the output image.
14320
14321 The @var{x} expression can reference the value set by the @var{y}
14322 expression, and vice versa.
14323
14324 The default value of @var{x} and @var{y} is 0.
14325
14326 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
14327 so the input image is centered on the padded area.
14328
14329 @item color
14330 Specify the color of the padded area. For the syntax of this option,
14331 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
14332 manual,ffmpeg-utils}.
14333
14334 The default value of @var{color} is "black".
14335
14336 @item eval
14337 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
14338
14339 It accepts the following values:
14340
14341 @table @samp
14342 @item init
14343 Only evaluate expressions once during the filter initialization or when
14344 a command is processed.
14345
14346 @item frame
14347 Evaluate expressions for each incoming frame.
14348
14349 @end table
14350
14351 Default value is @samp{init}.
14352
14353 @item aspect
14354 Pad to aspect instead to a resolution.
14355
14356 @end table
14357
14358 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
14359 options are expressions containing the following constants:
14360
14361 @table @option
14362 @item in_w
14363 @item in_h
14364 The input video width and height.
14365
14366 @item iw
14367 @item ih
14368 These are the same as @var{in_w} and @var{in_h}.
14369
14370 @item out_w
14371 @item out_h
14372 The output width and height (the size of the padded area), as
14373 specified by the @var{width} and @var{height} expressions.
14374
14375 @item ow
14376 @item oh
14377 These are the same as @var{out_w} and @var{out_h}.
14378
14379 @item x
14380 @item y
14381 The x and y offsets as specified by the @var{x} and @var{y}
14382 expressions, or NAN if not yet specified.
14383
14384 @item a
14385 same as @var{iw} / @var{ih}
14386
14387 @item sar
14388 input sample aspect ratio
14389
14390 @item dar
14391 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
14392
14393 @item hsub
14394 @item vsub
14395 The horizontal and vertical chroma subsample values. For example for the
14396 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14397 @end table
14398
14399 @subsection Examples
14400
14401 @itemize
14402 @item
14403 Add paddings with the color "violet" to the input video. The output video
14404 size is 640x480, and the top-left corner of the input video is placed at
14405 column 0, row 40
14406 @example
14407 pad=640:480:0:40:violet
14408 @end example
14409
14410 The example above is equivalent to the following command:
14411 @example
14412 pad=width=640:height=480:x=0:y=40:color=violet
14413 @end example
14414
14415 @item
14416 Pad the input to get an output with dimensions increased by 3/2,
14417 and put the input video at the center of the padded area:
14418 @example
14419 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
14420 @end example
14421
14422 @item
14423 Pad the input to get a squared output with size equal to the maximum
14424 value between the input width and height, and put the input video at
14425 the center of the padded area:
14426 @example
14427 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
14428 @end example
14429
14430 @item
14431 Pad the input to get a final w/h ratio of 16:9:
14432 @example
14433 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
14434 @end example
14435
14436 @item
14437 In case of anamorphic video, in order to set the output display aspect
14438 correctly, it is necessary to use @var{sar} in the expression,
14439 according to the relation:
14440 @example
14441 (ih * X / ih) * sar = output_dar
14442 X = output_dar / sar
14443 @end example
14444
14445 Thus the previous example needs to be modified to:
14446 @example
14447 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
14448 @end example
14449
14450 @item
14451 Double the output size and put the input video in the bottom-right
14452 corner of the output padded area:
14453 @example
14454 pad="2*iw:2*ih:ow-iw:oh-ih"
14455 @end example
14456 @end itemize
14457
14458 @anchor{palettegen}
14459 @section palettegen
14460
14461 Generate one palette for a whole video stream.
14462
14463 It accepts the following options:
14464
14465 @table @option
14466 @item max_colors
14467 Set the maximum number of colors to quantize in the palette.
14468 Note: the palette will still contain 256 colors; the unused palette entries
14469 will be black.
14470
14471 @item reserve_transparent
14472 Create a palette of 255 colors maximum and reserve the last one for
14473 transparency. Reserving the transparency color is useful for GIF optimization.
14474 If not set, the maximum of colors in the palette will be 256. You probably want
14475 to disable this option for a standalone image.
14476 Set by default.
14477
14478 @item transparency_color
14479 Set the color that will be used as background for transparency.
14480
14481 @item stats_mode
14482 Set statistics mode.
14483
14484 It accepts the following values:
14485 @table @samp
14486 @item full
14487 Compute full frame histograms.
14488 @item diff
14489 Compute histograms only for the part that differs from previous frame. This
14490 might be relevant to give more importance to the moving part of your input if
14491 the background is static.
14492 @item single
14493 Compute new histogram for each frame.
14494 @end table
14495
14496 Default value is @var{full}.
14497 @end table
14498
14499 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
14500 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
14501 color quantization of the palette. This information is also visible at
14502 @var{info} logging level.
14503
14504 @subsection Examples
14505
14506 @itemize
14507 @item
14508 Generate a representative palette of a given video using @command{ffmpeg}:
14509 @example
14510 ffmpeg -i input.mkv -vf palettegen palette.png
14511 @end example
14512 @end itemize
14513
14514 @section paletteuse
14515
14516 Use a palette to downsample an input video stream.
14517
14518 The filter takes two inputs: one video stream and a palette. The palette must
14519 be a 256 pixels image.
14520
14521 It accepts the following options:
14522
14523 @table @option
14524 @item dither
14525 Select dithering mode. Available algorithms are:
14526 @table @samp
14527 @item bayer
14528 Ordered 8x8 bayer dithering (deterministic)
14529 @item heckbert
14530 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
14531 Note: this dithering is sometimes considered "wrong" and is included as a
14532 reference.
14533 @item floyd_steinberg
14534 Floyd and Steingberg dithering (error diffusion)
14535 @item sierra2
14536 Frankie Sierra dithering v2 (error diffusion)
14537 @item sierra2_4a
14538 Frankie Sierra dithering v2 "Lite" (error diffusion)
14539 @end table
14540
14541 Default is @var{sierra2_4a}.
14542
14543 @item bayer_scale
14544 When @var{bayer} dithering is selected, this option defines the scale of the
14545 pattern (how much the crosshatch pattern is visible). A low value means more
14546 visible pattern for less banding, and higher value means less visible pattern
14547 at the cost of more banding.
14548
14549 The option must be an integer value in the range [0,5]. Default is @var{2}.
14550
14551 @item diff_mode
14552 If set, define the zone to process
14553
14554 @table @samp
14555 @item rectangle
14556 Only the changing rectangle will be reprocessed. This is similar to GIF
14557 cropping/offsetting compression mechanism. This option can be useful for speed
14558 if only a part of the image is changing, and has use cases such as limiting the
14559 scope of the error diffusal @option{dither} to the rectangle that bounds the
14560 moving scene (it leads to more deterministic output if the scene doesn't change
14561 much, and as a result less moving noise and better GIF compression).
14562 @end table
14563
14564 Default is @var{none}.
14565
14566 @item new
14567 Take new palette for each output frame.
14568
14569 @item alpha_threshold
14570 Sets the alpha threshold for transparency. Alpha values above this threshold
14571 will be treated as completely opaque, and values below this threshold will be
14572 treated as completely transparent.
14573
14574 The option must be an integer value in the range [0,255]. Default is @var{128}.
14575 @end table
14576
14577 @subsection Examples
14578
14579 @itemize
14580 @item
14581 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
14582 using @command{ffmpeg}:
14583 @example
14584 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
14585 @end example
14586 @end itemize
14587
14588 @section perspective
14589
14590 Correct perspective of video not recorded perpendicular to the screen.
14591
14592 A description of the accepted parameters follows.
14593
14594 @table @option
14595 @item x0
14596 @item y0
14597 @item x1
14598 @item y1
14599 @item x2
14600 @item y2
14601 @item x3
14602 @item y3
14603 Set coordinates expression for top left, top right, bottom left and bottom right corners.
14604 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
14605 If the @code{sense} option is set to @code{source}, then the specified points will be sent
14606 to the corners of the destination. If the @code{sense} option is set to @code{destination},
14607 then the corners of the source will be sent to the specified coordinates.
14608
14609 The expressions can use the following variables:
14610
14611 @table @option
14612 @item W
14613 @item H
14614 the width and height of video frame.
14615 @item in
14616 Input frame count.
14617 @item on
14618 Output frame count.
14619 @end table
14620
14621 @item interpolation
14622 Set interpolation for perspective correction.
14623
14624 It accepts the following values:
14625 @table @samp
14626 @item linear
14627 @item cubic
14628 @end table
14629
14630 Default value is @samp{linear}.
14631
14632 @item sense
14633 Set interpretation of coordinate options.
14634
14635 It accepts the following values:
14636 @table @samp
14637 @item 0, source
14638
14639 Send point in the source specified by the given coordinates to
14640 the corners of the destination.
14641
14642 @item 1, destination
14643
14644 Send the corners of the source to the point in the destination specified
14645 by the given coordinates.
14646
14647 Default value is @samp{source}.
14648 @end table
14649
14650 @item eval
14651 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
14652
14653 It accepts the following values:
14654 @table @samp
14655 @item init
14656 only evaluate expressions once during the filter initialization or
14657 when a command is processed
14658
14659 @item frame
14660 evaluate expressions for each incoming frame
14661 @end table
14662
14663 Default value is @samp{init}.
14664 @end table
14665
14666 @section phase
14667
14668 Delay interlaced video by one field time so that the field order changes.
14669
14670 The intended use is to fix PAL movies that have been captured with the
14671 opposite field order to the film-to-video transfer.
14672
14673 A description of the accepted parameters follows.
14674
14675 @table @option
14676 @item mode
14677 Set phase mode.
14678
14679 It accepts the following values:
14680 @table @samp
14681 @item t
14682 Capture field order top-first, transfer bottom-first.
14683 Filter will delay the bottom field.
14684
14685 @item b
14686 Capture field order bottom-first, transfer top-first.
14687 Filter will delay the top field.
14688
14689 @item p
14690 Capture and transfer with the same field order. This mode only exists
14691 for the documentation of the other options to refer to, but if you
14692 actually select it, the filter will faithfully do nothing.
14693
14694 @item a
14695 Capture field order determined automatically by field flags, transfer
14696 opposite.
14697 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
14698 basis using field flags. If no field information is available,
14699 then this works just like @samp{u}.
14700
14701 @item u
14702 Capture unknown or varying, transfer opposite.
14703 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
14704 analyzing the images and selecting the alternative that produces best
14705 match between the fields.
14706
14707 @item T
14708 Capture top-first, transfer unknown or varying.
14709 Filter selects among @samp{t} and @samp{p} using image analysis.
14710
14711 @item B
14712 Capture bottom-first, transfer unknown or varying.
14713 Filter selects among @samp{b} and @samp{p} using image analysis.
14714
14715 @item A
14716 Capture determined by field flags, transfer unknown or varying.
14717 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
14718 image analysis. If no field information is available, then this works just
14719 like @samp{U}. This is the default mode.
14720
14721 @item U
14722 Both capture and transfer unknown or varying.
14723 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
14724 @end table
14725 @end table
14726
14727 @section photosensitivity
14728 Reduce various flashes in video, so to help users with epilepsy.
14729
14730 It accepts the following options:
14731 @table @option
14732 @item frames, f
14733 Set how many frames to use when filtering. Default is 30.
14734
14735 @item threshold, t
14736 Set detection threshold factor. Default is 1.
14737 Lower is stricter.
14738
14739 @item skip
14740 Set how many pixels to skip when sampling frames. Default is 1.
14741 Allowed range is from 1 to 1024.
14742
14743 @item bypass
14744 Leave frames unchanged. Default is disabled.
14745 @end table
14746
14747 @section pixdesctest
14748
14749 Pixel format descriptor test filter, mainly useful for internal
14750 testing. The output video should be equal to the input video.
14751
14752 For example:
14753 @example
14754 format=monow, pixdesctest
14755 @end example
14756
14757 can be used to test the monowhite pixel format descriptor definition.
14758
14759 @section pixscope
14760
14761 Display sample values of color channels. Mainly useful for checking color
14762 and levels. Minimum supported resolution is 640x480.
14763
14764 The filters accept the following options:
14765
14766 @table @option
14767 @item x
14768 Set scope X position, relative offset on X axis.
14769
14770 @item y
14771 Set scope Y position, relative offset on Y axis.
14772
14773 @item w
14774 Set scope width.
14775
14776 @item h
14777 Set scope height.
14778
14779 @item o
14780 Set window opacity. This window also holds statistics about pixel area.
14781
14782 @item wx
14783 Set window X position, relative offset on X axis.
14784
14785 @item wy
14786 Set window Y position, relative offset on Y axis.
14787 @end table
14788
14789 @section pp
14790
14791 Enable the specified chain of postprocessing subfilters using libpostproc. This
14792 library should be automatically selected with a GPL build (@code{--enable-gpl}).
14793 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
14794 Each subfilter and some options have a short and a long name that can be used
14795 interchangeably, i.e. dr/dering are the same.
14796
14797 The filters accept the following options:
14798
14799 @table @option
14800 @item subfilters
14801 Set postprocessing subfilters string.
14802 @end table
14803
14804 All subfilters share common options to determine their scope:
14805
14806 @table @option
14807 @item a/autoq
14808 Honor the quality commands for this subfilter.
14809
14810 @item c/chrom
14811 Do chrominance filtering, too (default).
14812
14813 @item y/nochrom
14814 Do luminance filtering only (no chrominance).
14815
14816 @item n/noluma
14817 Do chrominance filtering only (no luminance).
14818 @end table
14819
14820 These options can be appended after the subfilter name, separated by a '|'.
14821
14822 Available subfilters are:
14823
14824 @table @option
14825 @item hb/hdeblock[|difference[|flatness]]
14826 Horizontal deblocking filter
14827 @table @option
14828 @item difference
14829 Difference factor where higher values mean more deblocking (default: @code{32}).
14830 @item flatness
14831 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14832 @end table
14833
14834 @item vb/vdeblock[|difference[|flatness]]
14835 Vertical deblocking filter
14836 @table @option
14837 @item difference
14838 Difference factor where higher values mean more deblocking (default: @code{32}).
14839 @item flatness
14840 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14841 @end table
14842
14843 @item ha/hadeblock[|difference[|flatness]]
14844 Accurate horizontal deblocking filter
14845 @table @option
14846 @item difference
14847 Difference factor where higher values mean more deblocking (default: @code{32}).
14848 @item flatness
14849 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14850 @end table
14851
14852 @item va/vadeblock[|difference[|flatness]]
14853 Accurate vertical deblocking filter
14854 @table @option
14855 @item difference
14856 Difference factor where higher values mean more deblocking (default: @code{32}).
14857 @item flatness
14858 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14859 @end table
14860 @end table
14861
14862 The horizontal and vertical deblocking filters share the difference and
14863 flatness values so you cannot set different horizontal and vertical
14864 thresholds.
14865
14866 @table @option
14867 @item h1/x1hdeblock
14868 Experimental horizontal deblocking filter
14869
14870 @item v1/x1vdeblock
14871 Experimental vertical deblocking filter
14872
14873 @item dr/dering
14874 Deringing filter
14875
14876 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
14877 @table @option
14878 @item threshold1
14879 larger -> stronger filtering
14880 @item threshold2
14881 larger -> stronger filtering
14882 @item threshold3
14883 larger -> stronger filtering
14884 @end table
14885
14886 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
14887 @table @option
14888 @item f/fullyrange
14889 Stretch luminance to @code{0-255}.
14890 @end table
14891
14892 @item lb/linblenddeint
14893 Linear blend deinterlacing filter that deinterlaces the given block by
14894 filtering all lines with a @code{(1 2 1)} filter.
14895
14896 @item li/linipoldeint
14897 Linear interpolating deinterlacing filter that deinterlaces the given block by
14898 linearly interpolating every second line.
14899
14900 @item ci/cubicipoldeint
14901 Cubic interpolating deinterlacing filter deinterlaces the given block by
14902 cubically interpolating every second line.
14903
14904 @item md/mediandeint
14905 Median deinterlacing filter that deinterlaces the given block by applying a
14906 median filter to every second line.
14907
14908 @item fd/ffmpegdeint
14909 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
14910 second line with a @code{(-1 4 2 4 -1)} filter.
14911
14912 @item l5/lowpass5
14913 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
14914 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
14915
14916 @item fq/forceQuant[|quantizer]
14917 Overrides the quantizer table from the input with the constant quantizer you
14918 specify.
14919 @table @option
14920 @item quantizer
14921 Quantizer to use
14922 @end table
14923
14924 @item de/default
14925 Default pp filter combination (@code{hb|a,vb|a,dr|a})
14926
14927 @item fa/fast
14928 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
14929
14930 @item ac
14931 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
14932 @end table
14933
14934 @subsection Examples
14935
14936 @itemize
14937 @item
14938 Apply horizontal and vertical deblocking, deringing and automatic
14939 brightness/contrast:
14940 @example
14941 pp=hb/vb/dr/al
14942 @end example
14943
14944 @item
14945 Apply default filters without brightness/contrast correction:
14946 @example
14947 pp=de/-al
14948 @end example
14949
14950 @item
14951 Apply default filters and temporal denoiser:
14952 @example
14953 pp=default/tmpnoise|1|2|3
14954 @end example
14955
14956 @item
14957 Apply deblocking on luminance only, and switch vertical deblocking on or off
14958 automatically depending on available CPU time:
14959 @example
14960 pp=hb|y/vb|a
14961 @end example
14962 @end itemize
14963
14964 @section pp7
14965 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
14966 similar to spp = 6 with 7 point DCT, where only the center sample is
14967 used after IDCT.
14968
14969 The filter accepts the following options:
14970
14971 @table @option
14972 @item qp
14973 Force a constant quantization parameter. It accepts an integer in range
14974 0 to 63. If not set, the filter will use the QP from the video stream
14975 (if available).
14976
14977 @item mode
14978 Set thresholding mode. Available modes are:
14979
14980 @table @samp
14981 @item hard
14982 Set hard thresholding.
14983 @item soft
14984 Set soft thresholding (better de-ringing effect, but likely blurrier).
14985 @item medium
14986 Set medium thresholding (good results, default).
14987 @end table
14988 @end table
14989
14990 @section premultiply
14991 Apply alpha premultiply effect to input video stream using first plane
14992 of second stream as alpha.
14993
14994 Both streams must have same dimensions and same pixel format.
14995
14996 The filter accepts the following option:
14997
14998 @table @option
14999 @item planes
15000 Set which planes will be processed, unprocessed planes will be copied.
15001 By default value 0xf, all planes will be processed.
15002
15003 @item inplace
15004 Do not require 2nd input for processing, instead use alpha plane from input stream.
15005 @end table
15006
15007 @section prewitt
15008 Apply prewitt operator to input video stream.
15009
15010 The filter accepts the following option:
15011
15012 @table @option
15013 @item planes
15014 Set which planes will be processed, unprocessed planes will be copied.
15015 By default value 0xf, all planes will be processed.
15016
15017 @item scale
15018 Set value which will be multiplied with filtered result.
15019
15020 @item delta
15021 Set value which will be added to filtered result.
15022 @end table
15023
15024 @anchor{program_opencl}
15025 @section program_opencl
15026
15027 Filter video using an OpenCL program.
15028
15029 @table @option
15030
15031 @item source
15032 OpenCL program source file.
15033
15034 @item kernel
15035 Kernel name in program.
15036
15037 @item inputs
15038 Number of inputs to the filter.  Defaults to 1.
15039
15040 @item size, s
15041 Size of output frames.  Defaults to the same as the first input.
15042
15043 @end table
15044
15045 The program source file must contain a kernel function with the given name,
15046 which will be run once for each plane of the output.  Each run on a plane
15047 gets enqueued as a separate 2D global NDRange with one work-item for each
15048 pixel to be generated.  The global ID offset for each work-item is therefore
15049 the coordinates of a pixel in the destination image.
15050
15051 The kernel function needs to take the following arguments:
15052 @itemize
15053 @item
15054 Destination image, @var{__write_only image2d_t}.
15055
15056 This image will become the output; the kernel should write all of it.
15057 @item
15058 Frame index, @var{unsigned int}.
15059
15060 This is a counter starting from zero and increasing by one for each frame.
15061 @item
15062 Source images, @var{__read_only image2d_t}.
15063
15064 These are the most recent images on each input.  The kernel may read from
15065 them to generate the output, but they can't be written to.
15066 @end itemize
15067
15068 Example programs:
15069
15070 @itemize
15071 @item
15072 Copy the input to the output (output must be the same size as the input).
15073 @verbatim
15074 __kernel void copy(__write_only image2d_t destination,
15075                    unsigned int index,
15076                    __read_only  image2d_t source)
15077 {
15078     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
15079
15080     int2 location = (int2)(get_global_id(0), get_global_id(1));
15081
15082     float4 value = read_imagef(source, sampler, location);
15083
15084     write_imagef(destination, location, value);
15085 }
15086 @end verbatim
15087
15088 @item
15089 Apply a simple transformation, rotating the input by an amount increasing
15090 with the index counter.  Pixel values are linearly interpolated by the
15091 sampler, and the output need not have the same dimensions as the input.
15092 @verbatim
15093 __kernel void rotate_image(__write_only image2d_t dst,
15094                            unsigned int index,
15095                            __read_only  image2d_t src)
15096 {
15097     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
15098                                CLK_FILTER_LINEAR);
15099
15100     float angle = (float)index / 100.0f;
15101
15102     float2 dst_dim = convert_float2(get_image_dim(dst));
15103     float2 src_dim = convert_float2(get_image_dim(src));
15104
15105     float2 dst_cen = dst_dim / 2.0f;
15106     float2 src_cen = src_dim / 2.0f;
15107
15108     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
15109
15110     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
15111     float2 src_pos = {
15112         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
15113         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
15114     };
15115     src_pos = src_pos * src_dim / dst_dim;
15116
15117     float2 src_loc = src_pos + src_cen;
15118
15119     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
15120         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
15121         write_imagef(dst, dst_loc, 0.5f);
15122     else
15123         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
15124 }
15125 @end verbatim
15126
15127 @item
15128 Blend two inputs together, with the amount of each input used varying
15129 with the index counter.
15130 @verbatim
15131 __kernel void blend_images(__write_only image2d_t dst,
15132                            unsigned int index,
15133                            __read_only  image2d_t src1,
15134                            __read_only  image2d_t src2)
15135 {
15136     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
15137                                CLK_FILTER_LINEAR);
15138
15139     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
15140
15141     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
15142     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
15143     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
15144
15145     float4 val1 = read_imagef(src1, sampler, src1_loc);
15146     float4 val2 = read_imagef(src2, sampler, src2_loc);
15147
15148     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
15149 }
15150 @end verbatim
15151
15152 @end itemize
15153
15154 @section pseudocolor
15155
15156 Alter frame colors in video with pseudocolors.
15157
15158 This filter accepts the following options:
15159
15160 @table @option
15161 @item c0
15162 set pixel first component expression
15163
15164 @item c1
15165 set pixel second component expression
15166
15167 @item c2
15168 set pixel third component expression
15169
15170 @item c3
15171 set pixel fourth component expression, corresponds to the alpha component
15172
15173 @item i
15174 set component to use as base for altering colors
15175 @end table
15176
15177 Each of them specifies the expression to use for computing the lookup table for
15178 the corresponding pixel component values.
15179
15180 The expressions can contain the following constants and functions:
15181
15182 @table @option
15183 @item w
15184 @item h
15185 The input width and height.
15186
15187 @item val
15188 The input value for the pixel component.
15189
15190 @item ymin, umin, vmin, amin
15191 The minimum allowed component value.
15192
15193 @item ymax, umax, vmax, amax
15194 The maximum allowed component value.
15195 @end table
15196
15197 All expressions default to "val".
15198
15199 @subsection Examples
15200
15201 @itemize
15202 @item
15203 Change too high luma values to gradient:
15204 @example
15205 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'"
15206 @end example
15207 @end itemize
15208
15209 @section psnr
15210
15211 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
15212 Ratio) between two input videos.
15213
15214 This filter takes in input two input videos, the first input is
15215 considered the "main" source and is passed unchanged to the
15216 output. The second input is used as a "reference" video for computing
15217 the PSNR.
15218
15219 Both video inputs must have the same resolution and pixel format for
15220 this filter to work correctly. Also it assumes that both inputs
15221 have the same number of frames, which are compared one by one.
15222
15223 The obtained average PSNR is printed through the logging system.
15224
15225 The filter stores the accumulated MSE (mean squared error) of each
15226 frame, and at the end of the processing it is averaged across all frames
15227 equally, and the following formula is applied to obtain the PSNR:
15228
15229 @example
15230 PSNR = 10*log10(MAX^2/MSE)
15231 @end example
15232
15233 Where MAX is the average of the maximum values of each component of the
15234 image.
15235
15236 The description of the accepted parameters follows.
15237
15238 @table @option
15239 @item stats_file, f
15240 If specified the filter will use the named file to save the PSNR of
15241 each individual frame. When filename equals "-" the data is sent to
15242 standard output.
15243
15244 @item stats_version
15245 Specifies which version of the stats file format to use. Details of
15246 each format are written below.
15247 Default value is 1.
15248
15249 @item stats_add_max
15250 Determines whether the max value is output to the stats log.
15251 Default value is 0.
15252 Requires stats_version >= 2. If this is set and stats_version < 2,
15253 the filter will return an error.
15254 @end table
15255
15256 This filter also supports the @ref{framesync} options.
15257
15258 The file printed if @var{stats_file} is selected, contains a sequence of
15259 key/value pairs of the form @var{key}:@var{value} for each compared
15260 couple of frames.
15261
15262 If a @var{stats_version} greater than 1 is specified, a header line precedes
15263 the list of per-frame-pair stats, with key value pairs following the frame
15264 format with the following parameters:
15265
15266 @table @option
15267 @item psnr_log_version
15268 The version of the log file format. Will match @var{stats_version}.
15269
15270 @item fields
15271 A comma separated list of the per-frame-pair parameters included in
15272 the log.
15273 @end table
15274
15275 A description of each shown per-frame-pair parameter follows:
15276
15277 @table @option
15278 @item n
15279 sequential number of the input frame, starting from 1
15280
15281 @item mse_avg
15282 Mean Square Error pixel-by-pixel average difference of the compared
15283 frames, averaged over all the image components.
15284
15285 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
15286 Mean Square Error pixel-by-pixel average difference of the compared
15287 frames for the component specified by the suffix.
15288
15289 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
15290 Peak Signal to Noise ratio of the compared frames for the component
15291 specified by the suffix.
15292
15293 @item max_avg, max_y, max_u, max_v
15294 Maximum allowed value for each channel, and average over all
15295 channels.
15296 @end table
15297
15298 @subsection Examples
15299 @itemize
15300 @item
15301 For example:
15302 @example
15303 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
15304 [main][ref] psnr="stats_file=stats.log" [out]
15305 @end example
15306
15307 On this example the input file being processed is compared with the
15308 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
15309 is stored in @file{stats.log}.
15310
15311 @item
15312 Another example with different containers:
15313 @example
15314 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 -
15315 @end example
15316 @end itemize
15317
15318 @anchor{pullup}
15319 @section pullup
15320
15321 Pulldown reversal (inverse telecine) filter, capable of handling mixed
15322 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
15323 content.
15324
15325 The pullup filter is designed to take advantage of future context in making
15326 its decisions. This filter is stateless in the sense that it does not lock
15327 onto a pattern to follow, but it instead looks forward to the following
15328 fields in order to identify matches and rebuild progressive frames.
15329
15330 To produce content with an even framerate, insert the fps filter after
15331 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
15332 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
15333
15334 The filter accepts the following options:
15335
15336 @table @option
15337 @item jl
15338 @item jr
15339 @item jt
15340 @item jb
15341 These options set the amount of "junk" to ignore at the left, right, top, and
15342 bottom of the image, respectively. Left and right are in units of 8 pixels,
15343 while top and bottom are in units of 2 lines.
15344 The default is 8 pixels on each side.
15345
15346 @item sb
15347 Set the strict breaks. Setting this option to 1 will reduce the chances of
15348 filter generating an occasional mismatched frame, but it may also cause an
15349 excessive number of frames to be dropped during high motion sequences.
15350 Conversely, setting it to -1 will make filter match fields more easily.
15351 This may help processing of video where there is slight blurring between
15352 the fields, but may also cause there to be interlaced frames in the output.
15353 Default value is @code{0}.
15354
15355 @item mp
15356 Set the metric plane to use. It accepts the following values:
15357 @table @samp
15358 @item l
15359 Use luma plane.
15360
15361 @item u
15362 Use chroma blue plane.
15363
15364 @item v
15365 Use chroma red plane.
15366 @end table
15367
15368 This option may be set to use chroma plane instead of the default luma plane
15369 for doing filter's computations. This may improve accuracy on very clean
15370 source material, but more likely will decrease accuracy, especially if there
15371 is chroma noise (rainbow effect) or any grayscale video.
15372 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
15373 load and make pullup usable in realtime on slow machines.
15374 @end table
15375
15376 For best results (without duplicated frames in the output file) it is
15377 necessary to change the output frame rate. For example, to inverse
15378 telecine NTSC input:
15379 @example
15380 ffmpeg -i input -vf pullup -r 24000/1001 ...
15381 @end example
15382
15383 @section qp
15384
15385 Change video quantization parameters (QP).
15386
15387 The filter accepts the following option:
15388
15389 @table @option
15390 @item qp
15391 Set expression for quantization parameter.
15392 @end table
15393
15394 The expression is evaluated through the eval API and can contain, among others,
15395 the following constants:
15396
15397 @table @var
15398 @item known
15399 1 if index is not 129, 0 otherwise.
15400
15401 @item qp
15402 Sequential index starting from -129 to 128.
15403 @end table
15404
15405 @subsection Examples
15406
15407 @itemize
15408 @item
15409 Some equation like:
15410 @example
15411 qp=2+2*sin(PI*qp)
15412 @end example
15413 @end itemize
15414
15415 @section random
15416
15417 Flush video frames from internal cache of frames into a random order.
15418 No frame is discarded.
15419 Inspired by @ref{frei0r} nervous filter.
15420
15421 @table @option
15422 @item frames
15423 Set size in number of frames of internal cache, in range from @code{2} to
15424 @code{512}. Default is @code{30}.
15425
15426 @item seed
15427 Set seed for random number generator, must be an integer included between
15428 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15429 less than @code{0}, the filter will try to use a good random seed on a
15430 best effort basis.
15431 @end table
15432
15433 @section readeia608
15434
15435 Read closed captioning (EIA-608) information from the top lines of a video frame.
15436
15437 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
15438 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
15439 with EIA-608 data (starting from 0). A description of each metadata value follows:
15440
15441 @table @option
15442 @item lavfi.readeia608.X.cc
15443 The two bytes stored as EIA-608 data (printed in hexadecimal).
15444
15445 @item lavfi.readeia608.X.line
15446 The number of the line on which the EIA-608 data was identified and read.
15447 @end table
15448
15449 This filter accepts the following options:
15450
15451 @table @option
15452 @item scan_min
15453 Set the line to start scanning for EIA-608 data. Default is @code{0}.
15454
15455 @item scan_max
15456 Set the line to end scanning for EIA-608 data. Default is @code{29}.
15457
15458 @item spw
15459 Set the ratio of width reserved for sync code detection.
15460 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
15461
15462 @item chp
15463 Enable checking the parity bit. In the event of a parity error, the filter will output
15464 @code{0x00} for that character. Default is false.
15465
15466 @item lp
15467 Lowpass lines prior to further processing. Default is enabled.
15468 @end table
15469
15470 @subsection Examples
15471
15472 @itemize
15473 @item
15474 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
15475 @example
15476 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
15477 @end example
15478 @end itemize
15479
15480 @section readvitc
15481
15482 Read vertical interval timecode (VITC) information from the top lines of a
15483 video frame.
15484
15485 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
15486 timecode value, if a valid timecode has been detected. Further metadata key
15487 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
15488 timecode data has been found or not.
15489
15490 This filter accepts the following options:
15491
15492 @table @option
15493 @item scan_max
15494 Set the maximum number of lines to scan for VITC data. If the value is set to
15495 @code{-1} the full video frame is scanned. Default is @code{45}.
15496
15497 @item thr_b
15498 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
15499 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
15500
15501 @item thr_w
15502 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
15503 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
15504 @end table
15505
15506 @subsection Examples
15507
15508 @itemize
15509 @item
15510 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
15511 draw @code{--:--:--:--} as a placeholder:
15512 @example
15513 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
15514 @end example
15515 @end itemize
15516
15517 @section remap
15518
15519 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
15520
15521 Destination pixel at position (X, Y) will be picked from source (x, y) position
15522 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
15523 value for pixel will be used for destination pixel.
15524
15525 Xmap and Ymap input video streams must be of same dimensions. Output video stream
15526 will have Xmap/Ymap video stream dimensions.
15527 Xmap and Ymap input video streams are 16bit depth, single channel.
15528
15529 @table @option
15530 @item format
15531 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
15532 Default is @code{color}.
15533 @end table
15534
15535 @section removegrain
15536
15537 The removegrain filter is a spatial denoiser for progressive video.
15538
15539 @table @option
15540 @item m0
15541 Set mode for the first plane.
15542
15543 @item m1
15544 Set mode for the second plane.
15545
15546 @item m2
15547 Set mode for the third plane.
15548
15549 @item m3
15550 Set mode for the fourth plane.
15551 @end table
15552
15553 Range of mode is from 0 to 24. Description of each mode follows:
15554
15555 @table @var
15556 @item 0
15557 Leave input plane unchanged. Default.
15558
15559 @item 1
15560 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
15561
15562 @item 2
15563 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
15564
15565 @item 3
15566 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
15567
15568 @item 4
15569 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
15570 This is equivalent to a median filter.
15571
15572 @item 5
15573 Line-sensitive clipping giving the minimal change.
15574
15575 @item 6
15576 Line-sensitive clipping, intermediate.
15577
15578 @item 7
15579 Line-sensitive clipping, intermediate.
15580
15581 @item 8
15582 Line-sensitive clipping, intermediate.
15583
15584 @item 9
15585 Line-sensitive clipping on a line where the neighbours pixels are the closest.
15586
15587 @item 10
15588 Replaces the target pixel with the closest neighbour.
15589
15590 @item 11
15591 [1 2 1] horizontal and vertical kernel blur.
15592
15593 @item 12
15594 Same as mode 11.
15595
15596 @item 13
15597 Bob mode, interpolates top field from the line where the neighbours
15598 pixels are the closest.
15599
15600 @item 14
15601 Bob mode, interpolates bottom field from the line where the neighbours
15602 pixels are the closest.
15603
15604 @item 15
15605 Bob mode, interpolates top field. Same as 13 but with a more complicated
15606 interpolation formula.
15607
15608 @item 16
15609 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
15610 interpolation formula.
15611
15612 @item 17
15613 Clips the pixel with the minimum and maximum of respectively the maximum and
15614 minimum of each pair of opposite neighbour pixels.
15615
15616 @item 18
15617 Line-sensitive clipping using opposite neighbours whose greatest distance from
15618 the current pixel is minimal.
15619
15620 @item 19
15621 Replaces the pixel with the average of its 8 neighbours.
15622
15623 @item 20
15624 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
15625
15626 @item 21
15627 Clips pixels using the averages of opposite neighbour.
15628
15629 @item 22
15630 Same as mode 21 but simpler and faster.
15631
15632 @item 23
15633 Small edge and halo removal, but reputed useless.
15634
15635 @item 24
15636 Similar as 23.
15637 @end table
15638
15639 @section removelogo
15640
15641 Suppress a TV station logo, using an image file to determine which
15642 pixels comprise the logo. It works by filling in the pixels that
15643 comprise the logo with neighboring pixels.
15644
15645 The filter accepts the following options:
15646
15647 @table @option
15648 @item filename, f
15649 Set the filter bitmap file, which can be any image format supported by
15650 libavformat. The width and height of the image file must match those of the
15651 video stream being processed.
15652 @end table
15653
15654 Pixels in the provided bitmap image with a value of zero are not
15655 considered part of the logo, non-zero pixels are considered part of
15656 the logo. If you use white (255) for the logo and black (0) for the
15657 rest, you will be safe. For making the filter bitmap, it is
15658 recommended to take a screen capture of a black frame with the logo
15659 visible, and then using a threshold filter followed by the erode
15660 filter once or twice.
15661
15662 If needed, little splotches can be fixed manually. Remember that if
15663 logo pixels are not covered, the filter quality will be much
15664 reduced. Marking too many pixels as part of the logo does not hurt as
15665 much, but it will increase the amount of blurring needed to cover over
15666 the image and will destroy more information than necessary, and extra
15667 pixels will slow things down on a large logo.
15668
15669 @section repeatfields
15670
15671 This filter uses the repeat_field flag from the Video ES headers and hard repeats
15672 fields based on its value.
15673
15674 @section reverse
15675
15676 Reverse a video clip.
15677
15678 Warning: This filter requires memory to buffer the entire clip, so trimming
15679 is suggested.
15680
15681 @subsection Examples
15682
15683 @itemize
15684 @item
15685 Take the first 5 seconds of a clip, and reverse it.
15686 @example
15687 trim=end=5,reverse
15688 @end example
15689 @end itemize
15690
15691 @section rgbashift
15692 Shift R/G/B/A pixels horizontally and/or vertically.
15693
15694 The filter accepts the following options:
15695 @table @option
15696 @item rh
15697 Set amount to shift red horizontally.
15698 @item rv
15699 Set amount to shift red vertically.
15700 @item gh
15701 Set amount to shift green horizontally.
15702 @item gv
15703 Set amount to shift green vertically.
15704 @item bh
15705 Set amount to shift blue horizontally.
15706 @item bv
15707 Set amount to shift blue vertically.
15708 @item ah
15709 Set amount to shift alpha horizontally.
15710 @item av
15711 Set amount to shift alpha vertically.
15712 @item edge
15713 Set edge mode, can be @var{smear}, default, or @var{warp}.
15714 @end table
15715
15716 @subsection Commands
15717
15718 This filter supports the all above options as @ref{commands}.
15719
15720 @section roberts
15721 Apply roberts cross operator to input video stream.
15722
15723 The filter accepts the following option:
15724
15725 @table @option
15726 @item planes
15727 Set which planes will be processed, unprocessed planes will be copied.
15728 By default value 0xf, all planes will be processed.
15729
15730 @item scale
15731 Set value which will be multiplied with filtered result.
15732
15733 @item delta
15734 Set value which will be added to filtered result.
15735 @end table
15736
15737 @section rotate
15738
15739 Rotate video by an arbitrary angle expressed in radians.
15740
15741 The filter accepts the following options:
15742
15743 A description of the optional parameters follows.
15744 @table @option
15745 @item angle, a
15746 Set an expression for the angle by which to rotate the input video
15747 clockwise, expressed as a number of radians. A negative value will
15748 result in a counter-clockwise rotation. By default it is set to "0".
15749
15750 This expression is evaluated for each frame.
15751
15752 @item out_w, ow
15753 Set the output width expression, default value is "iw".
15754 This expression is evaluated just once during configuration.
15755
15756 @item out_h, oh
15757 Set the output height expression, default value is "ih".
15758 This expression is evaluated just once during configuration.
15759
15760 @item bilinear
15761 Enable bilinear interpolation if set to 1, a value of 0 disables
15762 it. Default value is 1.
15763
15764 @item fillcolor, c
15765 Set the color used to fill the output area not covered by the rotated
15766 image. For the general syntax of this option, check the
15767 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15768 If the special value "none" is selected then no
15769 background is printed (useful for example if the background is never shown).
15770
15771 Default value is "black".
15772 @end table
15773
15774 The expressions for the angle and the output size can contain the
15775 following constants and functions:
15776
15777 @table @option
15778 @item n
15779 sequential number of the input frame, starting from 0. It is always NAN
15780 before the first frame is filtered.
15781
15782 @item t
15783 time in seconds of the input frame, it is set to 0 when the filter is
15784 configured. It is always NAN before the first frame is filtered.
15785
15786 @item hsub
15787 @item vsub
15788 horizontal and vertical chroma subsample values. For example for the
15789 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15790
15791 @item in_w, iw
15792 @item in_h, ih
15793 the input video width and height
15794
15795 @item out_w, ow
15796 @item out_h, oh
15797 the output width and height, that is the size of the padded area as
15798 specified by the @var{width} and @var{height} expressions
15799
15800 @item rotw(a)
15801 @item roth(a)
15802 the minimal width/height required for completely containing the input
15803 video rotated by @var{a} radians.
15804
15805 These are only available when computing the @option{out_w} and
15806 @option{out_h} expressions.
15807 @end table
15808
15809 @subsection Examples
15810
15811 @itemize
15812 @item
15813 Rotate the input by PI/6 radians clockwise:
15814 @example
15815 rotate=PI/6
15816 @end example
15817
15818 @item
15819 Rotate the input by PI/6 radians counter-clockwise:
15820 @example
15821 rotate=-PI/6
15822 @end example
15823
15824 @item
15825 Rotate the input by 45 degrees clockwise:
15826 @example
15827 rotate=45*PI/180
15828 @end example
15829
15830 @item
15831 Apply a constant rotation with period T, starting from an angle of PI/3:
15832 @example
15833 rotate=PI/3+2*PI*t/T
15834 @end example
15835
15836 @item
15837 Make the input video rotation oscillating with a period of T
15838 seconds and an amplitude of A radians:
15839 @example
15840 rotate=A*sin(2*PI/T*t)
15841 @end example
15842
15843 @item
15844 Rotate the video, output size is chosen so that the whole rotating
15845 input video is always completely contained in the output:
15846 @example
15847 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
15848 @end example
15849
15850 @item
15851 Rotate the video, reduce the output size so that no background is ever
15852 shown:
15853 @example
15854 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
15855 @end example
15856 @end itemize
15857
15858 @subsection Commands
15859
15860 The filter supports the following commands:
15861
15862 @table @option
15863 @item a, angle
15864 Set the angle expression.
15865 The command accepts the same syntax of the corresponding option.
15866
15867 If the specified expression is not valid, it is kept at its current
15868 value.
15869 @end table
15870
15871 @section sab
15872
15873 Apply Shape Adaptive Blur.
15874
15875 The filter accepts the following options:
15876
15877 @table @option
15878 @item luma_radius, lr
15879 Set luma blur filter strength, must be a value in range 0.1-4.0, default
15880 value is 1.0. A greater value will result in a more blurred image, and
15881 in slower processing.
15882
15883 @item luma_pre_filter_radius, lpfr
15884 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
15885 value is 1.0.
15886
15887 @item luma_strength, ls
15888 Set luma maximum difference between pixels to still be considered, must
15889 be a value in the 0.1-100.0 range, default value is 1.0.
15890
15891 @item chroma_radius, cr
15892 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
15893 greater value will result in a more blurred image, and in slower
15894 processing.
15895
15896 @item chroma_pre_filter_radius, cpfr
15897 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
15898
15899 @item chroma_strength, cs
15900 Set chroma maximum difference between pixels to still be considered,
15901 must be a value in the -0.9-100.0 range.
15902 @end table
15903
15904 Each chroma option value, if not explicitly specified, is set to the
15905 corresponding luma option value.
15906
15907 @anchor{scale}
15908 @section scale
15909
15910 Scale (resize) the input video, using the libswscale library.
15911
15912 The scale filter forces the output display aspect ratio to be the same
15913 of the input, by changing the output sample aspect ratio.
15914
15915 If the input image format is different from the format requested by
15916 the next filter, the scale filter will convert the input to the
15917 requested format.
15918
15919 @subsection Options
15920 The filter accepts the following options, or any of the options
15921 supported by the libswscale scaler.
15922
15923 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
15924 the complete list of scaler options.
15925
15926 @table @option
15927 @item width, w
15928 @item height, h
15929 Set the output video dimension expression. Default value is the input
15930 dimension.
15931
15932 If the @var{width} or @var{w} value is 0, the input width is used for
15933 the output. If the @var{height} or @var{h} value is 0, the input height
15934 is used for the output.
15935
15936 If one and only one of the values is -n with n >= 1, the scale filter
15937 will use a value that maintains the aspect ratio of the input image,
15938 calculated from the other specified dimension. After that it will,
15939 however, make sure that the calculated dimension is divisible by n and
15940 adjust the value if necessary.
15941
15942 If both values are -n with n >= 1, the behavior will be identical to
15943 both values being set to 0 as previously detailed.
15944
15945 See below for the list of accepted constants for use in the dimension
15946 expression.
15947
15948 @item eval
15949 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
15950
15951 @table @samp
15952 @item init
15953 Only evaluate expressions once during the filter initialization or when a command is processed.
15954
15955 @item frame
15956 Evaluate expressions for each incoming frame.
15957
15958 @end table
15959
15960 Default value is @samp{init}.
15961
15962
15963 @item interl
15964 Set the interlacing mode. It accepts the following values:
15965
15966 @table @samp
15967 @item 1
15968 Force interlaced aware scaling.
15969
15970 @item 0
15971 Do not apply interlaced scaling.
15972
15973 @item -1
15974 Select interlaced aware scaling depending on whether the source frames
15975 are flagged as interlaced or not.
15976 @end table
15977
15978 Default value is @samp{0}.
15979
15980 @item flags
15981 Set libswscale scaling flags. See
15982 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15983 complete list of values. If not explicitly specified the filter applies
15984 the default flags.
15985
15986
15987 @item param0, param1
15988 Set libswscale input parameters for scaling algorithms that need them. See
15989 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15990 complete documentation. If not explicitly specified the filter applies
15991 empty parameters.
15992
15993
15994
15995 @item size, s
15996 Set the video size. For the syntax of this option, check the
15997 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15998
15999 @item in_color_matrix
16000 @item out_color_matrix
16001 Set in/output YCbCr color space type.
16002
16003 This allows the autodetected value to be overridden as well as allows forcing
16004 a specific value used for the output and encoder.
16005
16006 If not specified, the color space type depends on the pixel format.
16007
16008 Possible values:
16009
16010 @table @samp
16011 @item auto
16012 Choose automatically.
16013
16014 @item bt709
16015 Format conforming to International Telecommunication Union (ITU)
16016 Recommendation BT.709.
16017
16018 @item fcc
16019 Set color space conforming to the United States Federal Communications
16020 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16021
16022 @item bt601
16023 @item bt470
16024 @item smpte170m
16025 Set color space conforming to:
16026
16027 @itemize
16028 @item
16029 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16030
16031 @item
16032 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16033
16034 @item
16035 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16036
16037 @end itemize
16038
16039 @item smpte240m
16040 Set color space conforming to SMPTE ST 240:1999.
16041
16042 @item bt2020
16043 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16044 @end table
16045
16046 @item in_range
16047 @item out_range
16048 Set in/output YCbCr sample range.
16049
16050 This allows the autodetected value to be overridden as well as allows forcing
16051 a specific value used for the output and encoder. If not specified, the
16052 range depends on the pixel format. Possible values:
16053
16054 @table @samp
16055 @item auto/unknown
16056 Choose automatically.
16057
16058 @item jpeg/full/pc
16059 Set full range (0-255 in case of 8-bit luma).
16060
16061 @item mpeg/limited/tv
16062 Set "MPEG" range (16-235 in case of 8-bit luma).
16063 @end table
16064
16065 @item force_original_aspect_ratio
16066 Enable decreasing or increasing output video width or height if necessary to
16067 keep the original aspect ratio. Possible values:
16068
16069 @table @samp
16070 @item disable
16071 Scale the video as specified and disable this feature.
16072
16073 @item decrease
16074 The output video dimensions will automatically be decreased if needed.
16075
16076 @item increase
16077 The output video dimensions will automatically be increased if needed.
16078
16079 @end table
16080
16081 One useful instance of this option is that when you know a specific device's
16082 maximum allowed resolution, you can use this to limit the output video to
16083 that, while retaining the aspect ratio. For example, device A allows
16084 1280x720 playback, and your video is 1920x800. Using this option (set it to
16085 decrease) and specifying 1280x720 to the command line makes the output
16086 1280x533.
16087
16088 Please note that this is a different thing than specifying -1 for @option{w}
16089 or @option{h}, you still need to specify the output resolution for this option
16090 to work.
16091
16092 @item force_divisible_by
16093 Ensures that both the output dimensions, width and height, are divisible by the
16094 given integer when used together with @option{force_original_aspect_ratio}. This
16095 works similar to using @code{-n} in the @option{w} and @option{h} options.
16096
16097 This option respects the value set for @option{force_original_aspect_ratio},
16098 increasing or decreasing the resolution accordingly. The video's aspect ratio
16099 may be slightly modified.
16100
16101 This option can be handy if you need to have a video fit within or exceed
16102 a defined resolution using @option{force_original_aspect_ratio} but also have
16103 encoder restrictions on width or height divisibility.
16104
16105 @end table
16106
16107 The values of the @option{w} and @option{h} options are expressions
16108 containing the following constants:
16109
16110 @table @var
16111 @item in_w
16112 @item in_h
16113 The input width and height
16114
16115 @item iw
16116 @item ih
16117 These are the same as @var{in_w} and @var{in_h}.
16118
16119 @item out_w
16120 @item out_h
16121 The output (scaled) width and height
16122
16123 @item ow
16124 @item oh
16125 These are the same as @var{out_w} and @var{out_h}
16126
16127 @item a
16128 The same as @var{iw} / @var{ih}
16129
16130 @item sar
16131 input sample aspect ratio
16132
16133 @item dar
16134 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16135
16136 @item hsub
16137 @item vsub
16138 horizontal and vertical input chroma subsample values. For example for the
16139 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16140
16141 @item ohsub
16142 @item ovsub
16143 horizontal and vertical output chroma subsample values. For example for the
16144 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16145
16146 @item n
16147 The (sequential) number of the input frame, starting from 0.
16148 Only available with @code{eval=frame}.
16149
16150 @item t
16151 The presentation timestamp of the input frame, expressed as a number of
16152 seconds. Only available with @code{eval=frame}.
16153
16154 @item pos
16155 The position (byte offset) of the frame in the input stream, or NaN if
16156 this information is unavailable and/or meaningless (for example in case of synthetic video).
16157 Only available with @code{eval=frame}.
16158 @end table
16159
16160 @subsection Examples
16161
16162 @itemize
16163 @item
16164 Scale the input video to a size of 200x100
16165 @example
16166 scale=w=200:h=100
16167 @end example
16168
16169 This is equivalent to:
16170 @example
16171 scale=200:100
16172 @end example
16173
16174 or:
16175 @example
16176 scale=200x100
16177 @end example
16178
16179 @item
16180 Specify a size abbreviation for the output size:
16181 @example
16182 scale=qcif
16183 @end example
16184
16185 which can also be written as:
16186 @example
16187 scale=size=qcif
16188 @end example
16189
16190 @item
16191 Scale the input to 2x:
16192 @example
16193 scale=w=2*iw:h=2*ih
16194 @end example
16195
16196 @item
16197 The above is the same as:
16198 @example
16199 scale=2*in_w:2*in_h
16200 @end example
16201
16202 @item
16203 Scale the input to 2x with forced interlaced scaling:
16204 @example
16205 scale=2*iw:2*ih:interl=1
16206 @end example
16207
16208 @item
16209 Scale the input to half size:
16210 @example
16211 scale=w=iw/2:h=ih/2
16212 @end example
16213
16214 @item
16215 Increase the width, and set the height to the same size:
16216 @example
16217 scale=3/2*iw:ow
16218 @end example
16219
16220 @item
16221 Seek Greek harmony:
16222 @example
16223 scale=iw:1/PHI*iw
16224 scale=ih*PHI:ih
16225 @end example
16226
16227 @item
16228 Increase the height, and set the width to 3/2 of the height:
16229 @example
16230 scale=w=3/2*oh:h=3/5*ih
16231 @end example
16232
16233 @item
16234 Increase the size, making the size a multiple of the chroma
16235 subsample values:
16236 @example
16237 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
16238 @end example
16239
16240 @item
16241 Increase the width to a maximum of 500 pixels,
16242 keeping the same aspect ratio as the input:
16243 @example
16244 scale=w='min(500\, iw*3/2):h=-1'
16245 @end example
16246
16247 @item
16248 Make pixels square by combining scale and setsar:
16249 @example
16250 scale='trunc(ih*dar):ih',setsar=1/1
16251 @end example
16252
16253 @item
16254 Make pixels square by combining scale and setsar,
16255 making sure the resulting resolution is even (required by some codecs):
16256 @example
16257 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
16258 @end example
16259 @end itemize
16260
16261 @subsection Commands
16262
16263 This filter supports the following commands:
16264 @table @option
16265 @item width, w
16266 @item height, h
16267 Set the output video dimension expression.
16268 The command accepts the same syntax of the corresponding option.
16269
16270 If the specified expression is not valid, it is kept at its current
16271 value.
16272 @end table
16273
16274 @section scale_npp
16275
16276 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
16277 format conversion on CUDA video frames. Setting the output width and height
16278 works in the same way as for the @var{scale} filter.
16279
16280 The following additional options are accepted:
16281 @table @option
16282 @item format
16283 The pixel format of the output CUDA frames. If set to the string "same" (the
16284 default), the input format will be kept. Note that automatic format negotiation
16285 and conversion is not yet supported for hardware frames
16286
16287 @item interp_algo
16288 The interpolation algorithm used for resizing. One of the following:
16289 @table @option
16290 @item nn
16291 Nearest neighbour.
16292
16293 @item linear
16294 @item cubic
16295 @item cubic2p_bspline
16296 2-parameter cubic (B=1, C=0)
16297
16298 @item cubic2p_catmullrom
16299 2-parameter cubic (B=0, C=1/2)
16300
16301 @item cubic2p_b05c03
16302 2-parameter cubic (B=1/2, C=3/10)
16303
16304 @item super
16305 Supersampling
16306
16307 @item lanczos
16308 @end table
16309
16310 @item force_original_aspect_ratio
16311 Enable decreasing or increasing output video width or height if necessary to
16312 keep the original aspect ratio. Possible values:
16313
16314 @table @samp
16315 @item disable
16316 Scale the video as specified and disable this feature.
16317
16318 @item decrease
16319 The output video dimensions will automatically be decreased if needed.
16320
16321 @item increase
16322 The output video dimensions will automatically be increased if needed.
16323
16324 @end table
16325
16326 One useful instance of this option is that when you know a specific device's
16327 maximum allowed resolution, you can use this to limit the output video to
16328 that, while retaining the aspect ratio. For example, device A allows
16329 1280x720 playback, and your video is 1920x800. Using this option (set it to
16330 decrease) and specifying 1280x720 to the command line makes the output
16331 1280x533.
16332
16333 Please note that this is a different thing than specifying -1 for @option{w}
16334 or @option{h}, you still need to specify the output resolution for this option
16335 to work.
16336
16337 @item force_divisible_by
16338 Ensures that both the output dimensions, width and height, are divisible by the
16339 given integer when used together with @option{force_original_aspect_ratio}. This
16340 works similar to using @code{-n} in the @option{w} and @option{h} options.
16341
16342 This option respects the value set for @option{force_original_aspect_ratio},
16343 increasing or decreasing the resolution accordingly. The video's aspect ratio
16344 may be slightly modified.
16345
16346 This option can be handy if you need to have a video fit within or exceed
16347 a defined resolution using @option{force_original_aspect_ratio} but also have
16348 encoder restrictions on width or height divisibility.
16349
16350 @end table
16351
16352 @section scale2ref
16353
16354 Scale (resize) the input video, based on a reference video.
16355
16356 See the scale filter for available options, scale2ref supports the same but
16357 uses the reference video instead of the main input as basis. scale2ref also
16358 supports the following additional constants for the @option{w} and
16359 @option{h} options:
16360
16361 @table @var
16362 @item main_w
16363 @item main_h
16364 The main input video's width and height
16365
16366 @item main_a
16367 The same as @var{main_w} / @var{main_h}
16368
16369 @item main_sar
16370 The main input video's sample aspect ratio
16371
16372 @item main_dar, mdar
16373 The main input video's display aspect ratio. Calculated from
16374 @code{(main_w / main_h) * main_sar}.
16375
16376 @item main_hsub
16377 @item main_vsub
16378 The main input video's horizontal and vertical chroma subsample values.
16379 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
16380 is 1.
16381
16382 @item main_n
16383 The (sequential) number of the main input frame, starting from 0.
16384 Only available with @code{eval=frame}.
16385
16386 @item main_t
16387 The presentation timestamp of the main input frame, expressed as a number of
16388 seconds. Only available with @code{eval=frame}.
16389
16390 @item main_pos
16391 The position (byte offset) of the frame in the main input stream, or NaN if
16392 this information is unavailable and/or meaningless (for example in case of synthetic video).
16393 Only available with @code{eval=frame}.
16394 @end table
16395
16396 @subsection Examples
16397
16398 @itemize
16399 @item
16400 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
16401 @example
16402 'scale2ref[b][a];[a][b]overlay'
16403 @end example
16404
16405 @item
16406 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
16407 @example
16408 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
16409 @end example
16410 @end itemize
16411
16412 @subsection Commands
16413
16414 This filter supports the following commands:
16415 @table @option
16416 @item width, w
16417 @item height, h
16418 Set the output video dimension expression.
16419 The command accepts the same syntax of the corresponding option.
16420
16421 If the specified expression is not valid, it is kept at its current
16422 value.
16423 @end table
16424
16425 @section scroll
16426 Scroll input video horizontally and/or vertically by constant speed.
16427
16428 The filter accepts the following options:
16429 @table @option
16430 @item horizontal, h
16431 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
16432 Negative values changes scrolling direction.
16433
16434 @item vertical, v
16435 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
16436 Negative values changes scrolling direction.
16437
16438 @item hpos
16439 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
16440
16441 @item vpos
16442 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
16443 @end table
16444
16445 @subsection Commands
16446
16447 This filter supports the following @ref{commands}:
16448 @table @option
16449 @item horizontal, h
16450 Set the horizontal scrolling speed.
16451 @item vertical, v
16452 Set the vertical scrolling speed.
16453 @end table
16454
16455 @anchor{selectivecolor}
16456 @section selectivecolor
16457
16458 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
16459 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
16460 by the "purity" of the color (that is, how saturated it already is).
16461
16462 This filter is similar to the Adobe Photoshop Selective Color tool.
16463
16464 The filter accepts the following options:
16465
16466 @table @option
16467 @item correction_method
16468 Select color correction method.
16469
16470 Available values are:
16471 @table @samp
16472 @item absolute
16473 Specified adjustments are applied "as-is" (added/subtracted to original pixel
16474 component value).
16475 @item relative
16476 Specified adjustments are relative to the original component value.
16477 @end table
16478 Default is @code{absolute}.
16479 @item reds
16480 Adjustments for red pixels (pixels where the red component is the maximum)
16481 @item yellows
16482 Adjustments for yellow pixels (pixels where the blue component is the minimum)
16483 @item greens
16484 Adjustments for green pixels (pixels where the green component is the maximum)
16485 @item cyans
16486 Adjustments for cyan pixels (pixels where the red component is the minimum)
16487 @item blues
16488 Adjustments for blue pixels (pixels where the blue component is the maximum)
16489 @item magentas
16490 Adjustments for magenta pixels (pixels where the green component is the minimum)
16491 @item whites
16492 Adjustments for white pixels (pixels where all components are greater than 128)
16493 @item neutrals
16494 Adjustments for all pixels except pure black and pure white
16495 @item blacks
16496 Adjustments for black pixels (pixels where all components are lesser than 128)
16497 @item psfile
16498 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
16499 @end table
16500
16501 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
16502 4 space separated floating point adjustment values in the [-1,1] range,
16503 respectively to adjust the amount of cyan, magenta, yellow and black for the
16504 pixels of its range.
16505
16506 @subsection Examples
16507
16508 @itemize
16509 @item
16510 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
16511 increase magenta by 27% in blue areas:
16512 @example
16513 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
16514 @end example
16515
16516 @item
16517 Use a Photoshop selective color preset:
16518 @example
16519 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
16520 @end example
16521 @end itemize
16522
16523 @anchor{separatefields}
16524 @section separatefields
16525
16526 The @code{separatefields} takes a frame-based video input and splits
16527 each frame into its components fields, producing a new half height clip
16528 with twice the frame rate and twice the frame count.
16529
16530 This filter use field-dominance information in frame to decide which
16531 of each pair of fields to place first in the output.
16532 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
16533
16534 @section setdar, setsar
16535
16536 The @code{setdar} filter sets the Display Aspect Ratio for the filter
16537 output video.
16538
16539 This is done by changing the specified Sample (aka Pixel) Aspect
16540 Ratio, according to the following equation:
16541 @example
16542 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
16543 @end example
16544
16545 Keep in mind that the @code{setdar} filter does not modify the pixel
16546 dimensions of the video frame. Also, the display aspect ratio set by
16547 this filter may be changed by later filters in the filterchain,
16548 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
16549 applied.
16550
16551 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
16552 the filter output video.
16553
16554 Note that as a consequence of the application of this filter, the
16555 output display aspect ratio will change according to the equation
16556 above.
16557
16558 Keep in mind that the sample aspect ratio set by the @code{setsar}
16559 filter may be changed by later filters in the filterchain, e.g. if
16560 another "setsar" or a "setdar" filter is applied.
16561
16562 It accepts the following parameters:
16563
16564 @table @option
16565 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
16566 Set the aspect ratio used by the filter.
16567
16568 The parameter can be a floating point number string, an expression, or
16569 a string of the form @var{num}:@var{den}, where @var{num} and
16570 @var{den} are the numerator and denominator of the aspect ratio. If
16571 the parameter is not specified, it is assumed the value "0".
16572 In case the form "@var{num}:@var{den}" is used, the @code{:} character
16573 should be escaped.
16574
16575 @item max
16576 Set the maximum integer value to use for expressing numerator and
16577 denominator when reducing the expressed aspect ratio to a rational.
16578 Default value is @code{100}.
16579
16580 @end table
16581
16582 The parameter @var{sar} is an expression containing
16583 the following constants:
16584
16585 @table @option
16586 @item E, PI, PHI
16587 These are approximated values for the mathematical constants e
16588 (Euler's number), pi (Greek pi), and phi (the golden ratio).
16589
16590 @item w, h
16591 The input width and height.
16592
16593 @item a
16594 These are the same as @var{w} / @var{h}.
16595
16596 @item sar
16597 The input sample aspect ratio.
16598
16599 @item dar
16600 The input display aspect ratio. It is the same as
16601 (@var{w} / @var{h}) * @var{sar}.
16602
16603 @item hsub, vsub
16604 Horizontal and vertical chroma subsample values. For example, for the
16605 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16606 @end table
16607
16608 @subsection Examples
16609
16610 @itemize
16611
16612 @item
16613 To change the display aspect ratio to 16:9, specify one of the following:
16614 @example
16615 setdar=dar=1.77777
16616 setdar=dar=16/9
16617 @end example
16618
16619 @item
16620 To change the sample aspect ratio to 10:11, specify:
16621 @example
16622 setsar=sar=10/11
16623 @end example
16624
16625 @item
16626 To set a display aspect ratio of 16:9, and specify a maximum integer value of
16627 1000 in the aspect ratio reduction, use the command:
16628 @example
16629 setdar=ratio=16/9:max=1000
16630 @end example
16631
16632 @end itemize
16633
16634 @anchor{setfield}
16635 @section setfield
16636
16637 Force field for the output video frame.
16638
16639 The @code{setfield} filter marks the interlace type field for the
16640 output frames. It does not change the input frame, but only sets the
16641 corresponding property, which affects how the frame is treated by
16642 following filters (e.g. @code{fieldorder} or @code{yadif}).
16643
16644 The filter accepts the following options:
16645
16646 @table @option
16647
16648 @item mode
16649 Available values are:
16650
16651 @table @samp
16652 @item auto
16653 Keep the same field property.
16654
16655 @item bff
16656 Mark the frame as bottom-field-first.
16657
16658 @item tff
16659 Mark the frame as top-field-first.
16660
16661 @item prog
16662 Mark the frame as progressive.
16663 @end table
16664 @end table
16665
16666 @anchor{setparams}
16667 @section setparams
16668
16669 Force frame parameter for the output video frame.
16670
16671 The @code{setparams} filter marks interlace and color range for the
16672 output frames. It does not change the input frame, but only sets the
16673 corresponding property, which affects how the frame is treated by
16674 filters/encoders.
16675
16676 @table @option
16677 @item field_mode
16678 Available values are:
16679
16680 @table @samp
16681 @item auto
16682 Keep the same field property (default).
16683
16684 @item bff
16685 Mark the frame as bottom-field-first.
16686
16687 @item tff
16688 Mark the frame as top-field-first.
16689
16690 @item prog
16691 Mark the frame as progressive.
16692 @end table
16693
16694 @item range
16695 Available values are:
16696
16697 @table @samp
16698 @item auto
16699 Keep the same color range property (default).
16700
16701 @item unspecified, unknown
16702 Mark the frame as unspecified color range.
16703
16704 @item limited, tv, mpeg
16705 Mark the frame as limited range.
16706
16707 @item full, pc, jpeg
16708 Mark the frame as full range.
16709 @end table
16710
16711 @item color_primaries
16712 Set the color primaries.
16713 Available values are:
16714
16715 @table @samp
16716 @item auto
16717 Keep the same color primaries property (default).
16718
16719 @item bt709
16720 @item unknown
16721 @item bt470m
16722 @item bt470bg
16723 @item smpte170m
16724 @item smpte240m
16725 @item film
16726 @item bt2020
16727 @item smpte428
16728 @item smpte431
16729 @item smpte432
16730 @item jedec-p22
16731 @end table
16732
16733 @item color_trc
16734 Set the color transfer.
16735 Available values are:
16736
16737 @table @samp
16738 @item auto
16739 Keep the same color trc property (default).
16740
16741 @item bt709
16742 @item unknown
16743 @item bt470m
16744 @item bt470bg
16745 @item smpte170m
16746 @item smpte240m
16747 @item linear
16748 @item log100
16749 @item log316
16750 @item iec61966-2-4
16751 @item bt1361e
16752 @item iec61966-2-1
16753 @item bt2020-10
16754 @item bt2020-12
16755 @item smpte2084
16756 @item smpte428
16757 @item arib-std-b67
16758 @end table
16759
16760 @item colorspace
16761 Set the colorspace.
16762 Available values are:
16763
16764 @table @samp
16765 @item auto
16766 Keep the same colorspace property (default).
16767
16768 @item gbr
16769 @item bt709
16770 @item unknown
16771 @item fcc
16772 @item bt470bg
16773 @item smpte170m
16774 @item smpte240m
16775 @item ycgco
16776 @item bt2020nc
16777 @item bt2020c
16778 @item smpte2085
16779 @item chroma-derived-nc
16780 @item chroma-derived-c
16781 @item ictcp
16782 @end table
16783 @end table
16784
16785 @section showinfo
16786
16787 Show a line containing various information for each input video frame.
16788 The input video is not modified.
16789
16790 This filter supports the following options:
16791
16792 @table @option
16793 @item checksum
16794 Calculate checksums of each plane. By default enabled.
16795 @end table
16796
16797 The shown line contains a sequence of key/value pairs of the form
16798 @var{key}:@var{value}.
16799
16800 The following values are shown in the output:
16801
16802 @table @option
16803 @item n
16804 The (sequential) number of the input frame, starting from 0.
16805
16806 @item pts
16807 The Presentation TimeStamp of the input frame, expressed as a number of
16808 time base units. The time base unit depends on the filter input pad.
16809
16810 @item pts_time
16811 The Presentation TimeStamp of the input frame, expressed as a number of
16812 seconds.
16813
16814 @item pos
16815 The position of the frame in the input stream, or -1 if this information is
16816 unavailable and/or meaningless (for example in case of synthetic video).
16817
16818 @item fmt
16819 The pixel format name.
16820
16821 @item sar
16822 The sample aspect ratio of the input frame, expressed in the form
16823 @var{num}/@var{den}.
16824
16825 @item s
16826 The size of the input frame. For the syntax of this option, check the
16827 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16828
16829 @item i
16830 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
16831 for bottom field first).
16832
16833 @item iskey
16834 This is 1 if the frame is a key frame, 0 otherwise.
16835
16836 @item type
16837 The picture type of the input frame ("I" for an I-frame, "P" for a
16838 P-frame, "B" for a B-frame, or "?" for an unknown type).
16839 Also refer to the documentation of the @code{AVPictureType} enum and of
16840 the @code{av_get_picture_type_char} function defined in
16841 @file{libavutil/avutil.h}.
16842
16843 @item checksum
16844 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
16845
16846 @item plane_checksum
16847 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
16848 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
16849
16850 @item mean
16851 The mean value of pixels in each plane of the input frame, expressed in the form
16852 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
16853
16854 @item stdev
16855 The standard deviation of pixel values in each plane of the input frame, expressed
16856 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
16857
16858 @end table
16859
16860 @section showpalette
16861
16862 Displays the 256 colors palette of each frame. This filter is only relevant for
16863 @var{pal8} pixel format frames.
16864
16865 It accepts the following option:
16866
16867 @table @option
16868 @item s
16869 Set the size of the box used to represent one palette color entry. Default is
16870 @code{30} (for a @code{30x30} pixel box).
16871 @end table
16872
16873 @section shuffleframes
16874
16875 Reorder and/or duplicate and/or drop video frames.
16876
16877 It accepts the following parameters:
16878
16879 @table @option
16880 @item mapping
16881 Set the destination indexes of input frames.
16882 This is space or '|' separated list of indexes that maps input frames to output
16883 frames. Number of indexes also sets maximal value that each index may have.
16884 '-1' index have special meaning and that is to drop frame.
16885 @end table
16886
16887 The first frame has the index 0. The default is to keep the input unchanged.
16888
16889 @subsection Examples
16890
16891 @itemize
16892 @item
16893 Swap second and third frame of every three frames of the input:
16894 @example
16895 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
16896 @end example
16897
16898 @item
16899 Swap 10th and 1st frame of every ten frames of the input:
16900 @example
16901 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
16902 @end example
16903 @end itemize
16904
16905 @section shuffleplanes
16906
16907 Reorder and/or duplicate video planes.
16908
16909 It accepts the following parameters:
16910
16911 @table @option
16912
16913 @item map0
16914 The index of the input plane to be used as the first output plane.
16915
16916 @item map1
16917 The index of the input plane to be used as the second output plane.
16918
16919 @item map2
16920 The index of the input plane to be used as the third output plane.
16921
16922 @item map3
16923 The index of the input plane to be used as the fourth output plane.
16924
16925 @end table
16926
16927 The first plane has the index 0. The default is to keep the input unchanged.
16928
16929 @subsection Examples
16930
16931 @itemize
16932 @item
16933 Swap the second and third planes of the input:
16934 @example
16935 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
16936 @end example
16937 @end itemize
16938
16939 @anchor{signalstats}
16940 @section signalstats
16941 Evaluate various visual metrics that assist in determining issues associated
16942 with the digitization of analog video media.
16943
16944 By default the filter will log these metadata values:
16945
16946 @table @option
16947 @item YMIN
16948 Display the minimal Y value contained within the input frame. Expressed in
16949 range of [0-255].
16950
16951 @item YLOW
16952 Display the Y value at the 10% percentile within the input frame. Expressed in
16953 range of [0-255].
16954
16955 @item YAVG
16956 Display the average Y value within the input frame. Expressed in range of
16957 [0-255].
16958
16959 @item YHIGH
16960 Display the Y value at the 90% percentile within the input frame. Expressed in
16961 range of [0-255].
16962
16963 @item YMAX
16964 Display the maximum Y value contained within the input frame. Expressed in
16965 range of [0-255].
16966
16967 @item UMIN
16968 Display the minimal U value contained within the input frame. Expressed in
16969 range of [0-255].
16970
16971 @item ULOW
16972 Display the U value at the 10% percentile within the input frame. Expressed in
16973 range of [0-255].
16974
16975 @item UAVG
16976 Display the average U value within the input frame. Expressed in range of
16977 [0-255].
16978
16979 @item UHIGH
16980 Display the U value at the 90% percentile within the input frame. Expressed in
16981 range of [0-255].
16982
16983 @item UMAX
16984 Display the maximum U value contained within the input frame. Expressed in
16985 range of [0-255].
16986
16987 @item VMIN
16988 Display the minimal V value contained within the input frame. Expressed in
16989 range of [0-255].
16990
16991 @item VLOW
16992 Display the V value at the 10% percentile within the input frame. Expressed in
16993 range of [0-255].
16994
16995 @item VAVG
16996 Display the average V value within the input frame. Expressed in range of
16997 [0-255].
16998
16999 @item VHIGH
17000 Display the V value at the 90% percentile within the input frame. Expressed in
17001 range of [0-255].
17002
17003 @item VMAX
17004 Display the maximum V value contained within the input frame. Expressed in
17005 range of [0-255].
17006
17007 @item SATMIN
17008 Display the minimal saturation value contained within the input frame.
17009 Expressed in range of [0-~181.02].
17010
17011 @item SATLOW
17012 Display the saturation value at the 10% percentile within the input frame.
17013 Expressed in range of [0-~181.02].
17014
17015 @item SATAVG
17016 Display the average saturation value within the input frame. Expressed in range
17017 of [0-~181.02].
17018
17019 @item SATHIGH
17020 Display the saturation value at the 90% percentile within the input frame.
17021 Expressed in range of [0-~181.02].
17022
17023 @item SATMAX
17024 Display the maximum saturation value contained within the input frame.
17025 Expressed in range of [0-~181.02].
17026
17027 @item HUEMED
17028 Display the median value for hue within the input frame. Expressed in range of
17029 [0-360].
17030
17031 @item HUEAVG
17032 Display the average value for hue within the input frame. Expressed in range of
17033 [0-360].
17034
17035 @item YDIF
17036 Display the average of sample value difference between all values of the Y
17037 plane in the current frame and corresponding values of the previous input frame.
17038 Expressed in range of [0-255].
17039
17040 @item UDIF
17041 Display the average of sample value difference between all values of the U
17042 plane in the current frame and corresponding values of the previous input frame.
17043 Expressed in range of [0-255].
17044
17045 @item VDIF
17046 Display the average of sample value difference between all values of the V
17047 plane in the current frame and corresponding values of the previous input frame.
17048 Expressed in range of [0-255].
17049
17050 @item YBITDEPTH
17051 Display bit depth of Y plane in current frame.
17052 Expressed in range of [0-16].
17053
17054 @item UBITDEPTH
17055 Display bit depth of U plane in current frame.
17056 Expressed in range of [0-16].
17057
17058 @item VBITDEPTH
17059 Display bit depth of V plane in current frame.
17060 Expressed in range of [0-16].
17061 @end table
17062
17063 The filter accepts the following options:
17064
17065 @table @option
17066 @item stat
17067 @item out
17068
17069 @option{stat} specify an additional form of image analysis.
17070 @option{out} output video with the specified type of pixel highlighted.
17071
17072 Both options accept the following values:
17073
17074 @table @samp
17075 @item tout
17076 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
17077 unlike the neighboring pixels of the same field. Examples of temporal outliers
17078 include the results of video dropouts, head clogs, or tape tracking issues.
17079
17080 @item vrep
17081 Identify @var{vertical line repetition}. Vertical line repetition includes
17082 similar rows of pixels within a frame. In born-digital video vertical line
17083 repetition is common, but this pattern is uncommon in video digitized from an
17084 analog source. When it occurs in video that results from the digitization of an
17085 analog source it can indicate concealment from a dropout compensator.
17086
17087 @item brng
17088 Identify pixels that fall outside of legal broadcast range.
17089 @end table
17090
17091 @item color, c
17092 Set the highlight color for the @option{out} option. The default color is
17093 yellow.
17094 @end table
17095
17096 @subsection Examples
17097
17098 @itemize
17099 @item
17100 Output data of various video metrics:
17101 @example
17102 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
17103 @end example
17104
17105 @item
17106 Output specific data about the minimum and maximum values of the Y plane per frame:
17107 @example
17108 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
17109 @end example
17110
17111 @item
17112 Playback video while highlighting pixels that are outside of broadcast range in red.
17113 @example
17114 ffplay example.mov -vf signalstats="out=brng:color=red"
17115 @end example
17116
17117 @item
17118 Playback video with signalstats metadata drawn over the frame.
17119 @example
17120 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
17121 @end example
17122
17123 The contents of signalstat_drawtext.txt used in the command are:
17124 @example
17125 time %@{pts:hms@}
17126 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
17127 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
17128 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
17129 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
17130
17131 @end example
17132 @end itemize
17133
17134 @anchor{signature}
17135 @section signature
17136
17137 Calculates the MPEG-7 Video Signature. The filter can handle more than one
17138 input. In this case the matching between the inputs can be calculated additionally.
17139 The filter always passes through the first input. The signature of each stream can
17140 be written into a file.
17141
17142 It accepts the following options:
17143
17144 @table @option
17145 @item detectmode
17146 Enable or disable the matching process.
17147
17148 Available values are:
17149
17150 @table @samp
17151 @item off
17152 Disable the calculation of a matching (default).
17153 @item full
17154 Calculate the matching for the whole video and output whether the whole video
17155 matches or only parts.
17156 @item fast
17157 Calculate only until a matching is found or the video ends. Should be faster in
17158 some cases.
17159 @end table
17160
17161 @item nb_inputs
17162 Set the number of inputs. The option value must be a non negative integer.
17163 Default value is 1.
17164
17165 @item filename
17166 Set the path to which the output is written. If there is more than one input,
17167 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
17168 integer), that will be replaced with the input number. If no filename is
17169 specified, no output will be written. This is the default.
17170
17171 @item format
17172 Choose the output format.
17173
17174 Available values are:
17175
17176 @table @samp
17177 @item binary
17178 Use the specified binary representation (default).
17179 @item xml
17180 Use the specified xml representation.
17181 @end table
17182
17183 @item th_d
17184 Set threshold to detect one word as similar. The option value must be an integer
17185 greater than zero. The default value is 9000.
17186
17187 @item th_dc
17188 Set threshold to detect all words as similar. The option value must be an integer
17189 greater than zero. The default value is 60000.
17190
17191 @item th_xh
17192 Set threshold to detect frames as similar. The option value must be an integer
17193 greater than zero. The default value is 116.
17194
17195 @item th_di
17196 Set the minimum length of a sequence in frames to recognize it as matching
17197 sequence. The option value must be a non negative integer value.
17198 The default value is 0.
17199
17200 @item th_it
17201 Set the minimum relation, that matching frames to all frames must have.
17202 The option value must be a double value between 0 and 1. The default value is 0.5.
17203 @end table
17204
17205 @subsection Examples
17206
17207 @itemize
17208 @item
17209 To calculate the signature of an input video and store it in signature.bin:
17210 @example
17211 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
17212 @end example
17213
17214 @item
17215 To detect whether two videos match and store the signatures in XML format in
17216 signature0.xml and signature1.xml:
17217 @example
17218 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 -
17219 @end example
17220
17221 @end itemize
17222
17223 @anchor{smartblur}
17224 @section smartblur
17225
17226 Blur the input video without impacting the outlines.
17227
17228 It accepts the following options:
17229
17230 @table @option
17231 @item luma_radius, lr
17232 Set the luma radius. The option value must be a float number in
17233 the range [0.1,5.0] that specifies the variance of the gaussian filter
17234 used to blur the image (slower if larger). Default value is 1.0.
17235
17236 @item luma_strength, ls
17237 Set the luma strength. The option value must be a float number
17238 in the range [-1.0,1.0] that configures the blurring. A value included
17239 in [0.0,1.0] will blur the image whereas a value included in
17240 [-1.0,0.0] will sharpen the image. Default value is 1.0.
17241
17242 @item luma_threshold, lt
17243 Set the luma threshold used as a coefficient to determine
17244 whether a pixel should be blurred or not. The option value must be an
17245 integer in the range [-30,30]. A value of 0 will filter all the image,
17246 a value included in [0,30] will filter flat areas and a value included
17247 in [-30,0] will filter edges. Default value is 0.
17248
17249 @item chroma_radius, cr
17250 Set the chroma radius. The option value must be a float number in
17251 the range [0.1,5.0] that specifies the variance of the gaussian filter
17252 used to blur the image (slower if larger). Default value is @option{luma_radius}.
17253
17254 @item chroma_strength, cs
17255 Set the chroma strength. The option value must be a float number
17256 in the range [-1.0,1.0] that configures the blurring. A value included
17257 in [0.0,1.0] will blur the image whereas a value included in
17258 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
17259
17260 @item chroma_threshold, ct
17261 Set the chroma threshold used as a coefficient to determine
17262 whether a pixel should be blurred or not. The option value must be an
17263 integer in the range [-30,30]. A value of 0 will filter all the image,
17264 a value included in [0,30] will filter flat areas and a value included
17265 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
17266 @end table
17267
17268 If a chroma option is not explicitly set, the corresponding luma value
17269 is set.
17270
17271 @section sobel
17272 Apply sobel operator to input video stream.
17273
17274 The filter accepts the following option:
17275
17276 @table @option
17277 @item planes
17278 Set which planes will be processed, unprocessed planes will be copied.
17279 By default value 0xf, all planes will be processed.
17280
17281 @item scale
17282 Set value which will be multiplied with filtered result.
17283
17284 @item delta
17285 Set value which will be added to filtered result.
17286 @end table
17287
17288 @anchor{spp}
17289 @section spp
17290
17291 Apply a simple postprocessing filter that compresses and decompresses the image
17292 at several (or - in the case of @option{quality} level @code{6} - all) shifts
17293 and average the results.
17294
17295 The filter accepts the following options:
17296
17297 @table @option
17298 @item quality
17299 Set quality. This option defines the number of levels for averaging. It accepts
17300 an integer in the range 0-6. If set to @code{0}, the filter will have no
17301 effect. A value of @code{6} means the higher quality. For each increment of
17302 that value the speed drops by a factor of approximately 2.  Default value is
17303 @code{3}.
17304
17305 @item qp
17306 Force a constant quantization parameter. If not set, the filter will use the QP
17307 from the video stream (if available).
17308
17309 @item mode
17310 Set thresholding mode. Available modes are:
17311
17312 @table @samp
17313 @item hard
17314 Set hard thresholding (default).
17315 @item soft
17316 Set soft thresholding (better de-ringing effect, but likely blurrier).
17317 @end table
17318
17319 @item use_bframe_qp
17320 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
17321 option may cause flicker since the B-Frames have often larger QP. Default is
17322 @code{0} (not enabled).
17323 @end table
17324
17325 @subsection Commands
17326
17327 This filter supports the following commands:
17328 @table @option
17329 @item quality, level
17330 Set quality level. The value @code{max} can be used to set the maximum level,
17331 currently @code{6}.
17332 @end table
17333
17334 @section sr
17335
17336 Scale the input by applying one of the super-resolution methods based on
17337 convolutional neural networks. Supported models:
17338
17339 @itemize
17340 @item
17341 Super-Resolution Convolutional Neural Network model (SRCNN).
17342 See @url{https://arxiv.org/abs/1501.00092}.
17343
17344 @item
17345 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
17346 See @url{https://arxiv.org/abs/1609.05158}.
17347 @end itemize
17348
17349 Training scripts as well as scripts for model file (.pb) saving can be found at
17350 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
17351 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
17352
17353 Native model files (.model) can be generated from TensorFlow model
17354 files (.pb) by using tools/python/convert.py
17355
17356 The filter accepts the following options:
17357
17358 @table @option
17359 @item dnn_backend
17360 Specify which DNN backend to use for model loading and execution. This option accepts
17361 the following values:
17362
17363 @table @samp
17364 @item native
17365 Native implementation of DNN loading and execution.
17366
17367 @item tensorflow
17368 TensorFlow backend. To enable this backend you
17369 need to install the TensorFlow for C library (see
17370 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
17371 @code{--enable-libtensorflow}
17372 @end table
17373
17374 Default value is @samp{native}.
17375
17376 @item model
17377 Set path to model file specifying network architecture and its parameters.
17378 Note that different backends use different file formats. TensorFlow backend
17379 can load files for both formats, while native backend can load files for only
17380 its format.
17381
17382 @item scale_factor
17383 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
17384 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
17385 input upscaled using bicubic upscaling with proper scale factor.
17386 @end table
17387
17388 @section ssim
17389
17390 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
17391
17392 This filter takes in input two input videos, the first input is
17393 considered the "main" source and is passed unchanged to the
17394 output. The second input is used as a "reference" video for computing
17395 the SSIM.
17396
17397 Both video inputs must have the same resolution and pixel format for
17398 this filter to work correctly. Also it assumes that both inputs
17399 have the same number of frames, which are compared one by one.
17400
17401 The filter stores the calculated SSIM of each frame.
17402
17403 The description of the accepted parameters follows.
17404
17405 @table @option
17406 @item stats_file, f
17407 If specified the filter will use the named file to save the SSIM of
17408 each individual frame. When filename equals "-" the data is sent to
17409 standard output.
17410 @end table
17411
17412 The file printed if @var{stats_file} is selected, contains a sequence of
17413 key/value pairs of the form @var{key}:@var{value} for each compared
17414 couple of frames.
17415
17416 A description of each shown parameter follows:
17417
17418 @table @option
17419 @item n
17420 sequential number of the input frame, starting from 1
17421
17422 @item Y, U, V, R, G, B
17423 SSIM of the compared frames for the component specified by the suffix.
17424
17425 @item All
17426 SSIM of the compared frames for the whole frame.
17427
17428 @item dB
17429 Same as above but in dB representation.
17430 @end table
17431
17432 This filter also supports the @ref{framesync} options.
17433
17434 @subsection Examples
17435 @itemize
17436 @item
17437 For example:
17438 @example
17439 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
17440 [main][ref] ssim="stats_file=stats.log" [out]
17441 @end example
17442
17443 On this example the input file being processed is compared with the
17444 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
17445 is stored in @file{stats.log}.
17446
17447 @item
17448 Another example with both psnr and ssim at same time:
17449 @example
17450 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
17451 @end example
17452
17453 @item
17454 Another example with different containers:
17455 @example
17456 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 -
17457 @end example
17458 @end itemize
17459
17460 @section stereo3d
17461
17462 Convert between different stereoscopic image formats.
17463
17464 The filters accept the following options:
17465
17466 @table @option
17467 @item in
17468 Set stereoscopic image format of input.
17469
17470 Available values for input image formats are:
17471 @table @samp
17472 @item sbsl
17473 side by side parallel (left eye left, right eye right)
17474
17475 @item sbsr
17476 side by side crosseye (right eye left, left eye right)
17477
17478 @item sbs2l
17479 side by side parallel with half width resolution
17480 (left eye left, right eye right)
17481
17482 @item sbs2r
17483 side by side crosseye with half width resolution
17484 (right eye left, left eye right)
17485
17486 @item abl
17487 @item tbl
17488 above-below (left eye above, right eye below)
17489
17490 @item abr
17491 @item tbr
17492 above-below (right eye above, left eye below)
17493
17494 @item ab2l
17495 @item tb2l
17496 above-below with half height resolution
17497 (left eye above, right eye below)
17498
17499 @item ab2r
17500 @item tb2r
17501 above-below with half height resolution
17502 (right eye above, left eye below)
17503
17504 @item al
17505 alternating frames (left eye first, right eye second)
17506
17507 @item ar
17508 alternating frames (right eye first, left eye second)
17509
17510 @item irl
17511 interleaved rows (left eye has top row, right eye starts on next row)
17512
17513 @item irr
17514 interleaved rows (right eye has top row, left eye starts on next row)
17515
17516 @item icl
17517 interleaved columns, left eye first
17518
17519 @item icr
17520 interleaved columns, right eye first
17521
17522 Default value is @samp{sbsl}.
17523 @end table
17524
17525 @item out
17526 Set stereoscopic image format of output.
17527
17528 @table @samp
17529 @item sbsl
17530 side by side parallel (left eye left, right eye right)
17531
17532 @item sbsr
17533 side by side crosseye (right eye left, left eye right)
17534
17535 @item sbs2l
17536 side by side parallel with half width resolution
17537 (left eye left, right eye right)
17538
17539 @item sbs2r
17540 side by side crosseye with half width resolution
17541 (right eye left, left eye right)
17542
17543 @item abl
17544 @item tbl
17545 above-below (left eye above, right eye below)
17546
17547 @item abr
17548 @item tbr
17549 above-below (right eye above, left eye below)
17550
17551 @item ab2l
17552 @item tb2l
17553 above-below with half height resolution
17554 (left eye above, right eye below)
17555
17556 @item ab2r
17557 @item tb2r
17558 above-below with half height resolution
17559 (right eye above, left eye below)
17560
17561 @item al
17562 alternating frames (left eye first, right eye second)
17563
17564 @item ar
17565 alternating frames (right eye first, left eye second)
17566
17567 @item irl
17568 interleaved rows (left eye has top row, right eye starts on next row)
17569
17570 @item irr
17571 interleaved rows (right eye has top row, left eye starts on next row)
17572
17573 @item arbg
17574 anaglyph red/blue gray
17575 (red filter on left eye, blue filter on right eye)
17576
17577 @item argg
17578 anaglyph red/green gray
17579 (red filter on left eye, green filter on right eye)
17580
17581 @item arcg
17582 anaglyph red/cyan gray
17583 (red filter on left eye, cyan filter on right eye)
17584
17585 @item arch
17586 anaglyph red/cyan half colored
17587 (red filter on left eye, cyan filter on right eye)
17588
17589 @item arcc
17590 anaglyph red/cyan color
17591 (red filter on left eye, cyan filter on right eye)
17592
17593 @item arcd
17594 anaglyph red/cyan color optimized with the least squares projection of dubois
17595 (red filter on left eye, cyan filter on right eye)
17596
17597 @item agmg
17598 anaglyph green/magenta gray
17599 (green filter on left eye, magenta filter on right eye)
17600
17601 @item agmh
17602 anaglyph green/magenta half colored
17603 (green filter on left eye, magenta filter on right eye)
17604
17605 @item agmc
17606 anaglyph green/magenta colored
17607 (green filter on left eye, magenta filter on right eye)
17608
17609 @item agmd
17610 anaglyph green/magenta color optimized with the least squares projection of dubois
17611 (green filter on left eye, magenta filter on right eye)
17612
17613 @item aybg
17614 anaglyph yellow/blue gray
17615 (yellow filter on left eye, blue filter on right eye)
17616
17617 @item aybh
17618 anaglyph yellow/blue half colored
17619 (yellow filter on left eye, blue filter on right eye)
17620
17621 @item aybc
17622 anaglyph yellow/blue colored
17623 (yellow filter on left eye, blue filter on right eye)
17624
17625 @item aybd
17626 anaglyph yellow/blue color optimized with the least squares projection of dubois
17627 (yellow filter on left eye, blue filter on right eye)
17628
17629 @item ml
17630 mono output (left eye only)
17631
17632 @item mr
17633 mono output (right eye only)
17634
17635 @item chl
17636 checkerboard, left eye first
17637
17638 @item chr
17639 checkerboard, right eye first
17640
17641 @item icl
17642 interleaved columns, left eye first
17643
17644 @item icr
17645 interleaved columns, right eye first
17646
17647 @item hdmi
17648 HDMI frame pack
17649 @end table
17650
17651 Default value is @samp{arcd}.
17652 @end table
17653
17654 @subsection Examples
17655
17656 @itemize
17657 @item
17658 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
17659 @example
17660 stereo3d=sbsl:aybd
17661 @end example
17662
17663 @item
17664 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
17665 @example
17666 stereo3d=abl:sbsr
17667 @end example
17668 @end itemize
17669
17670 @section streamselect, astreamselect
17671 Select video or audio streams.
17672
17673 The filter accepts the following options:
17674
17675 @table @option
17676 @item inputs
17677 Set number of inputs. Default is 2.
17678
17679 @item map
17680 Set input indexes to remap to outputs.
17681 @end table
17682
17683 @subsection Commands
17684
17685 The @code{streamselect} and @code{astreamselect} filter supports the following
17686 commands:
17687
17688 @table @option
17689 @item map
17690 Set input indexes to remap to outputs.
17691 @end table
17692
17693 @subsection Examples
17694
17695 @itemize
17696 @item
17697 Select first 5 seconds 1st stream and rest of time 2nd stream:
17698 @example
17699 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
17700 @end example
17701
17702 @item
17703 Same as above, but for audio:
17704 @example
17705 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
17706 @end example
17707 @end itemize
17708
17709 @anchor{subtitles}
17710 @section subtitles
17711
17712 Draw subtitles on top of input video using the libass library.
17713
17714 To enable compilation of this filter you need to configure FFmpeg with
17715 @code{--enable-libass}. This filter also requires a build with libavcodec and
17716 libavformat to convert the passed subtitles file to ASS (Advanced Substation
17717 Alpha) subtitles format.
17718
17719 The filter accepts the following options:
17720
17721 @table @option
17722 @item filename, f
17723 Set the filename of the subtitle file to read. It must be specified.
17724
17725 @item original_size
17726 Specify the size of the original video, the video for which the ASS file
17727 was composed. For the syntax of this option, check the
17728 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17729 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
17730 correctly scale the fonts if the aspect ratio has been changed.
17731
17732 @item fontsdir
17733 Set a directory path containing fonts that can be used by the filter.
17734 These fonts will be used in addition to whatever the font provider uses.
17735
17736 @item alpha
17737 Process alpha channel, by default alpha channel is untouched.
17738
17739 @item charenc
17740 Set subtitles input character encoding. @code{subtitles} filter only. Only
17741 useful if not UTF-8.
17742
17743 @item stream_index, si
17744 Set subtitles stream index. @code{subtitles} filter only.
17745
17746 @item force_style
17747 Override default style or script info parameters of the subtitles. It accepts a
17748 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
17749 @end table
17750
17751 If the first key is not specified, it is assumed that the first value
17752 specifies the @option{filename}.
17753
17754 For example, to render the file @file{sub.srt} on top of the input
17755 video, use the command:
17756 @example
17757 subtitles=sub.srt
17758 @end example
17759
17760 which is equivalent to:
17761 @example
17762 subtitles=filename=sub.srt
17763 @end example
17764
17765 To render the default subtitles stream from file @file{video.mkv}, use:
17766 @example
17767 subtitles=video.mkv
17768 @end example
17769
17770 To render the second subtitles stream from that file, use:
17771 @example
17772 subtitles=video.mkv:si=1
17773 @end example
17774
17775 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
17776 @code{DejaVu Serif}, use:
17777 @example
17778 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
17779 @end example
17780
17781 @section super2xsai
17782
17783 Scale the input by 2x and smooth using the Super2xSaI (Scale and
17784 Interpolate) pixel art scaling algorithm.
17785
17786 Useful for enlarging pixel art images without reducing sharpness.
17787
17788 @section swaprect
17789
17790 Swap two rectangular objects in video.
17791
17792 This filter accepts the following options:
17793
17794 @table @option
17795 @item w
17796 Set object width.
17797
17798 @item h
17799 Set object height.
17800
17801 @item x1
17802 Set 1st rect x coordinate.
17803
17804 @item y1
17805 Set 1st rect y coordinate.
17806
17807 @item x2
17808 Set 2nd rect x coordinate.
17809
17810 @item y2
17811 Set 2nd rect y coordinate.
17812
17813 All expressions are evaluated once for each frame.
17814 @end table
17815
17816 The all options are expressions containing the following constants:
17817
17818 @table @option
17819 @item w
17820 @item h
17821 The input width and height.
17822
17823 @item a
17824 same as @var{w} / @var{h}
17825
17826 @item sar
17827 input sample aspect ratio
17828
17829 @item dar
17830 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
17831
17832 @item n
17833 The number of the input frame, starting from 0.
17834
17835 @item t
17836 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
17837
17838 @item pos
17839 the position in the file of the input frame, NAN if unknown
17840 @end table
17841
17842 @section swapuv
17843 Swap U & V plane.
17844
17845 @section telecine
17846
17847 Apply telecine process to the video.
17848
17849 This filter accepts the following options:
17850
17851 @table @option
17852 @item first_field
17853 @table @samp
17854 @item top, t
17855 top field first
17856 @item bottom, b
17857 bottom field first
17858 The default value is @code{top}.
17859 @end table
17860
17861 @item pattern
17862 A string of numbers representing the pulldown pattern you wish to apply.
17863 The default value is @code{23}.
17864 @end table
17865
17866 @example
17867 Some typical patterns:
17868
17869 NTSC output (30i):
17870 27.5p: 32222
17871 24p: 23 (classic)
17872 24p: 2332 (preferred)
17873 20p: 33
17874 18p: 334
17875 16p: 3444
17876
17877 PAL output (25i):
17878 27.5p: 12222
17879 24p: 222222222223 ("Euro pulldown")
17880 16.67p: 33
17881 16p: 33333334
17882 @end example
17883
17884 @section thistogram
17885
17886 Compute and draw a color distribution histogram for the input video across time.
17887
17888 Unlike @ref{histogram} video filter which only shows histogram of single input frame
17889 at certain time, this filter shows also past histograms of number of frames defined
17890 by @code{width} option.
17891
17892 The computed histogram is a representation of the color component
17893 distribution in an image.
17894
17895 The filter accepts the following options:
17896
17897 @table @option
17898 @item width, w
17899 Set width of single color component output. Default value is @code{0}.
17900 Value of @code{0} means width will be picked from input video.
17901 This also set number of passed histograms to keep.
17902 Allowed range is [0, 8192].
17903
17904 @item display_mode, d
17905 Set display mode.
17906 It accepts the following values:
17907 @table @samp
17908 @item stack
17909 Per color component graphs are placed below each other.
17910
17911 @item parade
17912 Per color component graphs are placed side by side.
17913
17914 @item overlay
17915 Presents information identical to that in the @code{parade}, except
17916 that the graphs representing color components are superimposed directly
17917 over one another.
17918 @end table
17919 Default is @code{stack}.
17920
17921 @item levels_mode, m
17922 Set mode. Can be either @code{linear}, or @code{logarithmic}.
17923 Default is @code{linear}.
17924
17925 @item components, c
17926 Set what color components to display.
17927 Default is @code{7}.
17928
17929 @item bgopacity, b
17930 Set background opacity. Default is @code{0.9}.
17931
17932 @item envelope, e
17933 Show envelope. Default is disabled.
17934
17935 @item ecolor, ec
17936 Set envelope color. Default is @code{gold}.
17937 @end table
17938
17939 @section threshold
17940
17941 Apply threshold effect to video stream.
17942
17943 This filter needs four video streams to perform thresholding.
17944 First stream is stream we are filtering.
17945 Second stream is holding threshold values, third stream is holding min values,
17946 and last, fourth stream is holding max values.
17947
17948 The filter accepts the following option:
17949
17950 @table @option
17951 @item planes
17952 Set which planes will be processed, unprocessed planes will be copied.
17953 By default value 0xf, all planes will be processed.
17954 @end table
17955
17956 For example if first stream pixel's component value is less then threshold value
17957 of pixel component from 2nd threshold stream, third stream value will picked,
17958 otherwise fourth stream pixel component value will be picked.
17959
17960 Using color source filter one can perform various types of thresholding:
17961
17962 @subsection Examples
17963
17964 @itemize
17965 @item
17966 Binary threshold, using gray color as threshold:
17967 @example
17968 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
17969 @end example
17970
17971 @item
17972 Inverted binary threshold, using gray color as threshold:
17973 @example
17974 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
17975 @end example
17976
17977 @item
17978 Truncate binary threshold, using gray color as threshold:
17979 @example
17980 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
17981 @end example
17982
17983 @item
17984 Threshold to zero, using gray color as threshold:
17985 @example
17986 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
17987 @end example
17988
17989 @item
17990 Inverted threshold to zero, using gray color as threshold:
17991 @example
17992 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
17993 @end example
17994 @end itemize
17995
17996 @section thumbnail
17997 Select the most representative frame in a given sequence of consecutive frames.
17998
17999 The filter accepts the following options:
18000
18001 @table @option
18002 @item n
18003 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
18004 will pick one of them, and then handle the next batch of @var{n} frames until
18005 the end. Default is @code{100}.
18006 @end table
18007
18008 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
18009 value will result in a higher memory usage, so a high value is not recommended.
18010
18011 @subsection Examples
18012
18013 @itemize
18014 @item
18015 Extract one picture each 50 frames:
18016 @example
18017 thumbnail=50
18018 @end example
18019
18020 @item
18021 Complete example of a thumbnail creation with @command{ffmpeg}:
18022 @example
18023 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
18024 @end example
18025 @end itemize
18026
18027 @section tile
18028
18029 Tile several successive frames together.
18030
18031 The filter accepts the following options:
18032
18033 @table @option
18034
18035 @item layout
18036 Set the grid size (i.e. the number of lines and columns). For the syntax of
18037 this option, check the
18038 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18039
18040 @item nb_frames
18041 Set the maximum number of frames to render in the given area. It must be less
18042 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
18043 the area will be used.
18044
18045 @item margin
18046 Set the outer border margin in pixels.
18047
18048 @item padding
18049 Set the inner border thickness (i.e. the number of pixels between frames). For
18050 more advanced padding options (such as having different values for the edges),
18051 refer to the pad video filter.
18052
18053 @item color
18054 Specify the color of the unused area. For the syntax of this option, check the
18055 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18056 The default value of @var{color} is "black".
18057
18058 @item overlap
18059 Set the number of frames to overlap when tiling several successive frames together.
18060 The value must be between @code{0} and @var{nb_frames - 1}.
18061
18062 @item init_padding
18063 Set the number of frames to initially be empty before displaying first output frame.
18064 This controls how soon will one get first output frame.
18065 The value must be between @code{0} and @var{nb_frames - 1}.
18066 @end table
18067
18068 @subsection Examples
18069
18070 @itemize
18071 @item
18072 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
18073 @example
18074 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
18075 @end example
18076 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
18077 duplicating each output frame to accommodate the originally detected frame
18078 rate.
18079
18080 @item
18081 Display @code{5} pictures in an area of @code{3x2} frames,
18082 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
18083 mixed flat and named options:
18084 @example
18085 tile=3x2:nb_frames=5:padding=7:margin=2
18086 @end example
18087 @end itemize
18088
18089 @section tinterlace
18090
18091 Perform various types of temporal field interlacing.
18092
18093 Frames are counted starting from 1, so the first input frame is
18094 considered odd.
18095
18096 The filter accepts the following options:
18097
18098 @table @option
18099
18100 @item mode
18101 Specify the mode of the interlacing. This option can also be specified
18102 as a value alone. See below for a list of values for this option.
18103
18104 Available values are:
18105
18106 @table @samp
18107 @item merge, 0
18108 Move odd frames into the upper field, even into the lower field,
18109 generating a double height frame at half frame rate.
18110 @example
18111  ------> time
18112 Input:
18113 Frame 1         Frame 2         Frame 3         Frame 4
18114
18115 11111           22222           33333           44444
18116 11111           22222           33333           44444
18117 11111           22222           33333           44444
18118 11111           22222           33333           44444
18119
18120 Output:
18121 11111                           33333
18122 22222                           44444
18123 11111                           33333
18124 22222                           44444
18125 11111                           33333
18126 22222                           44444
18127 11111                           33333
18128 22222                           44444
18129 @end example
18130
18131 @item drop_even, 1
18132 Only output odd frames, even frames are dropped, generating a frame with
18133 unchanged height at half frame rate.
18134
18135 @example
18136  ------> time
18137 Input:
18138 Frame 1         Frame 2         Frame 3         Frame 4
18139
18140 11111           22222           33333           44444
18141 11111           22222           33333           44444
18142 11111           22222           33333           44444
18143 11111           22222           33333           44444
18144
18145 Output:
18146 11111                           33333
18147 11111                           33333
18148 11111                           33333
18149 11111                           33333
18150 @end example
18151
18152 @item drop_odd, 2
18153 Only output even frames, odd frames are dropped, generating a frame with
18154 unchanged height at half frame rate.
18155
18156 @example
18157  ------> time
18158 Input:
18159 Frame 1         Frame 2         Frame 3         Frame 4
18160
18161 11111           22222           33333           44444
18162 11111           22222           33333           44444
18163 11111           22222           33333           44444
18164 11111           22222           33333           44444
18165
18166 Output:
18167                 22222                           44444
18168                 22222                           44444
18169                 22222                           44444
18170                 22222                           44444
18171 @end example
18172
18173 @item pad, 3
18174 Expand each frame to full height, but pad alternate lines with black,
18175 generating a frame with double height at the same input frame rate.
18176
18177 @example
18178  ------> time
18179 Input:
18180 Frame 1         Frame 2         Frame 3         Frame 4
18181
18182 11111           22222           33333           44444
18183 11111           22222           33333           44444
18184 11111           22222           33333           44444
18185 11111           22222           33333           44444
18186
18187 Output:
18188 11111           .....           33333           .....
18189 .....           22222           .....           44444
18190 11111           .....           33333           .....
18191 .....           22222           .....           44444
18192 11111           .....           33333           .....
18193 .....           22222           .....           44444
18194 11111           .....           33333           .....
18195 .....           22222           .....           44444
18196 @end example
18197
18198
18199 @item interleave_top, 4
18200 Interleave the upper field from odd frames with the lower field from
18201 even frames, generating a frame with unchanged height at half frame rate.
18202
18203 @example
18204  ------> time
18205 Input:
18206 Frame 1         Frame 2         Frame 3         Frame 4
18207
18208 11111<-         22222           33333<-         44444
18209 11111           22222<-         33333           44444<-
18210 11111<-         22222           33333<-         44444
18211 11111           22222<-         33333           44444<-
18212
18213 Output:
18214 11111                           33333
18215 22222                           44444
18216 11111                           33333
18217 22222                           44444
18218 @end example
18219
18220
18221 @item interleave_bottom, 5
18222 Interleave the lower field from odd frames with the upper field from
18223 even frames, generating a frame with unchanged height at half frame rate.
18224
18225 @example
18226  ------> time
18227 Input:
18228 Frame 1         Frame 2         Frame 3         Frame 4
18229
18230 11111           22222<-         33333           44444<-
18231 11111<-         22222           33333<-         44444
18232 11111           22222<-         33333           44444<-
18233 11111<-         22222           33333<-         44444
18234
18235 Output:
18236 22222                           44444
18237 11111                           33333
18238 22222                           44444
18239 11111                           33333
18240 @end example
18241
18242
18243 @item interlacex2, 6
18244 Double frame rate with unchanged height. Frames are inserted each
18245 containing the second temporal field from the previous input frame and
18246 the first temporal field from the next input frame. This mode relies on
18247 the top_field_first flag. Useful for interlaced video displays with no
18248 field synchronisation.
18249
18250 @example
18251  ------> time
18252 Input:
18253 Frame 1         Frame 2         Frame 3         Frame 4
18254
18255 11111           22222           33333           44444
18256  11111           22222           33333           44444
18257 11111           22222           33333           44444
18258  11111           22222           33333           44444
18259
18260 Output:
18261 11111   22222   22222   33333   33333   44444   44444
18262  11111   11111   22222   22222   33333   33333   44444
18263 11111   22222   22222   33333   33333   44444   44444
18264  11111   11111   22222   22222   33333   33333   44444
18265 @end example
18266
18267
18268 @item mergex2, 7
18269 Move odd frames into the upper field, even into the lower field,
18270 generating a double height frame at same frame rate.
18271
18272 @example
18273  ------> time
18274 Input:
18275 Frame 1         Frame 2         Frame 3         Frame 4
18276
18277 11111           22222           33333           44444
18278 11111           22222           33333           44444
18279 11111           22222           33333           44444
18280 11111           22222           33333           44444
18281
18282 Output:
18283 11111           33333           33333           55555
18284 22222           22222           44444           44444
18285 11111           33333           33333           55555
18286 22222           22222           44444           44444
18287 11111           33333           33333           55555
18288 22222           22222           44444           44444
18289 11111           33333           33333           55555
18290 22222           22222           44444           44444
18291 @end example
18292
18293 @end table
18294
18295 Numeric values are deprecated but are accepted for backward
18296 compatibility reasons.
18297
18298 Default mode is @code{merge}.
18299
18300 @item flags
18301 Specify flags influencing the filter process.
18302
18303 Available value for @var{flags} is:
18304
18305 @table @option
18306 @item low_pass_filter, vlpf
18307 Enable linear vertical low-pass filtering in the filter.
18308 Vertical low-pass filtering is required when creating an interlaced
18309 destination from a progressive source which contains high-frequency
18310 vertical detail. Filtering will reduce interlace 'twitter' and Moire
18311 patterning.
18312
18313 @item complex_filter, cvlpf
18314 Enable complex vertical low-pass filtering.
18315 This will slightly less reduce interlace 'twitter' and Moire
18316 patterning but better retain detail and subjective sharpness impression.
18317
18318 @item bypass_il
18319 Bypass already interlaced frames, only adjust the frame rate.
18320 @end table
18321
18322 Vertical low-pass filtering and bypassing already interlaced frames can only be
18323 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
18324
18325 @end table
18326
18327 @section tmix
18328
18329 Mix successive video frames.
18330
18331 A description of the accepted options follows.
18332
18333 @table @option
18334 @item frames
18335 The number of successive frames to mix. If unspecified, it defaults to 3.
18336
18337 @item weights
18338 Specify weight of each input video frame.
18339 Each weight is separated by space. If number of weights is smaller than
18340 number of @var{frames} last specified weight will be used for all remaining
18341 unset weights.
18342
18343 @item scale
18344 Specify scale, if it is set it will be multiplied with sum
18345 of each weight multiplied with pixel values to give final destination
18346 pixel value. By default @var{scale} is auto scaled to sum of weights.
18347 @end table
18348
18349 @subsection Examples
18350
18351 @itemize
18352 @item
18353 Average 7 successive frames:
18354 @example
18355 tmix=frames=7:weights="1 1 1 1 1 1 1"
18356 @end example
18357
18358 @item
18359 Apply simple temporal convolution:
18360 @example
18361 tmix=frames=3:weights="-1 3 -1"
18362 @end example
18363
18364 @item
18365 Similar as above but only showing temporal differences:
18366 @example
18367 tmix=frames=3:weights="-1 2 -1":scale=1
18368 @end example
18369 @end itemize
18370
18371 @anchor{tonemap}
18372 @section tonemap
18373 Tone map colors from different dynamic ranges.
18374
18375 This filter expects data in single precision floating point, as it needs to
18376 operate on (and can output) out-of-range values. Another filter, such as
18377 @ref{zscale}, is needed to convert the resulting frame to a usable format.
18378
18379 The tonemapping algorithms implemented only work on linear light, so input
18380 data should be linearized beforehand (and possibly correctly tagged).
18381
18382 @example
18383 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
18384 @end example
18385
18386 @subsection Options
18387 The filter accepts the following options.
18388
18389 @table @option
18390 @item tonemap
18391 Set the tone map algorithm to use.
18392
18393 Possible values are:
18394 @table @var
18395 @item none
18396 Do not apply any tone map, only desaturate overbright pixels.
18397
18398 @item clip
18399 Hard-clip any out-of-range values. Use it for perfect color accuracy for
18400 in-range values, while distorting out-of-range values.
18401
18402 @item linear
18403 Stretch the entire reference gamut to a linear multiple of the display.
18404
18405 @item gamma
18406 Fit a logarithmic transfer between the tone curves.
18407
18408 @item reinhard
18409 Preserve overall image brightness with a simple curve, using nonlinear
18410 contrast, which results in flattening details and degrading color accuracy.
18411
18412 @item hable
18413 Preserve both dark and bright details better than @var{reinhard}, at the cost
18414 of slightly darkening everything. Use it when detail preservation is more
18415 important than color and brightness accuracy.
18416
18417 @item mobius
18418 Smoothly map out-of-range values, while retaining contrast and colors for
18419 in-range material as much as possible. Use it when color accuracy is more
18420 important than detail preservation.
18421 @end table
18422
18423 Default is none.
18424
18425 @item param
18426 Tune the tone mapping algorithm.
18427
18428 This affects the following algorithms:
18429 @table @var
18430 @item none
18431 Ignored.
18432
18433 @item linear
18434 Specifies the scale factor to use while stretching.
18435 Default to 1.0.
18436
18437 @item gamma
18438 Specifies the exponent of the function.
18439 Default to 1.8.
18440
18441 @item clip
18442 Specify an extra linear coefficient to multiply into the signal before clipping.
18443 Default to 1.0.
18444
18445 @item reinhard
18446 Specify the local contrast coefficient at the display peak.
18447 Default to 0.5, which means that in-gamut values will be about half as bright
18448 as when clipping.
18449
18450 @item hable
18451 Ignored.
18452
18453 @item mobius
18454 Specify the transition point from linear to mobius transform. Every value
18455 below this point is guaranteed to be mapped 1:1. The higher the value, the
18456 more accurate the result will be, at the cost of losing bright details.
18457 Default to 0.3, which due to the steep initial slope still preserves in-range
18458 colors fairly accurately.
18459 @end table
18460
18461 @item desat
18462 Apply desaturation for highlights that exceed this level of brightness. The
18463 higher the parameter, the more color information will be preserved. This
18464 setting helps prevent unnaturally blown-out colors for super-highlights, by
18465 (smoothly) turning into white instead. This makes images feel more natural,
18466 at the cost of reducing information about out-of-range colors.
18467
18468 The default of 2.0 is somewhat conservative and will mostly just apply to
18469 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
18470
18471 This option works only if the input frame has a supported color tag.
18472
18473 @item peak
18474 Override signal/nominal/reference peak with this value. Useful when the
18475 embedded peak information in display metadata is not reliable or when tone
18476 mapping from a lower range to a higher range.
18477 @end table
18478
18479 @section tpad
18480
18481 Temporarily pad video frames.
18482
18483 The filter accepts the following options:
18484
18485 @table @option
18486 @item start
18487 Specify number of delay frames before input video stream.
18488
18489 @item stop
18490 Specify number of padding frames after input video stream.
18491 Set to -1 to pad indefinitely.
18492
18493 @item start_mode
18494 Set kind of frames added to beginning of stream.
18495 Can be either @var{add} or @var{clone}.
18496 With @var{add} frames of solid-color are added.
18497 With @var{clone} frames are clones of first frame.
18498
18499 @item stop_mode
18500 Set kind of frames added to end of stream.
18501 Can be either @var{add} or @var{clone}.
18502 With @var{add} frames of solid-color are added.
18503 With @var{clone} frames are clones of last frame.
18504
18505 @item start_duration, stop_duration
18506 Specify the duration of the start/stop delay. See
18507 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18508 for the accepted syntax.
18509 These options override @var{start} and @var{stop}.
18510
18511 @item color
18512 Specify the color of the padded area. For the syntax of this option,
18513 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
18514 manual,ffmpeg-utils}.
18515
18516 The default value of @var{color} is "black".
18517 @end table
18518
18519 @anchor{transpose}
18520 @section transpose
18521
18522 Transpose rows with columns in the input video and optionally flip it.
18523
18524 It accepts the following parameters:
18525
18526 @table @option
18527
18528 @item dir
18529 Specify the transposition direction.
18530
18531 Can assume the following values:
18532 @table @samp
18533 @item 0, 4, cclock_flip
18534 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
18535 @example
18536 L.R     L.l
18537 . . ->  . .
18538 l.r     R.r
18539 @end example
18540
18541 @item 1, 5, clock
18542 Rotate by 90 degrees clockwise, that is:
18543 @example
18544 L.R     l.L
18545 . . ->  . .
18546 l.r     r.R
18547 @end example
18548
18549 @item 2, 6, cclock
18550 Rotate by 90 degrees counterclockwise, that is:
18551 @example
18552 L.R     R.r
18553 . . ->  . .
18554 l.r     L.l
18555 @end example
18556
18557 @item 3, 7, clock_flip
18558 Rotate by 90 degrees clockwise and vertically flip, that is:
18559 @example
18560 L.R     r.R
18561 . . ->  . .
18562 l.r     l.L
18563 @end example
18564 @end table
18565
18566 For values between 4-7, the transposition is only done if the input
18567 video geometry is portrait and not landscape. These values are
18568 deprecated, the @code{passthrough} option should be used instead.
18569
18570 Numerical values are deprecated, and should be dropped in favor of
18571 symbolic constants.
18572
18573 @item passthrough
18574 Do not apply the transposition if the input geometry matches the one
18575 specified by the specified value. It accepts the following values:
18576 @table @samp
18577 @item none
18578 Always apply transposition.
18579 @item portrait
18580 Preserve portrait geometry (when @var{height} >= @var{width}).
18581 @item landscape
18582 Preserve landscape geometry (when @var{width} >= @var{height}).
18583 @end table
18584
18585 Default value is @code{none}.
18586 @end table
18587
18588 For example to rotate by 90 degrees clockwise and preserve portrait
18589 layout:
18590 @example
18591 transpose=dir=1:passthrough=portrait
18592 @end example
18593
18594 The command above can also be specified as:
18595 @example
18596 transpose=1:portrait
18597 @end example
18598
18599 @section transpose_npp
18600
18601 Transpose rows with columns in the input video and optionally flip it.
18602 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
18603
18604 It accepts the following parameters:
18605
18606 @table @option
18607
18608 @item dir
18609 Specify the transposition direction.
18610
18611 Can assume the following values:
18612 @table @samp
18613 @item cclock_flip
18614 Rotate by 90 degrees counterclockwise and vertically flip. (default)
18615
18616 @item clock
18617 Rotate by 90 degrees clockwise.
18618
18619 @item cclock
18620 Rotate by 90 degrees counterclockwise.
18621
18622 @item clock_flip
18623 Rotate by 90 degrees clockwise and vertically flip.
18624 @end table
18625
18626 @item passthrough
18627 Do not apply the transposition if the input geometry matches the one
18628 specified by the specified value. It accepts the following values:
18629 @table @samp
18630 @item none
18631 Always apply transposition. (default)
18632 @item portrait
18633 Preserve portrait geometry (when @var{height} >= @var{width}).
18634 @item landscape
18635 Preserve landscape geometry (when @var{width} >= @var{height}).
18636 @end table
18637
18638 @end table
18639
18640 @section trim
18641 Trim the input so that the output contains one continuous subpart of the input.
18642
18643 It accepts the following parameters:
18644 @table @option
18645 @item start
18646 Specify the time of the start of the kept section, i.e. the frame with the
18647 timestamp @var{start} will be the first frame in the output.
18648
18649 @item end
18650 Specify the time of the first frame that will be dropped, i.e. the frame
18651 immediately preceding the one with the timestamp @var{end} will be the last
18652 frame in the output.
18653
18654 @item start_pts
18655 This is the same as @var{start}, except this option sets the start timestamp
18656 in timebase units instead of seconds.
18657
18658 @item end_pts
18659 This is the same as @var{end}, except this option sets the end timestamp
18660 in timebase units instead of seconds.
18661
18662 @item duration
18663 The maximum duration of the output in seconds.
18664
18665 @item start_frame
18666 The number of the first frame that should be passed to the output.
18667
18668 @item end_frame
18669 The number of the first frame that should be dropped.
18670 @end table
18671
18672 @option{start}, @option{end}, and @option{duration} are expressed as time
18673 duration specifications; see
18674 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18675 for the accepted syntax.
18676
18677 Note that the first two sets of the start/end options and the @option{duration}
18678 option look at the frame timestamp, while the _frame variants simply count the
18679 frames that pass through the filter. Also note that this filter does not modify
18680 the timestamps. If you wish for the output timestamps to start at zero, insert a
18681 setpts filter after the trim filter.
18682
18683 If multiple start or end options are set, this filter tries to be greedy and
18684 keep all the frames that match at least one of the specified constraints. To keep
18685 only the part that matches all the constraints at once, chain multiple trim
18686 filters.
18687
18688 The defaults are such that all the input is kept. So it is possible to set e.g.
18689 just the end values to keep everything before the specified time.
18690
18691 Examples:
18692 @itemize
18693 @item
18694 Drop everything except the second minute of input:
18695 @example
18696 ffmpeg -i INPUT -vf trim=60:120
18697 @end example
18698
18699 @item
18700 Keep only the first second:
18701 @example
18702 ffmpeg -i INPUT -vf trim=duration=1
18703 @end example
18704
18705 @end itemize
18706
18707 @section unpremultiply
18708 Apply alpha unpremultiply effect to input video stream using first plane
18709 of second stream as alpha.
18710
18711 Both streams must have same dimensions and same pixel format.
18712
18713 The filter accepts the following option:
18714
18715 @table @option
18716 @item planes
18717 Set which planes will be processed, unprocessed planes will be copied.
18718 By default value 0xf, all planes will be processed.
18719
18720 If the format has 1 or 2 components, then luma is bit 0.
18721 If the format has 3 or 4 components:
18722 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
18723 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
18724 If present, the alpha channel is always the last bit.
18725
18726 @item inplace
18727 Do not require 2nd input for processing, instead use alpha plane from input stream.
18728 @end table
18729
18730 @anchor{unsharp}
18731 @section unsharp
18732
18733 Sharpen or blur the input video.
18734
18735 It accepts the following parameters:
18736
18737 @table @option
18738 @item luma_msize_x, lx
18739 Set the luma matrix horizontal size. It must be an odd integer between
18740 3 and 23. The default value is 5.
18741
18742 @item luma_msize_y, ly
18743 Set the luma matrix vertical size. It must be an odd integer between 3
18744 and 23. The default value is 5.
18745
18746 @item luma_amount, la
18747 Set the luma effect strength. It must be a floating point number, reasonable
18748 values lay between -1.5 and 1.5.
18749
18750 Negative values will blur the input video, while positive values will
18751 sharpen it, a value of zero will disable the effect.
18752
18753 Default value is 1.0.
18754
18755 @item chroma_msize_x, cx
18756 Set the chroma matrix horizontal size. It must be an odd integer
18757 between 3 and 23. The default value is 5.
18758
18759 @item chroma_msize_y, cy
18760 Set the chroma matrix vertical size. It must be an odd integer
18761 between 3 and 23. The default value is 5.
18762
18763 @item chroma_amount, ca
18764 Set the chroma effect strength. It must be a floating point number, reasonable
18765 values lay between -1.5 and 1.5.
18766
18767 Negative values will blur the input video, while positive values will
18768 sharpen it, a value of zero will disable the effect.
18769
18770 Default value is 0.0.
18771
18772 @end table
18773
18774 All parameters are optional and default to the equivalent of the
18775 string '5:5:1.0:5:5:0.0'.
18776
18777 @subsection Examples
18778
18779 @itemize
18780 @item
18781 Apply strong luma sharpen effect:
18782 @example
18783 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
18784 @end example
18785
18786 @item
18787 Apply a strong blur of both luma and chroma parameters:
18788 @example
18789 unsharp=7:7:-2:7:7:-2
18790 @end example
18791 @end itemize
18792
18793 @section uspp
18794
18795 Apply ultra slow/simple postprocessing filter that compresses and decompresses
18796 the image at several (or - in the case of @option{quality} level @code{8} - all)
18797 shifts and average the results.
18798
18799 The way this differs from the behavior of spp is that uspp actually encodes &
18800 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
18801 DCT similar to MJPEG.
18802
18803 The filter accepts the following options:
18804
18805 @table @option
18806 @item quality
18807 Set quality. This option defines the number of levels for averaging. It accepts
18808 an integer in the range 0-8. If set to @code{0}, the filter will have no
18809 effect. A value of @code{8} means the higher quality. For each increment of
18810 that value the speed drops by a factor of approximately 2.  Default value is
18811 @code{3}.
18812
18813 @item qp
18814 Force a constant quantization parameter. If not set, the filter will use the QP
18815 from the video stream (if available).
18816 @end table
18817
18818 @section v360
18819
18820 Convert 360 videos between various formats.
18821
18822 The filter accepts the following options:
18823
18824 @table @option
18825
18826 @item input
18827 @item output
18828 Set format of the input/output video.
18829
18830 Available formats:
18831
18832 @table @samp
18833
18834 @item e
18835 @item equirect
18836 Equirectangular projection.
18837
18838 @item c3x2
18839 @item c6x1
18840 @item c1x6
18841 Cubemap with 3x2/6x1/1x6 layout.
18842
18843 Format specific options:
18844
18845 @table @option
18846 @item in_pad
18847 @item out_pad
18848 Set padding proportion for the input/output cubemap. Values in decimals.
18849
18850 Example values:
18851 @table @samp
18852 @item 0
18853 No padding.
18854 @item 0.01
18855 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)
18856 @end table
18857
18858 Default value is @b{@samp{0}}.
18859
18860 @item fin_pad
18861 @item fout_pad
18862 Set fixed padding for the input/output cubemap. Values in pixels.
18863
18864 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
18865
18866 @item in_forder
18867 @item out_forder
18868 Set order of faces for the input/output cubemap. Choose one direction for each position.
18869
18870 Designation of directions:
18871 @table @samp
18872 @item r
18873 right
18874 @item l
18875 left
18876 @item u
18877 up
18878 @item d
18879 down
18880 @item f
18881 forward
18882 @item b
18883 back
18884 @end table
18885
18886 Default value is @b{@samp{rludfb}}.
18887
18888 @item in_frot
18889 @item out_frot
18890 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
18891
18892 Designation of angles:
18893 @table @samp
18894 @item 0
18895 0 degrees clockwise
18896 @item 1
18897 90 degrees clockwise
18898 @item 2
18899 180 degrees clockwise
18900 @item 3
18901 270 degrees clockwise
18902 @end table
18903
18904 Default value is @b{@samp{000000}}.
18905 @end table
18906
18907 @item eac
18908 Equi-Angular Cubemap.
18909
18910 @item flat
18911 @item gnomonic
18912 @item rectilinear
18913 Regular video.
18914
18915 Format specific options:
18916 @table @option
18917 @item h_fov
18918 @item v_fov
18919 @item d_fov
18920 Set output horizontal/vertical/diagonal field of view. Values in degrees.
18921
18922 If diagonal field of view is set it overrides horizontal and vertical field of view.
18923
18924 @item ih_fov
18925 @item iv_fov
18926 @item id_fov
18927 Set input horizontal/vertical/diagonal field of view. Values in degrees.
18928
18929 If diagonal field of view is set it overrides horizontal and vertical field of view.
18930 @end table
18931
18932 @item dfisheye
18933 Dual fisheye.
18934
18935 Format specific options:
18936 @table @option
18937 @item in_pad
18938 @item out_pad
18939 Set padding proportion. Values in decimals.
18940
18941 Example values:
18942 @table @samp
18943 @item 0
18944 No padding.
18945 @item 0.01
18946 1% padding.
18947 @end table
18948
18949 Default value is @b{@samp{0}}.
18950 @end table
18951
18952 @item barrel
18953 @item fb
18954 Facebook's 360 format.
18955
18956 @item sg
18957 Stereographic format.
18958
18959 Format specific options:
18960 @table @option
18961 @item h_fov
18962 @item v_fov
18963 @item d_fov
18964 Set output horizontal/vertical/diagonal field of view. Values in degrees.
18965
18966 If diagonal field of view is set it overrides horizontal and vertical field of view.
18967
18968 @item ih_fov
18969 @item iv_fov
18970 @item id_fov
18971 Set input horizontal/vertical/diagonal field of view. Values in degrees.
18972
18973 If diagonal field of view is set it overrides horizontal and vertical field of view.
18974 @end table
18975
18976 @item mercator
18977 Mercator format.
18978
18979 @item ball
18980 Ball format, gives significant distortion toward the back.
18981
18982 @item hammer
18983 Hammer-Aitoff map projection format.
18984
18985 @item sinusoidal
18986 Sinusoidal map projection format.
18987
18988 @item fisheye
18989 Fisheye projection.
18990
18991 Format specific options:
18992 @table @option
18993 @item h_fov
18994 @item v_fov
18995 @item d_fov
18996 Set output horizontal/vertical/diagonal field of view. Values in degrees.
18997
18998 If diagonal field of view is set it overrides horizontal and vertical field of view.
18999
19000 @item ih_fov
19001 @item iv_fov
19002 @item id_fov
19003 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19004
19005 If diagonal field of view is set it overrides horizontal and vertical field of view.
19006 @end table
19007
19008 @item pannini
19009 Pannini projection. @i{(output only)}
19010
19011 Format specific options:
19012 @table @option
19013 @item h_fov
19014 Set pannini parameter.
19015 @end table
19016
19017 @item cylindrical
19018 Cylindrical projection.
19019
19020 Format specific options:
19021 @table @option
19022 @item h_fov
19023 @item v_fov
19024 @item d_fov
19025 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19026
19027 If diagonal field of view is set it overrides horizontal and vertical field of view.
19028
19029 @item ih_fov
19030 @item iv_fov
19031 @item id_fov
19032 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19033
19034 If diagonal field of view is set it overrides horizontal and vertical field of view.
19035 @end table
19036
19037 @item perspective
19038 Perspective projection. @i{(output only)}
19039
19040 Format specific options:
19041 @table @option
19042 @item v_fov
19043 Set perspective parameter.
19044 @end table
19045
19046 @item tetrahedron
19047 Tetrahedron projection.
19048 @end table
19049
19050 @item interp
19051 Set interpolation method.@*
19052 @i{Note: more complex interpolation methods require much more memory to run.}
19053
19054 Available methods:
19055
19056 @table @samp
19057 @item near
19058 @item nearest
19059 Nearest neighbour.
19060 @item line
19061 @item linear
19062 Bilinear interpolation.
19063 @item cube
19064 @item cubic
19065 Bicubic interpolation.
19066 @item lanc
19067 @item lanczos
19068 Lanczos interpolation.
19069 @item sp16
19070 @item spline16
19071 Spline16 interpolation.
19072 @item gauss
19073 @item gaussian
19074 Gaussian interpolation.
19075 @end table
19076
19077 Default value is @b{@samp{line}}.
19078
19079 @item w
19080 @item h
19081 Set the output video resolution.
19082
19083 Default resolution depends on formats.
19084
19085 @item in_stereo
19086 @item out_stereo
19087 Set the input/output stereo format.
19088
19089 @table @samp
19090 @item 2d
19091 2D mono
19092 @item sbs
19093 Side by side
19094 @item tb
19095 Top bottom
19096 @end table
19097
19098 Default value is @b{@samp{2d}} for input and output format.
19099
19100 @item yaw
19101 @item pitch
19102 @item roll
19103 Set rotation for the output video. Values in degrees.
19104
19105 @item rorder
19106 Set rotation order for the output video. Choose one item for each position.
19107
19108 @table @samp
19109 @item y, Y
19110 yaw
19111 @item p, P
19112 pitch
19113 @item r, R
19114 roll
19115 @end table
19116
19117 Default value is @b{@samp{ypr}}.
19118
19119 @item h_flip
19120 @item v_flip
19121 @item d_flip
19122 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
19123
19124 @item ih_flip
19125 @item iv_flip
19126 Set if input video is flipped horizontally/vertically. Boolean values.
19127
19128 @item in_trans
19129 Set if input video is transposed. Boolean value, by default disabled.
19130
19131 @item out_trans
19132 Set if output video needs to be transposed. Boolean value, by default disabled.
19133
19134 @item alpha_mask
19135 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
19136 @end table
19137
19138 @subsection Examples
19139
19140 @itemize
19141 @item
19142 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
19143 @example
19144 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
19145 @end example
19146 @item
19147 Extract back view of Equi-Angular Cubemap:
19148 @example
19149 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
19150 @end example
19151 @item
19152 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
19153 @example
19154 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
19155 @end example
19156 @end itemize
19157
19158 @section vaguedenoiser
19159
19160 Apply a wavelet based denoiser.
19161
19162 It transforms each frame from the video input into the wavelet domain,
19163 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
19164 the obtained coefficients. It does an inverse wavelet transform after.
19165 Due to wavelet properties, it should give a nice smoothed result, and
19166 reduced noise, without blurring picture features.
19167
19168 This filter accepts the following options:
19169
19170 @table @option
19171 @item threshold
19172 The filtering strength. The higher, the more filtered the video will be.
19173 Hard thresholding can use a higher threshold than soft thresholding
19174 before the video looks overfiltered. Default value is 2.
19175
19176 @item method
19177 The filtering method the filter will use.
19178
19179 It accepts the following values:
19180 @table @samp
19181 @item hard
19182 All values under the threshold will be zeroed.
19183
19184 @item soft
19185 All values under the threshold will be zeroed. All values above will be
19186 reduced by the threshold.
19187
19188 @item garrote
19189 Scales or nullifies coefficients - intermediary between (more) soft and
19190 (less) hard thresholding.
19191 @end table
19192
19193 Default is garrote.
19194
19195 @item nsteps
19196 Number of times, the wavelet will decompose the picture. Picture can't
19197 be decomposed beyond a particular point (typically, 8 for a 640x480
19198 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
19199
19200 @item percent
19201 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
19202
19203 @item planes
19204 A list of the planes to process. By default all planes are processed.
19205 @end table
19206
19207 @section vectorscope
19208
19209 Display 2 color component values in the two dimensional graph (which is called
19210 a vectorscope).
19211
19212 This filter accepts the following options:
19213
19214 @table @option
19215 @item mode, m
19216 Set vectorscope mode.
19217
19218 It accepts the following values:
19219 @table @samp
19220 @item gray
19221 @item tint
19222 Gray values are displayed on graph, higher brightness means more pixels have
19223 same component color value on location in graph. This is the default mode.
19224
19225 @item color
19226 Gray values are displayed on graph. Surrounding pixels values which are not
19227 present in video frame are drawn in gradient of 2 color components which are
19228 set by option @code{x} and @code{y}. The 3rd color component is static.
19229
19230 @item color2
19231 Actual color components values present in video frame are displayed on graph.
19232
19233 @item color3
19234 Similar as color2 but higher frequency of same values @code{x} and @code{y}
19235 on graph increases value of another color component, which is luminance by
19236 default values of @code{x} and @code{y}.
19237
19238 @item color4
19239 Actual colors present in video frame are displayed on graph. If two different
19240 colors map to same position on graph then color with higher value of component
19241 not present in graph is picked.
19242
19243 @item color5
19244 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
19245 component picked from radial gradient.
19246 @end table
19247
19248 @item x
19249 Set which color component will be represented on X-axis. Default is @code{1}.
19250
19251 @item y
19252 Set which color component will be represented on Y-axis. Default is @code{2}.
19253
19254 @item intensity, i
19255 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
19256 of color component which represents frequency of (X, Y) location in graph.
19257
19258 @item envelope, e
19259 @table @samp
19260 @item none
19261 No envelope, this is default.
19262
19263 @item instant
19264 Instant envelope, even darkest single pixel will be clearly highlighted.
19265
19266 @item peak
19267 Hold maximum and minimum values presented in graph over time. This way you
19268 can still spot out of range values without constantly looking at vectorscope.
19269
19270 @item peak+instant
19271 Peak and instant envelope combined together.
19272 @end table
19273
19274 @item graticule, g
19275 Set what kind of graticule to draw.
19276 @table @samp
19277 @item none
19278 @item green
19279 @item color
19280 @item invert
19281 @end table
19282
19283 @item opacity, o
19284 Set graticule opacity.
19285
19286 @item flags, f
19287 Set graticule flags.
19288
19289 @table @samp
19290 @item white
19291 Draw graticule for white point.
19292
19293 @item black
19294 Draw graticule for black point.
19295
19296 @item name
19297 Draw color points short names.
19298 @end table
19299
19300 @item bgopacity, b
19301 Set background opacity.
19302
19303 @item lthreshold, l
19304 Set low threshold for color component not represented on X or Y axis.
19305 Values lower than this value will be ignored. Default is 0.
19306 Note this value is multiplied with actual max possible value one pixel component
19307 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
19308 is 0.1 * 255 = 25.
19309
19310 @item hthreshold, h
19311 Set high threshold for color component not represented on X or Y axis.
19312 Values higher than this value will be ignored. Default is 1.
19313 Note this value is multiplied with actual max possible value one pixel component
19314 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
19315 is 0.9 * 255 = 230.
19316
19317 @item colorspace, c
19318 Set what kind of colorspace to use when drawing graticule.
19319 @table @samp
19320 @item auto
19321 @item 601
19322 @item 709
19323 @end table
19324 Default is auto.
19325
19326 @item tint0, t0
19327 @item tint1, t1
19328 Set color tint for gray/tint vectorscope mode. By default both options are zero.
19329 This means no tint, and output will remain gray.
19330 @end table
19331
19332 @anchor{vidstabdetect}
19333 @section vidstabdetect
19334
19335 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
19336 @ref{vidstabtransform} for pass 2.
19337
19338 This filter generates a file with relative translation and rotation
19339 transform information about subsequent frames, which is then used by
19340 the @ref{vidstabtransform} filter.
19341
19342 To enable compilation of this filter you need to configure FFmpeg with
19343 @code{--enable-libvidstab}.
19344
19345 This filter accepts the following options:
19346
19347 @table @option
19348 @item result
19349 Set the path to the file used to write the transforms information.
19350 Default value is @file{transforms.trf}.
19351
19352 @item shakiness
19353 Set how shaky the video is and how quick the camera is. It accepts an
19354 integer in the range 1-10, a value of 1 means little shakiness, a
19355 value of 10 means strong shakiness. Default value is 5.
19356
19357 @item accuracy
19358 Set the accuracy of the detection process. It must be a value in the
19359 range 1-15. A value of 1 means low accuracy, a value of 15 means high
19360 accuracy. Default value is 15.
19361
19362 @item stepsize
19363 Set stepsize of the search process. The region around minimum is
19364 scanned with 1 pixel resolution. Default value is 6.
19365
19366 @item mincontrast
19367 Set minimum contrast. Below this value a local measurement field is
19368 discarded. Must be a floating point value in the range 0-1. Default
19369 value is 0.3.
19370
19371 @item tripod
19372 Set reference frame number for tripod mode.
19373
19374 If enabled, the motion of the frames is compared to a reference frame
19375 in the filtered stream, identified by the specified number. The idea
19376 is to compensate all movements in a more-or-less static scene and keep
19377 the camera view absolutely still.
19378
19379 If set to 0, it is disabled. The frames are counted starting from 1.
19380
19381 @item show
19382 Show fields and transforms in the resulting frames. It accepts an
19383 integer in the range 0-2. Default value is 0, which disables any
19384 visualization.
19385 @end table
19386
19387 @subsection Examples
19388
19389 @itemize
19390 @item
19391 Use default values:
19392 @example
19393 vidstabdetect
19394 @end example
19395
19396 @item
19397 Analyze strongly shaky movie and put the results in file
19398 @file{mytransforms.trf}:
19399 @example
19400 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
19401 @end example
19402
19403 @item
19404 Visualize the result of internal transformations in the resulting
19405 video:
19406 @example
19407 vidstabdetect=show=1
19408 @end example
19409
19410 @item
19411 Analyze a video with medium shakiness using @command{ffmpeg}:
19412 @example
19413 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
19414 @end example
19415 @end itemize
19416
19417 @anchor{vidstabtransform}
19418 @section vidstabtransform
19419
19420 Video stabilization/deshaking: pass 2 of 2,
19421 see @ref{vidstabdetect} for pass 1.
19422
19423 Read a file with transform information for each frame and
19424 apply/compensate them. Together with the @ref{vidstabdetect}
19425 filter this can be used to deshake videos. See also
19426 @url{http://public.hronopik.de/vid.stab}. It is important to also use
19427 the @ref{unsharp} filter, see below.
19428
19429 To enable compilation of this filter you need to configure FFmpeg with
19430 @code{--enable-libvidstab}.
19431
19432 @subsection Options
19433
19434 @table @option
19435 @item input
19436 Set path to the file used to read the transforms. Default value is
19437 @file{transforms.trf}.
19438
19439 @item smoothing
19440 Set the number of frames (value*2 + 1) used for lowpass filtering the
19441 camera movements. Default value is 10.
19442
19443 For example a number of 10 means that 21 frames are used (10 in the
19444 past and 10 in the future) to smoothen the motion in the video. A
19445 larger value leads to a smoother video, but limits the acceleration of
19446 the camera (pan/tilt movements). 0 is a special case where a static
19447 camera is simulated.
19448
19449 @item optalgo
19450 Set the camera path optimization algorithm.
19451
19452 Accepted values are:
19453 @table @samp
19454 @item gauss
19455 gaussian kernel low-pass filter on camera motion (default)
19456 @item avg
19457 averaging on transformations
19458 @end table
19459
19460 @item maxshift
19461 Set maximal number of pixels to translate frames. Default value is -1,
19462 meaning no limit.
19463
19464 @item maxangle
19465 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
19466 value is -1, meaning no limit.
19467
19468 @item crop
19469 Specify how to deal with borders that may be visible due to movement
19470 compensation.
19471
19472 Available values are:
19473 @table @samp
19474 @item keep
19475 keep image information from previous frame (default)
19476 @item black
19477 fill the border black
19478 @end table
19479
19480 @item invert
19481 Invert transforms if set to 1. Default value is 0.
19482
19483 @item relative
19484 Consider transforms as relative to previous frame if set to 1,
19485 absolute if set to 0. Default value is 0.
19486
19487 @item zoom
19488 Set percentage to zoom. A positive value will result in a zoom-in
19489 effect, a negative value in a zoom-out effect. Default value is 0 (no
19490 zoom).
19491
19492 @item optzoom
19493 Set optimal zooming to avoid borders.
19494
19495 Accepted values are:
19496 @table @samp
19497 @item 0
19498 disabled
19499 @item 1
19500 optimal static zoom value is determined (only very strong movements
19501 will lead to visible borders) (default)
19502 @item 2
19503 optimal adaptive zoom value is determined (no borders will be
19504 visible), see @option{zoomspeed}
19505 @end table
19506
19507 Note that the value given at zoom is added to the one calculated here.
19508
19509 @item zoomspeed
19510 Set percent to zoom maximally each frame (enabled when
19511 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
19512 0.25.
19513
19514 @item interpol
19515 Specify type of interpolation.
19516
19517 Available values are:
19518 @table @samp
19519 @item no
19520 no interpolation
19521 @item linear
19522 linear only horizontal
19523 @item bilinear
19524 linear in both directions (default)
19525 @item bicubic
19526 cubic in both directions (slow)
19527 @end table
19528
19529 @item tripod
19530 Enable virtual tripod mode if set to 1, which is equivalent to
19531 @code{relative=0:smoothing=0}. Default value is 0.
19532
19533 Use also @code{tripod} option of @ref{vidstabdetect}.
19534
19535 @item debug
19536 Increase log verbosity if set to 1. Also the detected global motions
19537 are written to the temporary file @file{global_motions.trf}. Default
19538 value is 0.
19539 @end table
19540
19541 @subsection Examples
19542
19543 @itemize
19544 @item
19545 Use @command{ffmpeg} for a typical stabilization with default values:
19546 @example
19547 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
19548 @end example
19549
19550 Note the use of the @ref{unsharp} filter which is always recommended.
19551
19552 @item
19553 Zoom in a bit more and load transform data from a given file:
19554 @example
19555 vidstabtransform=zoom=5:input="mytransforms.trf"
19556 @end example
19557
19558 @item
19559 Smoothen the video even more:
19560 @example
19561 vidstabtransform=smoothing=30
19562 @end example
19563 @end itemize
19564
19565 @section vflip
19566
19567 Flip the input video vertically.
19568
19569 For example, to vertically flip a video with @command{ffmpeg}:
19570 @example
19571 ffmpeg -i in.avi -vf "vflip" out.avi
19572 @end example
19573
19574 @section vfrdet
19575
19576 Detect variable frame rate video.
19577
19578 This filter tries to detect if the input is variable or constant frame rate.
19579
19580 At end it will output number of frames detected as having variable delta pts,
19581 and ones with constant delta pts.
19582 If there was frames with variable delta, than it will also show min, max and
19583 average delta encountered.
19584
19585 @section vibrance
19586
19587 Boost or alter saturation.
19588
19589 The filter accepts the following options:
19590 @table @option
19591 @item intensity
19592 Set strength of boost if positive value or strength of alter if negative value.
19593 Default is 0. Allowed range is from -2 to 2.
19594
19595 @item rbal
19596 Set the red balance. Default is 1. Allowed range is from -10 to 10.
19597
19598 @item gbal
19599 Set the green balance. Default is 1. Allowed range is from -10 to 10.
19600
19601 @item bbal
19602 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
19603
19604 @item rlum
19605 Set the red luma coefficient.
19606
19607 @item glum
19608 Set the green luma coefficient.
19609
19610 @item blum
19611 Set the blue luma coefficient.
19612
19613 @item alternate
19614 If @code{intensity} is negative and this is set to 1, colors will change,
19615 otherwise colors will be less saturated, more towards gray.
19616 @end table
19617
19618 @subsection Commands
19619
19620 This filter supports the all above options as @ref{commands}.
19621
19622 @anchor{vignette}
19623 @section vignette
19624
19625 Make or reverse a natural vignetting effect.
19626
19627 The filter accepts the following options:
19628
19629 @table @option
19630 @item angle, a
19631 Set lens angle expression as a number of radians.
19632
19633 The value is clipped in the @code{[0,PI/2]} range.
19634
19635 Default value: @code{"PI/5"}
19636
19637 @item x0
19638 @item y0
19639 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
19640 by default.
19641
19642 @item mode
19643 Set forward/backward mode.
19644
19645 Available modes are:
19646 @table @samp
19647 @item forward
19648 The larger the distance from the central point, the darker the image becomes.
19649
19650 @item backward
19651 The larger the distance from the central point, the brighter the image becomes.
19652 This can be used to reverse a vignette effect, though there is no automatic
19653 detection to extract the lens @option{angle} and other settings (yet). It can
19654 also be used to create a burning effect.
19655 @end table
19656
19657 Default value is @samp{forward}.
19658
19659 @item eval
19660 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
19661
19662 It accepts the following values:
19663 @table @samp
19664 @item init
19665 Evaluate expressions only once during the filter initialization.
19666
19667 @item frame
19668 Evaluate expressions for each incoming frame. This is way slower than the
19669 @samp{init} mode since it requires all the scalers to be re-computed, but it
19670 allows advanced dynamic expressions.
19671 @end table
19672
19673 Default value is @samp{init}.
19674
19675 @item dither
19676 Set dithering to reduce the circular banding effects. Default is @code{1}
19677 (enabled).
19678
19679 @item aspect
19680 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
19681 Setting this value to the SAR of the input will make a rectangular vignetting
19682 following the dimensions of the video.
19683
19684 Default is @code{1/1}.
19685 @end table
19686
19687 @subsection Expressions
19688
19689 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
19690 following parameters.
19691
19692 @table @option
19693 @item w
19694 @item h
19695 input width and height
19696
19697 @item n
19698 the number of input frame, starting from 0
19699
19700 @item pts
19701 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
19702 @var{TB} units, NAN if undefined
19703
19704 @item r
19705 frame rate of the input video, NAN if the input frame rate is unknown
19706
19707 @item t
19708 the PTS (Presentation TimeStamp) of the filtered video frame,
19709 expressed in seconds, NAN if undefined
19710
19711 @item tb
19712 time base of the input video
19713 @end table
19714
19715
19716 @subsection Examples
19717
19718 @itemize
19719 @item
19720 Apply simple strong vignetting effect:
19721 @example
19722 vignette=PI/4
19723 @end example
19724
19725 @item
19726 Make a flickering vignetting:
19727 @example
19728 vignette='PI/4+random(1)*PI/50':eval=frame
19729 @end example
19730
19731 @end itemize
19732
19733 @section vmafmotion
19734
19735 Obtain the average VMAF motion score of a video.
19736 It is one of the component metrics of VMAF.
19737
19738 The obtained average motion score is printed through the logging system.
19739
19740 The filter accepts the following options:
19741
19742 @table @option
19743 @item stats_file
19744 If specified, the filter will use the named file to save the motion score of
19745 each frame with respect to the previous frame.
19746 When filename equals "-" the data is sent to standard output.
19747 @end table
19748
19749 Example:
19750 @example
19751 ffmpeg -i ref.mpg -vf vmafmotion -f null -
19752 @end example
19753
19754 @section vstack
19755 Stack input videos vertically.
19756
19757 All streams must be of same pixel format and of same width.
19758
19759 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
19760 to create same output.
19761
19762 The filter accepts the following options:
19763
19764 @table @option
19765 @item inputs
19766 Set number of input streams. Default is 2.
19767
19768 @item shortest
19769 If set to 1, force the output to terminate when the shortest input
19770 terminates. Default value is 0.
19771 @end table
19772
19773 @section w3fdif
19774
19775 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
19776 Deinterlacing Filter").
19777
19778 Based on the process described by Martin Weston for BBC R&D, and
19779 implemented based on the de-interlace algorithm written by Jim
19780 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
19781 uses filter coefficients calculated by BBC R&D.
19782
19783 This filter uses field-dominance information in frame to decide which
19784 of each pair of fields to place first in the output.
19785 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
19786
19787 There are two sets of filter coefficients, so called "simple"
19788 and "complex". Which set of filter coefficients is used can
19789 be set by passing an optional parameter:
19790
19791 @table @option
19792 @item filter
19793 Set the interlacing filter coefficients. Accepts one of the following values:
19794
19795 @table @samp
19796 @item simple
19797 Simple filter coefficient set.
19798 @item complex
19799 More-complex filter coefficient set.
19800 @end table
19801 Default value is @samp{complex}.
19802
19803 @item deint
19804 Specify which frames to deinterlace. Accepts one of the following values:
19805
19806 @table @samp
19807 @item all
19808 Deinterlace all frames,
19809 @item interlaced
19810 Only deinterlace frames marked as interlaced.
19811 @end table
19812
19813 Default value is @samp{all}.
19814 @end table
19815
19816 @section waveform
19817 Video waveform monitor.
19818
19819 The waveform monitor plots color component intensity. By default luminance
19820 only. Each column of the waveform corresponds to a column of pixels in the
19821 source video.
19822
19823 It accepts the following options:
19824
19825 @table @option
19826 @item mode, m
19827 Can be either @code{row}, or @code{column}. Default is @code{column}.
19828 In row mode, the graph on the left side represents color component value 0 and
19829 the right side represents value = 255. In column mode, the top side represents
19830 color component value = 0 and bottom side represents value = 255.
19831
19832 @item intensity, i
19833 Set intensity. Smaller values are useful to find out how many values of the same
19834 luminance are distributed across input rows/columns.
19835 Default value is @code{0.04}. Allowed range is [0, 1].
19836
19837 @item mirror, r
19838 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
19839 In mirrored mode, higher values will be represented on the left
19840 side for @code{row} mode and at the top for @code{column} mode. Default is
19841 @code{1} (mirrored).
19842
19843 @item display, d
19844 Set display mode.
19845 It accepts the following values:
19846 @table @samp
19847 @item overlay
19848 Presents information identical to that in the @code{parade}, except
19849 that the graphs representing color components are superimposed directly
19850 over one another.
19851
19852 This display mode makes it easier to spot relative differences or similarities
19853 in overlapping areas of the color components that are supposed to be identical,
19854 such as neutral whites, grays, or blacks.
19855
19856 @item stack
19857 Display separate graph for the color components side by side in
19858 @code{row} mode or one below the other in @code{column} mode.
19859
19860 @item parade
19861 Display separate graph for the color components side by side in
19862 @code{column} mode or one below the other in @code{row} mode.
19863
19864 Using this display mode makes it easy to spot color casts in the highlights
19865 and shadows of an image, by comparing the contours of the top and the bottom
19866 graphs of each waveform. Since whites, grays, and blacks are characterized
19867 by exactly equal amounts of red, green, and blue, neutral areas of the picture
19868 should display three waveforms of roughly equal width/height. If not, the
19869 correction is easy to perform by making level adjustments the three waveforms.
19870 @end table
19871 Default is @code{stack}.
19872
19873 @item components, c
19874 Set which color components to display. Default is 1, which means only luminance
19875 or red color component if input is in RGB colorspace. If is set for example to
19876 7 it will display all 3 (if) available color components.
19877
19878 @item envelope, e
19879 @table @samp
19880 @item none
19881 No envelope, this is default.
19882
19883 @item instant
19884 Instant envelope, minimum and maximum values presented in graph will be easily
19885 visible even with small @code{step} value.
19886
19887 @item peak
19888 Hold minimum and maximum values presented in graph across time. This way you
19889 can still spot out of range values without constantly looking at waveforms.
19890
19891 @item peak+instant
19892 Peak and instant envelope combined together.
19893 @end table
19894
19895 @item filter, f
19896 @table @samp
19897 @item lowpass
19898 No filtering, this is default.
19899
19900 @item flat
19901 Luma and chroma combined together.
19902
19903 @item aflat
19904 Similar as above, but shows difference between blue and red chroma.
19905
19906 @item xflat
19907 Similar as above, but use different colors.
19908
19909 @item yflat
19910 Similar as above, but again with different colors.
19911
19912 @item chroma
19913 Displays only chroma.
19914
19915 @item color
19916 Displays actual color value on waveform.
19917
19918 @item acolor
19919 Similar as above, but with luma showing frequency of chroma values.
19920 @end table
19921
19922 @item graticule, g
19923 Set which graticule to display.
19924
19925 @table @samp
19926 @item none
19927 Do not display graticule.
19928
19929 @item green
19930 Display green graticule showing legal broadcast ranges.
19931
19932 @item orange
19933 Display orange graticule showing legal broadcast ranges.
19934
19935 @item invert
19936 Display invert graticule showing legal broadcast ranges.
19937 @end table
19938
19939 @item opacity, o
19940 Set graticule opacity.
19941
19942 @item flags, fl
19943 Set graticule flags.
19944
19945 @table @samp
19946 @item numbers
19947 Draw numbers above lines. By default enabled.
19948
19949 @item dots
19950 Draw dots instead of lines.
19951 @end table
19952
19953 @item scale, s
19954 Set scale used for displaying graticule.
19955
19956 @table @samp
19957 @item digital
19958 @item millivolts
19959 @item ire
19960 @end table
19961 Default is digital.
19962
19963 @item bgopacity, b
19964 Set background opacity.
19965
19966 @item tint0, t0
19967 @item tint1, t1
19968 Set tint for output.
19969 Only used with lowpass filter and when display is not overlay and input
19970 pixel formats are not RGB.
19971 @end table
19972
19973 @section weave, doubleweave
19974
19975 The @code{weave} takes a field-based video input and join
19976 each two sequential fields into single frame, producing a new double
19977 height clip with half the frame rate and half the frame count.
19978
19979 The @code{doubleweave} works same as @code{weave} but without
19980 halving frame rate and frame count.
19981
19982 It accepts the following option:
19983
19984 @table @option
19985 @item first_field
19986 Set first field. Available values are:
19987
19988 @table @samp
19989 @item top, t
19990 Set the frame as top-field-first.
19991
19992 @item bottom, b
19993 Set the frame as bottom-field-first.
19994 @end table
19995 @end table
19996
19997 @subsection Examples
19998
19999 @itemize
20000 @item
20001 Interlace video using @ref{select} and @ref{separatefields} filter:
20002 @example
20003 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
20004 @end example
20005 @end itemize
20006
20007 @section xbr
20008 Apply the xBR high-quality magnification filter which is designed for pixel
20009 art. It follows a set of edge-detection rules, see
20010 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
20011
20012 It accepts the following option:
20013
20014 @table @option
20015 @item n
20016 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
20017 @code{3xBR} and @code{4} for @code{4xBR}.
20018 Default is @code{3}.
20019 @end table
20020
20021 @section xmedian
20022 Pick median pixels from several input videos.
20023
20024 The filter accepts the following options:
20025
20026 @table @option
20027 @item inputs
20028 Set number of inputs.
20029 Default is 3. Allowed range is from 3 to 255.
20030 If number of inputs is even number, than result will be mean value between two median values.
20031
20032 @item planes
20033 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
20034 @end table
20035
20036 @section xstack
20037 Stack video inputs into custom layout.
20038
20039 All streams must be of same pixel format.
20040
20041 The filter accepts the following options:
20042
20043 @table @option
20044 @item inputs
20045 Set number of input streams. Default is 2.
20046
20047 @item layout
20048 Specify layout of inputs.
20049 This option requires the desired layout configuration to be explicitly set by the user.
20050 This sets position of each video input in output. Each input
20051 is separated by '|'.
20052 The first number represents the column, and the second number represents the row.
20053 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
20054 where X is video input from which to take width or height.
20055 Multiple values can be used when separated by '+'. In such
20056 case values are summed together.
20057
20058 Note that if inputs are of different sizes gaps may appear, as not all of
20059 the output video frame will be filled. Similarly, videos can overlap each
20060 other if their position doesn't leave enough space for the full frame of
20061 adjoining videos.
20062
20063 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
20064 a layout must be set by the user.
20065
20066 @item shortest
20067 If set to 1, force the output to terminate when the shortest input
20068 terminates. Default value is 0.
20069
20070 @item fill
20071 If set to valid color, all unused pixels will be filled with that color.
20072 By default fill is set to none, so it is disabled.
20073 @end table
20074
20075 @subsection Examples
20076
20077 @itemize
20078 @item
20079 Display 4 inputs into 2x2 grid.
20080
20081 Layout:
20082 @example
20083 input1(0, 0)  | input3(w0, 0)
20084 input2(0, h0) | input4(w0, h0)
20085 @end example
20086
20087 @example
20088 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
20089 @end example
20090
20091 Note that if inputs are of different sizes, gaps or overlaps may occur.
20092
20093 @item
20094 Display 4 inputs into 1x4 grid.
20095
20096 Layout:
20097 @example
20098 input1(0, 0)
20099 input2(0, h0)
20100 input3(0, h0+h1)
20101 input4(0, h0+h1+h2)
20102 @end example
20103
20104 @example
20105 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
20106 @end example
20107
20108 Note that if inputs are of different widths, unused space will appear.
20109
20110 @item
20111 Display 9 inputs into 3x3 grid.
20112
20113 Layout:
20114 @example
20115 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
20116 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
20117 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
20118 @end example
20119
20120 @example
20121 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
20122 @end example
20123
20124 Note that if inputs are of different sizes, gaps or overlaps may occur.
20125
20126 @item
20127 Display 16 inputs into 4x4 grid.
20128
20129 Layout:
20130 @example
20131 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
20132 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
20133 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
20134 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
20135 @end example
20136
20137 @example
20138 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|
20139 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
20140 @end example
20141
20142 Note that if inputs are of different sizes, gaps or overlaps may occur.
20143
20144 @end itemize
20145
20146 @anchor{yadif}
20147 @section yadif
20148
20149 Deinterlace the input video ("yadif" means "yet another deinterlacing
20150 filter").
20151
20152 It accepts the following parameters:
20153
20154
20155 @table @option
20156
20157 @item mode
20158 The interlacing mode to adopt. It accepts one of the following values:
20159
20160 @table @option
20161 @item 0, send_frame
20162 Output one frame for each frame.
20163 @item 1, send_field
20164 Output one frame for each field.
20165 @item 2, send_frame_nospatial
20166 Like @code{send_frame}, but it skips the spatial interlacing check.
20167 @item 3, send_field_nospatial
20168 Like @code{send_field}, but it skips the spatial interlacing check.
20169 @end table
20170
20171 The default value is @code{send_frame}.
20172
20173 @item parity
20174 The picture field parity assumed for the input interlaced video. It accepts one
20175 of the following values:
20176
20177 @table @option
20178 @item 0, tff
20179 Assume the top field is first.
20180 @item 1, bff
20181 Assume the bottom field is first.
20182 @item -1, auto
20183 Enable automatic detection of field parity.
20184 @end table
20185
20186 The default value is @code{auto}.
20187 If the interlacing is unknown or the decoder does not export this information,
20188 top field first will be assumed.
20189
20190 @item deint
20191 Specify which frames to deinterlace. Accepts one of the following
20192 values:
20193
20194 @table @option
20195 @item 0, all
20196 Deinterlace all frames.
20197 @item 1, interlaced
20198 Only deinterlace frames marked as interlaced.
20199 @end table
20200
20201 The default value is @code{all}.
20202 @end table
20203
20204 @section yadif_cuda
20205
20206 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
20207 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
20208 and/or nvenc.
20209
20210 It accepts the following parameters:
20211
20212
20213 @table @option
20214
20215 @item mode
20216 The interlacing mode to adopt. It accepts one of the following values:
20217
20218 @table @option
20219 @item 0, send_frame
20220 Output one frame for each frame.
20221 @item 1, send_field
20222 Output one frame for each field.
20223 @item 2, send_frame_nospatial
20224 Like @code{send_frame}, but it skips the spatial interlacing check.
20225 @item 3, send_field_nospatial
20226 Like @code{send_field}, but it skips the spatial interlacing check.
20227 @end table
20228
20229 The default value is @code{send_frame}.
20230
20231 @item parity
20232 The picture field parity assumed for the input interlaced video. It accepts one
20233 of the following values:
20234
20235 @table @option
20236 @item 0, tff
20237 Assume the top field is first.
20238 @item 1, bff
20239 Assume the bottom field is first.
20240 @item -1, auto
20241 Enable automatic detection of field parity.
20242 @end table
20243
20244 The default value is @code{auto}.
20245 If the interlacing is unknown or the decoder does not export this information,
20246 top field first will be assumed.
20247
20248 @item deint
20249 Specify which frames to deinterlace. Accepts one of the following
20250 values:
20251
20252 @table @option
20253 @item 0, all
20254 Deinterlace all frames.
20255 @item 1, interlaced
20256 Only deinterlace frames marked as interlaced.
20257 @end table
20258
20259 The default value is @code{all}.
20260 @end table
20261
20262 @section yaepblur
20263
20264 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
20265 The algorithm is described in
20266 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
20267
20268 It accepts the following parameters:
20269
20270 @table @option
20271 @item radius, r
20272 Set the window radius. Default value is 3.
20273
20274 @item planes, p
20275 Set which planes to filter. Default is only the first plane.
20276
20277 @item sigma, s
20278 Set blur strength. Default value is 128.
20279 @end table
20280
20281 @subsection Commands
20282 This filter supports same @ref{commands} as options.
20283
20284 @section zoompan
20285
20286 Apply Zoom & Pan effect.
20287
20288 This filter accepts the following options:
20289
20290 @table @option
20291 @item zoom, z
20292 Set the zoom expression. Range is 1-10. Default is 1.
20293
20294 @item x
20295 @item y
20296 Set the x and y expression. Default is 0.
20297
20298 @item d
20299 Set the duration expression in number of frames.
20300 This sets for how many number of frames effect will last for
20301 single input image.
20302
20303 @item s
20304 Set the output image size, default is 'hd720'.
20305
20306 @item fps
20307 Set the output frame rate, default is '25'.
20308 @end table
20309
20310 Each expression can contain the following constants:
20311
20312 @table @option
20313 @item in_w, iw
20314 Input width.
20315
20316 @item in_h, ih
20317 Input height.
20318
20319 @item out_w, ow
20320 Output width.
20321
20322 @item out_h, oh
20323 Output height.
20324
20325 @item in
20326 Input frame count.
20327
20328 @item on
20329 Output frame count.
20330
20331 @item x
20332 @item y
20333 Last calculated 'x' and 'y' position from 'x' and 'y' expression
20334 for current input frame.
20335
20336 @item px
20337 @item py
20338 'x' and 'y' of last output frame of previous input frame or 0 when there was
20339 not yet such frame (first input frame).
20340
20341 @item zoom
20342 Last calculated zoom from 'z' expression for current input frame.
20343
20344 @item pzoom
20345 Last calculated zoom of last output frame of previous input frame.
20346
20347 @item duration
20348 Number of output frames for current input frame. Calculated from 'd' expression
20349 for each input frame.
20350
20351 @item pduration
20352 number of output frames created for previous input frame
20353
20354 @item a
20355 Rational number: input width / input height
20356
20357 @item sar
20358 sample aspect ratio
20359
20360 @item dar
20361 display aspect ratio
20362
20363 @end table
20364
20365 @subsection Examples
20366
20367 @itemize
20368 @item
20369 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
20370 @example
20371 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
20372 @end example
20373
20374 @item
20375 Zoom-in up to 1.5 and pan always at center of picture:
20376 @example
20377 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20378 @end example
20379
20380 @item
20381 Same as above but without pausing:
20382 @example
20383 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20384 @end example
20385 @end itemize
20386
20387 @anchor{zscale}
20388 @section zscale
20389 Scale (resize) the input video, using the z.lib library:
20390 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
20391 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
20392
20393 The zscale filter forces the output display aspect ratio to be the same
20394 as the input, by changing the output sample aspect ratio.
20395
20396 If the input image format is different from the format requested by
20397 the next filter, the zscale filter will convert the input to the
20398 requested format.
20399
20400 @subsection Options
20401 The filter accepts the following options.
20402
20403 @table @option
20404 @item width, w
20405 @item height, h
20406 Set the output video dimension expression. Default value is the input
20407 dimension.
20408
20409 If the @var{width} or @var{w} value is 0, the input width is used for
20410 the output. If the @var{height} or @var{h} value is 0, the input height
20411 is used for the output.
20412
20413 If one and only one of the values is -n with n >= 1, the zscale filter
20414 will use a value that maintains the aspect ratio of the input image,
20415 calculated from the other specified dimension. After that it will,
20416 however, make sure that the calculated dimension is divisible by n and
20417 adjust the value if necessary.
20418
20419 If both values are -n with n >= 1, the behavior will be identical to
20420 both values being set to 0 as previously detailed.
20421
20422 See below for the list of accepted constants for use in the dimension
20423 expression.
20424
20425 @item size, s
20426 Set the video size. For the syntax of this option, check the
20427 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20428
20429 @item dither, d
20430 Set the dither type.
20431
20432 Possible values are:
20433 @table @var
20434 @item none
20435 @item ordered
20436 @item random
20437 @item error_diffusion
20438 @end table
20439
20440 Default is none.
20441
20442 @item filter, f
20443 Set the resize filter type.
20444
20445 Possible values are:
20446 @table @var
20447 @item point
20448 @item bilinear
20449 @item bicubic
20450 @item spline16
20451 @item spline36
20452 @item lanczos
20453 @end table
20454
20455 Default is bilinear.
20456
20457 @item range, r
20458 Set the color range.
20459
20460 Possible values are:
20461 @table @var
20462 @item input
20463 @item limited
20464 @item full
20465 @end table
20466
20467 Default is same as input.
20468
20469 @item primaries, p
20470 Set the color primaries.
20471
20472 Possible values are:
20473 @table @var
20474 @item input
20475 @item 709
20476 @item unspecified
20477 @item 170m
20478 @item 240m
20479 @item 2020
20480 @end table
20481
20482 Default is same as input.
20483
20484 @item transfer, t
20485 Set the transfer characteristics.
20486
20487 Possible values are:
20488 @table @var
20489 @item input
20490 @item 709
20491 @item unspecified
20492 @item 601
20493 @item linear
20494 @item 2020_10
20495 @item 2020_12
20496 @item smpte2084
20497 @item iec61966-2-1
20498 @item arib-std-b67
20499 @end table
20500
20501 Default is same as input.
20502
20503 @item matrix, m
20504 Set the colorspace matrix.
20505
20506 Possible value are:
20507 @table @var
20508 @item input
20509 @item 709
20510 @item unspecified
20511 @item 470bg
20512 @item 170m
20513 @item 2020_ncl
20514 @item 2020_cl
20515 @end table
20516
20517 Default is same as input.
20518
20519 @item rangein, rin
20520 Set the input color range.
20521
20522 Possible values are:
20523 @table @var
20524 @item input
20525 @item limited
20526 @item full
20527 @end table
20528
20529 Default is same as input.
20530
20531 @item primariesin, pin
20532 Set the input color primaries.
20533
20534 Possible values are:
20535 @table @var
20536 @item input
20537 @item 709
20538 @item unspecified
20539 @item 170m
20540 @item 240m
20541 @item 2020
20542 @end table
20543
20544 Default is same as input.
20545
20546 @item transferin, tin
20547 Set the input transfer characteristics.
20548
20549 Possible values are:
20550 @table @var
20551 @item input
20552 @item 709
20553 @item unspecified
20554 @item 601
20555 @item linear
20556 @item 2020_10
20557 @item 2020_12
20558 @end table
20559
20560 Default is same as input.
20561
20562 @item matrixin, min
20563 Set the input colorspace matrix.
20564
20565 Possible value are:
20566 @table @var
20567 @item input
20568 @item 709
20569 @item unspecified
20570 @item 470bg
20571 @item 170m
20572 @item 2020_ncl
20573 @item 2020_cl
20574 @end table
20575
20576 @item chromal, c
20577 Set the output chroma location.
20578
20579 Possible values are:
20580 @table @var
20581 @item input
20582 @item left
20583 @item center
20584 @item topleft
20585 @item top
20586 @item bottomleft
20587 @item bottom
20588 @end table
20589
20590 @item chromalin, cin
20591 Set the input chroma location.
20592
20593 Possible values are:
20594 @table @var
20595 @item input
20596 @item left
20597 @item center
20598 @item topleft
20599 @item top
20600 @item bottomleft
20601 @item bottom
20602 @end table
20603
20604 @item npl
20605 Set the nominal peak luminance.
20606 @end table
20607
20608 The values of the @option{w} and @option{h} options are expressions
20609 containing the following constants:
20610
20611 @table @var
20612 @item in_w
20613 @item in_h
20614 The input width and height
20615
20616 @item iw
20617 @item ih
20618 These are the same as @var{in_w} and @var{in_h}.
20619
20620 @item out_w
20621 @item out_h
20622 The output (scaled) width and height
20623
20624 @item ow
20625 @item oh
20626 These are the same as @var{out_w} and @var{out_h}
20627
20628 @item a
20629 The same as @var{iw} / @var{ih}
20630
20631 @item sar
20632 input sample aspect ratio
20633
20634 @item dar
20635 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
20636
20637 @item hsub
20638 @item vsub
20639 horizontal and vertical input chroma subsample values. For example for the
20640 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20641
20642 @item ohsub
20643 @item ovsub
20644 horizontal and vertical output chroma subsample values. For example for the
20645 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20646 @end table
20647
20648 @subsection Commands
20649
20650 This filter supports the following commands:
20651 @table @option
20652 @item width, w
20653 @item height, h
20654 Set the output video dimension expression.
20655 The command accepts the same syntax of the corresponding option.
20656
20657 If the specified expression is not valid, it is kept at its current
20658 value.
20659 @end table
20660
20661 @c man end VIDEO FILTERS
20662
20663 @chapter OpenCL Video Filters
20664 @c man begin OPENCL VIDEO FILTERS
20665
20666 Below is a description of the currently available OpenCL video filters.
20667
20668 To enable compilation of these filters you need to configure FFmpeg with
20669 @code{--enable-opencl}.
20670
20671 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
20672 @table @option
20673
20674 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
20675 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
20676 given device parameters.
20677
20678 @item -filter_hw_device @var{name}
20679 Pass the hardware device called @var{name} to all filters in any filter graph.
20680
20681 @end table
20682
20683 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
20684
20685 @itemize
20686 @item
20687 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
20688 @example
20689 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
20690 @end example
20691 @end itemize
20692
20693 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.
20694
20695 @section avgblur_opencl
20696
20697 Apply average blur filter.
20698
20699 The filter accepts the following options:
20700
20701 @table @option
20702 @item sizeX
20703 Set horizontal radius size.
20704 Range is @code{[1, 1024]} and default value is @code{1}.
20705
20706 @item planes
20707 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20708
20709 @item sizeY
20710 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
20711 @end table
20712
20713 @subsection Example
20714
20715 @itemize
20716 @item
20717 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.
20718 @example
20719 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
20720 @end example
20721 @end itemize
20722
20723 @section boxblur_opencl
20724
20725 Apply a boxblur algorithm to the input video.
20726
20727 It accepts the following parameters:
20728
20729 @table @option
20730
20731 @item luma_radius, lr
20732 @item luma_power, lp
20733 @item chroma_radius, cr
20734 @item chroma_power, cp
20735 @item alpha_radius, ar
20736 @item alpha_power, ap
20737
20738 @end table
20739
20740 A description of the accepted options follows.
20741
20742 @table @option
20743 @item luma_radius, lr
20744 @item chroma_radius, cr
20745 @item alpha_radius, ar
20746 Set an expression for the box radius in pixels used for blurring the
20747 corresponding input plane.
20748
20749 The radius value must be a non-negative number, and must not be
20750 greater than the value of the expression @code{min(w,h)/2} for the
20751 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
20752 planes.
20753
20754 Default value for @option{luma_radius} is "2". If not specified,
20755 @option{chroma_radius} and @option{alpha_radius} default to the
20756 corresponding value set for @option{luma_radius}.
20757
20758 The expressions can contain the following constants:
20759 @table @option
20760 @item w
20761 @item h
20762 The input width and height in pixels.
20763
20764 @item cw
20765 @item ch
20766 The input chroma image width and height in pixels.
20767
20768 @item hsub
20769 @item vsub
20770 The horizontal and vertical chroma subsample values. For example, for the
20771 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
20772 @end table
20773
20774 @item luma_power, lp
20775 @item chroma_power, cp
20776 @item alpha_power, ap
20777 Specify how many times the boxblur filter is applied to the
20778 corresponding plane.
20779
20780 Default value for @option{luma_power} is 2. If not specified,
20781 @option{chroma_power} and @option{alpha_power} default to the
20782 corresponding value set for @option{luma_power}.
20783
20784 A value of 0 will disable the effect.
20785 @end table
20786
20787 @subsection Examples
20788
20789 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.
20790
20791 @itemize
20792 @item
20793 Apply a boxblur filter with the luma, chroma, and alpha radius
20794 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.
20795 @example
20796 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
20797 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
20798 @end example
20799
20800 @item
20801 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.
20802
20803 For the luma plane, a 2x2 box radius will be run once.
20804
20805 For the chroma plane, a 4x4 box radius will be run 5 times.
20806
20807 For the alpha plane, a 3x3 box radius will be run 7 times.
20808 @example
20809 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
20810 @end example
20811 @end itemize
20812
20813 @section convolution_opencl
20814
20815 Apply convolution of 3x3, 5x5, 7x7 matrix.
20816
20817 The filter accepts the following options:
20818
20819 @table @option
20820 @item 0m
20821 @item 1m
20822 @item 2m
20823 @item 3m
20824 Set matrix for each plane.
20825 Matrix is sequence of 9, 25 or 49 signed numbers.
20826 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
20827
20828 @item 0rdiv
20829 @item 1rdiv
20830 @item 2rdiv
20831 @item 3rdiv
20832 Set multiplier for calculated value for each plane.
20833 If unset or 0, it will be sum of all matrix elements.
20834 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
20835
20836 @item 0bias
20837 @item 1bias
20838 @item 2bias
20839 @item 3bias
20840 Set bias for each plane. This value is added to the result of the multiplication.
20841 Useful for making the overall image brighter or darker.
20842 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
20843
20844 @end table
20845
20846 @subsection Examples
20847
20848 @itemize
20849 @item
20850 Apply sharpen:
20851 @example
20852 -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
20853 @end example
20854
20855 @item
20856 Apply blur:
20857 @example
20858 -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
20859 @end example
20860
20861 @item
20862 Apply edge enhance:
20863 @example
20864 -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
20865 @end example
20866
20867 @item
20868 Apply edge detect:
20869 @example
20870 -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
20871 @end example
20872
20873 @item
20874 Apply laplacian edge detector which includes diagonals:
20875 @example
20876 -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
20877 @end example
20878
20879 @item
20880 Apply emboss:
20881 @example
20882 -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
20883 @end example
20884 @end itemize
20885
20886 @section dilation_opencl
20887
20888 Apply dilation effect to the video.
20889
20890 This filter replaces the pixel by the local(3x3) maximum.
20891
20892 It accepts the following options:
20893
20894 @table @option
20895 @item threshold0
20896 @item threshold1
20897 @item threshold2
20898 @item threshold3
20899 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
20900 If @code{0}, plane will remain unchanged.
20901
20902 @item coordinates
20903 Flag which specifies the pixel to refer to.
20904 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
20905
20906 Flags to local 3x3 coordinates region centered on @code{x}:
20907
20908     1 2 3
20909
20910     4 x 5
20911
20912     6 7 8
20913 @end table
20914
20915 @subsection Example
20916
20917 @itemize
20918 @item
20919 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.
20920 @example
20921 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
20922 @end example
20923 @end itemize
20924
20925 @section erosion_opencl
20926
20927 Apply erosion effect to the video.
20928
20929 This filter replaces the pixel by the local(3x3) minimum.
20930
20931 It accepts the following options:
20932
20933 @table @option
20934 @item threshold0
20935 @item threshold1
20936 @item threshold2
20937 @item threshold3
20938 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
20939 If @code{0}, plane will remain unchanged.
20940
20941 @item coordinates
20942 Flag which specifies the pixel to refer to.
20943 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
20944
20945 Flags to local 3x3 coordinates region centered on @code{x}:
20946
20947     1 2 3
20948
20949     4 x 5
20950
20951     6 7 8
20952 @end table
20953
20954 @subsection Example
20955
20956 @itemize
20957 @item
20958 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.
20959 @example
20960 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
20961 @end example
20962 @end itemize
20963
20964 @section colorkey_opencl
20965 RGB colorspace color keying.
20966
20967 The filter accepts the following options:
20968
20969 @table @option
20970 @item color
20971 The color which will be replaced with transparency.
20972
20973 @item similarity
20974 Similarity percentage with the key color.
20975
20976 0.01 matches only the exact key color, while 1.0 matches everything.
20977
20978 @item blend
20979 Blend percentage.
20980
20981 0.0 makes pixels either fully transparent, or not transparent at all.
20982
20983 Higher values result in semi-transparent pixels, with a higher transparency
20984 the more similar the pixels color is to the key color.
20985 @end table
20986
20987 @subsection Examples
20988
20989 @itemize
20990 @item
20991 Make every semi-green pixel in the input transparent with some slight blending:
20992 @example
20993 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
20994 @end example
20995 @end itemize
20996
20997 @section deshake_opencl
20998 Feature-point based video stabilization filter.
20999
21000 The filter accepts the following options:
21001
21002 @table @option
21003 @item tripod
21004 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
21005
21006 @item debug
21007 Whether or not additional debug info should be displayed, both in the processed output and in the console.
21008
21009 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
21010
21011 Viewing point matches in the output video is only supported for RGB input.
21012
21013 Defaults to @code{0}.
21014
21015 @item adaptive_crop
21016 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
21017
21018 Defaults to @code{1}.
21019
21020 @item refine_features
21021 Whether or not feature points should be refined at a sub-pixel level.
21022
21023 This can be turned off for a slight performance gain at the cost of precision.
21024
21025 Defaults to @code{1}.
21026
21027 @item smooth_strength
21028 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
21029
21030 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
21031
21032 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
21033
21034 Defaults to @code{0.0}.
21035
21036 @item smooth_window_multiplier
21037 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
21038
21039 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
21040
21041 Acceptable values range from @code{0.1} to @code{10.0}.
21042
21043 Larger values increase the amount of motion data available for determining how to smooth the camera path,
21044 potentially improving smoothness, but also increase latency and memory usage.
21045
21046 Defaults to @code{2.0}.
21047
21048 @end table
21049
21050 @subsection Examples
21051
21052 @itemize
21053 @item
21054 Stabilize a video with a fixed, medium smoothing strength:
21055 @example
21056 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
21057 @end example
21058
21059 @item
21060 Stabilize a video with debugging (both in console and in rendered video):
21061 @example
21062 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
21063 @end example
21064 @end itemize
21065
21066 @section nlmeans_opencl
21067
21068 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
21069
21070 @section overlay_opencl
21071
21072 Overlay one video on top of another.
21073
21074 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
21075 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
21076
21077 The filter accepts the following options:
21078
21079 @table @option
21080
21081 @item x
21082 Set the x coordinate of the overlaid video on the main video.
21083 Default value is @code{0}.
21084
21085 @item y
21086 Set the y coordinate of the overlaid video on the main video.
21087 Default value is @code{0}.
21088
21089 @end table
21090
21091 @subsection Examples
21092
21093 @itemize
21094 @item
21095 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
21096 @example
21097 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21098 @end example
21099 @item
21100 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
21101 @example
21102 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21103 @end example
21104
21105 @end itemize
21106
21107 @section prewitt_opencl
21108
21109 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
21110
21111 The filter accepts the following option:
21112
21113 @table @option
21114 @item planes
21115 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21116
21117 @item scale
21118 Set value which will be multiplied with filtered result.
21119 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21120
21121 @item delta
21122 Set value which will be added to filtered result.
21123 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21124 @end table
21125
21126 @subsection Example
21127
21128 @itemize
21129 @item
21130 Apply the Prewitt operator with scale set to 2 and delta set to 10.
21131 @example
21132 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
21133 @end example
21134 @end itemize
21135
21136 @section roberts_opencl
21137 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
21138
21139 The filter accepts the following option:
21140
21141 @table @option
21142 @item planes
21143 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21144
21145 @item scale
21146 Set value which will be multiplied with filtered result.
21147 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21148
21149 @item delta
21150 Set value which will be added to filtered result.
21151 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21152 @end table
21153
21154 @subsection Example
21155
21156 @itemize
21157 @item
21158 Apply the Roberts cross operator with scale set to 2 and delta set to 10
21159 @example
21160 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
21161 @end example
21162 @end itemize
21163
21164 @section sobel_opencl
21165
21166 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
21167
21168 The filter accepts the following option:
21169
21170 @table @option
21171 @item planes
21172 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21173
21174 @item scale
21175 Set value which will be multiplied with filtered result.
21176 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21177
21178 @item delta
21179 Set value which will be added to filtered result.
21180 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21181 @end table
21182
21183 @subsection Example
21184
21185 @itemize
21186 @item
21187 Apply sobel operator with scale set to 2 and delta set to 10
21188 @example
21189 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
21190 @end example
21191 @end itemize
21192
21193 @section tonemap_opencl
21194
21195 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
21196
21197 It accepts the following parameters:
21198
21199 @table @option
21200 @item tonemap
21201 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
21202
21203 @item param
21204 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
21205
21206 @item desat
21207 Apply desaturation for highlights that exceed this level of brightness. The
21208 higher the parameter, the more color information will be preserved. This
21209 setting helps prevent unnaturally blown-out colors for super-highlights, by
21210 (smoothly) turning into white instead. This makes images feel more natural,
21211 at the cost of reducing information about out-of-range colors.
21212
21213 The default value is 0.5, and the algorithm here is a little different from
21214 the cpu version tonemap currently. A setting of 0.0 disables this option.
21215
21216 @item threshold
21217 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
21218 is used to detect whether the scene has changed or not. If the distance between
21219 the current frame average brightness and the current running average exceeds
21220 a threshold value, we would re-calculate scene average and peak brightness.
21221 The default value is 0.2.
21222
21223 @item format
21224 Specify the output pixel format.
21225
21226 Currently supported formats are:
21227 @table @var
21228 @item p010
21229 @item nv12
21230 @end table
21231
21232 @item range, r
21233 Set the output color range.
21234
21235 Possible values are:
21236 @table @var
21237 @item tv/mpeg
21238 @item pc/jpeg
21239 @end table
21240
21241 Default is same as input.
21242
21243 @item primaries, p
21244 Set the output color primaries.
21245
21246 Possible values are:
21247 @table @var
21248 @item bt709
21249 @item bt2020
21250 @end table
21251
21252 Default is same as input.
21253
21254 @item transfer, t
21255 Set the output transfer characteristics.
21256
21257 Possible values are:
21258 @table @var
21259 @item bt709
21260 @item bt2020
21261 @end table
21262
21263 Default is bt709.
21264
21265 @item matrix, m
21266 Set the output colorspace matrix.
21267
21268 Possible value are:
21269 @table @var
21270 @item bt709
21271 @item bt2020
21272 @end table
21273
21274 Default is same as input.
21275
21276 @end table
21277
21278 @subsection Example
21279
21280 @itemize
21281 @item
21282 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
21283 @example
21284 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
21285 @end example
21286 @end itemize
21287
21288 @section unsharp_opencl
21289
21290 Sharpen or blur the input video.
21291
21292 It accepts the following parameters:
21293
21294 @table @option
21295 @item luma_msize_x, lx
21296 Set the luma matrix horizontal size.
21297 Range is @code{[1, 23]} and default value is @code{5}.
21298
21299 @item luma_msize_y, ly
21300 Set the luma matrix vertical size.
21301 Range is @code{[1, 23]} and default value is @code{5}.
21302
21303 @item luma_amount, la
21304 Set the luma effect strength.
21305 Range is @code{[-10, 10]} and default value is @code{1.0}.
21306
21307 Negative values will blur the input video, while positive values will
21308 sharpen it, a value of zero will disable the effect.
21309
21310 @item chroma_msize_x, cx
21311 Set the chroma matrix horizontal size.
21312 Range is @code{[1, 23]} and default value is @code{5}.
21313
21314 @item chroma_msize_y, cy
21315 Set the chroma matrix vertical size.
21316 Range is @code{[1, 23]} and default value is @code{5}.
21317
21318 @item chroma_amount, ca
21319 Set the chroma effect strength.
21320 Range is @code{[-10, 10]} and default value is @code{0.0}.
21321
21322 Negative values will blur the input video, while positive values will
21323 sharpen it, a value of zero will disable the effect.
21324
21325 @end table
21326
21327 All parameters are optional and default to the equivalent of the
21328 string '5:5:1.0:5:5:0.0'.
21329
21330 @subsection Examples
21331
21332 @itemize
21333 @item
21334 Apply strong luma sharpen effect:
21335 @example
21336 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
21337 @end example
21338
21339 @item
21340 Apply a strong blur of both luma and chroma parameters:
21341 @example
21342 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
21343 @end example
21344 @end itemize
21345
21346 @c man end OPENCL VIDEO FILTERS
21347
21348 @chapter VAAPI Video Filters
21349 @c man begin VAAPI VIDEO FILTERS
21350
21351 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
21352
21353 To enable compilation of these filters you need to configure FFmpeg with
21354 @code{--enable-vaapi}.
21355
21356 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}
21357
21358 @section tonemap_vappi
21359
21360 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
21361 It maps the dynamic range of HDR10 content to the SDR content.
21362 It currently only accepts HDR10 as input.
21363
21364 It accepts the following parameters:
21365
21366 @table @option
21367 @item format
21368 Specify the output pixel format.
21369
21370 Currently supported formats are:
21371 @table @var
21372 @item p010
21373 @item nv12
21374 @end table
21375
21376 Default is nv12.
21377
21378 @item primaries, p
21379 Set the output color primaries.
21380
21381 Default is same as input.
21382
21383 @item transfer, t
21384 Set the output transfer characteristics.
21385
21386 Default is bt709.
21387
21388 @item matrix, m
21389 Set the output colorspace matrix.
21390
21391 Default is same as input.
21392
21393 @end table
21394
21395 @subsection Example
21396
21397 @itemize
21398 @item
21399 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
21400 @example
21401 tonemap_vaapi=format=p010:t=bt2020-10
21402 @end example
21403 @end itemize
21404
21405 @c man end VAAPI VIDEO FILTERS
21406
21407 @chapter Video Sources
21408 @c man begin VIDEO SOURCES
21409
21410 Below is a description of the currently available video sources.
21411
21412 @section buffer
21413
21414 Buffer video frames, and make them available to the filter chain.
21415
21416 This source is mainly intended for a programmatic use, in particular
21417 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
21418
21419 It accepts the following parameters:
21420
21421 @table @option
21422
21423 @item video_size
21424 Specify the size (width and height) of the buffered video frames. For the
21425 syntax of this option, check the
21426 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21427
21428 @item width
21429 The input video width.
21430
21431 @item height
21432 The input video height.
21433
21434 @item pix_fmt
21435 A string representing the pixel format of the buffered video frames.
21436 It may be a number corresponding to a pixel format, or a pixel format
21437 name.
21438
21439 @item time_base
21440 Specify the timebase assumed by the timestamps of the buffered frames.
21441
21442 @item frame_rate
21443 Specify the frame rate expected for the video stream.
21444
21445 @item pixel_aspect, sar
21446 The sample (pixel) aspect ratio of the input video.
21447
21448 @item sws_param
21449 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
21450 to the filtergraph description to specify swscale flags for automatically
21451 inserted scalers. See @ref{Filtergraph syntax}.
21452
21453 @item hw_frames_ctx
21454 When using a hardware pixel format, this should be a reference to an
21455 AVHWFramesContext describing input frames.
21456 @end table
21457
21458 For example:
21459 @example
21460 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
21461 @end example
21462
21463 will instruct the source to accept video frames with size 320x240 and
21464 with format "yuv410p", assuming 1/24 as the timestamps timebase and
21465 square pixels (1:1 sample aspect ratio).
21466 Since the pixel format with name "yuv410p" corresponds to the number 6
21467 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
21468 this example corresponds to:
21469 @example
21470 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
21471 @end example
21472
21473 Alternatively, the options can be specified as a flat string, but this
21474 syntax is deprecated:
21475
21476 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
21477
21478 @section cellauto
21479
21480 Create a pattern generated by an elementary cellular automaton.
21481
21482 The initial state of the cellular automaton can be defined through the
21483 @option{filename} and @option{pattern} options. If such options are
21484 not specified an initial state is created randomly.
21485
21486 At each new frame a new row in the video is filled with the result of
21487 the cellular automaton next generation. The behavior when the whole
21488 frame is filled is defined by the @option{scroll} option.
21489
21490 This source accepts the following options:
21491
21492 @table @option
21493 @item filename, f
21494 Read the initial cellular automaton state, i.e. the starting row, from
21495 the specified file.
21496 In the file, each non-whitespace character is considered an alive
21497 cell, a newline will terminate the row, and further characters in the
21498 file will be ignored.
21499
21500 @item pattern, p
21501 Read the initial cellular automaton state, i.e. the starting row, from
21502 the specified string.
21503
21504 Each non-whitespace character in the string is considered an alive
21505 cell, a newline will terminate the row, and further characters in the
21506 string will be ignored.
21507
21508 @item rate, r
21509 Set the video rate, that is the number of frames generated per second.
21510 Default is 25.
21511
21512 @item random_fill_ratio, ratio
21513 Set the random fill ratio for the initial cellular automaton row. It
21514 is a floating point number value ranging from 0 to 1, defaults to
21515 1/PHI.
21516
21517 This option is ignored when a file or a pattern is specified.
21518
21519 @item random_seed, seed
21520 Set the seed for filling randomly the initial row, must be an integer
21521 included between 0 and UINT32_MAX. If not specified, or if explicitly
21522 set to -1, the filter will try to use a good random seed on a best
21523 effort basis.
21524
21525 @item rule
21526 Set the cellular automaton rule, it is a number ranging from 0 to 255.
21527 Default value is 110.
21528
21529 @item size, s
21530 Set the size of the output video. For the syntax of this option, check the
21531 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21532
21533 If @option{filename} or @option{pattern} is specified, the size is set
21534 by default to the width of the specified initial state row, and the
21535 height is set to @var{width} * PHI.
21536
21537 If @option{size} is set, it must contain the width of the specified
21538 pattern string, and the specified pattern will be centered in the
21539 larger row.
21540
21541 If a filename or a pattern string is not specified, the size value
21542 defaults to "320x518" (used for a randomly generated initial state).
21543
21544 @item scroll
21545 If set to 1, scroll the output upward when all the rows in the output
21546 have been already filled. If set to 0, the new generated row will be
21547 written over the top row just after the bottom row is filled.
21548 Defaults to 1.
21549
21550 @item start_full, full
21551 If set to 1, completely fill the output with generated rows before
21552 outputting the first frame.
21553 This is the default behavior, for disabling set the value to 0.
21554
21555 @item stitch
21556 If set to 1, stitch the left and right row edges together.
21557 This is the default behavior, for disabling set the value to 0.
21558 @end table
21559
21560 @subsection Examples
21561
21562 @itemize
21563 @item
21564 Read the initial state from @file{pattern}, and specify an output of
21565 size 200x400.
21566 @example
21567 cellauto=f=pattern:s=200x400
21568 @end example
21569
21570 @item
21571 Generate a random initial row with a width of 200 cells, with a fill
21572 ratio of 2/3:
21573 @example
21574 cellauto=ratio=2/3:s=200x200
21575 @end example
21576
21577 @item
21578 Create a pattern generated by rule 18 starting by a single alive cell
21579 centered on an initial row with width 100:
21580 @example
21581 cellauto=p=@@:s=100x400:full=0:rule=18
21582 @end example
21583
21584 @item
21585 Specify a more elaborated initial pattern:
21586 @example
21587 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
21588 @end example
21589
21590 @end itemize
21591
21592 @anchor{coreimagesrc}
21593 @section coreimagesrc
21594 Video source generated on GPU using Apple's CoreImage API on OSX.
21595
21596 This video source is a specialized version of the @ref{coreimage} video filter.
21597 Use a core image generator at the beginning of the applied filterchain to
21598 generate the content.
21599
21600 The coreimagesrc video source accepts the following options:
21601 @table @option
21602 @item list_generators
21603 List all available generators along with all their respective options as well as
21604 possible minimum and maximum values along with the default values.
21605 @example
21606 list_generators=true
21607 @end example
21608
21609 @item size, s
21610 Specify the size of the sourced video. For the syntax of this option, check the
21611 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21612 The default value is @code{320x240}.
21613
21614 @item rate, r
21615 Specify the frame rate of the sourced video, as the number of frames
21616 generated per second. It has to be a string in the format
21617 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
21618 number or a valid video frame rate abbreviation. The default value is
21619 "25".
21620
21621 @item sar
21622 Set the sample aspect ratio of the sourced video.
21623
21624 @item duration, d
21625 Set the duration of the sourced video. See
21626 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
21627 for the accepted syntax.
21628
21629 If not specified, or the expressed duration is negative, the video is
21630 supposed to be generated forever.
21631 @end table
21632
21633 Additionally, all options of the @ref{coreimage} video filter are accepted.
21634 A complete filterchain can be used for further processing of the
21635 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
21636 and examples for details.
21637
21638 @subsection Examples
21639
21640 @itemize
21641
21642 @item
21643 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
21644 given as complete and escaped command-line for Apple's standard bash shell:
21645 @example
21646 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
21647 @end example
21648 This example is equivalent to the QRCode example of @ref{coreimage} without the
21649 need for a nullsrc video source.
21650 @end itemize
21651
21652
21653 @section mandelbrot
21654
21655 Generate a Mandelbrot set fractal, and progressively zoom towards the
21656 point specified with @var{start_x} and @var{start_y}.
21657
21658 This source accepts the following options:
21659
21660 @table @option
21661
21662 @item end_pts
21663 Set the terminal pts value. Default value is 400.
21664
21665 @item end_scale
21666 Set the terminal scale value.
21667 Must be a floating point value. Default value is 0.3.
21668
21669 @item inner
21670 Set the inner coloring mode, that is the algorithm used to draw the
21671 Mandelbrot fractal internal region.
21672
21673 It shall assume one of the following values:
21674 @table @option
21675 @item black
21676 Set black mode.
21677 @item convergence
21678 Show time until convergence.
21679 @item mincol
21680 Set color based on point closest to the origin of the iterations.
21681 @item period
21682 Set period mode.
21683 @end table
21684
21685 Default value is @var{mincol}.
21686
21687 @item bailout
21688 Set the bailout value. Default value is 10.0.
21689
21690 @item maxiter
21691 Set the maximum of iterations performed by the rendering
21692 algorithm. Default value is 7189.
21693
21694 @item outer
21695 Set outer coloring mode.
21696 It shall assume one of following values:
21697 @table @option
21698 @item iteration_count
21699 Set iteration count mode.
21700 @item normalized_iteration_count
21701 set normalized iteration count mode.
21702 @end table
21703 Default value is @var{normalized_iteration_count}.
21704
21705 @item rate, r
21706 Set frame rate, expressed as number of frames per second. Default
21707 value is "25".
21708
21709 @item size, s
21710 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
21711 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
21712
21713 @item start_scale
21714 Set the initial scale value. Default value is 3.0.
21715
21716 @item start_x
21717 Set the initial x position. Must be a floating point value between
21718 -100 and 100. Default value is -0.743643887037158704752191506114774.
21719
21720 @item start_y
21721 Set the initial y position. Must be a floating point value between
21722 -100 and 100. Default value is -0.131825904205311970493132056385139.
21723 @end table
21724
21725 @section mptestsrc
21726
21727 Generate various test patterns, as generated by the MPlayer test filter.
21728
21729 The size of the generated video is fixed, and is 256x256.
21730 This source is useful in particular for testing encoding features.
21731
21732 This source accepts the following options:
21733
21734 @table @option
21735
21736 @item rate, r
21737 Specify the frame rate of the sourced video, as the number of frames
21738 generated per second. It has to be a string in the format
21739 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
21740 number or a valid video frame rate abbreviation. The default value is
21741 "25".
21742
21743 @item duration, d
21744 Set the duration of the sourced video. See
21745 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
21746 for the accepted syntax.
21747
21748 If not specified, or the expressed duration is negative, the video is
21749 supposed to be generated forever.
21750
21751 @item test, t
21752
21753 Set the number or the name of the test to perform. Supported tests are:
21754 @table @option
21755 @item dc_luma
21756 @item dc_chroma
21757 @item freq_luma
21758 @item freq_chroma
21759 @item amp_luma
21760 @item amp_chroma
21761 @item cbp
21762 @item mv
21763 @item ring1
21764 @item ring2
21765 @item all
21766
21767 @item max_frames, m
21768 Set the maximum number of frames generated for each test, default value is 30.
21769
21770 @end table
21771
21772 Default value is "all", which will cycle through the list of all tests.
21773 @end table
21774
21775 Some examples:
21776 @example
21777 mptestsrc=t=dc_luma
21778 @end example
21779
21780 will generate a "dc_luma" test pattern.
21781
21782 @section frei0r_src
21783
21784 Provide a frei0r source.
21785
21786 To enable compilation of this filter you need to install the frei0r
21787 header and configure FFmpeg with @code{--enable-frei0r}.
21788
21789 This source accepts the following parameters:
21790
21791 @table @option
21792
21793 @item size
21794 The size of the video to generate. For the syntax of this option, check the
21795 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21796
21797 @item framerate
21798 The framerate of the generated video. It may be a string of the form
21799 @var{num}/@var{den} or a frame rate abbreviation.
21800
21801 @item filter_name
21802 The name to the frei0r source to load. For more information regarding frei0r and
21803 how to set the parameters, read the @ref{frei0r} section in the video filters
21804 documentation.
21805
21806 @item filter_params
21807 A '|'-separated list of parameters to pass to the frei0r source.
21808
21809 @end table
21810
21811 For example, to generate a frei0r partik0l source with size 200x200
21812 and frame rate 10 which is overlaid on the overlay filter main input:
21813 @example
21814 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
21815 @end example
21816
21817 @section life
21818
21819 Generate a life pattern.
21820
21821 This source is based on a generalization of John Conway's life game.
21822
21823 The sourced input represents a life grid, each pixel represents a cell
21824 which can be in one of two possible states, alive or dead. Every cell
21825 interacts with its eight neighbours, which are the cells that are
21826 horizontally, vertically, or diagonally adjacent.
21827
21828 At each interaction the grid evolves according to the adopted rule,
21829 which specifies the number of neighbor alive cells which will make a
21830 cell stay alive or born. The @option{rule} option allows one to specify
21831 the rule to adopt.
21832
21833 This source accepts the following options:
21834
21835 @table @option
21836 @item filename, f
21837 Set the file from which to read the initial grid state. In the file,
21838 each non-whitespace character is considered an alive cell, and newline
21839 is used to delimit the end of each row.
21840
21841 If this option is not specified, the initial grid is generated
21842 randomly.
21843
21844 @item rate, r
21845 Set the video rate, that is the number of frames generated per second.
21846 Default is 25.
21847
21848 @item random_fill_ratio, ratio
21849 Set the random fill ratio for the initial random grid. It is a
21850 floating point number value ranging from 0 to 1, defaults to 1/PHI.
21851 It is ignored when a file is specified.
21852
21853 @item random_seed, seed
21854 Set the seed for filling the initial random grid, must be an integer
21855 included between 0 and UINT32_MAX. If not specified, or if explicitly
21856 set to -1, the filter will try to use a good random seed on a best
21857 effort basis.
21858
21859 @item rule
21860 Set the life rule.
21861
21862 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
21863 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
21864 @var{NS} specifies the number of alive neighbor cells which make a
21865 live cell stay alive, and @var{NB} the number of alive neighbor cells
21866 which make a dead cell to become alive (i.e. to "born").
21867 "s" and "b" can be used in place of "S" and "B", respectively.
21868
21869 Alternatively a rule can be specified by an 18-bits integer. The 9
21870 high order bits are used to encode the next cell state if it is alive
21871 for each number of neighbor alive cells, the low order bits specify
21872 the rule for "borning" new cells. Higher order bits encode for an
21873 higher number of neighbor cells.
21874 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
21875 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
21876
21877 Default value is "S23/B3", which is the original Conway's game of life
21878 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
21879 cells, and will born a new cell if there are three alive cells around
21880 a dead cell.
21881
21882 @item size, s
21883 Set the size of the output video. For the syntax of this option, check the
21884 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21885
21886 If @option{filename} is specified, the size is set by default to the
21887 same size of the input file. If @option{size} is set, it must contain
21888 the size specified in the input file, and the initial grid defined in
21889 that file is centered in the larger resulting area.
21890
21891 If a filename is not specified, the size value defaults to "320x240"
21892 (used for a randomly generated initial grid).
21893
21894 @item stitch
21895 If set to 1, stitch the left and right grid edges together, and the
21896 top and bottom edges also. Defaults to 1.
21897
21898 @item mold
21899 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
21900 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
21901 value from 0 to 255.
21902
21903 @item life_color
21904 Set the color of living (or new born) cells.
21905
21906 @item death_color
21907 Set the color of dead cells. If @option{mold} is set, this is the first color
21908 used to represent a dead cell.
21909
21910 @item mold_color
21911 Set mold color, for definitely dead and moldy cells.
21912
21913 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
21914 ffmpeg-utils manual,ffmpeg-utils}.
21915 @end table
21916
21917 @subsection Examples
21918
21919 @itemize
21920 @item
21921 Read a grid from @file{pattern}, and center it on a grid of size
21922 300x300 pixels:
21923 @example
21924 life=f=pattern:s=300x300
21925 @end example
21926
21927 @item
21928 Generate a random grid of size 200x200, with a fill ratio of 2/3:
21929 @example
21930 life=ratio=2/3:s=200x200
21931 @end example
21932
21933 @item
21934 Specify a custom rule for evolving a randomly generated grid:
21935 @example
21936 life=rule=S14/B34
21937 @end example
21938
21939 @item
21940 Full example with slow death effect (mold) using @command{ffplay}:
21941 @example
21942 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
21943 @end example
21944 @end itemize
21945
21946 @anchor{allrgb}
21947 @anchor{allyuv}
21948 @anchor{color}
21949 @anchor{haldclutsrc}
21950 @anchor{nullsrc}
21951 @anchor{pal75bars}
21952 @anchor{pal100bars}
21953 @anchor{rgbtestsrc}
21954 @anchor{smptebars}
21955 @anchor{smptehdbars}
21956 @anchor{testsrc}
21957 @anchor{testsrc2}
21958 @anchor{yuvtestsrc}
21959 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
21960
21961 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
21962
21963 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
21964
21965 The @code{color} source provides an uniformly colored input.
21966
21967 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
21968 @ref{haldclut} filter.
21969
21970 The @code{nullsrc} source returns unprocessed video frames. It is
21971 mainly useful to be employed in analysis / debugging tools, or as the
21972 source for filters which ignore the input data.
21973
21974 The @code{pal75bars} source generates a color bars pattern, based on
21975 EBU PAL recommendations with 75% color levels.
21976
21977 The @code{pal100bars} source generates a color bars pattern, based on
21978 EBU PAL recommendations with 100% color levels.
21979
21980 The @code{rgbtestsrc} source generates an RGB test pattern useful for
21981 detecting RGB vs BGR issues. You should see a red, green and blue
21982 stripe from top to bottom.
21983
21984 The @code{smptebars} source generates a color bars pattern, based on
21985 the SMPTE Engineering Guideline EG 1-1990.
21986
21987 The @code{smptehdbars} source generates a color bars pattern, based on
21988 the SMPTE RP 219-2002.
21989
21990 The @code{testsrc} source generates a test video pattern, showing a
21991 color pattern, a scrolling gradient and a timestamp. This is mainly
21992 intended for testing purposes.
21993
21994 The @code{testsrc2} source is similar to testsrc, but supports more
21995 pixel formats instead of just @code{rgb24}. This allows using it as an
21996 input for other tests without requiring a format conversion.
21997
21998 The @code{yuvtestsrc} source generates an YUV test pattern. You should
21999 see a y, cb and cr stripe from top to bottom.
22000
22001 The sources accept the following parameters:
22002
22003 @table @option
22004
22005 @item level
22006 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
22007 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
22008 pixels to be used as identity matrix for 3D lookup tables. Each component is
22009 coded on a @code{1/(N*N)} scale.
22010
22011 @item color, c
22012 Specify the color of the source, only available in the @code{color}
22013 source. For the syntax of this option, check the
22014 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
22015
22016 @item size, s
22017 Specify the size of the sourced video. For the syntax of this option, check the
22018 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22019 The default value is @code{320x240}.
22020
22021 This option is not available with the @code{allrgb}, @code{allyuv}, and
22022 @code{haldclutsrc} filters.
22023
22024 @item rate, r
22025 Specify the frame rate of the sourced video, as the number of frames
22026 generated per second. It has to be a string in the format
22027 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22028 number or a valid video frame rate abbreviation. The default value is
22029 "25".
22030
22031 @item duration, d
22032 Set the duration of the sourced video. See
22033 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22034 for the accepted syntax.
22035
22036 If not specified, or the expressed duration is negative, the video is
22037 supposed to be generated forever.
22038
22039 @item sar
22040 Set the sample aspect ratio of the sourced video.
22041
22042 @item alpha
22043 Specify the alpha (opacity) of the background, only available in the
22044 @code{testsrc2} source. The value must be between 0 (fully transparent) and
22045 255 (fully opaque, the default).
22046
22047 @item decimals, n
22048 Set the number of decimals to show in the timestamp, only available in the
22049 @code{testsrc} source.
22050
22051 The displayed timestamp value will correspond to the original
22052 timestamp value multiplied by the power of 10 of the specified
22053 value. Default value is 0.
22054 @end table
22055
22056 @subsection Examples
22057
22058 @itemize
22059 @item
22060 Generate a video with a duration of 5.3 seconds, with size
22061 176x144 and a frame rate of 10 frames per second:
22062 @example
22063 testsrc=duration=5.3:size=qcif:rate=10
22064 @end example
22065
22066 @item
22067 The following graph description will generate a red source
22068 with an opacity of 0.2, with size "qcif" and a frame rate of 10
22069 frames per second:
22070 @example
22071 color=c=red@@0.2:s=qcif:r=10
22072 @end example
22073
22074 @item
22075 If the input content is to be ignored, @code{nullsrc} can be used. The
22076 following command generates noise in the luminance plane by employing
22077 the @code{geq} filter:
22078 @example
22079 nullsrc=s=256x256, geq=random(1)*255:128:128
22080 @end example
22081 @end itemize
22082
22083 @subsection Commands
22084
22085 The @code{color} source supports the following commands:
22086
22087 @table @option
22088 @item c, color
22089 Set the color of the created image. Accepts the same syntax of the
22090 corresponding @option{color} option.
22091 @end table
22092
22093 @section openclsrc
22094
22095 Generate video using an OpenCL program.
22096
22097 @table @option
22098
22099 @item source
22100 OpenCL program source file.
22101
22102 @item kernel
22103 Kernel name in program.
22104
22105 @item size, s
22106 Size of frames to generate.  This must be set.
22107
22108 @item format
22109 Pixel format to use for the generated frames.  This must be set.
22110
22111 @item rate, r
22112 Number of frames generated every second.  Default value is '25'.
22113
22114 @end table
22115
22116 For details of how the program loading works, see the @ref{program_opencl}
22117 filter.
22118
22119 Example programs:
22120
22121 @itemize
22122 @item
22123 Generate a colour ramp by setting pixel values from the position of the pixel
22124 in the output image.  (Note that this will work with all pixel formats, but
22125 the generated output will not be the same.)
22126 @verbatim
22127 __kernel void ramp(__write_only image2d_t dst,
22128                    unsigned int index)
22129 {
22130     int2 loc = (int2)(get_global_id(0), get_global_id(1));
22131
22132     float4 val;
22133     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
22134
22135     write_imagef(dst, loc, val);
22136 }
22137 @end verbatim
22138
22139 @item
22140 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
22141 @verbatim
22142 __kernel void sierpinski_carpet(__write_only image2d_t dst,
22143                                 unsigned int index)
22144 {
22145     int2 loc = (int2)(get_global_id(0), get_global_id(1));
22146
22147     float4 value = 0.0f;
22148     int x = loc.x + index;
22149     int y = loc.y + index;
22150     while (x > 0 || y > 0) {
22151         if (x % 3 == 1 && y % 3 == 1) {
22152             value = 1.0f;
22153             break;
22154         }
22155         x /= 3;
22156         y /= 3;
22157     }
22158
22159     write_imagef(dst, loc, value);
22160 }
22161 @end verbatim
22162
22163 @end itemize
22164
22165 @section sierpinski
22166
22167 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
22168
22169 This source accepts the following options:
22170
22171 @table @option
22172 @item size, s
22173 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22174 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22175
22176 @item rate, r
22177 Set frame rate, expressed as number of frames per second. Default
22178 value is "25".
22179
22180 @item seed
22181 Set seed which is used for random panning.
22182
22183 @item jump
22184 Set max jump for single pan destination. Allowed range is from 1 to 10000.
22185
22186 @item type
22187 Set fractal type, can be default @code{carpet} or @code{triangle}.
22188 @end table
22189
22190 @c man end VIDEO SOURCES
22191
22192 @chapter Video Sinks
22193 @c man begin VIDEO SINKS
22194
22195 Below is a description of the currently available video sinks.
22196
22197 @section buffersink
22198
22199 Buffer video frames, and make them available to the end of the filter
22200 graph.
22201
22202 This sink is mainly intended for programmatic use, in particular
22203 through the interface defined in @file{libavfilter/buffersink.h}
22204 or the options system.
22205
22206 It accepts a pointer to an AVBufferSinkContext structure, which
22207 defines the incoming buffers' formats, to be passed as the opaque
22208 parameter to @code{avfilter_init_filter} for initialization.
22209
22210 @section nullsink
22211
22212 Null video sink: do absolutely nothing with the input video. It is
22213 mainly useful as a template and for use in analysis / debugging
22214 tools.
22215
22216 @c man end VIDEO SINKS
22217
22218 @chapter Multimedia Filters
22219 @c man begin MULTIMEDIA FILTERS
22220
22221 Below is a description of the currently available multimedia filters.
22222
22223 @section abitscope
22224
22225 Convert input audio to a video output, displaying the audio bit scope.
22226
22227 The filter accepts the following options:
22228
22229 @table @option
22230 @item rate, r
22231 Set frame rate, expressed as number of frames per second. Default
22232 value is "25".
22233
22234 @item size, s
22235 Specify the video size for the output. For the syntax of this option, check the
22236 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22237 Default value is @code{1024x256}.
22238
22239 @item colors
22240 Specify list of colors separated by space or by '|' which will be used to
22241 draw channels. Unrecognized or missing colors will be replaced
22242 by white color.
22243 @end table
22244
22245 @section adrawgraph
22246 Draw a graph using input audio metadata.
22247
22248 See @ref{drawgraph}
22249
22250 @section agraphmonitor
22251
22252 See @ref{graphmonitor}.
22253
22254 @section ahistogram
22255
22256 Convert input audio to a video output, displaying the volume histogram.
22257
22258 The filter accepts the following options:
22259
22260 @table @option
22261 @item dmode
22262 Specify how histogram is calculated.
22263
22264 It accepts the following values:
22265 @table @samp
22266 @item single
22267 Use single histogram for all channels.
22268 @item separate
22269 Use separate histogram for each channel.
22270 @end table
22271 Default is @code{single}.
22272
22273 @item rate, r
22274 Set frame rate, expressed as number of frames per second. Default
22275 value is "25".
22276
22277 @item size, s
22278 Specify the video size for the output. For the syntax of this option, check the
22279 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22280 Default value is @code{hd720}.
22281
22282 @item scale
22283 Set display scale.
22284
22285 It accepts the following values:
22286 @table @samp
22287 @item log
22288 logarithmic
22289 @item sqrt
22290 square root
22291 @item cbrt
22292 cubic root
22293 @item lin
22294 linear
22295 @item rlog
22296 reverse logarithmic
22297 @end table
22298 Default is @code{log}.
22299
22300 @item ascale
22301 Set amplitude scale.
22302
22303 It accepts the following values:
22304 @table @samp
22305 @item log
22306 logarithmic
22307 @item lin
22308 linear
22309 @end table
22310 Default is @code{log}.
22311
22312 @item acount
22313 Set how much frames to accumulate in histogram.
22314 Default is 1. Setting this to -1 accumulates all frames.
22315
22316 @item rheight
22317 Set histogram ratio of window height.
22318
22319 @item slide
22320 Set sonogram sliding.
22321
22322 It accepts the following values:
22323 @table @samp
22324 @item replace
22325 replace old rows with new ones.
22326 @item scroll
22327 scroll from top to bottom.
22328 @end table
22329 Default is @code{replace}.
22330 @end table
22331
22332 @section aphasemeter
22333
22334 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
22335 representing mean phase of current audio frame. A video output can also be produced and is
22336 enabled by default. The audio is passed through as first output.
22337
22338 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
22339 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
22340 and @code{1} means channels are in phase.
22341
22342 The filter accepts the following options, all related to its video output:
22343
22344 @table @option
22345 @item rate, r
22346 Set the output frame rate. Default value is @code{25}.
22347
22348 @item size, s
22349 Set the video size for the output. For the syntax of this option, check the
22350 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22351 Default value is @code{800x400}.
22352
22353 @item rc
22354 @item gc
22355 @item bc
22356 Specify the red, green, blue contrast. Default values are @code{2},
22357 @code{7} and @code{1}.
22358 Allowed range is @code{[0, 255]}.
22359
22360 @item mpc
22361 Set color which will be used for drawing median phase. If color is
22362 @code{none} which is default, no median phase value will be drawn.
22363
22364 @item video
22365 Enable video output. Default is enabled.
22366 @end table
22367
22368 @section avectorscope
22369
22370 Convert input audio to a video output, representing the audio vector
22371 scope.
22372
22373 The filter is used to measure the difference between channels of stereo
22374 audio stream. A monaural signal, consisting of identical left and right
22375 signal, results in straight vertical line. Any stereo separation is visible
22376 as a deviation from this line, creating a Lissajous figure.
22377 If the straight (or deviation from it) but horizontal line appears this
22378 indicates that the left and right channels are out of phase.
22379
22380 The filter accepts the following options:
22381
22382 @table @option
22383 @item mode, m
22384 Set the vectorscope mode.
22385
22386 Available values are:
22387 @table @samp
22388 @item lissajous
22389 Lissajous rotated by 45 degrees.
22390
22391 @item lissajous_xy
22392 Same as above but not rotated.
22393
22394 @item polar
22395 Shape resembling half of circle.
22396 @end table
22397
22398 Default value is @samp{lissajous}.
22399
22400 @item size, s
22401 Set the video size for the output. For the syntax of this option, check the
22402 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22403 Default value is @code{400x400}.
22404
22405 @item rate, r
22406 Set the output frame rate. Default value is @code{25}.
22407
22408 @item rc
22409 @item gc
22410 @item bc
22411 @item ac
22412 Specify the red, green, blue and alpha contrast. Default values are @code{40},
22413 @code{160}, @code{80} and @code{255}.
22414 Allowed range is @code{[0, 255]}.
22415
22416 @item rf
22417 @item gf
22418 @item bf
22419 @item af
22420 Specify the red, green, blue and alpha fade. Default values are @code{15},
22421 @code{10}, @code{5} and @code{5}.
22422 Allowed range is @code{[0, 255]}.
22423
22424 @item zoom
22425 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
22426 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
22427
22428 @item draw
22429 Set the vectorscope drawing mode.
22430
22431 Available values are:
22432 @table @samp
22433 @item dot
22434 Draw dot for each sample.
22435
22436 @item line
22437 Draw line between previous and current sample.
22438 @end table
22439
22440 Default value is @samp{dot}.
22441
22442 @item scale
22443 Specify amplitude scale of audio samples.
22444
22445 Available values are:
22446 @table @samp
22447 @item lin
22448 Linear.
22449
22450 @item sqrt
22451 Square root.
22452
22453 @item cbrt
22454 Cubic root.
22455
22456 @item log
22457 Logarithmic.
22458 @end table
22459
22460 @item swap
22461 Swap left channel axis with right channel axis.
22462
22463 @item mirror
22464 Mirror axis.
22465
22466 @table @samp
22467 @item none
22468 No mirror.
22469
22470 @item x
22471 Mirror only x axis.
22472
22473 @item y
22474 Mirror only y axis.
22475
22476 @item xy
22477 Mirror both axis.
22478 @end table
22479
22480 @end table
22481
22482 @subsection Examples
22483
22484 @itemize
22485 @item
22486 Complete example using @command{ffplay}:
22487 @example
22488 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
22489              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
22490 @end example
22491 @end itemize
22492
22493 @section bench, abench
22494
22495 Benchmark part of a filtergraph.
22496
22497 The filter accepts the following options:
22498
22499 @table @option
22500 @item action
22501 Start or stop a timer.
22502
22503 Available values are:
22504 @table @samp
22505 @item start
22506 Get the current time, set it as frame metadata (using the key
22507 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
22508
22509 @item stop
22510 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
22511 the input frame metadata to get the time difference. Time difference, average,
22512 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
22513 @code{min}) are then printed. The timestamps are expressed in seconds.
22514 @end table
22515 @end table
22516
22517 @subsection Examples
22518
22519 @itemize
22520 @item
22521 Benchmark @ref{selectivecolor} filter:
22522 @example
22523 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
22524 @end example
22525 @end itemize
22526
22527 @section concat
22528
22529 Concatenate audio and video streams, joining them together one after the
22530 other.
22531
22532 The filter works on segments of synchronized video and audio streams. All
22533 segments must have the same number of streams of each type, and that will
22534 also be the number of streams at output.
22535
22536 The filter accepts the following options:
22537
22538 @table @option
22539
22540 @item n
22541 Set the number of segments. Default is 2.
22542
22543 @item v
22544 Set the number of output video streams, that is also the number of video
22545 streams in each segment. Default is 1.
22546
22547 @item a
22548 Set the number of output audio streams, that is also the number of audio
22549 streams in each segment. Default is 0.
22550
22551 @item unsafe
22552 Activate unsafe mode: do not fail if segments have a different format.
22553
22554 @end table
22555
22556 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
22557 @var{a} audio outputs.
22558
22559 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
22560 segment, in the same order as the outputs, then the inputs for the second
22561 segment, etc.
22562
22563 Related streams do not always have exactly the same duration, for various
22564 reasons including codec frame size or sloppy authoring. For that reason,
22565 related synchronized streams (e.g. a video and its audio track) should be
22566 concatenated at once. The concat filter will use the duration of the longest
22567 stream in each segment (except the last one), and if necessary pad shorter
22568 audio streams with silence.
22569
22570 For this filter to work correctly, all segments must start at timestamp 0.
22571
22572 All corresponding streams must have the same parameters in all segments; the
22573 filtering system will automatically select a common pixel format for video
22574 streams, and a common sample format, sample rate and channel layout for
22575 audio streams, but other settings, such as resolution, must be converted
22576 explicitly by the user.
22577
22578 Different frame rates are acceptable but will result in variable frame rate
22579 at output; be sure to configure the output file to handle it.
22580
22581 @subsection Examples
22582
22583 @itemize
22584 @item
22585 Concatenate an opening, an episode and an ending, all in bilingual version
22586 (video in stream 0, audio in streams 1 and 2):
22587 @example
22588 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
22589   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
22590    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
22591   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
22592 @end example
22593
22594 @item
22595 Concatenate two parts, handling audio and video separately, using the
22596 (a)movie sources, and adjusting the resolution:
22597 @example
22598 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
22599 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
22600 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
22601 @end example
22602 Note that a desync will happen at the stitch if the audio and video streams
22603 do not have exactly the same duration in the first file.
22604
22605 @end itemize
22606
22607 @subsection Commands
22608
22609 This filter supports the following commands:
22610 @table @option
22611 @item next
22612 Close the current segment and step to the next one
22613 @end table
22614
22615 @anchor{ebur128}
22616 @section ebur128
22617
22618 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
22619 level. By default, it logs a message at a frequency of 10Hz with the
22620 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
22621 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
22622
22623 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
22624 sample format is double-precision floating point. The input stream will be converted to
22625 this specification, if needed. Users may need to insert aformat and/or aresample filters
22626 after this filter to obtain the original parameters.
22627
22628 The filter also has a video output (see the @var{video} option) with a real
22629 time graph to observe the loudness evolution. The graphic contains the logged
22630 message mentioned above, so it is not printed anymore when this option is set,
22631 unless the verbose logging is set. The main graphing area contains the
22632 short-term loudness (3 seconds of analysis), and the gauge on the right is for
22633 the momentary loudness (400 milliseconds), but can optionally be configured
22634 to instead display short-term loudness (see @var{gauge}).
22635
22636 The green area marks a  +/- 1LU target range around the target loudness
22637 (-23LUFS by default, unless modified through @var{target}).
22638
22639 More information about the Loudness Recommendation EBU R128 on
22640 @url{http://tech.ebu.ch/loudness}.
22641
22642 The filter accepts the following options:
22643
22644 @table @option
22645
22646 @item video
22647 Activate the video output. The audio stream is passed unchanged whether this
22648 option is set or no. The video stream will be the first output stream if
22649 activated. Default is @code{0}.
22650
22651 @item size
22652 Set the video size. This option is for video only. For the syntax of this
22653 option, check the
22654 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22655 Default and minimum resolution is @code{640x480}.
22656
22657 @item meter
22658 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
22659 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
22660 other integer value between this range is allowed.
22661
22662 @item metadata
22663 Set metadata injection. If set to @code{1}, the audio input will be segmented
22664 into 100ms output frames, each of them containing various loudness information
22665 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
22666
22667 Default is @code{0}.
22668
22669 @item framelog
22670 Force the frame logging level.
22671
22672 Available values are:
22673 @table @samp
22674 @item info
22675 information logging level
22676 @item verbose
22677 verbose logging level
22678 @end table
22679
22680 By default, the logging level is set to @var{info}. If the @option{video} or
22681 the @option{metadata} options are set, it switches to @var{verbose}.
22682
22683 @item peak
22684 Set peak mode(s).
22685
22686 Available modes can be cumulated (the option is a @code{flag} type). Possible
22687 values are:
22688 @table @samp
22689 @item none
22690 Disable any peak mode (default).
22691 @item sample
22692 Enable sample-peak mode.
22693
22694 Simple peak mode looking for the higher sample value. It logs a message
22695 for sample-peak (identified by @code{SPK}).
22696 @item true
22697 Enable true-peak mode.
22698
22699 If enabled, the peak lookup is done on an over-sampled version of the input
22700 stream for better peak accuracy. It logs a message for true-peak.
22701 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
22702 This mode requires a build with @code{libswresample}.
22703 @end table
22704
22705 @item dualmono
22706 Treat mono input files as "dual mono". If a mono file is intended for playback
22707 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
22708 If set to @code{true}, this option will compensate for this effect.
22709 Multi-channel input files are not affected by this option.
22710
22711 @item panlaw
22712 Set a specific pan law to be used for the measurement of dual mono files.
22713 This parameter is optional, and has a default value of -3.01dB.
22714
22715 @item target
22716 Set a specific target level (in LUFS) used as relative zero in the visualization.
22717 This parameter is optional and has a default value of -23LUFS as specified
22718 by EBU R128. However, material published online may prefer a level of -16LUFS
22719 (e.g. for use with podcasts or video platforms).
22720
22721 @item gauge
22722 Set the value displayed by the gauge. Valid values are @code{momentary} and s
22723 @code{shortterm}. By default the momentary value will be used, but in certain
22724 scenarios it may be more useful to observe the short term value instead (e.g.
22725 live mixing).
22726
22727 @item scale
22728 Sets the display scale for the loudness. Valid parameters are @code{absolute}
22729 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
22730 video output, not the summary or continuous log output.
22731 @end table
22732
22733 @subsection Examples
22734
22735 @itemize
22736 @item
22737 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
22738 @example
22739 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
22740 @end example
22741
22742 @item
22743 Run an analysis with @command{ffmpeg}:
22744 @example
22745 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
22746 @end example
22747 @end itemize
22748
22749 @section interleave, ainterleave
22750
22751 Temporally interleave frames from several inputs.
22752
22753 @code{interleave} works with video inputs, @code{ainterleave} with audio.
22754
22755 These filters read frames from several inputs and send the oldest
22756 queued frame to the output.
22757
22758 Input streams must have well defined, monotonically increasing frame
22759 timestamp values.
22760
22761 In order to submit one frame to output, these filters need to enqueue
22762 at least one frame for each input, so they cannot work in case one
22763 input is not yet terminated and will not receive incoming frames.
22764
22765 For example consider the case when one input is a @code{select} filter
22766 which always drops input frames. The @code{interleave} filter will keep
22767 reading from that input, but it will never be able to send new frames
22768 to output until the input sends an end-of-stream signal.
22769
22770 Also, depending on inputs synchronization, the filters will drop
22771 frames in case one input receives more frames than the other ones, and
22772 the queue is already filled.
22773
22774 These filters accept the following options:
22775
22776 @table @option
22777 @item nb_inputs, n
22778 Set the number of different inputs, it is 2 by default.
22779 @end table
22780
22781 @subsection Examples
22782
22783 @itemize
22784 @item
22785 Interleave frames belonging to different streams using @command{ffmpeg}:
22786 @example
22787 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
22788 @end example
22789
22790 @item
22791 Add flickering blur effect:
22792 @example
22793 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
22794 @end example
22795 @end itemize
22796
22797 @section metadata, ametadata
22798
22799 Manipulate frame metadata.
22800
22801 This filter accepts the following options:
22802
22803 @table @option
22804 @item mode
22805 Set mode of operation of the filter.
22806
22807 Can be one of the following:
22808
22809 @table @samp
22810 @item select
22811 If both @code{value} and @code{key} is set, select frames
22812 which have such metadata. If only @code{key} is set, select
22813 every frame that has such key in metadata.
22814
22815 @item add
22816 Add new metadata @code{key} and @code{value}. If key is already available
22817 do nothing.
22818
22819 @item modify
22820 Modify value of already present key.
22821
22822 @item delete
22823 If @code{value} is set, delete only keys that have such value.
22824 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
22825 the frame.
22826
22827 @item print
22828 Print key and its value if metadata was found. If @code{key} is not set print all
22829 metadata values available in frame.
22830 @end table
22831
22832 @item key
22833 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
22834
22835 @item value
22836 Set metadata value which will be used. This option is mandatory for
22837 @code{modify} and @code{add} mode.
22838
22839 @item function
22840 Which function to use when comparing metadata value and @code{value}.
22841
22842 Can be one of following:
22843
22844 @table @samp
22845 @item same_str
22846 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
22847
22848 @item starts_with
22849 Values are interpreted as strings, returns true if metadata value starts with
22850 the @code{value} option string.
22851
22852 @item less
22853 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
22854
22855 @item equal
22856 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
22857
22858 @item greater
22859 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
22860
22861 @item expr
22862 Values are interpreted as floats, returns true if expression from option @code{expr}
22863 evaluates to true.
22864
22865 @item ends_with
22866 Values are interpreted as strings, returns true if metadata value ends with
22867 the @code{value} option string.
22868 @end table
22869
22870 @item expr
22871 Set expression which is used when @code{function} is set to @code{expr}.
22872 The expression is evaluated through the eval API and can contain the following
22873 constants:
22874
22875 @table @option
22876 @item VALUE1
22877 Float representation of @code{value} from metadata key.
22878
22879 @item VALUE2
22880 Float representation of @code{value} as supplied by user in @code{value} option.
22881 @end table
22882
22883 @item file
22884 If specified in @code{print} mode, output is written to the named file. Instead of
22885 plain filename any writable url can be specified. Filename ``-'' is a shorthand
22886 for standard output. If @code{file} option is not set, output is written to the log
22887 with AV_LOG_INFO loglevel.
22888
22889 @item direct
22890 Reduces buffering in print mode when output is written to a URL set using @var{file}.
22891
22892 @end table
22893
22894 @subsection Examples
22895
22896 @itemize
22897 @item
22898 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
22899 between 0 and 1.
22900 @example
22901 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
22902 @end example
22903 @item
22904 Print silencedetect output to file @file{metadata.txt}.
22905 @example
22906 silencedetect,ametadata=mode=print:file=metadata.txt
22907 @end example
22908 @item
22909 Direct all metadata to a pipe with file descriptor 4.
22910 @example
22911 metadata=mode=print:file='pipe\:4'
22912 @end example
22913 @end itemize
22914
22915 @section perms, aperms
22916
22917 Set read/write permissions for the output frames.
22918
22919 These filters are mainly aimed at developers to test direct path in the
22920 following filter in the filtergraph.
22921
22922 The filters accept the following options:
22923
22924 @table @option
22925 @item mode
22926 Select the permissions mode.
22927
22928 It accepts the following values:
22929 @table @samp
22930 @item none
22931 Do nothing. This is the default.
22932 @item ro
22933 Set all the output frames read-only.
22934 @item rw
22935 Set all the output frames directly writable.
22936 @item toggle
22937 Make the frame read-only if writable, and writable if read-only.
22938 @item random
22939 Set each output frame read-only or writable randomly.
22940 @end table
22941
22942 @item seed
22943 Set the seed for the @var{random} mode, must be an integer included between
22944 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
22945 @code{-1}, the filter will try to use a good random seed on a best effort
22946 basis.
22947 @end table
22948
22949 Note: in case of auto-inserted filter between the permission filter and the
22950 following one, the permission might not be received as expected in that
22951 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
22952 perms/aperms filter can avoid this problem.
22953
22954 @section realtime, arealtime
22955
22956 Slow down filtering to match real time approximately.
22957
22958 These filters will pause the filtering for a variable amount of time to
22959 match the output rate with the input timestamps.
22960 They are similar to the @option{re} option to @code{ffmpeg}.
22961
22962 They accept the following options:
22963
22964 @table @option
22965 @item limit
22966 Time limit for the pauses. Any pause longer than that will be considered
22967 a timestamp discontinuity and reset the timer. Default is 2 seconds.
22968 @item speed
22969 Speed factor for processing. The value must be a float larger than zero.
22970 Values larger than 1.0 will result in faster than realtime processing,
22971 smaller will slow processing down. The @var{limit} is automatically adapted
22972 accordingly. Default is 1.0.
22973
22974 A processing speed faster than what is possible without these filters cannot
22975 be achieved.
22976 @end table
22977
22978 @anchor{select}
22979 @section select, aselect
22980
22981 Select frames to pass in output.
22982
22983 This filter accepts the following options:
22984
22985 @table @option
22986
22987 @item expr, e
22988 Set expression, which is evaluated for each input frame.
22989
22990 If the expression is evaluated to zero, the frame is discarded.
22991
22992 If the evaluation result is negative or NaN, the frame is sent to the
22993 first output; otherwise it is sent to the output with index
22994 @code{ceil(val)-1}, assuming that the input index starts from 0.
22995
22996 For example a value of @code{1.2} corresponds to the output with index
22997 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
22998
22999 @item outputs, n
23000 Set the number of outputs. The output to which to send the selected
23001 frame is based on the result of the evaluation. Default value is 1.
23002 @end table
23003
23004 The expression can contain the following constants:
23005
23006 @table @option
23007 @item n
23008 The (sequential) number of the filtered frame, starting from 0.
23009
23010 @item selected_n
23011 The (sequential) number of the selected frame, starting from 0.
23012
23013 @item prev_selected_n
23014 The sequential number of the last selected frame. It's NAN if undefined.
23015
23016 @item TB
23017 The timebase of the input timestamps.
23018
23019 @item pts
23020 The PTS (Presentation TimeStamp) of the filtered video frame,
23021 expressed in @var{TB} units. It's NAN if undefined.
23022
23023 @item t
23024 The PTS of the filtered video frame,
23025 expressed in seconds. It's NAN if undefined.
23026
23027 @item prev_pts
23028 The PTS of the previously filtered video frame. It's NAN if undefined.
23029
23030 @item prev_selected_pts
23031 The PTS of the last previously filtered video frame. It's NAN if undefined.
23032
23033 @item prev_selected_t
23034 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
23035
23036 @item start_pts
23037 The PTS of the first video frame in the video. It's NAN if undefined.
23038
23039 @item start_t
23040 The time of the first video frame in the video. It's NAN if undefined.
23041
23042 @item pict_type @emph{(video only)}
23043 The type of the filtered frame. It can assume one of the following
23044 values:
23045 @table @option
23046 @item I
23047 @item P
23048 @item B
23049 @item S
23050 @item SI
23051 @item SP
23052 @item BI
23053 @end table
23054
23055 @item interlace_type @emph{(video only)}
23056 The frame interlace type. It can assume one of the following values:
23057 @table @option
23058 @item PROGRESSIVE
23059 The frame is progressive (not interlaced).
23060 @item TOPFIRST
23061 The frame is top-field-first.
23062 @item BOTTOMFIRST
23063 The frame is bottom-field-first.
23064 @end table
23065
23066 @item consumed_sample_n @emph{(audio only)}
23067 the number of selected samples before the current frame
23068
23069 @item samples_n @emph{(audio only)}
23070 the number of samples in the current frame
23071
23072 @item sample_rate @emph{(audio only)}
23073 the input sample rate
23074
23075 @item key
23076 This is 1 if the filtered frame is a key-frame, 0 otherwise.
23077
23078 @item pos
23079 the position in the file of the filtered frame, -1 if the information
23080 is not available (e.g. for synthetic video)
23081
23082 @item scene @emph{(video only)}
23083 value between 0 and 1 to indicate a new scene; a low value reflects a low
23084 probability for the current frame to introduce a new scene, while a higher
23085 value means the current frame is more likely to be one (see the example below)
23086
23087 @item concatdec_select
23088 The concat demuxer can select only part of a concat input file by setting an
23089 inpoint and an outpoint, but the output packets may not be entirely contained
23090 in the selected interval. By using this variable, it is possible to skip frames
23091 generated by the concat demuxer which are not exactly contained in the selected
23092 interval.
23093
23094 This works by comparing the frame pts against the @var{lavf.concat.start_time}
23095 and the @var{lavf.concat.duration} packet metadata values which are also
23096 present in the decoded frames.
23097
23098 The @var{concatdec_select} variable is -1 if the frame pts is at least
23099 start_time and either the duration metadata is missing or the frame pts is less
23100 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
23101 missing.
23102
23103 That basically means that an input frame is selected if its pts is within the
23104 interval set by the concat demuxer.
23105
23106 @end table
23107
23108 The default value of the select expression is "1".
23109
23110 @subsection Examples
23111
23112 @itemize
23113 @item
23114 Select all frames in input:
23115 @example
23116 select
23117 @end example
23118
23119 The example above is the same as:
23120 @example
23121 select=1
23122 @end example
23123
23124 @item
23125 Skip all frames:
23126 @example
23127 select=0
23128 @end example
23129
23130 @item
23131 Select only I-frames:
23132 @example
23133 select='eq(pict_type\,I)'
23134 @end example
23135
23136 @item
23137 Select one frame every 100:
23138 @example
23139 select='not(mod(n\,100))'
23140 @end example
23141
23142 @item
23143 Select only frames contained in the 10-20 time interval:
23144 @example
23145 select=between(t\,10\,20)
23146 @end example
23147
23148 @item
23149 Select only I-frames contained in the 10-20 time interval:
23150 @example
23151 select=between(t\,10\,20)*eq(pict_type\,I)
23152 @end example
23153
23154 @item
23155 Select frames with a minimum distance of 10 seconds:
23156 @example
23157 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
23158 @end example
23159
23160 @item
23161 Use aselect to select only audio frames with samples number > 100:
23162 @example
23163 aselect='gt(samples_n\,100)'
23164 @end example
23165
23166 @item
23167 Create a mosaic of the first scenes:
23168 @example
23169 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
23170 @end example
23171
23172 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
23173 choice.
23174
23175 @item
23176 Send even and odd frames to separate outputs, and compose them:
23177 @example
23178 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
23179 @end example
23180
23181 @item
23182 Select useful frames from an ffconcat file which is using inpoints and
23183 outpoints but where the source files are not intra frame only.
23184 @example
23185 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
23186 @end example
23187 @end itemize
23188
23189 @section sendcmd, asendcmd
23190
23191 Send commands to filters in the filtergraph.
23192
23193 These filters read commands to be sent to other filters in the
23194 filtergraph.
23195
23196 @code{sendcmd} must be inserted between two video filters,
23197 @code{asendcmd} must be inserted between two audio filters, but apart
23198 from that they act the same way.
23199
23200 The specification of commands can be provided in the filter arguments
23201 with the @var{commands} option, or in a file specified by the
23202 @var{filename} option.
23203
23204 These filters accept the following options:
23205 @table @option
23206 @item commands, c
23207 Set the commands to be read and sent to the other filters.
23208 @item filename, f
23209 Set the filename of the commands to be read and sent to the other
23210 filters.
23211 @end table
23212
23213 @subsection Commands syntax
23214
23215 A commands description consists of a sequence of interval
23216 specifications, comprising a list of commands to be executed when a
23217 particular event related to that interval occurs. The occurring event
23218 is typically the current frame time entering or leaving a given time
23219 interval.
23220
23221 An interval is specified by the following syntax:
23222 @example
23223 @var{START}[-@var{END}] @var{COMMANDS};
23224 @end example
23225
23226 The time interval is specified by the @var{START} and @var{END} times.
23227 @var{END} is optional and defaults to the maximum time.
23228
23229 The current frame time is considered within the specified interval if
23230 it is included in the interval [@var{START}, @var{END}), that is when
23231 the time is greater or equal to @var{START} and is lesser than
23232 @var{END}.
23233
23234 @var{COMMANDS} consists of a sequence of one or more command
23235 specifications, separated by ",", relating to that interval.  The
23236 syntax of a command specification is given by:
23237 @example
23238 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
23239 @end example
23240
23241 @var{FLAGS} is optional and specifies the type of events relating to
23242 the time interval which enable sending the specified command, and must
23243 be a non-null sequence of identifier flags separated by "+" or "|" and
23244 enclosed between "[" and "]".
23245
23246 The following flags are recognized:
23247 @table @option
23248 @item enter
23249 The command is sent when the current frame timestamp enters the
23250 specified interval. In other words, the command is sent when the
23251 previous frame timestamp was not in the given interval, and the
23252 current is.
23253
23254 @item leave
23255 The command is sent when the current frame timestamp leaves the
23256 specified interval. In other words, the command is sent when the
23257 previous frame timestamp was in the given interval, and the
23258 current is not.
23259 @end table
23260
23261 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
23262 assumed.
23263
23264 @var{TARGET} specifies the target of the command, usually the name of
23265 the filter class or a specific filter instance name.
23266
23267 @var{COMMAND} specifies the name of the command for the target filter.
23268
23269 @var{ARG} is optional and specifies the optional list of argument for
23270 the given @var{COMMAND}.
23271
23272 Between one interval specification and another, whitespaces, or
23273 sequences of characters starting with @code{#} until the end of line,
23274 are ignored and can be used to annotate comments.
23275
23276 A simplified BNF description of the commands specification syntax
23277 follows:
23278 @example
23279 @var{COMMAND_FLAG}  ::= "enter" | "leave"
23280 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
23281 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
23282 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
23283 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
23284 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
23285 @end example
23286
23287 @subsection Examples
23288
23289 @itemize
23290 @item
23291 Specify audio tempo change at second 4:
23292 @example
23293 asendcmd=c='4.0 atempo tempo 1.5',atempo
23294 @end example
23295
23296 @item
23297 Target a specific filter instance:
23298 @example
23299 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
23300 @end example
23301
23302 @item
23303 Specify a list of drawtext and hue commands in a file.
23304 @example
23305 # show text in the interval 5-10
23306 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
23307          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
23308
23309 # desaturate the image in the interval 15-20
23310 15.0-20.0 [enter] hue s 0,
23311           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
23312           [leave] hue s 1,
23313           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
23314
23315 # apply an exponential saturation fade-out effect, starting from time 25
23316 25 [enter] hue s exp(25-t)
23317 @end example
23318
23319 A filtergraph allowing to read and process the above command list
23320 stored in a file @file{test.cmd}, can be specified with:
23321 @example
23322 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
23323 @end example
23324 @end itemize
23325
23326 @anchor{setpts}
23327 @section setpts, asetpts
23328
23329 Change the PTS (presentation timestamp) of the input frames.
23330
23331 @code{setpts} works on video frames, @code{asetpts} on audio frames.
23332
23333 This filter accepts the following options:
23334
23335 @table @option
23336
23337 @item expr
23338 The expression which is evaluated for each frame to construct its timestamp.
23339
23340 @end table
23341
23342 The expression is evaluated through the eval API and can contain the following
23343 constants:
23344
23345 @table @option
23346 @item FRAME_RATE, FR
23347 frame rate, only defined for constant frame-rate video
23348
23349 @item PTS
23350 The presentation timestamp in input
23351
23352 @item N
23353 The count of the input frame for video or the number of consumed samples,
23354 not including the current frame for audio, starting from 0.
23355
23356 @item NB_CONSUMED_SAMPLES
23357 The number of consumed samples, not including the current frame (only
23358 audio)
23359
23360 @item NB_SAMPLES, S
23361 The number of samples in the current frame (only audio)
23362
23363 @item SAMPLE_RATE, SR
23364 The audio sample rate.
23365
23366 @item STARTPTS
23367 The PTS of the first frame.
23368
23369 @item STARTT
23370 the time in seconds of the first frame
23371
23372 @item INTERLACED
23373 State whether the current frame is interlaced.
23374
23375 @item T
23376 the time in seconds of the current frame
23377
23378 @item POS
23379 original position in the file of the frame, or undefined if undefined
23380 for the current frame
23381
23382 @item PREV_INPTS
23383 The previous input PTS.
23384
23385 @item PREV_INT
23386 previous input time in seconds
23387
23388 @item PREV_OUTPTS
23389 The previous output PTS.
23390
23391 @item PREV_OUTT
23392 previous output time in seconds
23393
23394 @item RTCTIME
23395 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
23396 instead.
23397
23398 @item RTCSTART
23399 The wallclock (RTC) time at the start of the movie in microseconds.
23400
23401 @item TB
23402 The timebase of the input timestamps.
23403
23404 @end table
23405
23406 @subsection Examples
23407
23408 @itemize
23409 @item
23410 Start counting PTS from zero
23411 @example
23412 setpts=PTS-STARTPTS
23413 @end example
23414
23415 @item
23416 Apply fast motion effect:
23417 @example
23418 setpts=0.5*PTS
23419 @end example
23420
23421 @item
23422 Apply slow motion effect:
23423 @example
23424 setpts=2.0*PTS
23425 @end example
23426
23427 @item
23428 Set fixed rate of 25 frames per second:
23429 @example
23430 setpts=N/(25*TB)
23431 @end example
23432
23433 @item
23434 Set fixed rate 25 fps with some jitter:
23435 @example
23436 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
23437 @end example
23438
23439 @item
23440 Apply an offset of 10 seconds to the input PTS:
23441 @example
23442 setpts=PTS+10/TB
23443 @end example
23444
23445 @item
23446 Generate timestamps from a "live source" and rebase onto the current timebase:
23447 @example
23448 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
23449 @end example
23450
23451 @item
23452 Generate timestamps by counting samples:
23453 @example
23454 asetpts=N/SR/TB
23455 @end example
23456
23457 @end itemize
23458
23459 @section setrange
23460
23461 Force color range for the output video frame.
23462
23463 The @code{setrange} filter marks the color range property for the
23464 output frames. It does not change the input frame, but only sets the
23465 corresponding property, which affects how the frame is treated by
23466 following filters.
23467
23468 The filter accepts the following options:
23469
23470 @table @option
23471
23472 @item range
23473 Available values are:
23474
23475 @table @samp
23476 @item auto
23477 Keep the same color range property.
23478
23479 @item unspecified, unknown
23480 Set the color range as unspecified.
23481
23482 @item limited, tv, mpeg
23483 Set the color range as limited.
23484
23485 @item full, pc, jpeg
23486 Set the color range as full.
23487 @end table
23488 @end table
23489
23490 @section settb, asettb
23491
23492 Set the timebase to use for the output frames timestamps.
23493 It is mainly useful for testing timebase configuration.
23494
23495 It accepts the following parameters:
23496
23497 @table @option
23498
23499 @item expr, tb
23500 The expression which is evaluated into the output timebase.
23501
23502 @end table
23503
23504 The value for @option{tb} is an arithmetic expression representing a
23505 rational. The expression can contain the constants "AVTB" (the default
23506 timebase), "intb" (the input timebase) and "sr" (the sample rate,
23507 audio only). Default value is "intb".
23508
23509 @subsection Examples
23510
23511 @itemize
23512 @item
23513 Set the timebase to 1/25:
23514 @example
23515 settb=expr=1/25
23516 @end example
23517
23518 @item
23519 Set the timebase to 1/10:
23520 @example
23521 settb=expr=0.1
23522 @end example
23523
23524 @item
23525 Set the timebase to 1001/1000:
23526 @example
23527 settb=1+0.001
23528 @end example
23529
23530 @item
23531 Set the timebase to 2*intb:
23532 @example
23533 settb=2*intb
23534 @end example
23535
23536 @item
23537 Set the default timebase value:
23538 @example
23539 settb=AVTB
23540 @end example
23541 @end itemize
23542
23543 @section showcqt
23544 Convert input audio to a video output representing frequency spectrum
23545 logarithmically using Brown-Puckette constant Q transform algorithm with
23546 direct frequency domain coefficient calculation (but the transform itself
23547 is not really constant Q, instead the Q factor is actually variable/clamped),
23548 with musical tone scale, from E0 to D#10.
23549
23550 The filter accepts the following options:
23551
23552 @table @option
23553 @item size, s
23554 Specify the video size for the output. It must be even. For the syntax of this option,
23555 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23556 Default value is @code{1920x1080}.
23557
23558 @item fps, rate, r
23559 Set the output frame rate. Default value is @code{25}.
23560
23561 @item bar_h
23562 Set the bargraph height. It must be even. Default value is @code{-1} which
23563 computes the bargraph height automatically.
23564
23565 @item axis_h
23566 Set the axis height. It must be even. Default value is @code{-1} which computes
23567 the axis height automatically.
23568
23569 @item sono_h
23570 Set the sonogram height. It must be even. Default value is @code{-1} which
23571 computes the sonogram height automatically.
23572
23573 @item fullhd
23574 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
23575 instead. Default value is @code{1}.
23576
23577 @item sono_v, volume
23578 Specify the sonogram volume expression. It can contain variables:
23579 @table @option
23580 @item bar_v
23581 the @var{bar_v} evaluated expression
23582 @item frequency, freq, f
23583 the frequency where it is evaluated
23584 @item timeclamp, tc
23585 the value of @var{timeclamp} option
23586 @end table
23587 and functions:
23588 @table @option
23589 @item a_weighting(f)
23590 A-weighting of equal loudness
23591 @item b_weighting(f)
23592 B-weighting of equal loudness
23593 @item c_weighting(f)
23594 C-weighting of equal loudness.
23595 @end table
23596 Default value is @code{16}.
23597
23598 @item bar_v, volume2
23599 Specify the bargraph volume expression. It can contain variables:
23600 @table @option
23601 @item sono_v
23602 the @var{sono_v} evaluated expression
23603 @item frequency, freq, f
23604 the frequency where it is evaluated
23605 @item timeclamp, tc
23606 the value of @var{timeclamp} option
23607 @end table
23608 and functions:
23609 @table @option
23610 @item a_weighting(f)
23611 A-weighting of equal loudness
23612 @item b_weighting(f)
23613 B-weighting of equal loudness
23614 @item c_weighting(f)
23615 C-weighting of equal loudness.
23616 @end table
23617 Default value is @code{sono_v}.
23618
23619 @item sono_g, gamma
23620 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
23621 higher gamma makes the spectrum having more range. Default value is @code{3}.
23622 Acceptable range is @code{[1, 7]}.
23623
23624 @item bar_g, gamma2
23625 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
23626 @code{[1, 7]}.
23627
23628 @item bar_t
23629 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
23630 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
23631
23632 @item timeclamp, tc
23633 Specify the transform timeclamp. At low frequency, there is trade-off between
23634 accuracy in time domain and frequency domain. If timeclamp is lower,
23635 event in time domain is represented more accurately (such as fast bass drum),
23636 otherwise event in frequency domain is represented more accurately
23637 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
23638
23639 @item attack
23640 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
23641 limits future samples by applying asymmetric windowing in time domain, useful
23642 when low latency is required. Accepted range is @code{[0, 1]}.
23643
23644 @item basefreq
23645 Specify the transform base frequency. Default value is @code{20.01523126408007475},
23646 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
23647
23648 @item endfreq
23649 Specify the transform end frequency. Default value is @code{20495.59681441799654},
23650 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
23651
23652 @item coeffclamp
23653 This option is deprecated and ignored.
23654
23655 @item tlength
23656 Specify the transform length in time domain. Use this option to control accuracy
23657 trade-off between time domain and frequency domain at every frequency sample.
23658 It can contain variables:
23659 @table @option
23660 @item frequency, freq, f
23661 the frequency where it is evaluated
23662 @item timeclamp, tc
23663 the value of @var{timeclamp} option.
23664 @end table
23665 Default value is @code{384*tc/(384+tc*f)}.
23666
23667 @item count
23668 Specify the transform count for every video frame. Default value is @code{6}.
23669 Acceptable range is @code{[1, 30]}.
23670
23671 @item fcount
23672 Specify the transform count for every single pixel. Default value is @code{0},
23673 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
23674
23675 @item fontfile
23676 Specify font file for use with freetype to draw the axis. If not specified,
23677 use embedded font. Note that drawing with font file or embedded font is not
23678 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
23679 option instead.
23680
23681 @item font
23682 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
23683 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
23684 escaping.
23685
23686 @item fontcolor
23687 Specify font color expression. This is arithmetic expression that should return
23688 integer value 0xRRGGBB. It can contain variables:
23689 @table @option
23690 @item frequency, freq, f
23691 the frequency where it is evaluated
23692 @item timeclamp, tc
23693 the value of @var{timeclamp} option
23694 @end table
23695 and functions:
23696 @table @option
23697 @item midi(f)
23698 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
23699 @item r(x), g(x), b(x)
23700 red, green, and blue value of intensity x.
23701 @end table
23702 Default value is @code{st(0, (midi(f)-59.5)/12);
23703 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
23704 r(1-ld(1)) + b(ld(1))}.
23705
23706 @item axisfile
23707 Specify image file to draw the axis. This option override @var{fontfile} and
23708 @var{fontcolor} option.
23709
23710 @item axis, text
23711 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
23712 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
23713 Default value is @code{1}.
23714
23715 @item csp
23716 Set colorspace. The accepted values are:
23717 @table @samp
23718 @item unspecified
23719 Unspecified (default)
23720
23721 @item bt709
23722 BT.709
23723
23724 @item fcc
23725 FCC
23726
23727 @item bt470bg
23728 BT.470BG or BT.601-6 625
23729
23730 @item smpte170m
23731 SMPTE-170M or BT.601-6 525
23732
23733 @item smpte240m
23734 SMPTE-240M
23735
23736 @item bt2020ncl
23737 BT.2020 with non-constant luminance
23738
23739 @end table
23740
23741 @item cscheme
23742 Set spectrogram color scheme. This is list of floating point values with format
23743 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
23744 The default is @code{1|0.5|0|0|0.5|1}.
23745
23746 @end table
23747
23748 @subsection Examples
23749
23750 @itemize
23751 @item
23752 Playing audio while showing the spectrum:
23753 @example
23754 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
23755 @end example
23756
23757 @item
23758 Same as above, but with frame rate 30 fps:
23759 @example
23760 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
23761 @end example
23762
23763 @item
23764 Playing at 1280x720:
23765 @example
23766 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
23767 @end example
23768
23769 @item
23770 Disable sonogram display:
23771 @example
23772 sono_h=0
23773 @end example
23774
23775 @item
23776 A1 and its harmonics: A1, A2, (near)E3, A3:
23777 @example
23778 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),
23779                  asplit[a][out1]; [a] showcqt [out0]'
23780 @end example
23781
23782 @item
23783 Same as above, but with more accuracy in frequency domain:
23784 @example
23785 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),
23786                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
23787 @end example
23788
23789 @item
23790 Custom volume:
23791 @example
23792 bar_v=10:sono_v=bar_v*a_weighting(f)
23793 @end example
23794
23795 @item
23796 Custom gamma, now spectrum is linear to the amplitude.
23797 @example
23798 bar_g=2:sono_g=2
23799 @end example
23800
23801 @item
23802 Custom tlength equation:
23803 @example
23804 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)))'
23805 @end example
23806
23807 @item
23808 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
23809 @example
23810 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
23811 @end example
23812
23813 @item
23814 Custom font using fontconfig:
23815 @example
23816 font='Courier New,Monospace,mono|bold'
23817 @end example
23818
23819 @item
23820 Custom frequency range with custom axis using image file:
23821 @example
23822 axisfile=myaxis.png:basefreq=40:endfreq=10000
23823 @end example
23824 @end itemize
23825
23826 @section showfreqs
23827
23828 Convert input audio to video output representing the audio power spectrum.
23829 Audio amplitude is on Y-axis while frequency is on X-axis.
23830
23831 The filter accepts the following options:
23832
23833 @table @option
23834 @item size, s
23835 Specify size of video. For the syntax of this option, check the
23836 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23837 Default is @code{1024x512}.
23838
23839 @item mode
23840 Set display mode.
23841 This set how each frequency bin will be represented.
23842
23843 It accepts the following values:
23844 @table @samp
23845 @item line
23846 @item bar
23847 @item dot
23848 @end table
23849 Default is @code{bar}.
23850
23851 @item ascale
23852 Set amplitude scale.
23853
23854 It accepts the following values:
23855 @table @samp
23856 @item lin
23857 Linear scale.
23858
23859 @item sqrt
23860 Square root scale.
23861
23862 @item cbrt
23863 Cubic root scale.
23864
23865 @item log
23866 Logarithmic scale.
23867 @end table
23868 Default is @code{log}.
23869
23870 @item fscale
23871 Set frequency scale.
23872
23873 It accepts the following values:
23874 @table @samp
23875 @item lin
23876 Linear scale.
23877
23878 @item log
23879 Logarithmic scale.
23880
23881 @item rlog
23882 Reverse logarithmic scale.
23883 @end table
23884 Default is @code{lin}.
23885
23886 @item win_size
23887 Set window size. Allowed range is from 16 to 65536.
23888
23889 Default is @code{2048}
23890
23891 @item win_func
23892 Set windowing function.
23893
23894 It accepts the following values:
23895 @table @samp
23896 @item rect
23897 @item bartlett
23898 @item hanning
23899 @item hamming
23900 @item blackman
23901 @item welch
23902 @item flattop
23903 @item bharris
23904 @item bnuttall
23905 @item bhann
23906 @item sine
23907 @item nuttall
23908 @item lanczos
23909 @item gauss
23910 @item tukey
23911 @item dolph
23912 @item cauchy
23913 @item parzen
23914 @item poisson
23915 @item bohman
23916 @end table
23917 Default is @code{hanning}.
23918
23919 @item overlap
23920 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
23921 which means optimal overlap for selected window function will be picked.
23922
23923 @item averaging
23924 Set time averaging. Setting this to 0 will display current maximal peaks.
23925 Default is @code{1}, which means time averaging is disabled.
23926
23927 @item colors
23928 Specify list of colors separated by space or by '|' which will be used to
23929 draw channel frequencies. Unrecognized or missing colors will be replaced
23930 by white color.
23931
23932 @item cmode
23933 Set channel display mode.
23934
23935 It accepts the following values:
23936 @table @samp
23937 @item combined
23938 @item separate
23939 @end table
23940 Default is @code{combined}.
23941
23942 @item minamp
23943 Set minimum amplitude used in @code{log} amplitude scaler.
23944
23945 @end table
23946
23947 @section showspatial
23948
23949 Convert stereo input audio to a video output, representing the spatial relationship
23950 between two channels.
23951
23952 The filter accepts the following options:
23953
23954 @table @option
23955 @item size, s
23956 Specify the video size for the output. For the syntax of this option, check the
23957 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23958 Default value is @code{512x512}.
23959
23960 @item win_size
23961 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
23962
23963 @item win_func
23964 Set window function.
23965
23966 It accepts the following values:
23967 @table @samp
23968 @item rect
23969 @item bartlett
23970 @item hann
23971 @item hanning
23972 @item hamming
23973 @item blackman
23974 @item welch
23975 @item flattop
23976 @item bharris
23977 @item bnuttall
23978 @item bhann
23979 @item sine
23980 @item nuttall
23981 @item lanczos
23982 @item gauss
23983 @item tukey
23984 @item dolph
23985 @item cauchy
23986 @item parzen
23987 @item poisson
23988 @item bohman
23989 @end table
23990
23991 Default value is @code{hann}.
23992
23993 @item overlap
23994 Set ratio of overlap window. Default value is @code{0.5}.
23995 When value is @code{1} overlap is set to recommended size for specific
23996 window function currently used.
23997 @end table
23998
23999 @anchor{showspectrum}
24000 @section showspectrum
24001
24002 Convert input audio to a video output, representing the audio frequency
24003 spectrum.
24004
24005 The filter accepts the following options:
24006
24007 @table @option
24008 @item size, s
24009 Specify the video size for the output. For the syntax of this option, check the
24010 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24011 Default value is @code{640x512}.
24012
24013 @item slide
24014 Specify how the spectrum should slide along the window.
24015
24016 It accepts the following values:
24017 @table @samp
24018 @item replace
24019 the samples start again on the left when they reach the right
24020 @item scroll
24021 the samples scroll from right to left
24022 @item fullframe
24023 frames are only produced when the samples reach the right
24024 @item rscroll
24025 the samples scroll from left to right
24026 @end table
24027
24028 Default value is @code{replace}.
24029
24030 @item mode
24031 Specify display mode.
24032
24033 It accepts the following values:
24034 @table @samp
24035 @item combined
24036 all channels are displayed in the same row
24037 @item separate
24038 all channels are displayed in separate rows
24039 @end table
24040
24041 Default value is @samp{combined}.
24042
24043 @item color
24044 Specify display color mode.
24045
24046 It accepts the following values:
24047 @table @samp
24048 @item channel
24049 each channel is displayed in a separate color
24050 @item intensity
24051 each channel is displayed using the same color scheme
24052 @item rainbow
24053 each channel is displayed using the rainbow color scheme
24054 @item moreland
24055 each channel is displayed using the moreland color scheme
24056 @item nebulae
24057 each channel is displayed using the nebulae color scheme
24058 @item fire
24059 each channel is displayed using the fire color scheme
24060 @item fiery
24061 each channel is displayed using the fiery color scheme
24062 @item fruit
24063 each channel is displayed using the fruit color scheme
24064 @item cool
24065 each channel is displayed using the cool color scheme
24066 @item magma
24067 each channel is displayed using the magma color scheme
24068 @item green
24069 each channel is displayed using the green color scheme
24070 @item viridis
24071 each channel is displayed using the viridis color scheme
24072 @item plasma
24073 each channel is displayed using the plasma color scheme
24074 @item cividis
24075 each channel is displayed using the cividis color scheme
24076 @item terrain
24077 each channel is displayed using the terrain color scheme
24078 @end table
24079
24080 Default value is @samp{channel}.
24081
24082 @item scale
24083 Specify scale used for calculating intensity color values.
24084
24085 It accepts the following values:
24086 @table @samp
24087 @item lin
24088 linear
24089 @item sqrt
24090 square root, default
24091 @item cbrt
24092 cubic root
24093 @item log
24094 logarithmic
24095 @item 4thrt
24096 4th root
24097 @item 5thrt
24098 5th root
24099 @end table
24100
24101 Default value is @samp{sqrt}.
24102
24103 @item fscale
24104 Specify frequency scale.
24105
24106 It accepts the following values:
24107 @table @samp
24108 @item lin
24109 linear
24110 @item log
24111 logarithmic
24112 @end table
24113
24114 Default value is @samp{lin}.
24115
24116 @item saturation
24117 Set saturation modifier for displayed colors. Negative values provide
24118 alternative color scheme. @code{0} is no saturation at all.
24119 Saturation must be in [-10.0, 10.0] range.
24120 Default value is @code{1}.
24121
24122 @item win_func
24123 Set window function.
24124
24125 It accepts the following values:
24126 @table @samp
24127 @item rect
24128 @item bartlett
24129 @item hann
24130 @item hanning
24131 @item hamming
24132 @item blackman
24133 @item welch
24134 @item flattop
24135 @item bharris
24136 @item bnuttall
24137 @item bhann
24138 @item sine
24139 @item nuttall
24140 @item lanczos
24141 @item gauss
24142 @item tukey
24143 @item dolph
24144 @item cauchy
24145 @item parzen
24146 @item poisson
24147 @item bohman
24148 @end table
24149
24150 Default value is @code{hann}.
24151
24152 @item orientation
24153 Set orientation of time vs frequency axis. Can be @code{vertical} or
24154 @code{horizontal}. Default is @code{vertical}.
24155
24156 @item overlap
24157 Set ratio of overlap window. Default value is @code{0}.
24158 When value is @code{1} overlap is set to recommended size for specific
24159 window function currently used.
24160
24161 @item gain
24162 Set scale gain for calculating intensity color values.
24163 Default value is @code{1}.
24164
24165 @item data
24166 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
24167
24168 @item rotation
24169 Set color rotation, must be in [-1.0, 1.0] range.
24170 Default value is @code{0}.
24171
24172 @item start
24173 Set start frequency from which to display spectrogram. Default is @code{0}.
24174
24175 @item stop
24176 Set stop frequency to which to display spectrogram. Default is @code{0}.
24177
24178 @item fps
24179 Set upper frame rate limit. Default is @code{auto}, unlimited.
24180
24181 @item legend
24182 Draw time and frequency axes and legends. Default is disabled.
24183 @end table
24184
24185 The usage is very similar to the showwaves filter; see the examples in that
24186 section.
24187
24188 @subsection Examples
24189
24190 @itemize
24191 @item
24192 Large window with logarithmic color scaling:
24193 @example
24194 showspectrum=s=1280x480:scale=log
24195 @end example
24196
24197 @item
24198 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
24199 @example
24200 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24201              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
24202 @end example
24203 @end itemize
24204
24205 @section showspectrumpic
24206
24207 Convert input audio to a single video frame, representing the audio frequency
24208 spectrum.
24209
24210 The filter accepts the following options:
24211
24212 @table @option
24213 @item size, s
24214 Specify the video size for the output. For the syntax of this option, check the
24215 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24216 Default value is @code{4096x2048}.
24217
24218 @item mode
24219 Specify display mode.
24220
24221 It accepts the following values:
24222 @table @samp
24223 @item combined
24224 all channels are displayed in the same row
24225 @item separate
24226 all channels are displayed in separate rows
24227 @end table
24228 Default value is @samp{combined}.
24229
24230 @item color
24231 Specify display color mode.
24232
24233 It accepts the following values:
24234 @table @samp
24235 @item channel
24236 each channel is displayed in a separate color
24237 @item intensity
24238 each channel is displayed using the same color scheme
24239 @item rainbow
24240 each channel is displayed using the rainbow color scheme
24241 @item moreland
24242 each channel is displayed using the moreland color scheme
24243 @item nebulae
24244 each channel is displayed using the nebulae color scheme
24245 @item fire
24246 each channel is displayed using the fire color scheme
24247 @item fiery
24248 each channel is displayed using the fiery color scheme
24249 @item fruit
24250 each channel is displayed using the fruit color scheme
24251 @item cool
24252 each channel is displayed using the cool color scheme
24253 @item magma
24254 each channel is displayed using the magma color scheme
24255 @item green
24256 each channel is displayed using the green color scheme
24257 @item viridis
24258 each channel is displayed using the viridis color scheme
24259 @item plasma
24260 each channel is displayed using the plasma color scheme
24261 @item cividis
24262 each channel is displayed using the cividis color scheme
24263 @item terrain
24264 each channel is displayed using the terrain color scheme
24265 @end table
24266 Default value is @samp{intensity}.
24267
24268 @item scale
24269 Specify scale used for calculating intensity color values.
24270
24271 It accepts the following values:
24272 @table @samp
24273 @item lin
24274 linear
24275 @item sqrt
24276 square root, default
24277 @item cbrt
24278 cubic root
24279 @item log
24280 logarithmic
24281 @item 4thrt
24282 4th root
24283 @item 5thrt
24284 5th root
24285 @end table
24286 Default value is @samp{log}.
24287
24288 @item fscale
24289 Specify frequency scale.
24290
24291 It accepts the following values:
24292 @table @samp
24293 @item lin
24294 linear
24295 @item log
24296 logarithmic
24297 @end table
24298
24299 Default value is @samp{lin}.
24300
24301 @item saturation
24302 Set saturation modifier for displayed colors. Negative values provide
24303 alternative color scheme. @code{0} is no saturation at all.
24304 Saturation must be in [-10.0, 10.0] range.
24305 Default value is @code{1}.
24306
24307 @item win_func
24308 Set window function.
24309
24310 It accepts the following values:
24311 @table @samp
24312 @item rect
24313 @item bartlett
24314 @item hann
24315 @item hanning
24316 @item hamming
24317 @item blackman
24318 @item welch
24319 @item flattop
24320 @item bharris
24321 @item bnuttall
24322 @item bhann
24323 @item sine
24324 @item nuttall
24325 @item lanczos
24326 @item gauss
24327 @item tukey
24328 @item dolph
24329 @item cauchy
24330 @item parzen
24331 @item poisson
24332 @item bohman
24333 @end table
24334 Default value is @code{hann}.
24335
24336 @item orientation
24337 Set orientation of time vs frequency axis. Can be @code{vertical} or
24338 @code{horizontal}. Default is @code{vertical}.
24339
24340 @item gain
24341 Set scale gain for calculating intensity color values.
24342 Default value is @code{1}.
24343
24344 @item legend
24345 Draw time and frequency axes and legends. Default is enabled.
24346
24347 @item rotation
24348 Set color rotation, must be in [-1.0, 1.0] range.
24349 Default value is @code{0}.
24350
24351 @item start
24352 Set start frequency from which to display spectrogram. Default is @code{0}.
24353
24354 @item stop
24355 Set stop frequency to which to display spectrogram. Default is @code{0}.
24356 @end table
24357
24358 @subsection Examples
24359
24360 @itemize
24361 @item
24362 Extract an audio spectrogram of a whole audio track
24363 in a 1024x1024 picture using @command{ffmpeg}:
24364 @example
24365 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
24366 @end example
24367 @end itemize
24368
24369 @section showvolume
24370
24371 Convert input audio volume to a video output.
24372
24373 The filter accepts the following options:
24374
24375 @table @option
24376 @item rate, r
24377 Set video rate.
24378
24379 @item b
24380 Set border width, allowed range is [0, 5]. Default is 1.
24381
24382 @item w
24383 Set channel width, allowed range is [80, 8192]. Default is 400.
24384
24385 @item h
24386 Set channel height, allowed range is [1, 900]. Default is 20.
24387
24388 @item f
24389 Set fade, allowed range is [0, 1]. Default is 0.95.
24390
24391 @item c
24392 Set volume color expression.
24393
24394 The expression can use the following variables:
24395
24396 @table @option
24397 @item VOLUME
24398 Current max volume of channel in dB.
24399
24400 @item PEAK
24401 Current peak.
24402
24403 @item CHANNEL
24404 Current channel number, starting from 0.
24405 @end table
24406
24407 @item t
24408 If set, displays channel names. Default is enabled.
24409
24410 @item v
24411 If set, displays volume values. Default is enabled.
24412
24413 @item o
24414 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
24415 default is @code{h}.
24416
24417 @item s
24418 Set step size, allowed range is [0, 5]. Default is 0, which means
24419 step is disabled.
24420
24421 @item p
24422 Set background opacity, allowed range is [0, 1]. Default is 0.
24423
24424 @item m
24425 Set metering mode, can be peak: @code{p} or rms: @code{r},
24426 default is @code{p}.
24427
24428 @item ds
24429 Set display scale, can be linear: @code{lin} or log: @code{log},
24430 default is @code{lin}.
24431
24432 @item dm
24433 In second.
24434 If set to > 0., display a line for the max level
24435 in the previous seconds.
24436 default is disabled: @code{0.}
24437
24438 @item dmc
24439 The color of the max line. Use when @code{dm} option is set to > 0.
24440 default is: @code{orange}
24441 @end table
24442
24443 @section showwaves
24444
24445 Convert input audio to a video output, representing the samples waves.
24446
24447 The filter accepts the following options:
24448
24449 @table @option
24450 @item size, s
24451 Specify the video size for the output. For the syntax of this option, check the
24452 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24453 Default value is @code{600x240}.
24454
24455 @item mode
24456 Set display mode.
24457
24458 Available values are:
24459 @table @samp
24460 @item point
24461 Draw a point for each sample.
24462
24463 @item line
24464 Draw a vertical line for each sample.
24465
24466 @item p2p
24467 Draw a point for each sample and a line between them.
24468
24469 @item cline
24470 Draw a centered vertical line for each sample.
24471 @end table
24472
24473 Default value is @code{point}.
24474
24475 @item n
24476 Set the number of samples which are printed on the same column. A
24477 larger value will decrease the frame rate. Must be a positive
24478 integer. This option can be set only if the value for @var{rate}
24479 is not explicitly specified.
24480
24481 @item rate, r
24482 Set the (approximate) output frame rate. This is done by setting the
24483 option @var{n}. Default value is "25".
24484
24485 @item split_channels
24486 Set if channels should be drawn separately or overlap. Default value is 0.
24487
24488 @item colors
24489 Set colors separated by '|' which are going to be used for drawing of each channel.
24490
24491 @item scale
24492 Set amplitude scale.
24493
24494 Available values are:
24495 @table @samp
24496 @item lin
24497 Linear.
24498
24499 @item log
24500 Logarithmic.
24501
24502 @item sqrt
24503 Square root.
24504
24505 @item cbrt
24506 Cubic root.
24507 @end table
24508
24509 Default is linear.
24510
24511 @item draw
24512 Set the draw mode. This is mostly useful to set for high @var{n}.
24513
24514 Available values are:
24515 @table @samp
24516 @item scale
24517 Scale pixel values for each drawn sample.
24518
24519 @item full
24520 Draw every sample directly.
24521 @end table
24522
24523 Default value is @code{scale}.
24524 @end table
24525
24526 @subsection Examples
24527
24528 @itemize
24529 @item
24530 Output the input file audio and the corresponding video representation
24531 at the same time:
24532 @example
24533 amovie=a.mp3,asplit[out0],showwaves[out1]
24534 @end example
24535
24536 @item
24537 Create a synthetic signal and show it with showwaves, forcing a
24538 frame rate of 30 frames per second:
24539 @example
24540 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
24541 @end example
24542 @end itemize
24543
24544 @section showwavespic
24545
24546 Convert input audio to a single video frame, representing the samples waves.
24547
24548 The filter accepts the following options:
24549
24550 @table @option
24551 @item size, s
24552 Specify the video size for the output. For the syntax of this option, check the
24553 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24554 Default value is @code{600x240}.
24555
24556 @item split_channels
24557 Set if channels should be drawn separately or overlap. Default value is 0.
24558
24559 @item colors
24560 Set colors separated by '|' which are going to be used for drawing of each channel.
24561
24562 @item scale
24563 Set amplitude scale.
24564
24565 Available values are:
24566 @table @samp
24567 @item lin
24568 Linear.
24569
24570 @item log
24571 Logarithmic.
24572
24573 @item sqrt
24574 Square root.
24575
24576 @item cbrt
24577 Cubic root.
24578 @end table
24579
24580 Default is linear.
24581
24582 @item draw
24583 Set the draw mode.
24584
24585 Available values are:
24586 @table @samp
24587 @item scale
24588 Scale pixel values for each drawn sample.
24589
24590 @item full
24591 Draw every sample directly.
24592 @end table
24593
24594 Default value is @code{scale}.
24595 @end table
24596
24597 @subsection Examples
24598
24599 @itemize
24600 @item
24601 Extract a channel split representation of the wave form of a whole audio track
24602 in a 1024x800 picture using @command{ffmpeg}:
24603 @example
24604 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
24605 @end example
24606 @end itemize
24607
24608 @section sidedata, asidedata
24609
24610 Delete frame side data, or select frames based on it.
24611
24612 This filter accepts the following options:
24613
24614 @table @option
24615 @item mode
24616 Set mode of operation of the filter.
24617
24618 Can be one of the following:
24619
24620 @table @samp
24621 @item select
24622 Select every frame with side data of @code{type}.
24623
24624 @item delete
24625 Delete side data of @code{type}. If @code{type} is not set, delete all side
24626 data in the frame.
24627
24628 @end table
24629
24630 @item type
24631 Set side data type used with all modes. Must be set for @code{select} mode. For
24632 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
24633 in @file{libavutil/frame.h}. For example, to choose
24634 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
24635
24636 @end table
24637
24638 @section spectrumsynth
24639
24640 Synthesize audio from 2 input video spectrums, first input stream represents
24641 magnitude across time and second represents phase across time.
24642 The filter will transform from frequency domain as displayed in videos back
24643 to time domain as presented in audio output.
24644
24645 This filter is primarily created for reversing processed @ref{showspectrum}
24646 filter outputs, but can synthesize sound from other spectrograms too.
24647 But in such case results are going to be poor if the phase data is not
24648 available, because in such cases phase data need to be recreated, usually
24649 it's just recreated from random noise.
24650 For best results use gray only output (@code{channel} color mode in
24651 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
24652 @code{lin} scale for phase video. To produce phase, for 2nd video, use
24653 @code{data} option. Inputs videos should generally use @code{fullframe}
24654 slide mode as that saves resources needed for decoding video.
24655
24656 The filter accepts the following options:
24657
24658 @table @option
24659 @item sample_rate
24660 Specify sample rate of output audio, the sample rate of audio from which
24661 spectrum was generated may differ.
24662
24663 @item channels
24664 Set number of channels represented in input video spectrums.
24665
24666 @item scale
24667 Set scale which was used when generating magnitude input spectrum.
24668 Can be @code{lin} or @code{log}. Default is @code{log}.
24669
24670 @item slide
24671 Set slide which was used when generating inputs spectrums.
24672 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
24673 Default is @code{fullframe}.
24674
24675 @item win_func
24676 Set window function used for resynthesis.
24677
24678 @item overlap
24679 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
24680 which means optimal overlap for selected window function will be picked.
24681
24682 @item orientation
24683 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
24684 Default is @code{vertical}.
24685 @end table
24686
24687 @subsection Examples
24688
24689 @itemize
24690 @item
24691 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
24692 then resynthesize videos back to audio with spectrumsynth:
24693 @example
24694 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
24695 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
24696 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
24697 @end example
24698 @end itemize
24699
24700 @section split, asplit
24701
24702 Split input into several identical outputs.
24703
24704 @code{asplit} works with audio input, @code{split} with video.
24705
24706 The filter accepts a single parameter which specifies the number of outputs. If
24707 unspecified, it defaults to 2.
24708
24709 @subsection Examples
24710
24711 @itemize
24712 @item
24713 Create two separate outputs from the same input:
24714 @example
24715 [in] split [out0][out1]
24716 @end example
24717
24718 @item
24719 To create 3 or more outputs, you need to specify the number of
24720 outputs, like in:
24721 @example
24722 [in] asplit=3 [out0][out1][out2]
24723 @end example
24724
24725 @item
24726 Create two separate outputs from the same input, one cropped and
24727 one padded:
24728 @example
24729 [in] split [splitout1][splitout2];
24730 [splitout1] crop=100:100:0:0    [cropout];
24731 [splitout2] pad=200:200:100:100 [padout];
24732 @end example
24733
24734 @item
24735 Create 5 copies of the input audio with @command{ffmpeg}:
24736 @example
24737 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
24738 @end example
24739 @end itemize
24740
24741 @section zmq, azmq
24742
24743 Receive commands sent through a libzmq client, and forward them to
24744 filters in the filtergraph.
24745
24746 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
24747 must be inserted between two video filters, @code{azmq} between two
24748 audio filters. Both are capable to send messages to any filter type.
24749
24750 To enable these filters you need to install the libzmq library and
24751 headers and configure FFmpeg with @code{--enable-libzmq}.
24752
24753 For more information about libzmq see:
24754 @url{http://www.zeromq.org/}
24755
24756 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
24757 receives messages sent through a network interface defined by the
24758 @option{bind_address} (or the abbreviation "@option{b}") option.
24759 Default value of this option is @file{tcp://localhost:5555}. You may
24760 want to alter this value to your needs, but do not forget to escape any
24761 ':' signs (see @ref{filtergraph escaping}).
24762
24763 The received message must be in the form:
24764 @example
24765 @var{TARGET} @var{COMMAND} [@var{ARG}]
24766 @end example
24767
24768 @var{TARGET} specifies the target of the command, usually the name of
24769 the filter class or a specific filter instance name. The default
24770 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
24771 but you can override this by using the @samp{filter_name@@id} syntax
24772 (see @ref{Filtergraph syntax}).
24773
24774 @var{COMMAND} specifies the name of the command for the target filter.
24775
24776 @var{ARG} is optional and specifies the optional argument list for the
24777 given @var{COMMAND}.
24778
24779 Upon reception, the message is processed and the corresponding command
24780 is injected into the filtergraph. Depending on the result, the filter
24781 will send a reply to the client, adopting the format:
24782 @example
24783 @var{ERROR_CODE} @var{ERROR_REASON}
24784 @var{MESSAGE}
24785 @end example
24786
24787 @var{MESSAGE} is optional.
24788
24789 @subsection Examples
24790
24791 Look at @file{tools/zmqsend} for an example of a zmq client which can
24792 be used to send commands processed by these filters.
24793
24794 Consider the following filtergraph generated by @command{ffplay}.
24795 In this example the last overlay filter has an instance name. All other
24796 filters will have default instance names.
24797
24798 @example
24799 ffplay -dumpgraph 1 -f lavfi "
24800 color=s=100x100:c=red  [l];
24801 color=s=100x100:c=blue [r];
24802 nullsrc=s=200x100, zmq [bg];
24803 [bg][l]   overlay     [bg+l];
24804 [bg+l][r] overlay@@my=x=100 "
24805 @end example
24806
24807 To change the color of the left side of the video, the following
24808 command can be used:
24809 @example
24810 echo Parsed_color_0 c yellow | tools/zmqsend
24811 @end example
24812
24813 To change the right side:
24814 @example
24815 echo Parsed_color_1 c pink | tools/zmqsend
24816 @end example
24817
24818 To change the position of the right side:
24819 @example
24820 echo overlay@@my x 150 | tools/zmqsend
24821 @end example
24822
24823
24824 @c man end MULTIMEDIA FILTERS
24825
24826 @chapter Multimedia Sources
24827 @c man begin MULTIMEDIA SOURCES
24828
24829 Below is a description of the currently available multimedia sources.
24830
24831 @section amovie
24832
24833 This is the same as @ref{movie} source, except it selects an audio
24834 stream by default.
24835
24836 @anchor{movie}
24837 @section movie
24838
24839 Read audio and/or video stream(s) from a movie container.
24840
24841 It accepts the following parameters:
24842
24843 @table @option
24844 @item filename
24845 The name of the resource to read (not necessarily a file; it can also be a
24846 device or a stream accessed through some protocol).
24847
24848 @item format_name, f
24849 Specifies the format assumed for the movie to read, and can be either
24850 the name of a container or an input device. If not specified, the
24851 format is guessed from @var{movie_name} or by probing.
24852
24853 @item seek_point, sp
24854 Specifies the seek point in seconds. The frames will be output
24855 starting from this seek point. The parameter is evaluated with
24856 @code{av_strtod}, so the numerical value may be suffixed by an IS
24857 postfix. The default value is "0".
24858
24859 @item streams, s
24860 Specifies the streams to read. Several streams can be specified,
24861 separated by "+". The source will then have as many outputs, in the
24862 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
24863 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
24864 respectively the default (best suited) video and audio stream. Default
24865 is "dv", or "da" if the filter is called as "amovie".
24866
24867 @item stream_index, si
24868 Specifies the index of the video stream to read. If the value is -1,
24869 the most suitable video stream will be automatically selected. The default
24870 value is "-1". Deprecated. If the filter is called "amovie", it will select
24871 audio instead of video.
24872
24873 @item loop
24874 Specifies how many times to read the stream in sequence.
24875 If the value is 0, the stream will be looped infinitely.
24876 Default value is "1".
24877
24878 Note that when the movie is looped the source timestamps are not
24879 changed, so it will generate non monotonically increasing timestamps.
24880
24881 @item discontinuity
24882 Specifies the time difference between frames above which the point is
24883 considered a timestamp discontinuity which is removed by adjusting the later
24884 timestamps.
24885 @end table
24886
24887 It allows overlaying a second video on top of the main input of
24888 a filtergraph, as shown in this graph:
24889 @example
24890 input -----------> deltapts0 --> overlay --> output
24891                                     ^
24892                                     |
24893 movie --> scale--> deltapts1 -------+
24894 @end example
24895 @subsection Examples
24896
24897 @itemize
24898 @item
24899 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
24900 on top of the input labelled "in":
24901 @example
24902 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
24903 [in] setpts=PTS-STARTPTS [main];
24904 [main][over] overlay=16:16 [out]
24905 @end example
24906
24907 @item
24908 Read from a video4linux2 device, and overlay it on top of the input
24909 labelled "in":
24910 @example
24911 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
24912 [in] setpts=PTS-STARTPTS [main];
24913 [main][over] overlay=16:16 [out]
24914 @end example
24915
24916 @item
24917 Read the first video stream and the audio stream with id 0x81 from
24918 dvd.vob; the video is connected to the pad named "video" and the audio is
24919 connected to the pad named "audio":
24920 @example
24921 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
24922 @end example
24923 @end itemize
24924
24925 @subsection Commands
24926
24927 Both movie and amovie support the following commands:
24928 @table @option
24929 @item seek
24930 Perform seek using "av_seek_frame".
24931 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
24932 @itemize
24933 @item
24934 @var{stream_index}: If stream_index is -1, a default
24935 stream is selected, and @var{timestamp} is automatically converted
24936 from AV_TIME_BASE units to the stream specific time_base.
24937 @item
24938 @var{timestamp}: Timestamp in AVStream.time_base units
24939 or, if no stream is specified, in AV_TIME_BASE units.
24940 @item
24941 @var{flags}: Flags which select direction and seeking mode.
24942 @end itemize
24943
24944 @item get_duration
24945 Get movie duration in AV_TIME_BASE units.
24946
24947 @end table
24948
24949 @c man end MULTIMEDIA SOURCES