]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/vf_bbox: add support for commands
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{id}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program optionally followed by "@@@var{id}".
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{commands}
316 @chapter Changing options at runtime with a command
317
318 Some options can be changed during the operation of the filter using
319 a command. These options are marked 'T' on the output of
320 @command{ffmpeg} @option{-h filter=<name of filter>}.
321 The name of the command is the name of the option and the argument is
322 the new value.
323
324 @anchor{framesync}
325 @chapter Options for filters with several inputs (framesync)
326 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
327
328 Some filters with several inputs support a common set of options.
329 These options can only be set by name, not with the short notation.
330
331 @table @option
332 @item eof_action
333 The action to take when EOF is encountered on the secondary input; it accepts
334 one of the following values:
335
336 @table @option
337 @item repeat
338 Repeat the last frame (the default).
339 @item endall
340 End both streams.
341 @item pass
342 Pass the main input through.
343 @end table
344
345 @item shortest
346 If set to 1, force the output to terminate when the shortest input
347 terminates. Default value is 0.
348
349 @item repeatlast
350 If set to 1, force the filter to extend the last frame of secondary streams
351 until the end of the primary stream. A value of 0 disables this behavior.
352 Default value is 1.
353 @end table
354
355 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
356
357 @chapter Audio Filters
358 @c man begin AUDIO FILTERS
359
360 When you configure your FFmpeg build, you can disable any of the
361 existing filters using @code{--disable-filters}.
362 The configure output will show the audio filters included in your
363 build.
364
365 Below is a description of the currently available audio filters.
366
367 @section acompressor
368
369 A compressor is mainly used to reduce the dynamic range of a signal.
370 Especially modern music is mostly compressed at a high ratio to
371 improve the overall loudness. It's done to get the highest attention
372 of a listener, "fatten" the sound and bring more "power" to the track.
373 If a signal is compressed too much it may sound dull or "dead"
374 afterwards or it may start to "pump" (which could be a powerful effect
375 but can also destroy a track completely).
376 The right compression is the key to reach a professional sound and is
377 the high art of mixing and mastering. Because of its complex settings
378 it may take a long time to get the right feeling for this kind of effect.
379
380 Compression is done by detecting the volume above a chosen level
381 @code{threshold} and dividing it by the factor set with @code{ratio}.
382 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
383 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
384 the signal would cause distortion of the waveform the reduction can be
385 levelled over the time. This is done by setting "Attack" and "Release".
386 @code{attack} determines how long the signal has to rise above the threshold
387 before any reduction will occur and @code{release} sets the time the signal
388 has to fall below the threshold to reduce the reduction again. Shorter signals
389 than the chosen attack time will be left untouched.
390 The overall reduction of the signal can be made up afterwards with the
391 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
392 raising the makeup to this level results in a signal twice as loud than the
393 source. To gain a softer entry in the compression the @code{knee} flattens the
394 hard edge at the threshold in the range of the chosen decibels.
395
396 The filter accepts the following options:
397
398 @table @option
399 @item level_in
400 Set input gain. Default is 1. Range is between 0.015625 and 64.
401
402 @item mode
403 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
404 Default is @code{downward}.
405
406 @item threshold
407 If a signal of stream rises above this level it will affect the gain
408 reduction.
409 By default it is 0.125. Range is between 0.00097563 and 1.
410
411 @item ratio
412 Set a ratio by which the signal is reduced. 1:2 means that if the level
413 rose 4dB above the threshold, it will be only 2dB above after the reduction.
414 Default is 2. Range is between 1 and 20.
415
416 @item attack
417 Amount of milliseconds the signal has to rise above the threshold before gain
418 reduction starts. Default is 20. Range is between 0.01 and 2000.
419
420 @item release
421 Amount of milliseconds the signal has to fall below the threshold before
422 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
423
424 @item makeup
425 Set the amount by how much signal will be amplified after processing.
426 Default is 1. Range is from 1 to 64.
427
428 @item knee
429 Curve the sharp knee around the threshold to enter gain reduction more softly.
430 Default is 2.82843. Range is between 1 and 8.
431
432 @item link
433 Choose if the @code{average} level between all channels of input stream
434 or the louder(@code{maximum}) channel of input stream affects the
435 reduction. Default is @code{average}.
436
437 @item detection
438 Should the exact signal be taken in case of @code{peak} or an RMS one in case
439 of @code{rms}. Default is @code{rms} which is mostly smoother.
440
441 @item mix
442 How much to use compressed signal in output. Default is 1.
443 Range is between 0 and 1.
444 @end table
445
446 @subsection Commands
447
448 This filter supports the all above options as @ref{commands}.
449
450 @section acontrast
451 Simple audio dynamic range compression/expansion filter.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item contrast
457 Set contrast. Default is 33. Allowed range is between 0 and 100.
458 @end table
459
460 @section acopy
461
462 Copy the input audio source unchanged to the output. This is mainly useful for
463 testing purposes.
464
465 @section acrossfade
466
467 Apply cross fade from one input audio stream to another input audio stream.
468 The cross fade is applied for specified duration near the end of first stream.
469
470 The filter accepts the following options:
471
472 @table @option
473 @item nb_samples, ns
474 Specify the number of samples for which the cross fade effect has to last.
475 At the end of the cross fade effect the first input audio will be completely
476 silent. Default is 44100.
477
478 @item duration, d
479 Specify the duration of the cross fade effect. See
480 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
481 for the accepted syntax.
482 By default the duration is determined by @var{nb_samples}.
483 If set this option is used instead of @var{nb_samples}.
484
485 @item overlap, o
486 Should first stream end overlap with second stream start. Default is enabled.
487
488 @item curve1
489 Set curve for cross fade transition for first stream.
490
491 @item curve2
492 Set curve for cross fade transition for second stream.
493
494 For description of available curve types see @ref{afade} filter description.
495 @end table
496
497 @subsection Examples
498
499 @itemize
500 @item
501 Cross fade from one input to another:
502 @example
503 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
504 @end example
505
506 @item
507 Cross fade from one input to another but without overlapping:
508 @example
509 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
510 @end example
511 @end itemize
512
513 @section acrossover
514 Split audio stream into several bands.
515
516 This filter splits audio stream into two or more frequency ranges.
517 Summing all streams back will give flat output.
518
519 The filter accepts the following options:
520
521 @table @option
522 @item split
523 Set split frequencies. Those must be positive and increasing.
524
525 @item order
526 Set filter order for each band split. This controls filter roll-off or steepness
527 of filter transfer function.
528 Available values are:
529
530 @table @samp
531 @item 2nd
532 12 dB per octave.
533 @item 4th
534 24 dB per octave.
535 @item 6th
536 36 dB per octave.
537 @item 8th
538 48 dB per octave.
539 @item 10th
540 60 dB per octave.
541 @item 12th
542 72 dB per octave.
543 @item 14th
544 84 dB per octave.
545 @item 16th
546 96 dB per octave.
547 @item 18th
548 108 dB per octave.
549 @item 20th
550 120 dB per octave.
551 @end table
552
553 Default is @var{4th}.
554
555 @item level
556 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
557
558 @item gains
559 Set output gain for each band. Default value is 1 for all bands.
560 @end table
561
562 @subsection Examples
563
564 @itemize
565 @item
566 Split input audio stream into two bands (low and high) with split frequency of 1500 Hz,
567 each band will be in separate stream:
568 @example
569 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
570 @end example
571
572 @item
573 Same as above, but with higher filter order:
574 @example
575 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500:order=8th[LOW][HIGH]' -map '[LOW]' low.wav -map '[HIGH]' high.wav
576 @end example
577
578 @item
579 Same as above, but also with additional middle band (frequencies between 1500 and 8000):
580 @example
581 ffmpeg -i in.flac -filter_complex 'acrossover=split=1500 8000:order=8th[LOW][MID][HIGH]' -map '[LOW]' low.wav -map '[MID]' mid.wav -map '[HIGH]' high.wav
582 @end example
583 @end itemize
584
585 @section acrusher
586
587 Reduce audio bit resolution.
588
589 This filter is bit crusher with enhanced functionality. A bit crusher
590 is used to audibly reduce number of bits an audio signal is sampled
591 with. This doesn't change the bit depth at all, it just produces the
592 effect. Material reduced in bit depth sounds more harsh and "digital".
593 This filter is able to even round to continuous values instead of discrete
594 bit depths.
595 Additionally it has a D/C offset which results in different crushing of
596 the lower and the upper half of the signal.
597 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
598
599 Another feature of this filter is the logarithmic mode.
600 This setting switches from linear distances between bits to logarithmic ones.
601 The result is a much more "natural" sounding crusher which doesn't gate low
602 signals for example. The human ear has a logarithmic perception,
603 so this kind of crushing is much more pleasant.
604 Logarithmic crushing is also able to get anti-aliased.
605
606 The filter accepts the following options:
607
608 @table @option
609 @item level_in
610 Set level in.
611
612 @item level_out
613 Set level out.
614
615 @item bits
616 Set bit reduction.
617
618 @item mix
619 Set mixing amount.
620
621 @item mode
622 Can be linear: @code{lin} or logarithmic: @code{log}.
623
624 @item dc
625 Set DC.
626
627 @item aa
628 Set anti-aliasing.
629
630 @item samples
631 Set sample reduction.
632
633 @item lfo
634 Enable LFO. By default disabled.
635
636 @item lforange
637 Set LFO range.
638
639 @item lforate
640 Set LFO rate.
641 @end table
642
643 @section acue
644
645 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
646 filter.
647
648 @section adeclick
649 Remove impulsive noise from input audio.
650
651 Samples detected as impulsive noise are replaced by interpolated samples using
652 autoregressive modelling.
653
654 @table @option
655 @item w
656 Set window size, in milliseconds. Allowed range is from @code{10} to
657 @code{100}. Default value is @code{55} milliseconds.
658 This sets size of window which will be processed at once.
659
660 @item o
661 Set window overlap, in percentage of window size. Allowed range is from
662 @code{50} to @code{95}. Default value is @code{75} percent.
663 Setting this to a very high value increases impulsive noise removal but makes
664 whole process much slower.
665
666 @item a
667 Set autoregression order, in percentage of window size. Allowed range is from
668 @code{0} to @code{25}. Default value is @code{2} percent. This option also
669 controls quality of interpolated samples using neighbour good samples.
670
671 @item t
672 Set threshold value. Allowed range is from @code{1} to @code{100}.
673 Default value is @code{2}.
674 This controls the strength of impulsive noise which is going to be removed.
675 The lower value, the more samples will be detected as impulsive noise.
676
677 @item b
678 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
679 @code{10}. Default value is @code{2}.
680 If any two samples detected as noise are spaced less than this value then any
681 sample between those two samples will be also detected as noise.
682
683 @item m
684 Set overlap method.
685
686 It accepts the following values:
687 @table @option
688 @item a
689 Select overlap-add method. Even not interpolated samples are slightly
690 changed with this method.
691
692 @item s
693 Select overlap-save method. Not interpolated samples remain unchanged.
694 @end table
695
696 Default value is @code{a}.
697 @end table
698
699 @section adeclip
700 Remove clipped samples from input audio.
701
702 Samples detected as clipped are replaced by interpolated samples using
703 autoregressive modelling.
704
705 @table @option
706 @item w
707 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
708 Default value is @code{55} milliseconds.
709 This sets size of window which will be processed at once.
710
711 @item o
712 Set window overlap, in percentage of window size. Allowed range is from @code{50}
713 to @code{95}. Default value is @code{75} percent.
714
715 @item a
716 Set autoregression order, in percentage of window size. Allowed range is from
717 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
718 quality of interpolated samples using neighbour good samples.
719
720 @item t
721 Set threshold value. Allowed range is from @code{1} to @code{100}.
722 Default value is @code{10}. Higher values make clip detection less aggressive.
723
724 @item n
725 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
726 Default value is @code{1000}. Higher values make clip detection less aggressive.
727
728 @item m
729 Set overlap method.
730
731 It accepts the following values:
732 @table @option
733 @item a
734 Select overlap-add method. Even not interpolated samples are slightly changed
735 with this method.
736
737 @item s
738 Select overlap-save method. Not interpolated samples remain unchanged.
739 @end table
740
741 Default value is @code{a}.
742 @end table
743
744 @section adelay
745
746 Delay one or more audio channels.
747
748 Samples in delayed channel are filled with silence.
749
750 The filter accepts the following option:
751
752 @table @option
753 @item delays
754 Set list of delays in milliseconds for each channel separated by '|'.
755 Unused delays will be silently ignored. If number of given delays is
756 smaller than number of channels all remaining channels will not be delayed.
757 If you want to delay exact number of samples, append 'S' to number.
758 If you want instead to delay in seconds, append 's' to number.
759
760 @item all
761 Use last set delay for all remaining channels. By default is disabled.
762 This option if enabled changes how option @code{delays} is interpreted.
763 @end table
764
765 @subsection Examples
766
767 @itemize
768 @item
769 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
770 the second channel (and any other channels that may be present) unchanged.
771 @example
772 adelay=1500|0|500
773 @end example
774
775 @item
776 Delay second channel by 500 samples, the third channel by 700 samples and leave
777 the first channel (and any other channels that may be present) unchanged.
778 @example
779 adelay=0|500S|700S
780 @end example
781
782 @item
783 Delay all channels by same number of samples:
784 @example
785 adelay=delays=64S:all=1
786 @end example
787 @end itemize
788
789 @section adenorm
790 Remedy denormals in audio by adding extremely low-level noise.
791
792 This filter shall be placed before any filter that can produce denormals.
793
794 A description of the accepted parameters follows.
795
796 @table @option
797 @item level
798 Set level of added noise in dB. Default is @code{-351}.
799 Allowed range is from -451 to -90.
800
801 @item type
802 Set type of added noise.
803
804 @table @option
805 @item dc
806 Add DC signal.
807 @item ac
808 Add AC signal.
809 @item square
810 Add square signal.
811 @item pulse
812 Add pulse signal.
813 @end table
814
815 Default is @code{dc}.
816 @end table
817
818 @subsection Commands
819
820 This filter supports the all above options as @ref{commands}.
821
822 @section aderivative, aintegral
823
824 Compute derivative/integral of audio stream.
825
826 Applying both filters one after another produces original audio.
827
828 @section aecho
829
830 Apply echoing to the input audio.
831
832 Echoes are reflected sound and can occur naturally amongst mountains
833 (and sometimes large buildings) when talking or shouting; digital echo
834 effects emulate this behaviour and are often used to help fill out the
835 sound of a single instrument or vocal. The time difference between the
836 original signal and the reflection is the @code{delay}, and the
837 loudness of the reflected signal is the @code{decay}.
838 Multiple echoes can have different delays and decays.
839
840 A description of the accepted parameters follows.
841
842 @table @option
843 @item in_gain
844 Set input gain of reflected signal. Default is @code{0.6}.
845
846 @item out_gain
847 Set output gain of reflected signal. Default is @code{0.3}.
848
849 @item delays
850 Set list of time intervals in milliseconds between original signal and reflections
851 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
852 Default is @code{1000}.
853
854 @item decays
855 Set list of loudness of reflected signals separated by '|'.
856 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
857 Default is @code{0.5}.
858 @end table
859
860 @subsection Examples
861
862 @itemize
863 @item
864 Make it sound as if there are twice as many instruments as are actually playing:
865 @example
866 aecho=0.8:0.88:60:0.4
867 @end example
868
869 @item
870 If delay is very short, then it sounds like a (metallic) robot playing music:
871 @example
872 aecho=0.8:0.88:6:0.4
873 @end example
874
875 @item
876 A longer delay will sound like an open air concert in the mountains:
877 @example
878 aecho=0.8:0.9:1000:0.3
879 @end example
880
881 @item
882 Same as above but with one more mountain:
883 @example
884 aecho=0.8:0.9:1000|1800:0.3|0.25
885 @end example
886 @end itemize
887
888 @section aemphasis
889 Audio emphasis filter creates or restores material directly taken from LPs or
890 emphased CDs with different filter curves. E.g. to store music on vinyl the
891 signal has to be altered by a filter first to even out the disadvantages of
892 this recording medium.
893 Once the material is played back the inverse filter has to be applied to
894 restore the distortion of the frequency response.
895
896 The filter accepts the following options:
897
898 @table @option
899 @item level_in
900 Set input gain.
901
902 @item level_out
903 Set output gain.
904
905 @item mode
906 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
907 use @code{production} mode. Default is @code{reproduction} mode.
908
909 @item type
910 Set filter type. Selects medium. Can be one of the following:
911
912 @table @option
913 @item col
914 select Columbia.
915 @item emi
916 select EMI.
917 @item bsi
918 select BSI (78RPM).
919 @item riaa
920 select RIAA.
921 @item cd
922 select Compact Disc (CD).
923 @item 50fm
924 select 50µs (FM).
925 @item 75fm
926 select 75µs (FM).
927 @item 50kf
928 select 50µs (FM-KF).
929 @item 75kf
930 select 75µs (FM-KF).
931 @end table
932 @end table
933
934 @subsection Commands
935
936 This filter supports the all above options as @ref{commands}.
937
938 @section aeval
939
940 Modify an audio signal according to the specified expressions.
941
942 This filter accepts one or more expressions (one for each channel),
943 which are evaluated and used to modify a corresponding audio signal.
944
945 It accepts the following parameters:
946
947 @table @option
948 @item exprs
949 Set the '|'-separated expressions list for each separate channel. If
950 the number of input channels is greater than the number of
951 expressions, the last specified expression is used for the remaining
952 output channels.
953
954 @item channel_layout, c
955 Set output channel layout. If not specified, the channel layout is
956 specified by the number of expressions. If set to @samp{same}, it will
957 use by default the same input channel layout.
958 @end table
959
960 Each expression in @var{exprs} can contain the following constants and functions:
961
962 @table @option
963 @item ch
964 channel number of the current expression
965
966 @item n
967 number of the evaluated sample, starting from 0
968
969 @item s
970 sample rate
971
972 @item t
973 time of the evaluated sample expressed in seconds
974
975 @item nb_in_channels
976 @item nb_out_channels
977 input and output number of channels
978
979 @item val(CH)
980 the value of input channel with number @var{CH}
981 @end table
982
983 Note: this filter is slow. For faster processing you should use a
984 dedicated filter.
985
986 @subsection Examples
987
988 @itemize
989 @item
990 Half volume:
991 @example
992 aeval=val(ch)/2:c=same
993 @end example
994
995 @item
996 Invert phase of the second channel:
997 @example
998 aeval=val(0)|-val(1)
999 @end example
1000 @end itemize
1001
1002 @anchor{afade}
1003 @section afade
1004
1005 Apply fade-in/out effect to input audio.
1006
1007 A description of the accepted parameters follows.
1008
1009 @table @option
1010 @item type, t
1011 Specify the effect type, can be either @code{in} for fade-in, or
1012 @code{out} for a fade-out effect. Default is @code{in}.
1013
1014 @item start_sample, ss
1015 Specify the number of the start sample for starting to apply the fade
1016 effect. Default is 0.
1017
1018 @item nb_samples, ns
1019 Specify the number of samples for which the fade effect has to last. At
1020 the end of the fade-in effect the output audio will have the same
1021 volume as the input audio, at the end of the fade-out transition
1022 the output audio will be silence. Default is 44100.
1023
1024 @item start_time, st
1025 Specify the start time of the fade effect. Default is 0.
1026 The value must be specified as a time duration; see
1027 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1028 for the accepted syntax.
1029 If set this option is used instead of @var{start_sample}.
1030
1031 @item duration, d
1032 Specify the duration of the fade effect. See
1033 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1034 for the accepted syntax.
1035 At the end of the fade-in effect the output audio will have the same
1036 volume as the input audio, at the end of the fade-out transition
1037 the output audio will be silence.
1038 By default the duration is determined by @var{nb_samples}.
1039 If set this option is used instead of @var{nb_samples}.
1040
1041 @item curve
1042 Set curve for fade transition.
1043
1044 It accepts the following values:
1045 @table @option
1046 @item tri
1047 select triangular, linear slope (default)
1048 @item qsin
1049 select quarter of sine wave
1050 @item hsin
1051 select half of sine wave
1052 @item esin
1053 select exponential sine wave
1054 @item log
1055 select logarithmic
1056 @item ipar
1057 select inverted parabola
1058 @item qua
1059 select quadratic
1060 @item cub
1061 select cubic
1062 @item squ
1063 select square root
1064 @item cbr
1065 select cubic root
1066 @item par
1067 select parabola
1068 @item exp
1069 select exponential
1070 @item iqsin
1071 select inverted quarter of sine wave
1072 @item ihsin
1073 select inverted half of sine wave
1074 @item dese
1075 select double-exponential seat
1076 @item desi
1077 select double-exponential sigmoid
1078 @item losi
1079 select logistic sigmoid
1080 @item sinc
1081 select sine cardinal function
1082 @item isinc
1083 select inverted sine cardinal function
1084 @item nofade
1085 no fade applied
1086 @end table
1087 @end table
1088
1089 @subsection Commands
1090
1091 This filter supports the all above options as @ref{commands}.
1092
1093 @subsection Examples
1094
1095 @itemize
1096 @item
1097 Fade in first 15 seconds of audio:
1098 @example
1099 afade=t=in:ss=0:d=15
1100 @end example
1101
1102 @item
1103 Fade out last 25 seconds of a 900 seconds audio:
1104 @example
1105 afade=t=out:st=875:d=25
1106 @end example
1107 @end itemize
1108
1109 @section afftdn
1110 Denoise audio samples with FFT.
1111
1112 A description of the accepted parameters follows.
1113
1114 @table @option
1115 @item nr
1116 Set the noise reduction in dB, allowed range is 0.01 to 97.
1117 Default value is 12 dB.
1118
1119 @item nf
1120 Set the noise floor in dB, allowed range is -80 to -20.
1121 Default value is -50 dB.
1122
1123 @item nt
1124 Set the noise type.
1125
1126 It accepts the following values:
1127 @table @option
1128 @item w
1129 Select white noise.
1130
1131 @item v
1132 Select vinyl noise.
1133
1134 @item s
1135 Select shellac noise.
1136
1137 @item c
1138 Select custom noise, defined in @code{bn} option.
1139
1140 Default value is white noise.
1141 @end table
1142
1143 @item bn
1144 Set custom band noise for every one of 15 bands.
1145 Bands are separated by ' ' or '|'.
1146
1147 @item rf
1148 Set the residual floor in dB, allowed range is -80 to -20.
1149 Default value is -38 dB.
1150
1151 @item tn
1152 Enable noise tracking. By default is disabled.
1153 With this enabled, noise floor is automatically adjusted.
1154
1155 @item tr
1156 Enable residual tracking. By default is disabled.
1157
1158 @item om
1159 Set the output mode.
1160
1161 It accepts the following values:
1162 @table @option
1163 @item i
1164 Pass input unchanged.
1165
1166 @item o
1167 Pass noise filtered out.
1168
1169 @item n
1170 Pass only noise.
1171
1172 Default value is @var{o}.
1173 @end table
1174 @end table
1175
1176 @subsection Commands
1177
1178 This filter supports the following commands:
1179 @table @option
1180 @item sample_noise, sn
1181 Start or stop measuring noise profile.
1182 Syntax for the command is : "start" or "stop" string.
1183 After measuring noise profile is stopped it will be
1184 automatically applied in filtering.
1185
1186 @item noise_reduction, nr
1187 Change noise reduction. Argument is single float number.
1188 Syntax for the command is : "@var{noise_reduction}"
1189
1190 @item noise_floor, nf
1191 Change noise floor. Argument is single float number.
1192 Syntax for the command is : "@var{noise_floor}"
1193
1194 @item output_mode, om
1195 Change output mode operation.
1196 Syntax for the command is : "i", "o" or "n" string.
1197 @end table
1198
1199 @section afftfilt
1200 Apply arbitrary expressions to samples in frequency domain.
1201
1202 @table @option
1203 @item real
1204 Set frequency domain real expression for each separate channel separated
1205 by '|'. Default is "re".
1206 If the number of input channels is greater than the number of
1207 expressions, the last specified expression is used for the remaining
1208 output channels.
1209
1210 @item imag
1211 Set frequency domain imaginary expression for each separate channel
1212 separated by '|'. Default is "im".
1213
1214 Each expression in @var{real} and @var{imag} can contain the following
1215 constants and functions:
1216
1217 @table @option
1218 @item sr
1219 sample rate
1220
1221 @item b
1222 current frequency bin number
1223
1224 @item nb
1225 number of available bins
1226
1227 @item ch
1228 channel number of the current expression
1229
1230 @item chs
1231 number of channels
1232
1233 @item pts
1234 current frame pts
1235
1236 @item re
1237 current real part of frequency bin of current channel
1238
1239 @item im
1240 current imaginary part of frequency bin of current channel
1241
1242 @item real(b, ch)
1243 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1244
1245 @item imag(b, ch)
1246 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1247 @end table
1248
1249 @item win_size
1250 Set window size. Allowed range is from 16 to 131072.
1251 Default is @code{4096}
1252
1253 @item win_func
1254 Set window function. Default is @code{hann}.
1255
1256 @item overlap
1257 Set window overlap. If set to 1, the recommended overlap for selected
1258 window function will be picked. Default is @code{0.75}.
1259 @end table
1260
1261 @subsection Examples
1262
1263 @itemize
1264 @item
1265 Leave almost only low frequencies in audio:
1266 @example
1267 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1268 @end example
1269
1270 @item
1271 Apply robotize effect:
1272 @example
1273 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1274 @end example
1275
1276 @item
1277 Apply whisper effect:
1278 @example
1279 afftfilt="real='hypot(re,im)*cos((random(0)*2-1)*2*3.14)':imag='hypot(re,im)*sin((random(1)*2-1)*2*3.14)':win_size=128:overlap=0.8"
1280 @end example
1281 @end itemize
1282
1283 @anchor{afir}
1284 @section afir
1285
1286 Apply an arbitrary Finite Impulse Response filter.
1287
1288 This filter is designed for applying long FIR filters,
1289 up to 60 seconds long.
1290
1291 It can be used as component for digital crossover filters,
1292 room equalization, cross talk cancellation, wavefield synthesis,
1293 auralization, ambiophonics, ambisonics and spatialization.
1294
1295 This filter uses the streams higher than first one as FIR coefficients.
1296 If the non-first stream holds a single channel, it will be used
1297 for all input channels in the first stream, otherwise
1298 the number of channels in the non-first stream must be same as
1299 the number of channels in the first stream.
1300
1301 It accepts the following parameters:
1302
1303 @table @option
1304 @item dry
1305 Set dry gain. This sets input gain.
1306
1307 @item wet
1308 Set wet gain. This sets final output gain.
1309
1310 @item length
1311 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1312
1313 @item gtype
1314 Enable applying gain measured from power of IR.
1315
1316 Set which approach to use for auto gain measurement.
1317
1318 @table @option
1319 @item none
1320 Do not apply any gain.
1321
1322 @item peak
1323 select peak gain, very conservative approach. This is default value.
1324
1325 @item dc
1326 select DC gain, limited application.
1327
1328 @item gn
1329 select gain to noise approach, this is most popular one.
1330 @end table
1331
1332 @item irgain
1333 Set gain to be applied to IR coefficients before filtering.
1334 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1335
1336 @item irfmt
1337 Set format of IR stream. Can be @code{mono} or @code{input}.
1338 Default is @code{input}.
1339
1340 @item maxir
1341 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1342 Allowed range is 0.1 to 60 seconds.
1343
1344 @item response
1345 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1346 By default it is disabled.
1347
1348 @item channel
1349 Set for which IR channel to display frequency response. By default is first channel
1350 displayed. This option is used only when @var{response} is enabled.
1351
1352 @item size
1353 Set video stream size. This option is used only when @var{response} is enabled.
1354
1355 @item rate
1356 Set video stream frame rate. This option is used only when @var{response} is enabled.
1357
1358 @item minp
1359 Set minimal partition size used for convolution. Default is @var{8192}.
1360 Allowed range is from @var{1} to @var{32768}.
1361 Lower values decreases latency at cost of higher CPU usage.
1362
1363 @item maxp
1364 Set maximal partition size used for convolution. Default is @var{8192}.
1365 Allowed range is from @var{8} to @var{32768}.
1366 Lower values may increase CPU usage.
1367
1368 @item nbirs
1369 Set number of input impulse responses streams which will be switchable at runtime.
1370 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1371
1372 @item ir
1373 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1374 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1375 This option can be changed at runtime via @ref{commands}.
1376 @end table
1377
1378 @subsection Examples
1379
1380 @itemize
1381 @item
1382 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1383 @example
1384 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1385 @end example
1386 @end itemize
1387
1388 @anchor{aformat}
1389 @section aformat
1390
1391 Set output format constraints for the input audio. The framework will
1392 negotiate the most appropriate format to minimize conversions.
1393
1394 It accepts the following parameters:
1395 @table @option
1396
1397 @item sample_fmts, f
1398 A '|'-separated list of requested sample formats.
1399
1400 @item sample_rates, r
1401 A '|'-separated list of requested sample rates.
1402
1403 @item channel_layouts, cl
1404 A '|'-separated list of requested channel layouts.
1405
1406 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1407 for the required syntax.
1408 @end table
1409
1410 If a parameter is omitted, all values are allowed.
1411
1412 Force the output to either unsigned 8-bit or signed 16-bit stereo
1413 @example
1414 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1415 @end example
1416
1417 @section afreqshift
1418 Apply frequency shift to input audio samples.
1419
1420 The filter accepts the following options:
1421
1422 @table @option
1423 @item shift
1424 Specify frequency shift. Allowed range is -INT_MAX to INT_MAX.
1425 Default value is 0.0.
1426
1427 @item level
1428 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
1429 Default value is 1.0.
1430 @end table
1431
1432 @subsection Commands
1433
1434 This filter supports the all above options as @ref{commands}.
1435
1436 @section agate
1437
1438 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1439 processing reduces disturbing noise between useful signals.
1440
1441 Gating is done by detecting the volume below a chosen level @var{threshold}
1442 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1443 floor is set via @var{range}. Because an exact manipulation of the signal
1444 would cause distortion of the waveform the reduction can be levelled over
1445 time. This is done by setting @var{attack} and @var{release}.
1446
1447 @var{attack} determines how long the signal has to fall below the threshold
1448 before any reduction will occur and @var{release} sets the time the signal
1449 has to rise above the threshold to reduce the reduction again.
1450 Shorter signals than the chosen attack time will be left untouched.
1451
1452 @table @option
1453 @item level_in
1454 Set input level before filtering.
1455 Default is 1. Allowed range is from 0.015625 to 64.
1456
1457 @item mode
1458 Set the mode of operation. Can be @code{upward} or @code{downward}.
1459 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1460 will be amplified, expanding dynamic range in upward direction.
1461 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1462
1463 @item range
1464 Set the level of gain reduction when the signal is below the threshold.
1465 Default is 0.06125. Allowed range is from 0 to 1.
1466 Setting this to 0 disables reduction and then filter behaves like expander.
1467
1468 @item threshold
1469 If a signal rises above this level the gain reduction is released.
1470 Default is 0.125. Allowed range is from 0 to 1.
1471
1472 @item ratio
1473 Set a ratio by which the signal is reduced.
1474 Default is 2. Allowed range is from 1 to 9000.
1475
1476 @item attack
1477 Amount of milliseconds the signal has to rise above the threshold before gain
1478 reduction stops.
1479 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1480
1481 @item release
1482 Amount of milliseconds the signal has to fall below the threshold before the
1483 reduction is increased again. Default is 250 milliseconds.
1484 Allowed range is from 0.01 to 9000.
1485
1486 @item makeup
1487 Set amount of amplification of signal after processing.
1488 Default is 1. Allowed range is from 1 to 64.
1489
1490 @item knee
1491 Curve the sharp knee around the threshold to enter gain reduction more softly.
1492 Default is 2.828427125. Allowed range is from 1 to 8.
1493
1494 @item detection
1495 Choose if exact signal should be taken for detection or an RMS like one.
1496 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1497
1498 @item link
1499 Choose if the average level between all channels or the louder channel affects
1500 the reduction.
1501 Default is @code{average}. Can be @code{average} or @code{maximum}.
1502 @end table
1503
1504 @subsection Commands
1505
1506 This filter supports the all above options as @ref{commands}.
1507
1508 @section aiir
1509
1510 Apply an arbitrary Infinite Impulse Response filter.
1511
1512 It accepts the following parameters:
1513
1514 @table @option
1515 @item zeros, z
1516 Set B/numerator/zeros/reflection coefficients.
1517
1518 @item poles, p
1519 Set A/denominator/poles/ladder coefficients.
1520
1521 @item gains, k
1522 Set channels gains.
1523
1524 @item dry_gain
1525 Set input gain.
1526
1527 @item wet_gain
1528 Set output gain.
1529
1530 @item format, f
1531 Set coefficients format.
1532
1533 @table @samp
1534 @item ll
1535 lattice-ladder function
1536 @item sf
1537 analog transfer function
1538 @item tf
1539 digital transfer function
1540 @item zp
1541 Z-plane zeros/poles, cartesian (default)
1542 @item pr
1543 Z-plane zeros/poles, polar radians
1544 @item pd
1545 Z-plane zeros/poles, polar degrees
1546 @item sp
1547 S-plane zeros/poles
1548 @end table
1549
1550 @item process, r
1551 Set type of processing.
1552
1553 @table @samp
1554 @item d
1555 direct processing
1556 @item s
1557 serial processing
1558 @item p
1559 parallel processing
1560 @end table
1561
1562 @item precision, e
1563 Set filtering precision.
1564
1565 @table @samp
1566 @item dbl
1567 double-precision floating-point (default)
1568 @item flt
1569 single-precision floating-point
1570 @item i32
1571 32-bit integers
1572 @item i16
1573 16-bit integers
1574 @end table
1575
1576 @item normalize, n
1577 Normalize filter coefficients, by default is enabled.
1578 Enabling it will normalize magnitude response at DC to 0dB.
1579
1580 @item mix
1581 How much to use filtered signal in output. Default is 1.
1582 Range is between 0 and 1.
1583
1584 @item response
1585 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1586 By default it is disabled.
1587
1588 @item channel
1589 Set for which IR channel to display frequency response. By default is first channel
1590 displayed. This option is used only when @var{response} is enabled.
1591
1592 @item size
1593 Set video stream size. This option is used only when @var{response} is enabled.
1594 @end table
1595
1596 Coefficients in @code{tf} and @code{sf} format are separated by spaces and are in ascending
1597 order.
1598
1599 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1600 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1601 imaginary unit.
1602
1603 Different coefficients and gains can be provided for every channel, in such case
1604 use '|' to separate coefficients or gains. Last provided coefficients will be
1605 used for all remaining channels.
1606
1607 @subsection Examples
1608
1609 @itemize
1610 @item
1611 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1612 @example
1613 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1614 @end example
1615
1616 @item
1617 Same as above but in @code{zp} format:
1618 @example
1619 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1620 @end example
1621
1622 @item
1623 Apply 3-rd order analog normalized Butterworth low-pass filter, using analog transfer function format:
1624 @example
1625 aiir=z=1.3057 0 0 0:p=1.3057 2.3892 2.1860 1:f=sf:r=d
1626 @end example
1627 @end itemize
1628
1629 @section alimiter
1630
1631 The limiter prevents an input signal from rising over a desired threshold.
1632 This limiter uses lookahead technology to prevent your signal from distorting.
1633 It means that there is a small delay after the signal is processed. Keep in mind
1634 that the delay it produces is the attack time you set.
1635
1636 The filter accepts the following options:
1637
1638 @table @option
1639 @item level_in
1640 Set input gain. Default is 1.
1641
1642 @item level_out
1643 Set output gain. Default is 1.
1644
1645 @item limit
1646 Don't let signals above this level pass the limiter. Default is 1.
1647
1648 @item attack
1649 The limiter will reach its attenuation level in this amount of time in
1650 milliseconds. Default is 5 milliseconds.
1651
1652 @item release
1653 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1654 Default is 50 milliseconds.
1655
1656 @item asc
1657 When gain reduction is always needed ASC takes care of releasing to an
1658 average reduction level rather than reaching a reduction of 0 in the release
1659 time.
1660
1661 @item asc_level
1662 Select how much the release time is affected by ASC, 0 means nearly no changes
1663 in release time while 1 produces higher release times.
1664
1665 @item level
1666 Auto level output signal. Default is enabled.
1667 This normalizes audio back to 0dB if enabled.
1668 @end table
1669
1670 Depending on picked setting it is recommended to upsample input 2x or 4x times
1671 with @ref{aresample} before applying this filter.
1672
1673 @section allpass
1674
1675 Apply a two-pole all-pass filter with central frequency (in Hz)
1676 @var{frequency}, and filter-width @var{width}.
1677 An all-pass filter changes the audio's frequency to phase relationship
1678 without changing its frequency to amplitude relationship.
1679
1680 The filter accepts the following options:
1681
1682 @table @option
1683 @item frequency, f
1684 Set frequency in Hz.
1685
1686 @item width_type, t
1687 Set method to specify band-width of filter.
1688 @table @option
1689 @item h
1690 Hz
1691 @item q
1692 Q-Factor
1693 @item o
1694 octave
1695 @item s
1696 slope
1697 @item k
1698 kHz
1699 @end table
1700
1701 @item width, w
1702 Specify the band-width of a filter in width_type units.
1703
1704 @item mix, m
1705 How much to use filtered signal in output. Default is 1.
1706 Range is between 0 and 1.
1707
1708 @item channels, c
1709 Specify which channels to filter, by default all available are filtered.
1710
1711 @item normalize, n
1712 Normalize biquad coefficients, by default is disabled.
1713 Enabling it will normalize magnitude response at DC to 0dB.
1714
1715 @item order, o
1716 Set the filter order, can be 1 or 2. Default is 2.
1717
1718 @item transform, a
1719 Set transform type of IIR filter.
1720 @table @option
1721 @item di
1722 @item dii
1723 @item tdii
1724 @item latt
1725 @end table
1726
1727 @item precision, r
1728 Set precison of filtering.
1729 @table @option
1730 @item auto
1731 Pick automatic sample format depending on surround filters.
1732 @item s16
1733 Always use signed 16-bit.
1734 @item s32
1735 Always use signed 32-bit.
1736 @item f32
1737 Always use float 32-bit.
1738 @item f64
1739 Always use float 64-bit.
1740 @end table
1741 @end table
1742
1743 @subsection Commands
1744
1745 This filter supports the following commands:
1746 @table @option
1747 @item frequency, f
1748 Change allpass frequency.
1749 Syntax for the command is : "@var{frequency}"
1750
1751 @item width_type, t
1752 Change allpass width_type.
1753 Syntax for the command is : "@var{width_type}"
1754
1755 @item width, w
1756 Change allpass width.
1757 Syntax for the command is : "@var{width}"
1758
1759 @item mix, m
1760 Change allpass mix.
1761 Syntax for the command is : "@var{mix}"
1762 @end table
1763
1764 @section aloop
1765
1766 Loop audio samples.
1767
1768 The filter accepts the following options:
1769
1770 @table @option
1771 @item loop
1772 Set the number of loops. Setting this value to -1 will result in infinite loops.
1773 Default is 0.
1774
1775 @item size
1776 Set maximal number of samples. Default is 0.
1777
1778 @item start
1779 Set first sample of loop. Default is 0.
1780 @end table
1781
1782 @anchor{amerge}
1783 @section amerge
1784
1785 Merge two or more audio streams into a single multi-channel stream.
1786
1787 The filter accepts the following options:
1788
1789 @table @option
1790
1791 @item inputs
1792 Set the number of inputs. Default is 2.
1793
1794 @end table
1795
1796 If the channel layouts of the inputs are disjoint, and therefore compatible,
1797 the channel layout of the output will be set accordingly and the channels
1798 will be reordered as necessary. If the channel layouts of the inputs are not
1799 disjoint, the output will have all the channels of the first input then all
1800 the channels of the second input, in that order, and the channel layout of
1801 the output will be the default value corresponding to the total number of
1802 channels.
1803
1804 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1805 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1806 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1807 first input, b1 is the first channel of the second input).
1808
1809 On the other hand, if both input are in stereo, the output channels will be
1810 in the default order: a1, a2, b1, b2, and the channel layout will be
1811 arbitrarily set to 4.0, which may or may not be the expected value.
1812
1813 All inputs must have the same sample rate, and format.
1814
1815 If inputs do not have the same duration, the output will stop with the
1816 shortest.
1817
1818 @subsection Examples
1819
1820 @itemize
1821 @item
1822 Merge two mono files into a stereo stream:
1823 @example
1824 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1825 @end example
1826
1827 @item
1828 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1829 @example
1830 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
1831 @end example
1832 @end itemize
1833
1834 @section amix
1835
1836 Mixes multiple audio inputs into a single output.
1837
1838 Note that this filter only supports float samples (the @var{amerge}
1839 and @var{pan} audio filters support many formats). If the @var{amix}
1840 input has integer samples then @ref{aresample} will be automatically
1841 inserted to perform the conversion to float samples.
1842
1843 For example
1844 @example
1845 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1846 @end example
1847 will mix 3 input audio streams to a single output with the same duration as the
1848 first input and a dropout transition time of 3 seconds.
1849
1850 It accepts the following parameters:
1851 @table @option
1852
1853 @item inputs
1854 The number of inputs. If unspecified, it defaults to 2.
1855
1856 @item duration
1857 How to determine the end-of-stream.
1858 @table @option
1859
1860 @item longest
1861 The duration of the longest input. (default)
1862
1863 @item shortest
1864 The duration of the shortest input.
1865
1866 @item first
1867 The duration of the first input.
1868
1869 @end table
1870
1871 @item dropout_transition
1872 The transition time, in seconds, for volume renormalization when an input
1873 stream ends. The default value is 2 seconds.
1874
1875 @item weights
1876 Specify weight of each input audio stream as sequence.
1877 Each weight is separated by space. By default all inputs have same weight.
1878 @end table
1879
1880 @subsection Commands
1881
1882 This filter supports the following commands:
1883 @table @option
1884 @item weights
1885 Syntax is same as option with same name.
1886 @end table
1887
1888 @section amultiply
1889
1890 Multiply first audio stream with second audio stream and store result
1891 in output audio stream. Multiplication is done by multiplying each
1892 sample from first stream with sample at same position from second stream.
1893
1894 With this element-wise multiplication one can create amplitude fades and
1895 amplitude modulations.
1896
1897 @section anequalizer
1898
1899 High-order parametric multiband equalizer for each channel.
1900
1901 It accepts the following parameters:
1902 @table @option
1903 @item params
1904
1905 This option string is in format:
1906 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1907 Each equalizer band is separated by '|'.
1908
1909 @table @option
1910 @item chn
1911 Set channel number to which equalization will be applied.
1912 If input doesn't have that channel the entry is ignored.
1913
1914 @item f
1915 Set central frequency for band.
1916 If input doesn't have that frequency the entry is ignored.
1917
1918 @item w
1919 Set band width in Hertz.
1920
1921 @item g
1922 Set band gain in dB.
1923
1924 @item t
1925 Set filter type for band, optional, can be:
1926
1927 @table @samp
1928 @item 0
1929 Butterworth, this is default.
1930
1931 @item 1
1932 Chebyshev type 1.
1933
1934 @item 2
1935 Chebyshev type 2.
1936 @end table
1937 @end table
1938
1939 @item curves
1940 With this option activated frequency response of anequalizer is displayed
1941 in video stream.
1942
1943 @item size
1944 Set video stream size. Only useful if curves option is activated.
1945
1946 @item mgain
1947 Set max gain that will be displayed. Only useful if curves option is activated.
1948 Setting this to a reasonable value makes it possible to display gain which is derived from
1949 neighbour bands which are too close to each other and thus produce higher gain
1950 when both are activated.
1951
1952 @item fscale
1953 Set frequency scale used to draw frequency response in video output.
1954 Can be linear or logarithmic. Default is logarithmic.
1955
1956 @item colors
1957 Set color for each channel curve which is going to be displayed in video stream.
1958 This is list of color names separated by space or by '|'.
1959 Unrecognised or missing colors will be replaced by white color.
1960 @end table
1961
1962 @subsection Examples
1963
1964 @itemize
1965 @item
1966 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1967 for first 2 channels using Chebyshev type 1 filter:
1968 @example
1969 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1970 @end example
1971 @end itemize
1972
1973 @subsection Commands
1974
1975 This filter supports the following commands:
1976 @table @option
1977 @item change
1978 Alter existing filter parameters.
1979 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1980
1981 @var{fN} is existing filter number, starting from 0, if no such filter is available
1982 error is returned.
1983 @var{freq} set new frequency parameter.
1984 @var{width} set new width parameter in Hertz.
1985 @var{gain} set new gain parameter in dB.
1986
1987 Full filter invocation with asendcmd may look like this:
1988 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1989 @end table
1990
1991 @section anlmdn
1992
1993 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1994
1995 Each sample is adjusted by looking for other samples with similar contexts. This
1996 context similarity is defined by comparing their surrounding patches of size
1997 @option{p}. Patches are searched in an area of @option{r} around the sample.
1998
1999 The filter accepts the following options:
2000
2001 @table @option
2002 @item s
2003 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
2004
2005 @item p
2006 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
2007 Default value is 2 milliseconds.
2008
2009 @item r
2010 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
2011 Default value is 6 milliseconds.
2012
2013 @item o
2014 Set the output mode.
2015
2016 It accepts the following values:
2017 @table @option
2018 @item i
2019 Pass input unchanged.
2020
2021 @item o
2022 Pass noise filtered out.
2023
2024 @item n
2025 Pass only noise.
2026
2027 Default value is @var{o}.
2028 @end table
2029
2030 @item m
2031 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
2032 @end table
2033
2034 @subsection Commands
2035
2036 This filter supports the all above options as @ref{commands}.
2037
2038 @section anlms
2039 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
2040
2041 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
2042 relate to producing the least mean square of the error signal (difference between the desired,
2043 2nd input audio stream and the actual signal, the 1st input audio stream).
2044
2045 A description of the accepted options follows.
2046
2047 @table @option
2048 @item order
2049 Set filter order.
2050
2051 @item mu
2052 Set filter mu.
2053
2054 @item eps
2055 Set the filter eps.
2056
2057 @item leakage
2058 Set the filter leakage.
2059
2060 @item out_mode
2061 It accepts the following values:
2062 @table @option
2063 @item i
2064 Pass the 1st input.
2065
2066 @item d
2067 Pass the 2nd input.
2068
2069 @item o
2070 Pass filtered samples.
2071
2072 @item n
2073 Pass difference between desired and filtered samples.
2074
2075 Default value is @var{o}.
2076 @end table
2077 @end table
2078
2079 @subsection Examples
2080
2081 @itemize
2082 @item
2083 One of many usages of this filter is noise reduction, input audio is filtered
2084 with same samples that are delayed by fixed amount, one such example for stereo audio is:
2085 @example
2086 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
2087 @end example
2088 @end itemize
2089
2090 @subsection Commands
2091
2092 This filter supports the same commands as options, excluding option @code{order}.
2093
2094 @section anull
2095
2096 Pass the audio source unchanged to the output.
2097
2098 @section apad
2099
2100 Pad the end of an audio stream with silence.
2101
2102 This can be used together with @command{ffmpeg} @option{-shortest} to
2103 extend audio streams to the same length as the video stream.
2104
2105 A description of the accepted options follows.
2106
2107 @table @option
2108 @item packet_size
2109 Set silence packet size. Default value is 4096.
2110
2111 @item pad_len
2112 Set the number of samples of silence to add to the end. After the
2113 value is reached, the stream is terminated. This option is mutually
2114 exclusive with @option{whole_len}.
2115
2116 @item whole_len
2117 Set the minimum total number of samples in the output audio stream. If
2118 the value is longer than the input audio length, silence is added to
2119 the end, until the value is reached. This option is mutually exclusive
2120 with @option{pad_len}.
2121
2122 @item pad_dur
2123 Specify the duration of samples of silence to add. See
2124 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2125 for the accepted syntax. Used only if set to non-zero value.
2126
2127 @item whole_dur
2128 Specify the minimum total duration in the output audio stream. See
2129 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2130 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
2131 the input audio length, silence is added to the end, until the value is reached.
2132 This option is mutually exclusive with @option{pad_dur}
2133 @end table
2134
2135 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
2136 nor @option{whole_dur} option is set, the filter will add silence to the end of
2137 the input stream indefinitely.
2138
2139 @subsection Examples
2140
2141 @itemize
2142 @item
2143 Add 1024 samples of silence to the end of the input:
2144 @example
2145 apad=pad_len=1024
2146 @end example
2147
2148 @item
2149 Make sure the audio output will contain at least 10000 samples, pad
2150 the input with silence if required:
2151 @example
2152 apad=whole_len=10000
2153 @end example
2154
2155 @item
2156 Use @command{ffmpeg} to pad the audio input with silence, so that the
2157 video stream will always result the shortest and will be converted
2158 until the end in the output file when using the @option{shortest}
2159 option:
2160 @example
2161 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
2162 @end example
2163 @end itemize
2164
2165 @section aphaser
2166 Add a phasing effect to the input audio.
2167
2168 A phaser filter creates series of peaks and troughs in the frequency spectrum.
2169 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
2170
2171 A description of the accepted parameters follows.
2172
2173 @table @option
2174 @item in_gain
2175 Set input gain. Default is 0.4.
2176
2177 @item out_gain
2178 Set output gain. Default is 0.74
2179
2180 @item delay
2181 Set delay in milliseconds. Default is 3.0.
2182
2183 @item decay
2184 Set decay. Default is 0.4.
2185
2186 @item speed
2187 Set modulation speed in Hz. Default is 0.5.
2188
2189 @item type
2190 Set modulation type. Default is triangular.
2191
2192 It accepts the following values:
2193 @table @samp
2194 @item triangular, t
2195 @item sinusoidal, s
2196 @end table
2197 @end table
2198
2199 @section aphaseshift
2200 Apply phase shift to input audio samples.
2201
2202 The filter accepts the following options:
2203
2204 @table @option
2205 @item shift
2206 Specify phase shift. Allowed range is from -1.0 to 1.0.
2207 Default value is 0.0.
2208
2209 @item level
2210 Set output gain applied to final output. Allowed range is from 0.0 to 1.0.
2211 Default value is 1.0.
2212 @end table
2213
2214 @subsection Commands
2215
2216 This filter supports the all above options as @ref{commands}.
2217
2218 @section apulsator
2219
2220 Audio pulsator is something between an autopanner and a tremolo.
2221 But it can produce funny stereo effects as well. Pulsator changes the volume
2222 of the left and right channel based on a LFO (low frequency oscillator) with
2223 different waveforms and shifted phases.
2224 This filter have the ability to define an offset between left and right
2225 channel. An offset of 0 means that both LFO shapes match each other.
2226 The left and right channel are altered equally - a conventional tremolo.
2227 An offset of 50% means that the shape of the right channel is exactly shifted
2228 in phase (or moved backwards about half of the frequency) - pulsator acts as
2229 an autopanner. At 1 both curves match again. Every setting in between moves the
2230 phase shift gapless between all stages and produces some "bypassing" sounds with
2231 sine and triangle waveforms. The more you set the offset near 1 (starting from
2232 the 0.5) the faster the signal passes from the left to the right speaker.
2233
2234 The filter accepts the following options:
2235
2236 @table @option
2237 @item level_in
2238 Set input gain. By default it is 1. Range is [0.015625 - 64].
2239
2240 @item level_out
2241 Set output gain. By default it is 1. Range is [0.015625 - 64].
2242
2243 @item mode
2244 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2245 sawup or sawdown. Default is sine.
2246
2247 @item amount
2248 Set modulation. Define how much of original signal is affected by the LFO.
2249
2250 @item offset_l
2251 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2252
2253 @item offset_r
2254 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2255
2256 @item width
2257 Set pulse width. Default is 1. Allowed range is [0 - 2].
2258
2259 @item timing
2260 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2261
2262 @item bpm
2263 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2264 is set to bpm.
2265
2266 @item ms
2267 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2268 is set to ms.
2269
2270 @item hz
2271 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2272 if timing is set to hz.
2273 @end table
2274
2275 @anchor{aresample}
2276 @section aresample
2277
2278 Resample the input audio to the specified parameters, using the
2279 libswresample library. If none are specified then the filter will
2280 automatically convert between its input and output.
2281
2282 This filter is also able to stretch/squeeze the audio data to make it match
2283 the timestamps or to inject silence / cut out audio to make it match the
2284 timestamps, do a combination of both or do neither.
2285
2286 The filter accepts the syntax
2287 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2288 expresses a sample rate and @var{resampler_options} is a list of
2289 @var{key}=@var{value} pairs, separated by ":". See the
2290 @ref{Resampler Options,,"Resampler Options" section in the
2291 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2292 for the complete list of supported options.
2293
2294 @subsection Examples
2295
2296 @itemize
2297 @item
2298 Resample the input audio to 44100Hz:
2299 @example
2300 aresample=44100
2301 @end example
2302
2303 @item
2304 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2305 samples per second compensation:
2306 @example
2307 aresample=async=1000
2308 @end example
2309 @end itemize
2310
2311 @section areverse
2312
2313 Reverse an audio clip.
2314
2315 Warning: This filter requires memory to buffer the entire clip, so trimming
2316 is suggested.
2317
2318 @subsection Examples
2319
2320 @itemize
2321 @item
2322 Take the first 5 seconds of a clip, and reverse it.
2323 @example
2324 atrim=end=5,areverse
2325 @end example
2326 @end itemize
2327
2328 @section arnndn
2329
2330 Reduce noise from speech using Recurrent Neural Networks.
2331
2332 This filter accepts the following options:
2333
2334 @table @option
2335 @item model, m
2336 Set train model file to load. This option is always required.
2337
2338 @item mix
2339 Set how much to mix filtered samples into final output.
2340 Allowed range is from -1 to 1. Default value is 1.
2341 Negative values are special, they set how much to keep filtered noise
2342 in the final filter output. Set this option to -1 to hear actual
2343 noise removed from input signal.
2344 @end table
2345
2346 @section asetnsamples
2347
2348 Set the number of samples per each output audio frame.
2349
2350 The last output packet may contain a different number of samples, as
2351 the filter will flush all the remaining samples when the input audio
2352 signals its end.
2353
2354 The filter accepts the following options:
2355
2356 @table @option
2357
2358 @item nb_out_samples, n
2359 Set the number of frames per each output audio frame. The number is
2360 intended as the number of samples @emph{per each channel}.
2361 Default value is 1024.
2362
2363 @item pad, p
2364 If set to 1, the filter will pad the last audio frame with zeroes, so
2365 that the last frame will contain the same number of samples as the
2366 previous ones. Default value is 1.
2367 @end table
2368
2369 For example, to set the number of per-frame samples to 1234 and
2370 disable padding for the last frame, use:
2371 @example
2372 asetnsamples=n=1234:p=0
2373 @end example
2374
2375 @section asetrate
2376
2377 Set the sample rate without altering the PCM data.
2378 This will result in a change of speed and pitch.
2379
2380 The filter accepts the following options:
2381
2382 @table @option
2383 @item sample_rate, r
2384 Set the output sample rate. Default is 44100 Hz.
2385 @end table
2386
2387 @section ashowinfo
2388
2389 Show a line containing various information for each input audio frame.
2390 The input audio is not modified.
2391
2392 The shown line contains a sequence of key/value pairs of the form
2393 @var{key}:@var{value}.
2394
2395 The following values are shown in the output:
2396
2397 @table @option
2398 @item n
2399 The (sequential) number of the input frame, starting from 0.
2400
2401 @item pts
2402 The presentation timestamp of the input frame, in time base units; the time base
2403 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2404
2405 @item pts_time
2406 The presentation timestamp of the input frame in seconds.
2407
2408 @item pos
2409 position of the frame in the input stream, -1 if this information in
2410 unavailable and/or meaningless (for example in case of synthetic audio)
2411
2412 @item fmt
2413 The sample format.
2414
2415 @item chlayout
2416 The channel layout.
2417
2418 @item rate
2419 The sample rate for the audio frame.
2420
2421 @item nb_samples
2422 The number of samples (per channel) in the frame.
2423
2424 @item checksum
2425 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2426 audio, the data is treated as if all the planes were concatenated.
2427
2428 @item plane_checksums
2429 A list of Adler-32 checksums for each data plane.
2430 @end table
2431
2432 @section asoftclip
2433 Apply audio soft clipping.
2434
2435 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2436 along a smooth curve, rather than the abrupt shape of hard-clipping.
2437
2438 This filter accepts the following options:
2439
2440 @table @option
2441 @item type
2442 Set type of soft-clipping.
2443
2444 It accepts the following values:
2445 @table @option
2446 @item hard
2447 @item tanh
2448 @item atan
2449 @item cubic
2450 @item exp
2451 @item alg
2452 @item quintic
2453 @item sin
2454 @item erf
2455 @end table
2456
2457 @item threshold
2458 Set threshold from where to start clipping. Default value is 0dB or 1.
2459
2460 @item output
2461 Set gain applied to output. Default value is 0dB or 1.
2462
2463 @item param
2464 Set additional parameter which controls sigmoid function.
2465
2466 @item oversample
2467 Set oversampling factor.
2468 @end table
2469
2470 @subsection Commands
2471
2472 This filter supports the all above options as @ref{commands}.
2473
2474 @section asr
2475 Automatic Speech Recognition
2476
2477 This filter uses PocketSphinx for speech recognition. To enable
2478 compilation of this filter, you need to configure FFmpeg with
2479 @code{--enable-pocketsphinx}.
2480
2481 It accepts the following options:
2482
2483 @table @option
2484 @item rate
2485 Set sampling rate of input audio. Defaults is @code{16000}.
2486 This need to match speech models, otherwise one will get poor results.
2487
2488 @item hmm
2489 Set dictionary containing acoustic model files.
2490
2491 @item dict
2492 Set pronunciation dictionary.
2493
2494 @item lm
2495 Set language model file.
2496
2497 @item lmctl
2498 Set language model set.
2499
2500 @item lmname
2501 Set which language model to use.
2502
2503 @item logfn
2504 Set output for log messages.
2505 @end table
2506
2507 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2508
2509 @anchor{astats}
2510 @section astats
2511
2512 Display time domain statistical information about the audio channels.
2513 Statistics are calculated and displayed for each audio channel and,
2514 where applicable, an overall figure is also given.
2515
2516 It accepts the following option:
2517 @table @option
2518 @item length
2519 Short window length in seconds, used for peak and trough RMS measurement.
2520 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2521
2522 @item metadata
2523
2524 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2525 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2526 disabled.
2527
2528 Available keys for each channel are:
2529 DC_offset
2530 Min_level
2531 Max_level
2532 Min_difference
2533 Max_difference
2534 Mean_difference
2535 RMS_difference
2536 Peak_level
2537 RMS_peak
2538 RMS_trough
2539 Crest_factor
2540 Flat_factor
2541 Peak_count
2542 Noise_floor
2543 Noise_floor_count
2544 Bit_depth
2545 Dynamic_range
2546 Zero_crossings
2547 Zero_crossings_rate
2548 Number_of_NaNs
2549 Number_of_Infs
2550 Number_of_denormals
2551
2552 and for Overall:
2553 DC_offset
2554 Min_level
2555 Max_level
2556 Min_difference
2557 Max_difference
2558 Mean_difference
2559 RMS_difference
2560 Peak_level
2561 RMS_level
2562 RMS_peak
2563 RMS_trough
2564 Flat_factor
2565 Peak_count
2566 Noise_floor
2567 Noise_floor_count
2568 Bit_depth
2569 Number_of_samples
2570 Number_of_NaNs
2571 Number_of_Infs
2572 Number_of_denormals
2573
2574 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2575 this @code{lavfi.astats.Overall.Peak_count}.
2576
2577 For description what each key means read below.
2578
2579 @item reset
2580 Set number of frame after which stats are going to be recalculated.
2581 Default is disabled.
2582
2583 @item measure_perchannel
2584 Select the entries which need to be measured per channel. The metadata keys can
2585 be used as flags, default is @option{all} which measures everything.
2586 @option{none} disables all per channel measurement.
2587
2588 @item measure_overall
2589 Select the entries which need to be measured overall. The metadata keys can
2590 be used as flags, default is @option{all} which measures everything.
2591 @option{none} disables all overall measurement.
2592
2593 @end table
2594
2595 A description of each shown parameter follows:
2596
2597 @table @option
2598 @item DC offset
2599 Mean amplitude displacement from zero.
2600
2601 @item Min level
2602 Minimal sample level.
2603
2604 @item Max level
2605 Maximal sample level.
2606
2607 @item Min difference
2608 Minimal difference between two consecutive samples.
2609
2610 @item Max difference
2611 Maximal difference between two consecutive samples.
2612
2613 @item Mean difference
2614 Mean difference between two consecutive samples.
2615 The average of each difference between two consecutive samples.
2616
2617 @item RMS difference
2618 Root Mean Square difference between two consecutive samples.
2619
2620 @item Peak level dB
2621 @item RMS level dB
2622 Standard peak and RMS level measured in dBFS.
2623
2624 @item RMS peak dB
2625 @item RMS trough dB
2626 Peak and trough values for RMS level measured over a short window.
2627
2628 @item Crest factor
2629 Standard ratio of peak to RMS level (note: not in dB).
2630
2631 @item Flat factor
2632 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2633 (i.e. either @var{Min level} or @var{Max level}).
2634
2635 @item Peak count
2636 Number of occasions (not the number of samples) that the signal attained either
2637 @var{Min level} or @var{Max level}.
2638
2639 @item Noise floor dB
2640 Minimum local peak measured in dBFS over a short window.
2641
2642 @item Noise floor count
2643 Number of occasions (not the number of samples) that the signal attained
2644 @var{Noise floor}.
2645
2646 @item Bit depth
2647 Overall bit depth of audio. Number of bits used for each sample.
2648
2649 @item Dynamic range
2650 Measured dynamic range of audio in dB.
2651
2652 @item Zero crossings
2653 Number of points where the waveform crosses the zero level axis.
2654
2655 @item Zero crossings rate
2656 Rate of Zero crossings and number of audio samples.
2657 @end table
2658
2659 @section asubboost
2660 Boost subwoofer frequencies.
2661
2662 The filter accepts the following options:
2663
2664 @table @option
2665 @item dry
2666 Set dry gain, how much of original signal is kept. Allowed range is from 0 to 1.
2667 Default value is 0.7.
2668
2669 @item wet
2670 Set wet gain, how much of filtered signal is kept. Allowed range is from 0 to 1.
2671 Default value is 0.7.
2672
2673 @item decay
2674 Set delay line decay gain value. Allowed range is from 0 to 1.
2675 Default value is 0.7.
2676
2677 @item feedback
2678 Set delay line feedback gain value. Allowed range is from 0 to 1.
2679 Default value is 0.9.
2680
2681 @item cutoff
2682 Set cutoff frequency in Hertz. Allowed range is 50 to 900.
2683 Default value is 100.
2684
2685 @item slope
2686 Set slope amount for cutoff frequency. Allowed range is 0.0001 to 1.
2687 Default value is 0.5.
2688
2689 @item delay
2690 Set delay. Allowed range is from 1 to 100.
2691 Default value is 20.
2692 @end table
2693
2694 @subsection Commands
2695
2696 This filter supports the all above options as @ref{commands}.
2697
2698 @section asubcut
2699 Cut subwoofer frequencies.
2700
2701 This filter allows to set custom, steeper
2702 roll off than highpass filter, and thus is able to more attenuate
2703 frequency content in stop-band.
2704
2705 The filter accepts the following options:
2706
2707 @table @option
2708 @item cutoff
2709 Set cutoff frequency in Hertz. Allowed range is 2 to 200.
2710 Default value is 20.
2711
2712 @item order
2713 Set filter order. Available values are from 3 to 20.
2714 Default value is 10.
2715
2716 @item level
2717 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2718 @end table
2719
2720 @subsection Commands
2721
2722 This filter supports the all above options as @ref{commands}.
2723
2724 @section asupercut
2725 Cut super frequencies.
2726
2727 The filter accepts the following options:
2728
2729 @table @option
2730 @item cutoff
2731 Set cutoff frequency in Hertz. Allowed range is 20000 to 192000.
2732 Default value is 20000.
2733
2734 @item order
2735 Set filter order. Available values are from 3 to 20.
2736 Default value is 10.
2737
2738 @item level
2739 Set input gain level. Allowed range is from 0 to 1. Default value is 1.
2740 @end table
2741
2742 @subsection Commands
2743
2744 This filter supports the all above options as @ref{commands}.
2745
2746 @section asuperpass
2747 Apply high order Butterworth band-pass filter.
2748
2749 The filter accepts the following options:
2750
2751 @table @option
2752 @item centerf
2753 Set center frequency in Hertz. Allowed range is 2 to 999999.
2754 Default value is 1000.
2755
2756 @item order
2757 Set filter order. Available values are from 4 to 20.
2758 Default value is 4.
2759
2760 @item qfactor
2761 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2762
2763 @item level
2764 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2765 @end table
2766
2767 @subsection Commands
2768
2769 This filter supports the all above options as @ref{commands}.
2770
2771 @section asuperstop
2772 Apply high order Butterworth band-stop filter.
2773
2774 The filter accepts the following options:
2775
2776 @table @option
2777 @item centerf
2778 Set center frequency in Hertz. Allowed range is 2 to 999999.
2779 Default value is 1000.
2780
2781 @item order
2782 Set filter order. Available values are from 4 to 20.
2783 Default value is 4.
2784
2785 @item qfactor
2786 Set Q-factor. Allowed range is from 0.01 to 100. Default value is 1.
2787
2788 @item level
2789 Set input gain level. Allowed range is from 0 to 2. Default value is 1.
2790 @end table
2791
2792 @subsection Commands
2793
2794 This filter supports the all above options as @ref{commands}.
2795
2796 @section atempo
2797
2798 Adjust audio tempo.
2799
2800 The filter accepts exactly one parameter, the audio tempo. If not
2801 specified then the filter will assume nominal 1.0 tempo. Tempo must
2802 be in the [0.5, 100.0] range.
2803
2804 Note that tempo greater than 2 will skip some samples rather than
2805 blend them in.  If for any reason this is a concern it is always
2806 possible to daisy-chain several instances of atempo to achieve the
2807 desired product tempo.
2808
2809 @subsection Examples
2810
2811 @itemize
2812 @item
2813 Slow down audio to 80% tempo:
2814 @example
2815 atempo=0.8
2816 @end example
2817
2818 @item
2819 To speed up audio to 300% tempo:
2820 @example
2821 atempo=3
2822 @end example
2823
2824 @item
2825 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2826 @example
2827 atempo=sqrt(3),atempo=sqrt(3)
2828 @end example
2829 @end itemize
2830
2831 @subsection Commands
2832
2833 This filter supports the following commands:
2834 @table @option
2835 @item tempo
2836 Change filter tempo scale factor.
2837 Syntax for the command is : "@var{tempo}"
2838 @end table
2839
2840 @section atrim
2841
2842 Trim the input so that the output contains one continuous subpart of the input.
2843
2844 It accepts the following parameters:
2845 @table @option
2846 @item start
2847 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2848 sample with the timestamp @var{start} will be the first sample in the output.
2849
2850 @item end
2851 Specify time of the first audio sample that will be dropped, i.e. the
2852 audio sample immediately preceding the one with the timestamp @var{end} will be
2853 the last sample in the output.
2854
2855 @item start_pts
2856 Same as @var{start}, except this option sets the start timestamp in samples
2857 instead of seconds.
2858
2859 @item end_pts
2860 Same as @var{end}, except this option sets the end timestamp in samples instead
2861 of seconds.
2862
2863 @item duration
2864 The maximum duration of the output in seconds.
2865
2866 @item start_sample
2867 The number of the first sample that should be output.
2868
2869 @item end_sample
2870 The number of the first sample that should be dropped.
2871 @end table
2872
2873 @option{start}, @option{end}, and @option{duration} are expressed as time
2874 duration specifications; see
2875 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2876
2877 Note that the first two sets of the start/end options and the @option{duration}
2878 option look at the frame timestamp, while the _sample options simply count the
2879 samples that pass through the filter. So start/end_pts and start/end_sample will
2880 give different results when the timestamps are wrong, inexact or do not start at
2881 zero. Also note that this filter does not modify the timestamps. If you wish
2882 to have the output timestamps start at zero, insert the asetpts filter after the
2883 atrim filter.
2884
2885 If multiple start or end options are set, this filter tries to be greedy and
2886 keep all samples that match at least one of the specified constraints. To keep
2887 only the part that matches all the constraints at once, chain multiple atrim
2888 filters.
2889
2890 The defaults are such that all the input is kept. So it is possible to set e.g.
2891 just the end values to keep everything before the specified time.
2892
2893 Examples:
2894 @itemize
2895 @item
2896 Drop everything except the second minute of input:
2897 @example
2898 ffmpeg -i INPUT -af atrim=60:120
2899 @end example
2900
2901 @item
2902 Keep only the first 1000 samples:
2903 @example
2904 ffmpeg -i INPUT -af atrim=end_sample=1000
2905 @end example
2906
2907 @end itemize
2908
2909 @section axcorrelate
2910 Calculate normalized cross-correlation between two input audio streams.
2911
2912 Resulted samples are always between -1 and 1 inclusive.
2913 If result is 1 it means two input samples are highly correlated in that selected segment.
2914 Result 0 means they are not correlated at all.
2915 If result is -1 it means two input samples are out of phase, which means they cancel each
2916 other.
2917
2918 The filter accepts the following options:
2919
2920 @table @option
2921 @item size
2922 Set size of segment over which cross-correlation is calculated.
2923 Default is 256. Allowed range is from 2 to 131072.
2924
2925 @item algo
2926 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2927 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2928 are always zero and thus need much less calculations to make.
2929 This is generally not true, but is valid for typical audio streams.
2930 @end table
2931
2932 @subsection Examples
2933
2934 @itemize
2935 @item
2936 Calculate correlation between channels in stereo audio stream:
2937 @example
2938 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2939 @end example
2940 @end itemize
2941
2942 @section bandpass
2943
2944 Apply a two-pole Butterworth band-pass filter with central
2945 frequency @var{frequency}, and (3dB-point) band-width width.
2946 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2947 instead of the default: constant 0dB peak gain.
2948 The filter roll off at 6dB per octave (20dB per decade).
2949
2950 The filter accepts the following options:
2951
2952 @table @option
2953 @item frequency, f
2954 Set the filter's central frequency. Default is @code{3000}.
2955
2956 @item csg
2957 Constant skirt gain if set to 1. Defaults to 0.
2958
2959 @item width_type, t
2960 Set method to specify band-width of filter.
2961 @table @option
2962 @item h
2963 Hz
2964 @item q
2965 Q-Factor
2966 @item o
2967 octave
2968 @item s
2969 slope
2970 @item k
2971 kHz
2972 @end table
2973
2974 @item width, w
2975 Specify the band-width of a filter in width_type units.
2976
2977 @item mix, m
2978 How much to use filtered signal in output. Default is 1.
2979 Range is between 0 and 1.
2980
2981 @item channels, c
2982 Specify which channels to filter, by default all available are filtered.
2983
2984 @item normalize, n
2985 Normalize biquad coefficients, by default is disabled.
2986 Enabling it will normalize magnitude response at DC to 0dB.
2987
2988 @item transform, a
2989 Set transform type of IIR filter.
2990 @table @option
2991 @item di
2992 @item dii
2993 @item tdii
2994 @item latt
2995 @end table
2996
2997 @item precision, r
2998 Set precison of filtering.
2999 @table @option
3000 @item auto
3001 Pick automatic sample format depending on surround filters.
3002 @item s16
3003 Always use signed 16-bit.
3004 @item s32
3005 Always use signed 32-bit.
3006 @item f32
3007 Always use float 32-bit.
3008 @item f64
3009 Always use float 64-bit.
3010 @end table
3011 @end table
3012
3013 @subsection Commands
3014
3015 This filter supports the following commands:
3016 @table @option
3017 @item frequency, f
3018 Change bandpass frequency.
3019 Syntax for the command is : "@var{frequency}"
3020
3021 @item width_type, t
3022 Change bandpass width_type.
3023 Syntax for the command is : "@var{width_type}"
3024
3025 @item width, w
3026 Change bandpass width.
3027 Syntax for the command is : "@var{width}"
3028
3029 @item mix, m
3030 Change bandpass mix.
3031 Syntax for the command is : "@var{mix}"
3032 @end table
3033
3034 @section bandreject
3035
3036 Apply a two-pole Butterworth band-reject filter with central
3037 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
3038 The filter roll off at 6dB per octave (20dB per decade).
3039
3040 The filter accepts the following options:
3041
3042 @table @option
3043 @item frequency, f
3044 Set the filter's central frequency. Default is @code{3000}.
3045
3046 @item width_type, t
3047 Set method to specify band-width of filter.
3048 @table @option
3049 @item h
3050 Hz
3051 @item q
3052 Q-Factor
3053 @item o
3054 octave
3055 @item s
3056 slope
3057 @item k
3058 kHz
3059 @end table
3060
3061 @item width, w
3062 Specify the band-width of a filter in width_type units.
3063
3064 @item mix, m
3065 How much to use filtered signal in output. Default is 1.
3066 Range is between 0 and 1.
3067
3068 @item channels, c
3069 Specify which channels to filter, by default all available are filtered.
3070
3071 @item normalize, n
3072 Normalize biquad coefficients, by default is disabled.
3073 Enabling it will normalize magnitude response at DC to 0dB.
3074
3075 @item transform, a
3076 Set transform type of IIR filter.
3077 @table @option
3078 @item di
3079 @item dii
3080 @item tdii
3081 @item latt
3082 @end table
3083
3084 @item precision, r
3085 Set precison of filtering.
3086 @table @option
3087 @item auto
3088 Pick automatic sample format depending on surround filters.
3089 @item s16
3090 Always use signed 16-bit.
3091 @item s32
3092 Always use signed 32-bit.
3093 @item f32
3094 Always use float 32-bit.
3095 @item f64
3096 Always use float 64-bit.
3097 @end table
3098 @end table
3099
3100 @subsection Commands
3101
3102 This filter supports the following commands:
3103 @table @option
3104 @item frequency, f
3105 Change bandreject frequency.
3106 Syntax for the command is : "@var{frequency}"
3107
3108 @item width_type, t
3109 Change bandreject width_type.
3110 Syntax for the command is : "@var{width_type}"
3111
3112 @item width, w
3113 Change bandreject width.
3114 Syntax for the command is : "@var{width}"
3115
3116 @item mix, m
3117 Change bandreject mix.
3118 Syntax for the command is : "@var{mix}"
3119 @end table
3120
3121 @section bass, lowshelf
3122
3123 Boost or cut the bass (lower) frequencies of the audio using a two-pole
3124 shelving filter with a response similar to that of a standard
3125 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3126
3127 The filter accepts the following options:
3128
3129 @table @option
3130 @item gain, g
3131 Give the gain at 0 Hz. Its useful range is about -20
3132 (for a large cut) to +20 (for a large boost).
3133 Beware of clipping when using a positive gain.
3134
3135 @item frequency, f
3136 Set the filter's central frequency and so can be used
3137 to extend or reduce the frequency range to be boosted or cut.
3138 The default value is @code{100} Hz.
3139
3140 @item width_type, t
3141 Set method to specify band-width of filter.
3142 @table @option
3143 @item h
3144 Hz
3145 @item q
3146 Q-Factor
3147 @item o
3148 octave
3149 @item s
3150 slope
3151 @item k
3152 kHz
3153 @end table
3154
3155 @item width, w
3156 Determine how steep is the filter's shelf transition.
3157
3158 @item poles, p
3159 Set number of poles. Default is 2.
3160
3161 @item mix, m
3162 How much to use filtered signal in output. Default is 1.
3163 Range is between 0 and 1.
3164
3165 @item channels, c
3166 Specify which channels to filter, by default all available are filtered.
3167
3168 @item normalize, n
3169 Normalize biquad coefficients, by default is disabled.
3170 Enabling it will normalize magnitude response at DC to 0dB.
3171
3172 @item transform, a
3173 Set transform type of IIR filter.
3174 @table @option
3175 @item di
3176 @item dii
3177 @item tdii
3178 @item latt
3179 @end table
3180
3181 @item precision, r
3182 Set precison of filtering.
3183 @table @option
3184 @item auto
3185 Pick automatic sample format depending on surround filters.
3186 @item s16
3187 Always use signed 16-bit.
3188 @item s32
3189 Always use signed 32-bit.
3190 @item f32
3191 Always use float 32-bit.
3192 @item f64
3193 Always use float 64-bit.
3194 @end table
3195 @end table
3196
3197 @subsection Commands
3198
3199 This filter supports the following commands:
3200 @table @option
3201 @item frequency, f
3202 Change bass frequency.
3203 Syntax for the command is : "@var{frequency}"
3204
3205 @item width_type, t
3206 Change bass width_type.
3207 Syntax for the command is : "@var{width_type}"
3208
3209 @item width, w
3210 Change bass width.
3211 Syntax for the command is : "@var{width}"
3212
3213 @item gain, g
3214 Change bass gain.
3215 Syntax for the command is : "@var{gain}"
3216
3217 @item mix, m
3218 Change bass mix.
3219 Syntax for the command is : "@var{mix}"
3220 @end table
3221
3222 @section biquad
3223
3224 Apply a biquad IIR filter with the given coefficients.
3225 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
3226 are the numerator and denominator coefficients respectively.
3227 and @var{channels}, @var{c} specify which channels to filter, by default all
3228 available are filtered.
3229
3230 @subsection Commands
3231
3232 This filter supports the following commands:
3233 @table @option
3234 @item a0
3235 @item a1
3236 @item a2
3237 @item b0
3238 @item b1
3239 @item b2
3240 Change biquad parameter.
3241 Syntax for the command is : "@var{value}"
3242
3243 @item mix, m
3244 How much to use filtered signal in output. Default is 1.
3245 Range is between 0 and 1.
3246
3247 @item channels, c
3248 Specify which channels to filter, by default all available are filtered.
3249
3250 @item normalize, n
3251 Normalize biquad coefficients, by default is disabled.
3252 Enabling it will normalize magnitude response at DC to 0dB.
3253
3254 @item transform, a
3255 Set transform type of IIR filter.
3256 @table @option
3257 @item di
3258 @item dii
3259 @item tdii
3260 @item latt
3261 @end table
3262
3263 @item precision, r
3264 Set precison of filtering.
3265 @table @option
3266 @item auto
3267 Pick automatic sample format depending on surround filters.
3268 @item s16
3269 Always use signed 16-bit.
3270 @item s32
3271 Always use signed 32-bit.
3272 @item f32
3273 Always use float 32-bit.
3274 @item f64
3275 Always use float 64-bit.
3276 @end table
3277 @end table
3278
3279 @section bs2b
3280 Bauer stereo to binaural transformation, which improves headphone listening of
3281 stereo audio records.
3282
3283 To enable compilation of this filter you need to configure FFmpeg with
3284 @code{--enable-libbs2b}.
3285
3286 It accepts the following parameters:
3287 @table @option
3288
3289 @item profile
3290 Pre-defined crossfeed level.
3291 @table @option
3292
3293 @item default
3294 Default level (fcut=700, feed=50).
3295
3296 @item cmoy
3297 Chu Moy circuit (fcut=700, feed=60).
3298
3299 @item jmeier
3300 Jan Meier circuit (fcut=650, feed=95).
3301
3302 @end table
3303
3304 @item fcut
3305 Cut frequency (in Hz).
3306
3307 @item feed
3308 Feed level (in Hz).
3309
3310 @end table
3311
3312 @section channelmap
3313
3314 Remap input channels to new locations.
3315
3316 It accepts the following parameters:
3317 @table @option
3318 @item map
3319 Map channels from input to output. The argument is a '|'-separated list of
3320 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
3321 @var{in_channel} form. @var{in_channel} can be either the name of the input
3322 channel (e.g. FL for front left) or its index in the input channel layout.
3323 @var{out_channel} is the name of the output channel or its index in the output
3324 channel layout. If @var{out_channel} is not given then it is implicitly an
3325 index, starting with zero and increasing by one for each mapping.
3326
3327 @item channel_layout
3328 The channel layout of the output stream.
3329 @end table
3330
3331 If no mapping is present, the filter will implicitly map input channels to
3332 output channels, preserving indices.
3333
3334 @subsection Examples
3335
3336 @itemize
3337 @item
3338 For example, assuming a 5.1+downmix input MOV file,
3339 @example
3340 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
3341 @end example
3342 will create an output WAV file tagged as stereo from the downmix channels of
3343 the input.
3344
3345 @item
3346 To fix a 5.1 WAV improperly encoded in AAC's native channel order
3347 @example
3348 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
3349 @end example
3350 @end itemize
3351
3352 @section channelsplit
3353
3354 Split each channel from an input audio stream into a separate output stream.
3355
3356 It accepts the following parameters:
3357 @table @option
3358 @item channel_layout
3359 The channel layout of the input stream. The default is "stereo".
3360 @item channels
3361 A channel layout describing the channels to be extracted as separate output streams
3362 or "all" to extract each input channel as a separate stream. The default is "all".
3363
3364 Choosing channels not present in channel layout in the input will result in an error.
3365 @end table
3366
3367 @subsection Examples
3368
3369 @itemize
3370 @item
3371 For example, assuming a stereo input MP3 file,
3372 @example
3373 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
3374 @end example
3375 will create an output Matroska file with two audio streams, one containing only
3376 the left channel and the other the right channel.
3377
3378 @item
3379 Split a 5.1 WAV file into per-channel files:
3380 @example
3381 ffmpeg -i in.wav -filter_complex
3382 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
3383 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
3384 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
3385 side_right.wav
3386 @end example
3387
3388 @item
3389 Extract only LFE from a 5.1 WAV file:
3390 @example
3391 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
3392 -map '[LFE]' lfe.wav
3393 @end example
3394 @end itemize
3395
3396 @section chorus
3397 Add a chorus effect to the audio.
3398
3399 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
3400
3401 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
3402 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
3403 The modulation depth defines the range the modulated delay is played before or after
3404 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
3405 sound tuned around the original one, like in a chorus where some vocals are slightly
3406 off key.
3407
3408 It accepts the following parameters:
3409 @table @option
3410 @item in_gain
3411 Set input gain. Default is 0.4.
3412
3413 @item out_gain
3414 Set output gain. Default is 0.4.
3415
3416 @item delays
3417 Set delays. A typical delay is around 40ms to 60ms.
3418
3419 @item decays
3420 Set decays.
3421
3422 @item speeds
3423 Set speeds.
3424
3425 @item depths
3426 Set depths.
3427 @end table
3428
3429 @subsection Examples
3430
3431 @itemize
3432 @item
3433 A single delay:
3434 @example
3435 chorus=0.7:0.9:55:0.4:0.25:2
3436 @end example
3437
3438 @item
3439 Two delays:
3440 @example
3441 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
3442 @end example
3443
3444 @item
3445 Fuller sounding chorus with three delays:
3446 @example
3447 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
3448 @end example
3449 @end itemize
3450
3451 @section compand
3452 Compress or expand the audio's dynamic range.
3453
3454 It accepts the following parameters:
3455
3456 @table @option
3457
3458 @item attacks
3459 @item decays
3460 A list of times in seconds for each channel over which the instantaneous level
3461 of the input signal is averaged to determine its volume. @var{attacks} refers to
3462 increase of volume and @var{decays} refers to decrease of volume. For most
3463 situations, the attack time (response to the audio getting louder) should be
3464 shorter than the decay time, because the human ear is more sensitive to sudden
3465 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3466 a typical value for decay is 0.8 seconds.
3467 If specified number of attacks & decays is lower than number of channels, the last
3468 set attack/decay will be used for all remaining channels.
3469
3470 @item points
3471 A list of points for the transfer function, specified in dB relative to the
3472 maximum possible signal amplitude. Each key points list must be defined using
3473 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3474 @code{x0/y0 x1/y1 x2/y2 ....}
3475
3476 The input values must be in strictly increasing order but the transfer function
3477 does not have to be monotonically rising. The point @code{0/0} is assumed but
3478 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3479 function are @code{-70/-70|-60/-20|1/0}.
3480
3481 @item soft-knee
3482 Set the curve radius in dB for all joints. It defaults to 0.01.
3483
3484 @item gain
3485 Set the additional gain in dB to be applied at all points on the transfer
3486 function. This allows for easy adjustment of the overall gain.
3487 It defaults to 0.
3488
3489 @item volume
3490 Set an initial volume, in dB, to be assumed for each channel when filtering
3491 starts. This permits the user to supply a nominal level initially, so that, for
3492 example, a very large gain is not applied to initial signal levels before the
3493 companding has begun to operate. A typical value for audio which is initially
3494 quiet is -90 dB. It defaults to 0.
3495
3496 @item delay
3497 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3498 delayed before being fed to the volume adjuster. Specifying a delay
3499 approximately equal to the attack/decay times allows the filter to effectively
3500 operate in predictive rather than reactive mode. It defaults to 0.
3501
3502 @end table
3503
3504 @subsection Examples
3505
3506 @itemize
3507 @item
3508 Make music with both quiet and loud passages suitable for listening to in a
3509 noisy environment:
3510 @example
3511 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3512 @end example
3513
3514 Another example for audio with whisper and explosion parts:
3515 @example
3516 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3517 @end example
3518
3519 @item
3520 A noise gate for when the noise is at a lower level than the signal:
3521 @example
3522 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3523 @end example
3524
3525 @item
3526 Here is another noise gate, this time for when the noise is at a higher level
3527 than the signal (making it, in some ways, similar to squelch):
3528 @example
3529 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3530 @end example
3531
3532 @item
3533 2:1 compression starting at -6dB:
3534 @example
3535 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3536 @end example
3537
3538 @item
3539 2:1 compression starting at -9dB:
3540 @example
3541 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3542 @end example
3543
3544 @item
3545 2:1 compression starting at -12dB:
3546 @example
3547 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3548 @end example
3549
3550 @item
3551 2:1 compression starting at -18dB:
3552 @example
3553 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3554 @end example
3555
3556 @item
3557 3:1 compression starting at -15dB:
3558 @example
3559 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3560 @end example
3561
3562 @item
3563 Compressor/Gate:
3564 @example
3565 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3566 @end example
3567
3568 @item
3569 Expander:
3570 @example
3571 compand=attacks=0:points=-80/-169|-54/-80|-49.5/-64.6|-41.1/-41.1|-25.8/-15|-10.8/-4.5|0/0|20/8.3
3572 @end example
3573
3574 @item
3575 Hard limiter at -6dB:
3576 @example
3577 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3578 @end example
3579
3580 @item
3581 Hard limiter at -12dB:
3582 @example
3583 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3584 @end example
3585
3586 @item
3587 Hard noise gate at -35 dB:
3588 @example
3589 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3590 @end example
3591
3592 @item
3593 Soft limiter:
3594 @example
3595 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3596 @end example
3597 @end itemize
3598
3599 @section compensationdelay
3600
3601 Compensation Delay Line is a metric based delay to compensate differing
3602 positions of microphones or speakers.
3603
3604 For example, you have recorded guitar with two microphones placed in
3605 different locations. Because the front of sound wave has fixed speed in
3606 normal conditions, the phasing of microphones can vary and depends on
3607 their location and interposition. The best sound mix can be achieved when
3608 these microphones are in phase (synchronized). Note that a distance of
3609 ~30 cm between microphones makes one microphone capture the signal in
3610 antiphase to the other microphone. That makes the final mix sound moody.
3611 This filter helps to solve phasing problems by adding different delays
3612 to each microphone track and make them synchronized.
3613
3614 The best result can be reached when you take one track as base and
3615 synchronize other tracks one by one with it.
3616 Remember that synchronization/delay tolerance depends on sample rate, too.
3617 Higher sample rates will give more tolerance.
3618
3619 The filter accepts the following parameters:
3620
3621 @table @option
3622 @item mm
3623 Set millimeters distance. This is compensation distance for fine tuning.
3624 Default is 0.
3625
3626 @item cm
3627 Set cm distance. This is compensation distance for tightening distance setup.
3628 Default is 0.
3629
3630 @item m
3631 Set meters distance. This is compensation distance for hard distance setup.
3632 Default is 0.
3633
3634 @item dry
3635 Set dry amount. Amount of unprocessed (dry) signal.
3636 Default is 0.
3637
3638 @item wet
3639 Set wet amount. Amount of processed (wet) signal.
3640 Default is 1.
3641
3642 @item temp
3643 Set temperature in degrees Celsius. This is the temperature of the environment.
3644 Default is 20.
3645 @end table
3646
3647 @section crossfeed
3648 Apply headphone crossfeed filter.
3649
3650 Crossfeed is the process of blending the left and right channels of stereo
3651 audio recording.
3652 It is mainly used to reduce extreme stereo separation of low frequencies.
3653
3654 The intent is to produce more speaker like sound to the listener.
3655
3656 The filter accepts the following options:
3657
3658 @table @option
3659 @item strength
3660 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3661 This sets gain of low shelf filter for side part of stereo image.
3662 Default is -6dB. Max allowed is -30db when strength is set to 1.
3663
3664 @item range
3665 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3666 This sets cut off frequency of low shelf filter. Default is cut off near
3667 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3668
3669 @item slope
3670 Set curve slope of low shelf filter. Default is 0.5.
3671 Allowed range is from 0.01 to 1.
3672
3673 @item level_in
3674 Set input gain. Default is 0.9.
3675
3676 @item level_out
3677 Set output gain. Default is 1.
3678 @end table
3679
3680 @subsection Commands
3681
3682 This filter supports the all above options as @ref{commands}.
3683
3684 @section crystalizer
3685 Simple algorithm for audio noise sharpening.
3686
3687 This filter linearly increases differences betweeen each audio sample.
3688
3689 The filter accepts the following options:
3690
3691 @table @option
3692 @item i
3693 Sets the intensity of effect (default: 2.0). Must be in range between -10.0 to 0
3694 (unchanged sound) to 10.0 (maximum effect).
3695 To inverse filtering use negative value.
3696
3697 @item c
3698 Enable clipping. By default is enabled.
3699 @end table
3700
3701 @subsection Commands
3702
3703 This filter supports the all above options as @ref{commands}.
3704
3705 @section dcshift
3706 Apply a DC shift to the audio.
3707
3708 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3709 in the recording chain) from the audio. The effect of a DC offset is reduced
3710 headroom and hence volume. The @ref{astats} filter can be used to determine if
3711 a signal has a DC offset.
3712
3713 @table @option
3714 @item shift
3715 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3716 the audio.
3717
3718 @item limitergain
3719 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3720 used to prevent clipping.
3721 @end table
3722
3723 @section deesser
3724
3725 Apply de-essing to the audio samples.
3726
3727 @table @option
3728 @item i
3729 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3730 Default is 0.
3731
3732 @item m
3733 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3734 Default is 0.5.
3735
3736 @item f
3737 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3738 Default is 0.5.
3739
3740 @item s
3741 Set the output mode.
3742
3743 It accepts the following values:
3744 @table @option
3745 @item i
3746 Pass input unchanged.
3747
3748 @item o
3749 Pass ess filtered out.
3750
3751 @item e
3752 Pass only ess.
3753
3754 Default value is @var{o}.
3755 @end table
3756
3757 @end table
3758
3759 @section drmeter
3760 Measure audio dynamic range.
3761
3762 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3763 is found in transition material. And anything less that 8 have very poor dynamics
3764 and is very compressed.
3765
3766 The filter accepts the following options:
3767
3768 @table @option
3769 @item length
3770 Set window length in seconds used to split audio into segments of equal length.
3771 Default is 3 seconds.
3772 @end table
3773
3774 @section dynaudnorm
3775 Dynamic Audio Normalizer.
3776
3777 This filter applies a certain amount of gain to the input audio in order
3778 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3779 contrast to more "simple" normalization algorithms, the Dynamic Audio
3780 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3781 This allows for applying extra gain to the "quiet" sections of the audio
3782 while avoiding distortions or clipping the "loud" sections. In other words:
3783 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3784 sections, in the sense that the volume of each section is brought to the
3785 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3786 this goal *without* applying "dynamic range compressing". It will retain 100%
3787 of the dynamic range *within* each section of the audio file.
3788
3789 @table @option
3790 @item framelen, f
3791 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3792 Default is 500 milliseconds.
3793 The Dynamic Audio Normalizer processes the input audio in small chunks,
3794 referred to as frames. This is required, because a peak magnitude has no
3795 meaning for just a single sample value. Instead, we need to determine the
3796 peak magnitude for a contiguous sequence of sample values. While a "standard"
3797 normalizer would simply use the peak magnitude of the complete file, the
3798 Dynamic Audio Normalizer determines the peak magnitude individually for each
3799 frame. The length of a frame is specified in milliseconds. By default, the
3800 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3801 been found to give good results with most files.
3802 Note that the exact frame length, in number of samples, will be determined
3803 automatically, based on the sampling rate of the individual input audio file.
3804
3805 @item gausssize, g
3806 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3807 number. Default is 31.
3808 Probably the most important parameter of the Dynamic Audio Normalizer is the
3809 @code{window size} of the Gaussian smoothing filter. The filter's window size
3810 is specified in frames, centered around the current frame. For the sake of
3811 simplicity, this must be an odd number. Consequently, the default value of 31
3812 takes into account the current frame, as well as the 15 preceding frames and
3813 the 15 subsequent frames. Using a larger window results in a stronger
3814 smoothing effect and thus in less gain variation, i.e. slower gain
3815 adaptation. Conversely, using a smaller window results in a weaker smoothing
3816 effect and thus in more gain variation, i.e. faster gain adaptation.
3817 In other words, the more you increase this value, the more the Dynamic Audio
3818 Normalizer will behave like a "traditional" normalization filter. On the
3819 contrary, the more you decrease this value, the more the Dynamic Audio
3820 Normalizer will behave like a dynamic range compressor.
3821
3822 @item peak, p
3823 Set the target peak value. This specifies the highest permissible magnitude
3824 level for the normalized audio input. This filter will try to approach the
3825 target peak magnitude as closely as possible, but at the same time it also
3826 makes sure that the normalized signal will never exceed the peak magnitude.
3827 A frame's maximum local gain factor is imposed directly by the target peak
3828 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3829 It is not recommended to go above this value.
3830
3831 @item maxgain, m
3832 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3833 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3834 factor for each input frame, i.e. the maximum gain factor that does not
3835 result in clipping or distortion. The maximum gain factor is determined by
3836 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3837 additionally bounds the frame's maximum gain factor by a predetermined
3838 (global) maximum gain factor. This is done in order to avoid excessive gain
3839 factors in "silent" or almost silent frames. By default, the maximum gain
3840 factor is 10.0, For most inputs the default value should be sufficient and
3841 it usually is not recommended to increase this value. Though, for input
3842 with an extremely low overall volume level, it may be necessary to allow even
3843 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3844 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3845 Instead, a "sigmoid" threshold function will be applied. This way, the
3846 gain factors will smoothly approach the threshold value, but never exceed that
3847 value.
3848
3849 @item targetrms, r
3850 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3851 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3852 This means that the maximum local gain factor for each frame is defined
3853 (only) by the frame's highest magnitude sample. This way, the samples can
3854 be amplified as much as possible without exceeding the maximum signal
3855 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3856 Normalizer can also take into account the frame's root mean square,
3857 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3858 determine the power of a time-varying signal. It is therefore considered
3859 that the RMS is a better approximation of the "perceived loudness" than
3860 just looking at the signal's peak magnitude. Consequently, by adjusting all
3861 frames to a constant RMS value, a uniform "perceived loudness" can be
3862 established. If a target RMS value has been specified, a frame's local gain
3863 factor is defined as the factor that would result in exactly that RMS value.
3864 Note, however, that the maximum local gain factor is still restricted by the
3865 frame's highest magnitude sample, in order to prevent clipping.
3866
3867 @item coupling, n
3868 Enable channels coupling. By default is enabled.
3869 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3870 amount. This means the same gain factor will be applied to all channels, i.e.
3871 the maximum possible gain factor is determined by the "loudest" channel.
3872 However, in some recordings, it may happen that the volume of the different
3873 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3874 In this case, this option can be used to disable the channel coupling. This way,
3875 the gain factor will be determined independently for each channel, depending
3876 only on the individual channel's highest magnitude sample. This allows for
3877 harmonizing the volume of the different channels.
3878
3879 @item correctdc, c
3880 Enable DC bias correction. By default is disabled.
3881 An audio signal (in the time domain) is a sequence of sample values.
3882 In the Dynamic Audio Normalizer these sample values are represented in the
3883 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3884 audio signal, or "waveform", should be centered around the zero point.
3885 That means if we calculate the mean value of all samples in a file, or in a
3886 single frame, then the result should be 0.0 or at least very close to that
3887 value. If, however, there is a significant deviation of the mean value from
3888 0.0, in either positive or negative direction, this is referred to as a
3889 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3890 Audio Normalizer provides optional DC bias correction.
3891 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3892 the mean value, or "DC correction" offset, of each input frame and subtract
3893 that value from all of the frame's sample values which ensures those samples
3894 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3895 boundaries, the DC correction offset values will be interpolated smoothly
3896 between neighbouring frames.
3897
3898 @item altboundary, b
3899 Enable alternative boundary mode. By default is disabled.
3900 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3901 around each frame. This includes the preceding frames as well as the
3902 subsequent frames. However, for the "boundary" frames, located at the very
3903 beginning and at the very end of the audio file, not all neighbouring
3904 frames are available. In particular, for the first few frames in the audio
3905 file, the preceding frames are not known. And, similarly, for the last few
3906 frames in the audio file, the subsequent frames are not known. Thus, the
3907 question arises which gain factors should be assumed for the missing frames
3908 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3909 to deal with this situation. The default boundary mode assumes a gain factor
3910 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3911 "fade out" at the beginning and at the end of the input, respectively.
3912
3913 @item compress, s
3914 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3915 By default, the Dynamic Audio Normalizer does not apply "traditional"
3916 compression. This means that signal peaks will not be pruned and thus the
3917 full dynamic range will be retained within each local neighbourhood. However,
3918 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3919 normalization algorithm with a more "traditional" compression.
3920 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3921 (thresholding) function. If (and only if) the compression feature is enabled,
3922 all input frames will be processed by a soft knee thresholding function prior
3923 to the actual normalization process. Put simply, the thresholding function is
3924 going to prune all samples whose magnitude exceeds a certain threshold value.
3925 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3926 value. Instead, the threshold value will be adjusted for each individual
3927 frame.
3928 In general, smaller parameters result in stronger compression, and vice versa.
3929 Values below 3.0 are not recommended, because audible distortion may appear.
3930
3931 @item threshold, t
3932 Set the target threshold value. This specifies the lowest permissible
3933 magnitude level for the audio input which will be normalized.
3934 If input frame volume is above this value frame will be normalized.
3935 Otherwise frame may not be normalized at all. The default value is set
3936 to 0, which means all input frames will be normalized.
3937 This option is mostly useful if digital noise is not wanted to be amplified.
3938 @end table
3939
3940 @subsection Commands
3941
3942 This filter supports the all above options as @ref{commands}.
3943
3944 @section earwax
3945
3946 Make audio easier to listen to on headphones.
3947
3948 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3949 so that when listened to on headphones the stereo image is moved from
3950 inside your head (standard for headphones) to outside and in front of
3951 the listener (standard for speakers).
3952
3953 Ported from SoX.
3954
3955 @section equalizer
3956
3957 Apply a two-pole peaking equalisation (EQ) filter. With this
3958 filter, the signal-level at and around a selected frequency can
3959 be increased or decreased, whilst (unlike bandpass and bandreject
3960 filters) that at all other frequencies is unchanged.
3961
3962 In order to produce complex equalisation curves, this filter can
3963 be given several times, each with a different central frequency.
3964
3965 The filter accepts the following options:
3966
3967 @table @option
3968 @item frequency, f
3969 Set the filter's central frequency in Hz.
3970
3971 @item width_type, t
3972 Set method to specify band-width of filter.
3973 @table @option
3974 @item h
3975 Hz
3976 @item q
3977 Q-Factor
3978 @item o
3979 octave
3980 @item s
3981 slope
3982 @item k
3983 kHz
3984 @end table
3985
3986 @item width, w
3987 Specify the band-width of a filter in width_type units.
3988
3989 @item gain, g
3990 Set the required gain or attenuation in dB.
3991 Beware of clipping when using a positive gain.
3992
3993 @item mix, m
3994 How much to use filtered signal in output. Default is 1.
3995 Range is between 0 and 1.
3996
3997 @item channels, c
3998 Specify which channels to filter, by default all available are filtered.
3999
4000 @item normalize, n
4001 Normalize biquad coefficients, by default is disabled.
4002 Enabling it will normalize magnitude response at DC to 0dB.
4003
4004 @item transform, a
4005 Set transform type of IIR filter.
4006 @table @option
4007 @item di
4008 @item dii
4009 @item tdii
4010 @item latt
4011 @end table
4012
4013 @item precision, r
4014 Set precison of filtering.
4015 @table @option
4016 @item auto
4017 Pick automatic sample format depending on surround filters.
4018 @item s16
4019 Always use signed 16-bit.
4020 @item s32
4021 Always use signed 32-bit.
4022 @item f32
4023 Always use float 32-bit.
4024 @item f64
4025 Always use float 64-bit.
4026 @end table
4027 @end table
4028
4029 @subsection Examples
4030 @itemize
4031 @item
4032 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
4033 @example
4034 equalizer=f=1000:t=h:width=200:g=-10
4035 @end example
4036
4037 @item
4038 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
4039 @example
4040 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
4041 @end example
4042 @end itemize
4043
4044 @subsection Commands
4045
4046 This filter supports the following commands:
4047 @table @option
4048 @item frequency, f
4049 Change equalizer frequency.
4050 Syntax for the command is : "@var{frequency}"
4051
4052 @item width_type, t
4053 Change equalizer width_type.
4054 Syntax for the command is : "@var{width_type}"
4055
4056 @item width, w
4057 Change equalizer width.
4058 Syntax for the command is : "@var{width}"
4059
4060 @item gain, g
4061 Change equalizer gain.
4062 Syntax for the command is : "@var{gain}"
4063
4064 @item mix, m
4065 Change equalizer mix.
4066 Syntax for the command is : "@var{mix}"
4067 @end table
4068
4069 @section extrastereo
4070
4071 Linearly increases the difference between left and right channels which
4072 adds some sort of "live" effect to playback.
4073
4074 The filter accepts the following options:
4075
4076 @table @option
4077 @item m
4078 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
4079 (average of both channels), with 1.0 sound will be unchanged, with
4080 -1.0 left and right channels will be swapped.
4081
4082 @item c
4083 Enable clipping. By default is enabled.
4084 @end table
4085
4086 @subsection Commands
4087
4088 This filter supports the all above options as @ref{commands}.
4089
4090 @section firequalizer
4091 Apply FIR Equalization using arbitrary frequency response.
4092
4093 The filter accepts the following option:
4094
4095 @table @option
4096 @item gain
4097 Set gain curve equation (in dB). The expression can contain variables:
4098 @table @option
4099 @item f
4100 the evaluated frequency
4101 @item sr
4102 sample rate
4103 @item ch
4104 channel number, set to 0 when multichannels evaluation is disabled
4105 @item chid
4106 channel id, see libavutil/channel_layout.h, set to the first channel id when
4107 multichannels evaluation is disabled
4108 @item chs
4109 number of channels
4110 @item chlayout
4111 channel_layout, see libavutil/channel_layout.h
4112
4113 @end table
4114 and functions:
4115 @table @option
4116 @item gain_interpolate(f)
4117 interpolate gain on frequency f based on gain_entry
4118 @item cubic_interpolate(f)
4119 same as gain_interpolate, but smoother
4120 @end table
4121 This option is also available as command. Default is @code{gain_interpolate(f)}.
4122
4123 @item gain_entry
4124 Set gain entry for gain_interpolate function. The expression can
4125 contain functions:
4126 @table @option
4127 @item entry(f, g)
4128 store gain entry at frequency f with value g
4129 @end table
4130 This option is also available as command.
4131
4132 @item delay
4133 Set filter delay in seconds. Higher value means more accurate.
4134 Default is @code{0.01}.
4135
4136 @item accuracy
4137 Set filter accuracy in Hz. Lower value means more accurate.
4138 Default is @code{5}.
4139
4140 @item wfunc
4141 Set window function. Acceptable values are:
4142 @table @option
4143 @item rectangular
4144 rectangular window, useful when gain curve is already smooth
4145 @item hann
4146 hann window (default)
4147 @item hamming
4148 hamming window
4149 @item blackman
4150 blackman window
4151 @item nuttall3
4152 3-terms continuous 1st derivative nuttall window
4153 @item mnuttall3
4154 minimum 3-terms discontinuous nuttall window
4155 @item nuttall
4156 4-terms continuous 1st derivative nuttall window
4157 @item bnuttall
4158 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
4159 @item bharris
4160 blackman-harris window
4161 @item tukey
4162 tukey window
4163 @end table
4164
4165 @item fixed
4166 If enabled, use fixed number of audio samples. This improves speed when
4167 filtering with large delay. Default is disabled.
4168
4169 @item multi
4170 Enable multichannels evaluation on gain. Default is disabled.
4171
4172 @item zero_phase
4173 Enable zero phase mode by subtracting timestamp to compensate delay.
4174 Default is disabled.
4175
4176 @item scale
4177 Set scale used by gain. Acceptable values are:
4178 @table @option
4179 @item linlin
4180 linear frequency, linear gain
4181 @item linlog
4182 linear frequency, logarithmic (in dB) gain (default)
4183 @item loglin
4184 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
4185 @item loglog
4186 logarithmic frequency, logarithmic gain
4187 @end table
4188
4189 @item dumpfile
4190 Set file for dumping, suitable for gnuplot.
4191
4192 @item dumpscale
4193 Set scale for dumpfile. Acceptable values are same with scale option.
4194 Default is linlog.
4195
4196 @item fft2
4197 Enable 2-channel convolution using complex FFT. This improves speed significantly.
4198 Default is disabled.
4199
4200 @item min_phase
4201 Enable minimum phase impulse response. Default is disabled.
4202 @end table
4203
4204 @subsection Examples
4205 @itemize
4206 @item
4207 lowpass at 1000 Hz:
4208 @example
4209 firequalizer=gain='if(lt(f,1000), 0, -INF)'
4210 @end example
4211 @item
4212 lowpass at 1000 Hz with gain_entry:
4213 @example
4214 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
4215 @end example
4216 @item
4217 custom equalization:
4218 @example
4219 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
4220 @end example
4221 @item
4222 higher delay with zero phase to compensate delay:
4223 @example
4224 firequalizer=delay=0.1:fixed=on:zero_phase=on
4225 @end example
4226 @item
4227 lowpass on left channel, highpass on right channel:
4228 @example
4229 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
4230 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
4231 @end example
4232 @end itemize
4233
4234 @section flanger
4235 Apply a flanging effect to the audio.
4236
4237 The filter accepts the following options:
4238
4239 @table @option
4240 @item delay
4241 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
4242
4243 @item depth
4244 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
4245
4246 @item regen
4247 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
4248 Default value is 0.
4249
4250 @item width
4251 Set percentage of delayed signal mixed with original. Range from 0 to 100.
4252 Default value is 71.
4253
4254 @item speed
4255 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
4256
4257 @item shape
4258 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
4259 Default value is @var{sinusoidal}.
4260
4261 @item phase
4262 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
4263 Default value is 25.
4264
4265 @item interp
4266 Set delay-line interpolation, @var{linear} or @var{quadratic}.
4267 Default is @var{linear}.
4268 @end table
4269
4270 @section haas
4271 Apply Haas effect to audio.
4272
4273 Note that this makes most sense to apply on mono signals.
4274 With this filter applied to mono signals it give some directionality and
4275 stretches its stereo image.
4276
4277 The filter accepts the following options:
4278
4279 @table @option
4280 @item level_in
4281 Set input level. By default is @var{1}, or 0dB
4282
4283 @item level_out
4284 Set output level. By default is @var{1}, or 0dB.
4285
4286 @item side_gain
4287 Set gain applied to side part of signal. By default is @var{1}.
4288
4289 @item middle_source
4290 Set kind of middle source. Can be one of the following:
4291
4292 @table @samp
4293 @item left
4294 Pick left channel.
4295
4296 @item right
4297 Pick right channel.
4298
4299 @item mid
4300 Pick middle part signal of stereo image.
4301
4302 @item side
4303 Pick side part signal of stereo image.
4304 @end table
4305
4306 @item middle_phase
4307 Change middle phase. By default is disabled.
4308
4309 @item left_delay
4310 Set left channel delay. By default is @var{2.05} milliseconds.
4311
4312 @item left_balance
4313 Set left channel balance. By default is @var{-1}.
4314
4315 @item left_gain
4316 Set left channel gain. By default is @var{1}.
4317
4318 @item left_phase
4319 Change left phase. By default is disabled.
4320
4321 @item right_delay
4322 Set right channel delay. By defaults is @var{2.12} milliseconds.
4323
4324 @item right_balance
4325 Set right channel balance. By default is @var{1}.
4326
4327 @item right_gain
4328 Set right channel gain. By default is @var{1}.
4329
4330 @item right_phase
4331 Change right phase. By default is enabled.
4332 @end table
4333
4334 @section hdcd
4335
4336 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
4337 embedded HDCD codes is expanded into a 20-bit PCM stream.
4338
4339 The filter supports the Peak Extend and Low-level Gain Adjustment features
4340 of HDCD, and detects the Transient Filter flag.
4341
4342 @example
4343 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
4344 @end example
4345
4346 When using the filter with wav, note the default encoding for wav is 16-bit,
4347 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
4348 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
4349 @example
4350 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
4351 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
4352 @end example
4353
4354 The filter accepts the following options:
4355
4356 @table @option
4357 @item disable_autoconvert
4358 Disable any automatic format conversion or resampling in the filter graph.
4359
4360 @item process_stereo
4361 Process the stereo channels together. If target_gain does not match between
4362 channels, consider it invalid and use the last valid target_gain.
4363
4364 @item cdt_ms
4365 Set the code detect timer period in ms.
4366
4367 @item force_pe
4368 Always extend peaks above -3dBFS even if PE isn't signaled.
4369
4370 @item analyze_mode
4371 Replace audio with a solid tone and adjust the amplitude to signal some
4372 specific aspect of the decoding process. The output file can be loaded in
4373 an audio editor alongside the original to aid analysis.
4374
4375 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
4376
4377 Modes are:
4378 @table @samp
4379 @item 0, off
4380 Disabled
4381 @item 1, lle
4382 Gain adjustment level at each sample
4383 @item 2, pe
4384 Samples where peak extend occurs
4385 @item 3, cdt
4386 Samples where the code detect timer is active
4387 @item 4, tgm
4388 Samples where the target gain does not match between channels
4389 @end table
4390 @end table
4391
4392 @section headphone
4393
4394 Apply head-related transfer functions (HRTFs) to create virtual
4395 loudspeakers around the user for binaural listening via headphones.
4396 The HRIRs are provided via additional streams, for each channel
4397 one stereo input stream is needed.
4398
4399 The filter accepts the following options:
4400
4401 @table @option
4402 @item map
4403 Set mapping of input streams for convolution.
4404 The argument is a '|'-separated list of channel names in order as they
4405 are given as additional stream inputs for filter.
4406 This also specify number of input streams. Number of input streams
4407 must be not less than number of channels in first stream plus one.
4408
4409 @item gain
4410 Set gain applied to audio. Value is in dB. Default is 0.
4411
4412 @item type
4413 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4414 processing audio in time domain which is slow.
4415 @var{freq} is processing audio in frequency domain which is fast.
4416 Default is @var{freq}.
4417
4418 @item lfe
4419 Set custom gain for LFE channels. Value is in dB. Default is 0.
4420
4421 @item size
4422 Set size of frame in number of samples which will be processed at once.
4423 Default value is @var{1024}. Allowed range is from 1024 to 96000.
4424
4425 @item hrir
4426 Set format of hrir stream.
4427 Default value is @var{stereo}. Alternative value is @var{multich}.
4428 If value is set to @var{stereo}, number of additional streams should
4429 be greater or equal to number of input channels in first input stream.
4430 Also each additional stream should have stereo number of channels.
4431 If value is set to @var{multich}, number of additional streams should
4432 be exactly one. Also number of input channels of additional stream
4433 should be equal or greater than twice number of channels of first input
4434 stream.
4435 @end table
4436
4437 @subsection Examples
4438
4439 @itemize
4440 @item
4441 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4442 each amovie filter use stereo file with IR coefficients as input.
4443 The files give coefficients for each position of virtual loudspeaker:
4444 @example
4445 ffmpeg -i input.wav
4446 -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"
4447 output.wav
4448 @end example
4449
4450 @item
4451 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
4452 but now in @var{multich} @var{hrir} format.
4453 @example
4454 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"
4455 output.wav
4456 @end example
4457 @end itemize
4458
4459 @section highpass
4460
4461 Apply a high-pass filter with 3dB point frequency.
4462 The filter can be either single-pole, or double-pole (the default).
4463 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4464
4465 The filter accepts the following options:
4466
4467 @table @option
4468 @item frequency, f
4469 Set frequency in Hz. Default is 3000.
4470
4471 @item poles, p
4472 Set number of poles. Default is 2.
4473
4474 @item width_type, t
4475 Set method to specify band-width of filter.
4476 @table @option
4477 @item h
4478 Hz
4479 @item q
4480 Q-Factor
4481 @item o
4482 octave
4483 @item s
4484 slope
4485 @item k
4486 kHz
4487 @end table
4488
4489 @item width, w
4490 Specify the band-width of a filter in width_type units.
4491 Applies only to double-pole filter.
4492 The default is 0.707q and gives a Butterworth response.
4493
4494 @item mix, m
4495 How much to use filtered signal in output. Default is 1.
4496 Range is between 0 and 1.
4497
4498 @item channels, c
4499 Specify which channels to filter, by default all available are filtered.
4500
4501 @item normalize, n
4502 Normalize biquad coefficients, by default is disabled.
4503 Enabling it will normalize magnitude response at DC to 0dB.
4504
4505 @item transform, a
4506 Set transform type of IIR filter.
4507 @table @option
4508 @item di
4509 @item dii
4510 @item tdii
4511 @item latt
4512 @end table
4513
4514 @item precision, r
4515 Set precison of filtering.
4516 @table @option
4517 @item auto
4518 Pick automatic sample format depending on surround filters.
4519 @item s16
4520 Always use signed 16-bit.
4521 @item s32
4522 Always use signed 32-bit.
4523 @item f32
4524 Always use float 32-bit.
4525 @item f64
4526 Always use float 64-bit.
4527 @end table
4528 @end table
4529
4530 @subsection Commands
4531
4532 This filter supports the following commands:
4533 @table @option
4534 @item frequency, f
4535 Change highpass frequency.
4536 Syntax for the command is : "@var{frequency}"
4537
4538 @item width_type, t
4539 Change highpass width_type.
4540 Syntax for the command is : "@var{width_type}"
4541
4542 @item width, w
4543 Change highpass width.
4544 Syntax for the command is : "@var{width}"
4545
4546 @item mix, m
4547 Change highpass mix.
4548 Syntax for the command is : "@var{mix}"
4549 @end table
4550
4551 @section join
4552
4553 Join multiple input streams into one multi-channel stream.
4554
4555 It accepts the following parameters:
4556 @table @option
4557
4558 @item inputs
4559 The number of input streams. It defaults to 2.
4560
4561 @item channel_layout
4562 The desired output channel layout. It defaults to stereo.
4563
4564 @item map
4565 Map channels from inputs to output. The argument is a '|'-separated list of
4566 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4567 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4568 can be either the name of the input channel (e.g. FL for front left) or its
4569 index in the specified input stream. @var{out_channel} is the name of the output
4570 channel.
4571 @end table
4572
4573 The filter will attempt to guess the mappings when they are not specified
4574 explicitly. It does so by first trying to find an unused matching input channel
4575 and if that fails it picks the first unused input channel.
4576
4577 Join 3 inputs (with properly set channel layouts):
4578 @example
4579 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4580 @end example
4581
4582 Build a 5.1 output from 6 single-channel streams:
4583 @example
4584 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4585 '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'
4586 out
4587 @end example
4588
4589 @section ladspa
4590
4591 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4592
4593 To enable compilation of this filter you need to configure FFmpeg with
4594 @code{--enable-ladspa}.
4595
4596 @table @option
4597 @item file, f
4598 Specifies the name of LADSPA plugin library to load. If the environment
4599 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4600 each one of the directories specified by the colon separated list in
4601 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4602 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4603 @file{/usr/lib/ladspa/}.
4604
4605 @item plugin, p
4606 Specifies the plugin within the library. Some libraries contain only
4607 one plugin, but others contain many of them. If this is not set filter
4608 will list all available plugins within the specified library.
4609
4610 @item controls, c
4611 Set the '|' separated list of controls which are zero or more floating point
4612 values that determine the behavior of the loaded plugin (for example delay,
4613 threshold or gain).
4614 Controls need to be defined using the following syntax:
4615 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4616 @var{valuei} is the value set on the @var{i}-th control.
4617 Alternatively they can be also defined using the following syntax:
4618 @var{value0}|@var{value1}|@var{value2}|..., where
4619 @var{valuei} is the value set on the @var{i}-th control.
4620 If @option{controls} is set to @code{help}, all available controls and
4621 their valid ranges are printed.
4622
4623 @item sample_rate, s
4624 Specify the sample rate, default to 44100. Only used if plugin have
4625 zero inputs.
4626
4627 @item nb_samples, n
4628 Set the number of samples per channel per each output frame, default
4629 is 1024. Only used if plugin have zero inputs.
4630
4631 @item duration, d
4632 Set the minimum duration of the sourced audio. See
4633 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4634 for the accepted syntax.
4635 Note that the resulting duration may be greater than the specified duration,
4636 as the generated audio is always cut at the end of a complete frame.
4637 If not specified, or the expressed duration is negative, the audio is
4638 supposed to be generated forever.
4639 Only used if plugin have zero inputs.
4640
4641 @item latency, l
4642 Enable latency compensation, by default is disabled.
4643 Only used if plugin have inputs.
4644 @end table
4645
4646 @subsection Examples
4647
4648 @itemize
4649 @item
4650 List all available plugins within amp (LADSPA example plugin) library:
4651 @example
4652 ladspa=file=amp
4653 @end example
4654
4655 @item
4656 List all available controls and their valid ranges for @code{vcf_notch}
4657 plugin from @code{VCF} library:
4658 @example
4659 ladspa=f=vcf:p=vcf_notch:c=help
4660 @end example
4661
4662 @item
4663 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4664 plugin library:
4665 @example
4666 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4667 @end example
4668
4669 @item
4670 Add reverberation to the audio using TAP-plugins
4671 (Tom's Audio Processing plugins):
4672 @example
4673 ladspa=file=tap_reverb:tap_reverb
4674 @end example
4675
4676 @item
4677 Generate white noise, with 0.2 amplitude:
4678 @example
4679 ladspa=file=cmt:noise_source_white:c=c0=.2
4680 @end example
4681
4682 @item
4683 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4684 @code{C* Audio Plugin Suite} (CAPS) library:
4685 @example
4686 ladspa=file=caps:Click:c=c1=20'
4687 @end example
4688
4689 @item
4690 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4691 @example
4692 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4693 @end example
4694
4695 @item
4696 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4697 @code{SWH Plugins} collection:
4698 @example
4699 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4700 @end example
4701
4702 @item
4703 Attenuate low frequencies using Multiband EQ from Steve Harris
4704 @code{SWH Plugins} collection:
4705 @example
4706 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4707 @end example
4708
4709 @item
4710 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4711 (CAPS) library:
4712 @example
4713 ladspa=caps:Narrower
4714 @end example
4715
4716 @item
4717 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4718 @example
4719 ladspa=caps:White:.2
4720 @end example
4721
4722 @item
4723 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4724 @example
4725 ladspa=caps:Fractal:c=c1=1
4726 @end example
4727
4728 @item
4729 Dynamic volume normalization using @code{VLevel} plugin:
4730 @example
4731 ladspa=vlevel-ladspa:vlevel_mono
4732 @end example
4733 @end itemize
4734
4735 @subsection Commands
4736
4737 This filter supports the following commands:
4738 @table @option
4739 @item cN
4740 Modify the @var{N}-th control value.
4741
4742 If the specified value is not valid, it is ignored and prior one is kept.
4743 @end table
4744
4745 @section loudnorm
4746
4747 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4748 Support for both single pass (livestreams, files) and double pass (files) modes.
4749 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4750 detect true peaks, the audio stream will be upsampled to 192 kHz.
4751 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4752
4753 The filter accepts the following options:
4754
4755 @table @option
4756 @item I, i
4757 Set integrated loudness target.
4758 Range is -70.0 - -5.0. Default value is -24.0.
4759
4760 @item LRA, lra
4761 Set loudness range target.
4762 Range is 1.0 - 20.0. Default value is 7.0.
4763
4764 @item TP, tp
4765 Set maximum true peak.
4766 Range is -9.0 - +0.0. Default value is -2.0.
4767
4768 @item measured_I, measured_i
4769 Measured IL of input file.
4770 Range is -99.0 - +0.0.
4771
4772 @item measured_LRA, measured_lra
4773 Measured LRA of input file.
4774 Range is  0.0 - 99.0.
4775
4776 @item measured_TP, measured_tp
4777 Measured true peak of input file.
4778 Range is  -99.0 - +99.0.
4779
4780 @item measured_thresh
4781 Measured threshold of input file.
4782 Range is -99.0 - +0.0.
4783
4784 @item offset
4785 Set offset gain. Gain is applied before the true-peak limiter.
4786 Range is  -99.0 - +99.0. Default is +0.0.
4787
4788 @item linear
4789 Normalize by linearly scaling the source audio.
4790 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4791 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4792 be lower than source LRA and the change in integrated loudness shouldn't
4793 result in a true peak which exceeds the target TP. If any of these
4794 conditions aren't met, normalization mode will revert to @var{dynamic}.
4795 Options are @code{true} or @code{false}. Default is @code{true}.
4796
4797 @item dual_mono
4798 Treat mono input files as "dual-mono". If a mono file is intended for playback
4799 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4800 If set to @code{true}, this option will compensate for this effect.
4801 Multi-channel input files are not affected by this option.
4802 Options are true or false. Default is false.
4803
4804 @item print_format
4805 Set print format for stats. Options are summary, json, or none.
4806 Default value is none.
4807 @end table
4808
4809 @section lowpass
4810
4811 Apply a low-pass filter with 3dB point frequency.
4812 The filter can be either single-pole or double-pole (the default).
4813 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4814
4815 The filter accepts the following options:
4816
4817 @table @option
4818 @item frequency, f
4819 Set frequency in Hz. Default is 500.
4820
4821 @item poles, p
4822 Set number of poles. Default is 2.
4823
4824 @item width_type, t
4825 Set method to specify band-width of filter.
4826 @table @option
4827 @item h
4828 Hz
4829 @item q
4830 Q-Factor
4831 @item o
4832 octave
4833 @item s
4834 slope
4835 @item k
4836 kHz
4837 @end table
4838
4839 @item width, w
4840 Specify the band-width of a filter in width_type units.
4841 Applies only to double-pole filter.
4842 The default is 0.707q and gives a Butterworth response.
4843
4844 @item mix, m
4845 How much to use filtered signal in output. Default is 1.
4846 Range is between 0 and 1.
4847
4848 @item channels, c
4849 Specify which channels to filter, by default all available are filtered.
4850
4851 @item normalize, n
4852 Normalize biquad coefficients, by default is disabled.
4853 Enabling it will normalize magnitude response at DC to 0dB.
4854
4855 @item transform, a
4856 Set transform type of IIR filter.
4857 @table @option
4858 @item di
4859 @item dii
4860 @item tdii
4861 @item latt
4862 @end table
4863
4864 @item precision, r
4865 Set precison of filtering.
4866 @table @option
4867 @item auto
4868 Pick automatic sample format depending on surround filters.
4869 @item s16
4870 Always use signed 16-bit.
4871 @item s32
4872 Always use signed 32-bit.
4873 @item f32
4874 Always use float 32-bit.
4875 @item f64
4876 Always use float 64-bit.
4877 @end table
4878 @end table
4879
4880 @subsection Examples
4881 @itemize
4882 @item
4883 Lowpass only LFE channel, it LFE is not present it does nothing:
4884 @example
4885 lowpass=c=LFE
4886 @end example
4887 @end itemize
4888
4889 @subsection Commands
4890
4891 This filter supports the following commands:
4892 @table @option
4893 @item frequency, f
4894 Change lowpass frequency.
4895 Syntax for the command is : "@var{frequency}"
4896
4897 @item width_type, t
4898 Change lowpass width_type.
4899 Syntax for the command is : "@var{width_type}"
4900
4901 @item width, w
4902 Change lowpass width.
4903 Syntax for the command is : "@var{width}"
4904
4905 @item mix, m
4906 Change lowpass mix.
4907 Syntax for the command is : "@var{mix}"
4908 @end table
4909
4910 @section lv2
4911
4912 Load a LV2 (LADSPA Version 2) plugin.
4913
4914 To enable compilation of this filter you need to configure FFmpeg with
4915 @code{--enable-lv2}.
4916
4917 @table @option
4918 @item plugin, p
4919 Specifies the plugin URI. You may need to escape ':'.
4920
4921 @item controls, c
4922 Set the '|' separated list of controls which are zero or more floating point
4923 values that determine the behavior of the loaded plugin (for example delay,
4924 threshold or gain).
4925 If @option{controls} is set to @code{help}, all available controls and
4926 their valid ranges are printed.
4927
4928 @item sample_rate, s
4929 Specify the sample rate, default to 44100. Only used if plugin have
4930 zero inputs.
4931
4932 @item nb_samples, n
4933 Set the number of samples per channel per each output frame, default
4934 is 1024. Only used if plugin have zero inputs.
4935
4936 @item duration, d
4937 Set the minimum duration of the sourced audio. See
4938 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4939 for the accepted syntax.
4940 Note that the resulting duration may be greater than the specified duration,
4941 as the generated audio is always cut at the end of a complete frame.
4942 If not specified, or the expressed duration is negative, the audio is
4943 supposed to be generated forever.
4944 Only used if plugin have zero inputs.
4945 @end table
4946
4947 @subsection Examples
4948
4949 @itemize
4950 @item
4951 Apply bass enhancer plugin from Calf:
4952 @example
4953 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4954 @end example
4955
4956 @item
4957 Apply vinyl plugin from Calf:
4958 @example
4959 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4960 @end example
4961
4962 @item
4963 Apply bit crusher plugin from ArtyFX:
4964 @example
4965 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4966 @end example
4967 @end itemize
4968
4969 @section mcompand
4970 Multiband Compress or expand the audio's dynamic range.
4971
4972 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4973 This is akin to the crossover of a loudspeaker, and results in flat frequency
4974 response when absent compander action.
4975
4976 It accepts the following parameters:
4977
4978 @table @option
4979 @item args
4980 This option syntax is:
4981 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4982 For explanation of each item refer to compand filter documentation.
4983 @end table
4984
4985 @anchor{pan}
4986 @section pan
4987
4988 Mix channels with specific gain levels. The filter accepts the output
4989 channel layout followed by a set of channels definitions.
4990
4991 This filter is also designed to efficiently remap the channels of an audio
4992 stream.
4993
4994 The filter accepts parameters of the form:
4995 "@var{l}|@var{outdef}|@var{outdef}|..."
4996
4997 @table @option
4998 @item l
4999 output channel layout or number of channels
5000
5001 @item outdef
5002 output channel specification, of the form:
5003 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
5004
5005 @item out_name
5006 output channel to define, either a channel name (FL, FR, etc.) or a channel
5007 number (c0, c1, etc.)
5008
5009 @item gain
5010 multiplicative coefficient for the channel, 1 leaving the volume unchanged
5011
5012 @item in_name
5013 input channel to use, see out_name for details; it is not possible to mix
5014 named and numbered input channels
5015 @end table
5016
5017 If the `=' in a channel specification is replaced by `<', then the gains for
5018 that specification will be renormalized so that the total is 1, thus
5019 avoiding clipping noise.
5020
5021 @subsection Mixing examples
5022
5023 For example, if you want to down-mix from stereo to mono, but with a bigger
5024 factor for the left channel:
5025 @example
5026 pan=1c|c0=0.9*c0+0.1*c1
5027 @end example
5028
5029 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
5030 7-channels surround:
5031 @example
5032 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
5033 @end example
5034
5035 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
5036 that should be preferred (see "-ac" option) unless you have very specific
5037 needs.
5038
5039 @subsection Remapping examples
5040
5041 The channel remapping will be effective if, and only if:
5042
5043 @itemize
5044 @item gain coefficients are zeroes or ones,
5045 @item only one input per channel output,
5046 @end itemize
5047
5048 If all these conditions are satisfied, the filter will notify the user ("Pure
5049 channel mapping detected"), and use an optimized and lossless method to do the
5050 remapping.
5051
5052 For example, if you have a 5.1 source and want a stereo audio stream by
5053 dropping the extra channels:
5054 @example
5055 pan="stereo| c0=FL | c1=FR"
5056 @end example
5057
5058 Given the same source, you can also switch front left and front right channels
5059 and keep the input channel layout:
5060 @example
5061 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
5062 @end example
5063
5064 If the input is a stereo audio stream, you can mute the front left channel (and
5065 still keep the stereo channel layout) with:
5066 @example
5067 pan="stereo|c1=c1"
5068 @end example
5069
5070 Still with a stereo audio stream input, you can copy the right channel in both
5071 front left and right:
5072 @example
5073 pan="stereo| c0=FR | c1=FR"
5074 @end example
5075
5076 @section replaygain
5077
5078 ReplayGain scanner filter. This filter takes an audio stream as an input and
5079 outputs it unchanged.
5080 At end of filtering it displays @code{track_gain} and @code{track_peak}.
5081
5082 @section resample
5083
5084 Convert the audio sample format, sample rate and channel layout. It is
5085 not meant to be used directly.
5086
5087 @section rubberband
5088 Apply time-stretching and pitch-shifting with librubberband.
5089
5090 To enable compilation of this filter, you need to configure FFmpeg with
5091 @code{--enable-librubberband}.
5092
5093 The filter accepts the following options:
5094
5095 @table @option
5096 @item tempo
5097 Set tempo scale factor.
5098
5099 @item pitch
5100 Set pitch scale factor.
5101
5102 @item transients
5103 Set transients detector.
5104 Possible values are:
5105 @table @var
5106 @item crisp
5107 @item mixed
5108 @item smooth
5109 @end table
5110
5111 @item detector
5112 Set detector.
5113 Possible values are:
5114 @table @var
5115 @item compound
5116 @item percussive
5117 @item soft
5118 @end table
5119
5120 @item phase
5121 Set phase.
5122 Possible values are:
5123 @table @var
5124 @item laminar
5125 @item independent
5126 @end table
5127
5128 @item window
5129 Set processing window size.
5130 Possible values are:
5131 @table @var
5132 @item standard
5133 @item short
5134 @item long
5135 @end table
5136
5137 @item smoothing
5138 Set smoothing.
5139 Possible values are:
5140 @table @var
5141 @item off
5142 @item on
5143 @end table
5144
5145 @item formant
5146 Enable formant preservation when shift pitching.
5147 Possible values are:
5148 @table @var
5149 @item shifted
5150 @item preserved
5151 @end table
5152
5153 @item pitchq
5154 Set pitch quality.
5155 Possible values are:
5156 @table @var
5157 @item quality
5158 @item speed
5159 @item consistency
5160 @end table
5161
5162 @item channels
5163 Set channels.
5164 Possible values are:
5165 @table @var
5166 @item apart
5167 @item together
5168 @end table
5169 @end table
5170
5171 @subsection Commands
5172
5173 This filter supports the following commands:
5174 @table @option
5175 @item tempo
5176 Change filter tempo scale factor.
5177 Syntax for the command is : "@var{tempo}"
5178
5179 @item pitch
5180 Change filter pitch scale factor.
5181 Syntax for the command is : "@var{pitch}"
5182 @end table
5183
5184 @section sidechaincompress
5185
5186 This filter acts like normal compressor but has the ability to compress
5187 detected signal using second input signal.
5188 It needs two input streams and returns one output stream.
5189 First input stream will be processed depending on second stream signal.
5190 The filtered signal then can be filtered with other filters in later stages of
5191 processing. See @ref{pan} and @ref{amerge} filter.
5192
5193 The filter accepts the following options:
5194
5195 @table @option
5196 @item level_in
5197 Set input gain. Default is 1. Range is between 0.015625 and 64.
5198
5199 @item mode
5200 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
5201 Default is @code{downward}.
5202
5203 @item threshold
5204 If a signal of second stream raises above this level it will affect the gain
5205 reduction of first stream.
5206 By default is 0.125. Range is between 0.00097563 and 1.
5207
5208 @item ratio
5209 Set a ratio about which the signal is reduced. 1:2 means that if the level
5210 raised 4dB above the threshold, it will be only 2dB above after the reduction.
5211 Default is 2. Range is between 1 and 20.
5212
5213 @item attack
5214 Amount of milliseconds the signal has to rise above the threshold before gain
5215 reduction starts. Default is 20. Range is between 0.01 and 2000.
5216
5217 @item release
5218 Amount of milliseconds the signal has to fall below the threshold before
5219 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
5220
5221 @item makeup
5222 Set the amount by how much signal will be amplified after processing.
5223 Default is 1. Range is from 1 to 64.
5224
5225 @item knee
5226 Curve the sharp knee around the threshold to enter gain reduction more softly.
5227 Default is 2.82843. Range is between 1 and 8.
5228
5229 @item link
5230 Choose if the @code{average} level between all channels of side-chain stream
5231 or the louder(@code{maximum}) channel of side-chain stream affects the
5232 reduction. Default is @code{average}.
5233
5234 @item detection
5235 Should the exact signal be taken in case of @code{peak} or an RMS one in case
5236 of @code{rms}. Default is @code{rms} which is mainly smoother.
5237
5238 @item level_sc
5239 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
5240
5241 @item mix
5242 How much to use compressed signal in output. Default is 1.
5243 Range is between 0 and 1.
5244 @end table
5245
5246 @subsection Commands
5247
5248 This filter supports the all above options as @ref{commands}.
5249
5250 @subsection Examples
5251
5252 @itemize
5253 @item
5254 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
5255 depending on the signal of 2nd input and later compressed signal to be
5256 merged with 2nd input:
5257 @example
5258 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
5259 @end example
5260 @end itemize
5261
5262 @section sidechaingate
5263
5264 A sidechain gate acts like a normal (wideband) gate but has the ability to
5265 filter the detected signal before sending it to the gain reduction stage.
5266 Normally a gate uses the full range signal to detect a level above the
5267 threshold.
5268 For example: If you cut all lower frequencies from your sidechain signal
5269 the gate will decrease the volume of your track only if not enough highs
5270 appear. With this technique you are able to reduce the resonation of a
5271 natural drum or remove "rumbling" of muted strokes from a heavily distorted
5272 guitar.
5273 It needs two input streams and returns one output stream.
5274 First input stream will be processed depending on second stream signal.
5275
5276 The filter accepts the following options:
5277
5278 @table @option
5279 @item level_in
5280 Set input level before filtering.
5281 Default is 1. Allowed range is from 0.015625 to 64.
5282
5283 @item mode
5284 Set the mode of operation. Can be @code{upward} or @code{downward}.
5285 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
5286 will be amplified, expanding dynamic range in upward direction.
5287 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
5288
5289 @item range
5290 Set the level of gain reduction when the signal is below the threshold.
5291 Default is 0.06125. Allowed range is from 0 to 1.
5292 Setting this to 0 disables reduction and then filter behaves like expander.
5293
5294 @item threshold
5295 If a signal rises above this level the gain reduction is released.
5296 Default is 0.125. Allowed range is from 0 to 1.
5297
5298 @item ratio
5299 Set a ratio about which the signal is reduced.
5300 Default is 2. Allowed range is from 1 to 9000.
5301
5302 @item attack
5303 Amount of milliseconds the signal has to rise above the threshold before gain
5304 reduction stops.
5305 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
5306
5307 @item release
5308 Amount of milliseconds the signal has to fall below the threshold before the
5309 reduction is increased again. Default is 250 milliseconds.
5310 Allowed range is from 0.01 to 9000.
5311
5312 @item makeup
5313 Set amount of amplification of signal after processing.
5314 Default is 1. Allowed range is from 1 to 64.
5315
5316 @item knee
5317 Curve the sharp knee around the threshold to enter gain reduction more softly.
5318 Default is 2.828427125. Allowed range is from 1 to 8.
5319
5320 @item detection
5321 Choose if exact signal should be taken for detection or an RMS like one.
5322 Default is rms. Can be peak or rms.
5323
5324 @item link
5325 Choose if the average level between all channels or the louder channel affects
5326 the reduction.
5327 Default is average. Can be average or maximum.
5328
5329 @item level_sc
5330 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
5331 @end table
5332
5333 @subsection Commands
5334
5335 This filter supports the all above options as @ref{commands}.
5336
5337 @section silencedetect
5338
5339 Detect silence in an audio stream.
5340
5341 This filter logs a message when it detects that the input audio volume is less
5342 or equal to a noise tolerance value for a duration greater or equal to the
5343 minimum detected noise duration.
5344
5345 The printed times and duration are expressed in seconds. The
5346 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
5347 is set on the first frame whose timestamp equals or exceeds the detection
5348 duration and it contains the timestamp of the first frame of the silence.
5349
5350 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
5351 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
5352 keys are set on the first frame after the silence. If @option{mono} is
5353 enabled, and each channel is evaluated separately, the @code{.X}
5354 suffixed keys are used, and @code{X} corresponds to the channel number.
5355
5356 The filter accepts the following options:
5357
5358 @table @option
5359 @item noise, n
5360 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
5361 specified value) or amplitude ratio. Default is -60dB, or 0.001.
5362
5363 @item duration, d
5364 Set silence duration until notification (default is 2 seconds). See
5365 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5366 for the accepted syntax.
5367
5368 @item mono, m
5369 Process each channel separately, instead of combined. By default is disabled.
5370 @end table
5371
5372 @subsection Examples
5373
5374 @itemize
5375 @item
5376 Detect 5 seconds of silence with -50dB noise tolerance:
5377 @example
5378 silencedetect=n=-50dB:d=5
5379 @end example
5380
5381 @item
5382 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
5383 tolerance in @file{silence.mp3}:
5384 @example
5385 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
5386 @end example
5387 @end itemize
5388
5389 @section silenceremove
5390
5391 Remove silence from the beginning, middle or end of the audio.
5392
5393 The filter accepts the following options:
5394
5395 @table @option
5396 @item start_periods
5397 This value is used to indicate if audio should be trimmed at beginning of
5398 the audio. A value of zero indicates no silence should be trimmed from the
5399 beginning. When specifying a non-zero value, it trims audio up until it
5400 finds non-silence. Normally, when trimming silence from beginning of audio
5401 the @var{start_periods} will be @code{1} but it can be increased to higher
5402 values to trim all audio up to specific count of non-silence periods.
5403 Default value is @code{0}.
5404
5405 @item start_duration
5406 Specify the amount of time that non-silence must be detected before it stops
5407 trimming audio. By increasing the duration, bursts of noises can be treated
5408 as silence and trimmed off. Default value is @code{0}.
5409
5410 @item start_threshold
5411 This indicates what sample value should be treated as silence. For digital
5412 audio, a value of @code{0} may be fine but for audio recorded from analog,
5413 you may wish to increase the value to account for background noise.
5414 Can be specified in dB (in case "dB" is appended to the specified value)
5415 or amplitude ratio. Default value is @code{0}.
5416
5417 @item start_silence
5418 Specify max duration of silence at beginning that will be kept after
5419 trimming. Default is 0, which is equal to trimming all samples detected
5420 as silence.
5421
5422 @item start_mode
5423 Specify mode of detection of silence end in start of multi-channel audio.
5424 Can be @var{any} or @var{all}. Default is @var{any}.
5425 With @var{any}, any sample that is detected as non-silence will cause
5426 stopped trimming of silence.
5427 With @var{all}, only if all channels are detected as non-silence will cause
5428 stopped trimming of silence.
5429
5430 @item stop_periods
5431 Set the count for trimming silence from the end of audio.
5432 To remove silence from the middle of a file, specify a @var{stop_periods}
5433 that is negative. This value is then treated as a positive value and is
5434 used to indicate the effect should restart processing as specified by
5435 @var{start_periods}, making it suitable for removing periods of silence
5436 in the middle of the audio.
5437 Default value is @code{0}.
5438
5439 @item stop_duration
5440 Specify a duration of silence that must exist before audio is not copied any
5441 more. By specifying a higher duration, silence that is wanted can be left in
5442 the audio.
5443 Default value is @code{0}.
5444
5445 @item stop_threshold
5446 This is the same as @option{start_threshold} but for trimming silence from
5447 the end of audio.
5448 Can be specified in dB (in case "dB" is appended to the specified value)
5449 or amplitude ratio. Default value is @code{0}.
5450
5451 @item stop_silence
5452 Specify max duration of silence at end that will be kept after
5453 trimming. Default is 0, which is equal to trimming all samples detected
5454 as silence.
5455
5456 @item stop_mode
5457 Specify mode of detection of silence start in end of multi-channel audio.
5458 Can be @var{any} or @var{all}. Default is @var{any}.
5459 With @var{any}, any sample that is detected as non-silence will cause
5460 stopped trimming of silence.
5461 With @var{all}, only if all channels are detected as non-silence will cause
5462 stopped trimming of silence.
5463
5464 @item detection
5465 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
5466 and works better with digital silence which is exactly 0.
5467 Default value is @code{rms}.
5468
5469 @item window
5470 Set duration in number of seconds used to calculate size of window in number
5471 of samples for detecting silence.
5472 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
5473 @end table
5474
5475 @subsection Examples
5476
5477 @itemize
5478 @item
5479 The following example shows how this filter can be used to start a recording
5480 that does not contain the delay at the start which usually occurs between
5481 pressing the record button and the start of the performance:
5482 @example
5483 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
5484 @end example
5485
5486 @item
5487 Trim all silence encountered from beginning to end where there is more than 1
5488 second of silence in audio:
5489 @example
5490 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
5491 @end example
5492
5493 @item
5494 Trim all digital silence samples, using peak detection, from beginning to end
5495 where there is more than 0 samples of digital silence in audio and digital
5496 silence is detected in all channels at same positions in stream:
5497 @example
5498 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
5499 @end example
5500 @end itemize
5501
5502 @section sofalizer
5503
5504 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
5505 loudspeakers around the user for binaural listening via headphones (audio
5506 formats up to 9 channels supported).
5507 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
5508 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
5509 Austrian Academy of Sciences.
5510
5511 To enable compilation of this filter you need to configure FFmpeg with
5512 @code{--enable-libmysofa}.
5513
5514 The filter accepts the following options:
5515
5516 @table @option
5517 @item sofa
5518 Set the SOFA file used for rendering.
5519
5520 @item gain
5521 Set gain applied to audio. Value is in dB. Default is 0.
5522
5523 @item rotation
5524 Set rotation of virtual loudspeakers in deg. Default is 0.
5525
5526 @item elevation
5527 Set elevation of virtual speakers in deg. Default is 0.
5528
5529 @item radius
5530 Set distance in meters between loudspeakers and the listener with near-field
5531 HRTFs. Default is 1.
5532
5533 @item type
5534 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
5535 processing audio in time domain which is slow.
5536 @var{freq} is processing audio in frequency domain which is fast.
5537 Default is @var{freq}.
5538
5539 @item speakers
5540 Set custom positions of virtual loudspeakers. Syntax for this option is:
5541 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5542 Each virtual loudspeaker is described with short channel name following with
5543 azimuth and elevation in degrees.
5544 Each virtual loudspeaker description is separated by '|'.
5545 For example to override front left and front right channel positions use:
5546 'speakers=FL 45 15|FR 345 15'.
5547 Descriptions with unrecognised channel names are ignored.
5548
5549 @item lfegain
5550 Set custom gain for LFE channels. Value is in dB. Default is 0.
5551
5552 @item framesize
5553 Set custom frame size in number of samples. Default is 1024.
5554 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5555 is set to @var{freq}.
5556
5557 @item normalize
5558 Should all IRs be normalized upon importing SOFA file.
5559 By default is enabled.
5560
5561 @item interpolate
5562 Should nearest IRs be interpolated with neighbor IRs if exact position
5563 does not match. By default is disabled.
5564
5565 @item minphase
5566 Minphase all IRs upon loading of SOFA file. By default is disabled.
5567
5568 @item anglestep
5569 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5570
5571 @item radstep
5572 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5573 @end table
5574
5575 @subsection Examples
5576
5577 @itemize
5578 @item
5579 Using ClubFritz6 sofa file:
5580 @example
5581 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5582 @end example
5583
5584 @item
5585 Using ClubFritz12 sofa file and bigger radius with small rotation:
5586 @example
5587 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5588 @end example
5589
5590 @item
5591 Similar as above but with custom speaker positions for front left, front right, back left and back right
5592 and also with custom gain:
5593 @example
5594 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5595 @end example
5596 @end itemize
5597
5598 @section speechnorm
5599 Speech Normalizer.
5600
5601 This filter expands or compresses each half-cycle of audio samples
5602 (local set of samples all above or all below zero and between two nearest zero crossings) depending
5603 on threshold value, so audio reaches target peak value under conditions controlled by below options.
5604
5605 The filter accepts the following options:
5606
5607 @table @option
5608 @item peak, p
5609 Set the expansion target peak value. This specifies the highest allowed absolute amplitude
5610 level for the normalized audio input. Default value is 0.95. Allowed range is from 0.0 to 1.0.
5611
5612 @item expansion, e
5613 Set the maximum expansion factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5614 This option controls maximum local half-cycle of samples expansion. The maximum expansion
5615 would be such that local peak value reaches target peak value but never to surpass it and that
5616 ratio between new and previous peak value does not surpass this option value.
5617
5618 @item compression, c
5619 Set the maximum compression factor. Allowed range is from 1.0 to 50.0. Default value is 2.0.
5620 This option controls maximum local half-cycle of samples compression. This option is used
5621 only if @option{threshold} option is set to value greater than 0.0, then in such cases
5622 when local peak is lower or same as value set by @option{threshold} all samples belonging to
5623 that peak's half-cycle will be compressed by current compression factor.
5624
5625 @item threshold, t
5626 Set the threshold value. Default value is 0.0. Allowed range is from 0.0 to 1.0.
5627 This option specifies which half-cycles of samples will be compressed and which will be expanded.
5628 Any half-cycle samples with their local peak value below or same as this option value will be
5629 compressed by current compression factor, otherwise, if greater than threshold value they will be
5630 expanded with expansion factor so that it could reach peak target value but never surpass it.
5631
5632 @item raise, r
5633 Set the expansion raising amount per each half-cycle of samples. Default value is 0.001.
5634 Allowed range is from 0.0 to 1.0. This controls how fast expansion factor is raised per
5635 each new half-cycle until it reaches @option{expansion} value.
5636 Setting this options too high may lead to distortions.
5637
5638 @item fall, f
5639 Set the compression raising amount per each half-cycle of samples. Default value is 0.001.
5640 Allowed range is from 0.0 to 1.0. This controls how fast compression factor is raised per
5641 each new half-cycle until it reaches @option{compression} value.
5642
5643 @item channels, h
5644 Specify which channels to filter, by default all available channels are filtered.
5645
5646 @item invert, i
5647 Enable inverted filtering, by default is disabled. This inverts interpretation of @option{threshold}
5648 option. When enabled any half-cycle of samples with their local peak value below or same as
5649 @option{threshold} option will be expanded otherwise it will be compressed.
5650
5651 @item link, l
5652 Link channels when calculating gain applied to each filtered channel sample, by default is disabled.
5653 When disabled each filtered channel gain calculation is independent, otherwise when this option
5654 is enabled the minimum of all possible gains for each filtered channel is used.
5655 @end table
5656
5657 @subsection Commands
5658
5659 This filter supports the all above options as @ref{commands}.
5660
5661 @section stereotools
5662
5663 This filter has some handy utilities to manage stereo signals, for converting
5664 M/S stereo recordings to L/R signal while having control over the parameters
5665 or spreading the stereo image of master track.
5666
5667 The filter accepts the following options:
5668
5669 @table @option
5670 @item level_in
5671 Set input level before filtering for both channels. Defaults is 1.
5672 Allowed range is from 0.015625 to 64.
5673
5674 @item level_out
5675 Set output level after filtering for both channels. Defaults is 1.
5676 Allowed range is from 0.015625 to 64.
5677
5678 @item balance_in
5679 Set input balance between both channels. Default is 0.
5680 Allowed range is from -1 to 1.
5681
5682 @item balance_out
5683 Set output balance between both channels. Default is 0.
5684 Allowed range is from -1 to 1.
5685
5686 @item softclip
5687 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5688 clipping. Disabled by default.
5689
5690 @item mutel
5691 Mute the left channel. Disabled by default.
5692
5693 @item muter
5694 Mute the right channel. Disabled by default.
5695
5696 @item phasel
5697 Change the phase of the left channel. Disabled by default.
5698
5699 @item phaser
5700 Change the phase of the right channel. Disabled by default.
5701
5702 @item mode
5703 Set stereo mode. Available values are:
5704
5705 @table @samp
5706 @item lr>lr
5707 Left/Right to Left/Right, this is default.
5708
5709 @item lr>ms
5710 Left/Right to Mid/Side.
5711
5712 @item ms>lr
5713 Mid/Side to Left/Right.
5714
5715 @item lr>ll
5716 Left/Right to Left/Left.
5717
5718 @item lr>rr
5719 Left/Right to Right/Right.
5720
5721 @item lr>l+r
5722 Left/Right to Left + Right.
5723
5724 @item lr>rl
5725 Left/Right to Right/Left.
5726
5727 @item ms>ll
5728 Mid/Side to Left/Left.
5729
5730 @item ms>rr
5731 Mid/Side to Right/Right.
5732
5733 @item ms>rl
5734 Mid/Side to Right/Left.
5735
5736 @item lr>l-r
5737 Left/Right to Left - Right.
5738 @end table
5739
5740 @item slev
5741 Set level of side signal. Default is 1.
5742 Allowed range is from 0.015625 to 64.
5743
5744 @item sbal
5745 Set balance of side signal. Default is 0.
5746 Allowed range is from -1 to 1.
5747
5748 @item mlev
5749 Set level of the middle signal. Default is 1.
5750 Allowed range is from 0.015625 to 64.
5751
5752 @item mpan
5753 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5754
5755 @item base
5756 Set stereo base between mono and inversed channels. Default is 0.
5757 Allowed range is from -1 to 1.
5758
5759 @item delay
5760 Set delay in milliseconds how much to delay left from right channel and
5761 vice versa. Default is 0. Allowed range is from -20 to 20.
5762
5763 @item sclevel
5764 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5765
5766 @item phase
5767 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5768
5769 @item bmode_in, bmode_out
5770 Set balance mode for balance_in/balance_out option.
5771
5772 Can be one of the following:
5773
5774 @table @samp
5775 @item balance
5776 Classic balance mode. Attenuate one channel at time.
5777 Gain is raised up to 1.
5778
5779 @item amplitude
5780 Similar as classic mode above but gain is raised up to 2.
5781
5782 @item power
5783 Equal power distribution, from -6dB to +6dB range.
5784 @end table
5785 @end table
5786
5787 @subsection Commands
5788
5789 This filter supports the all above options as @ref{commands}.
5790
5791 @subsection Examples
5792
5793 @itemize
5794 @item
5795 Apply karaoke like effect:
5796 @example
5797 stereotools=mlev=0.015625
5798 @end example
5799
5800 @item
5801 Convert M/S signal to L/R:
5802 @example
5803 "stereotools=mode=ms>lr"
5804 @end example
5805 @end itemize
5806
5807 @section stereowiden
5808
5809 This filter enhance the stereo effect by suppressing signal common to both
5810 channels and by delaying the signal of left into right and vice versa,
5811 thereby widening the stereo effect.
5812
5813 The filter accepts the following options:
5814
5815 @table @option
5816 @item delay
5817 Time in milliseconds of the delay of left signal into right and vice versa.
5818 Default is 20 milliseconds.
5819
5820 @item feedback
5821 Amount of gain in delayed signal into right and vice versa. Gives a delay
5822 effect of left signal in right output and vice versa which gives widening
5823 effect. Default is 0.3.
5824
5825 @item crossfeed
5826 Cross feed of left into right with inverted phase. This helps in suppressing
5827 the mono. If the value is 1 it will cancel all the signal common to both
5828 channels. Default is 0.3.
5829
5830 @item drymix
5831 Set level of input signal of original channel. Default is 0.8.
5832 @end table
5833
5834 @subsection Commands
5835
5836 This filter supports the all above options except @code{delay} as @ref{commands}.
5837
5838 @section superequalizer
5839 Apply 18 band equalizer.
5840
5841 The filter accepts the following options:
5842 @table @option
5843 @item 1b
5844 Set 65Hz band gain.
5845 @item 2b
5846 Set 92Hz band gain.
5847 @item 3b
5848 Set 131Hz band gain.
5849 @item 4b
5850 Set 185Hz band gain.
5851 @item 5b
5852 Set 262Hz band gain.
5853 @item 6b
5854 Set 370Hz band gain.
5855 @item 7b
5856 Set 523Hz band gain.
5857 @item 8b
5858 Set 740Hz band gain.
5859 @item 9b
5860 Set 1047Hz band gain.
5861 @item 10b
5862 Set 1480Hz band gain.
5863 @item 11b
5864 Set 2093Hz band gain.
5865 @item 12b
5866 Set 2960Hz band gain.
5867 @item 13b
5868 Set 4186Hz band gain.
5869 @item 14b
5870 Set 5920Hz band gain.
5871 @item 15b
5872 Set 8372Hz band gain.
5873 @item 16b
5874 Set 11840Hz band gain.
5875 @item 17b
5876 Set 16744Hz band gain.
5877 @item 18b
5878 Set 20000Hz band gain.
5879 @end table
5880
5881 @section surround
5882 Apply audio surround upmix filter.
5883
5884 This filter allows to produce multichannel output from audio stream.
5885
5886 The filter accepts the following options:
5887
5888 @table @option
5889 @item chl_out
5890 Set output channel layout. By default, this is @var{5.1}.
5891
5892 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5893 for the required syntax.
5894
5895 @item chl_in
5896 Set input channel layout. By default, this is @var{stereo}.
5897
5898 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5899 for the required syntax.
5900
5901 @item level_in
5902 Set input volume level. By default, this is @var{1}.
5903
5904 @item level_out
5905 Set output volume level. By default, this is @var{1}.
5906
5907 @item lfe
5908 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5909
5910 @item lfe_low
5911 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5912
5913 @item lfe_high
5914 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5915
5916 @item lfe_mode
5917 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5918 In @var{add} mode, LFE channel is created from input audio and added to output.
5919 In @var{sub} mode, LFE channel is created from input audio and added to output but
5920 also all non-LFE output channels are subtracted with output LFE channel.
5921
5922 @item angle
5923 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5924 Default is @var{90}.
5925
5926 @item fc_in
5927 Set front center input volume. By default, this is @var{1}.
5928
5929 @item fc_out
5930 Set front center output volume. By default, this is @var{1}.
5931
5932 @item fl_in
5933 Set front left input volume. By default, this is @var{1}.
5934
5935 @item fl_out
5936 Set front left output volume. By default, this is @var{1}.
5937
5938 @item fr_in
5939 Set front right input volume. By default, this is @var{1}.
5940
5941 @item fr_out
5942 Set front right output volume. By default, this is @var{1}.
5943
5944 @item sl_in
5945 Set side left input volume. By default, this is @var{1}.
5946
5947 @item sl_out
5948 Set side left output volume. By default, this is @var{1}.
5949
5950 @item sr_in
5951 Set side right input volume. By default, this is @var{1}.
5952
5953 @item sr_out
5954 Set side right output volume. By default, this is @var{1}.
5955
5956 @item bl_in
5957 Set back left input volume. By default, this is @var{1}.
5958
5959 @item bl_out
5960 Set back left output volume. By default, this is @var{1}.
5961
5962 @item br_in
5963 Set back right input volume. By default, this is @var{1}.
5964
5965 @item br_out
5966 Set back right output volume. By default, this is @var{1}.
5967
5968 @item bc_in
5969 Set back center input volume. By default, this is @var{1}.
5970
5971 @item bc_out
5972 Set back center output volume. By default, this is @var{1}.
5973
5974 @item lfe_in
5975 Set LFE input volume. By default, this is @var{1}.
5976
5977 @item lfe_out
5978 Set LFE output volume. By default, this is @var{1}.
5979
5980 @item allx
5981 Set spread usage of stereo image across X axis for all channels.
5982
5983 @item ally
5984 Set spread usage of stereo image across Y axis for all channels.
5985
5986 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5987 Set spread usage of stereo image across X axis for each channel.
5988
5989 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5990 Set spread usage of stereo image across Y axis for each channel.
5991
5992 @item win_size
5993 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5994
5995 @item win_func
5996 Set window function.
5997
5998 It accepts the following values:
5999 @table @samp
6000 @item rect
6001 @item bartlett
6002 @item hann, hanning
6003 @item hamming
6004 @item blackman
6005 @item welch
6006 @item flattop
6007 @item bharris
6008 @item bnuttall
6009 @item bhann
6010 @item sine
6011 @item nuttall
6012 @item lanczos
6013 @item gauss
6014 @item tukey
6015 @item dolph
6016 @item cauchy
6017 @item parzen
6018 @item poisson
6019 @item bohman
6020 @end table
6021 Default is @code{hann}.
6022
6023 @item overlap
6024 Set window overlap. If set to 1, the recommended overlap for selected
6025 window function will be picked. Default is @code{0.5}.
6026 @end table
6027
6028 @section treble, highshelf
6029
6030 Boost or cut treble (upper) frequencies of the audio using a two-pole
6031 shelving filter with a response similar to that of a standard
6032 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
6033
6034 The filter accepts the following options:
6035
6036 @table @option
6037 @item gain, g
6038 Give the gain at whichever is the lower of ~22 kHz and the
6039 Nyquist frequency. Its useful range is about -20 (for a large cut)
6040 to +20 (for a large boost). Beware of clipping when using a positive gain.
6041
6042 @item frequency, f
6043 Set the filter's central frequency and so can be used
6044 to extend or reduce the frequency range to be boosted or cut.
6045 The default value is @code{3000} Hz.
6046
6047 @item width_type, t
6048 Set method to specify band-width of filter.
6049 @table @option
6050 @item h
6051 Hz
6052 @item q
6053 Q-Factor
6054 @item o
6055 octave
6056 @item s
6057 slope
6058 @item k
6059 kHz
6060 @end table
6061
6062 @item width, w
6063 Determine how steep is the filter's shelf transition.
6064
6065 @item poles, p
6066 Set number of poles. Default is 2.
6067
6068 @item mix, m
6069 How much to use filtered signal in output. Default is 1.
6070 Range is between 0 and 1.
6071
6072 @item channels, c
6073 Specify which channels to filter, by default all available are filtered.
6074
6075 @item normalize, n
6076 Normalize biquad coefficients, by default is disabled.
6077 Enabling it will normalize magnitude response at DC to 0dB.
6078
6079 @item transform, a
6080 Set transform type of IIR filter.
6081 @table @option
6082 @item di
6083 @item dii
6084 @item tdii
6085 @item latt
6086 @end table
6087
6088 @item precision, r
6089 Set precison of filtering.
6090 @table @option
6091 @item auto
6092 Pick automatic sample format depending on surround filters.
6093 @item s16
6094 Always use signed 16-bit.
6095 @item s32
6096 Always use signed 32-bit.
6097 @item f32
6098 Always use float 32-bit.
6099 @item f64
6100 Always use float 64-bit.
6101 @end table
6102 @end table
6103
6104 @subsection Commands
6105
6106 This filter supports the following commands:
6107 @table @option
6108 @item frequency, f
6109 Change treble frequency.
6110 Syntax for the command is : "@var{frequency}"
6111
6112 @item width_type, t
6113 Change treble width_type.
6114 Syntax for the command is : "@var{width_type}"
6115
6116 @item width, w
6117 Change treble width.
6118 Syntax for the command is : "@var{width}"
6119
6120 @item gain, g
6121 Change treble gain.
6122 Syntax for the command is : "@var{gain}"
6123
6124 @item mix, m
6125 Change treble mix.
6126 Syntax for the command is : "@var{mix}"
6127 @end table
6128
6129 @section tremolo
6130
6131 Sinusoidal amplitude modulation.
6132
6133 The filter accepts the following options:
6134
6135 @table @option
6136 @item f
6137 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
6138 (20 Hz or lower) will result in a tremolo effect.
6139 This filter may also be used as a ring modulator by specifying
6140 a modulation frequency higher than 20 Hz.
6141 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6142
6143 @item d
6144 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6145 Default value is 0.5.
6146 @end table
6147
6148 @section vibrato
6149
6150 Sinusoidal phase modulation.
6151
6152 The filter accepts the following options:
6153
6154 @table @option
6155 @item f
6156 Modulation frequency in Hertz.
6157 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
6158
6159 @item d
6160 Depth of modulation as a percentage. Range is 0.0 - 1.0.
6161 Default value is 0.5.
6162 @end table
6163
6164 @section volume
6165
6166 Adjust the input audio volume.
6167
6168 It accepts the following parameters:
6169 @table @option
6170
6171 @item volume
6172 Set audio volume expression.
6173
6174 Output values are clipped to the maximum value.
6175
6176 The output audio volume is given by the relation:
6177 @example
6178 @var{output_volume} = @var{volume} * @var{input_volume}
6179 @end example
6180
6181 The default value for @var{volume} is "1.0".
6182
6183 @item precision
6184 This parameter represents the mathematical precision.
6185
6186 It determines which input sample formats will be allowed, which affects the
6187 precision of the volume scaling.
6188
6189 @table @option
6190 @item fixed
6191 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
6192 @item float
6193 32-bit floating-point; this limits input sample format to FLT. (default)
6194 @item double
6195 64-bit floating-point; this limits input sample format to DBL.
6196 @end table
6197
6198 @item replaygain
6199 Choose the behaviour on encountering ReplayGain side data in input frames.
6200
6201 @table @option
6202 @item drop
6203 Remove ReplayGain side data, ignoring its contents (the default).
6204
6205 @item ignore
6206 Ignore ReplayGain side data, but leave it in the frame.
6207
6208 @item track
6209 Prefer the track gain, if present.
6210
6211 @item album
6212 Prefer the album gain, if present.
6213 @end table
6214
6215 @item replaygain_preamp
6216 Pre-amplification gain in dB to apply to the selected replaygain gain.
6217
6218 Default value for @var{replaygain_preamp} is 0.0.
6219
6220 @item replaygain_noclip
6221 Prevent clipping by limiting the gain applied.
6222
6223 Default value for @var{replaygain_noclip} is 1.
6224
6225 @item eval
6226 Set when the volume expression is evaluated.
6227
6228 It accepts the following values:
6229 @table @samp
6230 @item once
6231 only evaluate expression once during the filter initialization, or
6232 when the @samp{volume} command is sent
6233
6234 @item frame
6235 evaluate expression for each incoming frame
6236 @end table
6237
6238 Default value is @samp{once}.
6239 @end table
6240
6241 The volume expression can contain the following parameters.
6242
6243 @table @option
6244 @item n
6245 frame number (starting at zero)
6246 @item nb_channels
6247 number of channels
6248 @item nb_consumed_samples
6249 number of samples consumed by the filter
6250 @item nb_samples
6251 number of samples in the current frame
6252 @item pos
6253 original frame position in the file
6254 @item pts
6255 frame PTS
6256 @item sample_rate
6257 sample rate
6258 @item startpts
6259 PTS at start of stream
6260 @item startt
6261 time at start of stream
6262 @item t
6263 frame time
6264 @item tb
6265 timestamp timebase
6266 @item volume
6267 last set volume value
6268 @end table
6269
6270 Note that when @option{eval} is set to @samp{once} only the
6271 @var{sample_rate} and @var{tb} variables are available, all other
6272 variables will evaluate to NAN.
6273
6274 @subsection Commands
6275
6276 This filter supports the following commands:
6277 @table @option
6278 @item volume
6279 Modify the volume expression.
6280 The command accepts the same syntax of the corresponding option.
6281
6282 If the specified expression is not valid, it is kept at its current
6283 value.
6284 @end table
6285
6286 @subsection Examples
6287
6288 @itemize
6289 @item
6290 Halve the input audio volume:
6291 @example
6292 volume=volume=0.5
6293 volume=volume=1/2
6294 volume=volume=-6.0206dB
6295 @end example
6296
6297 In all the above example the named key for @option{volume} can be
6298 omitted, for example like in:
6299 @example
6300 volume=0.5
6301 @end example
6302
6303 @item
6304 Increase input audio power by 6 decibels using fixed-point precision:
6305 @example
6306 volume=volume=6dB:precision=fixed
6307 @end example
6308
6309 @item
6310 Fade volume after time 10 with an annihilation period of 5 seconds:
6311 @example
6312 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
6313 @end example
6314 @end itemize
6315
6316 @section volumedetect
6317
6318 Detect the volume of the input video.
6319
6320 The filter has no parameters. The input is not modified. Statistics about
6321 the volume will be printed in the log when the input stream end is reached.
6322
6323 In particular it will show the mean volume (root mean square), maximum
6324 volume (on a per-sample basis), and the beginning of a histogram of the
6325 registered volume values (from the maximum value to a cumulated 1/1000 of
6326 the samples).
6327
6328 All volumes are in decibels relative to the maximum PCM value.
6329
6330 @subsection Examples
6331
6332 Here is an excerpt of the output:
6333 @example
6334 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
6335 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
6336 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
6337 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
6338 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
6339 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
6340 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
6341 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
6342 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
6343 @end example
6344
6345 It means that:
6346 @itemize
6347 @item
6348 The mean square energy is approximately -27 dB, or 10^-2.7.
6349 @item
6350 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
6351 @item
6352 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
6353 @end itemize
6354
6355 In other words, raising the volume by +4 dB does not cause any clipping,
6356 raising it by +5 dB causes clipping for 6 samples, etc.
6357
6358 @c man end AUDIO FILTERS
6359
6360 @chapter Audio Sources
6361 @c man begin AUDIO SOURCES
6362
6363 Below is a description of the currently available audio sources.
6364
6365 @section abuffer
6366
6367 Buffer audio frames, and make them available to the filter chain.
6368
6369 This source is mainly intended for a programmatic use, in particular
6370 through the interface defined in @file{libavfilter/buffersrc.h}.
6371
6372 It accepts the following parameters:
6373 @table @option
6374
6375 @item time_base
6376 The timebase which will be used for timestamps of submitted frames. It must be
6377 either a floating-point number or in @var{numerator}/@var{denominator} form.
6378
6379 @item sample_rate
6380 The sample rate of the incoming audio buffers.
6381
6382 @item sample_fmt
6383 The sample format of the incoming audio buffers.
6384 Either a sample format name or its corresponding integer representation from
6385 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
6386
6387 @item channel_layout
6388 The channel layout of the incoming audio buffers.
6389 Either a channel layout name from channel_layout_map in
6390 @file{libavutil/channel_layout.c} or its corresponding integer representation
6391 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
6392
6393 @item channels
6394 The number of channels of the incoming audio buffers.
6395 If both @var{channels} and @var{channel_layout} are specified, then they
6396 must be consistent.
6397
6398 @end table
6399
6400 @subsection Examples
6401
6402 @example
6403 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
6404 @end example
6405
6406 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
6407 Since the sample format with name "s16p" corresponds to the number
6408 6 and the "stereo" channel layout corresponds to the value 0x3, this is
6409 equivalent to:
6410 @example
6411 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
6412 @end example
6413
6414 @section aevalsrc
6415
6416 Generate an audio signal specified by an expression.
6417
6418 This source accepts in input one or more expressions (one for each
6419 channel), which are evaluated and used to generate a corresponding
6420 audio signal.
6421
6422 This source accepts the following options:
6423
6424 @table @option
6425 @item exprs
6426 Set the '|'-separated expressions list for each separate channel. In case the
6427 @option{channel_layout} option is not specified, the selected channel layout
6428 depends on the number of provided expressions. Otherwise the last
6429 specified expression is applied to the remaining output channels.
6430
6431 @item channel_layout, c
6432 Set the channel layout. The number of channels in the specified layout
6433 must be equal to the number of specified expressions.
6434
6435 @item duration, d
6436 Set the minimum duration of the sourced audio. See
6437 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6438 for the accepted syntax.
6439 Note that the resulting duration may be greater than the specified
6440 duration, as the generated audio is always cut at the end of a
6441 complete frame.
6442
6443 If not specified, or the expressed duration is negative, the audio is
6444 supposed to be generated forever.
6445
6446 @item nb_samples, n
6447 Set the number of samples per channel per each output frame,
6448 default to 1024.
6449
6450 @item sample_rate, s
6451 Specify the sample rate, default to 44100.
6452 @end table
6453
6454 Each expression in @var{exprs} can contain the following constants:
6455
6456 @table @option
6457 @item n
6458 number of the evaluated sample, starting from 0
6459
6460 @item t
6461 time of the evaluated sample expressed in seconds, starting from 0
6462
6463 @item s
6464 sample rate
6465
6466 @end table
6467
6468 @subsection Examples
6469
6470 @itemize
6471 @item
6472 Generate silence:
6473 @example
6474 aevalsrc=0
6475 @end example
6476
6477 @item
6478 Generate a sin signal with frequency of 440 Hz, set sample rate to
6479 8000 Hz:
6480 @example
6481 aevalsrc="sin(440*2*PI*t):s=8000"
6482 @end example
6483
6484 @item
6485 Generate a two channels signal, specify the channel layout (Front
6486 Center + Back Center) explicitly:
6487 @example
6488 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
6489 @end example
6490
6491 @item
6492 Generate white noise:
6493 @example
6494 aevalsrc="-2+random(0)"
6495 @end example
6496
6497 @item
6498 Generate an amplitude modulated signal:
6499 @example
6500 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
6501 @end example
6502
6503 @item
6504 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
6505 @example
6506 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
6507 @end example
6508
6509 @end itemize
6510
6511 @section afirsrc
6512
6513 Generate a FIR coefficients using frequency sampling method.
6514
6515 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6516
6517 The filter accepts the following options:
6518
6519 @table @option
6520 @item taps, t
6521 Set number of filter coefficents in output audio stream.
6522 Default value is 1025.
6523
6524 @item frequency, f
6525 Set frequency points from where magnitude and phase are set.
6526 This must be in non decreasing order, and first element must be 0, while last element
6527 must be 1. Elements are separated by white spaces.
6528
6529 @item magnitude, m
6530 Set magnitude value for every frequency point set by @option{frequency}.
6531 Number of values must be same as number of frequency points.
6532 Values are separated by white spaces.
6533
6534 @item phase, p
6535 Set phase value for every frequency point set by @option{frequency}.
6536 Number of values must be same as number of frequency points.
6537 Values are separated by white spaces.
6538
6539 @item sample_rate, r
6540 Set sample rate, default is 44100.
6541
6542 @item nb_samples, n
6543 Set number of samples per each frame. Default is 1024.
6544
6545 @item win_func, w
6546 Set window function. Default is blackman.
6547 @end table
6548
6549 @section anullsrc
6550
6551 The null audio source, return unprocessed audio frames. It is mainly useful
6552 as a template and to be employed in analysis / debugging tools, or as
6553 the source for filters which ignore the input data (for example the sox
6554 synth filter).
6555
6556 This source accepts the following options:
6557
6558 @table @option
6559
6560 @item channel_layout, cl
6561
6562 Specifies the channel layout, and can be either an integer or a string
6563 representing a channel layout. The default value of @var{channel_layout}
6564 is "stereo".
6565
6566 Check the channel_layout_map definition in
6567 @file{libavutil/channel_layout.c} for the mapping between strings and
6568 channel layout values.
6569
6570 @item sample_rate, r
6571 Specifies the sample rate, and defaults to 44100.
6572
6573 @item nb_samples, n
6574 Set the number of samples per requested frames.
6575
6576 @item duration, d
6577 Set the duration of the sourced audio. See
6578 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
6579 for the accepted syntax.
6580
6581 If not specified, or the expressed duration is negative, the audio is
6582 supposed to be generated forever.
6583 @end table
6584
6585 @subsection Examples
6586
6587 @itemize
6588 @item
6589 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
6590 @example
6591 anullsrc=r=48000:cl=4
6592 @end example
6593
6594 @item
6595 Do the same operation with a more obvious syntax:
6596 @example
6597 anullsrc=r=48000:cl=mono
6598 @end example
6599 @end itemize
6600
6601 All the parameters need to be explicitly defined.
6602
6603 @section flite
6604
6605 Synthesize a voice utterance using the libflite library.
6606
6607 To enable compilation of this filter you need to configure FFmpeg with
6608 @code{--enable-libflite}.
6609
6610 Note that versions of the flite library prior to 2.0 are not thread-safe.
6611
6612 The filter accepts the following options:
6613
6614 @table @option
6615
6616 @item list_voices
6617 If set to 1, list the names of the available voices and exit
6618 immediately. Default value is 0.
6619
6620 @item nb_samples, n
6621 Set the maximum number of samples per frame. Default value is 512.
6622
6623 @item textfile
6624 Set the filename containing the text to speak.
6625
6626 @item text
6627 Set the text to speak.
6628
6629 @item voice, v
6630 Set the voice to use for the speech synthesis. Default value is
6631 @code{kal}. See also the @var{list_voices} option.
6632 @end table
6633
6634 @subsection Examples
6635
6636 @itemize
6637 @item
6638 Read from file @file{speech.txt}, and synthesize the text using the
6639 standard flite voice:
6640 @example
6641 flite=textfile=speech.txt
6642 @end example
6643
6644 @item
6645 Read the specified text selecting the @code{slt} voice:
6646 @example
6647 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6648 @end example
6649
6650 @item
6651 Input text to ffmpeg:
6652 @example
6653 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6654 @end example
6655
6656 @item
6657 Make @file{ffplay} speak the specified text, using @code{flite} and
6658 the @code{lavfi} device:
6659 @example
6660 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6661 @end example
6662 @end itemize
6663
6664 For more information about libflite, check:
6665 @url{http://www.festvox.org/flite/}
6666
6667 @section anoisesrc
6668
6669 Generate a noise audio signal.
6670
6671 The filter accepts the following options:
6672
6673 @table @option
6674 @item sample_rate, r
6675 Specify the sample rate. Default value is 48000 Hz.
6676
6677 @item amplitude, a
6678 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6679 is 1.0.
6680
6681 @item duration, d
6682 Specify the duration of the generated audio stream. Not specifying this option
6683 results in noise with an infinite length.
6684
6685 @item color, colour, c
6686 Specify the color of noise. Available noise colors are white, pink, brown,
6687 blue, violet and velvet. Default color is white.
6688
6689 @item seed, s
6690 Specify a value used to seed the PRNG.
6691
6692 @item nb_samples, n
6693 Set the number of samples per each output frame, default is 1024.
6694 @end table
6695
6696 @subsection Examples
6697
6698 @itemize
6699
6700 @item
6701 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6702 @example
6703 anoisesrc=d=60:c=pink:r=44100:a=0.5
6704 @end example
6705 @end itemize
6706
6707 @section hilbert
6708
6709 Generate odd-tap Hilbert transform FIR coefficients.
6710
6711 The resulting stream can be used with @ref{afir} filter for phase-shifting
6712 the signal by 90 degrees.
6713
6714 This is used in many matrix coding schemes and for analytic signal generation.
6715 The process is often written as a multiplication by i (or j), the imaginary unit.
6716
6717 The filter accepts the following options:
6718
6719 @table @option
6720
6721 @item sample_rate, s
6722 Set sample rate, default is 44100.
6723
6724 @item taps, t
6725 Set length of FIR filter, default is 22051.
6726
6727 @item nb_samples, n
6728 Set number of samples per each frame.
6729
6730 @item win_func, w
6731 Set window function to be used when generating FIR coefficients.
6732 @end table
6733
6734 @section sinc
6735
6736 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6737
6738 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6739
6740 The filter accepts the following options:
6741
6742 @table @option
6743 @item sample_rate, r
6744 Set sample rate, default is 44100.
6745
6746 @item nb_samples, n
6747 Set number of samples per each frame. Default is 1024.
6748
6749 @item hp
6750 Set high-pass frequency. Default is 0.
6751
6752 @item lp
6753 Set low-pass frequency. Default is 0.
6754 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6755 is higher than 0 then filter will create band-pass filter coefficients,
6756 otherwise band-reject filter coefficients.
6757
6758 @item phase
6759 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6760
6761 @item beta
6762 Set Kaiser window beta.
6763
6764 @item att
6765 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6766
6767 @item round
6768 Enable rounding, by default is disabled.
6769
6770 @item hptaps
6771 Set number of taps for high-pass filter.
6772
6773 @item lptaps
6774 Set number of taps for low-pass filter.
6775 @end table
6776
6777 @section sine
6778
6779 Generate an audio signal made of a sine wave with amplitude 1/8.
6780
6781 The audio signal is bit-exact.
6782
6783 The filter accepts the following options:
6784
6785 @table @option
6786
6787 @item frequency, f
6788 Set the carrier frequency. Default is 440 Hz.
6789
6790 @item beep_factor, b
6791 Enable a periodic beep every second with frequency @var{beep_factor} times
6792 the carrier frequency. Default is 0, meaning the beep is disabled.
6793
6794 @item sample_rate, r
6795 Specify the sample rate, default is 44100.
6796
6797 @item duration, d
6798 Specify the duration of the generated audio stream.
6799
6800 @item samples_per_frame
6801 Set the number of samples per output frame.
6802
6803 The expression can contain the following constants:
6804
6805 @table @option
6806 @item n
6807 The (sequential) number of the output audio frame, starting from 0.
6808
6809 @item pts
6810 The PTS (Presentation TimeStamp) of the output audio frame,
6811 expressed in @var{TB} units.
6812
6813 @item t
6814 The PTS of the output audio frame, expressed in seconds.
6815
6816 @item TB
6817 The timebase of the output audio frames.
6818 @end table
6819
6820 Default is @code{1024}.
6821 @end table
6822
6823 @subsection Examples
6824
6825 @itemize
6826
6827 @item
6828 Generate a simple 440 Hz sine wave:
6829 @example
6830 sine
6831 @end example
6832
6833 @item
6834 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6835 @example
6836 sine=220:4:d=5
6837 sine=f=220:b=4:d=5
6838 sine=frequency=220:beep_factor=4:duration=5
6839 @end example
6840
6841 @item
6842 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6843 pattern:
6844 @example
6845 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6846 @end example
6847 @end itemize
6848
6849 @c man end AUDIO SOURCES
6850
6851 @chapter Audio Sinks
6852 @c man begin AUDIO SINKS
6853
6854 Below is a description of the currently available audio sinks.
6855
6856 @section abuffersink
6857
6858 Buffer audio frames, and make them available to the end of filter chain.
6859
6860 This sink is mainly intended for programmatic use, in particular
6861 through the interface defined in @file{libavfilter/buffersink.h}
6862 or the options system.
6863
6864 It accepts a pointer to an AVABufferSinkContext structure, which
6865 defines the incoming buffers' formats, to be passed as the opaque
6866 parameter to @code{avfilter_init_filter} for initialization.
6867 @section anullsink
6868
6869 Null audio sink; do absolutely nothing with the input audio. It is
6870 mainly useful as a template and for use in analysis / debugging
6871 tools.
6872
6873 @c man end AUDIO SINKS
6874
6875 @chapter Video Filters
6876 @c man begin VIDEO FILTERS
6877
6878 When you configure your FFmpeg build, you can disable any of the
6879 existing filters using @code{--disable-filters}.
6880 The configure output will show the video filters included in your
6881 build.
6882
6883 Below is a description of the currently available video filters.
6884
6885 @section addroi
6886
6887 Mark a region of interest in a video frame.
6888
6889 The frame data is passed through unchanged, but metadata is attached
6890 to the frame indicating regions of interest which can affect the
6891 behaviour of later encoding.  Multiple regions can be marked by
6892 applying the filter multiple times.
6893
6894 @table @option
6895 @item x
6896 Region distance in pixels from the left edge of the frame.
6897 @item y
6898 Region distance in pixels from the top edge of the frame.
6899 @item w
6900 Region width in pixels.
6901 @item h
6902 Region height in pixels.
6903
6904 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6905 and may contain the following variables:
6906 @table @option
6907 @item iw
6908 Width of the input frame.
6909 @item ih
6910 Height of the input frame.
6911 @end table
6912
6913 @item qoffset
6914 Quantisation offset to apply within the region.
6915
6916 This must be a real value in the range -1 to +1.  A value of zero
6917 indicates no quality change.  A negative value asks for better quality
6918 (less quantisation), while a positive value asks for worse quality
6919 (greater quantisation).
6920
6921 The range is calibrated so that the extreme values indicate the
6922 largest possible offset - if the rest of the frame is encoded with the
6923 worst possible quality, an offset of -1 indicates that this region
6924 should be encoded with the best possible quality anyway.  Intermediate
6925 values are then interpolated in some codec-dependent way.
6926
6927 For example, in 10-bit H.264 the quantisation parameter varies between
6928 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6929 this region should be encoded with a QP around one-tenth of the full
6930 range better than the rest of the frame.  So, if most of the frame
6931 were to be encoded with a QP of around 30, this region would get a QP
6932 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6933 An extreme value of -1 would indicate that this region should be
6934 encoded with the best possible quality regardless of the treatment of
6935 the rest of the frame - that is, should be encoded at a QP of -12.
6936 @item clear
6937 If set to true, remove any existing regions of interest marked on the
6938 frame before adding the new one.
6939 @end table
6940
6941 @subsection Examples
6942
6943 @itemize
6944 @item
6945 Mark the centre quarter of the frame as interesting.
6946 @example
6947 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6948 @end example
6949 @item
6950 Mark the 100-pixel-wide region on the left edge of the frame as very
6951 uninteresting (to be encoded at much lower quality than the rest of
6952 the frame).
6953 @example
6954 addroi=0:0:100:ih:+1/5
6955 @end example
6956 @end itemize
6957
6958 @section alphaextract
6959
6960 Extract the alpha component from the input as a grayscale video. This
6961 is especially useful with the @var{alphamerge} filter.
6962
6963 @section alphamerge
6964
6965 Add or replace the alpha component of the primary input with the
6966 grayscale value of a second input. This is intended for use with
6967 @var{alphaextract} to allow the transmission or storage of frame
6968 sequences that have alpha in a format that doesn't support an alpha
6969 channel.
6970
6971 For example, to reconstruct full frames from a normal YUV-encoded video
6972 and a separate video created with @var{alphaextract}, you might use:
6973 @example
6974 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6975 @end example
6976
6977 @section amplify
6978
6979 Amplify differences between current pixel and pixels of adjacent frames in
6980 same pixel location.
6981
6982 This filter accepts the following options:
6983
6984 @table @option
6985 @item radius
6986 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6987 For example radius of 3 will instruct filter to calculate average of 7 frames.
6988
6989 @item factor
6990 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6991
6992 @item threshold
6993 Set threshold for difference amplification. Any difference greater or equal to
6994 this value will not alter source pixel. Default is 10.
6995 Allowed range is from 0 to 65535.
6996
6997 @item tolerance
6998 Set tolerance for difference amplification. Any difference lower to
6999 this value will not alter source pixel. Default is 0.
7000 Allowed range is from 0 to 65535.
7001
7002 @item low
7003 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7004 This option controls maximum possible value that will decrease source pixel value.
7005
7006 @item high
7007 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
7008 This option controls maximum possible value that will increase source pixel value.
7009
7010 @item planes
7011 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
7012 @end table
7013
7014 @subsection Commands
7015
7016 This filter supports the following @ref{commands} that corresponds to option of same name:
7017 @table @option
7018 @item factor
7019 @item threshold
7020 @item tolerance
7021 @item low
7022 @item high
7023 @item planes
7024 @end table
7025
7026 @section ass
7027
7028 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
7029 and libavformat to work. On the other hand, it is limited to ASS (Advanced
7030 Substation Alpha) subtitles files.
7031
7032 This filter accepts the following option in addition to the common options from
7033 the @ref{subtitles} filter:
7034
7035 @table @option
7036 @item shaping
7037 Set the shaping engine
7038
7039 Available values are:
7040 @table @samp
7041 @item auto
7042 The default libass shaping engine, which is the best available.
7043 @item simple
7044 Fast, font-agnostic shaper that can do only substitutions
7045 @item complex
7046 Slower shaper using OpenType for substitutions and positioning
7047 @end table
7048
7049 The default is @code{auto}.
7050 @end table
7051
7052 @section atadenoise
7053 Apply an Adaptive Temporal Averaging Denoiser to the video input.
7054
7055 The filter accepts the following options:
7056
7057 @table @option
7058 @item 0a
7059 Set threshold A for 1st plane. Default is 0.02.
7060 Valid range is 0 to 0.3.
7061
7062 @item 0b
7063 Set threshold B for 1st plane. Default is 0.04.
7064 Valid range is 0 to 5.
7065
7066 @item 1a
7067 Set threshold A for 2nd plane. Default is 0.02.
7068 Valid range is 0 to 0.3.
7069
7070 @item 1b
7071 Set threshold B for 2nd plane. Default is 0.04.
7072 Valid range is 0 to 5.
7073
7074 @item 2a
7075 Set threshold A for 3rd plane. Default is 0.02.
7076 Valid range is 0 to 0.3.
7077
7078 @item 2b
7079 Set threshold B for 3rd plane. Default is 0.04.
7080 Valid range is 0 to 5.
7081
7082 Threshold A is designed to react on abrupt changes in the input signal and
7083 threshold B is designed to react on continuous changes in the input signal.
7084
7085 @item s
7086 Set number of frames filter will use for averaging. Default is 9. Must be odd
7087 number in range [5, 129].
7088
7089 @item p
7090 Set what planes of frame filter will use for averaging. Default is all.
7091
7092 @item a
7093 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
7094 Alternatively can be set to @code{s} serial.
7095
7096 Parallel can be faster then serial, while other way around is never true.
7097 Parallel will abort early on first change being greater then thresholds, while serial
7098 will continue processing other side of frames if they are equal or below thresholds.
7099 @end table
7100
7101 @subsection Commands
7102 This filter supports same @ref{commands} as options except option @code{s}.
7103 The command accepts the same syntax of the corresponding option.
7104
7105 @section avgblur
7106
7107 Apply average blur filter.
7108
7109 The filter accepts the following options:
7110
7111 @table @option
7112 @item sizeX
7113 Set horizontal radius size.
7114
7115 @item planes
7116 Set which planes to filter. By default all planes are filtered.
7117
7118 @item sizeY
7119 Set vertical radius size, if zero it will be same as @code{sizeX}.
7120 Default is @code{0}.
7121 @end table
7122
7123 @subsection Commands
7124 This filter supports same commands as options.
7125 The command accepts the same syntax of the corresponding option.
7126
7127 If the specified expression is not valid, it is kept at its current
7128 value.
7129
7130 @section bbox
7131
7132 Compute the bounding box for the non-black pixels in the input frame
7133 luminance plane.
7134
7135 This filter computes the bounding box containing all the pixels with a
7136 luminance value greater than the minimum allowed value.
7137 The parameters describing the bounding box are printed on the filter
7138 log.
7139
7140 The filter accepts the following option:
7141
7142 @table @option
7143 @item min_val
7144 Set the minimal luminance value. Default is @code{16}.
7145 @end table
7146
7147 @subsection Commands
7148
7149 This filter supports the all above options as @ref{commands}.
7150
7151 @section bilateral
7152 Apply bilateral filter, spatial smoothing while preserving edges.
7153
7154 The filter accepts the following options:
7155 @table @option
7156 @item sigmaS
7157 Set sigma of gaussian function to calculate spatial weight.
7158 Allowed range is 0 to 512. Default is 0.1.
7159
7160 @item sigmaR
7161 Set sigma of gaussian function to calculate range weight.
7162 Allowed range is 0 to 1. Default is 0.1.
7163
7164 @item planes
7165 Set planes to filter. Default is first only.
7166 @end table
7167
7168 @subsection Commands
7169
7170 This filter supports the all above options as @ref{commands}.
7171
7172 @section bitplanenoise
7173
7174 Show and measure bit plane noise.
7175
7176 The filter accepts the following options:
7177
7178 @table @option
7179 @item bitplane
7180 Set which plane to analyze. Default is @code{1}.
7181
7182 @item filter
7183 Filter out noisy pixels from @code{bitplane} set above.
7184 Default is disabled.
7185 @end table
7186
7187 @section blackdetect
7188
7189 Detect video intervals that are (almost) completely black. Can be
7190 useful to detect chapter transitions, commercials, or invalid
7191 recordings.
7192
7193 The filter outputs its detection analysis to both the log as well as
7194 frame metadata. If a black segment of at least the specified minimum
7195 duration is found, a line with the start and end timestamps as well
7196 as duration is printed to the log with level @code{info}. In addition,
7197 a log line with level @code{debug} is printed per frame showing the
7198 black amount detected for that frame.
7199
7200 The filter also attaches metadata to the first frame of a black
7201 segment with key @code{lavfi.black_start} and to the first frame
7202 after the black segment ends with key @code{lavfi.black_end}. The
7203 value is the frame's timestamp. This metadata is added regardless
7204 of the minimum duration specified.
7205
7206 The filter accepts the following options:
7207
7208 @table @option
7209 @item black_min_duration, d
7210 Set the minimum detected black duration expressed in seconds. It must
7211 be a non-negative floating point number.
7212
7213 Default value is 2.0.
7214
7215 @item picture_black_ratio_th, pic_th
7216 Set the threshold for considering a picture "black".
7217 Express the minimum value for the ratio:
7218 @example
7219 @var{nb_black_pixels} / @var{nb_pixels}
7220 @end example
7221
7222 for which a picture is considered black.
7223 Default value is 0.98.
7224
7225 @item pixel_black_th, pix_th
7226 Set the threshold for considering a pixel "black".
7227
7228 The threshold expresses the maximum pixel luminance value for which a
7229 pixel is considered "black". The provided value is scaled according to
7230 the following equation:
7231 @example
7232 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
7233 @end example
7234
7235 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
7236 the input video format, the range is [0-255] for YUV full-range
7237 formats and [16-235] for YUV non full-range formats.
7238
7239 Default value is 0.10.
7240 @end table
7241
7242 The following example sets the maximum pixel threshold to the minimum
7243 value, and detects only black intervals of 2 or more seconds:
7244 @example
7245 blackdetect=d=2:pix_th=0.00
7246 @end example
7247
7248 @section blackframe
7249
7250 Detect frames that are (almost) completely black. Can be useful to
7251 detect chapter transitions or commercials. Output lines consist of
7252 the frame number of the detected frame, the percentage of blackness,
7253 the position in the file if known or -1 and the timestamp in seconds.
7254
7255 In order to display the output lines, you need to set the loglevel at
7256 least to the AV_LOG_INFO value.
7257
7258 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
7259 The value represents the percentage of pixels in the picture that
7260 are below the threshold value.
7261
7262 It accepts the following parameters:
7263
7264 @table @option
7265
7266 @item amount
7267 The percentage of the pixels that have to be below the threshold; it defaults to
7268 @code{98}.
7269
7270 @item threshold, thresh
7271 The threshold below which a pixel value is considered black; it defaults to
7272 @code{32}.
7273
7274 @end table
7275
7276 @anchor{blend}
7277 @section blend
7278
7279 Blend two video frames into each other.
7280
7281 The @code{blend} filter takes two input streams and outputs one
7282 stream, the first input is the "top" layer and second input is
7283 "bottom" layer.  By default, the output terminates when the longest input terminates.
7284
7285 The @code{tblend} (time blend) filter takes two consecutive frames
7286 from one single stream, and outputs the result obtained by blending
7287 the new frame on top of the old frame.
7288
7289 A description of the accepted options follows.
7290
7291 @table @option
7292 @item c0_mode
7293 @item c1_mode
7294 @item c2_mode
7295 @item c3_mode
7296 @item all_mode
7297 Set blend mode for specific pixel component or all pixel components in case
7298 of @var{all_mode}. Default value is @code{normal}.
7299
7300 Available values for component modes are:
7301 @table @samp
7302 @item addition
7303 @item grainmerge
7304 @item and
7305 @item average
7306 @item burn
7307 @item darken
7308 @item difference
7309 @item grainextract
7310 @item divide
7311 @item dodge
7312 @item freeze
7313 @item exclusion
7314 @item extremity
7315 @item glow
7316 @item hardlight
7317 @item hardmix
7318 @item heat
7319 @item lighten
7320 @item linearlight
7321 @item multiply
7322 @item multiply128
7323 @item negation
7324 @item normal
7325 @item or
7326 @item overlay
7327 @item phoenix
7328 @item pinlight
7329 @item reflect
7330 @item screen
7331 @item softlight
7332 @item subtract
7333 @item vividlight
7334 @item xor
7335 @end table
7336
7337 @item c0_opacity
7338 @item c1_opacity
7339 @item c2_opacity
7340 @item c3_opacity
7341 @item all_opacity
7342 Set blend opacity for specific pixel component or all pixel components in case
7343 of @var{all_opacity}. Only used in combination with pixel component blend modes.
7344
7345 @item c0_expr
7346 @item c1_expr
7347 @item c2_expr
7348 @item c3_expr
7349 @item all_expr
7350 Set blend expression for specific pixel component or all pixel components in case
7351 of @var{all_expr}. Note that related mode options will be ignored if those are set.
7352
7353 The expressions can use the following variables:
7354
7355 @table @option
7356 @item N
7357 The sequential number of the filtered frame, starting from @code{0}.
7358
7359 @item X
7360 @item Y
7361 the coordinates of the current sample
7362
7363 @item W
7364 @item H
7365 the width and height of currently filtered plane
7366
7367 @item SW
7368 @item SH
7369 Width and height scale for the plane being filtered. It is the
7370 ratio between the dimensions of the current plane to the luma plane,
7371 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
7372 the luma plane and @code{0.5,0.5} for the chroma planes.
7373
7374 @item T
7375 Time of the current frame, expressed in seconds.
7376
7377 @item TOP, A
7378 Value of pixel component at current location for first video frame (top layer).
7379
7380 @item BOTTOM, B
7381 Value of pixel component at current location for second video frame (bottom layer).
7382 @end table
7383 @end table
7384
7385 The @code{blend} filter also supports the @ref{framesync} options.
7386
7387 @subsection Examples
7388
7389 @itemize
7390 @item
7391 Apply transition from bottom layer to top layer in first 10 seconds:
7392 @example
7393 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
7394 @end example
7395
7396 @item
7397 Apply linear horizontal transition from top layer to bottom layer:
7398 @example
7399 blend=all_expr='A*(X/W)+B*(1-X/W)'
7400 @end example
7401
7402 @item
7403 Apply 1x1 checkerboard effect:
7404 @example
7405 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
7406 @end example
7407
7408 @item
7409 Apply uncover left effect:
7410 @example
7411 blend=all_expr='if(gte(N*SW+X,W),A,B)'
7412 @end example
7413
7414 @item
7415 Apply uncover down effect:
7416 @example
7417 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
7418 @end example
7419
7420 @item
7421 Apply uncover up-left effect:
7422 @example
7423 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
7424 @end example
7425
7426 @item
7427 Split diagonally video and shows top and bottom layer on each side:
7428 @example
7429 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
7430 @end example
7431
7432 @item
7433 Display differences between the current and the previous frame:
7434 @example
7435 tblend=all_mode=grainextract
7436 @end example
7437 @end itemize
7438
7439 @section bm3d
7440
7441 Denoise frames using Block-Matching 3D algorithm.
7442
7443 The filter accepts the following options.
7444
7445 @table @option
7446 @item sigma
7447 Set denoising strength. Default value is 1.
7448 Allowed range is from 0 to 999.9.
7449 The denoising algorithm is very sensitive to sigma, so adjust it
7450 according to the source.
7451
7452 @item block
7453 Set local patch size. This sets dimensions in 2D.
7454
7455 @item bstep
7456 Set sliding step for processing blocks. Default value is 4.
7457 Allowed range is from 1 to 64.
7458 Smaller values allows processing more reference blocks and is slower.
7459
7460 @item group
7461 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
7462 When set to 1, no block matching is done. Larger values allows more blocks
7463 in single group.
7464 Allowed range is from 1 to 256.
7465
7466 @item range
7467 Set radius for search block matching. Default is 9.
7468 Allowed range is from 1 to INT32_MAX.
7469
7470 @item mstep
7471 Set step between two search locations for block matching. Default is 1.
7472 Allowed range is from 1 to 64. Smaller is slower.
7473
7474 @item thmse
7475 Set threshold of mean square error for block matching. Valid range is 0 to
7476 INT32_MAX.
7477
7478 @item hdthr
7479 Set thresholding parameter for hard thresholding in 3D transformed domain.
7480 Larger values results in stronger hard-thresholding filtering in frequency
7481 domain.
7482
7483 @item estim
7484 Set filtering estimation mode. Can be @code{basic} or @code{final}.
7485 Default is @code{basic}.
7486
7487 @item ref
7488 If enabled, filter will use 2nd stream for block matching.
7489 Default is disabled for @code{basic} value of @var{estim} option,
7490 and always enabled if value of @var{estim} is @code{final}.
7491
7492 @item planes
7493 Set planes to filter. Default is all available except alpha.
7494 @end table
7495
7496 @subsection Examples
7497
7498 @itemize
7499 @item
7500 Basic filtering with bm3d:
7501 @example
7502 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
7503 @end example
7504
7505 @item
7506 Same as above, but filtering only luma:
7507 @example
7508 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
7509 @end example
7510
7511 @item
7512 Same as above, but with both estimation modes:
7513 @example
7514 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
7515 @end example
7516
7517 @item
7518 Same as above, but prefilter with @ref{nlmeans} filter instead:
7519 @example
7520 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
7521 @end example
7522 @end itemize
7523
7524 @section boxblur
7525
7526 Apply a boxblur algorithm to the input video.
7527
7528 It accepts the following parameters:
7529
7530 @table @option
7531
7532 @item luma_radius, lr
7533 @item luma_power, lp
7534 @item chroma_radius, cr
7535 @item chroma_power, cp
7536 @item alpha_radius, ar
7537 @item alpha_power, ap
7538
7539 @end table
7540
7541 A description of the accepted options follows.
7542
7543 @table @option
7544 @item luma_radius, lr
7545 @item chroma_radius, cr
7546 @item alpha_radius, ar
7547 Set an expression for the box radius in pixels used for blurring the
7548 corresponding input plane.
7549
7550 The radius value must be a non-negative number, and must not be
7551 greater than the value of the expression @code{min(w,h)/2} for the
7552 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
7553 planes.
7554
7555 Default value for @option{luma_radius} is "2". If not specified,
7556 @option{chroma_radius} and @option{alpha_radius} default to the
7557 corresponding value set for @option{luma_radius}.
7558
7559 The expressions can contain the following constants:
7560 @table @option
7561 @item w
7562 @item h
7563 The input width and height in pixels.
7564
7565 @item cw
7566 @item ch
7567 The input chroma image width and height in pixels.
7568
7569 @item hsub
7570 @item vsub
7571 The horizontal and vertical chroma subsample values. For example, for the
7572 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
7573 @end table
7574
7575 @item luma_power, lp
7576 @item chroma_power, cp
7577 @item alpha_power, ap
7578 Specify how many times the boxblur filter is applied to the
7579 corresponding plane.
7580
7581 Default value for @option{luma_power} is 2. If not specified,
7582 @option{chroma_power} and @option{alpha_power} default to the
7583 corresponding value set for @option{luma_power}.
7584
7585 A value of 0 will disable the effect.
7586 @end table
7587
7588 @subsection Examples
7589
7590 @itemize
7591 @item
7592 Apply a boxblur filter with the luma, chroma, and alpha radii
7593 set to 2:
7594 @example
7595 boxblur=luma_radius=2:luma_power=1
7596 boxblur=2:1
7597 @end example
7598
7599 @item
7600 Set the luma radius to 2, and alpha and chroma radius to 0:
7601 @example
7602 boxblur=2:1:cr=0:ar=0
7603 @end example
7604
7605 @item
7606 Set the luma and chroma radii to a fraction of the video dimension:
7607 @example
7608 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
7609 @end example
7610 @end itemize
7611
7612 @section bwdif
7613
7614 Deinterlace the input video ("bwdif" stands for "Bob Weaver
7615 Deinterlacing Filter").
7616
7617 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
7618 interpolation algorithms.
7619 It accepts the following parameters:
7620
7621 @table @option
7622 @item mode
7623 The interlacing mode to adopt. It accepts one of the following values:
7624
7625 @table @option
7626 @item 0, send_frame
7627 Output one frame for each frame.
7628 @item 1, send_field
7629 Output one frame for each field.
7630 @end table
7631
7632 The default value is @code{send_field}.
7633
7634 @item parity
7635 The picture field parity assumed for the input interlaced video. It accepts one
7636 of the following values:
7637
7638 @table @option
7639 @item 0, tff
7640 Assume the top field is first.
7641 @item 1, bff
7642 Assume the bottom field is first.
7643 @item -1, auto
7644 Enable automatic detection of field parity.
7645 @end table
7646
7647 The default value is @code{auto}.
7648 If the interlacing is unknown or the decoder does not export this information,
7649 top field first will be assumed.
7650
7651 @item deint
7652 Specify which frames to deinterlace. Accepts one of the following
7653 values:
7654
7655 @table @option
7656 @item 0, all
7657 Deinterlace all frames.
7658 @item 1, interlaced
7659 Only deinterlace frames marked as interlaced.
7660 @end table
7661
7662 The default value is @code{all}.
7663 @end table
7664
7665 @section cas
7666
7667 Apply Contrast Adaptive Sharpen filter to video stream.
7668
7669 The filter accepts the following options:
7670
7671 @table @option
7672 @item strength
7673 Set the sharpening strength. Default value is 0.
7674
7675 @item planes
7676 Set planes to filter. Default value is to filter all
7677 planes except alpha plane.
7678 @end table
7679
7680 @subsection Commands
7681 This filter supports same @ref{commands} as options.
7682
7683 @section chromahold
7684 Remove all color information for all colors except for certain one.
7685
7686 The filter accepts the following options:
7687
7688 @table @option
7689 @item color
7690 The color which will not be replaced with neutral chroma.
7691
7692 @item similarity
7693 Similarity percentage with the above color.
7694 0.01 matches only the exact key color, while 1.0 matches everything.
7695
7696 @item blend
7697 Blend percentage.
7698 0.0 makes pixels either fully gray, or not gray at all.
7699 Higher values result in more preserved color.
7700
7701 @item yuv
7702 Signals that the color passed is already in YUV instead of RGB.
7703
7704 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7705 This can be used to pass exact YUV values as hexadecimal numbers.
7706 @end table
7707
7708 @subsection Commands
7709 This filter supports same @ref{commands} as options.
7710 The command accepts the same syntax of the corresponding option.
7711
7712 If the specified expression is not valid, it is kept at its current
7713 value.
7714
7715 @section chromakey
7716 YUV colorspace color/chroma keying.
7717
7718 The filter accepts the following options:
7719
7720 @table @option
7721 @item color
7722 The color which will be replaced with transparency.
7723
7724 @item similarity
7725 Similarity percentage with the key color.
7726
7727 0.01 matches only the exact key color, while 1.0 matches everything.
7728
7729 @item blend
7730 Blend percentage.
7731
7732 0.0 makes pixels either fully transparent, or not transparent at all.
7733
7734 Higher values result in semi-transparent pixels, with a higher transparency
7735 the more similar the pixels color is to the key color.
7736
7737 @item yuv
7738 Signals that the color passed is already in YUV instead of RGB.
7739
7740 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7741 This can be used to pass exact YUV values as hexadecimal numbers.
7742 @end table
7743
7744 @subsection Commands
7745 This filter supports same @ref{commands} as options.
7746 The command accepts the same syntax of the corresponding option.
7747
7748 If the specified expression is not valid, it is kept at its current
7749 value.
7750
7751 @subsection Examples
7752
7753 @itemize
7754 @item
7755 Make every green pixel in the input image transparent:
7756 @example
7757 ffmpeg -i input.png -vf chromakey=green out.png
7758 @end example
7759
7760 @item
7761 Overlay a greenscreen-video on top of a static black background.
7762 @example
7763 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
7764 @end example
7765 @end itemize
7766
7767 @section chromanr
7768 Reduce chrominance noise.
7769
7770 The filter accepts the following options:
7771
7772 @table @option
7773 @item thres
7774 Set threshold for averaging chrominance values.
7775 Sum of absolute difference of Y, U and V pixel components of current
7776 pixel and neighbour pixels lower than this threshold will be used in
7777 averaging. Luma component is left unchanged and is copied to output.
7778 Default value is 30. Allowed range is from 1 to 200.
7779
7780 @item sizew
7781 Set horizontal radius of rectangle used for averaging.
7782 Allowed range is from 1 to 100. Default value is 5.
7783
7784 @item sizeh
7785 Set vertical radius of rectangle used for averaging.
7786 Allowed range is from 1 to 100. Default value is 5.
7787
7788 @item stepw
7789 Set horizontal step when averaging. Default value is 1.
7790 Allowed range is from 1 to 50.
7791 Mostly useful to speed-up filtering.
7792
7793 @item steph
7794 Set vertical step when averaging. Default value is 1.
7795 Allowed range is from 1 to 50.
7796 Mostly useful to speed-up filtering.
7797
7798 @item threy
7799 Set Y threshold for averaging chrominance values.
7800 Set finer control for max allowed difference between Y components
7801 of current pixel and neigbour pixels.
7802 Default value is 200. Allowed range is from 1 to 200.
7803
7804 @item threu
7805 Set U threshold for averaging chrominance values.
7806 Set finer control for max allowed difference between U components
7807 of current pixel and neigbour pixels.
7808 Default value is 200. Allowed range is from 1 to 200.
7809
7810 @item threv
7811 Set V threshold for averaging chrominance values.
7812 Set finer control for max allowed difference between V components
7813 of current pixel and neigbour pixels.
7814 Default value is 200. Allowed range is from 1 to 200.
7815 @end table
7816
7817 @subsection Commands
7818 This filter supports same @ref{commands} as options.
7819 The command accepts the same syntax of the corresponding option.
7820
7821 @section chromashift
7822 Shift chroma pixels horizontally and/or vertically.
7823
7824 The filter accepts the following options:
7825 @table @option
7826 @item cbh
7827 Set amount to shift chroma-blue horizontally.
7828 @item cbv
7829 Set amount to shift chroma-blue vertically.
7830 @item crh
7831 Set amount to shift chroma-red horizontally.
7832 @item crv
7833 Set amount to shift chroma-red vertically.
7834 @item edge
7835 Set edge mode, can be @var{smear}, default, or @var{warp}.
7836 @end table
7837
7838 @subsection Commands
7839
7840 This filter supports the all above options as @ref{commands}.
7841
7842 @section ciescope
7843
7844 Display CIE color diagram with pixels overlaid onto it.
7845
7846 The filter accepts the following options:
7847
7848 @table @option
7849 @item system
7850 Set color system.
7851
7852 @table @samp
7853 @item ntsc, 470m
7854 @item ebu, 470bg
7855 @item smpte
7856 @item 240m
7857 @item apple
7858 @item widergb
7859 @item cie1931
7860 @item rec709, hdtv
7861 @item uhdtv, rec2020
7862 @item dcip3
7863 @end table
7864
7865 @item cie
7866 Set CIE system.
7867
7868 @table @samp
7869 @item xyy
7870 @item ucs
7871 @item luv
7872 @end table
7873
7874 @item gamuts
7875 Set what gamuts to draw.
7876
7877 See @code{system} option for available values.
7878
7879 @item size, s
7880 Set ciescope size, by default set to 512.
7881
7882 @item intensity, i
7883 Set intensity used to map input pixel values to CIE diagram.
7884
7885 @item contrast
7886 Set contrast used to draw tongue colors that are out of active color system gamut.
7887
7888 @item corrgamma
7889 Correct gamma displayed on scope, by default enabled.
7890
7891 @item showwhite
7892 Show white point on CIE diagram, by default disabled.
7893
7894 @item gamma
7895 Set input gamma. Used only with XYZ input color space.
7896 @end table
7897
7898 @section codecview
7899
7900 Visualize information exported by some codecs.
7901
7902 Some codecs can export information through frames using side-data or other
7903 means. For example, some MPEG based codecs export motion vectors through the
7904 @var{export_mvs} flag in the codec @option{flags2} option.
7905
7906 The filter accepts the following option:
7907
7908 @table @option
7909 @item mv
7910 Set motion vectors to visualize.
7911
7912 Available flags for @var{mv} are:
7913
7914 @table @samp
7915 @item pf
7916 forward predicted MVs of P-frames
7917 @item bf
7918 forward predicted MVs of B-frames
7919 @item bb
7920 backward predicted MVs of B-frames
7921 @end table
7922
7923 @item qp
7924 Display quantization parameters using the chroma planes.
7925
7926 @item mv_type, mvt
7927 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7928
7929 Available flags for @var{mv_type} are:
7930
7931 @table @samp
7932 @item fp
7933 forward predicted MVs
7934 @item bp
7935 backward predicted MVs
7936 @end table
7937
7938 @item frame_type, ft
7939 Set frame type to visualize motion vectors of.
7940
7941 Available flags for @var{frame_type} are:
7942
7943 @table @samp
7944 @item if
7945 intra-coded frames (I-frames)
7946 @item pf
7947 predicted frames (P-frames)
7948 @item bf
7949 bi-directionally predicted frames (B-frames)
7950 @end table
7951 @end table
7952
7953 @subsection Examples
7954
7955 @itemize
7956 @item
7957 Visualize forward predicted MVs of all frames using @command{ffplay}:
7958 @example
7959 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7960 @end example
7961
7962 @item
7963 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7964 @example
7965 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7966 @end example
7967 @end itemize
7968
7969 @section colorbalance
7970 Modify intensity of primary colors (red, green and blue) of input frames.
7971
7972 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7973 regions for the red-cyan, green-magenta or blue-yellow balance.
7974
7975 A positive adjustment value shifts the balance towards the primary color, a negative
7976 value towards the complementary color.
7977
7978 The filter accepts the following options:
7979
7980 @table @option
7981 @item rs
7982 @item gs
7983 @item bs
7984 Adjust red, green and blue shadows (darkest pixels).
7985
7986 @item rm
7987 @item gm
7988 @item bm
7989 Adjust red, green and blue midtones (medium pixels).
7990
7991 @item rh
7992 @item gh
7993 @item bh
7994 Adjust red, green and blue highlights (brightest pixels).
7995
7996 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7997
7998 @item pl
7999 Preserve lightness when changing color balance. Default is disabled.
8000 @end table
8001
8002 @subsection Examples
8003
8004 @itemize
8005 @item
8006 Add red color cast to shadows:
8007 @example
8008 colorbalance=rs=.3
8009 @end example
8010 @end itemize
8011
8012 @subsection Commands
8013
8014 This filter supports the all above options as @ref{commands}.
8015
8016 @section colorchannelmixer
8017
8018 Adjust video input frames by re-mixing color channels.
8019
8020 This filter modifies a color channel by adding the values associated to
8021 the other channels of the same pixels. For example if the value to
8022 modify is red, the output value will be:
8023 @example
8024 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
8025 @end example
8026
8027 The filter accepts the following options:
8028
8029 @table @option
8030 @item rr
8031 @item rg
8032 @item rb
8033 @item ra
8034 Adjust contribution of input red, green, blue and alpha channels for output red channel.
8035 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
8036
8037 @item gr
8038 @item gg
8039 @item gb
8040 @item ga
8041 Adjust contribution of input red, green, blue and alpha channels for output green channel.
8042 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
8043
8044 @item br
8045 @item bg
8046 @item bb
8047 @item ba
8048 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
8049 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
8050
8051 @item ar
8052 @item ag
8053 @item ab
8054 @item aa
8055 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
8056 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
8057
8058 Allowed ranges for options are @code{[-2.0, 2.0]}.
8059 @end table
8060
8061 @subsection Examples
8062
8063 @itemize
8064 @item
8065 Convert source to grayscale:
8066 @example
8067 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
8068 @end example
8069 @item
8070 Simulate sepia tones:
8071 @example
8072 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
8073 @end example
8074 @end itemize
8075
8076 @subsection Commands
8077
8078 This filter supports the all above options as @ref{commands}.
8079
8080 @section colorkey
8081 RGB colorspace color keying.
8082
8083 The filter accepts the following options:
8084
8085 @table @option
8086 @item color
8087 The color which will be replaced with transparency.
8088
8089 @item similarity
8090 Similarity percentage with the key color.
8091
8092 0.01 matches only the exact key color, while 1.0 matches everything.
8093
8094 @item blend
8095 Blend percentage.
8096
8097 0.0 makes pixels either fully transparent, or not transparent at all.
8098
8099 Higher values result in semi-transparent pixels, with a higher transparency
8100 the more similar the pixels color is to the key color.
8101 @end table
8102
8103 @subsection Examples
8104
8105 @itemize
8106 @item
8107 Make every green pixel in the input image transparent:
8108 @example
8109 ffmpeg -i input.png -vf colorkey=green out.png
8110 @end example
8111
8112 @item
8113 Overlay a greenscreen-video on top of a static background image.
8114 @example
8115 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
8116 @end example
8117 @end itemize
8118
8119 @subsection Commands
8120 This filter supports same @ref{commands} as options.
8121 The command accepts the same syntax of the corresponding option.
8122
8123 If the specified expression is not valid, it is kept at its current
8124 value.
8125
8126 @section colorhold
8127 Remove all color information for all RGB colors except for certain one.
8128
8129 The filter accepts the following options:
8130
8131 @table @option
8132 @item color
8133 The color which will not be replaced with neutral gray.
8134
8135 @item similarity
8136 Similarity percentage with the above color.
8137 0.01 matches only the exact key color, while 1.0 matches everything.
8138
8139 @item blend
8140 Blend percentage. 0.0 makes pixels fully gray.
8141 Higher values result in more preserved color.
8142 @end table
8143
8144 @subsection Commands
8145 This filter supports same @ref{commands} as options.
8146 The command accepts the same syntax of the corresponding option.
8147
8148 If the specified expression is not valid, it is kept at its current
8149 value.
8150
8151 @section colorlevels
8152
8153 Adjust video input frames using levels.
8154
8155 The filter accepts the following options:
8156
8157 @table @option
8158 @item rimin
8159 @item gimin
8160 @item bimin
8161 @item aimin
8162 Adjust red, green, blue and alpha input black point.
8163 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
8164
8165 @item rimax
8166 @item gimax
8167 @item bimax
8168 @item aimax
8169 Adjust red, green, blue and alpha input white point.
8170 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
8171
8172 Input levels are used to lighten highlights (bright tones), darken shadows
8173 (dark tones), change the balance of bright and dark tones.
8174
8175 @item romin
8176 @item gomin
8177 @item bomin
8178 @item aomin
8179 Adjust red, green, blue and alpha output black point.
8180 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
8181
8182 @item romax
8183 @item gomax
8184 @item bomax
8185 @item aomax
8186 Adjust red, green, blue and alpha output white point.
8187 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
8188
8189 Output levels allows manual selection of a constrained output level range.
8190 @end table
8191
8192 @subsection Examples
8193
8194 @itemize
8195 @item
8196 Make video output darker:
8197 @example
8198 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
8199 @end example
8200
8201 @item
8202 Increase contrast:
8203 @example
8204 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
8205 @end example
8206
8207 @item
8208 Make video output lighter:
8209 @example
8210 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
8211 @end example
8212
8213 @item
8214 Increase brightness:
8215 @example
8216 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
8217 @end example
8218 @end itemize
8219
8220 @subsection Commands
8221
8222 This filter supports the all above options as @ref{commands}.
8223
8224 @section colormatrix
8225
8226 Convert color matrix.
8227
8228 The filter accepts the following options:
8229
8230 @table @option
8231 @item src
8232 @item dst
8233 Specify the source and destination color matrix. Both values must be
8234 specified.
8235
8236 The accepted values are:
8237 @table @samp
8238 @item bt709
8239 BT.709
8240
8241 @item fcc
8242 FCC
8243
8244 @item bt601
8245 BT.601
8246
8247 @item bt470
8248 BT.470
8249
8250 @item bt470bg
8251 BT.470BG
8252
8253 @item smpte170m
8254 SMPTE-170M
8255
8256 @item smpte240m
8257 SMPTE-240M
8258
8259 @item bt2020
8260 BT.2020
8261 @end table
8262 @end table
8263
8264 For example to convert from BT.601 to SMPTE-240M, use the command:
8265 @example
8266 colormatrix=bt601:smpte240m
8267 @end example
8268
8269 @section colorspace
8270
8271 Convert colorspace, transfer characteristics or color primaries.
8272 Input video needs to have an even size.
8273
8274 The filter accepts the following options:
8275
8276 @table @option
8277 @anchor{all}
8278 @item all
8279 Specify all color properties at once.
8280
8281 The accepted values are:
8282 @table @samp
8283 @item bt470m
8284 BT.470M
8285
8286 @item bt470bg
8287 BT.470BG
8288
8289 @item bt601-6-525
8290 BT.601-6 525
8291
8292 @item bt601-6-625
8293 BT.601-6 625
8294
8295 @item bt709
8296 BT.709
8297
8298 @item smpte170m
8299 SMPTE-170M
8300
8301 @item smpte240m
8302 SMPTE-240M
8303
8304 @item bt2020
8305 BT.2020
8306
8307 @end table
8308
8309 @anchor{space}
8310 @item space
8311 Specify output colorspace.
8312
8313 The accepted values are:
8314 @table @samp
8315 @item bt709
8316 BT.709
8317
8318 @item fcc
8319 FCC
8320
8321 @item bt470bg
8322 BT.470BG or BT.601-6 625
8323
8324 @item smpte170m
8325 SMPTE-170M or BT.601-6 525
8326
8327 @item smpte240m
8328 SMPTE-240M
8329
8330 @item ycgco
8331 YCgCo
8332
8333 @item bt2020ncl
8334 BT.2020 with non-constant luminance
8335
8336 @end table
8337
8338 @anchor{trc}
8339 @item trc
8340 Specify output transfer characteristics.
8341
8342 The accepted values are:
8343 @table @samp
8344 @item bt709
8345 BT.709
8346
8347 @item bt470m
8348 BT.470M
8349
8350 @item bt470bg
8351 BT.470BG
8352
8353 @item gamma22
8354 Constant gamma of 2.2
8355
8356 @item gamma28
8357 Constant gamma of 2.8
8358
8359 @item smpte170m
8360 SMPTE-170M, BT.601-6 625 or BT.601-6 525
8361
8362 @item smpte240m
8363 SMPTE-240M
8364
8365 @item srgb
8366 SRGB
8367
8368 @item iec61966-2-1
8369 iec61966-2-1
8370
8371 @item iec61966-2-4
8372 iec61966-2-4
8373
8374 @item xvycc
8375 xvycc
8376
8377 @item bt2020-10
8378 BT.2020 for 10-bits content
8379
8380 @item bt2020-12
8381 BT.2020 for 12-bits content
8382
8383 @end table
8384
8385 @anchor{primaries}
8386 @item primaries
8387 Specify output color primaries.
8388
8389 The accepted values are:
8390 @table @samp
8391 @item bt709
8392 BT.709
8393
8394 @item bt470m
8395 BT.470M
8396
8397 @item bt470bg
8398 BT.470BG or BT.601-6 625
8399
8400 @item smpte170m
8401 SMPTE-170M or BT.601-6 525
8402
8403 @item smpte240m
8404 SMPTE-240M
8405
8406 @item film
8407 film
8408
8409 @item smpte431
8410 SMPTE-431
8411
8412 @item smpte432
8413 SMPTE-432
8414
8415 @item bt2020
8416 BT.2020
8417
8418 @item jedec-p22
8419 JEDEC P22 phosphors
8420
8421 @end table
8422
8423 @anchor{range}
8424 @item range
8425 Specify output color range.
8426
8427 The accepted values are:
8428 @table @samp
8429 @item tv
8430 TV (restricted) range
8431
8432 @item mpeg
8433 MPEG (restricted) range
8434
8435 @item pc
8436 PC (full) range
8437
8438 @item jpeg
8439 JPEG (full) range
8440
8441 @end table
8442
8443 @item format
8444 Specify output color format.
8445
8446 The accepted values are:
8447 @table @samp
8448 @item yuv420p
8449 YUV 4:2:0 planar 8-bits
8450
8451 @item yuv420p10
8452 YUV 4:2:0 planar 10-bits
8453
8454 @item yuv420p12
8455 YUV 4:2:0 planar 12-bits
8456
8457 @item yuv422p
8458 YUV 4:2:2 planar 8-bits
8459
8460 @item yuv422p10
8461 YUV 4:2:2 planar 10-bits
8462
8463 @item yuv422p12
8464 YUV 4:2:2 planar 12-bits
8465
8466 @item yuv444p
8467 YUV 4:4:4 planar 8-bits
8468
8469 @item yuv444p10
8470 YUV 4:4:4 planar 10-bits
8471
8472 @item yuv444p12
8473 YUV 4:4:4 planar 12-bits
8474
8475 @end table
8476
8477 @item fast
8478 Do a fast conversion, which skips gamma/primary correction. This will take
8479 significantly less CPU, but will be mathematically incorrect. To get output
8480 compatible with that produced by the colormatrix filter, use fast=1.
8481
8482 @item dither
8483 Specify dithering mode.
8484
8485 The accepted values are:
8486 @table @samp
8487 @item none
8488 No dithering
8489
8490 @item fsb
8491 Floyd-Steinberg dithering
8492 @end table
8493
8494 @item wpadapt
8495 Whitepoint adaptation mode.
8496
8497 The accepted values are:
8498 @table @samp
8499 @item bradford
8500 Bradford whitepoint adaptation
8501
8502 @item vonkries
8503 von Kries whitepoint adaptation
8504
8505 @item identity
8506 identity whitepoint adaptation (i.e. no whitepoint adaptation)
8507 @end table
8508
8509 @item iall
8510 Override all input properties at once. Same accepted values as @ref{all}.
8511
8512 @item ispace
8513 Override input colorspace. Same accepted values as @ref{space}.
8514
8515 @item iprimaries
8516 Override input color primaries. Same accepted values as @ref{primaries}.
8517
8518 @item itrc
8519 Override input transfer characteristics. Same accepted values as @ref{trc}.
8520
8521 @item irange
8522 Override input color range. Same accepted values as @ref{range}.
8523
8524 @end table
8525
8526 The filter converts the transfer characteristics, color space and color
8527 primaries to the specified user values. The output value, if not specified,
8528 is set to a default value based on the "all" property. If that property is
8529 also not specified, the filter will log an error. The output color range and
8530 format default to the same value as the input color range and format. The
8531 input transfer characteristics, color space, color primaries and color range
8532 should be set on the input data. If any of these are missing, the filter will
8533 log an error and no conversion will take place.
8534
8535 For example to convert the input to SMPTE-240M, use the command:
8536 @example
8537 colorspace=smpte240m
8538 @end example
8539
8540 @section convolution
8541
8542 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
8543
8544 The filter accepts the following options:
8545
8546 @table @option
8547 @item 0m
8548 @item 1m
8549 @item 2m
8550 @item 3m
8551 Set matrix for each plane.
8552 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
8553 and from 1 to 49 odd number of signed integers in @var{row} mode.
8554
8555 @item 0rdiv
8556 @item 1rdiv
8557 @item 2rdiv
8558 @item 3rdiv
8559 Set multiplier for calculated value for each plane.
8560 If unset or 0, it will be sum of all matrix elements.
8561
8562 @item 0bias
8563 @item 1bias
8564 @item 2bias
8565 @item 3bias
8566 Set bias for each plane. This value is added to the result of the multiplication.
8567 Useful for making the overall image brighter or darker. Default is 0.0.
8568
8569 @item 0mode
8570 @item 1mode
8571 @item 2mode
8572 @item 3mode
8573 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
8574 Default is @var{square}.
8575 @end table
8576
8577 @subsection Commands
8578
8579 This filter supports the all above options as @ref{commands}.
8580
8581 @subsection Examples
8582
8583 @itemize
8584 @item
8585 Apply sharpen:
8586 @example
8587 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"
8588 @end example
8589
8590 @item
8591 Apply blur:
8592 @example
8593 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"
8594 @end example
8595
8596 @item
8597 Apply edge enhance:
8598 @example
8599 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"
8600 @end example
8601
8602 @item
8603 Apply edge detect:
8604 @example
8605 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"
8606 @end example
8607
8608 @item
8609 Apply laplacian edge detector which includes diagonals:
8610 @example
8611 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"
8612 @end example
8613
8614 @item
8615 Apply emboss:
8616 @example
8617 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"
8618 @end example
8619 @end itemize
8620
8621 @section convolve
8622
8623 Apply 2D convolution of video stream in frequency domain using second stream
8624 as impulse.
8625
8626 The filter accepts the following options:
8627
8628 @table @option
8629 @item planes
8630 Set which planes to process.
8631
8632 @item impulse
8633 Set which impulse video frames will be processed, can be @var{first}
8634 or @var{all}. Default is @var{all}.
8635 @end table
8636
8637 The @code{convolve} filter also supports the @ref{framesync} options.
8638
8639 @section copy
8640
8641 Copy the input video source unchanged to the output. This is mainly useful for
8642 testing purposes.
8643
8644 @anchor{coreimage}
8645 @section coreimage
8646 Video filtering on GPU using Apple's CoreImage API on OSX.
8647
8648 Hardware acceleration is based on an OpenGL context. Usually, this means it is
8649 processed by video hardware. However, software-based OpenGL implementations
8650 exist which means there is no guarantee for hardware processing. It depends on
8651 the respective OSX.
8652
8653 There are many filters and image generators provided by Apple that come with a
8654 large variety of options. The filter has to be referenced by its name along
8655 with its options.
8656
8657 The coreimage filter accepts the following options:
8658 @table @option
8659 @item list_filters
8660 List all available filters and generators along with all their respective
8661 options as well as possible minimum and maximum values along with the default
8662 values.
8663 @example
8664 list_filters=true
8665 @end example
8666
8667 @item filter
8668 Specify all filters by their respective name and options.
8669 Use @var{list_filters} to determine all valid filter names and options.
8670 Numerical options are specified by a float value and are automatically clamped
8671 to their respective value range.  Vector and color options have to be specified
8672 by a list of space separated float values. Character escaping has to be done.
8673 A special option name @code{default} is available to use default options for a
8674 filter.
8675
8676 It is required to specify either @code{default} or at least one of the filter options.
8677 All omitted options are used with their default values.
8678 The syntax of the filter string is as follows:
8679 @example
8680 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
8681 @end example
8682
8683 @item output_rect
8684 Specify a rectangle where the output of the filter chain is copied into the
8685 input image. It is given by a list of space separated float values:
8686 @example
8687 output_rect=x\ y\ width\ height
8688 @end example
8689 If not given, the output rectangle equals the dimensions of the input image.
8690 The output rectangle is automatically cropped at the borders of the input
8691 image. Negative values are valid for each component.
8692 @example
8693 output_rect=25\ 25\ 100\ 100
8694 @end example
8695 @end table
8696
8697 Several filters can be chained for successive processing without GPU-HOST
8698 transfers allowing for fast processing of complex filter chains.
8699 Currently, only filters with zero (generators) or exactly one (filters) input
8700 image and one output image are supported. Also, transition filters are not yet
8701 usable as intended.
8702
8703 Some filters generate output images with additional padding depending on the
8704 respective filter kernel. The padding is automatically removed to ensure the
8705 filter output has the same size as the input image.
8706
8707 For image generators, the size of the output image is determined by the
8708 previous output image of the filter chain or the input image of the whole
8709 filterchain, respectively. The generators do not use the pixel information of
8710 this image to generate their output. However, the generated output is
8711 blended onto this image, resulting in partial or complete coverage of the
8712 output image.
8713
8714 The @ref{coreimagesrc} video source can be used for generating input images
8715 which are directly fed into the filter chain. By using it, providing input
8716 images by another video source or an input video is not required.
8717
8718 @subsection Examples
8719
8720 @itemize
8721
8722 @item
8723 List all filters available:
8724 @example
8725 coreimage=list_filters=true
8726 @end example
8727
8728 @item
8729 Use the CIBoxBlur filter with default options to blur an image:
8730 @example
8731 coreimage=filter=CIBoxBlur@@default
8732 @end example
8733
8734 @item
8735 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8736 its center at 100x100 and a radius of 50 pixels:
8737 @example
8738 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8739 @end example
8740
8741 @item
8742 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8743 given as complete and escaped command-line for Apple's standard bash shell:
8744 @example
8745 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8746 @end example
8747 @end itemize
8748
8749 @section cover_rect
8750
8751 Cover a rectangular object
8752
8753 It accepts the following options:
8754
8755 @table @option
8756 @item cover
8757 Filepath of the optional cover image, needs to be in yuv420.
8758
8759 @item mode
8760 Set covering mode.
8761
8762 It accepts the following values:
8763 @table @samp
8764 @item cover
8765 cover it by the supplied image
8766 @item blur
8767 cover it by interpolating the surrounding pixels
8768 @end table
8769
8770 Default value is @var{blur}.
8771 @end table
8772
8773 @subsection Examples
8774
8775 @itemize
8776 @item
8777 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8778 @example
8779 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8780 @end example
8781 @end itemize
8782
8783 @section crop
8784
8785 Crop the input video to given dimensions.
8786
8787 It accepts the following parameters:
8788
8789 @table @option
8790 @item w, out_w
8791 The width of the output video. It defaults to @code{iw}.
8792 This expression is evaluated only once during the filter
8793 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8794
8795 @item h, out_h
8796 The height of the output video. It defaults to @code{ih}.
8797 This expression is evaluated only once during the filter
8798 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8799
8800 @item x
8801 The horizontal position, in the input video, of the left edge of the output
8802 video. It defaults to @code{(in_w-out_w)/2}.
8803 This expression is evaluated per-frame.
8804
8805 @item y
8806 The vertical position, in the input video, of the top edge of the output video.
8807 It defaults to @code{(in_h-out_h)/2}.
8808 This expression is evaluated per-frame.
8809
8810 @item keep_aspect
8811 If set to 1 will force the output display aspect ratio
8812 to be the same of the input, by changing the output sample aspect
8813 ratio. It defaults to 0.
8814
8815 @item exact
8816 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8817 width/height/x/y as specified and will not be rounded to nearest smaller value.
8818 It defaults to 0.
8819 @end table
8820
8821 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8822 expressions containing the following constants:
8823
8824 @table @option
8825 @item x
8826 @item y
8827 The computed values for @var{x} and @var{y}. They are evaluated for
8828 each new frame.
8829
8830 @item in_w
8831 @item in_h
8832 The input width and height.
8833
8834 @item iw
8835 @item ih
8836 These are the same as @var{in_w} and @var{in_h}.
8837
8838 @item out_w
8839 @item out_h
8840 The output (cropped) width and height.
8841
8842 @item ow
8843 @item oh
8844 These are the same as @var{out_w} and @var{out_h}.
8845
8846 @item a
8847 same as @var{iw} / @var{ih}
8848
8849 @item sar
8850 input sample aspect ratio
8851
8852 @item dar
8853 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8854
8855 @item hsub
8856 @item vsub
8857 horizontal and vertical chroma subsample values. For example for the
8858 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8859
8860 @item n
8861 The number of the input frame, starting from 0.
8862
8863 @item pos
8864 the position in the file of the input frame, NAN if unknown
8865
8866 @item t
8867 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8868
8869 @end table
8870
8871 The expression for @var{out_w} may depend on the value of @var{out_h},
8872 and the expression for @var{out_h} may depend on @var{out_w}, but they
8873 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8874 evaluated after @var{out_w} and @var{out_h}.
8875
8876 The @var{x} and @var{y} parameters specify the expressions for the
8877 position of the top-left corner of the output (non-cropped) area. They
8878 are evaluated for each frame. If the evaluated value is not valid, it
8879 is approximated to the nearest valid value.
8880
8881 The expression for @var{x} may depend on @var{y}, and the expression
8882 for @var{y} may depend on @var{x}.
8883
8884 @subsection Examples
8885
8886 @itemize
8887 @item
8888 Crop area with size 100x100 at position (12,34).
8889 @example
8890 crop=100:100:12:34
8891 @end example
8892
8893 Using named options, the example above becomes:
8894 @example
8895 crop=w=100:h=100:x=12:y=34
8896 @end example
8897
8898 @item
8899 Crop the central input area with size 100x100:
8900 @example
8901 crop=100:100
8902 @end example
8903
8904 @item
8905 Crop the central input area with size 2/3 of the input video:
8906 @example
8907 crop=2/3*in_w:2/3*in_h
8908 @end example
8909
8910 @item
8911 Crop the input video central square:
8912 @example
8913 crop=out_w=in_h
8914 crop=in_h
8915 @end example
8916
8917 @item
8918 Delimit the rectangle with the top-left corner placed at position
8919 100:100 and the right-bottom corner corresponding to the right-bottom
8920 corner of the input image.
8921 @example
8922 crop=in_w-100:in_h-100:100:100
8923 @end example
8924
8925 @item
8926 Crop 10 pixels from the left and right borders, and 20 pixels from
8927 the top and bottom borders
8928 @example
8929 crop=in_w-2*10:in_h-2*20
8930 @end example
8931
8932 @item
8933 Keep only the bottom right quarter of the input image:
8934 @example
8935 crop=in_w/2:in_h/2:in_w/2:in_h/2
8936 @end example
8937
8938 @item
8939 Crop height for getting Greek harmony:
8940 @example
8941 crop=in_w:1/PHI*in_w
8942 @end example
8943
8944 @item
8945 Apply trembling effect:
8946 @example
8947 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)
8948 @end example
8949
8950 @item
8951 Apply erratic camera effect depending on timestamp:
8952 @example
8953 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)"
8954 @end example
8955
8956 @item
8957 Set x depending on the value of y:
8958 @example
8959 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8960 @end example
8961 @end itemize
8962
8963 @subsection Commands
8964
8965 This filter supports the following commands:
8966 @table @option
8967 @item w, out_w
8968 @item h, out_h
8969 @item x
8970 @item y
8971 Set width/height of the output video and the horizontal/vertical position
8972 in the input video.
8973 The command accepts the same syntax of the corresponding option.
8974
8975 If the specified expression is not valid, it is kept at its current
8976 value.
8977 @end table
8978
8979 @section cropdetect
8980
8981 Auto-detect the crop size.
8982
8983 It calculates the necessary cropping parameters and prints the
8984 recommended parameters via the logging system. The detected dimensions
8985 correspond to the non-black area of the input video.
8986
8987 It accepts the following parameters:
8988
8989 @table @option
8990
8991 @item limit
8992 Set higher black value threshold, which can be optionally specified
8993 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8994 value greater to the set value is considered non-black. It defaults to 24.
8995 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8996 on the bitdepth of the pixel format.
8997
8998 @item round
8999 The value which the width/height should be divisible by. It defaults to
9000 16. The offset is automatically adjusted to center the video. Use 2 to
9001 get only even dimensions (needed for 4:2:2 video). 16 is best when
9002 encoding to most video codecs.
9003
9004 @item skip
9005 Set the number of initial frames for which evaluation is skipped.
9006 Default is 2. Range is 0 to INT_MAX.
9007
9008 @item reset_count, reset
9009 Set the counter that determines after how many frames cropdetect will
9010 reset the previously detected largest video area and start over to
9011 detect the current optimal crop area. Default value is 0.
9012
9013 This can be useful when channel logos distort the video area. 0
9014 indicates 'never reset', and returns the largest area encountered during
9015 playback.
9016 @end table
9017
9018 @anchor{cue}
9019 @section cue
9020
9021 Delay video filtering until a given wallclock timestamp. The filter first
9022 passes on @option{preroll} amount of frames, then it buffers at most
9023 @option{buffer} amount of frames and waits for the cue. After reaching the cue
9024 it forwards the buffered frames and also any subsequent frames coming in its
9025 input.
9026
9027 The filter can be used synchronize the output of multiple ffmpeg processes for
9028 realtime output devices like decklink. By putting the delay in the filtering
9029 chain and pre-buffering frames the process can pass on data to output almost
9030 immediately after the target wallclock timestamp is reached.
9031
9032 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
9033 some use cases.
9034
9035 @table @option
9036
9037 @item cue
9038 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
9039
9040 @item preroll
9041 The duration of content to pass on as preroll expressed in seconds. Default is 0.
9042
9043 @item buffer
9044 The maximum duration of content to buffer before waiting for the cue expressed
9045 in seconds. Default is 0.
9046
9047 @end table
9048
9049 @anchor{curves}
9050 @section curves
9051
9052 Apply color adjustments using curves.
9053
9054 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
9055 component (red, green and blue) has its values defined by @var{N} key points
9056 tied from each other using a smooth curve. The x-axis represents the pixel
9057 values from the input frame, and the y-axis the new pixel values to be set for
9058 the output frame.
9059
9060 By default, a component curve is defined by the two points @var{(0;0)} and
9061 @var{(1;1)}. This creates a straight line where each original pixel value is
9062 "adjusted" to its own value, which means no change to the image.
9063
9064 The filter allows you to redefine these two points and add some more. A new
9065 curve (using a natural cubic spline interpolation) will be define to pass
9066 smoothly through all these new coordinates. The new defined points needs to be
9067 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
9068 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
9069 the vector spaces, the values will be clipped accordingly.
9070
9071 The filter accepts the following options:
9072
9073 @table @option
9074 @item preset
9075 Select one of the available color presets. This option can be used in addition
9076 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
9077 options takes priority on the preset values.
9078 Available presets are:
9079 @table @samp
9080 @item none
9081 @item color_negative
9082 @item cross_process
9083 @item darker
9084 @item increase_contrast
9085 @item lighter
9086 @item linear_contrast
9087 @item medium_contrast
9088 @item negative
9089 @item strong_contrast
9090 @item vintage
9091 @end table
9092 Default is @code{none}.
9093 @item master, m
9094 Set the master key points. These points will define a second pass mapping. It
9095 is sometimes called a "luminance" or "value" mapping. It can be used with
9096 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
9097 post-processing LUT.
9098 @item red, r
9099 Set the key points for the red component.
9100 @item green, g
9101 Set the key points for the green component.
9102 @item blue, b
9103 Set the key points for the blue component.
9104 @item all
9105 Set the key points for all components (not including master).
9106 Can be used in addition to the other key points component
9107 options. In this case, the unset component(s) will fallback on this
9108 @option{all} setting.
9109 @item psfile
9110 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
9111 @item plot
9112 Save Gnuplot script of the curves in specified file.
9113 @end table
9114
9115 To avoid some filtergraph syntax conflicts, each key points list need to be
9116 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
9117
9118 @subsection Examples
9119
9120 @itemize
9121 @item
9122 Increase slightly the middle level of blue:
9123 @example
9124 curves=blue='0/0 0.5/0.58 1/1'
9125 @end example
9126
9127 @item
9128 Vintage effect:
9129 @example
9130 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'
9131 @end example
9132 Here we obtain the following coordinates for each components:
9133 @table @var
9134 @item red
9135 @code{(0;0.11) (0.42;0.51) (1;0.95)}
9136 @item green
9137 @code{(0;0) (0.50;0.48) (1;1)}
9138 @item blue
9139 @code{(0;0.22) (0.49;0.44) (1;0.80)}
9140 @end table
9141
9142 @item
9143 The previous example can also be achieved with the associated built-in preset:
9144 @example
9145 curves=preset=vintage
9146 @end example
9147
9148 @item
9149 Or simply:
9150 @example
9151 curves=vintage
9152 @end example
9153
9154 @item
9155 Use a Photoshop preset and redefine the points of the green component:
9156 @example
9157 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
9158 @end example
9159
9160 @item
9161 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
9162 and @command{gnuplot}:
9163 @example
9164 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
9165 gnuplot -p /tmp/curves.plt
9166 @end example
9167 @end itemize
9168
9169 @section datascope
9170
9171 Video data analysis filter.
9172
9173 This filter shows hexadecimal pixel values of part of video.
9174
9175 The filter accepts the following options:
9176
9177 @table @option
9178 @item size, s
9179 Set output video size.
9180
9181 @item x
9182 Set x offset from where to pick pixels.
9183
9184 @item y
9185 Set y offset from where to pick pixels.
9186
9187 @item mode
9188 Set scope mode, can be one of the following:
9189 @table @samp
9190 @item mono
9191 Draw hexadecimal pixel values with white color on black background.
9192
9193 @item color
9194 Draw hexadecimal pixel values with input video pixel color on black
9195 background.
9196
9197 @item color2
9198 Draw hexadecimal pixel values on color background picked from input video,
9199 the text color is picked in such way so its always visible.
9200 @end table
9201
9202 @item axis
9203 Draw rows and columns numbers on left and top of video.
9204
9205 @item opacity
9206 Set background opacity.
9207
9208 @item format
9209 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
9210 @end table
9211
9212 @section dblur
9213 Apply Directional blur filter.
9214
9215 The filter accepts the following options:
9216
9217 @table @option
9218 @item angle
9219 Set angle of directional blur. Default is @code{45}.
9220
9221 @item radius
9222 Set radius of directional blur. Default is @code{5}.
9223
9224 @item planes
9225 Set which planes to filter. By default all planes are filtered.
9226 @end table
9227
9228 @subsection Commands
9229 This filter supports same @ref{commands} as options.
9230 The command accepts the same syntax of the corresponding option.
9231
9232 If the specified expression is not valid, it is kept at its current
9233 value.
9234
9235 @section dctdnoiz
9236
9237 Denoise frames using 2D DCT (frequency domain filtering).
9238
9239 This filter is not designed for real time.
9240
9241 The filter accepts the following options:
9242
9243 @table @option
9244 @item sigma, s
9245 Set the noise sigma constant.
9246
9247 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
9248 coefficient (absolute value) below this threshold with be dropped.
9249
9250 If you need a more advanced filtering, see @option{expr}.
9251
9252 Default is @code{0}.
9253
9254 @item overlap
9255 Set number overlapping pixels for each block. Since the filter can be slow, you
9256 may want to reduce this value, at the cost of a less effective filter and the
9257 risk of various artefacts.
9258
9259 If the overlapping value doesn't permit processing the whole input width or
9260 height, a warning will be displayed and according borders won't be denoised.
9261
9262 Default value is @var{blocksize}-1, which is the best possible setting.
9263
9264 @item expr, e
9265 Set the coefficient factor expression.
9266
9267 For each coefficient of a DCT block, this expression will be evaluated as a
9268 multiplier value for the coefficient.
9269
9270 If this is option is set, the @option{sigma} option will be ignored.
9271
9272 The absolute value of the coefficient can be accessed through the @var{c}
9273 variable.
9274
9275 @item n
9276 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
9277 @var{blocksize}, which is the width and height of the processed blocks.
9278
9279 The default value is @var{3} (8x8) and can be raised to @var{4} for a
9280 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
9281 on the speed processing. Also, a larger block size does not necessarily means a
9282 better de-noising.
9283 @end table
9284
9285 @subsection Examples
9286
9287 Apply a denoise with a @option{sigma} of @code{4.5}:
9288 @example
9289 dctdnoiz=4.5
9290 @end example
9291
9292 The same operation can be achieved using the expression system:
9293 @example
9294 dctdnoiz=e='gte(c, 4.5*3)'
9295 @end example
9296
9297 Violent denoise using a block size of @code{16x16}:
9298 @example
9299 dctdnoiz=15:n=4
9300 @end example
9301
9302 @section deband
9303
9304 Remove banding artifacts from input video.
9305 It works by replacing banded pixels with average value of referenced pixels.
9306
9307 The filter accepts the following options:
9308
9309 @table @option
9310 @item 1thr
9311 @item 2thr
9312 @item 3thr
9313 @item 4thr
9314 Set banding detection threshold for each plane. Default is 0.02.
9315 Valid range is 0.00003 to 0.5.
9316 If difference between current pixel and reference pixel is less than threshold,
9317 it will be considered as banded.
9318
9319 @item range, r
9320 Banding detection range in pixels. Default is 16. If positive, random number
9321 in range 0 to set value will be used. If negative, exact absolute value
9322 will be used.
9323 The range defines square of four pixels around current pixel.
9324
9325 @item direction, d
9326 Set direction in radians from which four pixel will be compared. If positive,
9327 random direction from 0 to set direction will be picked. If negative, exact of
9328 absolute value will be picked. For example direction 0, -PI or -2*PI radians
9329 will pick only pixels on same row and -PI/2 will pick only pixels on same
9330 column.
9331
9332 @item blur, b
9333 If enabled, current pixel is compared with average value of all four
9334 surrounding pixels. The default is enabled. If disabled current pixel is
9335 compared with all four surrounding pixels. The pixel is considered banded
9336 if only all four differences with surrounding pixels are less than threshold.
9337
9338 @item coupling, c
9339 If enabled, current pixel is changed if and only if all pixel components are banded,
9340 e.g. banding detection threshold is triggered for all color components.
9341 The default is disabled.
9342 @end table
9343
9344 @section deblock
9345
9346 Remove blocking artifacts from input video.
9347
9348 The filter accepts the following options:
9349
9350 @table @option
9351 @item filter
9352 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
9353 This controls what kind of deblocking is applied.
9354
9355 @item block
9356 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
9357
9358 @item alpha
9359 @item beta
9360 @item gamma
9361 @item delta
9362 Set blocking detection thresholds. Allowed range is 0 to 1.
9363 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
9364 Using higher threshold gives more deblocking strength.
9365 Setting @var{alpha} controls threshold detection at exact edge of block.
9366 Remaining options controls threshold detection near the edge. Each one for
9367 below/above or left/right. Setting any of those to @var{0} disables
9368 deblocking.
9369
9370 @item planes
9371 Set planes to filter. Default is to filter all available planes.
9372 @end table
9373
9374 @subsection Examples
9375
9376 @itemize
9377 @item
9378 Deblock using weak filter and block size of 4 pixels.
9379 @example
9380 deblock=filter=weak:block=4
9381 @end example
9382
9383 @item
9384 Deblock using strong filter, block size of 4 pixels and custom thresholds for
9385 deblocking more edges.
9386 @example
9387 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
9388 @end example
9389
9390 @item
9391 Similar as above, but filter only first plane.
9392 @example
9393 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
9394 @end example
9395
9396 @item
9397 Similar as above, but filter only second and third plane.
9398 @example
9399 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
9400 @end example
9401 @end itemize
9402
9403 @anchor{decimate}
9404 @section decimate
9405
9406 Drop duplicated frames at regular intervals.
9407
9408 The filter accepts the following options:
9409
9410 @table @option
9411 @item cycle
9412 Set the number of frames from which one will be dropped. Setting this to
9413 @var{N} means one frame in every batch of @var{N} frames will be dropped.
9414 Default is @code{5}.
9415
9416 @item dupthresh
9417 Set the threshold for duplicate detection. If the difference metric for a frame
9418 is less than or equal to this value, then it is declared as duplicate. Default
9419 is @code{1.1}
9420
9421 @item scthresh
9422 Set scene change threshold. Default is @code{15}.
9423
9424 @item blockx
9425 @item blocky
9426 Set the size of the x and y-axis blocks used during metric calculations.
9427 Larger blocks give better noise suppression, but also give worse detection of
9428 small movements. Must be a power of two. Default is @code{32}.
9429
9430 @item ppsrc
9431 Mark main input as a pre-processed input and activate clean source input
9432 stream. This allows the input to be pre-processed with various filters to help
9433 the metrics calculation while keeping the frame selection lossless. When set to
9434 @code{1}, the first stream is for the pre-processed input, and the second
9435 stream is the clean source from where the kept frames are chosen. Default is
9436 @code{0}.
9437
9438 @item chroma
9439 Set whether or not chroma is considered in the metric calculations. Default is
9440 @code{1}.
9441 @end table
9442
9443 @section deconvolve
9444
9445 Apply 2D deconvolution of video stream in frequency domain using second stream
9446 as impulse.
9447
9448 The filter accepts the following options:
9449
9450 @table @option
9451 @item planes
9452 Set which planes to process.
9453
9454 @item impulse
9455 Set which impulse video frames will be processed, can be @var{first}
9456 or @var{all}. Default is @var{all}.
9457
9458 @item noise
9459 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
9460 and height are not same and not power of 2 or if stream prior to convolving
9461 had noise.
9462 @end table
9463
9464 The @code{deconvolve} filter also supports the @ref{framesync} options.
9465
9466 @section dedot
9467
9468 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
9469
9470 It accepts the following options:
9471
9472 @table @option
9473 @item m
9474 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
9475 @var{rainbows} for cross-color reduction.
9476
9477 @item lt
9478 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
9479
9480 @item tl
9481 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
9482
9483 @item tc
9484 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
9485
9486 @item ct
9487 Set temporal chroma threshold. Lower values increases reduction of cross-color.
9488 @end table
9489
9490 @section deflate
9491
9492 Apply deflate effect to the video.
9493
9494 This filter replaces the pixel by the local(3x3) average by taking into account
9495 only values lower than the pixel.
9496
9497 It accepts the following options:
9498
9499 @table @option
9500 @item threshold0
9501 @item threshold1
9502 @item threshold2
9503 @item threshold3
9504 Limit the maximum change for each plane, default is 65535.
9505 If 0, plane will remain unchanged.
9506 @end table
9507
9508 @subsection Commands
9509
9510 This filter supports the all above options as @ref{commands}.
9511
9512 @section deflicker
9513
9514 Remove temporal frame luminance variations.
9515
9516 It accepts the following options:
9517
9518 @table @option
9519 @item size, s
9520 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
9521
9522 @item mode, m
9523 Set averaging mode to smooth temporal luminance variations.
9524
9525 Available values are:
9526 @table @samp
9527 @item am
9528 Arithmetic mean
9529
9530 @item gm
9531 Geometric mean
9532
9533 @item hm
9534 Harmonic mean
9535
9536 @item qm
9537 Quadratic mean
9538
9539 @item cm
9540 Cubic mean
9541
9542 @item pm
9543 Power mean
9544
9545 @item median
9546 Median
9547 @end table
9548
9549 @item bypass
9550 Do not actually modify frame. Useful when one only wants metadata.
9551 @end table
9552
9553 @section dejudder
9554
9555 Remove judder produced by partially interlaced telecined content.
9556
9557 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
9558 source was partially telecined content then the output of @code{pullup,dejudder}
9559 will have a variable frame rate. May change the recorded frame rate of the
9560 container. Aside from that change, this filter will not affect constant frame
9561 rate video.
9562
9563 The option available in this filter is:
9564 @table @option
9565
9566 @item cycle
9567 Specify the length of the window over which the judder repeats.
9568
9569 Accepts any integer greater than 1. Useful values are:
9570 @table @samp
9571
9572 @item 4
9573 If the original was telecined from 24 to 30 fps (Film to NTSC).
9574
9575 @item 5
9576 If the original was telecined from 25 to 30 fps (PAL to NTSC).
9577
9578 @item 20
9579 If a mixture of the two.
9580 @end table
9581
9582 The default is @samp{4}.
9583 @end table
9584
9585 @section delogo
9586
9587 Suppress a TV station logo by a simple interpolation of the surrounding
9588 pixels. Just set a rectangle covering the logo and watch it disappear
9589 (and sometimes something even uglier appear - your mileage may vary).
9590
9591 It accepts the following parameters:
9592 @table @option
9593
9594 @item x
9595 @item y
9596 Specify the top left corner coordinates of the logo. They must be
9597 specified.
9598
9599 @item w
9600 @item h
9601 Specify the width and height of the logo to clear. They must be
9602 specified.
9603
9604 @item band, t
9605 Specify the thickness of the fuzzy edge of the rectangle (added to
9606 @var{w} and @var{h}). The default value is 1. This option is
9607 deprecated, setting higher values should no longer be necessary and
9608 is not recommended.
9609
9610 @item show
9611 When set to 1, a green rectangle is drawn on the screen to simplify
9612 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
9613 The default value is 0.
9614
9615 The rectangle is drawn on the outermost pixels which will be (partly)
9616 replaced with interpolated values. The values of the next pixels
9617 immediately outside this rectangle in each direction will be used to
9618 compute the interpolated pixel values inside the rectangle.
9619
9620 @end table
9621
9622 @subsection Examples
9623
9624 @itemize
9625 @item
9626 Set a rectangle covering the area with top left corner coordinates 0,0
9627 and size 100x77, and a band of size 10:
9628 @example
9629 delogo=x=0:y=0:w=100:h=77:band=10
9630 @end example
9631
9632 @end itemize
9633
9634 @anchor{derain}
9635 @section derain
9636
9637 Remove the rain in the input image/video by applying the derain methods based on
9638 convolutional neural networks. Supported models:
9639
9640 @itemize
9641 @item
9642 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
9643 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
9644 @end itemize
9645
9646 Training as well as model generation scripts are provided in
9647 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
9648
9649 Native model files (.model) can be generated from TensorFlow model
9650 files (.pb) by using tools/python/convert.py
9651
9652 The filter accepts the following options:
9653
9654 @table @option
9655 @item filter_type
9656 Specify which filter to use. This option accepts the following values:
9657
9658 @table @samp
9659 @item derain
9660 Derain filter. To conduct derain filter, you need to use a derain model.
9661
9662 @item dehaze
9663 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
9664 @end table
9665 Default value is @samp{derain}.
9666
9667 @item dnn_backend
9668 Specify which DNN backend to use for model loading and execution. This option accepts
9669 the following values:
9670
9671 @table @samp
9672 @item native
9673 Native implementation of DNN loading and execution.
9674
9675 @item tensorflow
9676 TensorFlow backend. To enable this backend you
9677 need to install the TensorFlow for C library (see
9678 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9679 @code{--enable-libtensorflow}
9680 @end table
9681 Default value is @samp{native}.
9682
9683 @item model
9684 Set path to model file specifying network architecture and its parameters.
9685 Note that different backends use different file formats. TensorFlow and native
9686 backend can load files for only its format.
9687 @end table
9688
9689 It can also be finished with @ref{dnn_processing} filter.
9690
9691 @section deshake
9692
9693 Attempt to fix small changes in horizontal and/or vertical shift. This
9694 filter helps remove camera shake from hand-holding a camera, bumping a
9695 tripod, moving on a vehicle, etc.
9696
9697 The filter accepts the following options:
9698
9699 @table @option
9700
9701 @item x
9702 @item y
9703 @item w
9704 @item h
9705 Specify a rectangular area where to limit the search for motion
9706 vectors.
9707 If desired the search for motion vectors can be limited to a
9708 rectangular area of the frame defined by its top left corner, width
9709 and height. These parameters have the same meaning as the drawbox
9710 filter which can be used to visualise the position of the bounding
9711 box.
9712
9713 This is useful when simultaneous movement of subjects within the frame
9714 might be confused for camera motion by the motion vector search.
9715
9716 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
9717 then the full frame is used. This allows later options to be set
9718 without specifying the bounding box for the motion vector search.
9719
9720 Default - search the whole frame.
9721
9722 @item rx
9723 @item ry
9724 Specify the maximum extent of movement in x and y directions in the
9725 range 0-64 pixels. Default 16.
9726
9727 @item edge
9728 Specify how to generate pixels to fill blanks at the edge of the
9729 frame. Available values are:
9730 @table @samp
9731 @item blank, 0
9732 Fill zeroes at blank locations
9733 @item original, 1
9734 Original image at blank locations
9735 @item clamp, 2
9736 Extruded edge value at blank locations
9737 @item mirror, 3
9738 Mirrored edge at blank locations
9739 @end table
9740 Default value is @samp{mirror}.
9741
9742 @item blocksize
9743 Specify the blocksize to use for motion search. Range 4-128 pixels,
9744 default 8.
9745
9746 @item contrast
9747 Specify the contrast threshold for blocks. Only blocks with more than
9748 the specified contrast (difference between darkest and lightest
9749 pixels) will be considered. Range 1-255, default 125.
9750
9751 @item search
9752 Specify the search strategy. Available values are:
9753 @table @samp
9754 @item exhaustive, 0
9755 Set exhaustive search
9756 @item less, 1
9757 Set less exhaustive search.
9758 @end table
9759 Default value is @samp{exhaustive}.
9760
9761 @item filename
9762 If set then a detailed log of the motion search is written to the
9763 specified file.
9764
9765 @end table
9766
9767 @section despill
9768
9769 Remove unwanted contamination of foreground colors, caused by reflected color of
9770 greenscreen or bluescreen.
9771
9772 This filter accepts the following options:
9773
9774 @table @option
9775 @item type
9776 Set what type of despill to use.
9777
9778 @item mix
9779 Set how spillmap will be generated.
9780
9781 @item expand
9782 Set how much to get rid of still remaining spill.
9783
9784 @item red
9785 Controls amount of red in spill area.
9786
9787 @item green
9788 Controls amount of green in spill area.
9789 Should be -1 for greenscreen.
9790
9791 @item blue
9792 Controls amount of blue in spill area.
9793 Should be -1 for bluescreen.
9794
9795 @item brightness
9796 Controls brightness of spill area, preserving colors.
9797
9798 @item alpha
9799 Modify alpha from generated spillmap.
9800 @end table
9801
9802 @subsection Commands
9803
9804 This filter supports the all above options as @ref{commands}.
9805
9806 @section detelecine
9807
9808 Apply an exact inverse of the telecine operation. It requires a predefined
9809 pattern specified using the pattern option which must be the same as that passed
9810 to the telecine filter.
9811
9812 This filter accepts the following options:
9813
9814 @table @option
9815 @item first_field
9816 @table @samp
9817 @item top, t
9818 top field first
9819 @item bottom, b
9820 bottom field first
9821 The default value is @code{top}.
9822 @end table
9823
9824 @item pattern
9825 A string of numbers representing the pulldown pattern you wish to apply.
9826 The default value is @code{23}.
9827
9828 @item start_frame
9829 A number representing position of the first frame with respect to the telecine
9830 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9831 @end table
9832
9833 @section dilation
9834
9835 Apply dilation effect to the video.
9836
9837 This filter replaces the pixel by the local(3x3) maximum.
9838
9839 It accepts the following options:
9840
9841 @table @option
9842 @item threshold0
9843 @item threshold1
9844 @item threshold2
9845 @item threshold3
9846 Limit the maximum change for each plane, default is 65535.
9847 If 0, plane will remain unchanged.
9848
9849 @item coordinates
9850 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9851 pixels are used.
9852
9853 Flags to local 3x3 coordinates maps like this:
9854
9855     1 2 3
9856     4   5
9857     6 7 8
9858 @end table
9859
9860 @subsection Commands
9861
9862 This filter supports the all above options as @ref{commands}.
9863
9864 @section displace
9865
9866 Displace pixels as indicated by second and third input stream.
9867
9868 It takes three input streams and outputs one stream, the first input is the
9869 source, and second and third input are displacement maps.
9870
9871 The second input specifies how much to displace pixels along the
9872 x-axis, while the third input specifies how much to displace pixels
9873 along the y-axis.
9874 If one of displacement map streams terminates, last frame from that
9875 displacement map will be used.
9876
9877 Note that once generated, displacements maps can be reused over and over again.
9878
9879 A description of the accepted options follows.
9880
9881 @table @option
9882 @item edge
9883 Set displace behavior for pixels that are out of range.
9884
9885 Available values are:
9886 @table @samp
9887 @item blank
9888 Missing pixels are replaced by black pixels.
9889
9890 @item smear
9891 Adjacent pixels will spread out to replace missing pixels.
9892
9893 @item wrap
9894 Out of range pixels are wrapped so they point to pixels of other side.
9895
9896 @item mirror
9897 Out of range pixels will be replaced with mirrored pixels.
9898 @end table
9899 Default is @samp{smear}.
9900
9901 @end table
9902
9903 @subsection Examples
9904
9905 @itemize
9906 @item
9907 Add ripple effect to rgb input of video size hd720:
9908 @example
9909 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
9910 @end example
9911
9912 @item
9913 Add wave effect to rgb input of video size hd720:
9914 @example
9915 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
9916 @end example
9917 @end itemize
9918
9919 @anchor{dnn_processing}
9920 @section dnn_processing
9921
9922 Do image processing with deep neural networks. It works together with another filter
9923 which converts the pixel format of the Frame to what the dnn network requires.
9924
9925 The filter accepts the following options:
9926
9927 @table @option
9928 @item dnn_backend
9929 Specify which DNN backend to use for model loading and execution. This option accepts
9930 the following values:
9931
9932 @table @samp
9933 @item native
9934 Native implementation of DNN loading and execution.
9935
9936 @item tensorflow
9937 TensorFlow backend. To enable this backend you
9938 need to install the TensorFlow for C library (see
9939 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9940 @code{--enable-libtensorflow}
9941
9942 @item openvino
9943 OpenVINO backend. To enable this backend you
9944 need to build and install the OpenVINO for C library (see
9945 @url{https://github.com/openvinotoolkit/openvino/blob/master/build-instruction.md}) and configure FFmpeg with
9946 @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might
9947 be needed if the header files and libraries are not installed into system path)
9948
9949 @end table
9950
9951 Default value is @samp{native}.
9952
9953 @item model
9954 Set path to model file specifying network architecture and its parameters.
9955 Note that different backends use different file formats. TensorFlow, OpenVINO and native
9956 backend can load files for only its format.
9957
9958 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9959
9960 @item input
9961 Set the input name of the dnn network.
9962
9963 @item output
9964 Set the output name of the dnn network.
9965
9966 @item async
9967 use DNN async execution if set (default: set),
9968 roll back to sync execution if the backend does not support async.
9969
9970 @end table
9971
9972 @subsection Examples
9973
9974 @itemize
9975 @item
9976 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
9977 @example
9978 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
9979 @end example
9980
9981 @item
9982 Halve the pixel value of the frame with format gray32f:
9983 @example
9984 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
9985 @end example
9986
9987 @item
9988 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
9989 @example
9990 ./ffmpeg -i 480p.jpg -vf format=yuv420p,scale=w=iw*2:h=ih*2,dnn_processing=dnn_backend=tensorflow:model=srcnn.pb:input=x:output=y -y srcnn.jpg
9991 @end example
9992
9993 @item
9994 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
9995 @example
9996 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
9997 @end example
9998
9999 @end itemize
10000
10001 @section drawbox
10002
10003 Draw a colored box on the input image.
10004
10005 It accepts the following parameters:
10006
10007 @table @option
10008 @item x
10009 @item y
10010 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
10011
10012 @item width, w
10013 @item height, h
10014 The expressions which specify the width and height of the box; if 0 they are interpreted as
10015 the input width and height. It defaults to 0.
10016
10017 @item color, c
10018 Specify the color of the box to write. For the general syntax of this option,
10019 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10020 value @code{invert} is used, the box edge color is the same as the
10021 video with inverted luma.
10022
10023 @item thickness, t
10024 The expression which sets the thickness of the box edge.
10025 A value of @code{fill} will create a filled box. Default value is @code{3}.
10026
10027 See below for the list of accepted constants.
10028
10029 @item replace
10030 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
10031 will overwrite the video's color and alpha pixels.
10032 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
10033 @end table
10034
10035 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10036 following constants:
10037
10038 @table @option
10039 @item dar
10040 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10041
10042 @item hsub
10043 @item vsub
10044 horizontal and vertical chroma subsample values. For example for the
10045 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10046
10047 @item in_h, ih
10048 @item in_w, iw
10049 The input width and height.
10050
10051 @item sar
10052 The input sample aspect ratio.
10053
10054 @item x
10055 @item y
10056 The x and y offset coordinates where the box is drawn.
10057
10058 @item w
10059 @item h
10060 The width and height of the drawn box.
10061
10062 @item t
10063 The thickness of the drawn box.
10064
10065 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10066 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10067
10068 @end table
10069
10070 @subsection Examples
10071
10072 @itemize
10073 @item
10074 Draw a black box around the edge of the input image:
10075 @example
10076 drawbox
10077 @end example
10078
10079 @item
10080 Draw a box with color red and an opacity of 50%:
10081 @example
10082 drawbox=10:20:200:60:red@@0.5
10083 @end example
10084
10085 The previous example can be specified as:
10086 @example
10087 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
10088 @end example
10089
10090 @item
10091 Fill the box with pink color:
10092 @example
10093 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
10094 @end example
10095
10096 @item
10097 Draw a 2-pixel red 2.40:1 mask:
10098 @example
10099 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
10100 @end example
10101 @end itemize
10102
10103 @subsection Commands
10104 This filter supports same commands as options.
10105 The command accepts the same syntax of the corresponding option.
10106
10107 If the specified expression is not valid, it is kept at its current
10108 value.
10109
10110 @anchor{drawgraph}
10111 @section drawgraph
10112 Draw a graph using input video metadata.
10113
10114 It accepts the following parameters:
10115
10116 @table @option
10117 @item m1
10118 Set 1st frame metadata key from which metadata values will be used to draw a graph.
10119
10120 @item fg1
10121 Set 1st foreground color expression.
10122
10123 @item m2
10124 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
10125
10126 @item fg2
10127 Set 2nd foreground color expression.
10128
10129 @item m3
10130 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
10131
10132 @item fg3
10133 Set 3rd foreground color expression.
10134
10135 @item m4
10136 Set 4th frame metadata key from which metadata values will be used to draw a graph.
10137
10138 @item fg4
10139 Set 4th foreground color expression.
10140
10141 @item min
10142 Set minimal value of metadata value.
10143
10144 @item max
10145 Set maximal value of metadata value.
10146
10147 @item bg
10148 Set graph background color. Default is white.
10149
10150 @item mode
10151 Set graph mode.
10152
10153 Available values for mode is:
10154 @table @samp
10155 @item bar
10156 @item dot
10157 @item line
10158 @end table
10159
10160 Default is @code{line}.
10161
10162 @item slide
10163 Set slide mode.
10164
10165 Available values for slide is:
10166 @table @samp
10167 @item frame
10168 Draw new frame when right border is reached.
10169
10170 @item replace
10171 Replace old columns with new ones.
10172
10173 @item scroll
10174 Scroll from right to left.
10175
10176 @item rscroll
10177 Scroll from left to right.
10178
10179 @item picture
10180 Draw single picture.
10181 @end table
10182
10183 Default is @code{frame}.
10184
10185 @item size
10186 Set size of graph video. For the syntax of this option, check the
10187 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10188 The default value is @code{900x256}.
10189
10190 @item rate, r
10191 Set the output frame rate. Default value is @code{25}.
10192
10193 The foreground color expressions can use the following variables:
10194 @table @option
10195 @item MIN
10196 Minimal value of metadata value.
10197
10198 @item MAX
10199 Maximal value of metadata value.
10200
10201 @item VAL
10202 Current metadata key value.
10203 @end table
10204
10205 The color is defined as 0xAABBGGRR.
10206 @end table
10207
10208 Example using metadata from @ref{signalstats} filter:
10209 @example
10210 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
10211 @end example
10212
10213 Example using metadata from @ref{ebur128} filter:
10214 @example
10215 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
10216 @end example
10217
10218 @section drawgrid
10219
10220 Draw a grid on the input image.
10221
10222 It accepts the following parameters:
10223
10224 @table @option
10225 @item x
10226 @item y
10227 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
10228
10229 @item width, w
10230 @item height, h
10231 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
10232 input width and height, respectively, minus @code{thickness}, so image gets
10233 framed. Default to 0.
10234
10235 @item color, c
10236 Specify the color of the grid. For the general syntax of this option,
10237 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
10238 value @code{invert} is used, the grid color is the same as the
10239 video with inverted luma.
10240
10241 @item thickness, t
10242 The expression which sets the thickness of the grid line. Default value is @code{1}.
10243
10244 See below for the list of accepted constants.
10245
10246 @item replace
10247 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
10248 will overwrite the video's color and alpha pixels.
10249 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
10250 @end table
10251
10252 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
10253 following constants:
10254
10255 @table @option
10256 @item dar
10257 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
10258
10259 @item hsub
10260 @item vsub
10261 horizontal and vertical chroma subsample values. For example for the
10262 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10263
10264 @item in_h, ih
10265 @item in_w, iw
10266 The input grid cell width and height.
10267
10268 @item sar
10269 The input sample aspect ratio.
10270
10271 @item x
10272 @item y
10273 The x and y coordinates of some point of grid intersection (meant to configure offset).
10274
10275 @item w
10276 @item h
10277 The width and height of the drawn cell.
10278
10279 @item t
10280 The thickness of the drawn cell.
10281
10282 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
10283 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
10284
10285 @end table
10286
10287 @subsection Examples
10288
10289 @itemize
10290 @item
10291 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
10292 @example
10293 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
10294 @end example
10295
10296 @item
10297 Draw a white 3x3 grid with an opacity of 50%:
10298 @example
10299 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
10300 @end example
10301 @end itemize
10302
10303 @subsection Commands
10304 This filter supports same commands as options.
10305 The command accepts the same syntax of the corresponding option.
10306
10307 If the specified expression is not valid, it is kept at its current
10308 value.
10309
10310 @anchor{drawtext}
10311 @section drawtext
10312
10313 Draw a text string or text from a specified file on top of a video, using the
10314 libfreetype library.
10315
10316 To enable compilation of this filter, you need to configure FFmpeg with
10317 @code{--enable-libfreetype}.
10318 To enable default font fallback and the @var{font} option you need to
10319 configure FFmpeg with @code{--enable-libfontconfig}.
10320 To enable the @var{text_shaping} option, you need to configure FFmpeg with
10321 @code{--enable-libfribidi}.
10322
10323 @subsection Syntax
10324
10325 It accepts the following parameters:
10326
10327 @table @option
10328
10329 @item box
10330 Used to draw a box around text using the background color.
10331 The value must be either 1 (enable) or 0 (disable).
10332 The default value of @var{box} is 0.
10333
10334 @item boxborderw
10335 Set the width of the border to be drawn around the box using @var{boxcolor}.
10336 The default value of @var{boxborderw} is 0.
10337
10338 @item boxcolor
10339 The color to be used for drawing box around text. For the syntax of this
10340 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10341
10342 The default value of @var{boxcolor} is "white".
10343
10344 @item line_spacing
10345 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
10346 The default value of @var{line_spacing} is 0.
10347
10348 @item borderw
10349 Set the width of the border to be drawn around the text using @var{bordercolor}.
10350 The default value of @var{borderw} is 0.
10351
10352 @item bordercolor
10353 Set the color to be used for drawing border around text. For the syntax of this
10354 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10355
10356 The default value of @var{bordercolor} is "black".
10357
10358 @item expansion
10359 Select how the @var{text} is expanded. Can be either @code{none},
10360 @code{strftime} (deprecated) or
10361 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
10362 below for details.
10363
10364 @item basetime
10365 Set a start time for the count. Value is in microseconds. Only applied
10366 in the deprecated strftime expansion mode. To emulate in normal expansion
10367 mode use the @code{pts} function, supplying the start time (in seconds)
10368 as the second argument.
10369
10370 @item fix_bounds
10371 If true, check and fix text coords to avoid clipping.
10372
10373 @item fontcolor
10374 The color to be used for drawing fonts. For the syntax of this option, check
10375 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
10376
10377 The default value of @var{fontcolor} is "black".
10378
10379 @item fontcolor_expr
10380 String which is expanded the same way as @var{text} to obtain dynamic
10381 @var{fontcolor} value. By default this option has empty value and is not
10382 processed. When this option is set, it overrides @var{fontcolor} option.
10383
10384 @item font
10385 The font family to be used for drawing text. By default Sans.
10386
10387 @item fontfile
10388 The font file to be used for drawing text. The path must be included.
10389 This parameter is mandatory if the fontconfig support is disabled.
10390
10391 @item alpha
10392 Draw the text applying alpha blending. The value can
10393 be a number between 0.0 and 1.0.
10394 The expression accepts the same variables @var{x, y} as well.
10395 The default value is 1.
10396 Please see @var{fontcolor_expr}.
10397
10398 @item fontsize
10399 The font size to be used for drawing text.
10400 The default value of @var{fontsize} is 16.
10401
10402 @item text_shaping
10403 If set to 1, attempt to shape the text (for example, reverse the order of
10404 right-to-left text and join Arabic characters) before drawing it.
10405 Otherwise, just draw the text exactly as given.
10406 By default 1 (if supported).
10407
10408 @item ft_load_flags
10409 The flags to be used for loading the fonts.
10410
10411 The flags map the corresponding flags supported by libfreetype, and are
10412 a combination of the following values:
10413 @table @var
10414 @item default
10415 @item no_scale
10416 @item no_hinting
10417 @item render
10418 @item no_bitmap
10419 @item vertical_layout
10420 @item force_autohint
10421 @item crop_bitmap
10422 @item pedantic
10423 @item ignore_global_advance_width
10424 @item no_recurse
10425 @item ignore_transform
10426 @item monochrome
10427 @item linear_design
10428 @item no_autohint
10429 @end table
10430
10431 Default value is "default".
10432
10433 For more information consult the documentation for the FT_LOAD_*
10434 libfreetype flags.
10435
10436 @item shadowcolor
10437 The color to be used for drawing a shadow behind the drawn text. For the
10438 syntax of this option, check the @ref{color syntax,,"Color" section in the
10439 ffmpeg-utils manual,ffmpeg-utils}.
10440
10441 The default value of @var{shadowcolor} is "black".
10442
10443 @item shadowx
10444 @item shadowy
10445 The x and y offsets for the text shadow position with respect to the
10446 position of the text. They can be either positive or negative
10447 values. The default value for both is "0".
10448
10449 @item start_number
10450 The starting frame number for the n/frame_num variable. The default value
10451 is "0".
10452
10453 @item tabsize
10454 The size in number of spaces to use for rendering the tab.
10455 Default value is 4.
10456
10457 @item timecode
10458 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
10459 format. It can be used with or without text parameter. @var{timecode_rate}
10460 option must be specified.
10461
10462 @item timecode_rate, rate, r
10463 Set the timecode frame rate (timecode only). Value will be rounded to nearest
10464 integer. Minimum value is "1".
10465 Drop-frame timecode is supported for frame rates 30 & 60.
10466
10467 @item tc24hmax
10468 If set to 1, the output of the timecode option will wrap around at 24 hours.
10469 Default is 0 (disabled).
10470
10471 @item text
10472 The text string to be drawn. The text must be a sequence of UTF-8
10473 encoded characters.
10474 This parameter is mandatory if no file is specified with the parameter
10475 @var{textfile}.
10476
10477 @item textfile
10478 A text file containing text to be drawn. The text must be a sequence
10479 of UTF-8 encoded characters.
10480
10481 This parameter is mandatory if no text string is specified with the
10482 parameter @var{text}.
10483
10484 If both @var{text} and @var{textfile} are specified, an error is thrown.
10485
10486 @item reload
10487 If set to 1, the @var{textfile} will be reloaded before each frame.
10488 Be sure to update it atomically, or it may be read partially, or even fail.
10489
10490 @item x
10491 @item y
10492 The expressions which specify the offsets where text will be drawn
10493 within the video frame. They are relative to the top/left border of the
10494 output image.
10495
10496 The default value of @var{x} and @var{y} is "0".
10497
10498 See below for the list of accepted constants and functions.
10499 @end table
10500
10501 The parameters for @var{x} and @var{y} are expressions containing the
10502 following constants and functions:
10503
10504 @table @option
10505 @item dar
10506 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
10507
10508 @item hsub
10509 @item vsub
10510 horizontal and vertical chroma subsample values. For example for the
10511 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10512
10513 @item line_h, lh
10514 the height of each text line
10515
10516 @item main_h, h, H
10517 the input height
10518
10519 @item main_w, w, W
10520 the input width
10521
10522 @item max_glyph_a, ascent
10523 the maximum distance from the baseline to the highest/upper grid
10524 coordinate used to place a glyph outline point, for all the rendered
10525 glyphs.
10526 It is a positive value, due to the grid's orientation with the Y axis
10527 upwards.
10528
10529 @item max_glyph_d, descent
10530 the maximum distance from the baseline to the lowest grid coordinate
10531 used to place a glyph outline point, for all the rendered glyphs.
10532 This is a negative value, due to the grid's orientation, with the Y axis
10533 upwards.
10534
10535 @item max_glyph_h
10536 maximum glyph height, that is the maximum height for all the glyphs
10537 contained in the rendered text, it is equivalent to @var{ascent} -
10538 @var{descent}.
10539
10540 @item max_glyph_w
10541 maximum glyph width, that is the maximum width for all the glyphs
10542 contained in the rendered text
10543
10544 @item n
10545 the number of input frame, starting from 0
10546
10547 @item rand(min, max)
10548 return a random number included between @var{min} and @var{max}
10549
10550 @item sar
10551 The input sample aspect ratio.
10552
10553 @item t
10554 timestamp expressed in seconds, NAN if the input timestamp is unknown
10555
10556 @item text_h, th
10557 the height of the rendered text
10558
10559 @item text_w, tw
10560 the width of the rendered text
10561
10562 @item x
10563 @item y
10564 the x and y offset coordinates where the text is drawn.
10565
10566 These parameters allow the @var{x} and @var{y} expressions to refer
10567 to each other, so you can for example specify @code{y=x/dar}.
10568
10569 @item pict_type
10570 A one character description of the current frame's picture type.
10571
10572 @item pkt_pos
10573 The current packet's position in the input file or stream
10574 (in bytes, from the start of the input). A value of -1 indicates
10575 this info is not available.
10576
10577 @item pkt_duration
10578 The current packet's duration, in seconds.
10579
10580 @item pkt_size
10581 The current packet's size (in bytes).
10582 @end table
10583
10584 @anchor{drawtext_expansion}
10585 @subsection Text expansion
10586
10587 If @option{expansion} is set to @code{strftime},
10588 the filter recognizes strftime() sequences in the provided text and
10589 expands them accordingly. Check the documentation of strftime(). This
10590 feature is deprecated.
10591
10592 If @option{expansion} is set to @code{none}, the text is printed verbatim.
10593
10594 If @option{expansion} is set to @code{normal} (which is the default),
10595 the following expansion mechanism is used.
10596
10597 The backslash character @samp{\}, followed by any character, always expands to
10598 the second character.
10599
10600 Sequences of the form @code{%@{...@}} are expanded. The text between the
10601 braces is a function name, possibly followed by arguments separated by ':'.
10602 If the arguments contain special characters or delimiters (':' or '@}'),
10603 they should be escaped.
10604
10605 Note that they probably must also be escaped as the value for the
10606 @option{text} option in the filter argument string and as the filter
10607 argument in the filtergraph description, and possibly also for the shell,
10608 that makes up to four levels of escaping; using a text file avoids these
10609 problems.
10610
10611 The following functions are available:
10612
10613 @table @command
10614
10615 @item expr, e
10616 The expression evaluation result.
10617
10618 It must take one argument specifying the expression to be evaluated,
10619 which accepts the same constants and functions as the @var{x} and
10620 @var{y} values. Note that not all constants should be used, for
10621 example the text size is not known when evaluating the expression, so
10622 the constants @var{text_w} and @var{text_h} will have an undefined
10623 value.
10624
10625 @item expr_int_format, eif
10626 Evaluate the expression's value and output as formatted integer.
10627
10628 The first argument is the expression to be evaluated, just as for the @var{expr} function.
10629 The second argument specifies the output format. Allowed values are @samp{x},
10630 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
10631 @code{printf} function.
10632 The third parameter is optional and sets the number of positions taken by the output.
10633 It can be used to add padding with zeros from the left.
10634
10635 @item gmtime
10636 The time at which the filter is running, expressed in UTC.
10637 It can accept an argument: a strftime() format string.
10638
10639 @item localtime
10640 The time at which the filter is running, expressed in the local time zone.
10641 It can accept an argument: a strftime() format string.
10642
10643 @item metadata
10644 Frame metadata. Takes one or two arguments.
10645
10646 The first argument is mandatory and specifies the metadata key.
10647
10648 The second argument is optional and specifies a default value, used when the
10649 metadata key is not found or empty.
10650
10651 Available metadata can be identified by inspecting entries
10652 starting with TAG included within each frame section
10653 printed by running @code{ffprobe -show_frames}.
10654
10655 String metadata generated in filters leading to
10656 the drawtext filter are also available.
10657
10658 @item n, frame_num
10659 The frame number, starting from 0.
10660
10661 @item pict_type
10662 A one character description of the current picture type.
10663
10664 @item pts
10665 The timestamp of the current frame.
10666 It can take up to three arguments.
10667
10668 The first argument is the format of the timestamp; it defaults to @code{flt}
10669 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
10670 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
10671 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
10672 @code{localtime} stands for the timestamp of the frame formatted as
10673 local time zone time.
10674
10675 The second argument is an offset added to the timestamp.
10676
10677 If the format is set to @code{hms}, a third argument @code{24HH} may be
10678 supplied to present the hour part of the formatted timestamp in 24h format
10679 (00-23).
10680
10681 If the format is set to @code{localtime} or @code{gmtime},
10682 a third argument may be supplied: a strftime() format string.
10683 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
10684 @end table
10685
10686 @subsection Commands
10687
10688 This filter supports altering parameters via commands:
10689 @table @option
10690 @item reinit
10691 Alter existing filter parameters.
10692
10693 Syntax for the argument is the same as for filter invocation, e.g.
10694
10695 @example
10696 fontsize=56:fontcolor=green:text='Hello World'
10697 @end example
10698
10699 Full filter invocation with sendcmd would look like this:
10700
10701 @example
10702 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
10703 @end example
10704 @end table
10705
10706 If the entire argument can't be parsed or applied as valid values then the filter will
10707 continue with its existing parameters.
10708
10709 @subsection Examples
10710
10711 @itemize
10712 @item
10713 Draw "Test Text" with font FreeSerif, using the default values for the
10714 optional parameters.
10715
10716 @example
10717 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
10718 @end example
10719
10720 @item
10721 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
10722 and y=50 (counting from the top-left corner of the screen), text is
10723 yellow with a red box around it. Both the text and the box have an
10724 opacity of 20%.
10725
10726 @example
10727 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
10728           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
10729 @end example
10730
10731 Note that the double quotes are not necessary if spaces are not used
10732 within the parameter list.
10733
10734 @item
10735 Show the text at the center of the video frame:
10736 @example
10737 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
10738 @end example
10739
10740 @item
10741 Show the text at a random position, switching to a new position every 30 seconds:
10742 @example
10743 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)"
10744 @end example
10745
10746 @item
10747 Show a text line sliding from right to left in the last row of the video
10748 frame. The file @file{LONG_LINE} is assumed to contain a single line
10749 with no newlines.
10750 @example
10751 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10752 @end example
10753
10754 @item
10755 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10756 @example
10757 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10758 @end example
10759
10760 @item
10761 Draw a single green letter "g", at the center of the input video.
10762 The glyph baseline is placed at half screen height.
10763 @example
10764 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10765 @end example
10766
10767 @item
10768 Show text for 1 second every 3 seconds:
10769 @example
10770 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10771 @end example
10772
10773 @item
10774 Use fontconfig to set the font. Note that the colons need to be escaped.
10775 @example
10776 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10777 @end example
10778
10779 @item
10780 Draw "Test Text" with font size dependent on height of the video.
10781 @example
10782 drawtext="text='Test Text': fontsize=h/30: x=(w-text_w)/2: y=(h-text_h*2)"
10783 @end example
10784
10785 @item
10786 Print the date of a real-time encoding (see strftime(3)):
10787 @example
10788 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10789 @end example
10790
10791 @item
10792 Show text fading in and out (appearing/disappearing):
10793 @example
10794 #!/bin/sh
10795 DS=1.0 # display start
10796 DE=10.0 # display end
10797 FID=1.5 # fade in duration
10798 FOD=5 # fade out duration
10799 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 @}"
10800 @end example
10801
10802 @item
10803 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10804 and the @option{fontsize} value are included in the @option{y} offset.
10805 @example
10806 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10807 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10808 @end example
10809
10810 @item
10811 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10812 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10813 must have option @option{-export_path_metadata 1} for the special metadata fields
10814 to be available for filters.
10815 @example
10816 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10817 @end example
10818
10819 @end itemize
10820
10821 For more information about libfreetype, check:
10822 @url{http://www.freetype.org/}.
10823
10824 For more information about fontconfig, check:
10825 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10826
10827 For more information about libfribidi, check:
10828 @url{http://fribidi.org/}.
10829
10830 @section edgedetect
10831
10832 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10833
10834 The filter accepts the following options:
10835
10836 @table @option
10837 @item low
10838 @item high
10839 Set low and high threshold values used by the Canny thresholding
10840 algorithm.
10841
10842 The high threshold selects the "strong" edge pixels, which are then
10843 connected through 8-connectivity with the "weak" edge pixels selected
10844 by the low threshold.
10845
10846 @var{low} and @var{high} threshold values must be chosen in the range
10847 [0,1], and @var{low} should be lesser or equal to @var{high}.
10848
10849 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10850 is @code{50/255}.
10851
10852 @item mode
10853 Define the drawing mode.
10854
10855 @table @samp
10856 @item wires
10857 Draw white/gray wires on black background.
10858
10859 @item colormix
10860 Mix the colors to create a paint/cartoon effect.
10861
10862 @item canny
10863 Apply Canny edge detector on all selected planes.
10864 @end table
10865 Default value is @var{wires}.
10866
10867 @item planes
10868 Select planes for filtering. By default all available planes are filtered.
10869 @end table
10870
10871 @subsection Examples
10872
10873 @itemize
10874 @item
10875 Standard edge detection with custom values for the hysteresis thresholding:
10876 @example
10877 edgedetect=low=0.1:high=0.4
10878 @end example
10879
10880 @item
10881 Painting effect without thresholding:
10882 @example
10883 edgedetect=mode=colormix:high=0
10884 @end example
10885 @end itemize
10886
10887 @section elbg
10888
10889 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10890
10891 For each input image, the filter will compute the optimal mapping from
10892 the input to the output given the codebook length, that is the number
10893 of distinct output colors.
10894
10895 This filter accepts the following options.
10896
10897 @table @option
10898 @item codebook_length, l
10899 Set codebook length. The value must be a positive integer, and
10900 represents the number of distinct output colors. Default value is 256.
10901
10902 @item nb_steps, n
10903 Set the maximum number of iterations to apply for computing the optimal
10904 mapping. The higher the value the better the result and the higher the
10905 computation time. Default value is 1.
10906
10907 @item seed, s
10908 Set a random seed, must be an integer included between 0 and
10909 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10910 will try to use a good random seed on a best effort basis.
10911
10912 @item pal8
10913 Set pal8 output pixel format. This option does not work with codebook
10914 length greater than 256.
10915 @end table
10916
10917 @section entropy
10918
10919 Measure graylevel entropy in histogram of color channels of video frames.
10920
10921 It accepts the following parameters:
10922
10923 @table @option
10924 @item mode
10925 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10926
10927 @var{diff} mode measures entropy of histogram delta values, absolute differences
10928 between neighbour histogram values.
10929 @end table
10930
10931 @section eq
10932 Set brightness, contrast, saturation and approximate gamma adjustment.
10933
10934 The filter accepts the following options:
10935
10936 @table @option
10937 @item contrast
10938 Set the contrast expression. The value must be a float value in range
10939 @code{-1000.0} to @code{1000.0}. The default value is "1".
10940
10941 @item brightness
10942 Set the brightness expression. The value must be a float value in
10943 range @code{-1.0} to @code{1.0}. The default value is "0".
10944
10945 @item saturation
10946 Set the saturation expression. The value must be a float in
10947 range @code{0.0} to @code{3.0}. The default value is "1".
10948
10949 @item gamma
10950 Set the gamma expression. The value must be a float in range
10951 @code{0.1} to @code{10.0}.  The default value is "1".
10952
10953 @item gamma_r
10954 Set the gamma expression for red. The value must be a float in
10955 range @code{0.1} to @code{10.0}. The default value is "1".
10956
10957 @item gamma_g
10958 Set the gamma expression for green. The value must be a float in range
10959 @code{0.1} to @code{10.0}. The default value is "1".
10960
10961 @item gamma_b
10962 Set the gamma expression for blue. The value must be a float in range
10963 @code{0.1} to @code{10.0}. The default value is "1".
10964
10965 @item gamma_weight
10966 Set the gamma weight expression. It can be used to reduce the effect
10967 of a high gamma value on bright image areas, e.g. keep them from
10968 getting overamplified and just plain white. The value must be a float
10969 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10970 gamma correction all the way down while @code{1.0} leaves it at its
10971 full strength. Default is "1".
10972
10973 @item eval
10974 Set when the expressions for brightness, contrast, saturation and
10975 gamma expressions are evaluated.
10976
10977 It accepts the following values:
10978 @table @samp
10979 @item init
10980 only evaluate expressions once during the filter initialization or
10981 when a command is processed
10982
10983 @item frame
10984 evaluate expressions for each incoming frame
10985 @end table
10986
10987 Default value is @samp{init}.
10988 @end table
10989
10990 The expressions accept the following parameters:
10991 @table @option
10992 @item n
10993 frame count of the input frame starting from 0
10994
10995 @item pos
10996 byte position of the corresponding packet in the input file, NAN if
10997 unspecified
10998
10999 @item r
11000 frame rate of the input video, NAN if the input frame rate is unknown
11001
11002 @item t
11003 timestamp expressed in seconds, NAN if the input timestamp is unknown
11004 @end table
11005
11006 @subsection Commands
11007 The filter supports the following commands:
11008
11009 @table @option
11010 @item contrast
11011 Set the contrast expression.
11012
11013 @item brightness
11014 Set the brightness expression.
11015
11016 @item saturation
11017 Set the saturation expression.
11018
11019 @item gamma
11020 Set the gamma expression.
11021
11022 @item gamma_r
11023 Set the gamma_r expression.
11024
11025 @item gamma_g
11026 Set gamma_g expression.
11027
11028 @item gamma_b
11029 Set gamma_b expression.
11030
11031 @item gamma_weight
11032 Set gamma_weight expression.
11033
11034 The command accepts the same syntax of the corresponding option.
11035
11036 If the specified expression is not valid, it is kept at its current
11037 value.
11038
11039 @end table
11040
11041 @section erosion
11042
11043 Apply erosion effect to the video.
11044
11045 This filter replaces the pixel by the local(3x3) minimum.
11046
11047 It accepts the following options:
11048
11049 @table @option
11050 @item threshold0
11051 @item threshold1
11052 @item threshold2
11053 @item threshold3
11054 Limit the maximum change for each plane, default is 65535.
11055 If 0, plane will remain unchanged.
11056
11057 @item coordinates
11058 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
11059 pixels are used.
11060
11061 Flags to local 3x3 coordinates maps like this:
11062
11063     1 2 3
11064     4   5
11065     6 7 8
11066 @end table
11067
11068 @subsection Commands
11069
11070 This filter supports the all above options as @ref{commands}.
11071
11072 @section estdif
11073
11074 Deinterlace the input video ("estdif" stands for "Edge Slope
11075 Tracing Deinterlacing Filter").
11076
11077 Spatial only filter that uses edge slope tracing algorithm
11078 to interpolate missing lines.
11079 It accepts the following parameters:
11080
11081 @table @option
11082 @item mode
11083 The interlacing mode to adopt. It accepts one of the following values:
11084
11085 @table @option
11086 @item frame
11087 Output one frame for each frame.
11088 @item field
11089 Output one frame for each field.
11090 @end table
11091
11092 The default value is @code{field}.
11093
11094 @item parity
11095 The picture field parity assumed for the input interlaced video. It accepts one
11096 of the following values:
11097
11098 @table @option
11099 @item tff
11100 Assume the top field is first.
11101 @item bff
11102 Assume the bottom field is first.
11103 @item auto
11104 Enable automatic detection of field parity.
11105 @end table
11106
11107 The default value is @code{auto}.
11108 If the interlacing is unknown or the decoder does not export this information,
11109 top field first will be assumed.
11110
11111 @item deint
11112 Specify which frames to deinterlace. Accepts one of the following
11113 values:
11114
11115 @table @option
11116 @item all
11117 Deinterlace all frames.
11118 @item interlaced
11119 Only deinterlace frames marked as interlaced.
11120 @end table
11121
11122 The default value is @code{all}.
11123
11124 @item rslope
11125 Specify the search radius for edge slope tracing. Default value is 1.
11126 Allowed range is from 1 to 15.
11127
11128 @item redge
11129 Specify the search radius for best edge matching. Default value is 2.
11130 Allowed range is from 0 to 15.
11131 @end table
11132
11133 @subsection Commands
11134 This filter supports same @ref{commands} as options.
11135
11136 @section extractplanes
11137
11138 Extract color channel components from input video stream into
11139 separate grayscale video streams.
11140
11141 The filter accepts the following option:
11142
11143 @table @option
11144 @item planes
11145 Set plane(s) to extract.
11146
11147 Available values for planes are:
11148 @table @samp
11149 @item y
11150 @item u
11151 @item v
11152 @item a
11153 @item r
11154 @item g
11155 @item b
11156 @end table
11157
11158 Choosing planes not available in the input will result in an error.
11159 That means you cannot select @code{r}, @code{g}, @code{b} planes
11160 with @code{y}, @code{u}, @code{v} planes at same time.
11161 @end table
11162
11163 @subsection Examples
11164
11165 @itemize
11166 @item
11167 Extract luma, u and v color channel component from input video frame
11168 into 3 grayscale outputs:
11169 @example
11170 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
11171 @end example
11172 @end itemize
11173
11174 @section fade
11175
11176 Apply a fade-in/out effect to the input video.
11177
11178 It accepts the following parameters:
11179
11180 @table @option
11181 @item type, t
11182 The effect type can be either "in" for a fade-in, or "out" for a fade-out
11183 effect.
11184 Default is @code{in}.
11185
11186 @item start_frame, s
11187 Specify the number of the frame to start applying the fade
11188 effect at. Default is 0.
11189
11190 @item nb_frames, n
11191 The number of frames that the fade effect lasts. At the end of the
11192 fade-in effect, the output video will have the same intensity as the input video.
11193 At the end of the fade-out transition, the output video will be filled with the
11194 selected @option{color}.
11195 Default is 25.
11196
11197 @item alpha
11198 If set to 1, fade only alpha channel, if one exists on the input.
11199 Default value is 0.
11200
11201 @item start_time, st
11202 Specify the timestamp (in seconds) of the frame to start to apply the fade
11203 effect. If both start_frame and start_time are specified, the fade will start at
11204 whichever comes last.  Default is 0.
11205
11206 @item duration, d
11207 The number of seconds for which the fade effect has to last. At the end of the
11208 fade-in effect the output video will have the same intensity as the input video,
11209 at the end of the fade-out transition the output video will be filled with the
11210 selected @option{color}.
11211 If both duration and nb_frames are specified, duration is used. Default is 0
11212 (nb_frames is used by default).
11213
11214 @item color, c
11215 Specify the color of the fade. Default is "black".
11216 @end table
11217
11218 @subsection Examples
11219
11220 @itemize
11221 @item
11222 Fade in the first 30 frames of video:
11223 @example
11224 fade=in:0:30
11225 @end example
11226
11227 The command above is equivalent to:
11228 @example
11229 fade=t=in:s=0:n=30
11230 @end example
11231
11232 @item
11233 Fade out the last 45 frames of a 200-frame video:
11234 @example
11235 fade=out:155:45
11236 fade=type=out:start_frame=155:nb_frames=45
11237 @end example
11238
11239 @item
11240 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
11241 @example
11242 fade=in:0:25, fade=out:975:25
11243 @end example
11244
11245 @item
11246 Make the first 5 frames yellow, then fade in from frame 5-24:
11247 @example
11248 fade=in:5:20:color=yellow
11249 @end example
11250
11251 @item
11252 Fade in alpha over first 25 frames of video:
11253 @example
11254 fade=in:0:25:alpha=1
11255 @end example
11256
11257 @item
11258 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
11259 @example
11260 fade=t=in:st=5.5:d=0.5
11261 @end example
11262
11263 @end itemize
11264
11265 @section fftdnoiz
11266 Denoise frames using 3D FFT (frequency domain filtering).
11267
11268 The filter accepts the following options:
11269
11270 @table @option
11271 @item sigma
11272 Set the noise sigma constant. This sets denoising strength.
11273 Default value is 1. Allowed range is from 0 to 30.
11274 Using very high sigma with low overlap may give blocking artifacts.
11275
11276 @item amount
11277 Set amount of denoising. By default all detected noise is reduced.
11278 Default value is 1. Allowed range is from 0 to 1.
11279
11280 @item block
11281 Set size of block, Default is 4, can be 3, 4, 5 or 6.
11282 Actual size of block in pixels is 2 to power of @var{block}, so by default
11283 block size in pixels is 2^4 which is 16.
11284
11285 @item overlap
11286 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
11287
11288 @item prev
11289 Set number of previous frames to use for denoising. By default is set to 0.
11290
11291 @item next
11292 Set number of next frames to to use for denoising. By default is set to 0.
11293
11294 @item planes
11295 Set planes which will be filtered, by default are all available filtered
11296 except alpha.
11297 @end table
11298
11299 @section fftfilt
11300 Apply arbitrary expressions to samples in frequency domain
11301
11302 @table @option
11303 @item dc_Y
11304 Adjust the dc value (gain) of the luma plane of the image. The filter
11305 accepts an integer value in range @code{0} to @code{1000}. The default
11306 value is set to @code{0}.
11307
11308 @item dc_U
11309 Adjust the dc value (gain) of the 1st chroma plane of the image. The
11310 filter accepts an integer value in range @code{0} to @code{1000}. The
11311 default value is set to @code{0}.
11312
11313 @item dc_V
11314 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
11315 filter accepts an integer value in range @code{0} to @code{1000}. The
11316 default value is set to @code{0}.
11317
11318 @item weight_Y
11319 Set the frequency domain weight expression for the luma plane.
11320
11321 @item weight_U
11322 Set the frequency domain weight expression for the 1st chroma plane.
11323
11324 @item weight_V
11325 Set the frequency domain weight expression for the 2nd chroma plane.
11326
11327 @item eval
11328 Set when the expressions are evaluated.
11329
11330 It accepts the following values:
11331 @table @samp
11332 @item init
11333 Only evaluate expressions once during the filter initialization.
11334
11335 @item frame
11336 Evaluate expressions for each incoming frame.
11337 @end table
11338
11339 Default value is @samp{init}.
11340
11341 The filter accepts the following variables:
11342 @item X
11343 @item Y
11344 The coordinates of the current sample.
11345
11346 @item W
11347 @item H
11348 The width and height of the image.
11349
11350 @item N
11351 The number of input frame, starting from 0.
11352 @end table
11353
11354 @subsection Examples
11355
11356 @itemize
11357 @item
11358 High-pass:
11359 @example
11360 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
11361 @end example
11362
11363 @item
11364 Low-pass:
11365 @example
11366 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
11367 @end example
11368
11369 @item
11370 Sharpen:
11371 @example
11372 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
11373 @end example
11374
11375 @item
11376 Blur:
11377 @example
11378 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
11379 @end example
11380
11381 @end itemize
11382
11383 @section field
11384
11385 Extract a single field from an interlaced image using stride
11386 arithmetic to avoid wasting CPU time. The output frames are marked as
11387 non-interlaced.
11388
11389 The filter accepts the following options:
11390
11391 @table @option
11392 @item type
11393 Specify whether to extract the top (if the value is @code{0} or
11394 @code{top}) or the bottom field (if the value is @code{1} or
11395 @code{bottom}).
11396 @end table
11397
11398 @section fieldhint
11399
11400 Create new frames by copying the top and bottom fields from surrounding frames
11401 supplied as numbers by the hint file.
11402
11403 @table @option
11404 @item hint
11405 Set file containing hints: absolute/relative frame numbers.
11406
11407 There must be one line for each frame in a clip. Each line must contain two
11408 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
11409 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
11410 is current frame number for @code{absolute} mode or out of [-1, 1] range
11411 for @code{relative} mode. First number tells from which frame to pick up top
11412 field and second number tells from which frame to pick up bottom field.
11413
11414 If optionally followed by @code{+} output frame will be marked as interlaced,
11415 else if followed by @code{-} output frame will be marked as progressive, else
11416 it will be marked same as input frame.
11417 If optionally followed by @code{t} output frame will use only top field, or in
11418 case of @code{b} it will use only bottom field.
11419 If line starts with @code{#} or @code{;} that line is skipped.
11420
11421 @item mode
11422 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
11423 @end table
11424
11425 Example of first several lines of @code{hint} file for @code{relative} mode:
11426 @example
11427 0,0 - # first frame
11428 1,0 - # second frame, use third's frame top field and second's frame bottom field
11429 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
11430 1,0 -
11431 0,0 -
11432 0,0 -
11433 1,0 -
11434 1,0 -
11435 1,0 -
11436 0,0 -
11437 0,0 -
11438 1,0 -
11439 1,0 -
11440 1,0 -
11441 0,0 -
11442 @end example
11443
11444 @section fieldmatch
11445
11446 Field matching filter for inverse telecine. It is meant to reconstruct the
11447 progressive frames from a telecined stream. The filter does not drop duplicated
11448 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
11449 followed by a decimation filter such as @ref{decimate} in the filtergraph.
11450
11451 The separation of the field matching and the decimation is notably motivated by
11452 the possibility of inserting a de-interlacing filter fallback between the two.
11453 If the source has mixed telecined and real interlaced content,
11454 @code{fieldmatch} will not be able to match fields for the interlaced parts.
11455 But these remaining combed frames will be marked as interlaced, and thus can be
11456 de-interlaced by a later filter such as @ref{yadif} before decimation.
11457
11458 In addition to the various configuration options, @code{fieldmatch} can take an
11459 optional second stream, activated through the @option{ppsrc} option. If
11460 enabled, the frames reconstruction will be based on the fields and frames from
11461 this second stream. This allows the first input to be pre-processed in order to
11462 help the various algorithms of the filter, while keeping the output lossless
11463 (assuming the fields are matched properly). Typically, a field-aware denoiser,
11464 or brightness/contrast adjustments can help.
11465
11466 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
11467 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
11468 which @code{fieldmatch} is based on. While the semantic and usage are very
11469 close, some behaviour and options names can differ.
11470
11471 The @ref{decimate} filter currently only works for constant frame rate input.
11472 If your input has mixed telecined (30fps) and progressive content with a lower
11473 framerate like 24fps use the following filterchain to produce the necessary cfr
11474 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
11475
11476 The filter accepts the following options:
11477
11478 @table @option
11479 @item order
11480 Specify the assumed field order of the input stream. Available values are:
11481
11482 @table @samp
11483 @item auto
11484 Auto detect parity (use FFmpeg's internal parity value).
11485 @item bff
11486 Assume bottom field first.
11487 @item tff
11488 Assume top field first.
11489 @end table
11490
11491 Note that it is sometimes recommended not to trust the parity announced by the
11492 stream.
11493
11494 Default value is @var{auto}.
11495
11496 @item mode
11497 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
11498 sense that it won't risk creating jerkiness due to duplicate frames when
11499 possible, but if there are bad edits or blended fields it will end up
11500 outputting combed frames when a good match might actually exist. On the other
11501 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
11502 but will almost always find a good frame if there is one. The other values are
11503 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
11504 jerkiness and creating duplicate frames versus finding good matches in sections
11505 with bad edits, orphaned fields, blended fields, etc.
11506
11507 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
11508
11509 Available values are:
11510
11511 @table @samp
11512 @item pc
11513 2-way matching (p/c)
11514 @item pc_n
11515 2-way matching, and trying 3rd match if still combed (p/c + n)
11516 @item pc_u
11517 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
11518 @item pc_n_ub
11519 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
11520 still combed (p/c + n + u/b)
11521 @item pcn
11522 3-way matching (p/c/n)
11523 @item pcn_ub
11524 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
11525 detected as combed (p/c/n + u/b)
11526 @end table
11527
11528 The parenthesis at the end indicate the matches that would be used for that
11529 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
11530 @var{top}).
11531
11532 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
11533 the slowest.
11534
11535 Default value is @var{pc_n}.
11536
11537 @item ppsrc
11538 Mark the main input stream as a pre-processed input, and enable the secondary
11539 input stream as the clean source to pick the fields from. See the filter
11540 introduction for more details. It is similar to the @option{clip2} feature from
11541 VFM/TFM.
11542
11543 Default value is @code{0} (disabled).
11544
11545 @item field
11546 Set the field to match from. It is recommended to set this to the same value as
11547 @option{order} unless you experience matching failures with that setting. In
11548 certain circumstances changing the field that is used to match from can have a
11549 large impact on matching performance. Available values are:
11550
11551 @table @samp
11552 @item auto
11553 Automatic (same value as @option{order}).
11554 @item bottom
11555 Match from the bottom field.
11556 @item top
11557 Match from the top field.
11558 @end table
11559
11560 Default value is @var{auto}.
11561
11562 @item mchroma
11563 Set whether or not chroma is included during the match comparisons. In most
11564 cases it is recommended to leave this enabled. You should set this to @code{0}
11565 only if your clip has bad chroma problems such as heavy rainbowing or other
11566 artifacts. Setting this to @code{0} could also be used to speed things up at
11567 the cost of some accuracy.
11568
11569 Default value is @code{1}.
11570
11571 @item y0
11572 @item y1
11573 These define an exclusion band which excludes the lines between @option{y0} and
11574 @option{y1} from being included in the field matching decision. An exclusion
11575 band can be used to ignore subtitles, a logo, or other things that may
11576 interfere with the matching. @option{y0} sets the starting scan line and
11577 @option{y1} sets the ending line; all lines in between @option{y0} and
11578 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
11579 @option{y0} and @option{y1} to the same value will disable the feature.
11580 @option{y0} and @option{y1} defaults to @code{0}.
11581
11582 @item scthresh
11583 Set the scene change detection threshold as a percentage of maximum change on
11584 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
11585 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
11586 @option{scthresh} is @code{[0.0, 100.0]}.
11587
11588 Default value is @code{12.0}.
11589
11590 @item combmatch
11591 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
11592 account the combed scores of matches when deciding what match to use as the
11593 final match. Available values are:
11594
11595 @table @samp
11596 @item none
11597 No final matching based on combed scores.
11598 @item sc
11599 Combed scores are only used when a scene change is detected.
11600 @item full
11601 Use combed scores all the time.
11602 @end table
11603
11604 Default is @var{sc}.
11605
11606 @item combdbg
11607 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
11608 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
11609 Available values are:
11610
11611 @table @samp
11612 @item none
11613 No forced calculation.
11614 @item pcn
11615 Force p/c/n calculations.
11616 @item pcnub
11617 Force p/c/n/u/b calculations.
11618 @end table
11619
11620 Default value is @var{none}.
11621
11622 @item cthresh
11623 This is the area combing threshold used for combed frame detection. This
11624 essentially controls how "strong" or "visible" combing must be to be detected.
11625 Larger values mean combing must be more visible and smaller values mean combing
11626 can be less visible or strong and still be detected. Valid settings are from
11627 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
11628 be detected as combed). This is basically a pixel difference value. A good
11629 range is @code{[8, 12]}.
11630
11631 Default value is @code{9}.
11632
11633 @item chroma
11634 Sets whether or not chroma is considered in the combed frame decision.  Only
11635 disable this if your source has chroma problems (rainbowing, etc.) that are
11636 causing problems for the combed frame detection with chroma enabled. Actually,
11637 using @option{chroma}=@var{0} is usually more reliable, except for the case
11638 where there is chroma only combing in the source.
11639
11640 Default value is @code{0}.
11641
11642 @item blockx
11643 @item blocky
11644 Respectively set the x-axis and y-axis size of the window used during combed
11645 frame detection. This has to do with the size of the area in which
11646 @option{combpel} pixels are required to be detected as combed for a frame to be
11647 declared combed. See the @option{combpel} parameter description for more info.
11648 Possible values are any number that is a power of 2 starting at 4 and going up
11649 to 512.
11650
11651 Default value is @code{16}.
11652
11653 @item combpel
11654 The number of combed pixels inside any of the @option{blocky} by
11655 @option{blockx} size blocks on the frame for the frame to be detected as
11656 combed. While @option{cthresh} controls how "visible" the combing must be, this
11657 setting controls "how much" combing there must be in any localized area (a
11658 window defined by the @option{blockx} and @option{blocky} settings) on the
11659 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
11660 which point no frames will ever be detected as combed). This setting is known
11661 as @option{MI} in TFM/VFM vocabulary.
11662
11663 Default value is @code{80}.
11664 @end table
11665
11666 @anchor{p/c/n/u/b meaning}
11667 @subsection p/c/n/u/b meaning
11668
11669 @subsubsection p/c/n
11670
11671 We assume the following telecined stream:
11672
11673 @example
11674 Top fields:     1 2 2 3 4
11675 Bottom fields:  1 2 3 4 4
11676 @end example
11677
11678 The numbers correspond to the progressive frame the fields relate to. Here, the
11679 first two frames are progressive, the 3rd and 4th are combed, and so on.
11680
11681 When @code{fieldmatch} is configured to run a matching from bottom
11682 (@option{field}=@var{bottom}) this is how this input stream get transformed:
11683
11684 @example
11685 Input stream:
11686                 T     1 2 2 3 4
11687                 B     1 2 3 4 4   <-- matching reference
11688
11689 Matches:              c c n n c
11690
11691 Output stream:
11692                 T     1 2 3 4 4
11693                 B     1 2 3 4 4
11694 @end example
11695
11696 As a result of the field matching, we can see that some frames get duplicated.
11697 To perform a complete inverse telecine, you need to rely on a decimation filter
11698 after this operation. See for instance the @ref{decimate} filter.
11699
11700 The same operation now matching from top fields (@option{field}=@var{top})
11701 looks like this:
11702
11703 @example
11704 Input stream:
11705                 T     1 2 2 3 4   <-- matching reference
11706                 B     1 2 3 4 4
11707
11708 Matches:              c c p p c
11709
11710 Output stream:
11711                 T     1 2 2 3 4
11712                 B     1 2 2 3 4
11713 @end example
11714
11715 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
11716 basically, they refer to the frame and field of the opposite parity:
11717
11718 @itemize
11719 @item @var{p} matches the field of the opposite parity in the previous frame
11720 @item @var{c} matches the field of the opposite parity in the current frame
11721 @item @var{n} matches the field of the opposite parity in the next frame
11722 @end itemize
11723
11724 @subsubsection u/b
11725
11726 The @var{u} and @var{b} matching are a bit special in the sense that they match
11727 from the opposite parity flag. In the following examples, we assume that we are
11728 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
11729 'x' is placed above and below each matched fields.
11730
11731 With bottom matching (@option{field}=@var{bottom}):
11732 @example
11733 Match:           c         p           n          b          u
11734
11735                  x       x               x        x          x
11736   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11737   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11738                  x         x           x        x              x
11739
11740 Output frames:
11741                  2          1          2          2          2
11742                  2          2          2          1          3
11743 @end example
11744
11745 With top matching (@option{field}=@var{top}):
11746 @example
11747 Match:           c         p           n          b          u
11748
11749                  x         x           x        x              x
11750   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
11751   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
11752                  x       x               x        x          x
11753
11754 Output frames:
11755                  2          2          2          1          2
11756                  2          1          3          2          2
11757 @end example
11758
11759 @subsection Examples
11760
11761 Simple IVTC of a top field first telecined stream:
11762 @example
11763 fieldmatch=order=tff:combmatch=none, decimate
11764 @end example
11765
11766 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
11767 @example
11768 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
11769 @end example
11770
11771 @section fieldorder
11772
11773 Transform the field order of the input video.
11774
11775 It accepts the following parameters:
11776
11777 @table @option
11778
11779 @item order
11780 The output field order. Valid values are @var{tff} for top field first or @var{bff}
11781 for bottom field first.
11782 @end table
11783
11784 The default value is @samp{tff}.
11785
11786 The transformation is done by shifting the picture content up or down
11787 by one line, and filling the remaining line with appropriate picture content.
11788 This method is consistent with most broadcast field order converters.
11789
11790 If the input video is not flagged as being interlaced, or it is already
11791 flagged as being of the required output field order, then this filter does
11792 not alter the incoming video.
11793
11794 It is very useful when converting to or from PAL DV material,
11795 which is bottom field first.
11796
11797 For example:
11798 @example
11799 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
11800 @end example
11801
11802 @section fifo, afifo
11803
11804 Buffer input images and send them when they are requested.
11805
11806 It is mainly useful when auto-inserted by the libavfilter
11807 framework.
11808
11809 It does not take parameters.
11810
11811 @section fillborders
11812
11813 Fill borders of the input video, without changing video stream dimensions.
11814 Sometimes video can have garbage at the four edges and you may not want to
11815 crop video input to keep size multiple of some number.
11816
11817 This filter accepts the following options:
11818
11819 @table @option
11820 @item left
11821 Number of pixels to fill from left border.
11822
11823 @item right
11824 Number of pixels to fill from right border.
11825
11826 @item top
11827 Number of pixels to fill from top border.
11828
11829 @item bottom
11830 Number of pixels to fill from bottom border.
11831
11832 @item mode
11833 Set fill mode.
11834
11835 It accepts the following values:
11836 @table @samp
11837 @item smear
11838 fill pixels using outermost pixels
11839
11840 @item mirror
11841 fill pixels using mirroring (half sample symmetric)
11842
11843 @item fixed
11844 fill pixels with constant value
11845
11846 @item reflect
11847 fill pixels using reflecting (whole sample symmetric)
11848
11849 @item wrap
11850 fill pixels using wrapping
11851
11852 @item fade
11853 fade pixels to constant value
11854 @end table
11855
11856 Default is @var{smear}.
11857
11858 @item color
11859 Set color for pixels in fixed or fade mode. Default is @var{black}.
11860 @end table
11861
11862 @subsection Commands
11863 This filter supports same @ref{commands} as options.
11864 The command accepts the same syntax of the corresponding option.
11865
11866 If the specified expression is not valid, it is kept at its current
11867 value.
11868
11869 @section find_rect
11870
11871 Find a rectangular object
11872
11873 It accepts the following options:
11874
11875 @table @option
11876 @item object
11877 Filepath of the object image, needs to be in gray8.
11878
11879 @item threshold
11880 Detection threshold, default is 0.5.
11881
11882 @item mipmaps
11883 Number of mipmaps, default is 3.
11884
11885 @item xmin, ymin, xmax, ymax
11886 Specifies the rectangle in which to search.
11887 @end table
11888
11889 @subsection Examples
11890
11891 @itemize
11892 @item
11893 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11894 @example
11895 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11896 @end example
11897 @end itemize
11898
11899 @section floodfill
11900
11901 Flood area with values of same pixel components with another values.
11902
11903 It accepts the following options:
11904 @table @option
11905 @item x
11906 Set pixel x coordinate.
11907
11908 @item y
11909 Set pixel y coordinate.
11910
11911 @item s0
11912 Set source #0 component value.
11913
11914 @item s1
11915 Set source #1 component value.
11916
11917 @item s2
11918 Set source #2 component value.
11919
11920 @item s3
11921 Set source #3 component value.
11922
11923 @item d0
11924 Set destination #0 component value.
11925
11926 @item d1
11927 Set destination #1 component value.
11928
11929 @item d2
11930 Set destination #2 component value.
11931
11932 @item d3
11933 Set destination #3 component value.
11934 @end table
11935
11936 @anchor{format}
11937 @section format
11938
11939 Convert the input video to one of the specified pixel formats.
11940 Libavfilter will try to pick one that is suitable as input to
11941 the next filter.
11942
11943 It accepts the following parameters:
11944 @table @option
11945
11946 @item pix_fmts
11947 A '|'-separated list of pixel format names, such as
11948 "pix_fmts=yuv420p|monow|rgb24".
11949
11950 @end table
11951
11952 @subsection Examples
11953
11954 @itemize
11955 @item
11956 Convert the input video to the @var{yuv420p} format
11957 @example
11958 format=pix_fmts=yuv420p
11959 @end example
11960
11961 Convert the input video to any of the formats in the list
11962 @example
11963 format=pix_fmts=yuv420p|yuv444p|yuv410p
11964 @end example
11965 @end itemize
11966
11967 @anchor{fps}
11968 @section fps
11969
11970 Convert the video to specified constant frame rate by duplicating or dropping
11971 frames as necessary.
11972
11973 It accepts the following parameters:
11974 @table @option
11975
11976 @item fps
11977 The desired output frame rate. The default is @code{25}.
11978
11979 @item start_time
11980 Assume the first PTS should be the given value, in seconds. This allows for
11981 padding/trimming at the start of stream. By default, no assumption is made
11982 about the first frame's expected PTS, so no padding or trimming is done.
11983 For example, this could be set to 0 to pad the beginning with duplicates of
11984 the first frame if a video stream starts after the audio stream or to trim any
11985 frames with a negative PTS.
11986
11987 @item round
11988 Timestamp (PTS) rounding method.
11989
11990 Possible values are:
11991 @table @option
11992 @item zero
11993 round towards 0
11994 @item inf
11995 round away from 0
11996 @item down
11997 round towards -infinity
11998 @item up
11999 round towards +infinity
12000 @item near
12001 round to nearest
12002 @end table
12003 The default is @code{near}.
12004
12005 @item eof_action
12006 Action performed when reading the last frame.
12007
12008 Possible values are:
12009 @table @option
12010 @item round
12011 Use same timestamp rounding method as used for other frames.
12012 @item pass
12013 Pass through last frame if input duration has not been reached yet.
12014 @end table
12015 The default is @code{round}.
12016
12017 @end table
12018
12019 Alternatively, the options can be specified as a flat string:
12020 @var{fps}[:@var{start_time}[:@var{round}]].
12021
12022 See also the @ref{setpts} filter.
12023
12024 @subsection Examples
12025
12026 @itemize
12027 @item
12028 A typical usage in order to set the fps to 25:
12029 @example
12030 fps=fps=25
12031 @end example
12032
12033 @item
12034 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
12035 @example
12036 fps=fps=film:round=near
12037 @end example
12038 @end itemize
12039
12040 @section framepack
12041
12042 Pack two different video streams into a stereoscopic video, setting proper
12043 metadata on supported codecs. The two views should have the same size and
12044 framerate and processing will stop when the shorter video ends. Please note
12045 that you may conveniently adjust view properties with the @ref{scale} and
12046 @ref{fps} filters.
12047
12048 It accepts the following parameters:
12049 @table @option
12050
12051 @item format
12052 The desired packing format. Supported values are:
12053
12054 @table @option
12055
12056 @item sbs
12057 The views are next to each other (default).
12058
12059 @item tab
12060 The views are on top of each other.
12061
12062 @item lines
12063 The views are packed by line.
12064
12065 @item columns
12066 The views are packed by column.
12067
12068 @item frameseq
12069 The views are temporally interleaved.
12070
12071 @end table
12072
12073 @end table
12074
12075 Some examples:
12076
12077 @example
12078 # Convert left and right views into a frame-sequential video
12079 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
12080
12081 # Convert views into a side-by-side video with the same output resolution as the input
12082 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
12083 @end example
12084
12085 @section framerate
12086
12087 Change the frame rate by interpolating new video output frames from the source
12088 frames.
12089
12090 This filter is not designed to function correctly with interlaced media. If
12091 you wish to change the frame rate of interlaced media then you are required
12092 to deinterlace before this filter and re-interlace after this filter.
12093
12094 A description of the accepted options follows.
12095
12096 @table @option
12097 @item fps
12098 Specify the output frames per second. This option can also be specified
12099 as a value alone. The default is @code{50}.
12100
12101 @item interp_start
12102 Specify the start of a range where the output frame will be created as a
12103 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12104 the default is @code{15}.
12105
12106 @item interp_end
12107 Specify the end of a range where the output frame will be created as a
12108 linear interpolation of two frames. The range is [@code{0}-@code{255}],
12109 the default is @code{240}.
12110
12111 @item scene
12112 Specify the level at which a scene change is detected as a value between
12113 0 and 100 to indicate a new scene; a low value reflects a low
12114 probability for the current frame to introduce a new scene, while a higher
12115 value means the current frame is more likely to be one.
12116 The default is @code{8.2}.
12117
12118 @item flags
12119 Specify flags influencing the filter process.
12120
12121 Available value for @var{flags} is:
12122
12123 @table @option
12124 @item scene_change_detect, scd
12125 Enable scene change detection using the value of the option @var{scene}.
12126 This flag is enabled by default.
12127 @end table
12128 @end table
12129
12130 @section framestep
12131
12132 Select one frame every N-th frame.
12133
12134 This filter accepts the following option:
12135 @table @option
12136 @item step
12137 Select frame after every @code{step} frames.
12138 Allowed values are positive integers higher than 0. Default value is @code{1}.
12139 @end table
12140
12141 @section freezedetect
12142
12143 Detect frozen video.
12144
12145 This filter logs a message and sets frame metadata when it detects that the
12146 input video has no significant change in content during a specified duration.
12147 Video freeze detection calculates the mean average absolute difference of all
12148 the components of video frames and compares it to a noise floor.
12149
12150 The printed times and duration are expressed in seconds. The
12151 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
12152 whose timestamp equals or exceeds the detection duration and it contains the
12153 timestamp of the first frame of the freeze. The
12154 @code{lavfi.freezedetect.freeze_duration} and
12155 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
12156 after the freeze.
12157
12158 The filter accepts the following options:
12159
12160 @table @option
12161 @item noise, n
12162 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
12163 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
12164 0.001.
12165
12166 @item duration, d
12167 Set freeze duration until notification (default is 2 seconds).
12168 @end table
12169
12170 @section freezeframes
12171
12172 Freeze video frames.
12173
12174 This filter freezes video frames using frame from 2nd input.
12175
12176 The filter accepts the following options:
12177
12178 @table @option
12179 @item first
12180 Set number of first frame from which to start freeze.
12181
12182 @item last
12183 Set number of last frame from which to end freeze.
12184
12185 @item replace
12186 Set number of frame from 2nd input which will be used instead of replaced frames.
12187 @end table
12188
12189 @anchor{frei0r}
12190 @section frei0r
12191
12192 Apply a frei0r effect to the input video.
12193
12194 To enable the compilation of this filter, you need to install the frei0r
12195 header and configure FFmpeg with @code{--enable-frei0r}.
12196
12197 It accepts the following parameters:
12198
12199 @table @option
12200
12201 @item filter_name
12202 The name of the frei0r effect to load. If the environment variable
12203 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
12204 directories specified by the colon-separated list in @env{FREI0R_PATH}.
12205 Otherwise, the standard frei0r paths are searched, in this order:
12206 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
12207 @file{/usr/lib/frei0r-1/}.
12208
12209 @item filter_params
12210 A '|'-separated list of parameters to pass to the frei0r effect.
12211
12212 @end table
12213
12214 A frei0r effect parameter can be a boolean (its value is either
12215 "y" or "n"), a double, a color (specified as
12216 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
12217 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
12218 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
12219 a position (specified as @var{X}/@var{Y}, where
12220 @var{X} and @var{Y} are floating point numbers) and/or a string.
12221
12222 The number and types of parameters depend on the loaded effect. If an
12223 effect parameter is not specified, the default value is set.
12224
12225 @subsection Examples
12226
12227 @itemize
12228 @item
12229 Apply the distort0r effect, setting the first two double parameters:
12230 @example
12231 frei0r=filter_name=distort0r:filter_params=0.5|0.01
12232 @end example
12233
12234 @item
12235 Apply the colordistance effect, taking a color as the first parameter:
12236 @example
12237 frei0r=colordistance:0.2/0.3/0.4
12238 frei0r=colordistance:violet
12239 frei0r=colordistance:0x112233
12240 @end example
12241
12242 @item
12243 Apply the perspective effect, specifying the top left and top right image
12244 positions:
12245 @example
12246 frei0r=perspective:0.2/0.2|0.8/0.2
12247 @end example
12248 @end itemize
12249
12250 For more information, see
12251 @url{http://frei0r.dyne.org}
12252
12253 @subsection Commands
12254
12255 This filter supports the @option{filter_params} option as @ref{commands}.
12256
12257 @section fspp
12258
12259 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
12260
12261 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
12262 processing filter, one of them is performed once per block, not per pixel.
12263 This allows for much higher speed.
12264
12265 The filter accepts the following options:
12266
12267 @table @option
12268 @item quality
12269 Set quality. This option defines the number of levels for averaging. It accepts
12270 an integer in the range 4-5. Default value is @code{4}.
12271
12272 @item qp
12273 Force a constant quantization parameter. It accepts an integer in range 0-63.
12274 If not set, the filter will use the QP from the video stream (if available).
12275
12276 @item strength
12277 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
12278 more details but also more artifacts, while higher values make the image smoother
12279 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
12280
12281 @item use_bframe_qp
12282 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12283 option may cause flicker since the B-Frames have often larger QP. Default is
12284 @code{0} (not enabled).
12285
12286 @end table
12287
12288 @section gblur
12289
12290 Apply Gaussian blur filter.
12291
12292 The filter accepts the following options:
12293
12294 @table @option
12295 @item sigma
12296 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
12297
12298 @item steps
12299 Set number of steps for Gaussian approximation. Default is @code{1}.
12300
12301 @item planes
12302 Set which planes to filter. By default all planes are filtered.
12303
12304 @item sigmaV
12305 Set vertical sigma, if negative it will be same as @code{sigma}.
12306 Default is @code{-1}.
12307 @end table
12308
12309 @subsection Commands
12310 This filter supports same commands as options.
12311 The command accepts the same syntax of the corresponding option.
12312
12313 If the specified expression is not valid, it is kept at its current
12314 value.
12315
12316 @section geq
12317
12318 Apply generic equation to each pixel.
12319
12320 The filter accepts the following options:
12321
12322 @table @option
12323 @item lum_expr, lum
12324 Set the luminance expression.
12325 @item cb_expr, cb
12326 Set the chrominance blue expression.
12327 @item cr_expr, cr
12328 Set the chrominance red expression.
12329 @item alpha_expr, a
12330 Set the alpha expression.
12331 @item red_expr, r
12332 Set the red expression.
12333 @item green_expr, g
12334 Set the green expression.
12335 @item blue_expr, b
12336 Set the blue expression.
12337 @end table
12338
12339 The colorspace is selected according to the specified options. If one
12340 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
12341 options is specified, the filter will automatically select a YCbCr
12342 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
12343 @option{blue_expr} options is specified, it will select an RGB
12344 colorspace.
12345
12346 If one of the chrominance expression is not defined, it falls back on the other
12347 one. If no alpha expression is specified it will evaluate to opaque value.
12348 If none of chrominance expressions are specified, they will evaluate
12349 to the luminance expression.
12350
12351 The expressions can use the following variables and functions:
12352
12353 @table @option
12354 @item N
12355 The sequential number of the filtered frame, starting from @code{0}.
12356
12357 @item X
12358 @item Y
12359 The coordinates of the current sample.
12360
12361 @item W
12362 @item H
12363 The width and height of the image.
12364
12365 @item SW
12366 @item SH
12367 Width and height scale depending on the currently filtered plane. It is the
12368 ratio between the corresponding luma plane number of pixels and the current
12369 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
12370 @code{0.5,0.5} for chroma planes.
12371
12372 @item T
12373 Time of the current frame, expressed in seconds.
12374
12375 @item p(x, y)
12376 Return the value of the pixel at location (@var{x},@var{y}) of the current
12377 plane.
12378
12379 @item lum(x, y)
12380 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
12381 plane.
12382
12383 @item cb(x, y)
12384 Return the value of the pixel at location (@var{x},@var{y}) of the
12385 blue-difference chroma plane. Return 0 if there is no such plane.
12386
12387 @item cr(x, y)
12388 Return the value of the pixel at location (@var{x},@var{y}) of the
12389 red-difference chroma plane. Return 0 if there is no such plane.
12390
12391 @item r(x, y)
12392 @item g(x, y)
12393 @item b(x, y)
12394 Return the value of the pixel at location (@var{x},@var{y}) of the
12395 red/green/blue component. Return 0 if there is no such component.
12396
12397 @item alpha(x, y)
12398 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
12399 plane. Return 0 if there is no such plane.
12400
12401 @item psum(x,y), lumsum(x, y), cbsum(x,y), crsum(x,y), rsum(x,y), gsum(x,y), bsum(x,y), alphasum(x,y)
12402 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
12403 sums of samples within a rectangle. See the functions without the sum postfix.
12404
12405 @item interpolation
12406 Set one of interpolation methods:
12407 @table @option
12408 @item nearest, n
12409 @item bilinear, b
12410 @end table
12411 Default is bilinear.
12412 @end table
12413
12414 For functions, if @var{x} and @var{y} are outside the area, the value will be
12415 automatically clipped to the closer edge.
12416
12417 Please note that this filter can use multiple threads in which case each slice
12418 will have its own expression state. If you want to use only a single expression
12419 state because your expressions depend on previous state then you should limit
12420 the number of filter threads to 1.
12421
12422 @subsection Examples
12423
12424 @itemize
12425 @item
12426 Flip the image horizontally:
12427 @example
12428 geq=p(W-X\,Y)
12429 @end example
12430
12431 @item
12432 Generate a bidimensional sine wave, with angle @code{PI/3} and a
12433 wavelength of 100 pixels:
12434 @example
12435 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
12436 @end example
12437
12438 @item
12439 Generate a fancy enigmatic moving light:
12440 @example
12441 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
12442 @end example
12443
12444 @item
12445 Generate a quick emboss effect:
12446 @example
12447 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
12448 @end example
12449
12450 @item
12451 Modify RGB components depending on pixel position:
12452 @example
12453 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
12454 @end example
12455
12456 @item
12457 Create a radial gradient that is the same size as the input (also see
12458 the @ref{vignette} filter):
12459 @example
12460 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
12461 @end example
12462 @end itemize
12463
12464 @section gradfun
12465
12466 Fix the banding artifacts that are sometimes introduced into nearly flat
12467 regions by truncation to 8-bit color depth.
12468 Interpolate the gradients that should go where the bands are, and
12469 dither them.
12470
12471 It is designed for playback only.  Do not use it prior to
12472 lossy compression, because compression tends to lose the dither and
12473 bring back the bands.
12474
12475 It accepts the following parameters:
12476
12477 @table @option
12478
12479 @item strength
12480 The maximum amount by which the filter will change any one pixel. This is also
12481 the threshold for detecting nearly flat regions. Acceptable values range from
12482 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
12483 valid range.
12484
12485 @item radius
12486 The neighborhood to fit the gradient to. A larger radius makes for smoother
12487 gradients, but also prevents the filter from modifying the pixels near detailed
12488 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
12489 values will be clipped to the valid range.
12490
12491 @end table
12492
12493 Alternatively, the options can be specified as a flat string:
12494 @var{strength}[:@var{radius}]
12495
12496 @subsection Examples
12497
12498 @itemize
12499 @item
12500 Apply the filter with a @code{3.5} strength and radius of @code{8}:
12501 @example
12502 gradfun=3.5:8
12503 @end example
12504
12505 @item
12506 Specify radius, omitting the strength (which will fall-back to the default
12507 value):
12508 @example
12509 gradfun=radius=8
12510 @end example
12511
12512 @end itemize
12513
12514 @anchor{graphmonitor}
12515 @section graphmonitor
12516 Show various filtergraph stats.
12517
12518 With this filter one can debug complete filtergraph.
12519 Especially issues with links filling with queued frames.
12520
12521 The filter accepts the following options:
12522
12523 @table @option
12524 @item size, s
12525 Set video output size. Default is @var{hd720}.
12526
12527 @item opacity, o
12528 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
12529
12530 @item mode, m
12531 Set output mode, can be @var{fulll} or @var{compact}.
12532 In @var{compact} mode only filters with some queued frames have displayed stats.
12533
12534 @item flags, f
12535 Set flags which enable which stats are shown in video.
12536
12537 Available values for flags are:
12538 @table @samp
12539 @item queue
12540 Display number of queued frames in each link.
12541
12542 @item frame_count_in
12543 Display number of frames taken from filter.
12544
12545 @item frame_count_out
12546 Display number of frames given out from filter.
12547
12548 @item pts
12549 Display current filtered frame pts.
12550
12551 @item time
12552 Display current filtered frame time.
12553
12554 @item timebase
12555 Display time base for filter link.
12556
12557 @item format
12558 Display used format for filter link.
12559
12560 @item size
12561 Display video size or number of audio channels in case of audio used by filter link.
12562
12563 @item rate
12564 Display video frame rate or sample rate in case of audio used by filter link.
12565
12566 @item eof
12567 Display link output status.
12568 @end table
12569
12570 @item rate, r
12571 Set upper limit for video rate of output stream, Default value is @var{25}.
12572 This guarantee that output video frame rate will not be higher than this value.
12573 @end table
12574
12575 @section greyedge
12576 A color constancy variation filter which estimates scene illumination via grey edge algorithm
12577 and corrects the scene colors accordingly.
12578
12579 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
12580
12581 The filter accepts the following options:
12582
12583 @table @option
12584 @item difford
12585 The order of differentiation to be applied on the scene. Must be chosen in the range
12586 [0,2] and default value is 1.
12587
12588 @item minknorm
12589 The Minkowski parameter to be used for calculating the Minkowski distance. Must
12590 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
12591 max value instead of calculating Minkowski distance.
12592
12593 @item sigma
12594 The standard deviation of Gaussian blur to be applied on the scene. Must be
12595 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
12596 can't be equal to 0 if @var{difford} is greater than 0.
12597 @end table
12598
12599 @subsection Examples
12600 @itemize
12601
12602 @item
12603 Grey Edge:
12604 @example
12605 greyedge=difford=1:minknorm=5:sigma=2
12606 @end example
12607
12608 @item
12609 Max Edge:
12610 @example
12611 greyedge=difford=1:minknorm=0:sigma=2
12612 @end example
12613
12614 @end itemize
12615
12616 @anchor{haldclut}
12617 @section haldclut
12618
12619 Apply a Hald CLUT to a video stream.
12620
12621 First input is the video stream to process, and second one is the Hald CLUT.
12622 The Hald CLUT input can be a simple picture or a complete video stream.
12623
12624 The filter accepts the following options:
12625
12626 @table @option
12627 @item shortest
12628 Force termination when the shortest input terminates. Default is @code{0}.
12629 @item repeatlast
12630 Continue applying the last CLUT after the end of the stream. A value of
12631 @code{0} disable the filter after the last frame of the CLUT is reached.
12632 Default is @code{1}.
12633 @end table
12634
12635 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
12636 filters share the same internals).
12637
12638 This filter also supports the @ref{framesync} options.
12639
12640 More information about the Hald CLUT can be found on Eskil Steenberg's website
12641 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
12642
12643 @subsection Workflow examples
12644
12645 @subsubsection Hald CLUT video stream
12646
12647 Generate an identity Hald CLUT stream altered with various effects:
12648 @example
12649 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
12650 @end example
12651
12652 Note: make sure you use a lossless codec.
12653
12654 Then use it with @code{haldclut} to apply it on some random stream:
12655 @example
12656 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
12657 @end example
12658
12659 The Hald CLUT will be applied to the 10 first seconds (duration of
12660 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
12661 to the remaining frames of the @code{mandelbrot} stream.
12662
12663 @subsubsection Hald CLUT with preview
12664
12665 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
12666 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
12667 biggest possible square starting at the top left of the picture. The remaining
12668 padding pixels (bottom or right) will be ignored. This area can be used to add
12669 a preview of the Hald CLUT.
12670
12671 Typically, the following generated Hald CLUT will be supported by the
12672 @code{haldclut} filter:
12673
12674 @example
12675 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
12676    pad=iw+320 [padded_clut];
12677    smptebars=s=320x256, split [a][b];
12678    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
12679    [main][b] overlay=W-320" -frames:v 1 clut.png
12680 @end example
12681
12682 It contains the original and a preview of the effect of the CLUT: SMPTE color
12683 bars are displayed on the right-top, and below the same color bars processed by
12684 the color changes.
12685
12686 Then, the effect of this Hald CLUT can be visualized with:
12687 @example
12688 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
12689 @end example
12690
12691 @section hflip
12692
12693 Flip the input video horizontally.
12694
12695 For example, to horizontally flip the input video with @command{ffmpeg}:
12696 @example
12697 ffmpeg -i in.avi -vf "hflip" out.avi
12698 @end example
12699
12700 @section histeq
12701 This filter applies a global color histogram equalization on a
12702 per-frame basis.
12703
12704 It can be used to correct video that has a compressed range of pixel
12705 intensities.  The filter redistributes the pixel intensities to
12706 equalize their distribution across the intensity range. It may be
12707 viewed as an "automatically adjusting contrast filter". This filter is
12708 useful only for correcting degraded or poorly captured source
12709 video.
12710
12711 The filter accepts the following options:
12712
12713 @table @option
12714 @item strength
12715 Determine the amount of equalization to be applied.  As the strength
12716 is reduced, the distribution of pixel intensities more-and-more
12717 approaches that of the input frame. The value must be a float number
12718 in the range [0,1] and defaults to 0.200.
12719
12720 @item intensity
12721 Set the maximum intensity that can generated and scale the output
12722 values appropriately.  The strength should be set as desired and then
12723 the intensity can be limited if needed to avoid washing-out. The value
12724 must be a float number in the range [0,1] and defaults to 0.210.
12725
12726 @item antibanding
12727 Set the antibanding level. If enabled the filter will randomly vary
12728 the luminance of output pixels by a small amount to avoid banding of
12729 the histogram. Possible values are @code{none}, @code{weak} or
12730 @code{strong}. It defaults to @code{none}.
12731 @end table
12732
12733 @anchor{histogram}
12734 @section histogram
12735
12736 Compute and draw a color distribution histogram for the input video.
12737
12738 The computed histogram is a representation of the color component
12739 distribution in an image.
12740
12741 Standard histogram displays the color components distribution in an image.
12742 Displays color graph for each color component. Shows distribution of
12743 the Y, U, V, A or R, G, B components, depending on input format, in the
12744 current frame. Below each graph a color component scale meter is shown.
12745
12746 The filter accepts the following options:
12747
12748 @table @option
12749 @item level_height
12750 Set height of level. Default value is @code{200}.
12751 Allowed range is [50, 2048].
12752
12753 @item scale_height
12754 Set height of color scale. Default value is @code{12}.
12755 Allowed range is [0, 40].
12756
12757 @item display_mode
12758 Set display mode.
12759 It accepts the following values:
12760 @table @samp
12761 @item stack
12762 Per color component graphs are placed below each other.
12763
12764 @item parade
12765 Per color component graphs are placed side by side.
12766
12767 @item overlay
12768 Presents information identical to that in the @code{parade}, except
12769 that the graphs representing color components are superimposed directly
12770 over one another.
12771 @end table
12772 Default is @code{stack}.
12773
12774 @item levels_mode
12775 Set mode. Can be either @code{linear}, or @code{logarithmic}.
12776 Default is @code{linear}.
12777
12778 @item components
12779 Set what color components to display.
12780 Default is @code{7}.
12781
12782 @item fgopacity
12783 Set foreground opacity. Default is @code{0.7}.
12784
12785 @item bgopacity
12786 Set background opacity. Default is @code{0.5}.
12787 @end table
12788
12789 @subsection Examples
12790
12791 @itemize
12792
12793 @item
12794 Calculate and draw histogram:
12795 @example
12796 ffplay -i input -vf histogram
12797 @end example
12798
12799 @end itemize
12800
12801 @anchor{hqdn3d}
12802 @section hqdn3d
12803
12804 This is a high precision/quality 3d denoise filter. It aims to reduce
12805 image noise, producing smooth images and making still images really
12806 still. It should enhance compressibility.
12807
12808 It accepts the following optional parameters:
12809
12810 @table @option
12811 @item luma_spatial
12812 A non-negative floating point number which specifies spatial luma strength.
12813 It defaults to 4.0.
12814
12815 @item chroma_spatial
12816 A non-negative floating point number which specifies spatial chroma strength.
12817 It defaults to 3.0*@var{luma_spatial}/4.0.
12818
12819 @item luma_tmp
12820 A floating point number which specifies luma temporal strength. It defaults to
12821 6.0*@var{luma_spatial}/4.0.
12822
12823 @item chroma_tmp
12824 A floating point number which specifies chroma temporal strength. It defaults to
12825 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
12826 @end table
12827
12828 @subsection Commands
12829 This filter supports same @ref{commands} as options.
12830 The command accepts the same syntax of the corresponding option.
12831
12832 If the specified expression is not valid, it is kept at its current
12833 value.
12834
12835 @anchor{hwdownload}
12836 @section hwdownload
12837
12838 Download hardware frames to system memory.
12839
12840 The input must be in hardware frames, and the output a non-hardware format.
12841 Not all formats will be supported on the output - it may be necessary to insert
12842 an additional @option{format} filter immediately following in the graph to get
12843 the output in a supported format.
12844
12845 @section hwmap
12846
12847 Map hardware frames to system memory or to another device.
12848
12849 This filter has several different modes of operation; which one is used depends
12850 on the input and output formats:
12851 @itemize
12852 @item
12853 Hardware frame input, normal frame output
12854
12855 Map the input frames to system memory and pass them to the output.  If the
12856 original hardware frame is later required (for example, after overlaying
12857 something else on part of it), the @option{hwmap} filter can be used again
12858 in the next mode to retrieve it.
12859 @item
12860 Normal frame input, hardware frame output
12861
12862 If the input is actually a software-mapped hardware frame, then unmap it -
12863 that is, return the original hardware frame.
12864
12865 Otherwise, a device must be provided.  Create new hardware surfaces on that
12866 device for the output, then map them back to the software format at the input
12867 and give those frames to the preceding filter.  This will then act like the
12868 @option{hwupload} filter, but may be able to avoid an additional copy when
12869 the input is already in a compatible format.
12870 @item
12871 Hardware frame input and output
12872
12873 A device must be supplied for the output, either directly or with the
12874 @option{derive_device} option.  The input and output devices must be of
12875 different types and compatible - the exact meaning of this is
12876 system-dependent, but typically it means that they must refer to the same
12877 underlying hardware context (for example, refer to the same graphics card).
12878
12879 If the input frames were originally created on the output device, then unmap
12880 to retrieve the original frames.
12881
12882 Otherwise, map the frames to the output device - create new hardware frames
12883 on the output corresponding to the frames on the input.
12884 @end itemize
12885
12886 The following additional parameters are accepted:
12887
12888 @table @option
12889 @item mode
12890 Set the frame mapping mode.  Some combination of:
12891 @table @var
12892 @item read
12893 The mapped frame should be readable.
12894 @item write
12895 The mapped frame should be writeable.
12896 @item overwrite
12897 The mapping will always overwrite the entire frame.
12898
12899 This may improve performance in some cases, as the original contents of the
12900 frame need not be loaded.
12901 @item direct
12902 The mapping must not involve any copying.
12903
12904 Indirect mappings to copies of frames are created in some cases where either
12905 direct mapping is not possible or it would have unexpected properties.
12906 Setting this flag ensures that the mapping is direct and will fail if that is
12907 not possible.
12908 @end table
12909 Defaults to @var{read+write} if not specified.
12910
12911 @item derive_device @var{type}
12912 Rather than using the device supplied at initialisation, instead derive a new
12913 device of type @var{type} from the device the input frames exist on.
12914
12915 @item reverse
12916 In a hardware to hardware mapping, map in reverse - create frames in the sink
12917 and map them back to the source.  This may be necessary in some cases where
12918 a mapping in one direction is required but only the opposite direction is
12919 supported by the devices being used.
12920
12921 This option is dangerous - it may break the preceding filter in undefined
12922 ways if there are any additional constraints on that filter's output.
12923 Do not use it without fully understanding the implications of its use.
12924 @end table
12925
12926 @anchor{hwupload}
12927 @section hwupload
12928
12929 Upload system memory frames to hardware surfaces.
12930
12931 The device to upload to must be supplied when the filter is initialised.  If
12932 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12933 option or with the @option{derive_device} option.  The input and output devices
12934 must be of different types and compatible - the exact meaning of this is
12935 system-dependent, but typically it means that they must refer to the same
12936 underlying hardware context (for example, refer to the same graphics card).
12937
12938 The following additional parameters are accepted:
12939
12940 @table @option
12941 @item derive_device @var{type}
12942 Rather than using the device supplied at initialisation, instead derive a new
12943 device of type @var{type} from the device the input frames exist on.
12944 @end table
12945
12946 @anchor{hwupload_cuda}
12947 @section hwupload_cuda
12948
12949 Upload system memory frames to a CUDA device.
12950
12951 It accepts the following optional parameters:
12952
12953 @table @option
12954 @item device
12955 The number of the CUDA device to use
12956 @end table
12957
12958 @section hqx
12959
12960 Apply a high-quality magnification filter designed for pixel art. This filter
12961 was originally created by Maxim Stepin.
12962
12963 It accepts the following option:
12964
12965 @table @option
12966 @item n
12967 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
12968 @code{hq3x} and @code{4} for @code{hq4x}.
12969 Default is @code{3}.
12970 @end table
12971
12972 @section hstack
12973 Stack input videos horizontally.
12974
12975 All streams must be of same pixel format and of same height.
12976
12977 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12978 to create same output.
12979
12980 The filter accepts the following option:
12981
12982 @table @option
12983 @item inputs
12984 Set number of input streams. Default is 2.
12985
12986 @item shortest
12987 If set to 1, force the output to terminate when the shortest input
12988 terminates. Default value is 0.
12989 @end table
12990
12991 @section hue
12992
12993 Modify the hue and/or the saturation of the input.
12994
12995 It accepts the following parameters:
12996
12997 @table @option
12998 @item h
12999 Specify the hue angle as a number of degrees. It accepts an expression,
13000 and defaults to "0".
13001
13002 @item s
13003 Specify the saturation in the [-10,10] range. It accepts an expression and
13004 defaults to "1".
13005
13006 @item H
13007 Specify the hue angle as a number of radians. It accepts an
13008 expression, and defaults to "0".
13009
13010 @item b
13011 Specify the brightness in the [-10,10] range. It accepts an expression and
13012 defaults to "0".
13013 @end table
13014
13015 @option{h} and @option{H} are mutually exclusive, and can't be
13016 specified at the same time.
13017
13018 The @option{b}, @option{h}, @option{H} and @option{s} option values are
13019 expressions containing the following constants:
13020
13021 @table @option
13022 @item n
13023 frame count of the input frame starting from 0
13024
13025 @item pts
13026 presentation timestamp of the input frame expressed in time base units
13027
13028 @item r
13029 frame rate of the input video, NAN if the input frame rate is unknown
13030
13031 @item t
13032 timestamp expressed in seconds, NAN if the input timestamp is unknown
13033
13034 @item tb
13035 time base of the input video
13036 @end table
13037
13038 @subsection Examples
13039
13040 @itemize
13041 @item
13042 Set the hue to 90 degrees and the saturation to 1.0:
13043 @example
13044 hue=h=90:s=1
13045 @end example
13046
13047 @item
13048 Same command but expressing the hue in radians:
13049 @example
13050 hue=H=PI/2:s=1
13051 @end example
13052
13053 @item
13054 Rotate hue and make the saturation swing between 0
13055 and 2 over a period of 1 second:
13056 @example
13057 hue="H=2*PI*t: s=sin(2*PI*t)+1"
13058 @end example
13059
13060 @item
13061 Apply a 3 seconds saturation fade-in effect starting at 0:
13062 @example
13063 hue="s=min(t/3\,1)"
13064 @end example
13065
13066 The general fade-in expression can be written as:
13067 @example
13068 hue="s=min(0\, max((t-START)/DURATION\, 1))"
13069 @end example
13070
13071 @item
13072 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
13073 @example
13074 hue="s=max(0\, min(1\, (8-t)/3))"
13075 @end example
13076
13077 The general fade-out expression can be written as:
13078 @example
13079 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
13080 @end example
13081
13082 @end itemize
13083
13084 @subsection Commands
13085
13086 This filter supports the following commands:
13087 @table @option
13088 @item b
13089 @item s
13090 @item h
13091 @item H
13092 Modify the hue and/or the saturation and/or brightness of the input video.
13093 The command accepts the same syntax of the corresponding option.
13094
13095 If the specified expression is not valid, it is kept at its current
13096 value.
13097 @end table
13098
13099 @section hysteresis
13100
13101 Grow first stream into second stream by connecting components.
13102 This makes it possible to build more robust edge masks.
13103
13104 This filter accepts the following options:
13105
13106 @table @option
13107 @item planes
13108 Set which planes will be processed as bitmap, unprocessed planes will be
13109 copied from first stream.
13110 By default value 0xf, all planes will be processed.
13111
13112 @item threshold
13113 Set threshold which is used in filtering. If pixel component value is higher than
13114 this value filter algorithm for connecting components is activated.
13115 By default value is 0.
13116 @end table
13117
13118 The @code{hysteresis} filter also supports the @ref{framesync} options.
13119
13120 @section idet
13121
13122 Detect video interlacing type.
13123
13124 This filter tries to detect if the input frames are interlaced, progressive,
13125 top or bottom field first. It will also try to detect fields that are
13126 repeated between adjacent frames (a sign of telecine).
13127
13128 Single frame detection considers only immediately adjacent frames when classifying each frame.
13129 Multiple frame detection incorporates the classification history of previous frames.
13130
13131 The filter will log these metadata values:
13132
13133 @table @option
13134 @item single.current_frame
13135 Detected type of current frame using single-frame detection. One of:
13136 ``tff'' (top field first), ``bff'' (bottom field first),
13137 ``progressive'', or ``undetermined''
13138
13139 @item single.tff
13140 Cumulative number of frames detected as top field first using single-frame detection.
13141
13142 @item multiple.tff
13143 Cumulative number of frames detected as top field first using multiple-frame detection.
13144
13145 @item single.bff
13146 Cumulative number of frames detected as bottom field first using single-frame detection.
13147
13148 @item multiple.current_frame
13149 Detected type of current frame using multiple-frame detection. One of:
13150 ``tff'' (top field first), ``bff'' (bottom field first),
13151 ``progressive'', or ``undetermined''
13152
13153 @item multiple.bff
13154 Cumulative number of frames detected as bottom field first using multiple-frame detection.
13155
13156 @item single.progressive
13157 Cumulative number of frames detected as progressive using single-frame detection.
13158
13159 @item multiple.progressive
13160 Cumulative number of frames detected as progressive using multiple-frame detection.
13161
13162 @item single.undetermined
13163 Cumulative number of frames that could not be classified using single-frame detection.
13164
13165 @item multiple.undetermined
13166 Cumulative number of frames that could not be classified using multiple-frame detection.
13167
13168 @item repeated.current_frame
13169 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
13170
13171 @item repeated.neither
13172 Cumulative number of frames with no repeated field.
13173
13174 @item repeated.top
13175 Cumulative number of frames with the top field repeated from the previous frame's top field.
13176
13177 @item repeated.bottom
13178 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
13179 @end table
13180
13181 The filter accepts the following options:
13182
13183 @table @option
13184 @item intl_thres
13185 Set interlacing threshold.
13186 @item prog_thres
13187 Set progressive threshold.
13188 @item rep_thres
13189 Threshold for repeated field detection.
13190 @item half_life
13191 Number of frames after which a given frame's contribution to the
13192 statistics is halved (i.e., it contributes only 0.5 to its
13193 classification). The default of 0 means that all frames seen are given
13194 full weight of 1.0 forever.
13195 @item analyze_interlaced_flag
13196 When this is not 0 then idet will use the specified number of frames to determine
13197 if the interlaced flag is accurate, it will not count undetermined frames.
13198 If the flag is found to be accurate it will be used without any further
13199 computations, if it is found to be inaccurate it will be cleared without any
13200 further computations. This allows inserting the idet filter as a low computational
13201 method to clean up the interlaced flag
13202 @end table
13203
13204 @section il
13205
13206 Deinterleave or interleave fields.
13207
13208 This filter allows one to process interlaced images fields without
13209 deinterlacing them. Deinterleaving splits the input frame into 2
13210 fields (so called half pictures). Odd lines are moved to the top
13211 half of the output image, even lines to the bottom half.
13212 You can process (filter) them independently and then re-interleave them.
13213
13214 The filter accepts the following options:
13215
13216 @table @option
13217 @item luma_mode, l
13218 @item chroma_mode, c
13219 @item alpha_mode, a
13220 Available values for @var{luma_mode}, @var{chroma_mode} and
13221 @var{alpha_mode} are:
13222
13223 @table @samp
13224 @item none
13225 Do nothing.
13226
13227 @item deinterleave, d
13228 Deinterleave fields, placing one above the other.
13229
13230 @item interleave, i
13231 Interleave fields. Reverse the effect of deinterleaving.
13232 @end table
13233 Default value is @code{none}.
13234
13235 @item luma_swap, ls
13236 @item chroma_swap, cs
13237 @item alpha_swap, as
13238 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
13239 @end table
13240
13241 @subsection Commands
13242
13243 This filter supports the all above options as @ref{commands}.
13244
13245 @section inflate
13246
13247 Apply inflate effect to the video.
13248
13249 This filter replaces the pixel by the local(3x3) average by taking into account
13250 only values higher than the pixel.
13251
13252 It accepts the following options:
13253
13254 @table @option
13255 @item threshold0
13256 @item threshold1
13257 @item threshold2
13258 @item threshold3
13259 Limit the maximum change for each plane, default is 65535.
13260 If 0, plane will remain unchanged.
13261 @end table
13262
13263 @subsection Commands
13264
13265 This filter supports the all above options as @ref{commands}.
13266
13267 @section interlace
13268
13269 Simple interlacing filter from progressive contents. This interleaves upper (or
13270 lower) lines from odd frames with lower (or upper) lines from even frames,
13271 halving the frame rate and preserving image height.
13272
13273 @example
13274    Original        Original             New Frame
13275    Frame 'j'      Frame 'j+1'             (tff)
13276   ==========      ===========       ==================
13277     Line 0  -------------------->    Frame 'j' Line 0
13278     Line 1          Line 1  ---->   Frame 'j+1' Line 1
13279     Line 2 --------------------->    Frame 'j' Line 2
13280     Line 3          Line 3  ---->   Frame 'j+1' Line 3
13281      ...             ...                   ...
13282 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
13283 @end example
13284
13285 It accepts the following optional parameters:
13286
13287 @table @option
13288 @item scan
13289 This determines whether the interlaced frame is taken from the even
13290 (tff - default) or odd (bff) lines of the progressive frame.
13291
13292 @item lowpass
13293 Vertical lowpass filter to avoid twitter interlacing and
13294 reduce moire patterns.
13295
13296 @table @samp
13297 @item 0, off
13298 Disable vertical lowpass filter
13299
13300 @item 1, linear
13301 Enable linear filter (default)
13302
13303 @item 2, complex
13304 Enable complex filter. This will slightly less reduce twitter and moire
13305 but better retain detail and subjective sharpness impression.
13306
13307 @end table
13308 @end table
13309
13310 @section kerndeint
13311
13312 Deinterlace input video by applying Donald Graft's adaptive kernel
13313 deinterling. Work on interlaced parts of a video to produce
13314 progressive frames.
13315
13316 The description of the accepted parameters follows.
13317
13318 @table @option
13319 @item thresh
13320 Set the threshold which affects the filter's tolerance when
13321 determining if a pixel line must be processed. It must be an integer
13322 in the range [0,255] and defaults to 10. A value of 0 will result in
13323 applying the process on every pixels.
13324
13325 @item map
13326 Paint pixels exceeding the threshold value to white if set to 1.
13327 Default is 0.
13328
13329 @item order
13330 Set the fields order. Swap fields if set to 1, leave fields alone if
13331 0. Default is 0.
13332
13333 @item sharp
13334 Enable additional sharpening if set to 1. Default is 0.
13335
13336 @item twoway
13337 Enable twoway sharpening if set to 1. Default is 0.
13338 @end table
13339
13340 @subsection Examples
13341
13342 @itemize
13343 @item
13344 Apply default values:
13345 @example
13346 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
13347 @end example
13348
13349 @item
13350 Enable additional sharpening:
13351 @example
13352 kerndeint=sharp=1
13353 @end example
13354
13355 @item
13356 Paint processed pixels in white:
13357 @example
13358 kerndeint=map=1
13359 @end example
13360 @end itemize
13361
13362 @section lagfun
13363
13364 Slowly update darker pixels.
13365
13366 This filter makes short flashes of light appear longer.
13367 This filter accepts the following options:
13368
13369 @table @option
13370 @item decay
13371 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
13372
13373 @item planes
13374 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
13375 @end table
13376
13377 @section lenscorrection
13378
13379 Correct radial lens distortion
13380
13381 This filter can be used to correct for radial distortion as can result from the use
13382 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
13383 one can use tools available for example as part of opencv or simply trial-and-error.
13384 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
13385 and extract the k1 and k2 coefficients from the resulting matrix.
13386
13387 Note that effectively the same filter is available in the open-source tools Krita and
13388 Digikam from the KDE project.
13389
13390 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
13391 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
13392 brightness distribution, so you may want to use both filters together in certain
13393 cases, though you will have to take care of ordering, i.e. whether vignetting should
13394 be applied before or after lens correction.
13395
13396 @subsection Options
13397
13398 The filter accepts the following options:
13399
13400 @table @option
13401 @item cx
13402 Relative x-coordinate of the focal point of the image, and thereby the center of the
13403 distortion. This value has a range [0,1] and is expressed as fractions of the image
13404 width. Default is 0.5.
13405 @item cy
13406 Relative y-coordinate of the focal point of the image, and thereby the center of the
13407 distortion. This value has a range [0,1] and is expressed as fractions of the image
13408 height. Default is 0.5.
13409 @item k1
13410 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
13411 no correction. Default is 0.
13412 @item k2
13413 Coefficient of the double quadratic correction term. This value has a range [-1,1].
13414 0 means no correction. Default is 0.
13415 @end table
13416
13417 The formula that generates the correction is:
13418
13419 @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)
13420
13421 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
13422 distances from the focal point in the source and target images, respectively.
13423
13424 @section lensfun
13425
13426 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
13427
13428 The @code{lensfun} filter requires the camera make, camera model, and lens model
13429 to apply the lens correction. The filter will load the lensfun database and
13430 query it to find the corresponding camera and lens entries in the database. As
13431 long as these entries can be found with the given options, the filter can
13432 perform corrections on frames. Note that incomplete strings will result in the
13433 filter choosing the best match with the given options, and the filter will
13434 output the chosen camera and lens models (logged with level "info"). You must
13435 provide the make, camera model, and lens model as they are required.
13436
13437 The filter accepts the following options:
13438
13439 @table @option
13440 @item make
13441 The make of the camera (for example, "Canon"). This option is required.
13442
13443 @item model
13444 The model of the camera (for example, "Canon EOS 100D"). This option is
13445 required.
13446
13447 @item lens_model
13448 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
13449 option is required.
13450
13451 @item mode
13452 The type of correction to apply. The following values are valid options:
13453
13454 @table @samp
13455 @item vignetting
13456 Enables fixing lens vignetting.
13457
13458 @item geometry
13459 Enables fixing lens geometry. This is the default.
13460
13461 @item subpixel
13462 Enables fixing chromatic aberrations.
13463
13464 @item vig_geo
13465 Enables fixing lens vignetting and lens geometry.
13466
13467 @item vig_subpixel
13468 Enables fixing lens vignetting and chromatic aberrations.
13469
13470 @item distortion
13471 Enables fixing both lens geometry and chromatic aberrations.
13472
13473 @item all
13474 Enables all possible corrections.
13475
13476 @end table
13477 @item focal_length
13478 The focal length of the image/video (zoom; expected constant for video). For
13479 example, a 18--55mm lens has focal length range of [18--55], so a value in that
13480 range should be chosen when using that lens. Default 18.
13481
13482 @item aperture
13483 The aperture of the image/video (expected constant for video). Note that
13484 aperture is only used for vignetting correction. Default 3.5.
13485
13486 @item focus_distance
13487 The focus distance of the image/video (expected constant for video). Note that
13488 focus distance is only used for vignetting and only slightly affects the
13489 vignetting correction process. If unknown, leave it at the default value (which
13490 is 1000).
13491
13492 @item scale
13493 The scale factor which is applied after transformation. After correction the
13494 video is no longer necessarily rectangular. This parameter controls how much of
13495 the resulting image is visible. The value 0 means that a value will be chosen
13496 automatically such that there is little or no unmapped area in the output
13497 image. 1.0 means that no additional scaling is done. Lower values may result
13498 in more of the corrected image being visible, while higher values may avoid
13499 unmapped areas in the output.
13500
13501 @item target_geometry
13502 The target geometry of the output image/video. The following values are valid
13503 options:
13504
13505 @table @samp
13506 @item rectilinear (default)
13507 @item fisheye
13508 @item panoramic
13509 @item equirectangular
13510 @item fisheye_orthographic
13511 @item fisheye_stereographic
13512 @item fisheye_equisolid
13513 @item fisheye_thoby
13514 @end table
13515 @item reverse
13516 Apply the reverse of image correction (instead of correcting distortion, apply
13517 it).
13518
13519 @item interpolation
13520 The type of interpolation used when correcting distortion. The following values
13521 are valid options:
13522
13523 @table @samp
13524 @item nearest
13525 @item linear (default)
13526 @item lanczos
13527 @end table
13528 @end table
13529
13530 @subsection Examples
13531
13532 @itemize
13533 @item
13534 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
13535 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
13536 aperture of "8.0".
13537
13538 @example
13539 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
13540 @end example
13541
13542 @item
13543 Apply the same as before, but only for the first 5 seconds of video.
13544
13545 @example
13546 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
13547 @end example
13548
13549 @end itemize
13550
13551 @section libvmaf
13552
13553 Obtain the VMAF (Video Multi-Method Assessment Fusion)
13554 score between two input videos.
13555
13556 The obtained VMAF score is printed through the logging system.
13557
13558 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
13559 After installing the library it can be enabled using:
13560 @code{./configure --enable-libvmaf}.
13561 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
13562
13563 The filter has following options:
13564
13565 @table @option
13566 @item model_path
13567 Set the model path which is to be used for SVM.
13568 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
13569
13570 @item log_path
13571 Set the file path to be used to store logs.
13572
13573 @item log_fmt
13574 Set the format of the log file (csv, json or xml).
13575
13576 @item enable_transform
13577 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
13578 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
13579 Default value: @code{false}
13580
13581 @item phone_model
13582 Invokes the phone model which will generate VMAF scores higher than in the
13583 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
13584 Default value: @code{false}
13585
13586 @item psnr
13587 Enables computing psnr along with vmaf.
13588 Default value: @code{false}
13589
13590 @item ssim
13591 Enables computing ssim along with vmaf.
13592 Default value: @code{false}
13593
13594 @item ms_ssim
13595 Enables computing ms_ssim along with vmaf.
13596 Default value: @code{false}
13597
13598 @item pool
13599 Set the pool method to be used for computing vmaf.
13600 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
13601
13602 @item n_threads
13603 Set number of threads to be used when computing vmaf.
13604 Default value: @code{0}, which makes use of all available logical processors.
13605
13606 @item n_subsample
13607 Set interval for frame subsampling used when computing vmaf.
13608 Default value: @code{1}
13609
13610 @item enable_conf_interval
13611 Enables confidence interval.
13612 Default value: @code{false}
13613 @end table
13614
13615 This filter also supports the @ref{framesync} options.
13616
13617 @subsection Examples
13618 @itemize
13619 @item
13620 On the below examples the input file @file{main.mpg} being processed is
13621 compared with the reference file @file{ref.mpg}.
13622
13623 @example
13624 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
13625 @end example
13626
13627 @item
13628 Example with options:
13629 @example
13630 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
13631 @end example
13632
13633 @item
13634 Example with options and different containers:
13635 @example
13636 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 -
13637 @end example
13638 @end itemize
13639
13640 @section limiter
13641
13642 Limits the pixel components values to the specified range [min, max].
13643
13644 The filter accepts the following options:
13645
13646 @table @option
13647 @item min
13648 Lower bound. Defaults to the lowest allowed value for the input.
13649
13650 @item max
13651 Upper bound. Defaults to the highest allowed value for the input.
13652
13653 @item planes
13654 Specify which planes will be processed. Defaults to all available.
13655 @end table
13656
13657 @subsection Commands
13658
13659 This filter supports the all above options as @ref{commands}.
13660
13661 @section loop
13662
13663 Loop video frames.
13664
13665 The filter accepts the following options:
13666
13667 @table @option
13668 @item loop
13669 Set the number of loops. Setting this value to -1 will result in infinite loops.
13670 Default is 0.
13671
13672 @item size
13673 Set maximal size in number of frames. Default is 0.
13674
13675 @item start
13676 Set first frame of loop. Default is 0.
13677 @end table
13678
13679 @subsection Examples
13680
13681 @itemize
13682 @item
13683 Loop single first frame infinitely:
13684 @example
13685 loop=loop=-1:size=1:start=0
13686 @end example
13687
13688 @item
13689 Loop single first frame 10 times:
13690 @example
13691 loop=loop=10:size=1:start=0
13692 @end example
13693
13694 @item
13695 Loop 10 first frames 5 times:
13696 @example
13697 loop=loop=5:size=10:start=0
13698 @end example
13699 @end itemize
13700
13701 @section lut1d
13702
13703 Apply a 1D LUT to an input video.
13704
13705 The filter accepts the following options:
13706
13707 @table @option
13708 @item file
13709 Set the 1D LUT file name.
13710
13711 Currently supported formats:
13712 @table @samp
13713 @item cube
13714 Iridas
13715 @item csp
13716 cineSpace
13717 @end table
13718
13719 @item interp
13720 Select interpolation mode.
13721
13722 Available values are:
13723
13724 @table @samp
13725 @item nearest
13726 Use values from the nearest defined point.
13727 @item linear
13728 Interpolate values using the linear interpolation.
13729 @item cosine
13730 Interpolate values using the cosine interpolation.
13731 @item cubic
13732 Interpolate values using the cubic interpolation.
13733 @item spline
13734 Interpolate values using the spline interpolation.
13735 @end table
13736 @end table
13737
13738 @anchor{lut3d}
13739 @section lut3d
13740
13741 Apply a 3D LUT to an input video.
13742
13743 The filter accepts the following options:
13744
13745 @table @option
13746 @item file
13747 Set the 3D LUT file name.
13748
13749 Currently supported formats:
13750 @table @samp
13751 @item 3dl
13752 AfterEffects
13753 @item cube
13754 Iridas
13755 @item dat
13756 DaVinci
13757 @item m3d
13758 Pandora
13759 @item csp
13760 cineSpace
13761 @end table
13762 @item interp
13763 Select interpolation mode.
13764
13765 Available values are:
13766
13767 @table @samp
13768 @item nearest
13769 Use values from the nearest defined point.
13770 @item trilinear
13771 Interpolate values using the 8 points defining a cube.
13772 @item tetrahedral
13773 Interpolate values using a tetrahedron.
13774 @end table
13775 @end table
13776
13777 @section lumakey
13778
13779 Turn certain luma values into transparency.
13780
13781 The filter accepts the following options:
13782
13783 @table @option
13784 @item threshold
13785 Set the luma which will be used as base for transparency.
13786 Default value is @code{0}.
13787
13788 @item tolerance
13789 Set the range of luma values to be keyed out.
13790 Default value is @code{0.01}.
13791
13792 @item softness
13793 Set the range of softness. Default value is @code{0}.
13794 Use this to control gradual transition from zero to full transparency.
13795 @end table
13796
13797 @subsection Commands
13798 This filter supports same @ref{commands} as options.
13799 The command accepts the same syntax of the corresponding option.
13800
13801 If the specified expression is not valid, it is kept at its current
13802 value.
13803
13804 @section lut, lutrgb, lutyuv
13805
13806 Compute a look-up table for binding each pixel component input value
13807 to an output value, and apply it to the input video.
13808
13809 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
13810 to an RGB input video.
13811
13812 These filters accept the following parameters:
13813 @table @option
13814 @item c0
13815 set first pixel component expression
13816 @item c1
13817 set second pixel component expression
13818 @item c2
13819 set third pixel component expression
13820 @item c3
13821 set fourth pixel component expression, corresponds to the alpha component
13822
13823 @item r
13824 set red component expression
13825 @item g
13826 set green component expression
13827 @item b
13828 set blue component expression
13829 @item a
13830 alpha component expression
13831
13832 @item y
13833 set Y/luminance component expression
13834 @item u
13835 set U/Cb component expression
13836 @item v
13837 set V/Cr component expression
13838 @end table
13839
13840 Each of them specifies the expression to use for computing the lookup table for
13841 the corresponding pixel component values.
13842
13843 The exact component associated to each of the @var{c*} options depends on the
13844 format in input.
13845
13846 The @var{lut} filter requires either YUV or RGB pixel formats in input,
13847 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
13848
13849 The expressions can contain the following constants and functions:
13850
13851 @table @option
13852 @item w
13853 @item h
13854 The input width and height.
13855
13856 @item val
13857 The input value for the pixel component.
13858
13859 @item clipval
13860 The input value, clipped to the @var{minval}-@var{maxval} range.
13861
13862 @item maxval
13863 The maximum value for the pixel component.
13864
13865 @item minval
13866 The minimum value for the pixel component.
13867
13868 @item negval
13869 The negated value for the pixel component value, clipped to the
13870 @var{minval}-@var{maxval} range; it corresponds to the expression
13871 "maxval-clipval+minval".
13872
13873 @item clip(val)
13874 The computed value in @var{val}, clipped to the
13875 @var{minval}-@var{maxval} range.
13876
13877 @item gammaval(gamma)
13878 The computed gamma correction value of the pixel component value,
13879 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13880 expression
13881 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13882
13883 @end table
13884
13885 All expressions default to "val".
13886
13887 @subsection Examples
13888
13889 @itemize
13890 @item
13891 Negate input video:
13892 @example
13893 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13894 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13895 @end example
13896
13897 The above is the same as:
13898 @example
13899 lutrgb="r=negval:g=negval:b=negval"
13900 lutyuv="y=negval:u=negval:v=negval"
13901 @end example
13902
13903 @item
13904 Negate luminance:
13905 @example
13906 lutyuv=y=negval
13907 @end example
13908
13909 @item
13910 Remove chroma components, turning the video into a graytone image:
13911 @example
13912 lutyuv="u=128:v=128"
13913 @end example
13914
13915 @item
13916 Apply a luma burning effect:
13917 @example
13918 lutyuv="y=2*val"
13919 @end example
13920
13921 @item
13922 Remove green and blue components:
13923 @example
13924 lutrgb="g=0:b=0"
13925 @end example
13926
13927 @item
13928 Set a constant alpha channel value on input:
13929 @example
13930 format=rgba,lutrgb=a="maxval-minval/2"
13931 @end example
13932
13933 @item
13934 Correct luminance gamma by a factor of 0.5:
13935 @example
13936 lutyuv=y=gammaval(0.5)
13937 @end example
13938
13939 @item
13940 Discard least significant bits of luma:
13941 @example
13942 lutyuv=y='bitand(val, 128+64+32)'
13943 @end example
13944
13945 @item
13946 Technicolor like effect:
13947 @example
13948 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
13949 @end example
13950 @end itemize
13951
13952 @section lut2, tlut2
13953
13954 The @code{lut2} filter takes two input streams and outputs one
13955 stream.
13956
13957 The @code{tlut2} (time lut2) filter takes two consecutive frames
13958 from one single stream.
13959
13960 This filter accepts the following parameters:
13961 @table @option
13962 @item c0
13963 set first pixel component expression
13964 @item c1
13965 set second pixel component expression
13966 @item c2
13967 set third pixel component expression
13968 @item c3
13969 set fourth pixel component expression, corresponds to the alpha component
13970
13971 @item d
13972 set output bit depth, only available for @code{lut2} filter. By default is 0,
13973 which means bit depth is automatically picked from first input format.
13974 @end table
13975
13976 The @code{lut2} filter also supports the @ref{framesync} options.
13977
13978 Each of them specifies the expression to use for computing the lookup table for
13979 the corresponding pixel component values.
13980
13981 The exact component associated to each of the @var{c*} options depends on the
13982 format in inputs.
13983
13984 The expressions can contain the following constants:
13985
13986 @table @option
13987 @item w
13988 @item h
13989 The input width and height.
13990
13991 @item x
13992 The first input value for the pixel component.
13993
13994 @item y
13995 The second input value for the pixel component.
13996
13997 @item bdx
13998 The first input video bit depth.
13999
14000 @item bdy
14001 The second input video bit depth.
14002 @end table
14003
14004 All expressions default to "x".
14005
14006 @subsection Examples
14007
14008 @itemize
14009 @item
14010 Highlight differences between two RGB video streams:
14011 @example
14012 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)'
14013 @end example
14014
14015 @item
14016 Highlight differences between two YUV video streams:
14017 @example
14018 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)'
14019 @end example
14020
14021 @item
14022 Show max difference between two video streams:
14023 @example
14024 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)))'
14025 @end example
14026 @end itemize
14027
14028 @section maskedclamp
14029
14030 Clamp the first input stream with the second input and third input stream.
14031
14032 Returns the value of first stream to be between second input
14033 stream - @code{undershoot} and third input stream + @code{overshoot}.
14034
14035 This filter accepts the following options:
14036 @table @option
14037 @item undershoot
14038 Default value is @code{0}.
14039
14040 @item overshoot
14041 Default value is @code{0}.
14042
14043 @item planes
14044 Set which planes will be processed as bitmap, unprocessed planes will be
14045 copied from first stream.
14046 By default value 0xf, all planes will be processed.
14047 @end table
14048
14049 @subsection Commands
14050
14051 This filter supports the all above options as @ref{commands}.
14052
14053 @section maskedmax
14054
14055 Merge the second and third input stream into output stream using absolute differences
14056 between second input stream and first input stream and absolute difference between
14057 third input stream and first input stream. The picked value will be from second input
14058 stream if second absolute difference is greater than first one or from third input stream
14059 otherwise.
14060
14061 This filter accepts the following options:
14062 @table @option
14063 @item planes
14064 Set which planes will be processed as bitmap, unprocessed planes will be
14065 copied from first stream.
14066 By default value 0xf, all planes will be processed.
14067 @end table
14068
14069 @subsection Commands
14070
14071 This filter supports the all above options as @ref{commands}.
14072
14073 @section maskedmerge
14074
14075 Merge the first input stream with the second input stream using per pixel
14076 weights in the third input stream.
14077
14078 A value of 0 in the third stream pixel component means that pixel component
14079 from first stream is returned unchanged, while maximum value (eg. 255 for
14080 8-bit videos) means that pixel component from second stream is returned
14081 unchanged. Intermediate values define the amount of merging between both
14082 input stream's pixel components.
14083
14084 This filter accepts the following options:
14085 @table @option
14086 @item planes
14087 Set which planes will be processed as bitmap, unprocessed planes will be
14088 copied from first stream.
14089 By default value 0xf, all planes will be processed.
14090 @end table
14091
14092 @section maskedmin
14093
14094 Merge the second and third input stream into output stream using absolute differences
14095 between second input stream and first input stream and absolute difference between
14096 third input stream and first input stream. The picked value will be from second input
14097 stream if second absolute difference is less than first one or from third input stream
14098 otherwise.
14099
14100 This filter accepts the following options:
14101 @table @option
14102 @item planes
14103 Set which planes will be processed as bitmap, unprocessed planes will be
14104 copied from first stream.
14105 By default value 0xf, all planes will be processed.
14106 @end table
14107
14108 @subsection Commands
14109
14110 This filter supports the all above options as @ref{commands}.
14111
14112 @section maskedthreshold
14113 Pick pixels comparing absolute difference of two video streams with fixed
14114 threshold.
14115
14116 If absolute difference between pixel component of first and second video
14117 stream is equal or lower than user supplied threshold than pixel component
14118 from first video stream is picked, otherwise pixel component from second
14119 video stream is picked.
14120
14121 This filter accepts the following options:
14122 @table @option
14123 @item threshold
14124 Set threshold used when picking pixels from absolute difference from two input
14125 video streams.
14126
14127 @item planes
14128 Set which planes will be processed as bitmap, unprocessed planes will be
14129 copied from second stream.
14130 By default value 0xf, all planes will be processed.
14131 @end table
14132
14133 @subsection Commands
14134
14135 This filter supports the all above options as @ref{commands}.
14136
14137 @section maskfun
14138 Create mask from input video.
14139
14140 For example it is useful to create motion masks after @code{tblend} filter.
14141
14142 This filter accepts the following options:
14143
14144 @table @option
14145 @item low
14146 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
14147
14148 @item high
14149 Set high threshold. Any pixel component higher than this value will be set to max value
14150 allowed for current pixel format.
14151
14152 @item planes
14153 Set planes to filter, by default all available planes are filtered.
14154
14155 @item fill
14156 Fill all frame pixels with this value.
14157
14158 @item sum
14159 Set max average pixel value for frame. If sum of all pixel components is higher that this
14160 average, output frame will be completely filled with value set by @var{fill} option.
14161 Typically useful for scene changes when used in combination with @code{tblend} filter.
14162 @end table
14163
14164 @section mcdeint
14165
14166 Apply motion-compensation deinterlacing.
14167
14168 It needs one field per frame as input and must thus be used together
14169 with yadif=1/3 or equivalent.
14170
14171 This filter accepts the following options:
14172 @table @option
14173 @item mode
14174 Set the deinterlacing mode.
14175
14176 It accepts one of the following values:
14177 @table @samp
14178 @item fast
14179 @item medium
14180 @item slow
14181 use iterative motion estimation
14182 @item extra_slow
14183 like @samp{slow}, but use multiple reference frames.
14184 @end table
14185 Default value is @samp{fast}.
14186
14187 @item parity
14188 Set the picture field parity assumed for the input video. It must be
14189 one of the following values:
14190
14191 @table @samp
14192 @item 0, tff
14193 assume top field first
14194 @item 1, bff
14195 assume bottom field first
14196 @end table
14197
14198 Default value is @samp{bff}.
14199
14200 @item qp
14201 Set per-block quantization parameter (QP) used by the internal
14202 encoder.
14203
14204 Higher values should result in a smoother motion vector field but less
14205 optimal individual vectors. Default value is 1.
14206 @end table
14207
14208 @section median
14209
14210 Pick median pixel from certain rectangle defined by radius.
14211
14212 This filter accepts the following options:
14213
14214 @table @option
14215 @item radius
14216 Set horizontal radius size. Default value is @code{1}.
14217 Allowed range is integer from 1 to 127.
14218
14219 @item planes
14220 Set which planes to process. Default is @code{15}, which is all available planes.
14221
14222 @item radiusV
14223 Set vertical radius size. Default value is @code{0}.
14224 Allowed range is integer from 0 to 127.
14225 If it is 0, value will be picked from horizontal @code{radius} option.
14226
14227 @item percentile
14228 Set median percentile. Default value is @code{0.5}.
14229 Default value of @code{0.5} will pick always median values, while @code{0} will pick
14230 minimum values, and @code{1} maximum values.
14231 @end table
14232
14233 @subsection Commands
14234 This filter supports same @ref{commands} as options.
14235 The command accepts the same syntax of the corresponding option.
14236
14237 If the specified expression is not valid, it is kept at its current
14238 value.
14239
14240 @section mergeplanes
14241
14242 Merge color channel components from several video streams.
14243
14244 The filter accepts up to 4 input streams, and merge selected input
14245 planes to the output video.
14246
14247 This filter accepts the following options:
14248 @table @option
14249 @item mapping
14250 Set input to output plane mapping. Default is @code{0}.
14251
14252 The mappings is specified as a bitmap. It should be specified as a
14253 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
14254 mapping for the first plane of the output stream. 'A' sets the number of
14255 the input stream to use (from 0 to 3), and 'a' the plane number of the
14256 corresponding input to use (from 0 to 3). The rest of the mappings is
14257 similar, 'Bb' describes the mapping for the output stream second
14258 plane, 'Cc' describes the mapping for the output stream third plane and
14259 'Dd' describes the mapping for the output stream fourth plane.
14260
14261 @item format
14262 Set output pixel format. Default is @code{yuva444p}.
14263 @end table
14264
14265 @subsection Examples
14266
14267 @itemize
14268 @item
14269 Merge three gray video streams of same width and height into single video stream:
14270 @example
14271 [a0][a1][a2]mergeplanes=0x001020:yuv444p
14272 @end example
14273
14274 @item
14275 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
14276 @example
14277 [a0][a1]mergeplanes=0x00010210:yuva444p
14278 @end example
14279
14280 @item
14281 Swap Y and A plane in yuva444p stream:
14282 @example
14283 format=yuva444p,mergeplanes=0x03010200:yuva444p
14284 @end example
14285
14286 @item
14287 Swap U and V plane in yuv420p stream:
14288 @example
14289 format=yuv420p,mergeplanes=0x000201:yuv420p
14290 @end example
14291
14292 @item
14293 Cast a rgb24 clip to yuv444p:
14294 @example
14295 format=rgb24,mergeplanes=0x000102:yuv444p
14296 @end example
14297 @end itemize
14298
14299 @section mestimate
14300
14301 Estimate and export motion vectors using block matching algorithms.
14302 Motion vectors are stored in frame side data to be used by other filters.
14303
14304 This filter accepts the following options:
14305 @table @option
14306 @item method
14307 Specify the motion estimation method. Accepts one of the following values:
14308
14309 @table @samp
14310 @item esa
14311 Exhaustive search algorithm.
14312 @item tss
14313 Three step search algorithm.
14314 @item tdls
14315 Two dimensional logarithmic search algorithm.
14316 @item ntss
14317 New three step search algorithm.
14318 @item fss
14319 Four step search algorithm.
14320 @item ds
14321 Diamond search algorithm.
14322 @item hexbs
14323 Hexagon-based search algorithm.
14324 @item epzs
14325 Enhanced predictive zonal search algorithm.
14326 @item umh
14327 Uneven multi-hexagon search algorithm.
14328 @end table
14329 Default value is @samp{esa}.
14330
14331 @item mb_size
14332 Macroblock size. Default @code{16}.
14333
14334 @item search_param
14335 Search parameter. Default @code{7}.
14336 @end table
14337
14338 @section midequalizer
14339
14340 Apply Midway Image Equalization effect using two video streams.
14341
14342 Midway Image Equalization adjusts a pair of images to have the same
14343 histogram, while maintaining their dynamics as much as possible. It's
14344 useful for e.g. matching exposures from a pair of stereo cameras.
14345
14346 This filter has two inputs and one output, which must be of same pixel format, but
14347 may be of different sizes. The output of filter is first input adjusted with
14348 midway histogram of both inputs.
14349
14350 This filter accepts the following option:
14351
14352 @table @option
14353 @item planes
14354 Set which planes to process. Default is @code{15}, which is all available planes.
14355 @end table
14356
14357 @section minterpolate
14358
14359 Convert the video to specified frame rate using motion interpolation.
14360
14361 This filter accepts the following options:
14362 @table @option
14363 @item fps
14364 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}.
14365
14366 @item mi_mode
14367 Motion interpolation mode. Following values are accepted:
14368 @table @samp
14369 @item dup
14370 Duplicate previous or next frame for interpolating new ones.
14371 @item blend
14372 Blend source frames. Interpolated frame is mean of previous and next frames.
14373 @item mci
14374 Motion compensated interpolation. Following options are effective when this mode is selected:
14375
14376 @table @samp
14377 @item mc_mode
14378 Motion compensation mode. Following values are accepted:
14379 @table @samp
14380 @item obmc
14381 Overlapped block motion compensation.
14382 @item aobmc
14383 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
14384 @end table
14385 Default mode is @samp{obmc}.
14386
14387 @item me_mode
14388 Motion estimation mode. Following values are accepted:
14389 @table @samp
14390 @item bidir
14391 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
14392 @item bilat
14393 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
14394 @end table
14395 Default mode is @samp{bilat}.
14396
14397 @item me
14398 The algorithm to be used for motion estimation. Following values are accepted:
14399 @table @samp
14400 @item esa
14401 Exhaustive search algorithm.
14402 @item tss
14403 Three step search algorithm.
14404 @item tdls
14405 Two dimensional logarithmic search algorithm.
14406 @item ntss
14407 New three step search algorithm.
14408 @item fss
14409 Four step search algorithm.
14410 @item ds
14411 Diamond search algorithm.
14412 @item hexbs
14413 Hexagon-based search algorithm.
14414 @item epzs
14415 Enhanced predictive zonal search algorithm.
14416 @item umh
14417 Uneven multi-hexagon search algorithm.
14418 @end table
14419 Default algorithm is @samp{epzs}.
14420
14421 @item mb_size
14422 Macroblock size. Default @code{16}.
14423
14424 @item search_param
14425 Motion estimation search parameter. Default @code{32}.
14426
14427 @item vsbmc
14428 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).
14429 @end table
14430 @end table
14431
14432 @item scd
14433 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:
14434 @table @samp
14435 @item none
14436 Disable scene change detection.
14437 @item fdiff
14438 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
14439 @end table
14440 Default method is @samp{fdiff}.
14441
14442 @item scd_threshold
14443 Scene change detection threshold. Default is @code{10.}.
14444 @end table
14445
14446 @section mix
14447
14448 Mix several video input streams into one video stream.
14449
14450 A description of the accepted options follows.
14451
14452 @table @option
14453 @item nb_inputs
14454 The number of inputs. If unspecified, it defaults to 2.
14455
14456 @item weights
14457 Specify weight of each input video stream as sequence.
14458 Each weight is separated by space. If number of weights
14459 is smaller than number of @var{frames} last specified
14460 weight will be used for all remaining unset weights.
14461
14462 @item scale
14463 Specify scale, if it is set it will be multiplied with sum
14464 of each weight multiplied with pixel values to give final destination
14465 pixel value. By default @var{scale} is auto scaled to sum of weights.
14466
14467 @item duration
14468 Specify how end of stream is determined.
14469 @table @samp
14470 @item longest
14471 The duration of the longest input. (default)
14472
14473 @item shortest
14474 The duration of the shortest input.
14475
14476 @item first
14477 The duration of the first input.
14478 @end table
14479 @end table
14480
14481 @section mpdecimate
14482
14483 Drop frames that do not differ greatly from the previous frame in
14484 order to reduce frame rate.
14485
14486 The main use of this filter is for very-low-bitrate encoding
14487 (e.g. streaming over dialup modem), but it could in theory be used for
14488 fixing movies that were inverse-telecined incorrectly.
14489
14490 A description of the accepted options follows.
14491
14492 @table @option
14493 @item max
14494 Set the maximum number of consecutive frames which can be dropped (if
14495 positive), or the minimum interval between dropped frames (if
14496 negative). If the value is 0, the frame is dropped disregarding the
14497 number of previous sequentially dropped frames.
14498
14499 Default value is 0.
14500
14501 @item hi
14502 @item lo
14503 @item frac
14504 Set the dropping threshold values.
14505
14506 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
14507 represent actual pixel value differences, so a threshold of 64
14508 corresponds to 1 unit of difference for each pixel, or the same spread
14509 out differently over the block.
14510
14511 A frame is a candidate for dropping if no 8x8 blocks differ by more
14512 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
14513 meaning the whole image) differ by more than a threshold of @option{lo}.
14514
14515 Default value for @option{hi} is 64*12, default value for @option{lo} is
14516 64*5, and default value for @option{frac} is 0.33.
14517 @end table
14518
14519
14520 @section negate
14521
14522 Negate (invert) the input video.
14523
14524 It accepts the following option:
14525
14526 @table @option
14527
14528 @item negate_alpha
14529 With value 1, it negates the alpha component, if present. Default value is 0.
14530 @end table
14531
14532 @anchor{nlmeans}
14533 @section nlmeans
14534
14535 Denoise frames using Non-Local Means algorithm.
14536
14537 Each pixel is adjusted by looking for other pixels with similar contexts. This
14538 context similarity is defined by comparing their surrounding patches of size
14539 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
14540 around the pixel.
14541
14542 Note that the research area defines centers for patches, which means some
14543 patches will be made of pixels outside that research area.
14544
14545 The filter accepts the following options.
14546
14547 @table @option
14548 @item s
14549 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
14550
14551 @item p
14552 Set patch size. Default is 7. Must be odd number in range [0, 99].
14553
14554 @item pc
14555 Same as @option{p} but for chroma planes.
14556
14557 The default value is @var{0} and means automatic.
14558
14559 @item r
14560 Set research size. Default is 15. Must be odd number in range [0, 99].
14561
14562 @item rc
14563 Same as @option{r} but for chroma planes.
14564
14565 The default value is @var{0} and means automatic.
14566 @end table
14567
14568 @section nnedi
14569
14570 Deinterlace video using neural network edge directed interpolation.
14571
14572 This filter accepts the following options:
14573
14574 @table @option
14575 @item weights
14576 Mandatory option, without binary file filter can not work.
14577 Currently file can be found here:
14578 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
14579
14580 @item deint
14581 Set which frames to deinterlace, by default it is @code{all}.
14582 Can be @code{all} or @code{interlaced}.
14583
14584 @item field
14585 Set mode of operation.
14586
14587 Can be one of the following:
14588
14589 @table @samp
14590 @item af
14591 Use frame flags, both fields.
14592 @item a
14593 Use frame flags, single field.
14594 @item t
14595 Use top field only.
14596 @item b
14597 Use bottom field only.
14598 @item tf
14599 Use both fields, top first.
14600 @item bf
14601 Use both fields, bottom first.
14602 @end table
14603
14604 @item planes
14605 Set which planes to process, by default filter process all frames.
14606
14607 @item nsize
14608 Set size of local neighborhood around each pixel, used by the predictor neural
14609 network.
14610
14611 Can be one of the following:
14612
14613 @table @samp
14614 @item s8x6
14615 @item s16x6
14616 @item s32x6
14617 @item s48x6
14618 @item s8x4
14619 @item s16x4
14620 @item s32x4
14621 @end table
14622
14623 @item nns
14624 Set the number of neurons in predictor neural network.
14625 Can be one of the following:
14626
14627 @table @samp
14628 @item n16
14629 @item n32
14630 @item n64
14631 @item n128
14632 @item n256
14633 @end table
14634
14635 @item qual
14636 Controls the number of different neural network predictions that are blended
14637 together to compute the final output value. Can be @code{fast}, default or
14638 @code{slow}.
14639
14640 @item etype
14641 Set which set of weights to use in the predictor.
14642 Can be one of the following:
14643
14644 @table @samp
14645 @item a
14646 weights trained to minimize absolute error
14647 @item s
14648 weights trained to minimize squared error
14649 @end table
14650
14651 @item pscrn
14652 Controls whether or not the prescreener neural network is used to decide
14653 which pixels should be processed by the predictor neural network and which
14654 can be handled by simple cubic interpolation.
14655 The prescreener is trained to know whether cubic interpolation will be
14656 sufficient for a pixel or whether it should be predicted by the predictor nn.
14657 The computational complexity of the prescreener nn is much less than that of
14658 the predictor nn. Since most pixels can be handled by cubic interpolation,
14659 using the prescreener generally results in much faster processing.
14660 The prescreener is pretty accurate, so the difference between using it and not
14661 using it is almost always unnoticeable.
14662
14663 Can be one of the following:
14664
14665 @table @samp
14666 @item none
14667 @item original
14668 @item new
14669 @end table
14670
14671 Default is @code{new}.
14672
14673 @item fapprox
14674 Set various debugging flags.
14675 @end table
14676
14677 @section noformat
14678
14679 Force libavfilter not to use any of the specified pixel formats for the
14680 input to the next filter.
14681
14682 It accepts the following parameters:
14683 @table @option
14684
14685 @item pix_fmts
14686 A '|'-separated list of pixel format names, such as
14687 pix_fmts=yuv420p|monow|rgb24".
14688
14689 @end table
14690
14691 @subsection Examples
14692
14693 @itemize
14694 @item
14695 Force libavfilter to use a format different from @var{yuv420p} for the
14696 input to the vflip filter:
14697 @example
14698 noformat=pix_fmts=yuv420p,vflip
14699 @end example
14700
14701 @item
14702 Convert the input video to any of the formats not contained in the list:
14703 @example
14704 noformat=yuv420p|yuv444p|yuv410p
14705 @end example
14706 @end itemize
14707
14708 @section noise
14709
14710 Add noise on video input frame.
14711
14712 The filter accepts the following options:
14713
14714 @table @option
14715 @item all_seed
14716 @item c0_seed
14717 @item c1_seed
14718 @item c2_seed
14719 @item c3_seed
14720 Set noise seed for specific pixel component or all pixel components in case
14721 of @var{all_seed}. Default value is @code{123457}.
14722
14723 @item all_strength, alls
14724 @item c0_strength, c0s
14725 @item c1_strength, c1s
14726 @item c2_strength, c2s
14727 @item c3_strength, c3s
14728 Set noise strength for specific pixel component or all pixel components in case
14729 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
14730
14731 @item all_flags, allf
14732 @item c0_flags, c0f
14733 @item c1_flags, c1f
14734 @item c2_flags, c2f
14735 @item c3_flags, c3f
14736 Set pixel component flags or set flags for all components if @var{all_flags}.
14737 Available values for component flags are:
14738 @table @samp
14739 @item a
14740 averaged temporal noise (smoother)
14741 @item p
14742 mix random noise with a (semi)regular pattern
14743 @item t
14744 temporal noise (noise pattern changes between frames)
14745 @item u
14746 uniform noise (gaussian otherwise)
14747 @end table
14748 @end table
14749
14750 @subsection Examples
14751
14752 Add temporal and uniform noise to input video:
14753 @example
14754 noise=alls=20:allf=t+u
14755 @end example
14756
14757 @section normalize
14758
14759 Normalize RGB video (aka histogram stretching, contrast stretching).
14760 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
14761
14762 For each channel of each frame, the filter computes the input range and maps
14763 it linearly to the user-specified output range. The output range defaults
14764 to the full dynamic range from pure black to pure white.
14765
14766 Temporal smoothing can be used on the input range to reduce flickering (rapid
14767 changes in brightness) caused when small dark or bright objects enter or leave
14768 the scene. This is similar to the auto-exposure (automatic gain control) on a
14769 video camera, and, like a video camera, it may cause a period of over- or
14770 under-exposure of the video.
14771
14772 The R,G,B channels can be normalized independently, which may cause some
14773 color shifting, or linked together as a single channel, which prevents
14774 color shifting. Linked normalization preserves hue. Independent normalization
14775 does not, so it can be used to remove some color casts. Independent and linked
14776 normalization can be combined in any ratio.
14777
14778 The normalize filter accepts the following options:
14779
14780 @table @option
14781 @item blackpt
14782 @item whitept
14783 Colors which define the output range. The minimum input value is mapped to
14784 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
14785 The defaults are black and white respectively. Specifying white for
14786 @var{blackpt} and black for @var{whitept} will give color-inverted,
14787 normalized video. Shades of grey can be used to reduce the dynamic range
14788 (contrast). Specifying saturated colors here can create some interesting
14789 effects.
14790
14791 @item smoothing
14792 The number of previous frames to use for temporal smoothing. The input range
14793 of each channel is smoothed using a rolling average over the current frame
14794 and the @var{smoothing} previous frames. The default is 0 (no temporal
14795 smoothing).
14796
14797 @item independence
14798 Controls the ratio of independent (color shifting) channel normalization to
14799 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
14800 independent. Defaults to 1.0 (fully independent).
14801
14802 @item strength
14803 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
14804 expensive no-op. Defaults to 1.0 (full strength).
14805
14806 @end table
14807
14808 @subsection Commands
14809 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
14810 The command accepts the same syntax of the corresponding option.
14811
14812 If the specified expression is not valid, it is kept at its current
14813 value.
14814
14815 @subsection Examples
14816
14817 Stretch video contrast to use the full dynamic range, with no temporal
14818 smoothing; may flicker depending on the source content:
14819 @example
14820 normalize=blackpt=black:whitept=white:smoothing=0
14821 @end example
14822
14823 As above, but with 50 frames of temporal smoothing; flicker should be
14824 reduced, depending on the source content:
14825 @example
14826 normalize=blackpt=black:whitept=white:smoothing=50
14827 @end example
14828
14829 As above, but with hue-preserving linked channel normalization:
14830 @example
14831 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
14832 @end example
14833
14834 As above, but with half strength:
14835 @example
14836 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
14837 @end example
14838
14839 Map the darkest input color to red, the brightest input color to cyan:
14840 @example
14841 normalize=blackpt=red:whitept=cyan
14842 @end example
14843
14844 @section null
14845
14846 Pass the video source unchanged to the output.
14847
14848 @section ocr
14849 Optical Character Recognition
14850
14851 This filter uses Tesseract for optical character recognition. To enable
14852 compilation of this filter, you need to configure FFmpeg with
14853 @code{--enable-libtesseract}.
14854
14855 It accepts the following options:
14856
14857 @table @option
14858 @item datapath
14859 Set datapath to tesseract data. Default is to use whatever was
14860 set at installation.
14861
14862 @item language
14863 Set language, default is "eng".
14864
14865 @item whitelist
14866 Set character whitelist.
14867
14868 @item blacklist
14869 Set character blacklist.
14870 @end table
14871
14872 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
14873 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
14874
14875 @section ocv
14876
14877 Apply a video transform using libopencv.
14878
14879 To enable this filter, install the libopencv library and headers and
14880 configure FFmpeg with @code{--enable-libopencv}.
14881
14882 It accepts the following parameters:
14883
14884 @table @option
14885
14886 @item filter_name
14887 The name of the libopencv filter to apply.
14888
14889 @item filter_params
14890 The parameters to pass to the libopencv filter. If not specified, the default
14891 values are assumed.
14892
14893 @end table
14894
14895 Refer to the official libopencv documentation for more precise
14896 information:
14897 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
14898
14899 Several libopencv filters are supported; see the following subsections.
14900
14901 @anchor{dilate}
14902 @subsection dilate
14903
14904 Dilate an image by using a specific structuring element.
14905 It corresponds to the libopencv function @code{cvDilate}.
14906
14907 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
14908
14909 @var{struct_el} represents a structuring element, and has the syntax:
14910 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
14911
14912 @var{cols} and @var{rows} represent the number of columns and rows of
14913 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
14914 point, and @var{shape} the shape for the structuring element. @var{shape}
14915 must be "rect", "cross", "ellipse", or "custom".
14916
14917 If the value for @var{shape} is "custom", it must be followed by a
14918 string of the form "=@var{filename}". The file with name
14919 @var{filename} is assumed to represent a binary image, with each
14920 printable character corresponding to a bright pixel. When a custom
14921 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
14922 or columns and rows of the read file are assumed instead.
14923
14924 The default value for @var{struct_el} is "3x3+0x0/rect".
14925
14926 @var{nb_iterations} specifies the number of times the transform is
14927 applied to the image, and defaults to 1.
14928
14929 Some examples:
14930 @example
14931 # Use the default values
14932 ocv=dilate
14933
14934 # Dilate using a structuring element with a 5x5 cross, iterating two times
14935 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
14936
14937 # Read the shape from the file diamond.shape, iterating two times.
14938 # The file diamond.shape may contain a pattern of characters like this
14939 #   *
14940 #  ***
14941 # *****
14942 #  ***
14943 #   *
14944 # The specified columns and rows are ignored
14945 # but the anchor point coordinates are not
14946 ocv=dilate:0x0+2x2/custom=diamond.shape|2
14947 @end example
14948
14949 @subsection erode
14950
14951 Erode an image by using a specific structuring element.
14952 It corresponds to the libopencv function @code{cvErode}.
14953
14954 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
14955 with the same syntax and semantics as the @ref{dilate} filter.
14956
14957 @subsection smooth
14958
14959 Smooth the input video.
14960
14961 The filter takes the following parameters:
14962 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
14963
14964 @var{type} is the type of smooth filter to apply, and must be one of
14965 the following values: "blur", "blur_no_scale", "median", "gaussian",
14966 or "bilateral". The default value is "gaussian".
14967
14968 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
14969 depends on the smooth type. @var{param1} and
14970 @var{param2} accept integer positive values or 0. @var{param3} and
14971 @var{param4} accept floating point values.
14972
14973 The default value for @var{param1} is 3. The default value for the
14974 other parameters is 0.
14975
14976 These parameters correspond to the parameters assigned to the
14977 libopencv function @code{cvSmooth}.
14978
14979 @section oscilloscope
14980
14981 2D Video Oscilloscope.
14982
14983 Useful to measure spatial impulse, step responses, chroma delays, etc.
14984
14985 It accepts the following parameters:
14986
14987 @table @option
14988 @item x
14989 Set scope center x position.
14990
14991 @item y
14992 Set scope center y position.
14993
14994 @item s
14995 Set scope size, relative to frame diagonal.
14996
14997 @item t
14998 Set scope tilt/rotation.
14999
15000 @item o
15001 Set trace opacity.
15002
15003 @item tx
15004 Set trace center x position.
15005
15006 @item ty
15007 Set trace center y position.
15008
15009 @item tw
15010 Set trace width, relative to width of frame.
15011
15012 @item th
15013 Set trace height, relative to height of frame.
15014
15015 @item c
15016 Set which components to trace. By default it traces first three components.
15017
15018 @item g
15019 Draw trace grid. By default is enabled.
15020
15021 @item st
15022 Draw some statistics. By default is enabled.
15023
15024 @item sc
15025 Draw scope. By default is enabled.
15026 @end table
15027
15028 @subsection Commands
15029 This filter supports same @ref{commands} as options.
15030 The command accepts the same syntax of the corresponding option.
15031
15032 If the specified expression is not valid, it is kept at its current
15033 value.
15034
15035 @subsection Examples
15036
15037 @itemize
15038 @item
15039 Inspect full first row of video frame.
15040 @example
15041 oscilloscope=x=0.5:y=0:s=1
15042 @end example
15043
15044 @item
15045 Inspect full last row of video frame.
15046 @example
15047 oscilloscope=x=0.5:y=1:s=1
15048 @end example
15049
15050 @item
15051 Inspect full 5th line of video frame of height 1080.
15052 @example
15053 oscilloscope=x=0.5:y=5/1080:s=1
15054 @end example
15055
15056 @item
15057 Inspect full last column of video frame.
15058 @example
15059 oscilloscope=x=1:y=0.5:s=1:t=1
15060 @end example
15061
15062 @end itemize
15063
15064 @anchor{overlay}
15065 @section overlay
15066
15067 Overlay one video on top of another.
15068
15069 It takes two inputs and has one output. The first input is the "main"
15070 video on which the second input is overlaid.
15071
15072 It accepts the following parameters:
15073
15074 A description of the accepted options follows.
15075
15076 @table @option
15077 @item x
15078 @item y
15079 Set the expression for the x and y coordinates of the overlaid video
15080 on the main video. Default value is "0" for both expressions. In case
15081 the expression is invalid, it is set to a huge value (meaning that the
15082 overlay will not be displayed within the output visible area).
15083
15084 @item eof_action
15085 See @ref{framesync}.
15086
15087 @item eval
15088 Set when the expressions for @option{x}, and @option{y} are evaluated.
15089
15090 It accepts the following values:
15091 @table @samp
15092 @item init
15093 only evaluate expressions once during the filter initialization or
15094 when a command is processed
15095
15096 @item frame
15097 evaluate expressions for each incoming frame
15098 @end table
15099
15100 Default value is @samp{frame}.
15101
15102 @item shortest
15103 See @ref{framesync}.
15104
15105 @item format
15106 Set the format for the output video.
15107
15108 It accepts the following values:
15109 @table @samp
15110 @item yuv420
15111 force YUV420 output
15112
15113 @item yuv420p10
15114 force YUV420p10 output
15115
15116 @item yuv422
15117 force YUV422 output
15118
15119 @item yuv422p10
15120 force YUV422p10 output
15121
15122 @item yuv444
15123 force YUV444 output
15124
15125 @item rgb
15126 force packed RGB output
15127
15128 @item gbrp
15129 force planar RGB output
15130
15131 @item auto
15132 automatically pick format
15133 @end table
15134
15135 Default value is @samp{yuv420}.
15136
15137 @item repeatlast
15138 See @ref{framesync}.
15139
15140 @item alpha
15141 Set format of alpha of the overlaid video, it can be @var{straight} or
15142 @var{premultiplied}. Default is @var{straight}.
15143 @end table
15144
15145 The @option{x}, and @option{y} expressions can contain the following
15146 parameters.
15147
15148 @table @option
15149 @item main_w, W
15150 @item main_h, H
15151 The main input width and height.
15152
15153 @item overlay_w, w
15154 @item overlay_h, h
15155 The overlay input width and height.
15156
15157 @item x
15158 @item y
15159 The computed values for @var{x} and @var{y}. They are evaluated for
15160 each new frame.
15161
15162 @item hsub
15163 @item vsub
15164 horizontal and vertical chroma subsample values of the output
15165 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
15166 @var{vsub} is 1.
15167
15168 @item n
15169 the number of input frame, starting from 0
15170
15171 @item pos
15172 the position in the file of the input frame, NAN if unknown
15173
15174 @item t
15175 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
15176
15177 @end table
15178
15179 This filter also supports the @ref{framesync} options.
15180
15181 Note that the @var{n}, @var{pos}, @var{t} variables are available only
15182 when evaluation is done @emph{per frame}, and will evaluate to NAN
15183 when @option{eval} is set to @samp{init}.
15184
15185 Be aware that frames are taken from each input video in timestamp
15186 order, hence, if their initial timestamps differ, it is a good idea
15187 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
15188 have them begin in the same zero timestamp, as the example for
15189 the @var{movie} filter does.
15190
15191 You can chain together more overlays but you should test the
15192 efficiency of such approach.
15193
15194 @subsection Commands
15195
15196 This filter supports the following commands:
15197 @table @option
15198 @item x
15199 @item y
15200 Modify the x and y of the overlay input.
15201 The command accepts the same syntax of the corresponding option.
15202
15203 If the specified expression is not valid, it is kept at its current
15204 value.
15205 @end table
15206
15207 @subsection Examples
15208
15209 @itemize
15210 @item
15211 Draw the overlay at 10 pixels from the bottom right corner of the main
15212 video:
15213 @example
15214 overlay=main_w-overlay_w-10:main_h-overlay_h-10
15215 @end example
15216
15217 Using named options the example above becomes:
15218 @example
15219 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
15220 @end example
15221
15222 @item
15223 Insert a transparent PNG logo in the bottom left corner of the input,
15224 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
15225 @example
15226 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
15227 @end example
15228
15229 @item
15230 Insert 2 different transparent PNG logos (second logo on bottom
15231 right corner) using the @command{ffmpeg} tool:
15232 @example
15233 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
15234 @end example
15235
15236 @item
15237 Add a transparent color layer on top of the main video; @code{WxH}
15238 must specify the size of the main input to the overlay filter:
15239 @example
15240 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
15241 @end example
15242
15243 @item
15244 Play an original video and a filtered version (here with the deshake
15245 filter) side by side using the @command{ffplay} tool:
15246 @example
15247 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
15248 @end example
15249
15250 The above command is the same as:
15251 @example
15252 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
15253 @end example
15254
15255 @item
15256 Make a sliding overlay appearing from the left to the right top part of the
15257 screen starting since time 2:
15258 @example
15259 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
15260 @end example
15261
15262 @item
15263 Compose output by putting two input videos side to side:
15264 @example
15265 ffmpeg -i left.avi -i right.avi -filter_complex "
15266 nullsrc=size=200x100 [background];
15267 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
15268 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
15269 [background][left]       overlay=shortest=1       [background+left];
15270 [background+left][right] overlay=shortest=1:x=100 [left+right]
15271 "
15272 @end example
15273
15274 @item
15275 Mask 10-20 seconds of a video by applying the delogo filter to a section
15276 @example
15277 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
15278 -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]'
15279 masked.avi
15280 @end example
15281
15282 @item
15283 Chain several overlays in cascade:
15284 @example
15285 nullsrc=s=200x200 [bg];
15286 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
15287 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
15288 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
15289 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
15290 [in3] null,       [mid2] overlay=100:100 [out0]
15291 @end example
15292
15293 @end itemize
15294
15295 @anchor{overlay_cuda}
15296 @section overlay_cuda
15297
15298 Overlay one video on top of another.
15299
15300 This is the CUDA variant of the @ref{overlay} filter.
15301 It only accepts CUDA frames. The underlying input pixel formats have to match.
15302
15303 It takes two inputs and has one output. The first input is the "main"
15304 video on which the second input is overlaid.
15305
15306 It accepts the following parameters:
15307
15308 @table @option
15309 @item x
15310 @item y
15311 Set the x and y coordinates of the overlaid video on the main video.
15312 Default value is "0" for both expressions.
15313
15314 @item eof_action
15315 See @ref{framesync}.
15316
15317 @item shortest
15318 See @ref{framesync}.
15319
15320 @item repeatlast
15321 See @ref{framesync}.
15322
15323 @end table
15324
15325 This filter also supports the @ref{framesync} options.
15326
15327 @section owdenoise
15328
15329 Apply Overcomplete Wavelet denoiser.
15330
15331 The filter accepts the following options:
15332
15333 @table @option
15334 @item depth
15335 Set depth.
15336
15337 Larger depth values will denoise lower frequency components more, but
15338 slow down filtering.
15339
15340 Must be an int in the range 8-16, default is @code{8}.
15341
15342 @item luma_strength, ls
15343 Set luma strength.
15344
15345 Must be a double value in the range 0-1000, default is @code{1.0}.
15346
15347 @item chroma_strength, cs
15348 Set chroma strength.
15349
15350 Must be a double value in the range 0-1000, default is @code{1.0}.
15351 @end table
15352
15353 @anchor{pad}
15354 @section pad
15355
15356 Add paddings to the input image, and place the original input at the
15357 provided @var{x}, @var{y} coordinates.
15358
15359 It accepts the following parameters:
15360
15361 @table @option
15362 @item width, w
15363 @item height, h
15364 Specify an expression for the size of the output image with the
15365 paddings added. If the value for @var{width} or @var{height} is 0, the
15366 corresponding input size is used for the output.
15367
15368 The @var{width} expression can reference the value set by the
15369 @var{height} expression, and vice versa.
15370
15371 The default value of @var{width} and @var{height} is 0.
15372
15373 @item x
15374 @item y
15375 Specify the offsets to place the input image at within the padded area,
15376 with respect to the top/left border of the output image.
15377
15378 The @var{x} expression can reference the value set by the @var{y}
15379 expression, and vice versa.
15380
15381 The default value of @var{x} and @var{y} is 0.
15382
15383 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
15384 so the input image is centered on the padded area.
15385
15386 @item color
15387 Specify the color of the padded area. For the syntax of this option,
15388 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15389 manual,ffmpeg-utils}.
15390
15391 The default value of @var{color} is "black".
15392
15393 @item eval
15394 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
15395
15396 It accepts the following values:
15397
15398 @table @samp
15399 @item init
15400 Only evaluate expressions once during the filter initialization or when
15401 a command is processed.
15402
15403 @item frame
15404 Evaluate expressions for each incoming frame.
15405
15406 @end table
15407
15408 Default value is @samp{init}.
15409
15410 @item aspect
15411 Pad to aspect instead to a resolution.
15412
15413 @end table
15414
15415 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
15416 options are expressions containing the following constants:
15417
15418 @table @option
15419 @item in_w
15420 @item in_h
15421 The input video width and height.
15422
15423 @item iw
15424 @item ih
15425 These are the same as @var{in_w} and @var{in_h}.
15426
15427 @item out_w
15428 @item out_h
15429 The output width and height (the size of the padded area), as
15430 specified by the @var{width} and @var{height} expressions.
15431
15432 @item ow
15433 @item oh
15434 These are the same as @var{out_w} and @var{out_h}.
15435
15436 @item x
15437 @item y
15438 The x and y offsets as specified by the @var{x} and @var{y}
15439 expressions, or NAN if not yet specified.
15440
15441 @item a
15442 same as @var{iw} / @var{ih}
15443
15444 @item sar
15445 input sample aspect ratio
15446
15447 @item dar
15448 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
15449
15450 @item hsub
15451 @item vsub
15452 The horizontal and vertical chroma subsample values. For example for the
15453 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15454 @end table
15455
15456 @subsection Examples
15457
15458 @itemize
15459 @item
15460 Add paddings with the color "violet" to the input video. The output video
15461 size is 640x480, and the top-left corner of the input video is placed at
15462 column 0, row 40
15463 @example
15464 pad=640:480:0:40:violet
15465 @end example
15466
15467 The example above is equivalent to the following command:
15468 @example
15469 pad=width=640:height=480:x=0:y=40:color=violet
15470 @end example
15471
15472 @item
15473 Pad the input to get an output with dimensions increased by 3/2,
15474 and put the input video at the center of the padded area:
15475 @example
15476 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
15477 @end example
15478
15479 @item
15480 Pad the input to get a squared output with size equal to the maximum
15481 value between the input width and height, and put the input video at
15482 the center of the padded area:
15483 @example
15484 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
15485 @end example
15486
15487 @item
15488 Pad the input to get a final w/h ratio of 16:9:
15489 @example
15490 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
15491 @end example
15492
15493 @item
15494 In case of anamorphic video, in order to set the output display aspect
15495 correctly, it is necessary to use @var{sar} in the expression,
15496 according to the relation:
15497 @example
15498 (ih * X / ih) * sar = output_dar
15499 X = output_dar / sar
15500 @end example
15501
15502 Thus the previous example needs to be modified to:
15503 @example
15504 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
15505 @end example
15506
15507 @item
15508 Double the output size and put the input video in the bottom-right
15509 corner of the output padded area:
15510 @example
15511 pad="2*iw:2*ih:ow-iw:oh-ih"
15512 @end example
15513 @end itemize
15514
15515 @anchor{palettegen}
15516 @section palettegen
15517
15518 Generate one palette for a whole video stream.
15519
15520 It accepts the following options:
15521
15522 @table @option
15523 @item max_colors
15524 Set the maximum number of colors to quantize in the palette.
15525 Note: the palette will still contain 256 colors; the unused palette entries
15526 will be black.
15527
15528 @item reserve_transparent
15529 Create a palette of 255 colors maximum and reserve the last one for
15530 transparency. Reserving the transparency color is useful for GIF optimization.
15531 If not set, the maximum of colors in the palette will be 256. You probably want
15532 to disable this option for a standalone image.
15533 Set by default.
15534
15535 @item transparency_color
15536 Set the color that will be used as background for transparency.
15537
15538 @item stats_mode
15539 Set statistics mode.
15540
15541 It accepts the following values:
15542 @table @samp
15543 @item full
15544 Compute full frame histograms.
15545 @item diff
15546 Compute histograms only for the part that differs from previous frame. This
15547 might be relevant to give more importance to the moving part of your input if
15548 the background is static.
15549 @item single
15550 Compute new histogram for each frame.
15551 @end table
15552
15553 Default value is @var{full}.
15554 @end table
15555
15556 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
15557 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
15558 color quantization of the palette. This information is also visible at
15559 @var{info} logging level.
15560
15561 @subsection Examples
15562
15563 @itemize
15564 @item
15565 Generate a representative palette of a given video using @command{ffmpeg}:
15566 @example
15567 ffmpeg -i input.mkv -vf palettegen palette.png
15568 @end example
15569 @end itemize
15570
15571 @section paletteuse
15572
15573 Use a palette to downsample an input video stream.
15574
15575 The filter takes two inputs: one video stream and a palette. The palette must
15576 be a 256 pixels image.
15577
15578 It accepts the following options:
15579
15580 @table @option
15581 @item dither
15582 Select dithering mode. Available algorithms are:
15583 @table @samp
15584 @item bayer
15585 Ordered 8x8 bayer dithering (deterministic)
15586 @item heckbert
15587 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
15588 Note: this dithering is sometimes considered "wrong" and is included as a
15589 reference.
15590 @item floyd_steinberg
15591 Floyd and Steingberg dithering (error diffusion)
15592 @item sierra2
15593 Frankie Sierra dithering v2 (error diffusion)
15594 @item sierra2_4a
15595 Frankie Sierra dithering v2 "Lite" (error diffusion)
15596 @end table
15597
15598 Default is @var{sierra2_4a}.
15599
15600 @item bayer_scale
15601 When @var{bayer} dithering is selected, this option defines the scale of the
15602 pattern (how much the crosshatch pattern is visible). A low value means more
15603 visible pattern for less banding, and higher value means less visible pattern
15604 at the cost of more banding.
15605
15606 The option must be an integer value in the range [0,5]. Default is @var{2}.
15607
15608 @item diff_mode
15609 If set, define the zone to process
15610
15611 @table @samp
15612 @item rectangle
15613 Only the changing rectangle will be reprocessed. This is similar to GIF
15614 cropping/offsetting compression mechanism. This option can be useful for speed
15615 if only a part of the image is changing, and has use cases such as limiting the
15616 scope of the error diffusal @option{dither} to the rectangle that bounds the
15617 moving scene (it leads to more deterministic output if the scene doesn't change
15618 much, and as a result less moving noise and better GIF compression).
15619 @end table
15620
15621 Default is @var{none}.
15622
15623 @item new
15624 Take new palette for each output frame.
15625
15626 @item alpha_threshold
15627 Sets the alpha threshold for transparency. Alpha values above this threshold
15628 will be treated as completely opaque, and values below this threshold will be
15629 treated as completely transparent.
15630
15631 The option must be an integer value in the range [0,255]. Default is @var{128}.
15632 @end table
15633
15634 @subsection Examples
15635
15636 @itemize
15637 @item
15638 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
15639 using @command{ffmpeg}:
15640 @example
15641 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
15642 @end example
15643 @end itemize
15644
15645 @section perspective
15646
15647 Correct perspective of video not recorded perpendicular to the screen.
15648
15649 A description of the accepted parameters follows.
15650
15651 @table @option
15652 @item x0
15653 @item y0
15654 @item x1
15655 @item y1
15656 @item x2
15657 @item y2
15658 @item x3
15659 @item y3
15660 Set coordinates expression for top left, top right, bottom left and bottom right corners.
15661 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
15662 If the @code{sense} option is set to @code{source}, then the specified points will be sent
15663 to the corners of the destination. If the @code{sense} option is set to @code{destination},
15664 then the corners of the source will be sent to the specified coordinates.
15665
15666 The expressions can use the following variables:
15667
15668 @table @option
15669 @item W
15670 @item H
15671 the width and height of video frame.
15672 @item in
15673 Input frame count.
15674 @item on
15675 Output frame count.
15676 @end table
15677
15678 @item interpolation
15679 Set interpolation for perspective correction.
15680
15681 It accepts the following values:
15682 @table @samp
15683 @item linear
15684 @item cubic
15685 @end table
15686
15687 Default value is @samp{linear}.
15688
15689 @item sense
15690 Set interpretation of coordinate options.
15691
15692 It accepts the following values:
15693 @table @samp
15694 @item 0, source
15695
15696 Send point in the source specified by the given coordinates to
15697 the corners of the destination.
15698
15699 @item 1, destination
15700
15701 Send the corners of the source to the point in the destination specified
15702 by the given coordinates.
15703
15704 Default value is @samp{source}.
15705 @end table
15706
15707 @item eval
15708 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
15709
15710 It accepts the following values:
15711 @table @samp
15712 @item init
15713 only evaluate expressions once during the filter initialization or
15714 when a command is processed
15715
15716 @item frame
15717 evaluate expressions for each incoming frame
15718 @end table
15719
15720 Default value is @samp{init}.
15721 @end table
15722
15723 @section phase
15724
15725 Delay interlaced video by one field time so that the field order changes.
15726
15727 The intended use is to fix PAL movies that have been captured with the
15728 opposite field order to the film-to-video transfer.
15729
15730 A description of the accepted parameters follows.
15731
15732 @table @option
15733 @item mode
15734 Set phase mode.
15735
15736 It accepts the following values:
15737 @table @samp
15738 @item t
15739 Capture field order top-first, transfer bottom-first.
15740 Filter will delay the bottom field.
15741
15742 @item b
15743 Capture field order bottom-first, transfer top-first.
15744 Filter will delay the top field.
15745
15746 @item p
15747 Capture and transfer with the same field order. This mode only exists
15748 for the documentation of the other options to refer to, but if you
15749 actually select it, the filter will faithfully do nothing.
15750
15751 @item a
15752 Capture field order determined automatically by field flags, transfer
15753 opposite.
15754 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
15755 basis using field flags. If no field information is available,
15756 then this works just like @samp{u}.
15757
15758 @item u
15759 Capture unknown or varying, transfer opposite.
15760 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
15761 analyzing the images and selecting the alternative that produces best
15762 match between the fields.
15763
15764 @item T
15765 Capture top-first, transfer unknown or varying.
15766 Filter selects among @samp{t} and @samp{p} using image analysis.
15767
15768 @item B
15769 Capture bottom-first, transfer unknown or varying.
15770 Filter selects among @samp{b} and @samp{p} using image analysis.
15771
15772 @item A
15773 Capture determined by field flags, transfer unknown or varying.
15774 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
15775 image analysis. If no field information is available, then this works just
15776 like @samp{U}. This is the default mode.
15777
15778 @item U
15779 Both capture and transfer unknown or varying.
15780 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
15781 @end table
15782 @end table
15783
15784 @subsection Commands
15785
15786 This filter supports the all above options as @ref{commands}.
15787
15788 @section photosensitivity
15789 Reduce various flashes in video, so to help users with epilepsy.
15790
15791 It accepts the following options:
15792 @table @option
15793 @item frames, f
15794 Set how many frames to use when filtering. Default is 30.
15795
15796 @item threshold, t
15797 Set detection threshold factor. Default is 1.
15798 Lower is stricter.
15799
15800 @item skip
15801 Set how many pixels to skip when sampling frames. Default is 1.
15802 Allowed range is from 1 to 1024.
15803
15804 @item bypass
15805 Leave frames unchanged. Default is disabled.
15806 @end table
15807
15808 @section pixdesctest
15809
15810 Pixel format descriptor test filter, mainly useful for internal
15811 testing. The output video should be equal to the input video.
15812
15813 For example:
15814 @example
15815 format=monow, pixdesctest
15816 @end example
15817
15818 can be used to test the monowhite pixel format descriptor definition.
15819
15820 @section pixscope
15821
15822 Display sample values of color channels. Mainly useful for checking color
15823 and levels. Minimum supported resolution is 640x480.
15824
15825 The filters accept the following options:
15826
15827 @table @option
15828 @item x
15829 Set scope X position, relative offset on X axis.
15830
15831 @item y
15832 Set scope Y position, relative offset on Y axis.
15833
15834 @item w
15835 Set scope width.
15836
15837 @item h
15838 Set scope height.
15839
15840 @item o
15841 Set window opacity. This window also holds statistics about pixel area.
15842
15843 @item wx
15844 Set window X position, relative offset on X axis.
15845
15846 @item wy
15847 Set window Y position, relative offset on Y axis.
15848 @end table
15849
15850 @section pp
15851
15852 Enable the specified chain of postprocessing subfilters using libpostproc. This
15853 library should be automatically selected with a GPL build (@code{--enable-gpl}).
15854 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
15855 Each subfilter and some options have a short and a long name that can be used
15856 interchangeably, i.e. dr/dering are the same.
15857
15858 The filters accept the following options:
15859
15860 @table @option
15861 @item subfilters
15862 Set postprocessing subfilters string.
15863 @end table
15864
15865 All subfilters share common options to determine their scope:
15866
15867 @table @option
15868 @item a/autoq
15869 Honor the quality commands for this subfilter.
15870
15871 @item c/chrom
15872 Do chrominance filtering, too (default).
15873
15874 @item y/nochrom
15875 Do luminance filtering only (no chrominance).
15876
15877 @item n/noluma
15878 Do chrominance filtering only (no luminance).
15879 @end table
15880
15881 These options can be appended after the subfilter name, separated by a '|'.
15882
15883 Available subfilters are:
15884
15885 @table @option
15886 @item hb/hdeblock[|difference[|flatness]]
15887 Horizontal deblocking filter
15888 @table @option
15889 @item difference
15890 Difference factor where higher values mean more deblocking (default: @code{32}).
15891 @item flatness
15892 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15893 @end table
15894
15895 @item vb/vdeblock[|difference[|flatness]]
15896 Vertical deblocking filter
15897 @table @option
15898 @item difference
15899 Difference factor where higher values mean more deblocking (default: @code{32}).
15900 @item flatness
15901 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15902 @end table
15903
15904 @item ha/hadeblock[|difference[|flatness]]
15905 Accurate horizontal deblocking filter
15906 @table @option
15907 @item difference
15908 Difference factor where higher values mean more deblocking (default: @code{32}).
15909 @item flatness
15910 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15911 @end table
15912
15913 @item va/vadeblock[|difference[|flatness]]
15914 Accurate vertical deblocking filter
15915 @table @option
15916 @item difference
15917 Difference factor where higher values mean more deblocking (default: @code{32}).
15918 @item flatness
15919 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15920 @end table
15921 @end table
15922
15923 The horizontal and vertical deblocking filters share the difference and
15924 flatness values so you cannot set different horizontal and vertical
15925 thresholds.
15926
15927 @table @option
15928 @item h1/x1hdeblock
15929 Experimental horizontal deblocking filter
15930
15931 @item v1/x1vdeblock
15932 Experimental vertical deblocking filter
15933
15934 @item dr/dering
15935 Deringing filter
15936
15937 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
15938 @table @option
15939 @item threshold1
15940 larger -> stronger filtering
15941 @item threshold2
15942 larger -> stronger filtering
15943 @item threshold3
15944 larger -> stronger filtering
15945 @end table
15946
15947 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15948 @table @option
15949 @item f/fullyrange
15950 Stretch luminance to @code{0-255}.
15951 @end table
15952
15953 @item lb/linblenddeint
15954 Linear blend deinterlacing filter that deinterlaces the given block by
15955 filtering all lines with a @code{(1 2 1)} filter.
15956
15957 @item li/linipoldeint
15958 Linear interpolating deinterlacing filter that deinterlaces the given block by
15959 linearly interpolating every second line.
15960
15961 @item ci/cubicipoldeint
15962 Cubic interpolating deinterlacing filter deinterlaces the given block by
15963 cubically interpolating every second line.
15964
15965 @item md/mediandeint
15966 Median deinterlacing filter that deinterlaces the given block by applying a
15967 median filter to every second line.
15968
15969 @item fd/ffmpegdeint
15970 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
15971 second line with a @code{(-1 4 2 4 -1)} filter.
15972
15973 @item l5/lowpass5
15974 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
15975 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
15976
15977 @item fq/forceQuant[|quantizer]
15978 Overrides the quantizer table from the input with the constant quantizer you
15979 specify.
15980 @table @option
15981 @item quantizer
15982 Quantizer to use
15983 @end table
15984
15985 @item de/default
15986 Default pp filter combination (@code{hb|a,vb|a,dr|a})
15987
15988 @item fa/fast
15989 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
15990
15991 @item ac
15992 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
15993 @end table
15994
15995 @subsection Examples
15996
15997 @itemize
15998 @item
15999 Apply horizontal and vertical deblocking, deringing and automatic
16000 brightness/contrast:
16001 @example
16002 pp=hb/vb/dr/al
16003 @end example
16004
16005 @item
16006 Apply default filters without brightness/contrast correction:
16007 @example
16008 pp=de/-al
16009 @end example
16010
16011 @item
16012 Apply default filters and temporal denoiser:
16013 @example
16014 pp=default/tmpnoise|1|2|3
16015 @end example
16016
16017 @item
16018 Apply deblocking on luminance only, and switch vertical deblocking on or off
16019 automatically depending on available CPU time:
16020 @example
16021 pp=hb|y/vb|a
16022 @end example
16023 @end itemize
16024
16025 @section pp7
16026 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
16027 similar to spp = 6 with 7 point DCT, where only the center sample is
16028 used after IDCT.
16029
16030 The filter accepts the following options:
16031
16032 @table @option
16033 @item qp
16034 Force a constant quantization parameter. It accepts an integer in range
16035 0 to 63. If not set, the filter will use the QP from the video stream
16036 (if available).
16037
16038 @item mode
16039 Set thresholding mode. Available modes are:
16040
16041 @table @samp
16042 @item hard
16043 Set hard thresholding.
16044 @item soft
16045 Set soft thresholding (better de-ringing effect, but likely blurrier).
16046 @item medium
16047 Set medium thresholding (good results, default).
16048 @end table
16049 @end table
16050
16051 @section premultiply
16052 Apply alpha premultiply effect to input video stream using first plane
16053 of second stream as alpha.
16054
16055 Both streams must have same dimensions and same pixel format.
16056
16057 The filter accepts the following option:
16058
16059 @table @option
16060 @item planes
16061 Set which planes will be processed, unprocessed planes will be copied.
16062 By default value 0xf, all planes will be processed.
16063
16064 @item inplace
16065 Do not require 2nd input for processing, instead use alpha plane from input stream.
16066 @end table
16067
16068 @section prewitt
16069 Apply prewitt operator to input video stream.
16070
16071 The filter accepts the following option:
16072
16073 @table @option
16074 @item planes
16075 Set which planes will be processed, unprocessed planes will be copied.
16076 By default value 0xf, all planes will be processed.
16077
16078 @item scale
16079 Set value which will be multiplied with filtered result.
16080
16081 @item delta
16082 Set value which will be added to filtered result.
16083 @end table
16084
16085 @subsection Commands
16086
16087 This filter supports the all above options as @ref{commands}.
16088
16089 @section pseudocolor
16090
16091 Alter frame colors in video with pseudocolors.
16092
16093 This filter accepts the following options:
16094
16095 @table @option
16096 @item c0
16097 set pixel first component expression
16098
16099 @item c1
16100 set pixel second component expression
16101
16102 @item c2
16103 set pixel third component expression
16104
16105 @item c3
16106 set pixel fourth component expression, corresponds to the alpha component
16107
16108 @item i
16109 set component to use as base for altering colors
16110 @end table
16111
16112 Each of them specifies the expression to use for computing the lookup table for
16113 the corresponding pixel component values.
16114
16115 The expressions can contain the following constants and functions:
16116
16117 @table @option
16118 @item w
16119 @item h
16120 The input width and height.
16121
16122 @item val
16123 The input value for the pixel component.
16124
16125 @item ymin, umin, vmin, amin
16126 The minimum allowed component value.
16127
16128 @item ymax, umax, vmax, amax
16129 The maximum allowed component value.
16130 @end table
16131
16132 All expressions default to "val".
16133
16134 @subsection Examples
16135
16136 @itemize
16137 @item
16138 Change too high luma values to gradient:
16139 @example
16140 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'"
16141 @end example
16142 @end itemize
16143
16144 @section psnr
16145
16146 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
16147 Ratio) between two input videos.
16148
16149 This filter takes in input two input videos, the first input is
16150 considered the "main" source and is passed unchanged to the
16151 output. The second input is used as a "reference" video for computing
16152 the PSNR.
16153
16154 Both video inputs must have the same resolution and pixel format for
16155 this filter to work correctly. Also it assumes that both inputs
16156 have the same number of frames, which are compared one by one.
16157
16158 The obtained average PSNR is printed through the logging system.
16159
16160 The filter stores the accumulated MSE (mean squared error) of each
16161 frame, and at the end of the processing it is averaged across all frames
16162 equally, and the following formula is applied to obtain the PSNR:
16163
16164 @example
16165 PSNR = 10*log10(MAX^2/MSE)
16166 @end example
16167
16168 Where MAX is the average of the maximum values of each component of the
16169 image.
16170
16171 The description of the accepted parameters follows.
16172
16173 @table @option
16174 @item stats_file, f
16175 If specified the filter will use the named file to save the PSNR of
16176 each individual frame. When filename equals "-" the data is sent to
16177 standard output.
16178
16179 @item stats_version
16180 Specifies which version of the stats file format to use. Details of
16181 each format are written below.
16182 Default value is 1.
16183
16184 @item stats_add_max
16185 Determines whether the max value is output to the stats log.
16186 Default value is 0.
16187 Requires stats_version >= 2. If this is set and stats_version < 2,
16188 the filter will return an error.
16189 @end table
16190
16191 This filter also supports the @ref{framesync} options.
16192
16193 The file printed if @var{stats_file} is selected, contains a sequence of
16194 key/value pairs of the form @var{key}:@var{value} for each compared
16195 couple of frames.
16196
16197 If a @var{stats_version} greater than 1 is specified, a header line precedes
16198 the list of per-frame-pair stats, with key value pairs following the frame
16199 format with the following parameters:
16200
16201 @table @option
16202 @item psnr_log_version
16203 The version of the log file format. Will match @var{stats_version}.
16204
16205 @item fields
16206 A comma separated list of the per-frame-pair parameters included in
16207 the log.
16208 @end table
16209
16210 A description of each shown per-frame-pair parameter follows:
16211
16212 @table @option
16213 @item n
16214 sequential number of the input frame, starting from 1
16215
16216 @item mse_avg
16217 Mean Square Error pixel-by-pixel average difference of the compared
16218 frames, averaged over all the image components.
16219
16220 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
16221 Mean Square Error pixel-by-pixel average difference of the compared
16222 frames for the component specified by the suffix.
16223
16224 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
16225 Peak Signal to Noise ratio of the compared frames for the component
16226 specified by the suffix.
16227
16228 @item max_avg, max_y, max_u, max_v
16229 Maximum allowed value for each channel, and average over all
16230 channels.
16231 @end table
16232
16233 @subsection Examples
16234 @itemize
16235 @item
16236 For example:
16237 @example
16238 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16239 [main][ref] psnr="stats_file=stats.log" [out]
16240 @end example
16241
16242 On this example the input file being processed is compared with the
16243 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
16244 is stored in @file{stats.log}.
16245
16246 @item
16247 Another example with different containers:
16248 @example
16249 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 -
16250 @end example
16251 @end itemize
16252
16253 @anchor{pullup}
16254 @section pullup
16255
16256 Pulldown reversal (inverse telecine) filter, capable of handling mixed
16257 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
16258 content.
16259
16260 The pullup filter is designed to take advantage of future context in making
16261 its decisions. This filter is stateless in the sense that it does not lock
16262 onto a pattern to follow, but it instead looks forward to the following
16263 fields in order to identify matches and rebuild progressive frames.
16264
16265 To produce content with an even framerate, insert the fps filter after
16266 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
16267 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
16268
16269 The filter accepts the following options:
16270
16271 @table @option
16272 @item jl
16273 @item jr
16274 @item jt
16275 @item jb
16276 These options set the amount of "junk" to ignore at the left, right, top, and
16277 bottom of the image, respectively. Left and right are in units of 8 pixels,
16278 while top and bottom are in units of 2 lines.
16279 The default is 8 pixels on each side.
16280
16281 @item sb
16282 Set the strict breaks. Setting this option to 1 will reduce the chances of
16283 filter generating an occasional mismatched frame, but it may also cause an
16284 excessive number of frames to be dropped during high motion sequences.
16285 Conversely, setting it to -1 will make filter match fields more easily.
16286 This may help processing of video where there is slight blurring between
16287 the fields, but may also cause there to be interlaced frames in the output.
16288 Default value is @code{0}.
16289
16290 @item mp
16291 Set the metric plane to use. It accepts the following values:
16292 @table @samp
16293 @item l
16294 Use luma plane.
16295
16296 @item u
16297 Use chroma blue plane.
16298
16299 @item v
16300 Use chroma red plane.
16301 @end table
16302
16303 This option may be set to use chroma plane instead of the default luma plane
16304 for doing filter's computations. This may improve accuracy on very clean
16305 source material, but more likely will decrease accuracy, especially if there
16306 is chroma noise (rainbow effect) or any grayscale video.
16307 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
16308 load and make pullup usable in realtime on slow machines.
16309 @end table
16310
16311 For best results (without duplicated frames in the output file) it is
16312 necessary to change the output frame rate. For example, to inverse
16313 telecine NTSC input:
16314 @example
16315 ffmpeg -i input -vf pullup -r 24000/1001 ...
16316 @end example
16317
16318 @section qp
16319
16320 Change video quantization parameters (QP).
16321
16322 The filter accepts the following option:
16323
16324 @table @option
16325 @item qp
16326 Set expression for quantization parameter.
16327 @end table
16328
16329 The expression is evaluated through the eval API and can contain, among others,
16330 the following constants:
16331
16332 @table @var
16333 @item known
16334 1 if index is not 129, 0 otherwise.
16335
16336 @item qp
16337 Sequential index starting from -129 to 128.
16338 @end table
16339
16340 @subsection Examples
16341
16342 @itemize
16343 @item
16344 Some equation like:
16345 @example
16346 qp=2+2*sin(PI*qp)
16347 @end example
16348 @end itemize
16349
16350 @section random
16351
16352 Flush video frames from internal cache of frames into a random order.
16353 No frame is discarded.
16354 Inspired by @ref{frei0r} nervous filter.
16355
16356 @table @option
16357 @item frames
16358 Set size in number of frames of internal cache, in range from @code{2} to
16359 @code{512}. Default is @code{30}.
16360
16361 @item seed
16362 Set seed for random number generator, must be an integer included between
16363 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16364 less than @code{0}, the filter will try to use a good random seed on a
16365 best effort basis.
16366 @end table
16367
16368 @section readeia608
16369
16370 Read closed captioning (EIA-608) information from the top lines of a video frame.
16371
16372 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
16373 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
16374 with EIA-608 data (starting from 0). A description of each metadata value follows:
16375
16376 @table @option
16377 @item lavfi.readeia608.X.cc
16378 The two bytes stored as EIA-608 data (printed in hexadecimal).
16379
16380 @item lavfi.readeia608.X.line
16381 The number of the line on which the EIA-608 data was identified and read.
16382 @end table
16383
16384 This filter accepts the following options:
16385
16386 @table @option
16387 @item scan_min
16388 Set the line to start scanning for EIA-608 data. Default is @code{0}.
16389
16390 @item scan_max
16391 Set the line to end scanning for EIA-608 data. Default is @code{29}.
16392
16393 @item spw
16394 Set the ratio of width reserved for sync code detection.
16395 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
16396
16397 @item chp
16398 Enable checking the parity bit. In the event of a parity error, the filter will output
16399 @code{0x00} for that character. Default is false.
16400
16401 @item lp
16402 Lowpass lines prior to further processing. Default is enabled.
16403 @end table
16404
16405 @subsection Commands
16406
16407 This filter supports the all above options as @ref{commands}.
16408
16409 @subsection Examples
16410
16411 @itemize
16412 @item
16413 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
16414 @example
16415 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
16416 @end example
16417 @end itemize
16418
16419 @section readvitc
16420
16421 Read vertical interval timecode (VITC) information from the top lines of a
16422 video frame.
16423
16424 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
16425 timecode value, if a valid timecode has been detected. Further metadata key
16426 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
16427 timecode data has been found or not.
16428
16429 This filter accepts the following options:
16430
16431 @table @option
16432 @item scan_max
16433 Set the maximum number of lines to scan for VITC data. If the value is set to
16434 @code{-1} the full video frame is scanned. Default is @code{45}.
16435
16436 @item thr_b
16437 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
16438 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
16439
16440 @item thr_w
16441 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
16442 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
16443 @end table
16444
16445 @subsection Examples
16446
16447 @itemize
16448 @item
16449 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
16450 draw @code{--:--:--:--} as a placeholder:
16451 @example
16452 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
16453 @end example
16454 @end itemize
16455
16456 @section remap
16457
16458 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
16459
16460 Destination pixel at position (X, Y) will be picked from source (x, y) position
16461 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
16462 value for pixel will be used for destination pixel.
16463
16464 Xmap and Ymap input video streams must be of same dimensions. Output video stream
16465 will have Xmap/Ymap video stream dimensions.
16466 Xmap and Ymap input video streams are 16bit depth, single channel.
16467
16468 @table @option
16469 @item format
16470 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
16471 Default is @code{color}.
16472
16473 @item fill
16474 Specify the color of the unmapped pixels. For the syntax of this option,
16475 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
16476 manual,ffmpeg-utils}. Default color is @code{black}.
16477 @end table
16478
16479 @section removegrain
16480
16481 The removegrain filter is a spatial denoiser for progressive video.
16482
16483 @table @option
16484 @item m0
16485 Set mode for the first plane.
16486
16487 @item m1
16488 Set mode for the second plane.
16489
16490 @item m2
16491 Set mode for the third plane.
16492
16493 @item m3
16494 Set mode for the fourth plane.
16495 @end table
16496
16497 Range of mode is from 0 to 24. Description of each mode follows:
16498
16499 @table @var
16500 @item 0
16501 Leave input plane unchanged. Default.
16502
16503 @item 1
16504 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
16505
16506 @item 2
16507 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
16508
16509 @item 3
16510 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
16511
16512 @item 4
16513 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
16514 This is equivalent to a median filter.
16515
16516 @item 5
16517 Line-sensitive clipping giving the minimal change.
16518
16519 @item 6
16520 Line-sensitive clipping, intermediate.
16521
16522 @item 7
16523 Line-sensitive clipping, intermediate.
16524
16525 @item 8
16526 Line-sensitive clipping, intermediate.
16527
16528 @item 9
16529 Line-sensitive clipping on a line where the neighbours pixels are the closest.
16530
16531 @item 10
16532 Replaces the target pixel with the closest neighbour.
16533
16534 @item 11
16535 [1 2 1] horizontal and vertical kernel blur.
16536
16537 @item 12
16538 Same as mode 11.
16539
16540 @item 13
16541 Bob mode, interpolates top field from the line where the neighbours
16542 pixels are the closest.
16543
16544 @item 14
16545 Bob mode, interpolates bottom field from the line where the neighbours
16546 pixels are the closest.
16547
16548 @item 15
16549 Bob mode, interpolates top field. Same as 13 but with a more complicated
16550 interpolation formula.
16551
16552 @item 16
16553 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
16554 interpolation formula.
16555
16556 @item 17
16557 Clips the pixel with the minimum and maximum of respectively the maximum and
16558 minimum of each pair of opposite neighbour pixels.
16559
16560 @item 18
16561 Line-sensitive clipping using opposite neighbours whose greatest distance from
16562 the current pixel is minimal.
16563
16564 @item 19
16565 Replaces the pixel with the average of its 8 neighbours.
16566
16567 @item 20
16568 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
16569
16570 @item 21
16571 Clips pixels using the averages of opposite neighbour.
16572
16573 @item 22
16574 Same as mode 21 but simpler and faster.
16575
16576 @item 23
16577 Small edge and halo removal, but reputed useless.
16578
16579 @item 24
16580 Similar as 23.
16581 @end table
16582
16583 @section removelogo
16584
16585 Suppress a TV station logo, using an image file to determine which
16586 pixels comprise the logo. It works by filling in the pixels that
16587 comprise the logo with neighboring pixels.
16588
16589 The filter accepts the following options:
16590
16591 @table @option
16592 @item filename, f
16593 Set the filter bitmap file, which can be any image format supported by
16594 libavformat. The width and height of the image file must match those of the
16595 video stream being processed.
16596 @end table
16597
16598 Pixels in the provided bitmap image with a value of zero are not
16599 considered part of the logo, non-zero pixels are considered part of
16600 the logo. If you use white (255) for the logo and black (0) for the
16601 rest, you will be safe. For making the filter bitmap, it is
16602 recommended to take a screen capture of a black frame with the logo
16603 visible, and then using a threshold filter followed by the erode
16604 filter once or twice.
16605
16606 If needed, little splotches can be fixed manually. Remember that if
16607 logo pixels are not covered, the filter quality will be much
16608 reduced. Marking too many pixels as part of the logo does not hurt as
16609 much, but it will increase the amount of blurring needed to cover over
16610 the image and will destroy more information than necessary, and extra
16611 pixels will slow things down on a large logo.
16612
16613 @section repeatfields
16614
16615 This filter uses the repeat_field flag from the Video ES headers and hard repeats
16616 fields based on its value.
16617
16618 @section reverse
16619
16620 Reverse a video clip.
16621
16622 Warning: This filter requires memory to buffer the entire clip, so trimming
16623 is suggested.
16624
16625 @subsection Examples
16626
16627 @itemize
16628 @item
16629 Take the first 5 seconds of a clip, and reverse it.
16630 @example
16631 trim=end=5,reverse
16632 @end example
16633 @end itemize
16634
16635 @section rgbashift
16636 Shift R/G/B/A pixels horizontally and/or vertically.
16637
16638 The filter accepts the following options:
16639 @table @option
16640 @item rh
16641 Set amount to shift red horizontally.
16642 @item rv
16643 Set amount to shift red vertically.
16644 @item gh
16645 Set amount to shift green horizontally.
16646 @item gv
16647 Set amount to shift green vertically.
16648 @item bh
16649 Set amount to shift blue horizontally.
16650 @item bv
16651 Set amount to shift blue vertically.
16652 @item ah
16653 Set amount to shift alpha horizontally.
16654 @item av
16655 Set amount to shift alpha vertically.
16656 @item edge
16657 Set edge mode, can be @var{smear}, default, or @var{warp}.
16658 @end table
16659
16660 @subsection Commands
16661
16662 This filter supports the all above options as @ref{commands}.
16663
16664 @section roberts
16665 Apply roberts cross operator to input video stream.
16666
16667 The filter accepts the following option:
16668
16669 @table @option
16670 @item planes
16671 Set which planes will be processed, unprocessed planes will be copied.
16672 By default value 0xf, all planes will be processed.
16673
16674 @item scale
16675 Set value which will be multiplied with filtered result.
16676
16677 @item delta
16678 Set value which will be added to filtered result.
16679 @end table
16680
16681 @subsection Commands
16682
16683 This filter supports the all above options as @ref{commands}.
16684
16685 @section rotate
16686
16687 Rotate video by an arbitrary angle expressed in radians.
16688
16689 The filter accepts the following options:
16690
16691 A description of the optional parameters follows.
16692 @table @option
16693 @item angle, a
16694 Set an expression for the angle by which to rotate the input video
16695 clockwise, expressed as a number of radians. A negative value will
16696 result in a counter-clockwise rotation. By default it is set to "0".
16697
16698 This expression is evaluated for each frame.
16699
16700 @item out_w, ow
16701 Set the output width expression, default value is "iw".
16702 This expression is evaluated just once during configuration.
16703
16704 @item out_h, oh
16705 Set the output height expression, default value is "ih".
16706 This expression is evaluated just once during configuration.
16707
16708 @item bilinear
16709 Enable bilinear interpolation if set to 1, a value of 0 disables
16710 it. Default value is 1.
16711
16712 @item fillcolor, c
16713 Set the color used to fill the output area not covered by the rotated
16714 image. For the general syntax of this option, check the
16715 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16716 If the special value "none" is selected then no
16717 background is printed (useful for example if the background is never shown).
16718
16719 Default value is "black".
16720 @end table
16721
16722 The expressions for the angle and the output size can contain the
16723 following constants and functions:
16724
16725 @table @option
16726 @item n
16727 sequential number of the input frame, starting from 0. It is always NAN
16728 before the first frame is filtered.
16729
16730 @item t
16731 time in seconds of the input frame, it is set to 0 when the filter is
16732 configured. It is always NAN before the first frame is filtered.
16733
16734 @item hsub
16735 @item vsub
16736 horizontal and vertical chroma subsample values. For example for the
16737 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16738
16739 @item in_w, iw
16740 @item in_h, ih
16741 the input video width and height
16742
16743 @item out_w, ow
16744 @item out_h, oh
16745 the output width and height, that is the size of the padded area as
16746 specified by the @var{width} and @var{height} expressions
16747
16748 @item rotw(a)
16749 @item roth(a)
16750 the minimal width/height required for completely containing the input
16751 video rotated by @var{a} radians.
16752
16753 These are only available when computing the @option{out_w} and
16754 @option{out_h} expressions.
16755 @end table
16756
16757 @subsection Examples
16758
16759 @itemize
16760 @item
16761 Rotate the input by PI/6 radians clockwise:
16762 @example
16763 rotate=PI/6
16764 @end example
16765
16766 @item
16767 Rotate the input by PI/6 radians counter-clockwise:
16768 @example
16769 rotate=-PI/6
16770 @end example
16771
16772 @item
16773 Rotate the input by 45 degrees clockwise:
16774 @example
16775 rotate=45*PI/180
16776 @end example
16777
16778 @item
16779 Apply a constant rotation with period T, starting from an angle of PI/3:
16780 @example
16781 rotate=PI/3+2*PI*t/T
16782 @end example
16783
16784 @item
16785 Make the input video rotation oscillating with a period of T
16786 seconds and an amplitude of A radians:
16787 @example
16788 rotate=A*sin(2*PI/T*t)
16789 @end example
16790
16791 @item
16792 Rotate the video, output size is chosen so that the whole rotating
16793 input video is always completely contained in the output:
16794 @example
16795 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
16796 @end example
16797
16798 @item
16799 Rotate the video, reduce the output size so that no background is ever
16800 shown:
16801 @example
16802 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
16803 @end example
16804 @end itemize
16805
16806 @subsection Commands
16807
16808 The filter supports the following commands:
16809
16810 @table @option
16811 @item a, angle
16812 Set the angle expression.
16813 The command accepts the same syntax of the corresponding option.
16814
16815 If the specified expression is not valid, it is kept at its current
16816 value.
16817 @end table
16818
16819 @section sab
16820
16821 Apply Shape Adaptive Blur.
16822
16823 The filter accepts the following options:
16824
16825 @table @option
16826 @item luma_radius, lr
16827 Set luma blur filter strength, must be a value in range 0.1-4.0, default
16828 value is 1.0. A greater value will result in a more blurred image, and
16829 in slower processing.
16830
16831 @item luma_pre_filter_radius, lpfr
16832 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
16833 value is 1.0.
16834
16835 @item luma_strength, ls
16836 Set luma maximum difference between pixels to still be considered, must
16837 be a value in the 0.1-100.0 range, default value is 1.0.
16838
16839 @item chroma_radius, cr
16840 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
16841 greater value will result in a more blurred image, and in slower
16842 processing.
16843
16844 @item chroma_pre_filter_radius, cpfr
16845 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
16846
16847 @item chroma_strength, cs
16848 Set chroma maximum difference between pixels to still be considered,
16849 must be a value in the -0.9-100.0 range.
16850 @end table
16851
16852 Each chroma option value, if not explicitly specified, is set to the
16853 corresponding luma option value.
16854
16855 @anchor{scale}
16856 @section scale
16857
16858 Scale (resize) the input video, using the libswscale library.
16859
16860 The scale filter forces the output display aspect ratio to be the same
16861 of the input, by changing the output sample aspect ratio.
16862
16863 If the input image format is different from the format requested by
16864 the next filter, the scale filter will convert the input to the
16865 requested format.
16866
16867 @subsection Options
16868 The filter accepts the following options, or any of the options
16869 supported by the libswscale scaler.
16870
16871 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
16872 the complete list of scaler options.
16873
16874 @table @option
16875 @item width, w
16876 @item height, h
16877 Set the output video dimension expression. Default value is the input
16878 dimension.
16879
16880 If the @var{width} or @var{w} value is 0, the input width is used for
16881 the output. If the @var{height} or @var{h} value is 0, the input height
16882 is used for the output.
16883
16884 If one and only one of the values is -n with n >= 1, the scale filter
16885 will use a value that maintains the aspect ratio of the input image,
16886 calculated from the other specified dimension. After that it will,
16887 however, make sure that the calculated dimension is divisible by n and
16888 adjust the value if necessary.
16889
16890 If both values are -n with n >= 1, the behavior will be identical to
16891 both values being set to 0 as previously detailed.
16892
16893 See below for the list of accepted constants for use in the dimension
16894 expression.
16895
16896 @item eval
16897 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
16898
16899 @table @samp
16900 @item init
16901 Only evaluate expressions once during the filter initialization or when a command is processed.
16902
16903 @item frame
16904 Evaluate expressions for each incoming frame.
16905
16906 @end table
16907
16908 Default value is @samp{init}.
16909
16910
16911 @item interl
16912 Set the interlacing mode. It accepts the following values:
16913
16914 @table @samp
16915 @item 1
16916 Force interlaced aware scaling.
16917
16918 @item 0
16919 Do not apply interlaced scaling.
16920
16921 @item -1
16922 Select interlaced aware scaling depending on whether the source frames
16923 are flagged as interlaced or not.
16924 @end table
16925
16926 Default value is @samp{0}.
16927
16928 @item flags
16929 Set libswscale scaling flags. See
16930 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16931 complete list of values. If not explicitly specified the filter applies
16932 the default flags.
16933
16934
16935 @item param0, param1
16936 Set libswscale input parameters for scaling algorithms that need them. See
16937 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16938 complete documentation. If not explicitly specified the filter applies
16939 empty parameters.
16940
16941
16942
16943 @item size, s
16944 Set the video size. For the syntax of this option, check the
16945 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16946
16947 @item in_color_matrix
16948 @item out_color_matrix
16949 Set in/output YCbCr color space type.
16950
16951 This allows the autodetected value to be overridden as well as allows forcing
16952 a specific value used for the output and encoder.
16953
16954 If not specified, the color space type depends on the pixel format.
16955
16956 Possible values:
16957
16958 @table @samp
16959 @item auto
16960 Choose automatically.
16961
16962 @item bt709
16963 Format conforming to International Telecommunication Union (ITU)
16964 Recommendation BT.709.
16965
16966 @item fcc
16967 Set color space conforming to the United States Federal Communications
16968 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16969
16970 @item bt601
16971 @item bt470
16972 @item smpte170m
16973 Set color space conforming to:
16974
16975 @itemize
16976 @item
16977 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16978
16979 @item
16980 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16981
16982 @item
16983 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16984
16985 @end itemize
16986
16987 @item smpte240m
16988 Set color space conforming to SMPTE ST 240:1999.
16989
16990 @item bt2020
16991 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16992 @end table
16993
16994 @item in_range
16995 @item out_range
16996 Set in/output YCbCr sample range.
16997
16998 This allows the autodetected value to be overridden as well as allows forcing
16999 a specific value used for the output and encoder. If not specified, the
17000 range depends on the pixel format. Possible values:
17001
17002 @table @samp
17003 @item auto/unknown
17004 Choose automatically.
17005
17006 @item jpeg/full/pc
17007 Set full range (0-255 in case of 8-bit luma).
17008
17009 @item mpeg/limited/tv
17010 Set "MPEG" range (16-235 in case of 8-bit luma).
17011 @end table
17012
17013 @item force_original_aspect_ratio
17014 Enable decreasing or increasing output video width or height if necessary to
17015 keep the original aspect ratio. Possible values:
17016
17017 @table @samp
17018 @item disable
17019 Scale the video as specified and disable this feature.
17020
17021 @item decrease
17022 The output video dimensions will automatically be decreased if needed.
17023
17024 @item increase
17025 The output video dimensions will automatically be increased if needed.
17026
17027 @end table
17028
17029 One useful instance of this option is that when you know a specific device's
17030 maximum allowed resolution, you can use this to limit the output video to
17031 that, while retaining the aspect ratio. For example, device A allows
17032 1280x720 playback, and your video is 1920x800. Using this option (set it to
17033 decrease) and specifying 1280x720 to the command line makes the output
17034 1280x533.
17035
17036 Please note that this is a different thing than specifying -1 for @option{w}
17037 or @option{h}, you still need to specify the output resolution for this option
17038 to work.
17039
17040 @item force_divisible_by
17041 Ensures that both the output dimensions, width and height, are divisible by the
17042 given integer when used together with @option{force_original_aspect_ratio}. This
17043 works similar to using @code{-n} in the @option{w} and @option{h} options.
17044
17045 This option respects the value set for @option{force_original_aspect_ratio},
17046 increasing or decreasing the resolution accordingly. The video's aspect ratio
17047 may be slightly modified.
17048
17049 This option can be handy if you need to have a video fit within or exceed
17050 a defined resolution using @option{force_original_aspect_ratio} but also have
17051 encoder restrictions on width or height divisibility.
17052
17053 @end table
17054
17055 The values of the @option{w} and @option{h} options are expressions
17056 containing the following constants:
17057
17058 @table @var
17059 @item in_w
17060 @item in_h
17061 The input width and height
17062
17063 @item iw
17064 @item ih
17065 These are the same as @var{in_w} and @var{in_h}.
17066
17067 @item out_w
17068 @item out_h
17069 The output (scaled) width and height
17070
17071 @item ow
17072 @item oh
17073 These are the same as @var{out_w} and @var{out_h}
17074
17075 @item a
17076 The same as @var{iw} / @var{ih}
17077
17078 @item sar
17079 input sample aspect ratio
17080
17081 @item dar
17082 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
17083
17084 @item hsub
17085 @item vsub
17086 horizontal and vertical input chroma subsample values. For example for the
17087 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17088
17089 @item ohsub
17090 @item ovsub
17091 horizontal and vertical output chroma subsample values. For example for the
17092 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17093
17094 @item n
17095 The (sequential) number of the input frame, starting from 0.
17096 Only available with @code{eval=frame}.
17097
17098 @item t
17099 The presentation timestamp of the input frame, expressed as a number of
17100 seconds. Only available with @code{eval=frame}.
17101
17102 @item pos
17103 The position (byte offset) of the frame in the input stream, or NaN if
17104 this information is unavailable and/or meaningless (for example in case of synthetic video).
17105 Only available with @code{eval=frame}.
17106 @end table
17107
17108 @subsection Examples
17109
17110 @itemize
17111 @item
17112 Scale the input video to a size of 200x100
17113 @example
17114 scale=w=200:h=100
17115 @end example
17116
17117 This is equivalent to:
17118 @example
17119 scale=200:100
17120 @end example
17121
17122 or:
17123 @example
17124 scale=200x100
17125 @end example
17126
17127 @item
17128 Specify a size abbreviation for the output size:
17129 @example
17130 scale=qcif
17131 @end example
17132
17133 which can also be written as:
17134 @example
17135 scale=size=qcif
17136 @end example
17137
17138 @item
17139 Scale the input to 2x:
17140 @example
17141 scale=w=2*iw:h=2*ih
17142 @end example
17143
17144 @item
17145 The above is the same as:
17146 @example
17147 scale=2*in_w:2*in_h
17148 @end example
17149
17150 @item
17151 Scale the input to 2x with forced interlaced scaling:
17152 @example
17153 scale=2*iw:2*ih:interl=1
17154 @end example
17155
17156 @item
17157 Scale the input to half size:
17158 @example
17159 scale=w=iw/2:h=ih/2
17160 @end example
17161
17162 @item
17163 Increase the width, and set the height to the same size:
17164 @example
17165 scale=3/2*iw:ow
17166 @end example
17167
17168 @item
17169 Seek Greek harmony:
17170 @example
17171 scale=iw:1/PHI*iw
17172 scale=ih*PHI:ih
17173 @end example
17174
17175 @item
17176 Increase the height, and set the width to 3/2 of the height:
17177 @example
17178 scale=w=3/2*oh:h=3/5*ih
17179 @end example
17180
17181 @item
17182 Increase the size, making the size a multiple of the chroma
17183 subsample values:
17184 @example
17185 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
17186 @end example
17187
17188 @item
17189 Increase the width to a maximum of 500 pixels,
17190 keeping the same aspect ratio as the input:
17191 @example
17192 scale=w='min(500\, iw*3/2):h=-1'
17193 @end example
17194
17195 @item
17196 Make pixels square by combining scale and setsar:
17197 @example
17198 scale='trunc(ih*dar):ih',setsar=1/1
17199 @end example
17200
17201 @item
17202 Make pixels square by combining scale and setsar,
17203 making sure the resulting resolution is even (required by some codecs):
17204 @example
17205 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
17206 @end example
17207 @end itemize
17208
17209 @subsection Commands
17210
17211 This filter supports the following commands:
17212 @table @option
17213 @item width, w
17214 @item height, h
17215 Set the output video dimension expression.
17216 The command accepts the same syntax of the corresponding option.
17217
17218 If the specified expression is not valid, it is kept at its current
17219 value.
17220 @end table
17221
17222 @section scale_npp
17223
17224 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
17225 format conversion on CUDA video frames. Setting the output width and height
17226 works in the same way as for the @var{scale} filter.
17227
17228 The following additional options are accepted:
17229 @table @option
17230 @item format
17231 The pixel format of the output CUDA frames. If set to the string "same" (the
17232 default), the input format will be kept. Note that automatic format negotiation
17233 and conversion is not yet supported for hardware frames
17234
17235 @item interp_algo
17236 The interpolation algorithm used for resizing. One of the following:
17237 @table @option
17238 @item nn
17239 Nearest neighbour.
17240
17241 @item linear
17242 @item cubic
17243 @item cubic2p_bspline
17244 2-parameter cubic (B=1, C=0)
17245
17246 @item cubic2p_catmullrom
17247 2-parameter cubic (B=0, C=1/2)
17248
17249 @item cubic2p_b05c03
17250 2-parameter cubic (B=1/2, C=3/10)
17251
17252 @item super
17253 Supersampling
17254
17255 @item lanczos
17256 @end table
17257
17258 @item force_original_aspect_ratio
17259 Enable decreasing or increasing output video width or height if necessary to
17260 keep the original aspect ratio. Possible values:
17261
17262 @table @samp
17263 @item disable
17264 Scale the video as specified and disable this feature.
17265
17266 @item decrease
17267 The output video dimensions will automatically be decreased if needed.
17268
17269 @item increase
17270 The output video dimensions will automatically be increased if needed.
17271
17272 @end table
17273
17274 One useful instance of this option is that when you know a specific device's
17275 maximum allowed resolution, you can use this to limit the output video to
17276 that, while retaining the aspect ratio. For example, device A allows
17277 1280x720 playback, and your video is 1920x800. Using this option (set it to
17278 decrease) and specifying 1280x720 to the command line makes the output
17279 1280x533.
17280
17281 Please note that this is a different thing than specifying -1 for @option{w}
17282 or @option{h}, you still need to specify the output resolution for this option
17283 to work.
17284
17285 @item force_divisible_by
17286 Ensures that both the output dimensions, width and height, are divisible by the
17287 given integer when used together with @option{force_original_aspect_ratio}. This
17288 works similar to using @code{-n} in the @option{w} and @option{h} options.
17289
17290 This option respects the value set for @option{force_original_aspect_ratio},
17291 increasing or decreasing the resolution accordingly. The video's aspect ratio
17292 may be slightly modified.
17293
17294 This option can be handy if you need to have a video fit within or exceed
17295 a defined resolution using @option{force_original_aspect_ratio} but also have
17296 encoder restrictions on width or height divisibility.
17297
17298 @end table
17299
17300 @section scale2ref
17301
17302 Scale (resize) the input video, based on a reference video.
17303
17304 See the scale filter for available options, scale2ref supports the same but
17305 uses the reference video instead of the main input as basis. scale2ref also
17306 supports the following additional constants for the @option{w} and
17307 @option{h} options:
17308
17309 @table @var
17310 @item main_w
17311 @item main_h
17312 The main input video's width and height
17313
17314 @item main_a
17315 The same as @var{main_w} / @var{main_h}
17316
17317 @item main_sar
17318 The main input video's sample aspect ratio
17319
17320 @item main_dar, mdar
17321 The main input video's display aspect ratio. Calculated from
17322 @code{(main_w / main_h) * main_sar}.
17323
17324 @item main_hsub
17325 @item main_vsub
17326 The main input video's horizontal and vertical chroma subsample values.
17327 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
17328 is 1.
17329
17330 @item main_n
17331 The (sequential) number of the main input frame, starting from 0.
17332 Only available with @code{eval=frame}.
17333
17334 @item main_t
17335 The presentation timestamp of the main input frame, expressed as a number of
17336 seconds. Only available with @code{eval=frame}.
17337
17338 @item main_pos
17339 The position (byte offset) of the frame in the main input stream, or NaN if
17340 this information is unavailable and/or meaningless (for example in case of synthetic video).
17341 Only available with @code{eval=frame}.
17342 @end table
17343
17344 @subsection Examples
17345
17346 @itemize
17347 @item
17348 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
17349 @example
17350 'scale2ref[b][a];[a][b]overlay'
17351 @end example
17352
17353 @item
17354 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
17355 @example
17356 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
17357 @end example
17358 @end itemize
17359
17360 @subsection Commands
17361
17362 This filter supports the following commands:
17363 @table @option
17364 @item width, w
17365 @item height, h
17366 Set the output video dimension expression.
17367 The command accepts the same syntax of the corresponding option.
17368
17369 If the specified expression is not valid, it is kept at its current
17370 value.
17371 @end table
17372
17373 @section scroll
17374 Scroll input video horizontally and/or vertically by constant speed.
17375
17376 The filter accepts the following options:
17377 @table @option
17378 @item horizontal, h
17379 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
17380 Negative values changes scrolling direction.
17381
17382 @item vertical, v
17383 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
17384 Negative values changes scrolling direction.
17385
17386 @item hpos
17387 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
17388
17389 @item vpos
17390 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
17391 @end table
17392
17393 @subsection Commands
17394
17395 This filter supports the following @ref{commands}:
17396 @table @option
17397 @item horizontal, h
17398 Set the horizontal scrolling speed.
17399 @item vertical, v
17400 Set the vertical scrolling speed.
17401 @end table
17402
17403 @anchor{scdet}
17404 @section scdet
17405
17406 Detect video scene change.
17407
17408 This filter sets frame metadata with mafd between frame, the scene score, and
17409 forward the frame to the next filter, so they can use these metadata to detect
17410 scene change or others.
17411
17412 In addition, this filter logs a message and sets frame metadata when it detects
17413 a scene change by @option{threshold}.
17414
17415 @code{lavfi.scd.mafd} metadata keys are set with mafd for every frame.
17416
17417 @code{lavfi.scd.score} metadata keys are set with scene change score for every frame
17418 to detect scene change.
17419
17420 @code{lavfi.scd.time} metadata keys are set with current filtered frame time which
17421 detect scene change with @option{threshold}.
17422
17423 The filter accepts the following options:
17424
17425 @table @option
17426 @item threshold, t
17427 Set the scene change detection threshold as a percentage of maximum change. Good
17428 values are in the @code{[8.0, 14.0]} range. The range for @option{threshold} is
17429 @code{[0., 100.]}.
17430
17431 Default value is @code{10.}.
17432
17433 @item sc_pass, s
17434 Set the flag to pass scene change frames to the next filter. Default value is @code{0}
17435 You can enable it if you want to get snapshot of scene change frames only.
17436 @end table
17437
17438 @anchor{selectivecolor}
17439 @section selectivecolor
17440
17441 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
17442 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
17443 by the "purity" of the color (that is, how saturated it already is).
17444
17445 This filter is similar to the Adobe Photoshop Selective Color tool.
17446
17447 The filter accepts the following options:
17448
17449 @table @option
17450 @item correction_method
17451 Select color correction method.
17452
17453 Available values are:
17454 @table @samp
17455 @item absolute
17456 Specified adjustments are applied "as-is" (added/subtracted to original pixel
17457 component value).
17458 @item relative
17459 Specified adjustments are relative to the original component value.
17460 @end table
17461 Default is @code{absolute}.
17462 @item reds
17463 Adjustments for red pixels (pixels where the red component is the maximum)
17464 @item yellows
17465 Adjustments for yellow pixels (pixels where the blue component is the minimum)
17466 @item greens
17467 Adjustments for green pixels (pixels where the green component is the maximum)
17468 @item cyans
17469 Adjustments for cyan pixels (pixels where the red component is the minimum)
17470 @item blues
17471 Adjustments for blue pixels (pixels where the blue component is the maximum)
17472 @item magentas
17473 Adjustments for magenta pixels (pixels where the green component is the minimum)
17474 @item whites
17475 Adjustments for white pixels (pixels where all components are greater than 128)
17476 @item neutrals
17477 Adjustments for all pixels except pure black and pure white
17478 @item blacks
17479 Adjustments for black pixels (pixels where all components are lesser than 128)
17480 @item psfile
17481 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
17482 @end table
17483
17484 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
17485 4 space separated floating point adjustment values in the [-1,1] range,
17486 respectively to adjust the amount of cyan, magenta, yellow and black for the
17487 pixels of its range.
17488
17489 @subsection Examples
17490
17491 @itemize
17492 @item
17493 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
17494 increase magenta by 27% in blue areas:
17495 @example
17496 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
17497 @end example
17498
17499 @item
17500 Use a Photoshop selective color preset:
17501 @example
17502 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
17503 @end example
17504 @end itemize
17505
17506 @anchor{separatefields}
17507 @section separatefields
17508
17509 The @code{separatefields} takes a frame-based video input and splits
17510 each frame into its components fields, producing a new half height clip
17511 with twice the frame rate and twice the frame count.
17512
17513 This filter use field-dominance information in frame to decide which
17514 of each pair of fields to place first in the output.
17515 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
17516
17517 @section setdar, setsar
17518
17519 The @code{setdar} filter sets the Display Aspect Ratio for the filter
17520 output video.
17521
17522 This is done by changing the specified Sample (aka Pixel) Aspect
17523 Ratio, according to the following equation:
17524 @example
17525 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
17526 @end example
17527
17528 Keep in mind that the @code{setdar} filter does not modify the pixel
17529 dimensions of the video frame. Also, the display aspect ratio set by
17530 this filter may be changed by later filters in the filterchain,
17531 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
17532 applied.
17533
17534 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
17535 the filter output video.
17536
17537 Note that as a consequence of the application of this filter, the
17538 output display aspect ratio will change according to the equation
17539 above.
17540
17541 Keep in mind that the sample aspect ratio set by the @code{setsar}
17542 filter may be changed by later filters in the filterchain, e.g. if
17543 another "setsar" or a "setdar" filter is applied.
17544
17545 It accepts the following parameters:
17546
17547 @table @option
17548 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
17549 Set the aspect ratio used by the filter.
17550
17551 The parameter can be a floating point number string, an expression, or
17552 a string of the form @var{num}:@var{den}, where @var{num} and
17553 @var{den} are the numerator and denominator of the aspect ratio. If
17554 the parameter is not specified, it is assumed the value "0".
17555 In case the form "@var{num}:@var{den}" is used, the @code{:} character
17556 should be escaped.
17557
17558 @item max
17559 Set the maximum integer value to use for expressing numerator and
17560 denominator when reducing the expressed aspect ratio to a rational.
17561 Default value is @code{100}.
17562
17563 @end table
17564
17565 The parameter @var{sar} is an expression containing
17566 the following constants:
17567
17568 @table @option
17569 @item E, PI, PHI
17570 These are approximated values for the mathematical constants e
17571 (Euler's number), pi (Greek pi), and phi (the golden ratio).
17572
17573 @item w, h
17574 The input width and height.
17575
17576 @item a
17577 These are the same as @var{w} / @var{h}.
17578
17579 @item sar
17580 The input sample aspect ratio.
17581
17582 @item dar
17583 The input display aspect ratio. It is the same as
17584 (@var{w} / @var{h}) * @var{sar}.
17585
17586 @item hsub, vsub
17587 Horizontal and vertical chroma subsample values. For example, for the
17588 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17589 @end table
17590
17591 @subsection Examples
17592
17593 @itemize
17594
17595 @item
17596 To change the display aspect ratio to 16:9, specify one of the following:
17597 @example
17598 setdar=dar=1.77777
17599 setdar=dar=16/9
17600 @end example
17601
17602 @item
17603 To change the sample aspect ratio to 10:11, specify:
17604 @example
17605 setsar=sar=10/11
17606 @end example
17607
17608 @item
17609 To set a display aspect ratio of 16:9, and specify a maximum integer value of
17610 1000 in the aspect ratio reduction, use the command:
17611 @example
17612 setdar=ratio=16/9:max=1000
17613 @end example
17614
17615 @end itemize
17616
17617 @anchor{setfield}
17618 @section setfield
17619
17620 Force field for the output video frame.
17621
17622 The @code{setfield} filter marks the interlace type field for the
17623 output frames. It does not change the input frame, but only sets the
17624 corresponding property, which affects how the frame is treated by
17625 following filters (e.g. @code{fieldorder} or @code{yadif}).
17626
17627 The filter accepts the following options:
17628
17629 @table @option
17630
17631 @item mode
17632 Available values are:
17633
17634 @table @samp
17635 @item auto
17636 Keep the same field property.
17637
17638 @item bff
17639 Mark the frame as bottom-field-first.
17640
17641 @item tff
17642 Mark the frame as top-field-first.
17643
17644 @item prog
17645 Mark the frame as progressive.
17646 @end table
17647 @end table
17648
17649 @anchor{setparams}
17650 @section setparams
17651
17652 Force frame parameter for the output video frame.
17653
17654 The @code{setparams} filter marks interlace and color range for the
17655 output frames. It does not change the input frame, but only sets the
17656 corresponding property, which affects how the frame is treated by
17657 filters/encoders.
17658
17659 @table @option
17660 @item field_mode
17661 Available values are:
17662
17663 @table @samp
17664 @item auto
17665 Keep the same field property (default).
17666
17667 @item bff
17668 Mark the frame as bottom-field-first.
17669
17670 @item tff
17671 Mark the frame as top-field-first.
17672
17673 @item prog
17674 Mark the frame as progressive.
17675 @end table
17676
17677 @item range
17678 Available values are:
17679
17680 @table @samp
17681 @item auto
17682 Keep the same color range property (default).
17683
17684 @item unspecified, unknown
17685 Mark the frame as unspecified color range.
17686
17687 @item limited, tv, mpeg
17688 Mark the frame as limited range.
17689
17690 @item full, pc, jpeg
17691 Mark the frame as full range.
17692 @end table
17693
17694 @item color_primaries
17695 Set the color primaries.
17696 Available values are:
17697
17698 @table @samp
17699 @item auto
17700 Keep the same color primaries property (default).
17701
17702 @item bt709
17703 @item unknown
17704 @item bt470m
17705 @item bt470bg
17706 @item smpte170m
17707 @item smpte240m
17708 @item film
17709 @item bt2020
17710 @item smpte428
17711 @item smpte431
17712 @item smpte432
17713 @item jedec-p22
17714 @end table
17715
17716 @item color_trc
17717 Set the color transfer.
17718 Available values are:
17719
17720 @table @samp
17721 @item auto
17722 Keep the same color trc property (default).
17723
17724 @item bt709
17725 @item unknown
17726 @item bt470m
17727 @item bt470bg
17728 @item smpte170m
17729 @item smpte240m
17730 @item linear
17731 @item log100
17732 @item log316
17733 @item iec61966-2-4
17734 @item bt1361e
17735 @item iec61966-2-1
17736 @item bt2020-10
17737 @item bt2020-12
17738 @item smpte2084
17739 @item smpte428
17740 @item arib-std-b67
17741 @end table
17742
17743 @item colorspace
17744 Set the colorspace.
17745 Available values are:
17746
17747 @table @samp
17748 @item auto
17749 Keep the same colorspace property (default).
17750
17751 @item gbr
17752 @item bt709
17753 @item unknown
17754 @item fcc
17755 @item bt470bg
17756 @item smpte170m
17757 @item smpte240m
17758 @item ycgco
17759 @item bt2020nc
17760 @item bt2020c
17761 @item smpte2085
17762 @item chroma-derived-nc
17763 @item chroma-derived-c
17764 @item ictcp
17765 @end table
17766 @end table
17767
17768 @section showinfo
17769
17770 Show a line containing various information for each input video frame.
17771 The input video is not modified.
17772
17773 This filter supports the following options:
17774
17775 @table @option
17776 @item checksum
17777 Calculate checksums of each plane. By default enabled.
17778 @end table
17779
17780 The shown line contains a sequence of key/value pairs of the form
17781 @var{key}:@var{value}.
17782
17783 The following values are shown in the output:
17784
17785 @table @option
17786 @item n
17787 The (sequential) number of the input frame, starting from 0.
17788
17789 @item pts
17790 The Presentation TimeStamp of the input frame, expressed as a number of
17791 time base units. The time base unit depends on the filter input pad.
17792
17793 @item pts_time
17794 The Presentation TimeStamp of the input frame, expressed as a number of
17795 seconds.
17796
17797 @item pos
17798 The position of the frame in the input stream, or -1 if this information is
17799 unavailable and/or meaningless (for example in case of synthetic video).
17800
17801 @item fmt
17802 The pixel format name.
17803
17804 @item sar
17805 The sample aspect ratio of the input frame, expressed in the form
17806 @var{num}/@var{den}.
17807
17808 @item s
17809 The size of the input frame. For the syntax of this option, check the
17810 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17811
17812 @item i
17813 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
17814 for bottom field first).
17815
17816 @item iskey
17817 This is 1 if the frame is a key frame, 0 otherwise.
17818
17819 @item type
17820 The picture type of the input frame ("I" for an I-frame, "P" for a
17821 P-frame, "B" for a B-frame, or "?" for an unknown type).
17822 Also refer to the documentation of the @code{AVPictureType} enum and of
17823 the @code{av_get_picture_type_char} function defined in
17824 @file{libavutil/avutil.h}.
17825
17826 @item checksum
17827 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
17828
17829 @item plane_checksum
17830 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
17831 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
17832
17833 @item mean
17834 The mean value of pixels in each plane of the input frame, expressed in the form
17835 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
17836
17837 @item stdev
17838 The standard deviation of pixel values in each plane of the input frame, expressed
17839 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
17840
17841 @end table
17842
17843 @section showpalette
17844
17845 Displays the 256 colors palette of each frame. This filter is only relevant for
17846 @var{pal8} pixel format frames.
17847
17848 It accepts the following option:
17849
17850 @table @option
17851 @item s
17852 Set the size of the box used to represent one palette color entry. Default is
17853 @code{30} (for a @code{30x30} pixel box).
17854 @end table
17855
17856 @section shuffleframes
17857
17858 Reorder and/or duplicate and/or drop video frames.
17859
17860 It accepts the following parameters:
17861
17862 @table @option
17863 @item mapping
17864 Set the destination indexes of input frames.
17865 This is space or '|' separated list of indexes that maps input frames to output
17866 frames. Number of indexes also sets maximal value that each index may have.
17867 '-1' index have special meaning and that is to drop frame.
17868 @end table
17869
17870 The first frame has the index 0. The default is to keep the input unchanged.
17871
17872 @subsection Examples
17873
17874 @itemize
17875 @item
17876 Swap second and third frame of every three frames of the input:
17877 @example
17878 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
17879 @end example
17880
17881 @item
17882 Swap 10th and 1st frame of every ten frames of the input:
17883 @example
17884 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
17885 @end example
17886 @end itemize
17887
17888 @section shufflepixels
17889
17890 Reorder pixels in video frames.
17891
17892 This filter accepts the following options:
17893
17894 @table @option
17895 @item direction, d
17896 Set shuffle direction. Can be forward or inverse direction.
17897 Default direction is forward.
17898
17899 @item mode, m
17900 Set shuffle mode. Can be horizontal, vertical or block mode.
17901
17902 @item width, w
17903 @item height, h
17904 Set shuffle block_size. In case of horizontal shuffle mode only width
17905 part of size is used, and in case of vertical shuffle mode only height
17906 part of size is used.
17907
17908 @item seed, s
17909 Set random seed used with shuffling pixels. Mainly useful to set to be able
17910 to reverse filtering process to get original input.
17911 For example, to reverse forward shuffle you need to use same parameters
17912 and exact same seed and to set direction to inverse.
17913 @end table
17914
17915 @section shuffleplanes
17916
17917 Reorder and/or duplicate video planes.
17918
17919 It accepts the following parameters:
17920
17921 @table @option
17922
17923 @item map0
17924 The index of the input plane to be used as the first output plane.
17925
17926 @item map1
17927 The index of the input plane to be used as the second output plane.
17928
17929 @item map2
17930 The index of the input plane to be used as the third output plane.
17931
17932 @item map3
17933 The index of the input plane to be used as the fourth output plane.
17934
17935 @end table
17936
17937 The first plane has the index 0. The default is to keep the input unchanged.
17938
17939 @subsection Examples
17940
17941 @itemize
17942 @item
17943 Swap the second and third planes of the input:
17944 @example
17945 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
17946 @end example
17947 @end itemize
17948
17949 @anchor{signalstats}
17950 @section signalstats
17951 Evaluate various visual metrics that assist in determining issues associated
17952 with the digitization of analog video media.
17953
17954 By default the filter will log these metadata values:
17955
17956 @table @option
17957 @item YMIN
17958 Display the minimal Y value contained within the input frame. Expressed in
17959 range of [0-255].
17960
17961 @item YLOW
17962 Display the Y value at the 10% percentile within the input frame. Expressed in
17963 range of [0-255].
17964
17965 @item YAVG
17966 Display the average Y value within the input frame. Expressed in range of
17967 [0-255].
17968
17969 @item YHIGH
17970 Display the Y value at the 90% percentile within the input frame. Expressed in
17971 range of [0-255].
17972
17973 @item YMAX
17974 Display the maximum Y value contained within the input frame. Expressed in
17975 range of [0-255].
17976
17977 @item UMIN
17978 Display the minimal U value contained within the input frame. Expressed in
17979 range of [0-255].
17980
17981 @item ULOW
17982 Display the U value at the 10% percentile within the input frame. Expressed in
17983 range of [0-255].
17984
17985 @item UAVG
17986 Display the average U value within the input frame. Expressed in range of
17987 [0-255].
17988
17989 @item UHIGH
17990 Display the U value at the 90% percentile within the input frame. Expressed in
17991 range of [0-255].
17992
17993 @item UMAX
17994 Display the maximum U value contained within the input frame. Expressed in
17995 range of [0-255].
17996
17997 @item VMIN
17998 Display the minimal V value contained within the input frame. Expressed in
17999 range of [0-255].
18000
18001 @item VLOW
18002 Display the V value at the 10% percentile within the input frame. Expressed in
18003 range of [0-255].
18004
18005 @item VAVG
18006 Display the average V value within the input frame. Expressed in range of
18007 [0-255].
18008
18009 @item VHIGH
18010 Display the V value at the 90% percentile within the input frame. Expressed in
18011 range of [0-255].
18012
18013 @item VMAX
18014 Display the maximum V value contained within the input frame. Expressed in
18015 range of [0-255].
18016
18017 @item SATMIN
18018 Display the minimal saturation value contained within the input frame.
18019 Expressed in range of [0-~181.02].
18020
18021 @item SATLOW
18022 Display the saturation value at the 10% percentile within the input frame.
18023 Expressed in range of [0-~181.02].
18024
18025 @item SATAVG
18026 Display the average saturation value within the input frame. Expressed in range
18027 of [0-~181.02].
18028
18029 @item SATHIGH
18030 Display the saturation value at the 90% percentile within the input frame.
18031 Expressed in range of [0-~181.02].
18032
18033 @item SATMAX
18034 Display the maximum saturation value contained within the input frame.
18035 Expressed in range of [0-~181.02].
18036
18037 @item HUEMED
18038 Display the median value for hue within the input frame. Expressed in range of
18039 [0-360].
18040
18041 @item HUEAVG
18042 Display the average value for hue within the input frame. Expressed in range of
18043 [0-360].
18044
18045 @item YDIF
18046 Display the average of sample value difference between all values of the Y
18047 plane in the current frame and corresponding values of the previous input frame.
18048 Expressed in range of [0-255].
18049
18050 @item UDIF
18051 Display the average of sample value difference between all values of the U
18052 plane in the current frame and corresponding values of the previous input frame.
18053 Expressed in range of [0-255].
18054
18055 @item VDIF
18056 Display the average of sample value difference between all values of the V
18057 plane in the current frame and corresponding values of the previous input frame.
18058 Expressed in range of [0-255].
18059
18060 @item YBITDEPTH
18061 Display bit depth of Y plane in current frame.
18062 Expressed in range of [0-16].
18063
18064 @item UBITDEPTH
18065 Display bit depth of U plane in current frame.
18066 Expressed in range of [0-16].
18067
18068 @item VBITDEPTH
18069 Display bit depth of V plane in current frame.
18070 Expressed in range of [0-16].
18071 @end table
18072
18073 The filter accepts the following options:
18074
18075 @table @option
18076 @item stat
18077 @item out
18078
18079 @option{stat} specify an additional form of image analysis.
18080 @option{out} output video with the specified type of pixel highlighted.
18081
18082 Both options accept the following values:
18083
18084 @table @samp
18085 @item tout
18086 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
18087 unlike the neighboring pixels of the same field. Examples of temporal outliers
18088 include the results of video dropouts, head clogs, or tape tracking issues.
18089
18090 @item vrep
18091 Identify @var{vertical line repetition}. Vertical line repetition includes
18092 similar rows of pixels within a frame. In born-digital video vertical line
18093 repetition is common, but this pattern is uncommon in video digitized from an
18094 analog source. When it occurs in video that results from the digitization of an
18095 analog source it can indicate concealment from a dropout compensator.
18096
18097 @item brng
18098 Identify pixels that fall outside of legal broadcast range.
18099 @end table
18100
18101 @item color, c
18102 Set the highlight color for the @option{out} option. The default color is
18103 yellow.
18104 @end table
18105
18106 @subsection Examples
18107
18108 @itemize
18109 @item
18110 Output data of various video metrics:
18111 @example
18112 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
18113 @end example
18114
18115 @item
18116 Output specific data about the minimum and maximum values of the Y plane per frame:
18117 @example
18118 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
18119 @end example
18120
18121 @item
18122 Playback video while highlighting pixels that are outside of broadcast range in red.
18123 @example
18124 ffplay example.mov -vf signalstats="out=brng:color=red"
18125 @end example
18126
18127 @item
18128 Playback video with signalstats metadata drawn over the frame.
18129 @example
18130 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
18131 @end example
18132
18133 The contents of signalstat_drawtext.txt used in the command are:
18134 @example
18135 time %@{pts:hms@}
18136 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
18137 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
18138 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
18139 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
18140
18141 @end example
18142 @end itemize
18143
18144 @anchor{signature}
18145 @section signature
18146
18147 Calculates the MPEG-7 Video Signature. The filter can handle more than one
18148 input. In this case the matching between the inputs can be calculated additionally.
18149 The filter always passes through the first input. The signature of each stream can
18150 be written into a file.
18151
18152 It accepts the following options:
18153
18154 @table @option
18155 @item detectmode
18156 Enable or disable the matching process.
18157
18158 Available values are:
18159
18160 @table @samp
18161 @item off
18162 Disable the calculation of a matching (default).
18163 @item full
18164 Calculate the matching for the whole video and output whether the whole video
18165 matches or only parts.
18166 @item fast
18167 Calculate only until a matching is found or the video ends. Should be faster in
18168 some cases.
18169 @end table
18170
18171 @item nb_inputs
18172 Set the number of inputs. The option value must be a non negative integer.
18173 Default value is 1.
18174
18175 @item filename
18176 Set the path to which the output is written. If there is more than one input,
18177 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
18178 integer), that will be replaced with the input number. If no filename is
18179 specified, no output will be written. This is the default.
18180
18181 @item format
18182 Choose the output format.
18183
18184 Available values are:
18185
18186 @table @samp
18187 @item binary
18188 Use the specified binary representation (default).
18189 @item xml
18190 Use the specified xml representation.
18191 @end table
18192
18193 @item th_d
18194 Set threshold to detect one word as similar. The option value must be an integer
18195 greater than zero. The default value is 9000.
18196
18197 @item th_dc
18198 Set threshold to detect all words as similar. The option value must be an integer
18199 greater than zero. The default value is 60000.
18200
18201 @item th_xh
18202 Set threshold to detect frames as similar. The option value must be an integer
18203 greater than zero. The default value is 116.
18204
18205 @item th_di
18206 Set the minimum length of a sequence in frames to recognize it as matching
18207 sequence. The option value must be a non negative integer value.
18208 The default value is 0.
18209
18210 @item th_it
18211 Set the minimum relation, that matching frames to all frames must have.
18212 The option value must be a double value between 0 and 1. The default value is 0.5.
18213 @end table
18214
18215 @subsection Examples
18216
18217 @itemize
18218 @item
18219 To calculate the signature of an input video and store it in signature.bin:
18220 @example
18221 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
18222 @end example
18223
18224 @item
18225 To detect whether two videos match and store the signatures in XML format in
18226 signature0.xml and signature1.xml:
18227 @example
18228 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 -
18229 @end example
18230
18231 @end itemize
18232
18233 @anchor{smartblur}
18234 @section smartblur
18235
18236 Blur the input video without impacting the outlines.
18237
18238 It accepts the following options:
18239
18240 @table @option
18241 @item luma_radius, lr
18242 Set the luma radius. The option value must be a float number in
18243 the range [0.1,5.0] that specifies the variance of the gaussian filter
18244 used to blur the image (slower if larger). Default value is 1.0.
18245
18246 @item luma_strength, ls
18247 Set the luma strength. The option value must be a float number
18248 in the range [-1.0,1.0] that configures the blurring. A value included
18249 in [0.0,1.0] will blur the image whereas a value included in
18250 [-1.0,0.0] will sharpen the image. Default value is 1.0.
18251
18252 @item luma_threshold, lt
18253 Set the luma threshold used as a coefficient to determine
18254 whether a pixel should be blurred or not. The option value must be an
18255 integer in the range [-30,30]. A value of 0 will filter all the image,
18256 a value included in [0,30] will filter flat areas and a value included
18257 in [-30,0] will filter edges. Default value is 0.
18258
18259 @item chroma_radius, cr
18260 Set the chroma radius. The option value must be a float number in
18261 the range [0.1,5.0] that specifies the variance of the gaussian filter
18262 used to blur the image (slower if larger). Default value is @option{luma_radius}.
18263
18264 @item chroma_strength, cs
18265 Set the chroma strength. The option value must be a float number
18266 in the range [-1.0,1.0] that configures the blurring. A value included
18267 in [0.0,1.0] will blur the image whereas a value included in
18268 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
18269
18270 @item chroma_threshold, ct
18271 Set the chroma threshold used as a coefficient to determine
18272 whether a pixel should be blurred or not. The option value must be an
18273 integer in the range [-30,30]. A value of 0 will filter all the image,
18274 a value included in [0,30] will filter flat areas and a value included
18275 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
18276 @end table
18277
18278 If a chroma option is not explicitly set, the corresponding luma value
18279 is set.
18280
18281 @section sobel
18282 Apply sobel operator to input video stream.
18283
18284 The filter accepts the following option:
18285
18286 @table @option
18287 @item planes
18288 Set which planes will be processed, unprocessed planes will be copied.
18289 By default value 0xf, all planes will be processed.
18290
18291 @item scale
18292 Set value which will be multiplied with filtered result.
18293
18294 @item delta
18295 Set value which will be added to filtered result.
18296 @end table
18297
18298 @subsection Commands
18299
18300 This filter supports the all above options as @ref{commands}.
18301
18302 @anchor{spp}
18303 @section spp
18304
18305 Apply a simple postprocessing filter that compresses and decompresses the image
18306 at several (or - in the case of @option{quality} level @code{6} - all) shifts
18307 and average the results.
18308
18309 The filter accepts the following options:
18310
18311 @table @option
18312 @item quality
18313 Set quality. This option defines the number of levels for averaging. It accepts
18314 an integer in the range 0-6. If set to @code{0}, the filter will have no
18315 effect. A value of @code{6} means the higher quality. For each increment of
18316 that value the speed drops by a factor of approximately 2.  Default value is
18317 @code{3}.
18318
18319 @item qp
18320 Force a constant quantization parameter. If not set, the filter will use the QP
18321 from the video stream (if available).
18322
18323 @item mode
18324 Set thresholding mode. Available modes are:
18325
18326 @table @samp
18327 @item hard
18328 Set hard thresholding (default).
18329 @item soft
18330 Set soft thresholding (better de-ringing effect, but likely blurrier).
18331 @end table
18332
18333 @item use_bframe_qp
18334 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
18335 option may cause flicker since the B-Frames have often larger QP. Default is
18336 @code{0} (not enabled).
18337 @end table
18338
18339 @subsection Commands
18340
18341 This filter supports the following commands:
18342 @table @option
18343 @item quality, level
18344 Set quality level. The value @code{max} can be used to set the maximum level,
18345 currently @code{6}.
18346 @end table
18347
18348 @anchor{sr}
18349 @section sr
18350
18351 Scale the input by applying one of the super-resolution methods based on
18352 convolutional neural networks. Supported models:
18353
18354 @itemize
18355 @item
18356 Super-Resolution Convolutional Neural Network model (SRCNN).
18357 See @url{https://arxiv.org/abs/1501.00092}.
18358
18359 @item
18360 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
18361 See @url{https://arxiv.org/abs/1609.05158}.
18362 @end itemize
18363
18364 Training scripts as well as scripts for model file (.pb) saving can be found at
18365 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
18366 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
18367
18368 Native model files (.model) can be generated from TensorFlow model
18369 files (.pb) by using tools/python/convert.py
18370
18371 The filter accepts the following options:
18372
18373 @table @option
18374 @item dnn_backend
18375 Specify which DNN backend to use for model loading and execution. This option accepts
18376 the following values:
18377
18378 @table @samp
18379 @item native
18380 Native implementation of DNN loading and execution.
18381
18382 @item tensorflow
18383 TensorFlow backend. To enable this backend you
18384 need to install the TensorFlow for C library (see
18385 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
18386 @code{--enable-libtensorflow}
18387 @end table
18388
18389 Default value is @samp{native}.
18390
18391 @item model
18392 Set path to model file specifying network architecture and its parameters.
18393 Note that different backends use different file formats. TensorFlow backend
18394 can load files for both formats, while native backend can load files for only
18395 its format.
18396
18397 @item scale_factor
18398 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
18399 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
18400 input upscaled using bicubic upscaling with proper scale factor.
18401 @end table
18402
18403 This feature can also be finished with @ref{dnn_processing} filter.
18404
18405 @section ssim
18406
18407 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
18408
18409 This filter takes in input two input videos, the first input is
18410 considered the "main" source and is passed unchanged to the
18411 output. The second input is used as a "reference" video for computing
18412 the SSIM.
18413
18414 Both video inputs must have the same resolution and pixel format for
18415 this filter to work correctly. Also it assumes that both inputs
18416 have the same number of frames, which are compared one by one.
18417
18418 The filter stores the calculated SSIM of each frame.
18419
18420 The description of the accepted parameters follows.
18421
18422 @table @option
18423 @item stats_file, f
18424 If specified the filter will use the named file to save the SSIM of
18425 each individual frame. When filename equals "-" the data is sent to
18426 standard output.
18427 @end table
18428
18429 The file printed if @var{stats_file} is selected, contains a sequence of
18430 key/value pairs of the form @var{key}:@var{value} for each compared
18431 couple of frames.
18432
18433 A description of each shown parameter follows:
18434
18435 @table @option
18436 @item n
18437 sequential number of the input frame, starting from 1
18438
18439 @item Y, U, V, R, G, B
18440 SSIM of the compared frames for the component specified by the suffix.
18441
18442 @item All
18443 SSIM of the compared frames for the whole frame.
18444
18445 @item dB
18446 Same as above but in dB representation.
18447 @end table
18448
18449 This filter also supports the @ref{framesync} options.
18450
18451 @subsection Examples
18452 @itemize
18453 @item
18454 For example:
18455 @example
18456 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
18457 [main][ref] ssim="stats_file=stats.log" [out]
18458 @end example
18459
18460 On this example the input file being processed is compared with the
18461 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
18462 is stored in @file{stats.log}.
18463
18464 @item
18465 Another example with both psnr and ssim at same time:
18466 @example
18467 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
18468 @end example
18469
18470 @item
18471 Another example with different containers:
18472 @example
18473 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 -
18474 @end example
18475 @end itemize
18476
18477 @section stereo3d
18478
18479 Convert between different stereoscopic image formats.
18480
18481 The filters accept the following options:
18482
18483 @table @option
18484 @item in
18485 Set stereoscopic image format of input.
18486
18487 Available values for input image formats are:
18488 @table @samp
18489 @item sbsl
18490 side by side parallel (left eye left, right eye right)
18491
18492 @item sbsr
18493 side by side crosseye (right eye left, left eye right)
18494
18495 @item sbs2l
18496 side by side parallel with half width resolution
18497 (left eye left, right eye right)
18498
18499 @item sbs2r
18500 side by side crosseye with half width resolution
18501 (right eye left, left eye right)
18502
18503 @item abl
18504 @item tbl
18505 above-below (left eye above, right eye below)
18506
18507 @item abr
18508 @item tbr
18509 above-below (right eye above, left eye below)
18510
18511 @item ab2l
18512 @item tb2l
18513 above-below with half height resolution
18514 (left eye above, right eye below)
18515
18516 @item ab2r
18517 @item tb2r
18518 above-below with half height resolution
18519 (right eye above, left eye below)
18520
18521 @item al
18522 alternating frames (left eye first, right eye second)
18523
18524 @item ar
18525 alternating frames (right eye first, left eye second)
18526
18527 @item irl
18528 interleaved rows (left eye has top row, right eye starts on next row)
18529
18530 @item irr
18531 interleaved rows (right eye has top row, left eye starts on next row)
18532
18533 @item icl
18534 interleaved columns, left eye first
18535
18536 @item icr
18537 interleaved columns, right eye first
18538
18539 Default value is @samp{sbsl}.
18540 @end table
18541
18542 @item out
18543 Set stereoscopic image format of output.
18544
18545 @table @samp
18546 @item sbsl
18547 side by side parallel (left eye left, right eye right)
18548
18549 @item sbsr
18550 side by side crosseye (right eye left, left eye right)
18551
18552 @item sbs2l
18553 side by side parallel with half width resolution
18554 (left eye left, right eye right)
18555
18556 @item sbs2r
18557 side by side crosseye with half width resolution
18558 (right eye left, left eye right)
18559
18560 @item abl
18561 @item tbl
18562 above-below (left eye above, right eye below)
18563
18564 @item abr
18565 @item tbr
18566 above-below (right eye above, left eye below)
18567
18568 @item ab2l
18569 @item tb2l
18570 above-below with half height resolution
18571 (left eye above, right eye below)
18572
18573 @item ab2r
18574 @item tb2r
18575 above-below with half height resolution
18576 (right eye above, left eye below)
18577
18578 @item al
18579 alternating frames (left eye first, right eye second)
18580
18581 @item ar
18582 alternating frames (right eye first, left eye second)
18583
18584 @item irl
18585 interleaved rows (left eye has top row, right eye starts on next row)
18586
18587 @item irr
18588 interleaved rows (right eye has top row, left eye starts on next row)
18589
18590 @item arbg
18591 anaglyph red/blue gray
18592 (red filter on left eye, blue filter on right eye)
18593
18594 @item argg
18595 anaglyph red/green gray
18596 (red filter on left eye, green filter on right eye)
18597
18598 @item arcg
18599 anaglyph red/cyan gray
18600 (red filter on left eye, cyan filter on right eye)
18601
18602 @item arch
18603 anaglyph red/cyan half colored
18604 (red filter on left eye, cyan filter on right eye)
18605
18606 @item arcc
18607 anaglyph red/cyan color
18608 (red filter on left eye, cyan filter on right eye)
18609
18610 @item arcd
18611 anaglyph red/cyan color optimized with the least squares projection of dubois
18612 (red filter on left eye, cyan filter on right eye)
18613
18614 @item agmg
18615 anaglyph green/magenta gray
18616 (green filter on left eye, magenta filter on right eye)
18617
18618 @item agmh
18619 anaglyph green/magenta half colored
18620 (green filter on left eye, magenta filter on right eye)
18621
18622 @item agmc
18623 anaglyph green/magenta colored
18624 (green filter on left eye, magenta filter on right eye)
18625
18626 @item agmd
18627 anaglyph green/magenta color optimized with the least squares projection of dubois
18628 (green filter on left eye, magenta filter on right eye)
18629
18630 @item aybg
18631 anaglyph yellow/blue gray
18632 (yellow filter on left eye, blue filter on right eye)
18633
18634 @item aybh
18635 anaglyph yellow/blue half colored
18636 (yellow filter on left eye, blue filter on right eye)
18637
18638 @item aybc
18639 anaglyph yellow/blue colored
18640 (yellow filter on left eye, blue filter on right eye)
18641
18642 @item aybd
18643 anaglyph yellow/blue color optimized with the least squares projection of dubois
18644 (yellow filter on left eye, blue filter on right eye)
18645
18646 @item ml
18647 mono output (left eye only)
18648
18649 @item mr
18650 mono output (right eye only)
18651
18652 @item chl
18653 checkerboard, left eye first
18654
18655 @item chr
18656 checkerboard, right eye first
18657
18658 @item icl
18659 interleaved columns, left eye first
18660
18661 @item icr
18662 interleaved columns, right eye first
18663
18664 @item hdmi
18665 HDMI frame pack
18666 @end table
18667
18668 Default value is @samp{arcd}.
18669 @end table
18670
18671 @subsection Examples
18672
18673 @itemize
18674 @item
18675 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
18676 @example
18677 stereo3d=sbsl:aybd
18678 @end example
18679
18680 @item
18681 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
18682 @example
18683 stereo3d=abl:sbsr
18684 @end example
18685 @end itemize
18686
18687 @section streamselect, astreamselect
18688 Select video or audio streams.
18689
18690 The filter accepts the following options:
18691
18692 @table @option
18693 @item inputs
18694 Set number of inputs. Default is 2.
18695
18696 @item map
18697 Set input indexes to remap to outputs.
18698 @end table
18699
18700 @subsection Commands
18701
18702 The @code{streamselect} and @code{astreamselect} filter supports the following
18703 commands:
18704
18705 @table @option
18706 @item map
18707 Set input indexes to remap to outputs.
18708 @end table
18709
18710 @subsection Examples
18711
18712 @itemize
18713 @item
18714 Select first 5 seconds 1st stream and rest of time 2nd stream:
18715 @example
18716 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
18717 @end example
18718
18719 @item
18720 Same as above, but for audio:
18721 @example
18722 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
18723 @end example
18724 @end itemize
18725
18726 @anchor{subtitles}
18727 @section subtitles
18728
18729 Draw subtitles on top of input video using the libass library.
18730
18731 To enable compilation of this filter you need to configure FFmpeg with
18732 @code{--enable-libass}. This filter also requires a build with libavcodec and
18733 libavformat to convert the passed subtitles file to ASS (Advanced Substation
18734 Alpha) subtitles format.
18735
18736 The filter accepts the following options:
18737
18738 @table @option
18739 @item filename, f
18740 Set the filename of the subtitle file to read. It must be specified.
18741
18742 @item original_size
18743 Specify the size of the original video, the video for which the ASS file
18744 was composed. For the syntax of this option, check the
18745 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18746 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
18747 correctly scale the fonts if the aspect ratio has been changed.
18748
18749 @item fontsdir
18750 Set a directory path containing fonts that can be used by the filter.
18751 These fonts will be used in addition to whatever the font provider uses.
18752
18753 @item alpha
18754 Process alpha channel, by default alpha channel is untouched.
18755
18756 @item charenc
18757 Set subtitles input character encoding. @code{subtitles} filter only. Only
18758 useful if not UTF-8.
18759
18760 @item stream_index, si
18761 Set subtitles stream index. @code{subtitles} filter only.
18762
18763 @item force_style
18764 Override default style or script info parameters of the subtitles. It accepts a
18765 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
18766 @end table
18767
18768 If the first key is not specified, it is assumed that the first value
18769 specifies the @option{filename}.
18770
18771 For example, to render the file @file{sub.srt} on top of the input
18772 video, use the command:
18773 @example
18774 subtitles=sub.srt
18775 @end example
18776
18777 which is equivalent to:
18778 @example
18779 subtitles=filename=sub.srt
18780 @end example
18781
18782 To render the default subtitles stream from file @file{video.mkv}, use:
18783 @example
18784 subtitles=video.mkv
18785 @end example
18786
18787 To render the second subtitles stream from that file, use:
18788 @example
18789 subtitles=video.mkv:si=1
18790 @end example
18791
18792 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
18793 @code{DejaVu Serif}, use:
18794 @example
18795 subtitles=sub.srt:force_style='Fontname=DejaVu Serif,PrimaryColour=&HCCFF0000'
18796 @end example
18797
18798 @section super2xsai
18799
18800 Scale the input by 2x and smooth using the Super2xSaI (Scale and
18801 Interpolate) pixel art scaling algorithm.
18802
18803 Useful for enlarging pixel art images without reducing sharpness.
18804
18805 @section swaprect
18806
18807 Swap two rectangular objects in video.
18808
18809 This filter accepts the following options:
18810
18811 @table @option
18812 @item w
18813 Set object width.
18814
18815 @item h
18816 Set object height.
18817
18818 @item x1
18819 Set 1st rect x coordinate.
18820
18821 @item y1
18822 Set 1st rect y coordinate.
18823
18824 @item x2
18825 Set 2nd rect x coordinate.
18826
18827 @item y2
18828 Set 2nd rect y coordinate.
18829
18830 All expressions are evaluated once for each frame.
18831 @end table
18832
18833 The all options are expressions containing the following constants:
18834
18835 @table @option
18836 @item w
18837 @item h
18838 The input width and height.
18839
18840 @item a
18841 same as @var{w} / @var{h}
18842
18843 @item sar
18844 input sample aspect ratio
18845
18846 @item dar
18847 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
18848
18849 @item n
18850 The number of the input frame, starting from 0.
18851
18852 @item t
18853 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
18854
18855 @item pos
18856 the position in the file of the input frame, NAN if unknown
18857 @end table
18858
18859 @section swapuv
18860 Swap U & V plane.
18861
18862 @section tblend
18863 Blend successive video frames.
18864
18865 See @ref{blend}
18866
18867 @section telecine
18868
18869 Apply telecine process to the video.
18870
18871 This filter accepts the following options:
18872
18873 @table @option
18874 @item first_field
18875 @table @samp
18876 @item top, t
18877 top field first
18878 @item bottom, b
18879 bottom field first
18880 The default value is @code{top}.
18881 @end table
18882
18883 @item pattern
18884 A string of numbers representing the pulldown pattern you wish to apply.
18885 The default value is @code{23}.
18886 @end table
18887
18888 @example
18889 Some typical patterns:
18890
18891 NTSC output (30i):
18892 27.5p: 32222
18893 24p: 23 (classic)
18894 24p: 2332 (preferred)
18895 20p: 33
18896 18p: 334
18897 16p: 3444
18898
18899 PAL output (25i):
18900 27.5p: 12222
18901 24p: 222222222223 ("Euro pulldown")
18902 16.67p: 33
18903 16p: 33333334
18904 @end example
18905
18906 @section thistogram
18907
18908 Compute and draw a color distribution histogram for the input video across time.
18909
18910 Unlike @ref{histogram} video filter which only shows histogram of single input frame
18911 at certain time, this filter shows also past histograms of number of frames defined
18912 by @code{width} option.
18913
18914 The computed histogram is a representation of the color component
18915 distribution in an image.
18916
18917 The filter accepts the following options:
18918
18919 @table @option
18920 @item width, w
18921 Set width of single color component output. Default value is @code{0}.
18922 Value of @code{0} means width will be picked from input video.
18923 This also set number of passed histograms to keep.
18924 Allowed range is [0, 8192].
18925
18926 @item display_mode, d
18927 Set display mode.
18928 It accepts the following values:
18929 @table @samp
18930 @item stack
18931 Per color component graphs are placed below each other.
18932
18933 @item parade
18934 Per color component graphs are placed side by side.
18935
18936 @item overlay
18937 Presents information identical to that in the @code{parade}, except
18938 that the graphs representing color components are superimposed directly
18939 over one another.
18940 @end table
18941 Default is @code{stack}.
18942
18943 @item levels_mode, m
18944 Set mode. Can be either @code{linear}, or @code{logarithmic}.
18945 Default is @code{linear}.
18946
18947 @item components, c
18948 Set what color components to display.
18949 Default is @code{7}.
18950
18951 @item bgopacity, b
18952 Set background opacity. Default is @code{0.9}.
18953
18954 @item envelope, e
18955 Show envelope. Default is disabled.
18956
18957 @item ecolor, ec
18958 Set envelope color. Default is @code{gold}.
18959
18960 @item slide
18961 Set slide mode.
18962
18963 Available values for slide is:
18964 @table @samp
18965 @item frame
18966 Draw new frame when right border is reached.
18967
18968 @item replace
18969 Replace old columns with new ones.
18970
18971 @item scroll
18972 Scroll from right to left.
18973
18974 @item rscroll
18975 Scroll from left to right.
18976
18977 @item picture
18978 Draw single picture.
18979 @end table
18980
18981 Default is @code{replace}.
18982 @end table
18983
18984 @section threshold
18985
18986 Apply threshold effect to video stream.
18987
18988 This filter needs four video streams to perform thresholding.
18989 First stream is stream we are filtering.
18990 Second stream is holding threshold values, third stream is holding min values,
18991 and last, fourth stream is holding max values.
18992
18993 The filter accepts the following option:
18994
18995 @table @option
18996 @item planes
18997 Set which planes will be processed, unprocessed planes will be copied.
18998 By default value 0xf, all planes will be processed.
18999 @end table
19000
19001 For example if first stream pixel's component value is less then threshold value
19002 of pixel component from 2nd threshold stream, third stream value will picked,
19003 otherwise fourth stream pixel component value will be picked.
19004
19005 Using color source filter one can perform various types of thresholding:
19006
19007 @subsection Examples
19008
19009 @itemize
19010 @item
19011 Binary threshold, using gray color as threshold:
19012 @example
19013 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
19014 @end example
19015
19016 @item
19017 Inverted binary threshold, using gray color as threshold:
19018 @example
19019 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
19020 @end example
19021
19022 @item
19023 Truncate binary threshold, using gray color as threshold:
19024 @example
19025 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
19026 @end example
19027
19028 @item
19029 Threshold to zero, using gray color as threshold:
19030 @example
19031 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
19032 @end example
19033
19034 @item
19035 Inverted threshold to zero, using gray color as threshold:
19036 @example
19037 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
19038 @end example
19039 @end itemize
19040
19041 @section thumbnail
19042 Select the most representative frame in a given sequence of consecutive frames.
19043
19044 The filter accepts the following options:
19045
19046 @table @option
19047 @item n
19048 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
19049 will pick one of them, and then handle the next batch of @var{n} frames until
19050 the end. Default is @code{100}.
19051 @end table
19052
19053 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
19054 value will result in a higher memory usage, so a high value is not recommended.
19055
19056 @subsection Examples
19057
19058 @itemize
19059 @item
19060 Extract one picture each 50 frames:
19061 @example
19062 thumbnail=50
19063 @end example
19064
19065 @item
19066 Complete example of a thumbnail creation with @command{ffmpeg}:
19067 @example
19068 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
19069 @end example
19070 @end itemize
19071
19072 @anchor{tile}
19073 @section tile
19074
19075 Tile several successive frames together.
19076
19077 The @ref{untile} filter can do the reverse.
19078
19079 The filter accepts the following options:
19080
19081 @table @option
19082
19083 @item layout
19084 Set the grid size (i.e. the number of lines and columns). For the syntax of
19085 this option, check the
19086 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19087
19088 @item nb_frames
19089 Set the maximum number of frames to render in the given area. It must be less
19090 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
19091 the area will be used.
19092
19093 @item margin
19094 Set the outer border margin in pixels.
19095
19096 @item padding
19097 Set the inner border thickness (i.e. the number of pixels between frames). For
19098 more advanced padding options (such as having different values for the edges),
19099 refer to the pad video filter.
19100
19101 @item color
19102 Specify the color of the unused area. For the syntax of this option, check the
19103 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
19104 The default value of @var{color} is "black".
19105
19106 @item overlap
19107 Set the number of frames to overlap when tiling several successive frames together.
19108 The value must be between @code{0} and @var{nb_frames - 1}.
19109
19110 @item init_padding
19111 Set the number of frames to initially be empty before displaying first output frame.
19112 This controls how soon will one get first output frame.
19113 The value must be between @code{0} and @var{nb_frames - 1}.
19114 @end table
19115
19116 @subsection Examples
19117
19118 @itemize
19119 @item
19120 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
19121 @example
19122 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
19123 @end example
19124 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
19125 duplicating each output frame to accommodate the originally detected frame
19126 rate.
19127
19128 @item
19129 Display @code{5} pictures in an area of @code{3x2} frames,
19130 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
19131 mixed flat and named options:
19132 @example
19133 tile=3x2:nb_frames=5:padding=7:margin=2
19134 @end example
19135 @end itemize
19136
19137 @section tinterlace
19138
19139 Perform various types of temporal field interlacing.
19140
19141 Frames are counted starting from 1, so the first input frame is
19142 considered odd.
19143
19144 The filter accepts the following options:
19145
19146 @table @option
19147
19148 @item mode
19149 Specify the mode of the interlacing. This option can also be specified
19150 as a value alone. See below for a list of values for this option.
19151
19152 Available values are:
19153
19154 @table @samp
19155 @item merge, 0
19156 Move odd frames into the upper field, even into the lower field,
19157 generating a double height frame at half frame rate.
19158 @example
19159  ------> time
19160 Input:
19161 Frame 1         Frame 2         Frame 3         Frame 4
19162
19163 11111           22222           33333           44444
19164 11111           22222           33333           44444
19165 11111           22222           33333           44444
19166 11111           22222           33333           44444
19167
19168 Output:
19169 11111                           33333
19170 22222                           44444
19171 11111                           33333
19172 22222                           44444
19173 11111                           33333
19174 22222                           44444
19175 11111                           33333
19176 22222                           44444
19177 @end example
19178
19179 @item drop_even, 1
19180 Only output odd frames, even frames are dropped, generating a frame with
19181 unchanged height at half frame rate.
19182
19183 @example
19184  ------> time
19185 Input:
19186 Frame 1         Frame 2         Frame 3         Frame 4
19187
19188 11111           22222           33333           44444
19189 11111           22222           33333           44444
19190 11111           22222           33333           44444
19191 11111           22222           33333           44444
19192
19193 Output:
19194 11111                           33333
19195 11111                           33333
19196 11111                           33333
19197 11111                           33333
19198 @end example
19199
19200 @item drop_odd, 2
19201 Only output even frames, odd frames are dropped, generating a frame with
19202 unchanged height at half frame rate.
19203
19204 @example
19205  ------> time
19206 Input:
19207 Frame 1         Frame 2         Frame 3         Frame 4
19208
19209 11111           22222           33333           44444
19210 11111           22222           33333           44444
19211 11111           22222           33333           44444
19212 11111           22222           33333           44444
19213
19214 Output:
19215                 22222                           44444
19216                 22222                           44444
19217                 22222                           44444
19218                 22222                           44444
19219 @end example
19220
19221 @item pad, 3
19222 Expand each frame to full height, but pad alternate lines with black,
19223 generating a frame with double height at the same input frame rate.
19224
19225 @example
19226  ------> time
19227 Input:
19228 Frame 1         Frame 2         Frame 3         Frame 4
19229
19230 11111           22222           33333           44444
19231 11111           22222           33333           44444
19232 11111           22222           33333           44444
19233 11111           22222           33333           44444
19234
19235 Output:
19236 11111           .....           33333           .....
19237 .....           22222           .....           44444
19238 11111           .....           33333           .....
19239 .....           22222           .....           44444
19240 11111           .....           33333           .....
19241 .....           22222           .....           44444
19242 11111           .....           33333           .....
19243 .....           22222           .....           44444
19244 @end example
19245
19246
19247 @item interleave_top, 4
19248 Interleave the upper field from odd frames with the lower field from
19249 even frames, generating a frame with unchanged height at half frame rate.
19250
19251 @example
19252  ------> time
19253 Input:
19254 Frame 1         Frame 2         Frame 3         Frame 4
19255
19256 11111<-         22222           33333<-         44444
19257 11111           22222<-         33333           44444<-
19258 11111<-         22222           33333<-         44444
19259 11111           22222<-         33333           44444<-
19260
19261 Output:
19262 11111                           33333
19263 22222                           44444
19264 11111                           33333
19265 22222                           44444
19266 @end example
19267
19268
19269 @item interleave_bottom, 5
19270 Interleave the lower field from odd frames with the upper field from
19271 even frames, generating a frame with unchanged height at half frame rate.
19272
19273 @example
19274  ------> time
19275 Input:
19276 Frame 1         Frame 2         Frame 3         Frame 4
19277
19278 11111           22222<-         33333           44444<-
19279 11111<-         22222           33333<-         44444
19280 11111           22222<-         33333           44444<-
19281 11111<-         22222           33333<-         44444
19282
19283 Output:
19284 22222                           44444
19285 11111                           33333
19286 22222                           44444
19287 11111                           33333
19288 @end example
19289
19290
19291 @item interlacex2, 6
19292 Double frame rate with unchanged height. Frames are inserted each
19293 containing the second temporal field from the previous input frame and
19294 the first temporal field from the next input frame. This mode relies on
19295 the top_field_first flag. Useful for interlaced video displays with no
19296 field synchronisation.
19297
19298 @example
19299  ------> time
19300 Input:
19301 Frame 1         Frame 2         Frame 3         Frame 4
19302
19303 11111           22222           33333           44444
19304  11111           22222           33333           44444
19305 11111           22222           33333           44444
19306  11111           22222           33333           44444
19307
19308 Output:
19309 11111   22222   22222   33333   33333   44444   44444
19310  11111   11111   22222   22222   33333   33333   44444
19311 11111   22222   22222   33333   33333   44444   44444
19312  11111   11111   22222   22222   33333   33333   44444
19313 @end example
19314
19315
19316 @item mergex2, 7
19317 Move odd frames into the upper field, even into the lower field,
19318 generating a double height frame at same frame rate.
19319
19320 @example
19321  ------> time
19322 Input:
19323 Frame 1         Frame 2         Frame 3         Frame 4
19324
19325 11111           22222           33333           44444
19326 11111           22222           33333           44444
19327 11111           22222           33333           44444
19328 11111           22222           33333           44444
19329
19330 Output:
19331 11111           33333           33333           55555
19332 22222           22222           44444           44444
19333 11111           33333           33333           55555
19334 22222           22222           44444           44444
19335 11111           33333           33333           55555
19336 22222           22222           44444           44444
19337 11111           33333           33333           55555
19338 22222           22222           44444           44444
19339 @end example
19340
19341 @end table
19342
19343 Numeric values are deprecated but are accepted for backward
19344 compatibility reasons.
19345
19346 Default mode is @code{merge}.
19347
19348 @item flags
19349 Specify flags influencing the filter process.
19350
19351 Available value for @var{flags} is:
19352
19353 @table @option
19354 @item low_pass_filter, vlpf
19355 Enable linear vertical low-pass filtering in the filter.
19356 Vertical low-pass filtering is required when creating an interlaced
19357 destination from a progressive source which contains high-frequency
19358 vertical detail. Filtering will reduce interlace 'twitter' and Moire
19359 patterning.
19360
19361 @item complex_filter, cvlpf
19362 Enable complex vertical low-pass filtering.
19363 This will slightly less reduce interlace 'twitter' and Moire
19364 patterning but better retain detail and subjective sharpness impression.
19365
19366 @item bypass_il
19367 Bypass already interlaced frames, only adjust the frame rate.
19368 @end table
19369
19370 Vertical low-pass filtering and bypassing already interlaced frames can only be
19371 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
19372
19373 @end table
19374
19375 @section tmedian
19376 Pick median pixels from several successive input video frames.
19377
19378 The filter accepts the following options:
19379
19380 @table @option
19381 @item radius
19382 Set radius of median filter.
19383 Default is 1. Allowed range is from 1 to 127.
19384
19385 @item planes
19386 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19387
19388 @item percentile
19389 Set median percentile. Default value is @code{0.5}.
19390 Default value of @code{0.5} will pick always median values, while @code{0} will pick
19391 minimum values, and @code{1} maximum values.
19392 @end table
19393
19394 @subsection Commands
19395
19396 This filter supports all above options as @ref{commands}, excluding option @code{radius}.
19397
19398 @section tmidequalizer
19399
19400 Apply Temporal Midway Video Equalization effect.
19401
19402 Midway Video Equalization adjusts a sequence of video frames to have the same
19403 histograms, while maintaining their dynamics as much as possible. It's
19404 useful for e.g. matching exposures from a video frames sequence.
19405
19406 This filter accepts the following option:
19407
19408 @table @option
19409 @item radius
19410 Set filtering radius. Default is @code{5}. Allowed range is from 1 to 127.
19411
19412 @item sigma
19413 Set filtering sigma. Default is @code{0.5}. This controls strength of filtering.
19414 Setting this option to 0 effectively does nothing.
19415
19416 @item planes
19417 Set which planes to process. Default is @code{15}, which is all available planes.
19418 @end table
19419
19420 @section tmix
19421
19422 Mix successive video frames.
19423
19424 A description of the accepted options follows.
19425
19426 @table @option
19427 @item frames
19428 The number of successive frames to mix. If unspecified, it defaults to 3.
19429
19430 @item weights
19431 Specify weight of each input video frame.
19432 Each weight is separated by space. If number of weights is smaller than
19433 number of @var{frames} last specified weight will be used for all remaining
19434 unset weights.
19435
19436 @item scale
19437 Specify scale, if it is set it will be multiplied with sum
19438 of each weight multiplied with pixel values to give final destination
19439 pixel value. By default @var{scale} is auto scaled to sum of weights.
19440 @end table
19441
19442 @subsection Examples
19443
19444 @itemize
19445 @item
19446 Average 7 successive frames:
19447 @example
19448 tmix=frames=7:weights="1 1 1 1 1 1 1"
19449 @end example
19450
19451 @item
19452 Apply simple temporal convolution:
19453 @example
19454 tmix=frames=3:weights="-1 3 -1"
19455 @end example
19456
19457 @item
19458 Similar as above but only showing temporal differences:
19459 @example
19460 tmix=frames=3:weights="-1 2 -1":scale=1
19461 @end example
19462 @end itemize
19463
19464 @anchor{tonemap}
19465 @section tonemap
19466 Tone map colors from different dynamic ranges.
19467
19468 This filter expects data in single precision floating point, as it needs to
19469 operate on (and can output) out-of-range values. Another filter, such as
19470 @ref{zscale}, is needed to convert the resulting frame to a usable format.
19471
19472 The tonemapping algorithms implemented only work on linear light, so input
19473 data should be linearized beforehand (and possibly correctly tagged).
19474
19475 @example
19476 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
19477 @end example
19478
19479 @subsection Options
19480 The filter accepts the following options.
19481
19482 @table @option
19483 @item tonemap
19484 Set the tone map algorithm to use.
19485
19486 Possible values are:
19487 @table @var
19488 @item none
19489 Do not apply any tone map, only desaturate overbright pixels.
19490
19491 @item clip
19492 Hard-clip any out-of-range values. Use it for perfect color accuracy for
19493 in-range values, while distorting out-of-range values.
19494
19495 @item linear
19496 Stretch the entire reference gamut to a linear multiple of the display.
19497
19498 @item gamma
19499 Fit a logarithmic transfer between the tone curves.
19500
19501 @item reinhard
19502 Preserve overall image brightness with a simple curve, using nonlinear
19503 contrast, which results in flattening details and degrading color accuracy.
19504
19505 @item hable
19506 Preserve both dark and bright details better than @var{reinhard}, at the cost
19507 of slightly darkening everything. Use it when detail preservation is more
19508 important than color and brightness accuracy.
19509
19510 @item mobius
19511 Smoothly map out-of-range values, while retaining contrast and colors for
19512 in-range material as much as possible. Use it when color accuracy is more
19513 important than detail preservation.
19514 @end table
19515
19516 Default is none.
19517
19518 @item param
19519 Tune the tone mapping algorithm.
19520
19521 This affects the following algorithms:
19522 @table @var
19523 @item none
19524 Ignored.
19525
19526 @item linear
19527 Specifies the scale factor to use while stretching.
19528 Default to 1.0.
19529
19530 @item gamma
19531 Specifies the exponent of the function.
19532 Default to 1.8.
19533
19534 @item clip
19535 Specify an extra linear coefficient to multiply into the signal before clipping.
19536 Default to 1.0.
19537
19538 @item reinhard
19539 Specify the local contrast coefficient at the display peak.
19540 Default to 0.5, which means that in-gamut values will be about half as bright
19541 as when clipping.
19542
19543 @item hable
19544 Ignored.
19545
19546 @item mobius
19547 Specify the transition point from linear to mobius transform. Every value
19548 below this point is guaranteed to be mapped 1:1. The higher the value, the
19549 more accurate the result will be, at the cost of losing bright details.
19550 Default to 0.3, which due to the steep initial slope still preserves in-range
19551 colors fairly accurately.
19552 @end table
19553
19554 @item desat
19555 Apply desaturation for highlights that exceed this level of brightness. The
19556 higher the parameter, the more color information will be preserved. This
19557 setting helps prevent unnaturally blown-out colors for super-highlights, by
19558 (smoothly) turning into white instead. This makes images feel more natural,
19559 at the cost of reducing information about out-of-range colors.
19560
19561 The default of 2.0 is somewhat conservative and will mostly just apply to
19562 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
19563
19564 This option works only if the input frame has a supported color tag.
19565
19566 @item peak
19567 Override signal/nominal/reference peak with this value. Useful when the
19568 embedded peak information in display metadata is not reliable or when tone
19569 mapping from a lower range to a higher range.
19570 @end table
19571
19572 @section tpad
19573
19574 Temporarily pad video frames.
19575
19576 The filter accepts the following options:
19577
19578 @table @option
19579 @item start
19580 Specify number of delay frames before input video stream. Default is 0.
19581
19582 @item stop
19583 Specify number of padding frames after input video stream.
19584 Set to -1 to pad indefinitely. Default is 0.
19585
19586 @item start_mode
19587 Set kind of frames added to beginning of stream.
19588 Can be either @var{add} or @var{clone}.
19589 With @var{add} frames of solid-color are added.
19590 With @var{clone} frames are clones of first frame.
19591 Default is @var{add}.
19592
19593 @item stop_mode
19594 Set kind of frames added to end of stream.
19595 Can be either @var{add} or @var{clone}.
19596 With @var{add} frames of solid-color are added.
19597 With @var{clone} frames are clones of last frame.
19598 Default is @var{add}.
19599
19600 @item start_duration, stop_duration
19601 Specify the duration of the start/stop delay. See
19602 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19603 for the accepted syntax.
19604 These options override @var{start} and @var{stop}. Default is 0.
19605
19606 @item color
19607 Specify the color of the padded area. For the syntax of this option,
19608 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
19609 manual,ffmpeg-utils}.
19610
19611 The default value of @var{color} is "black".
19612 @end table
19613
19614 @anchor{transpose}
19615 @section transpose
19616
19617 Transpose rows with columns in the input video and optionally flip it.
19618
19619 It accepts the following parameters:
19620
19621 @table @option
19622
19623 @item dir
19624 Specify the transposition direction.
19625
19626 Can assume the following values:
19627 @table @samp
19628 @item 0, 4, cclock_flip
19629 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
19630 @example
19631 L.R     L.l
19632 . . ->  . .
19633 l.r     R.r
19634 @end example
19635
19636 @item 1, 5, clock
19637 Rotate by 90 degrees clockwise, that is:
19638 @example
19639 L.R     l.L
19640 . . ->  . .
19641 l.r     r.R
19642 @end example
19643
19644 @item 2, 6, cclock
19645 Rotate by 90 degrees counterclockwise, that is:
19646 @example
19647 L.R     R.r
19648 . . ->  . .
19649 l.r     L.l
19650 @end example
19651
19652 @item 3, 7, clock_flip
19653 Rotate by 90 degrees clockwise and vertically flip, that is:
19654 @example
19655 L.R     r.R
19656 . . ->  . .
19657 l.r     l.L
19658 @end example
19659 @end table
19660
19661 For values between 4-7, the transposition is only done if the input
19662 video geometry is portrait and not landscape. These values are
19663 deprecated, the @code{passthrough} option should be used instead.
19664
19665 Numerical values are deprecated, and should be dropped in favor of
19666 symbolic constants.
19667
19668 @item passthrough
19669 Do not apply the transposition if the input geometry matches the one
19670 specified by the specified value. It accepts the following values:
19671 @table @samp
19672 @item none
19673 Always apply transposition.
19674 @item portrait
19675 Preserve portrait geometry (when @var{height} >= @var{width}).
19676 @item landscape
19677 Preserve landscape geometry (when @var{width} >= @var{height}).
19678 @end table
19679
19680 Default value is @code{none}.
19681 @end table
19682
19683 For example to rotate by 90 degrees clockwise and preserve portrait
19684 layout:
19685 @example
19686 transpose=dir=1:passthrough=portrait
19687 @end example
19688
19689 The command above can also be specified as:
19690 @example
19691 transpose=1:portrait
19692 @end example
19693
19694 @section transpose_npp
19695
19696 Transpose rows with columns in the input video and optionally flip it.
19697 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
19698
19699 It accepts the following parameters:
19700
19701 @table @option
19702
19703 @item dir
19704 Specify the transposition direction.
19705
19706 Can assume the following values:
19707 @table @samp
19708 @item cclock_flip
19709 Rotate by 90 degrees counterclockwise and vertically flip. (default)
19710
19711 @item clock
19712 Rotate by 90 degrees clockwise.
19713
19714 @item cclock
19715 Rotate by 90 degrees counterclockwise.
19716
19717 @item clock_flip
19718 Rotate by 90 degrees clockwise and vertically flip.
19719 @end table
19720
19721 @item passthrough
19722 Do not apply the transposition if the input geometry matches the one
19723 specified by the specified value. It accepts the following values:
19724 @table @samp
19725 @item none
19726 Always apply transposition. (default)
19727 @item portrait
19728 Preserve portrait geometry (when @var{height} >= @var{width}).
19729 @item landscape
19730 Preserve landscape geometry (when @var{width} >= @var{height}).
19731 @end table
19732
19733 @end table
19734
19735 @section trim
19736 Trim the input so that the output contains one continuous subpart of the input.
19737
19738 It accepts the following parameters:
19739 @table @option
19740 @item start
19741 Specify the time of the start of the kept section, i.e. the frame with the
19742 timestamp @var{start} will be the first frame in the output.
19743
19744 @item end
19745 Specify the time of the first frame that will be dropped, i.e. the frame
19746 immediately preceding the one with the timestamp @var{end} will be the last
19747 frame in the output.
19748
19749 @item start_pts
19750 This is the same as @var{start}, except this option sets the start timestamp
19751 in timebase units instead of seconds.
19752
19753 @item end_pts
19754 This is the same as @var{end}, except this option sets the end timestamp
19755 in timebase units instead of seconds.
19756
19757 @item duration
19758 The maximum duration of the output in seconds.
19759
19760 @item start_frame
19761 The number of the first frame that should be passed to the output.
19762
19763 @item end_frame
19764 The number of the first frame that should be dropped.
19765 @end table
19766
19767 @option{start}, @option{end}, and @option{duration} are expressed as time
19768 duration specifications; see
19769 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19770 for the accepted syntax.
19771
19772 Note that the first two sets of the start/end options and the @option{duration}
19773 option look at the frame timestamp, while the _frame variants simply count the
19774 frames that pass through the filter. Also note that this filter does not modify
19775 the timestamps. If you wish for the output timestamps to start at zero, insert a
19776 setpts filter after the trim filter.
19777
19778 If multiple start or end options are set, this filter tries to be greedy and
19779 keep all the frames that match at least one of the specified constraints. To keep
19780 only the part that matches all the constraints at once, chain multiple trim
19781 filters.
19782
19783 The defaults are such that all the input is kept. So it is possible to set e.g.
19784 just the end values to keep everything before the specified time.
19785
19786 Examples:
19787 @itemize
19788 @item
19789 Drop everything except the second minute of input:
19790 @example
19791 ffmpeg -i INPUT -vf trim=60:120
19792 @end example
19793
19794 @item
19795 Keep only the first second:
19796 @example
19797 ffmpeg -i INPUT -vf trim=duration=1
19798 @end example
19799
19800 @end itemize
19801
19802 @section unpremultiply
19803 Apply alpha unpremultiply effect to input video stream using first plane
19804 of second stream as alpha.
19805
19806 Both streams must have same dimensions and same pixel format.
19807
19808 The filter accepts the following option:
19809
19810 @table @option
19811 @item planes
19812 Set which planes will be processed, unprocessed planes will be copied.
19813 By default value 0xf, all planes will be processed.
19814
19815 If the format has 1 or 2 components, then luma is bit 0.
19816 If the format has 3 or 4 components:
19817 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
19818 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
19819 If present, the alpha channel is always the last bit.
19820
19821 @item inplace
19822 Do not require 2nd input for processing, instead use alpha plane from input stream.
19823 @end table
19824
19825 @anchor{unsharp}
19826 @section unsharp
19827
19828 Sharpen or blur the input video.
19829
19830 It accepts the following parameters:
19831
19832 @table @option
19833 @item luma_msize_x, lx
19834 Set the luma matrix horizontal size. It must be an odd integer between
19835 3 and 23. The default value is 5.
19836
19837 @item luma_msize_y, ly
19838 Set the luma matrix vertical size. It must be an odd integer between 3
19839 and 23. The default value is 5.
19840
19841 @item luma_amount, la
19842 Set the luma effect strength. It must be a floating point number, reasonable
19843 values lay between -1.5 and 1.5.
19844
19845 Negative values will blur the input video, while positive values will
19846 sharpen it, a value of zero will disable the effect.
19847
19848 Default value is 1.0.
19849
19850 @item chroma_msize_x, cx
19851 Set the chroma matrix horizontal size. It must be an odd integer
19852 between 3 and 23. The default value is 5.
19853
19854 @item chroma_msize_y, cy
19855 Set the chroma matrix vertical size. It must be an odd integer
19856 between 3 and 23. The default value is 5.
19857
19858 @item chroma_amount, ca
19859 Set the chroma effect strength. It must be a floating point number, reasonable
19860 values lay between -1.5 and 1.5.
19861
19862 Negative values will blur the input video, while positive values will
19863 sharpen it, a value of zero will disable the effect.
19864
19865 Default value is 0.0.
19866
19867 @end table
19868
19869 All parameters are optional and default to the equivalent of the
19870 string '5:5:1.0:5:5:0.0'.
19871
19872 @subsection Examples
19873
19874 @itemize
19875 @item
19876 Apply strong luma sharpen effect:
19877 @example
19878 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
19879 @end example
19880
19881 @item
19882 Apply a strong blur of both luma and chroma parameters:
19883 @example
19884 unsharp=7:7:-2:7:7:-2
19885 @end example
19886 @end itemize
19887
19888 @anchor{untile}
19889 @section untile
19890
19891 Decompose a video made of tiled images into the individual images.
19892
19893 The frame rate of the output video is the frame rate of the input video
19894 multiplied by the number of tiles.
19895
19896 This filter does the reverse of @ref{tile}.
19897
19898 The filter accepts the following options:
19899
19900 @table @option
19901
19902 @item layout
19903 Set the grid size (i.e. the number of lines and columns). For the syntax of
19904 this option, check the
19905 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19906 @end table
19907
19908 @subsection Examples
19909
19910 @itemize
19911 @item
19912 Produce a 1-second video from a still image file made of 25 frames stacked
19913 vertically, like an analogic film reel:
19914 @example
19915 ffmpeg -r 1 -i image.jpg -vf untile=1x25 movie.mkv
19916 @end example
19917 @end itemize
19918
19919 @section uspp
19920
19921 Apply ultra slow/simple postprocessing filter that compresses and decompresses
19922 the image at several (or - in the case of @option{quality} level @code{8} - all)
19923 shifts and average the results.
19924
19925 The way this differs from the behavior of spp is that uspp actually encodes &
19926 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
19927 DCT similar to MJPEG.
19928
19929 The filter accepts the following options:
19930
19931 @table @option
19932 @item quality
19933 Set quality. This option defines the number of levels for averaging. It accepts
19934 an integer in the range 0-8. If set to @code{0}, the filter will have no
19935 effect. A value of @code{8} means the higher quality. For each increment of
19936 that value the speed drops by a factor of approximately 2.  Default value is
19937 @code{3}.
19938
19939 @item qp
19940 Force a constant quantization parameter. If not set, the filter will use the QP
19941 from the video stream (if available).
19942 @end table
19943
19944 @section v360
19945
19946 Convert 360 videos between various formats.
19947
19948 The filter accepts the following options:
19949
19950 @table @option
19951
19952 @item input
19953 @item output
19954 Set format of the input/output video.
19955
19956 Available formats:
19957
19958 @table @samp
19959
19960 @item e
19961 @item equirect
19962 Equirectangular projection.
19963
19964 @item c3x2
19965 @item c6x1
19966 @item c1x6
19967 Cubemap with 3x2/6x1/1x6 layout.
19968
19969 Format specific options:
19970
19971 @table @option
19972 @item in_pad
19973 @item out_pad
19974 Set padding proportion for the input/output cubemap. Values in decimals.
19975
19976 Example values:
19977 @table @samp
19978 @item 0
19979 No padding.
19980 @item 0.01
19981 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)
19982 @end table
19983
19984 Default value is @b{@samp{0}}.
19985 Maximum value is @b{@samp{0.1}}.
19986
19987 @item fin_pad
19988 @item fout_pad
19989 Set fixed padding for the input/output cubemap. Values in pixels.
19990
19991 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
19992
19993 @item in_forder
19994 @item out_forder
19995 Set order of faces for the input/output cubemap. Choose one direction for each position.
19996
19997 Designation of directions:
19998 @table @samp
19999 @item r
20000 right
20001 @item l
20002 left
20003 @item u
20004 up
20005 @item d
20006 down
20007 @item f
20008 forward
20009 @item b
20010 back
20011 @end table
20012
20013 Default value is @b{@samp{rludfb}}.
20014
20015 @item in_frot
20016 @item out_frot
20017 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
20018
20019 Designation of angles:
20020 @table @samp
20021 @item 0
20022 0 degrees clockwise
20023 @item 1
20024 90 degrees clockwise
20025 @item 2
20026 180 degrees clockwise
20027 @item 3
20028 270 degrees clockwise
20029 @end table
20030
20031 Default value is @b{@samp{000000}}.
20032 @end table
20033
20034 @item eac
20035 Equi-Angular Cubemap.
20036
20037 @item flat
20038 @item gnomonic
20039 @item rectilinear
20040 Regular video.
20041
20042 Format specific options:
20043 @table @option
20044 @item h_fov
20045 @item v_fov
20046 @item d_fov
20047 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20048
20049 If diagonal field of view is set it overrides horizontal and vertical field of view.
20050
20051 @item ih_fov
20052 @item iv_fov
20053 @item id_fov
20054 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20055
20056 If diagonal field of view is set it overrides horizontal and vertical field of view.
20057 @end table
20058
20059 @item dfisheye
20060 Dual fisheye.
20061
20062 Format specific options:
20063 @table @option
20064 @item h_fov
20065 @item v_fov
20066 @item d_fov
20067 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20068
20069 If diagonal field of view is set it overrides horizontal and vertical field of view.
20070
20071 @item ih_fov
20072 @item iv_fov
20073 @item id_fov
20074 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20075
20076 If diagonal field of view is set it overrides horizontal and vertical field of view.
20077 @end table
20078
20079 @item barrel
20080 @item fb
20081 @item barrelsplit
20082 Facebook's 360 formats.
20083
20084 @item sg
20085 Stereographic format.
20086
20087 Format specific options:
20088 @table @option
20089 @item h_fov
20090 @item v_fov
20091 @item d_fov
20092 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20093
20094 If diagonal field of view is set it overrides horizontal and vertical field of view.
20095
20096 @item ih_fov
20097 @item iv_fov
20098 @item id_fov
20099 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20100
20101 If diagonal field of view is set it overrides horizontal and vertical field of view.
20102 @end table
20103
20104 @item mercator
20105 Mercator format.
20106
20107 @item ball
20108 Ball format, gives significant distortion toward the back.
20109
20110 @item hammer
20111 Hammer-Aitoff map projection format.
20112
20113 @item sinusoidal
20114 Sinusoidal map projection format.
20115
20116 @item fisheye
20117 Fisheye projection.
20118
20119 Format specific options:
20120 @table @option
20121 @item h_fov
20122 @item v_fov
20123 @item d_fov
20124 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20125
20126 If diagonal field of view is set it overrides horizontal and vertical field of view.
20127
20128 @item ih_fov
20129 @item iv_fov
20130 @item id_fov
20131 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20132
20133 If diagonal field of view is set it overrides horizontal and vertical field of view.
20134 @end table
20135
20136 @item pannini
20137 Pannini projection.
20138
20139 Format specific options:
20140 @table @option
20141 @item h_fov
20142 Set output pannini parameter.
20143
20144 @item ih_fov
20145 Set input pannini parameter.
20146 @end table
20147
20148 @item cylindrical
20149 Cylindrical projection.
20150
20151 Format specific options:
20152 @table @option
20153 @item h_fov
20154 @item v_fov
20155 @item d_fov
20156 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20157
20158 If diagonal field of view is set it overrides horizontal and vertical field of view.
20159
20160 @item ih_fov
20161 @item iv_fov
20162 @item id_fov
20163 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20164
20165 If diagonal field of view is set it overrides horizontal and vertical field of view.
20166 @end table
20167
20168 @item perspective
20169 Perspective projection. @i{(output only)}
20170
20171 Format specific options:
20172 @table @option
20173 @item v_fov
20174 Set perspective parameter.
20175 @end table
20176
20177 @item tetrahedron
20178 Tetrahedron projection.
20179
20180 @item tsp
20181 Truncated square pyramid projection.
20182
20183 @item he
20184 @item hequirect
20185 Half equirectangular projection.
20186
20187 @item equisolid
20188 Equisolid format.
20189
20190 Format specific options:
20191 @table @option
20192 @item h_fov
20193 @item v_fov
20194 @item d_fov
20195 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20196
20197 If diagonal field of view is set it overrides horizontal and vertical field of view.
20198
20199 @item ih_fov
20200 @item iv_fov
20201 @item id_fov
20202 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20203
20204 If diagonal field of view is set it overrides horizontal and vertical field of view.
20205 @end table
20206
20207 @item og
20208 Orthographic format.
20209
20210 Format specific options:
20211 @table @option
20212 @item h_fov
20213 @item v_fov
20214 @item d_fov
20215 Set output horizontal/vertical/diagonal field of view. Values in degrees.
20216
20217 If diagonal field of view is set it overrides horizontal and vertical field of view.
20218
20219 @item ih_fov
20220 @item iv_fov
20221 @item id_fov
20222 Set input horizontal/vertical/diagonal field of view. Values in degrees.
20223
20224 If diagonal field of view is set it overrides horizontal and vertical field of view.
20225 @end table
20226
20227 @item octahedron
20228 Octahedron projection.
20229 @end table
20230
20231 @item interp
20232 Set interpolation method.@*
20233 @i{Note: more complex interpolation methods require much more memory to run.}
20234
20235 Available methods:
20236
20237 @table @samp
20238 @item near
20239 @item nearest
20240 Nearest neighbour.
20241 @item line
20242 @item linear
20243 Bilinear interpolation.
20244 @item lagrange9
20245 Lagrange9 interpolation.
20246 @item cube
20247 @item cubic
20248 Bicubic interpolation.
20249 @item lanc
20250 @item lanczos
20251 Lanczos interpolation.
20252 @item sp16
20253 @item spline16
20254 Spline16 interpolation.
20255 @item gauss
20256 @item gaussian
20257 Gaussian interpolation.
20258 @item mitchell
20259 Mitchell interpolation.
20260 @end table
20261
20262 Default value is @b{@samp{line}}.
20263
20264 @item w
20265 @item h
20266 Set the output video resolution.
20267
20268 Default resolution depends on formats.
20269
20270 @item in_stereo
20271 @item out_stereo
20272 Set the input/output stereo format.
20273
20274 @table @samp
20275 @item 2d
20276 2D mono
20277 @item sbs
20278 Side by side
20279 @item tb
20280 Top bottom
20281 @end table
20282
20283 Default value is @b{@samp{2d}} for input and output format.
20284
20285 @item yaw
20286 @item pitch
20287 @item roll
20288 Set rotation for the output video. Values in degrees.
20289
20290 @item rorder
20291 Set rotation order for the output video. Choose one item for each position.
20292
20293 @table @samp
20294 @item y, Y
20295 yaw
20296 @item p, P
20297 pitch
20298 @item r, R
20299 roll
20300 @end table
20301
20302 Default value is @b{@samp{ypr}}.
20303
20304 @item h_flip
20305 @item v_flip
20306 @item d_flip
20307 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
20308
20309 @item ih_flip
20310 @item iv_flip
20311 Set if input video is flipped horizontally/vertically. Boolean values.
20312
20313 @item in_trans
20314 Set if input video is transposed. Boolean value, by default disabled.
20315
20316 @item out_trans
20317 Set if output video needs to be transposed. Boolean value, by default disabled.
20318
20319 @item alpha_mask
20320 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
20321 @end table
20322
20323 @subsection Examples
20324
20325 @itemize
20326 @item
20327 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
20328 @example
20329 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
20330 @end example
20331 @item
20332 Extract back view of Equi-Angular Cubemap:
20333 @example
20334 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
20335 @end example
20336 @item
20337 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
20338 @example
20339 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
20340 @end example
20341 @end itemize
20342
20343 @subsection Commands
20344
20345 This filter supports subset of above options as @ref{commands}.
20346
20347 @section vaguedenoiser
20348
20349 Apply a wavelet based denoiser.
20350
20351 It transforms each frame from the video input into the wavelet domain,
20352 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
20353 the obtained coefficients. It does an inverse wavelet transform after.
20354 Due to wavelet properties, it should give a nice smoothed result, and
20355 reduced noise, without blurring picture features.
20356
20357 This filter accepts the following options:
20358
20359 @table @option
20360 @item threshold
20361 The filtering strength. The higher, the more filtered the video will be.
20362 Hard thresholding can use a higher threshold than soft thresholding
20363 before the video looks overfiltered. Default value is 2.
20364
20365 @item method
20366 The filtering method the filter will use.
20367
20368 It accepts the following values:
20369 @table @samp
20370 @item hard
20371 All values under the threshold will be zeroed.
20372
20373 @item soft
20374 All values under the threshold will be zeroed. All values above will be
20375 reduced by the threshold.
20376
20377 @item garrote
20378 Scales or nullifies coefficients - intermediary between (more) soft and
20379 (less) hard thresholding.
20380 @end table
20381
20382 Default is garrote.
20383
20384 @item nsteps
20385 Number of times, the wavelet will decompose the picture. Picture can't
20386 be decomposed beyond a particular point (typically, 8 for a 640x480
20387 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
20388
20389 @item percent
20390 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
20391
20392 @item planes
20393 A list of the planes to process. By default all planes are processed.
20394
20395 @item type
20396 The threshold type the filter will use.
20397
20398 It accepts the following values:
20399 @table @samp
20400 @item universal
20401 Threshold used is same for all decompositions.
20402
20403 @item bayes
20404 Threshold used depends also on each decomposition coefficients.
20405 @end table
20406
20407 Default is universal.
20408 @end table
20409
20410 @section vectorscope
20411
20412 Display 2 color component values in the two dimensional graph (which is called
20413 a vectorscope).
20414
20415 This filter accepts the following options:
20416
20417 @table @option
20418 @item mode, m
20419 Set vectorscope mode.
20420
20421 It accepts the following values:
20422 @table @samp
20423 @item gray
20424 @item tint
20425 Gray values are displayed on graph, higher brightness means more pixels have
20426 same component color value on location in graph. This is the default mode.
20427
20428 @item color
20429 Gray values are displayed on graph. Surrounding pixels values which are not
20430 present in video frame are drawn in gradient of 2 color components which are
20431 set by option @code{x} and @code{y}. The 3rd color component is static.
20432
20433 @item color2
20434 Actual color components values present in video frame are displayed on graph.
20435
20436 @item color3
20437 Similar as color2 but higher frequency of same values @code{x} and @code{y}
20438 on graph increases value of another color component, which is luminance by
20439 default values of @code{x} and @code{y}.
20440
20441 @item color4
20442 Actual colors present in video frame are displayed on graph. If two different
20443 colors map to same position on graph then color with higher value of component
20444 not present in graph is picked.
20445
20446 @item color5
20447 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
20448 component picked from radial gradient.
20449 @end table
20450
20451 @item x
20452 Set which color component will be represented on X-axis. Default is @code{1}.
20453
20454 @item y
20455 Set which color component will be represented on Y-axis. Default is @code{2}.
20456
20457 @item intensity, i
20458 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
20459 of color component which represents frequency of (X, Y) location in graph.
20460
20461 @item envelope, e
20462 @table @samp
20463 @item none
20464 No envelope, this is default.
20465
20466 @item instant
20467 Instant envelope, even darkest single pixel will be clearly highlighted.
20468
20469 @item peak
20470 Hold maximum and minimum values presented in graph over time. This way you
20471 can still spot out of range values without constantly looking at vectorscope.
20472
20473 @item peak+instant
20474 Peak and instant envelope combined together.
20475 @end table
20476
20477 @item graticule, g
20478 Set what kind of graticule to draw.
20479 @table @samp
20480 @item none
20481 @item green
20482 @item color
20483 @item invert
20484 @end table
20485
20486 @item opacity, o
20487 Set graticule opacity.
20488
20489 @item flags, f
20490 Set graticule flags.
20491
20492 @table @samp
20493 @item white
20494 Draw graticule for white point.
20495
20496 @item black
20497 Draw graticule for black point.
20498
20499 @item name
20500 Draw color points short names.
20501 @end table
20502
20503 @item bgopacity, b
20504 Set background opacity.
20505
20506 @item lthreshold, l
20507 Set low threshold for color component not represented on X or Y axis.
20508 Values lower than this value will be ignored. Default is 0.
20509 Note this value is multiplied with actual max possible value one pixel component
20510 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
20511 is 0.1 * 255 = 25.
20512
20513 @item hthreshold, h
20514 Set high threshold for color component not represented on X or Y axis.
20515 Values higher than this value will be ignored. Default is 1.
20516 Note this value is multiplied with actual max possible value one pixel component
20517 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
20518 is 0.9 * 255 = 230.
20519
20520 @item colorspace, c
20521 Set what kind of colorspace to use when drawing graticule.
20522 @table @samp
20523 @item auto
20524 @item 601
20525 @item 709
20526 @end table
20527 Default is auto.
20528
20529 @item tint0, t0
20530 @item tint1, t1
20531 Set color tint for gray/tint vectorscope mode. By default both options are zero.
20532 This means no tint, and output will remain gray.
20533 @end table
20534
20535 @anchor{vidstabdetect}
20536 @section vidstabdetect
20537
20538 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
20539 @ref{vidstabtransform} for pass 2.
20540
20541 This filter generates a file with relative translation and rotation
20542 transform information about subsequent frames, which is then used by
20543 the @ref{vidstabtransform} filter.
20544
20545 To enable compilation of this filter you need to configure FFmpeg with
20546 @code{--enable-libvidstab}.
20547
20548 This filter accepts the following options:
20549
20550 @table @option
20551 @item result
20552 Set the path to the file used to write the transforms information.
20553 Default value is @file{transforms.trf}.
20554
20555 @item shakiness
20556 Set how shaky the video is and how quick the camera is. It accepts an
20557 integer in the range 1-10, a value of 1 means little shakiness, a
20558 value of 10 means strong shakiness. Default value is 5.
20559
20560 @item accuracy
20561 Set the accuracy of the detection process. It must be a value in the
20562 range 1-15. A value of 1 means low accuracy, a value of 15 means high
20563 accuracy. Default value is 15.
20564
20565 @item stepsize
20566 Set stepsize of the search process. The region around minimum is
20567 scanned with 1 pixel resolution. Default value is 6.
20568
20569 @item mincontrast
20570 Set minimum contrast. Below this value a local measurement field is
20571 discarded. Must be a floating point value in the range 0-1. Default
20572 value is 0.3.
20573
20574 @item tripod
20575 Set reference frame number for tripod mode.
20576
20577 If enabled, the motion of the frames is compared to a reference frame
20578 in the filtered stream, identified by the specified number. The idea
20579 is to compensate all movements in a more-or-less static scene and keep
20580 the camera view absolutely still.
20581
20582 If set to 0, it is disabled. The frames are counted starting from 1.
20583
20584 @item show
20585 Show fields and transforms in the resulting frames. It accepts an
20586 integer in the range 0-2. Default value is 0, which disables any
20587 visualization.
20588 @end table
20589
20590 @subsection Examples
20591
20592 @itemize
20593 @item
20594 Use default values:
20595 @example
20596 vidstabdetect
20597 @end example
20598
20599 @item
20600 Analyze strongly shaky movie and put the results in file
20601 @file{mytransforms.trf}:
20602 @example
20603 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
20604 @end example
20605
20606 @item
20607 Visualize the result of internal transformations in the resulting
20608 video:
20609 @example
20610 vidstabdetect=show=1
20611 @end example
20612
20613 @item
20614 Analyze a video with medium shakiness using @command{ffmpeg}:
20615 @example
20616 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
20617 @end example
20618 @end itemize
20619
20620 @anchor{vidstabtransform}
20621 @section vidstabtransform
20622
20623 Video stabilization/deshaking: pass 2 of 2,
20624 see @ref{vidstabdetect} for pass 1.
20625
20626 Read a file with transform information for each frame and
20627 apply/compensate them. Together with the @ref{vidstabdetect}
20628 filter this can be used to deshake videos. See also
20629 @url{http://public.hronopik.de/vid.stab}. It is important to also use
20630 the @ref{unsharp} filter, see below.
20631
20632 To enable compilation of this filter you need to configure FFmpeg with
20633 @code{--enable-libvidstab}.
20634
20635 @subsection Options
20636
20637 @table @option
20638 @item input
20639 Set path to the file used to read the transforms. Default value is
20640 @file{transforms.trf}.
20641
20642 @item smoothing
20643 Set the number of frames (value*2 + 1) used for lowpass filtering the
20644 camera movements. Default value is 10.
20645
20646 For example a number of 10 means that 21 frames are used (10 in the
20647 past and 10 in the future) to smoothen the motion in the video. A
20648 larger value leads to a smoother video, but limits the acceleration of
20649 the camera (pan/tilt movements). 0 is a special case where a static
20650 camera is simulated.
20651
20652 @item optalgo
20653 Set the camera path optimization algorithm.
20654
20655 Accepted values are:
20656 @table @samp
20657 @item gauss
20658 gaussian kernel low-pass filter on camera motion (default)
20659 @item avg
20660 averaging on transformations
20661 @end table
20662
20663 @item maxshift
20664 Set maximal number of pixels to translate frames. Default value is -1,
20665 meaning no limit.
20666
20667 @item maxangle
20668 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
20669 value is -1, meaning no limit.
20670
20671 @item crop
20672 Specify how to deal with borders that may be visible due to movement
20673 compensation.
20674
20675 Available values are:
20676 @table @samp
20677 @item keep
20678 keep image information from previous frame (default)
20679 @item black
20680 fill the border black
20681 @end table
20682
20683 @item invert
20684 Invert transforms if set to 1. Default value is 0.
20685
20686 @item relative
20687 Consider transforms as relative to previous frame if set to 1,
20688 absolute if set to 0. Default value is 0.
20689
20690 @item zoom
20691 Set percentage to zoom. A positive value will result in a zoom-in
20692 effect, a negative value in a zoom-out effect. Default value is 0 (no
20693 zoom).
20694
20695 @item optzoom
20696 Set optimal zooming to avoid borders.
20697
20698 Accepted values are:
20699 @table @samp
20700 @item 0
20701 disabled
20702 @item 1
20703 optimal static zoom value is determined (only very strong movements
20704 will lead to visible borders) (default)
20705 @item 2
20706 optimal adaptive zoom value is determined (no borders will be
20707 visible), see @option{zoomspeed}
20708 @end table
20709
20710 Note that the value given at zoom is added to the one calculated here.
20711
20712 @item zoomspeed
20713 Set percent to zoom maximally each frame (enabled when
20714 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
20715 0.25.
20716
20717 @item interpol
20718 Specify type of interpolation.
20719
20720 Available values are:
20721 @table @samp
20722 @item no
20723 no interpolation
20724 @item linear
20725 linear only horizontal
20726 @item bilinear
20727 linear in both directions (default)
20728 @item bicubic
20729 cubic in both directions (slow)
20730 @end table
20731
20732 @item tripod
20733 Enable virtual tripod mode if set to 1, which is equivalent to
20734 @code{relative=0:smoothing=0}. Default value is 0.
20735
20736 Use also @code{tripod} option of @ref{vidstabdetect}.
20737
20738 @item debug
20739 Increase log verbosity if set to 1. Also the detected global motions
20740 are written to the temporary file @file{global_motions.trf}. Default
20741 value is 0.
20742 @end table
20743
20744 @subsection Examples
20745
20746 @itemize
20747 @item
20748 Use @command{ffmpeg} for a typical stabilization with default values:
20749 @example
20750 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
20751 @end example
20752
20753 Note the use of the @ref{unsharp} filter which is always recommended.
20754
20755 @item
20756 Zoom in a bit more and load transform data from a given file:
20757 @example
20758 vidstabtransform=zoom=5:input="mytransforms.trf"
20759 @end example
20760
20761 @item
20762 Smoothen the video even more:
20763 @example
20764 vidstabtransform=smoothing=30
20765 @end example
20766 @end itemize
20767
20768 @section vflip
20769
20770 Flip the input video vertically.
20771
20772 For example, to vertically flip a video with @command{ffmpeg}:
20773 @example
20774 ffmpeg -i in.avi -vf "vflip" out.avi
20775 @end example
20776
20777 @section vfrdet
20778
20779 Detect variable frame rate video.
20780
20781 This filter tries to detect if the input is variable or constant frame rate.
20782
20783 At end it will output number of frames detected as having variable delta pts,
20784 and ones with constant delta pts.
20785 If there was frames with variable delta, than it will also show min, max and
20786 average delta encountered.
20787
20788 @section vibrance
20789
20790 Boost or alter saturation.
20791
20792 The filter accepts the following options:
20793 @table @option
20794 @item intensity
20795 Set strength of boost if positive value or strength of alter if negative value.
20796 Default is 0. Allowed range is from -2 to 2.
20797
20798 @item rbal
20799 Set the red balance. Default is 1. Allowed range is from -10 to 10.
20800
20801 @item gbal
20802 Set the green balance. Default is 1. Allowed range is from -10 to 10.
20803
20804 @item bbal
20805 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
20806
20807 @item rlum
20808 Set the red luma coefficient.
20809
20810 @item glum
20811 Set the green luma coefficient.
20812
20813 @item blum
20814 Set the blue luma coefficient.
20815
20816 @item alternate
20817 If @code{intensity} is negative and this is set to 1, colors will change,
20818 otherwise colors will be less saturated, more towards gray.
20819 @end table
20820
20821 @subsection Commands
20822
20823 This filter supports the all above options as @ref{commands}.
20824
20825 @anchor{vignette}
20826 @section vignette
20827
20828 Make or reverse a natural vignetting effect.
20829
20830 The filter accepts the following options:
20831
20832 @table @option
20833 @item angle, a
20834 Set lens angle expression as a number of radians.
20835
20836 The value is clipped in the @code{[0,PI/2]} range.
20837
20838 Default value: @code{"PI/5"}
20839
20840 @item x0
20841 @item y0
20842 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
20843 by default.
20844
20845 @item mode
20846 Set forward/backward mode.
20847
20848 Available modes are:
20849 @table @samp
20850 @item forward
20851 The larger the distance from the central point, the darker the image becomes.
20852
20853 @item backward
20854 The larger the distance from the central point, the brighter the image becomes.
20855 This can be used to reverse a vignette effect, though there is no automatic
20856 detection to extract the lens @option{angle} and other settings (yet). It can
20857 also be used to create a burning effect.
20858 @end table
20859
20860 Default value is @samp{forward}.
20861
20862 @item eval
20863 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
20864
20865 It accepts the following values:
20866 @table @samp
20867 @item init
20868 Evaluate expressions only once during the filter initialization.
20869
20870 @item frame
20871 Evaluate expressions for each incoming frame. This is way slower than the
20872 @samp{init} mode since it requires all the scalers to be re-computed, but it
20873 allows advanced dynamic expressions.
20874 @end table
20875
20876 Default value is @samp{init}.
20877
20878 @item dither
20879 Set dithering to reduce the circular banding effects. Default is @code{1}
20880 (enabled).
20881
20882 @item aspect
20883 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
20884 Setting this value to the SAR of the input will make a rectangular vignetting
20885 following the dimensions of the video.
20886
20887 Default is @code{1/1}.
20888 @end table
20889
20890 @subsection Expressions
20891
20892 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
20893 following parameters.
20894
20895 @table @option
20896 @item w
20897 @item h
20898 input width and height
20899
20900 @item n
20901 the number of input frame, starting from 0
20902
20903 @item pts
20904 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
20905 @var{TB} units, NAN if undefined
20906
20907 @item r
20908 frame rate of the input video, NAN if the input frame rate is unknown
20909
20910 @item t
20911 the PTS (Presentation TimeStamp) of the filtered video frame,
20912 expressed in seconds, NAN if undefined
20913
20914 @item tb
20915 time base of the input video
20916 @end table
20917
20918
20919 @subsection Examples
20920
20921 @itemize
20922 @item
20923 Apply simple strong vignetting effect:
20924 @example
20925 vignette=PI/4
20926 @end example
20927
20928 @item
20929 Make a flickering vignetting:
20930 @example
20931 vignette='PI/4+random(1)*PI/50':eval=frame
20932 @end example
20933
20934 @end itemize
20935
20936 @section vmafmotion
20937
20938 Obtain the average VMAF motion score of a video.
20939 It is one of the component metrics of VMAF.
20940
20941 The obtained average motion score is printed through the logging system.
20942
20943 The filter accepts the following options:
20944
20945 @table @option
20946 @item stats_file
20947 If specified, the filter will use the named file to save the motion score of
20948 each frame with respect to the previous frame.
20949 When filename equals "-" the data is sent to standard output.
20950 @end table
20951
20952 Example:
20953 @example
20954 ffmpeg -i ref.mpg -vf vmafmotion -f null -
20955 @end example
20956
20957 @section vstack
20958 Stack input videos vertically.
20959
20960 All streams must be of same pixel format and of same width.
20961
20962 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
20963 to create same output.
20964
20965 The filter accepts the following options:
20966
20967 @table @option
20968 @item inputs
20969 Set number of input streams. Default is 2.
20970
20971 @item shortest
20972 If set to 1, force the output to terminate when the shortest input
20973 terminates. Default value is 0.
20974 @end table
20975
20976 @section w3fdif
20977
20978 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
20979 Deinterlacing Filter").
20980
20981 Based on the process described by Martin Weston for BBC R&D, and
20982 implemented based on the de-interlace algorithm written by Jim
20983 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
20984 uses filter coefficients calculated by BBC R&D.
20985
20986 This filter uses field-dominance information in frame to decide which
20987 of each pair of fields to place first in the output.
20988 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
20989
20990 There are two sets of filter coefficients, so called "simple"
20991 and "complex". Which set of filter coefficients is used can
20992 be set by passing an optional parameter:
20993
20994 @table @option
20995 @item filter
20996 Set the interlacing filter coefficients. Accepts one of the following values:
20997
20998 @table @samp
20999 @item simple
21000 Simple filter coefficient set.
21001 @item complex
21002 More-complex filter coefficient set.
21003 @end table
21004 Default value is @samp{complex}.
21005
21006 @item mode
21007 The interlacing mode to adopt. It accepts one of the following values:
21008
21009 @table @option
21010 @item frame
21011 Output one frame for each frame.
21012 @item field
21013 Output one frame for each field.
21014 @end table
21015
21016 The default value is @code{field}.
21017
21018 @item parity
21019 The picture field parity assumed for the input interlaced video. It accepts one
21020 of the following values:
21021
21022 @table @option
21023 @item tff
21024 Assume the top field is first.
21025 @item bff
21026 Assume the bottom field is first.
21027 @item auto
21028 Enable automatic detection of field parity.
21029 @end table
21030
21031 The default value is @code{auto}.
21032 If the interlacing is unknown or the decoder does not export this information,
21033 top field first will be assumed.
21034
21035 @item deint
21036 Specify which frames to deinterlace. Accepts one of the following values:
21037
21038 @table @samp
21039 @item all
21040 Deinterlace all frames,
21041 @item interlaced
21042 Only deinterlace frames marked as interlaced.
21043 @end table
21044
21045 Default value is @samp{all}.
21046 @end table
21047
21048 @subsection Commands
21049 This filter supports same @ref{commands} as options.
21050
21051 @section waveform
21052 Video waveform monitor.
21053
21054 The waveform monitor plots color component intensity. By default luminance
21055 only. Each column of the waveform corresponds to a column of pixels in the
21056 source video.
21057
21058 It accepts the following options:
21059
21060 @table @option
21061 @item mode, m
21062 Can be either @code{row}, or @code{column}. Default is @code{column}.
21063 In row mode, the graph on the left side represents color component value 0 and
21064 the right side represents value = 255. In column mode, the top side represents
21065 color component value = 0 and bottom side represents value = 255.
21066
21067 @item intensity, i
21068 Set intensity. Smaller values are useful to find out how many values of the same
21069 luminance are distributed across input rows/columns.
21070 Default value is @code{0.04}. Allowed range is [0, 1].
21071
21072 @item mirror, r
21073 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
21074 In mirrored mode, higher values will be represented on the left
21075 side for @code{row} mode and at the top for @code{column} mode. Default is
21076 @code{1} (mirrored).
21077
21078 @item display, d
21079 Set display mode.
21080 It accepts the following values:
21081 @table @samp
21082 @item overlay
21083 Presents information identical to that in the @code{parade}, except
21084 that the graphs representing color components are superimposed directly
21085 over one another.
21086
21087 This display mode makes it easier to spot relative differences or similarities
21088 in overlapping areas of the color components that are supposed to be identical,
21089 such as neutral whites, grays, or blacks.
21090
21091 @item stack
21092 Display separate graph for the color components side by side in
21093 @code{row} mode or one below the other in @code{column} mode.
21094
21095 @item parade
21096 Display separate graph for the color components side by side in
21097 @code{column} mode or one below the other in @code{row} mode.
21098
21099 Using this display mode makes it easy to spot color casts in the highlights
21100 and shadows of an image, by comparing the contours of the top and the bottom
21101 graphs of each waveform. Since whites, grays, and blacks are characterized
21102 by exactly equal amounts of red, green, and blue, neutral areas of the picture
21103 should display three waveforms of roughly equal width/height. If not, the
21104 correction is easy to perform by making level adjustments the three waveforms.
21105 @end table
21106 Default is @code{stack}.
21107
21108 @item components, c
21109 Set which color components to display. Default is 1, which means only luminance
21110 or red color component if input is in RGB colorspace. If is set for example to
21111 7 it will display all 3 (if) available color components.
21112
21113 @item envelope, e
21114 @table @samp
21115 @item none
21116 No envelope, this is default.
21117
21118 @item instant
21119 Instant envelope, minimum and maximum values presented in graph will be easily
21120 visible even with small @code{step} value.
21121
21122 @item peak
21123 Hold minimum and maximum values presented in graph across time. This way you
21124 can still spot out of range values without constantly looking at waveforms.
21125
21126 @item peak+instant
21127 Peak and instant envelope combined together.
21128 @end table
21129
21130 @item filter, f
21131 @table @samp
21132 @item lowpass
21133 No filtering, this is default.
21134
21135 @item flat
21136 Luma and chroma combined together.
21137
21138 @item aflat
21139 Similar as above, but shows difference between blue and red chroma.
21140
21141 @item xflat
21142 Similar as above, but use different colors.
21143
21144 @item yflat
21145 Similar as above, but again with different colors.
21146
21147 @item chroma
21148 Displays only chroma.
21149
21150 @item color
21151 Displays actual color value on waveform.
21152
21153 @item acolor
21154 Similar as above, but with luma showing frequency of chroma values.
21155 @end table
21156
21157 @item graticule, g
21158 Set which graticule to display.
21159
21160 @table @samp
21161 @item none
21162 Do not display graticule.
21163
21164 @item green
21165 Display green graticule showing legal broadcast ranges.
21166
21167 @item orange
21168 Display orange graticule showing legal broadcast ranges.
21169
21170 @item invert
21171 Display invert graticule showing legal broadcast ranges.
21172 @end table
21173
21174 @item opacity, o
21175 Set graticule opacity.
21176
21177 @item flags, fl
21178 Set graticule flags.
21179
21180 @table @samp
21181 @item numbers
21182 Draw numbers above lines. By default enabled.
21183
21184 @item dots
21185 Draw dots instead of lines.
21186 @end table
21187
21188 @item scale, s
21189 Set scale used for displaying graticule.
21190
21191 @table @samp
21192 @item digital
21193 @item millivolts
21194 @item ire
21195 @end table
21196 Default is digital.
21197
21198 @item bgopacity, b
21199 Set background opacity.
21200
21201 @item tint0, t0
21202 @item tint1, t1
21203 Set tint for output.
21204 Only used with lowpass filter and when display is not overlay and input
21205 pixel formats are not RGB.
21206 @end table
21207
21208 @section weave, doubleweave
21209
21210 The @code{weave} takes a field-based video input and join
21211 each two sequential fields into single frame, producing a new double
21212 height clip with half the frame rate and half the frame count.
21213
21214 The @code{doubleweave} works same as @code{weave} but without
21215 halving frame rate and frame count.
21216
21217 It accepts the following option:
21218
21219 @table @option
21220 @item first_field
21221 Set first field. Available values are:
21222
21223 @table @samp
21224 @item top, t
21225 Set the frame as top-field-first.
21226
21227 @item bottom, b
21228 Set the frame as bottom-field-first.
21229 @end table
21230 @end table
21231
21232 @subsection Examples
21233
21234 @itemize
21235 @item
21236 Interlace video using @ref{select} and @ref{separatefields} filter:
21237 @example
21238 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
21239 @end example
21240 @end itemize
21241
21242 @section xbr
21243 Apply the xBR high-quality magnification filter which is designed for pixel
21244 art. It follows a set of edge-detection rules, see
21245 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
21246
21247 It accepts the following option:
21248
21249 @table @option
21250 @item n
21251 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
21252 @code{3xBR} and @code{4} for @code{4xBR}.
21253 Default is @code{3}.
21254 @end table
21255
21256 @section xfade
21257
21258 Apply cross fade from one input video stream to another input video stream.
21259 The cross fade is applied for specified duration.
21260
21261 The filter accepts the following options:
21262
21263 @table @option
21264 @item transition
21265 Set one of available transition effects:
21266
21267 @table @samp
21268 @item custom
21269 @item fade
21270 @item wipeleft
21271 @item wiperight
21272 @item wipeup
21273 @item wipedown
21274 @item slideleft
21275 @item slideright
21276 @item slideup
21277 @item slidedown
21278 @item circlecrop
21279 @item rectcrop
21280 @item distance
21281 @item fadeblack
21282 @item fadewhite
21283 @item radial
21284 @item smoothleft
21285 @item smoothright
21286 @item smoothup
21287 @item smoothdown
21288 @item circleopen
21289 @item circleclose
21290 @item vertopen
21291 @item vertclose
21292 @item horzopen
21293 @item horzclose
21294 @item dissolve
21295 @item pixelize
21296 @item diagtl
21297 @item diagtr
21298 @item diagbl
21299 @item diagbr
21300 @item hlslice
21301 @item hrslice
21302 @item vuslice
21303 @item vdslice
21304 @item hblur
21305 @item fadegrays
21306 @item wipetl
21307 @item wipetr
21308 @item wipebl
21309 @item wipebr
21310 @item squeezeh
21311 @item squeezev
21312 @end table
21313 Default transition effect is fade.
21314
21315 @item duration
21316 Set cross fade duration in seconds.
21317 Default duration is 1 second.
21318
21319 @item offset
21320 Set cross fade start relative to first input stream in seconds.
21321 Default offset is 0.
21322
21323 @item expr
21324 Set expression for custom transition effect.
21325
21326 The expressions can use the following variables and functions:
21327
21328 @table @option
21329 @item X
21330 @item Y
21331 The coordinates of the current sample.
21332
21333 @item W
21334 @item H
21335 The width and height of the image.
21336
21337 @item P
21338 Progress of transition effect.
21339
21340 @item PLANE
21341 Currently processed plane.
21342
21343 @item A
21344 Return value of first input at current location and plane.
21345
21346 @item B
21347 Return value of second input at current location and plane.
21348
21349 @item a0(x, y)
21350 @item a1(x, y)
21351 @item a2(x, y)
21352 @item a3(x, y)
21353 Return the value of the pixel at location (@var{x},@var{y}) of the
21354 first/second/third/fourth component of first input.
21355
21356 @item b0(x, y)
21357 @item b1(x, y)
21358 @item b2(x, y)
21359 @item b3(x, y)
21360 Return the value of the pixel at location (@var{x},@var{y}) of the
21361 first/second/third/fourth component of second input.
21362 @end table
21363 @end table
21364
21365 @subsection Examples
21366
21367 @itemize
21368 @item
21369 Cross fade from one input video to another input video, with fade transition and duration of transition
21370 of 2 seconds starting at offset of 5 seconds:
21371 @example
21372 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
21373 @end example
21374 @end itemize
21375
21376 @section xmedian
21377 Pick median pixels from several input videos.
21378
21379 The filter accepts the following options:
21380
21381 @table @option
21382 @item inputs
21383 Set number of inputs.
21384 Default is 3. Allowed range is from 3 to 255.
21385 If number of inputs is even number, than result will be mean value between two median values.
21386
21387 @item planes
21388 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
21389
21390 @item percentile
21391 Set median percentile. Default value is @code{0.5}.
21392 Default value of @code{0.5} will pick always median values, while @code{0} will pick
21393 minimum values, and @code{1} maximum values.
21394 @end table
21395
21396 @subsection Commands
21397
21398 This filter supports all above options as @ref{commands}, excluding option @code{inputs}.
21399
21400 @section xstack
21401 Stack video inputs into custom layout.
21402
21403 All streams must be of same pixel format.
21404
21405 The filter accepts the following options:
21406
21407 @table @option
21408 @item inputs
21409 Set number of input streams. Default is 2.
21410
21411 @item layout
21412 Specify layout of inputs.
21413 This option requires the desired layout configuration to be explicitly set by the user.
21414 This sets position of each video input in output. Each input
21415 is separated by '|'.
21416 The first number represents the column, and the second number represents the row.
21417 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
21418 where X is video input from which to take width or height.
21419 Multiple values can be used when separated by '+'. In such
21420 case values are summed together.
21421
21422 Note that if inputs are of different sizes gaps may appear, as not all of
21423 the output video frame will be filled. Similarly, videos can overlap each
21424 other if their position doesn't leave enough space for the full frame of
21425 adjoining videos.
21426
21427 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
21428 a layout must be set by the user.
21429
21430 @item shortest
21431 If set to 1, force the output to terminate when the shortest input
21432 terminates. Default value is 0.
21433
21434 @item fill
21435 If set to valid color, all unused pixels will be filled with that color.
21436 By default fill is set to none, so it is disabled.
21437 @end table
21438
21439 @subsection Examples
21440
21441 @itemize
21442 @item
21443 Display 4 inputs into 2x2 grid.
21444
21445 Layout:
21446 @example
21447 input1(0, 0)  | input3(w0, 0)
21448 input2(0, h0) | input4(w0, h0)
21449 @end example
21450
21451 @example
21452 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
21453 @end example
21454
21455 Note that if inputs are of different sizes, gaps or overlaps may occur.
21456
21457 @item
21458 Display 4 inputs into 1x4 grid.
21459
21460 Layout:
21461 @example
21462 input1(0, 0)
21463 input2(0, h0)
21464 input3(0, h0+h1)
21465 input4(0, h0+h1+h2)
21466 @end example
21467
21468 @example
21469 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
21470 @end example
21471
21472 Note that if inputs are of different widths, unused space will appear.
21473
21474 @item
21475 Display 9 inputs into 3x3 grid.
21476
21477 Layout:
21478 @example
21479 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
21480 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
21481 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
21482 @end example
21483
21484 @example
21485 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
21486 @end example
21487
21488 Note that if inputs are of different sizes, gaps or overlaps may occur.
21489
21490 @item
21491 Display 16 inputs into 4x4 grid.
21492
21493 Layout:
21494 @example
21495 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
21496 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
21497 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
21498 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
21499 @end example
21500
21501 @example
21502 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|
21503 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
21504 @end example
21505
21506 Note that if inputs are of different sizes, gaps or overlaps may occur.
21507
21508 @end itemize
21509
21510 @anchor{yadif}
21511 @section yadif
21512
21513 Deinterlace the input video ("yadif" means "yet another deinterlacing
21514 filter").
21515
21516 It accepts the following parameters:
21517
21518
21519 @table @option
21520
21521 @item mode
21522 The interlacing mode to adopt. It accepts one of the following values:
21523
21524 @table @option
21525 @item 0, send_frame
21526 Output one frame for each frame.
21527 @item 1, send_field
21528 Output one frame for each field.
21529 @item 2, send_frame_nospatial
21530 Like @code{send_frame}, but it skips the spatial interlacing check.
21531 @item 3, send_field_nospatial
21532 Like @code{send_field}, but it skips the spatial interlacing check.
21533 @end table
21534
21535 The default value is @code{send_frame}.
21536
21537 @item parity
21538 The picture field parity assumed for the input interlaced video. It accepts one
21539 of the following values:
21540
21541 @table @option
21542 @item 0, tff
21543 Assume the top field is first.
21544 @item 1, bff
21545 Assume the bottom field is first.
21546 @item -1, auto
21547 Enable automatic detection of field parity.
21548 @end table
21549
21550 The default value is @code{auto}.
21551 If the interlacing is unknown or the decoder does not export this information,
21552 top field first will be assumed.
21553
21554 @item deint
21555 Specify which frames to deinterlace. Accepts one of the following
21556 values:
21557
21558 @table @option
21559 @item 0, all
21560 Deinterlace all frames.
21561 @item 1, interlaced
21562 Only deinterlace frames marked as interlaced.
21563 @end table
21564
21565 The default value is @code{all}.
21566 @end table
21567
21568 @section yadif_cuda
21569
21570 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
21571 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
21572 and/or nvenc.
21573
21574 It accepts the following parameters:
21575
21576
21577 @table @option
21578
21579 @item mode
21580 The interlacing mode to adopt. It accepts one of the following values:
21581
21582 @table @option
21583 @item 0, send_frame
21584 Output one frame for each frame.
21585 @item 1, send_field
21586 Output one frame for each field.
21587 @item 2, send_frame_nospatial
21588 Like @code{send_frame}, but it skips the spatial interlacing check.
21589 @item 3, send_field_nospatial
21590 Like @code{send_field}, but it skips the spatial interlacing check.
21591 @end table
21592
21593 The default value is @code{send_frame}.
21594
21595 @item parity
21596 The picture field parity assumed for the input interlaced video. It accepts one
21597 of the following values:
21598
21599 @table @option
21600 @item 0, tff
21601 Assume the top field is first.
21602 @item 1, bff
21603 Assume the bottom field is first.
21604 @item -1, auto
21605 Enable automatic detection of field parity.
21606 @end table
21607
21608 The default value is @code{auto}.
21609 If the interlacing is unknown or the decoder does not export this information,
21610 top field first will be assumed.
21611
21612 @item deint
21613 Specify which frames to deinterlace. Accepts one of the following
21614 values:
21615
21616 @table @option
21617 @item 0, all
21618 Deinterlace all frames.
21619 @item 1, interlaced
21620 Only deinterlace frames marked as interlaced.
21621 @end table
21622
21623 The default value is @code{all}.
21624 @end table
21625
21626 @section yaepblur
21627
21628 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
21629 The algorithm is described in
21630 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
21631
21632 It accepts the following parameters:
21633
21634 @table @option
21635 @item radius, r
21636 Set the window radius. Default value is 3.
21637
21638 @item planes, p
21639 Set which planes to filter. Default is only the first plane.
21640
21641 @item sigma, s
21642 Set blur strength. Default value is 128.
21643 @end table
21644
21645 @subsection Commands
21646 This filter supports same @ref{commands} as options.
21647
21648 @section zoompan
21649
21650 Apply Zoom & Pan effect.
21651
21652 This filter accepts the following options:
21653
21654 @table @option
21655 @item zoom, z
21656 Set the zoom expression. Range is 1-10. Default is 1.
21657
21658 @item x
21659 @item y
21660 Set the x and y expression. Default is 0.
21661
21662 @item d
21663 Set the duration expression in number of frames.
21664 This sets for how many number of frames effect will last for
21665 single input image.
21666
21667 @item s
21668 Set the output image size, default is 'hd720'.
21669
21670 @item fps
21671 Set the output frame rate, default is '25'.
21672 @end table
21673
21674 Each expression can contain the following constants:
21675
21676 @table @option
21677 @item in_w, iw
21678 Input width.
21679
21680 @item in_h, ih
21681 Input height.
21682
21683 @item out_w, ow
21684 Output width.
21685
21686 @item out_h, oh
21687 Output height.
21688
21689 @item in
21690 Input frame count.
21691
21692 @item on
21693 Output frame count.
21694
21695 @item in_time, it
21696 The input timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
21697
21698 @item out_time, time, ot
21699 The output timestamp expressed in seconds.
21700
21701 @item x
21702 @item y
21703 Last calculated 'x' and 'y' position from 'x' and 'y' expression
21704 for current input frame.
21705
21706 @item px
21707 @item py
21708 'x' and 'y' of last output frame of previous input frame or 0 when there was
21709 not yet such frame (first input frame).
21710
21711 @item zoom
21712 Last calculated zoom from 'z' expression for current input frame.
21713
21714 @item pzoom
21715 Last calculated zoom of last output frame of previous input frame.
21716
21717 @item duration
21718 Number of output frames for current input frame. Calculated from 'd' expression
21719 for each input frame.
21720
21721 @item pduration
21722 number of output frames created for previous input frame
21723
21724 @item a
21725 Rational number: input width / input height
21726
21727 @item sar
21728 sample aspect ratio
21729
21730 @item dar
21731 display aspect ratio
21732
21733 @end table
21734
21735 @subsection Examples
21736
21737 @itemize
21738 @item
21739 Zoom in up to 1.5x and pan at same time to some spot near center of picture:
21740 @example
21741 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
21742 @end example
21743
21744 @item
21745 Zoom in up to 1.5x and pan always at center of picture:
21746 @example
21747 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21748 @end example
21749
21750 @item
21751 Same as above but without pausing:
21752 @example
21753 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21754 @end example
21755
21756 @item
21757 Zoom in 2x into center of picture only for the first second of the input video:
21758 @example
21759 zoompan=z='if(between(in_time,0,1),2,1)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
21760 @end example
21761
21762 @end itemize
21763
21764 @anchor{zscale}
21765 @section zscale
21766 Scale (resize) the input video, using the z.lib library:
21767 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
21768 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
21769
21770 The zscale filter forces the output display aspect ratio to be the same
21771 as the input, by changing the output sample aspect ratio.
21772
21773 If the input image format is different from the format requested by
21774 the next filter, the zscale filter will convert the input to the
21775 requested format.
21776
21777 @subsection Options
21778 The filter accepts the following options.
21779
21780 @table @option
21781 @item width, w
21782 @item height, h
21783 Set the output video dimension expression. Default value is the input
21784 dimension.
21785
21786 If the @var{width} or @var{w} value is 0, the input width is used for
21787 the output. If the @var{height} or @var{h} value is 0, the input height
21788 is used for the output.
21789
21790 If one and only one of the values is -n with n >= 1, the zscale filter
21791 will use a value that maintains the aspect ratio of the input image,
21792 calculated from the other specified dimension. After that it will,
21793 however, make sure that the calculated dimension is divisible by n and
21794 adjust the value if necessary.
21795
21796 If both values are -n with n >= 1, the behavior will be identical to
21797 both values being set to 0 as previously detailed.
21798
21799 See below for the list of accepted constants for use in the dimension
21800 expression.
21801
21802 @item size, s
21803 Set the video size. For the syntax of this option, check the
21804 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21805
21806 @item dither, d
21807 Set the dither type.
21808
21809 Possible values are:
21810 @table @var
21811 @item none
21812 @item ordered
21813 @item random
21814 @item error_diffusion
21815 @end table
21816
21817 Default is none.
21818
21819 @item filter, f
21820 Set the resize filter type.
21821
21822 Possible values are:
21823 @table @var
21824 @item point
21825 @item bilinear
21826 @item bicubic
21827 @item spline16
21828 @item spline36
21829 @item lanczos
21830 @end table
21831
21832 Default is bilinear.
21833
21834 @item range, r
21835 Set the color range.
21836
21837 Possible values are:
21838 @table @var
21839 @item input
21840 @item limited
21841 @item full
21842 @end table
21843
21844 Default is same as input.
21845
21846 @item primaries, p
21847 Set the color primaries.
21848
21849 Possible values are:
21850 @table @var
21851 @item input
21852 @item 709
21853 @item unspecified
21854 @item 170m
21855 @item 240m
21856 @item 2020
21857 @end table
21858
21859 Default is same as input.
21860
21861 @item transfer, t
21862 Set the transfer characteristics.
21863
21864 Possible values are:
21865 @table @var
21866 @item input
21867 @item 709
21868 @item unspecified
21869 @item 601
21870 @item linear
21871 @item 2020_10
21872 @item 2020_12
21873 @item smpte2084
21874 @item iec61966-2-1
21875 @item arib-std-b67
21876 @end table
21877
21878 Default is same as input.
21879
21880 @item matrix, m
21881 Set the colorspace matrix.
21882
21883 Possible value are:
21884 @table @var
21885 @item input
21886 @item 709
21887 @item unspecified
21888 @item 470bg
21889 @item 170m
21890 @item 2020_ncl
21891 @item 2020_cl
21892 @end table
21893
21894 Default is same as input.
21895
21896 @item rangein, rin
21897 Set the input color range.
21898
21899 Possible values are:
21900 @table @var
21901 @item input
21902 @item limited
21903 @item full
21904 @end table
21905
21906 Default is same as input.
21907
21908 @item primariesin, pin
21909 Set the input color primaries.
21910
21911 Possible values are:
21912 @table @var
21913 @item input
21914 @item 709
21915 @item unspecified
21916 @item 170m
21917 @item 240m
21918 @item 2020
21919 @end table
21920
21921 Default is same as input.
21922
21923 @item transferin, tin
21924 Set the input transfer characteristics.
21925
21926 Possible values are:
21927 @table @var
21928 @item input
21929 @item 709
21930 @item unspecified
21931 @item 601
21932 @item linear
21933 @item 2020_10
21934 @item 2020_12
21935 @end table
21936
21937 Default is same as input.
21938
21939 @item matrixin, min
21940 Set the input colorspace matrix.
21941
21942 Possible value are:
21943 @table @var
21944 @item input
21945 @item 709
21946 @item unspecified
21947 @item 470bg
21948 @item 170m
21949 @item 2020_ncl
21950 @item 2020_cl
21951 @end table
21952
21953 @item chromal, c
21954 Set the output chroma location.
21955
21956 Possible values are:
21957 @table @var
21958 @item input
21959 @item left
21960 @item center
21961 @item topleft
21962 @item top
21963 @item bottomleft
21964 @item bottom
21965 @end table
21966
21967 @item chromalin, cin
21968 Set the input chroma location.
21969
21970 Possible values are:
21971 @table @var
21972 @item input
21973 @item left
21974 @item center
21975 @item topleft
21976 @item top
21977 @item bottomleft
21978 @item bottom
21979 @end table
21980
21981 @item npl
21982 Set the nominal peak luminance.
21983 @end table
21984
21985 The values of the @option{w} and @option{h} options are expressions
21986 containing the following constants:
21987
21988 @table @var
21989 @item in_w
21990 @item in_h
21991 The input width and height
21992
21993 @item iw
21994 @item ih
21995 These are the same as @var{in_w} and @var{in_h}.
21996
21997 @item out_w
21998 @item out_h
21999 The output (scaled) width and height
22000
22001 @item ow
22002 @item oh
22003 These are the same as @var{out_w} and @var{out_h}
22004
22005 @item a
22006 The same as @var{iw} / @var{ih}
22007
22008 @item sar
22009 input sample aspect ratio
22010
22011 @item dar
22012 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
22013
22014 @item hsub
22015 @item vsub
22016 horizontal and vertical input chroma subsample values. For example for the
22017 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22018
22019 @item ohsub
22020 @item ovsub
22021 horizontal and vertical output chroma subsample values. For example for the
22022 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
22023 @end table
22024
22025 @subsection Commands
22026
22027 This filter supports the following commands:
22028 @table @option
22029 @item width, w
22030 @item height, h
22031 Set the output video dimension expression.
22032 The command accepts the same syntax of the corresponding option.
22033
22034 If the specified expression is not valid, it is kept at its current
22035 value.
22036 @end table
22037
22038 @c man end VIDEO FILTERS
22039
22040 @chapter OpenCL Video Filters
22041 @c man begin OPENCL VIDEO FILTERS
22042
22043 Below is a description of the currently available OpenCL video filters.
22044
22045 To enable compilation of these filters you need to configure FFmpeg with
22046 @code{--enable-opencl}.
22047
22048 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
22049 @table @option
22050
22051 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
22052 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
22053 given device parameters.
22054
22055 @item -filter_hw_device @var{name}
22056 Pass the hardware device called @var{name} to all filters in any filter graph.
22057
22058 @end table
22059
22060 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
22061
22062 @itemize
22063 @item
22064 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
22065 @example
22066 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
22067 @end example
22068 @end itemize
22069
22070 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.
22071
22072 @section avgblur_opencl
22073
22074 Apply average blur filter.
22075
22076 The filter accepts the following options:
22077
22078 @table @option
22079 @item sizeX
22080 Set horizontal radius size.
22081 Range is @code{[1, 1024]} and default value is @code{1}.
22082
22083 @item planes
22084 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22085
22086 @item sizeY
22087 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
22088 @end table
22089
22090 @subsection Example
22091
22092 @itemize
22093 @item
22094 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.
22095 @example
22096 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
22097 @end example
22098 @end itemize
22099
22100 @section boxblur_opencl
22101
22102 Apply a boxblur algorithm to the input video.
22103
22104 It accepts the following parameters:
22105
22106 @table @option
22107
22108 @item luma_radius, lr
22109 @item luma_power, lp
22110 @item chroma_radius, cr
22111 @item chroma_power, cp
22112 @item alpha_radius, ar
22113 @item alpha_power, ap
22114
22115 @end table
22116
22117 A description of the accepted options follows.
22118
22119 @table @option
22120 @item luma_radius, lr
22121 @item chroma_radius, cr
22122 @item alpha_radius, ar
22123 Set an expression for the box radius in pixels used for blurring the
22124 corresponding input plane.
22125
22126 The radius value must be a non-negative number, and must not be
22127 greater than the value of the expression @code{min(w,h)/2} for the
22128 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
22129 planes.
22130
22131 Default value for @option{luma_radius} is "2". If not specified,
22132 @option{chroma_radius} and @option{alpha_radius} default to the
22133 corresponding value set for @option{luma_radius}.
22134
22135 The expressions can contain the following constants:
22136 @table @option
22137 @item w
22138 @item h
22139 The input width and height in pixels.
22140
22141 @item cw
22142 @item ch
22143 The input chroma image width and height in pixels.
22144
22145 @item hsub
22146 @item vsub
22147 The horizontal and vertical chroma subsample values. For example, for the
22148 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
22149 @end table
22150
22151 @item luma_power, lp
22152 @item chroma_power, cp
22153 @item alpha_power, ap
22154 Specify how many times the boxblur filter is applied to the
22155 corresponding plane.
22156
22157 Default value for @option{luma_power} is 2. If not specified,
22158 @option{chroma_power} and @option{alpha_power} default to the
22159 corresponding value set for @option{luma_power}.
22160
22161 A value of 0 will disable the effect.
22162 @end table
22163
22164 @subsection Examples
22165
22166 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.
22167
22168 @itemize
22169 @item
22170 Apply a boxblur filter with the luma, chroma, and alpha radius
22171 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.
22172 @example
22173 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
22174 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
22175 @end example
22176
22177 @item
22178 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.
22179
22180 For the luma plane, a 2x2 box radius will be run once.
22181
22182 For the chroma plane, a 4x4 box radius will be run 5 times.
22183
22184 For the alpha plane, a 3x3 box radius will be run 7 times.
22185 @example
22186 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
22187 @end example
22188 @end itemize
22189
22190 @section colorkey_opencl
22191 RGB colorspace color keying.
22192
22193 The filter accepts the following options:
22194
22195 @table @option
22196 @item color
22197 The color which will be replaced with transparency.
22198
22199 @item similarity
22200 Similarity percentage with the key color.
22201
22202 0.01 matches only the exact key color, while 1.0 matches everything.
22203
22204 @item blend
22205 Blend percentage.
22206
22207 0.0 makes pixels either fully transparent, or not transparent at all.
22208
22209 Higher values result in semi-transparent pixels, with a higher transparency
22210 the more similar the pixels color is to the key color.
22211 @end table
22212
22213 @subsection Examples
22214
22215 @itemize
22216 @item
22217 Make every semi-green pixel in the input transparent with some slight blending:
22218 @example
22219 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
22220 @end example
22221 @end itemize
22222
22223 @section convolution_opencl
22224
22225 Apply convolution of 3x3, 5x5, 7x7 matrix.
22226
22227 The filter accepts the following options:
22228
22229 @table @option
22230 @item 0m
22231 @item 1m
22232 @item 2m
22233 @item 3m
22234 Set matrix for each plane.
22235 Matrix is sequence of 9, 25 or 49 signed numbers.
22236 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
22237
22238 @item 0rdiv
22239 @item 1rdiv
22240 @item 2rdiv
22241 @item 3rdiv
22242 Set multiplier for calculated value for each plane.
22243 If unset or 0, it will be sum of all matrix elements.
22244 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
22245
22246 @item 0bias
22247 @item 1bias
22248 @item 2bias
22249 @item 3bias
22250 Set bias for each plane. This value is added to the result of the multiplication.
22251 Useful for making the overall image brighter or darker.
22252 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
22253
22254 @end table
22255
22256 @subsection Examples
22257
22258 @itemize
22259 @item
22260 Apply sharpen:
22261 @example
22262 -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
22263 @end example
22264
22265 @item
22266 Apply blur:
22267 @example
22268 -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
22269 @end example
22270
22271 @item
22272 Apply edge enhance:
22273 @example
22274 -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
22275 @end example
22276
22277 @item
22278 Apply edge detect:
22279 @example
22280 -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
22281 @end example
22282
22283 @item
22284 Apply laplacian edge detector which includes diagonals:
22285 @example
22286 -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
22287 @end example
22288
22289 @item
22290 Apply emboss:
22291 @example
22292 -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
22293 @end example
22294 @end itemize
22295
22296 @section erosion_opencl
22297
22298 Apply erosion effect to the video.
22299
22300 This filter replaces the pixel by the local(3x3) minimum.
22301
22302 It accepts the following options:
22303
22304 @table @option
22305 @item threshold0
22306 @item threshold1
22307 @item threshold2
22308 @item threshold3
22309 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22310 If @code{0}, plane will remain unchanged.
22311
22312 @item coordinates
22313 Flag which specifies the pixel to refer to.
22314 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22315
22316 Flags to local 3x3 coordinates region centered on @code{x}:
22317
22318     1 2 3
22319
22320     4 x 5
22321
22322     6 7 8
22323 @end table
22324
22325 @subsection Example
22326
22327 @itemize
22328 @item
22329 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.
22330 @example
22331 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22332 @end example
22333 @end itemize
22334
22335 @section deshake_opencl
22336 Feature-point based video stabilization filter.
22337
22338 The filter accepts the following options:
22339
22340 @table @option
22341 @item tripod
22342 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
22343
22344 @item debug
22345 Whether or not additional debug info should be displayed, both in the processed output and in the console.
22346
22347 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
22348
22349 Viewing point matches in the output video is only supported for RGB input.
22350
22351 Defaults to @code{0}.
22352
22353 @item adaptive_crop
22354 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
22355
22356 Defaults to @code{1}.
22357
22358 @item refine_features
22359 Whether or not feature points should be refined at a sub-pixel level.
22360
22361 This can be turned off for a slight performance gain at the cost of precision.
22362
22363 Defaults to @code{1}.
22364
22365 @item smooth_strength
22366 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
22367
22368 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
22369
22370 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
22371
22372 Defaults to @code{0.0}.
22373
22374 @item smooth_window_multiplier
22375 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
22376
22377 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
22378
22379 Acceptable values range from @code{0.1} to @code{10.0}.
22380
22381 Larger values increase the amount of motion data available for determining how to smooth the camera path,
22382 potentially improving smoothness, but also increase latency and memory usage.
22383
22384 Defaults to @code{2.0}.
22385
22386 @end table
22387
22388 @subsection Examples
22389
22390 @itemize
22391 @item
22392 Stabilize a video with a fixed, medium smoothing strength:
22393 @example
22394 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
22395 @end example
22396
22397 @item
22398 Stabilize a video with debugging (both in console and in rendered video):
22399 @example
22400 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
22401 @end example
22402 @end itemize
22403
22404 @section dilation_opencl
22405
22406 Apply dilation effect to the video.
22407
22408 This filter replaces the pixel by the local(3x3) maximum.
22409
22410 It accepts the following options:
22411
22412 @table @option
22413 @item threshold0
22414 @item threshold1
22415 @item threshold2
22416 @item threshold3
22417 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
22418 If @code{0}, plane will remain unchanged.
22419
22420 @item coordinates
22421 Flag which specifies the pixel to refer to.
22422 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
22423
22424 Flags to local 3x3 coordinates region centered on @code{x}:
22425
22426     1 2 3
22427
22428     4 x 5
22429
22430     6 7 8
22431 @end table
22432
22433 @subsection Example
22434
22435 @itemize
22436 @item
22437 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.
22438 @example
22439 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
22440 @end example
22441 @end itemize
22442
22443 @section nlmeans_opencl
22444
22445 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
22446
22447 @section overlay_opencl
22448
22449 Overlay one video on top of another.
22450
22451 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
22452 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
22453
22454 The filter accepts the following options:
22455
22456 @table @option
22457
22458 @item x
22459 Set the x coordinate of the overlaid video on the main video.
22460 Default value is @code{0}.
22461
22462 @item y
22463 Set the y coordinate of the overlaid video on the main video.
22464 Default value is @code{0}.
22465
22466 @end table
22467
22468 @subsection Examples
22469
22470 @itemize
22471 @item
22472 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
22473 @example
22474 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22475 @end example
22476 @item
22477 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
22478 @example
22479 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
22480 @end example
22481
22482 @end itemize
22483
22484 @section pad_opencl
22485
22486 Add paddings to the input image, and place the original input at the
22487 provided @var{x}, @var{y} coordinates.
22488
22489 It accepts the following options:
22490
22491 @table @option
22492 @item width, w
22493 @item height, h
22494 Specify an expression for the size of the output image with the
22495 paddings added. If the value for @var{width} or @var{height} is 0, the
22496 corresponding input size is used for the output.
22497
22498 The @var{width} expression can reference the value set by the
22499 @var{height} expression, and vice versa.
22500
22501 The default value of @var{width} and @var{height} is 0.
22502
22503 @item x
22504 @item y
22505 Specify the offsets to place the input image at within the padded area,
22506 with respect to the top/left border of the output image.
22507
22508 The @var{x} expression can reference the value set by the @var{y}
22509 expression, and vice versa.
22510
22511 The default value of @var{x} and @var{y} is 0.
22512
22513 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
22514 so the input image is centered on the padded area.
22515
22516 @item color
22517 Specify the color of the padded area. For the syntax of this option,
22518 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
22519 manual,ffmpeg-utils}.
22520
22521 @item aspect
22522 Pad to an aspect instead to a resolution.
22523 @end table
22524
22525 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
22526 options are expressions containing the following constants:
22527
22528 @table @option
22529 @item in_w
22530 @item in_h
22531 The input video width and height.
22532
22533 @item iw
22534 @item ih
22535 These are the same as @var{in_w} and @var{in_h}.
22536
22537 @item out_w
22538 @item out_h
22539 The output width and height (the size of the padded area), as
22540 specified by the @var{width} and @var{height} expressions.
22541
22542 @item ow
22543 @item oh
22544 These are the same as @var{out_w} and @var{out_h}.
22545
22546 @item x
22547 @item y
22548 The x and y offsets as specified by the @var{x} and @var{y}
22549 expressions, or NAN if not yet specified.
22550
22551 @item a
22552 same as @var{iw} / @var{ih}
22553
22554 @item sar
22555 input sample aspect ratio
22556
22557 @item dar
22558 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
22559 @end table
22560
22561 @section prewitt_opencl
22562
22563 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
22564
22565 The filter accepts the following option:
22566
22567 @table @option
22568 @item planes
22569 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22570
22571 @item scale
22572 Set value which will be multiplied with filtered result.
22573 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22574
22575 @item delta
22576 Set value which will be added to filtered result.
22577 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22578 @end table
22579
22580 @subsection Example
22581
22582 @itemize
22583 @item
22584 Apply the Prewitt operator with scale set to 2 and delta set to 10.
22585 @example
22586 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
22587 @end example
22588 @end itemize
22589
22590 @anchor{program_opencl}
22591 @section program_opencl
22592
22593 Filter video using an OpenCL program.
22594
22595 @table @option
22596
22597 @item source
22598 OpenCL program source file.
22599
22600 @item kernel
22601 Kernel name in program.
22602
22603 @item inputs
22604 Number of inputs to the filter.  Defaults to 1.
22605
22606 @item size, s
22607 Size of output frames.  Defaults to the same as the first input.
22608
22609 @end table
22610
22611 The @code{program_opencl} filter also supports the @ref{framesync} options.
22612
22613 The program source file must contain a kernel function with the given name,
22614 which will be run once for each plane of the output.  Each run on a plane
22615 gets enqueued as a separate 2D global NDRange with one work-item for each
22616 pixel to be generated.  The global ID offset for each work-item is therefore
22617 the coordinates of a pixel in the destination image.
22618
22619 The kernel function needs to take the following arguments:
22620 @itemize
22621 @item
22622 Destination image, @var{__write_only image2d_t}.
22623
22624 This image will become the output; the kernel should write all of it.
22625 @item
22626 Frame index, @var{unsigned int}.
22627
22628 This is a counter starting from zero and increasing by one for each frame.
22629 @item
22630 Source images, @var{__read_only image2d_t}.
22631
22632 These are the most recent images on each input.  The kernel may read from
22633 them to generate the output, but they can't be written to.
22634 @end itemize
22635
22636 Example programs:
22637
22638 @itemize
22639 @item
22640 Copy the input to the output (output must be the same size as the input).
22641 @verbatim
22642 __kernel void copy(__write_only image2d_t destination,
22643                    unsigned int index,
22644                    __read_only  image2d_t source)
22645 {
22646     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
22647
22648     int2 location = (int2)(get_global_id(0), get_global_id(1));
22649
22650     float4 value = read_imagef(source, sampler, location);
22651
22652     write_imagef(destination, location, value);
22653 }
22654 @end verbatim
22655
22656 @item
22657 Apply a simple transformation, rotating the input by an amount increasing
22658 with the index counter.  Pixel values are linearly interpolated by the
22659 sampler, and the output need not have the same dimensions as the input.
22660 @verbatim
22661 __kernel void rotate_image(__write_only image2d_t dst,
22662                            unsigned int index,
22663                            __read_only  image2d_t src)
22664 {
22665     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22666                                CLK_FILTER_LINEAR);
22667
22668     float angle = (float)index / 100.0f;
22669
22670     float2 dst_dim = convert_float2(get_image_dim(dst));
22671     float2 src_dim = convert_float2(get_image_dim(src));
22672
22673     float2 dst_cen = dst_dim / 2.0f;
22674     float2 src_cen = src_dim / 2.0f;
22675
22676     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
22677
22678     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
22679     float2 src_pos = {
22680         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
22681         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
22682     };
22683     src_pos = src_pos * src_dim / dst_dim;
22684
22685     float2 src_loc = src_pos + src_cen;
22686
22687     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
22688         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
22689         write_imagef(dst, dst_loc, 0.5f);
22690     else
22691         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
22692 }
22693 @end verbatim
22694
22695 @item
22696 Blend two inputs together, with the amount of each input used varying
22697 with the index counter.
22698 @verbatim
22699 __kernel void blend_images(__write_only image2d_t dst,
22700                            unsigned int index,
22701                            __read_only  image2d_t src1,
22702                            __read_only  image2d_t src2)
22703 {
22704     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
22705                                CLK_FILTER_LINEAR);
22706
22707     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
22708
22709     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
22710     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
22711     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
22712
22713     float4 val1 = read_imagef(src1, sampler, src1_loc);
22714     float4 val2 = read_imagef(src2, sampler, src2_loc);
22715
22716     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
22717 }
22718 @end verbatim
22719
22720 @end itemize
22721
22722 @section roberts_opencl
22723 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
22724
22725 The filter accepts the following option:
22726
22727 @table @option
22728 @item planes
22729 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22730
22731 @item scale
22732 Set value which will be multiplied with filtered result.
22733 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22734
22735 @item delta
22736 Set value which will be added to filtered result.
22737 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22738 @end table
22739
22740 @subsection Example
22741
22742 @itemize
22743 @item
22744 Apply the Roberts cross operator with scale set to 2 and delta set to 10
22745 @example
22746 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
22747 @end example
22748 @end itemize
22749
22750 @section sobel_opencl
22751
22752 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
22753
22754 The filter accepts the following option:
22755
22756 @table @option
22757 @item planes
22758 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
22759
22760 @item scale
22761 Set value which will be multiplied with filtered result.
22762 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
22763
22764 @item delta
22765 Set value which will be added to filtered result.
22766 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
22767 @end table
22768
22769 @subsection Example
22770
22771 @itemize
22772 @item
22773 Apply sobel operator with scale set to 2 and delta set to 10
22774 @example
22775 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
22776 @end example
22777 @end itemize
22778
22779 @section tonemap_opencl
22780
22781 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
22782
22783 It accepts the following parameters:
22784
22785 @table @option
22786 @item tonemap
22787 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
22788
22789 @item param
22790 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
22791
22792 @item desat
22793 Apply desaturation for highlights that exceed this level of brightness. The
22794 higher the parameter, the more color information will be preserved. This
22795 setting helps prevent unnaturally blown-out colors for super-highlights, by
22796 (smoothly) turning into white instead. This makes images feel more natural,
22797 at the cost of reducing information about out-of-range colors.
22798
22799 The default value is 0.5, and the algorithm here is a little different from
22800 the cpu version tonemap currently. A setting of 0.0 disables this option.
22801
22802 @item threshold
22803 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
22804 is used to detect whether the scene has changed or not. If the distance between
22805 the current frame average brightness and the current running average exceeds
22806 a threshold value, we would re-calculate scene average and peak brightness.
22807 The default value is 0.2.
22808
22809 @item format
22810 Specify the output pixel format.
22811
22812 Currently supported formats are:
22813 @table @var
22814 @item p010
22815 @item nv12
22816 @end table
22817
22818 @item range, r
22819 Set the output color range.
22820
22821 Possible values are:
22822 @table @var
22823 @item tv/mpeg
22824 @item pc/jpeg
22825 @end table
22826
22827 Default is same as input.
22828
22829 @item primaries, p
22830 Set the output color primaries.
22831
22832 Possible values are:
22833 @table @var
22834 @item bt709
22835 @item bt2020
22836 @end table
22837
22838 Default is same as input.
22839
22840 @item transfer, t
22841 Set the output transfer characteristics.
22842
22843 Possible values are:
22844 @table @var
22845 @item bt709
22846 @item bt2020
22847 @end table
22848
22849 Default is bt709.
22850
22851 @item matrix, m
22852 Set the output colorspace matrix.
22853
22854 Possible value are:
22855 @table @var
22856 @item bt709
22857 @item bt2020
22858 @end table
22859
22860 Default is same as input.
22861
22862 @end table
22863
22864 @subsection Example
22865
22866 @itemize
22867 @item
22868 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
22869 @example
22870 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
22871 @end example
22872 @end itemize
22873
22874 @section unsharp_opencl
22875
22876 Sharpen or blur the input video.
22877
22878 It accepts the following parameters:
22879
22880 @table @option
22881 @item luma_msize_x, lx
22882 Set the luma matrix horizontal size.
22883 Range is @code{[1, 23]} and default value is @code{5}.
22884
22885 @item luma_msize_y, ly
22886 Set the luma matrix vertical size.
22887 Range is @code{[1, 23]} and default value is @code{5}.
22888
22889 @item luma_amount, la
22890 Set the luma effect strength.
22891 Range is @code{[-10, 10]} and default value is @code{1.0}.
22892
22893 Negative values will blur the input video, while positive values will
22894 sharpen it, a value of zero will disable the effect.
22895
22896 @item chroma_msize_x, cx
22897 Set the chroma matrix horizontal size.
22898 Range is @code{[1, 23]} and default value is @code{5}.
22899
22900 @item chroma_msize_y, cy
22901 Set the chroma matrix vertical size.
22902 Range is @code{[1, 23]} and default value is @code{5}.
22903
22904 @item chroma_amount, ca
22905 Set the chroma effect strength.
22906 Range is @code{[-10, 10]} and default value is @code{0.0}.
22907
22908 Negative values will blur the input video, while positive values will
22909 sharpen it, a value of zero will disable the effect.
22910
22911 @end table
22912
22913 All parameters are optional and default to the equivalent of the
22914 string '5:5:1.0:5:5:0.0'.
22915
22916 @subsection Examples
22917
22918 @itemize
22919 @item
22920 Apply strong luma sharpen effect:
22921 @example
22922 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
22923 @end example
22924
22925 @item
22926 Apply a strong blur of both luma and chroma parameters:
22927 @example
22928 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
22929 @end example
22930 @end itemize
22931
22932 @section xfade_opencl
22933
22934 Cross fade two videos with custom transition effect by using OpenCL.
22935
22936 It accepts the following options:
22937
22938 @table @option
22939 @item transition
22940 Set one of possible transition effects.
22941
22942 @table @option
22943 @item custom
22944 Select custom transition effect, the actual transition description
22945 will be picked from source and kernel options.
22946
22947 @item fade
22948 @item wipeleft
22949 @item wiperight
22950 @item wipeup
22951 @item wipedown
22952 @item slideleft
22953 @item slideright
22954 @item slideup
22955 @item slidedown
22956
22957 Default transition is fade.
22958 @end table
22959
22960 @item source
22961 OpenCL program source file for custom transition.
22962
22963 @item kernel
22964 Set name of kernel to use for custom transition from program source file.
22965
22966 @item duration
22967 Set duration of video transition.
22968
22969 @item offset
22970 Set time of start of transition relative to first video.
22971 @end table
22972
22973 The program source file must contain a kernel function with the given name,
22974 which will be run once for each plane of the output.  Each run on a plane
22975 gets enqueued as a separate 2D global NDRange with one work-item for each
22976 pixel to be generated.  The global ID offset for each work-item is therefore
22977 the coordinates of a pixel in the destination image.
22978
22979 The kernel function needs to take the following arguments:
22980 @itemize
22981 @item
22982 Destination image, @var{__write_only image2d_t}.
22983
22984 This image will become the output; the kernel should write all of it.
22985
22986 @item
22987 First Source image, @var{__read_only image2d_t}.
22988 Second Source image, @var{__read_only image2d_t}.
22989
22990 These are the most recent images on each input.  The kernel may read from
22991 them to generate the output, but they can't be written to.
22992
22993 @item
22994 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
22995 @end itemize
22996
22997 Example programs:
22998
22999 @itemize
23000 @item
23001 Apply dots curtain transition effect:
23002 @verbatim
23003 __kernel void blend_images(__write_only image2d_t dst,
23004                            __read_only  image2d_t src1,
23005                            __read_only  image2d_t src2,
23006                            float progress)
23007 {
23008     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
23009                                CLK_FILTER_LINEAR);
23010     int2  p = (int2)(get_global_id(0), get_global_id(1));
23011     float2 rp = (float2)(get_global_id(0), get_global_id(1));
23012     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
23013     rp = rp / dim;
23014
23015     float2 dots = (float2)(20.0, 20.0);
23016     float2 center = (float2)(0,0);
23017     float2 unused;
23018
23019     float4 val1 = read_imagef(src1, sampler, p);
23020     float4 val2 = read_imagef(src2, sampler, p);
23021     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
23022
23023     write_imagef(dst, p, next ? val1 : val2);
23024 }
23025 @end verbatim
23026
23027 @end itemize
23028
23029 @c man end OPENCL VIDEO FILTERS
23030
23031 @chapter VAAPI Video Filters
23032 @c man begin VAAPI VIDEO FILTERS
23033
23034 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
23035
23036 To enable compilation of these filters you need to configure FFmpeg with
23037 @code{--enable-vaapi}.
23038
23039 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}
23040
23041 @section tonemap_vaapi
23042
23043 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
23044 It maps the dynamic range of HDR10 content to the SDR content.
23045 It currently only accepts HDR10 as input.
23046
23047 It accepts the following parameters:
23048
23049 @table @option
23050 @item format
23051 Specify the output pixel format.
23052
23053 Currently supported formats are:
23054 @table @var
23055 @item p010
23056 @item nv12
23057 @end table
23058
23059 Default is nv12.
23060
23061 @item primaries, p
23062 Set the output color primaries.
23063
23064 Default is same as input.
23065
23066 @item transfer, t
23067 Set the output transfer characteristics.
23068
23069 Default is bt709.
23070
23071 @item matrix, m
23072 Set the output colorspace matrix.
23073
23074 Default is same as input.
23075
23076 @end table
23077
23078 @subsection Example
23079
23080 @itemize
23081 @item
23082 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
23083 @example
23084 tonemap_vaapi=format=p010:t=bt2020-10
23085 @end example
23086 @end itemize
23087
23088 @c man end VAAPI VIDEO FILTERS
23089
23090 @chapter Video Sources
23091 @c man begin VIDEO SOURCES
23092
23093 Below is a description of the currently available video sources.
23094
23095 @section buffer
23096
23097 Buffer video frames, and make them available to the filter chain.
23098
23099 This source is mainly intended for a programmatic use, in particular
23100 through the interface defined in @file{libavfilter/buffersrc.h}.
23101
23102 It accepts the following parameters:
23103
23104 @table @option
23105
23106 @item video_size
23107 Specify the size (width and height) of the buffered video frames. For the
23108 syntax of this option, check the
23109 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23110
23111 @item width
23112 The input video width.
23113
23114 @item height
23115 The input video height.
23116
23117 @item pix_fmt
23118 A string representing the pixel format of the buffered video frames.
23119 It may be a number corresponding to a pixel format, or a pixel format
23120 name.
23121
23122 @item time_base
23123 Specify the timebase assumed by the timestamps of the buffered frames.
23124
23125 @item frame_rate
23126 Specify the frame rate expected for the video stream.
23127
23128 @item pixel_aspect, sar
23129 The sample (pixel) aspect ratio of the input video.
23130
23131 @item sws_param
23132 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
23133 to the filtergraph description to specify swscale flags for automatically
23134 inserted scalers. See @ref{Filtergraph syntax}.
23135
23136 @item hw_frames_ctx
23137 When using a hardware pixel format, this should be a reference to an
23138 AVHWFramesContext describing input frames.
23139 @end table
23140
23141 For example:
23142 @example
23143 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
23144 @end example
23145
23146 will instruct the source to accept video frames with size 320x240 and
23147 with format "yuv410p", assuming 1/24 as the timestamps timebase and
23148 square pixels (1:1 sample aspect ratio).
23149 Since the pixel format with name "yuv410p" corresponds to the number 6
23150 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
23151 this example corresponds to:
23152 @example
23153 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
23154 @end example
23155
23156 Alternatively, the options can be specified as a flat string, but this
23157 syntax is deprecated:
23158
23159 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
23160
23161 @section cellauto
23162
23163 Create a pattern generated by an elementary cellular automaton.
23164
23165 The initial state of the cellular automaton can be defined through the
23166 @option{filename} and @option{pattern} options. If such options are
23167 not specified an initial state is created randomly.
23168
23169 At each new frame a new row in the video is filled with the result of
23170 the cellular automaton next generation. The behavior when the whole
23171 frame is filled is defined by the @option{scroll} option.
23172
23173 This source accepts the following options:
23174
23175 @table @option
23176 @item filename, f
23177 Read the initial cellular automaton state, i.e. the starting row, from
23178 the specified file.
23179 In the file, each non-whitespace character is considered an alive
23180 cell, a newline will terminate the row, and further characters in the
23181 file will be ignored.
23182
23183 @item pattern, p
23184 Read the initial cellular automaton state, i.e. the starting row, from
23185 the specified string.
23186
23187 Each non-whitespace character in the string is considered an alive
23188 cell, a newline will terminate the row, and further characters in the
23189 string will be ignored.
23190
23191 @item rate, r
23192 Set the video rate, that is the number of frames generated per second.
23193 Default is 25.
23194
23195 @item random_fill_ratio, ratio
23196 Set the random fill ratio for the initial cellular automaton row. It
23197 is a floating point number value ranging from 0 to 1, defaults to
23198 1/PHI.
23199
23200 This option is ignored when a file or a pattern is specified.
23201
23202 @item random_seed, seed
23203 Set the seed for filling randomly the initial row, must be an integer
23204 included between 0 and UINT32_MAX. If not specified, or if explicitly
23205 set to -1, the filter will try to use a good random seed on a best
23206 effort basis.
23207
23208 @item rule
23209 Set the cellular automaton rule, it is a number ranging from 0 to 255.
23210 Default value is 110.
23211
23212 @item size, s
23213 Set the size of the output video. For the syntax of this option, check the
23214 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23215
23216 If @option{filename} or @option{pattern} is specified, the size is set
23217 by default to the width of the specified initial state row, and the
23218 height is set to @var{width} * PHI.
23219
23220 If @option{size} is set, it must contain the width of the specified
23221 pattern string, and the specified pattern will be centered in the
23222 larger row.
23223
23224 If a filename or a pattern string is not specified, the size value
23225 defaults to "320x518" (used for a randomly generated initial state).
23226
23227 @item scroll
23228 If set to 1, scroll the output upward when all the rows in the output
23229 have been already filled. If set to 0, the new generated row will be
23230 written over the top row just after the bottom row is filled.
23231 Defaults to 1.
23232
23233 @item start_full, full
23234 If set to 1, completely fill the output with generated rows before
23235 outputting the first frame.
23236 This is the default behavior, for disabling set the value to 0.
23237
23238 @item stitch
23239 If set to 1, stitch the left and right row edges together.
23240 This is the default behavior, for disabling set the value to 0.
23241 @end table
23242
23243 @subsection Examples
23244
23245 @itemize
23246 @item
23247 Read the initial state from @file{pattern}, and specify an output of
23248 size 200x400.
23249 @example
23250 cellauto=f=pattern:s=200x400
23251 @end example
23252
23253 @item
23254 Generate a random initial row with a width of 200 cells, with a fill
23255 ratio of 2/3:
23256 @example
23257 cellauto=ratio=2/3:s=200x200
23258 @end example
23259
23260 @item
23261 Create a pattern generated by rule 18 starting by a single alive cell
23262 centered on an initial row with width 100:
23263 @example
23264 cellauto=p=@@:s=100x400:full=0:rule=18
23265 @end example
23266
23267 @item
23268 Specify a more elaborated initial pattern:
23269 @example
23270 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
23271 @end example
23272
23273 @end itemize
23274
23275 @anchor{coreimagesrc}
23276 @section coreimagesrc
23277 Video source generated on GPU using Apple's CoreImage API on OSX.
23278
23279 This video source is a specialized version of the @ref{coreimage} video filter.
23280 Use a core image generator at the beginning of the applied filterchain to
23281 generate the content.
23282
23283 The coreimagesrc video source accepts the following options:
23284 @table @option
23285 @item list_generators
23286 List all available generators along with all their respective options as well as
23287 possible minimum and maximum values along with the default values.
23288 @example
23289 list_generators=true
23290 @end example
23291
23292 @item size, s
23293 Specify the size of the sourced video. For the syntax of this option, check the
23294 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23295 The default value is @code{320x240}.
23296
23297 @item rate, r
23298 Specify the frame rate of the sourced video, as the number of frames
23299 generated per second. It has to be a string in the format
23300 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23301 number or a valid video frame rate abbreviation. The default value is
23302 "25".
23303
23304 @item sar
23305 Set the sample aspect ratio of the sourced video.
23306
23307 @item duration, d
23308 Set the duration of the sourced video. See
23309 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23310 for the accepted syntax.
23311
23312 If not specified, or the expressed duration is negative, the video is
23313 supposed to be generated forever.
23314 @end table
23315
23316 Additionally, all options of the @ref{coreimage} video filter are accepted.
23317 A complete filterchain can be used for further processing of the
23318 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
23319 and examples for details.
23320
23321 @subsection Examples
23322
23323 @itemize
23324
23325 @item
23326 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
23327 given as complete and escaped command-line for Apple's standard bash shell:
23328 @example
23329 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
23330 @end example
23331 This example is equivalent to the QRCode example of @ref{coreimage} without the
23332 need for a nullsrc video source.
23333 @end itemize
23334
23335
23336 @section gradients
23337 Generate several gradients.
23338
23339 @table @option
23340 @item size, s
23341 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23342 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23343
23344 @item rate, r
23345 Set frame rate, expressed as number of frames per second. Default
23346 value is "25".
23347
23348 @item c0, c1, c2, c3, c4, c5, c6, c7
23349 Set 8 colors. Default values for colors is to pick random one.
23350
23351 @item x0, y0, y0, y1
23352 Set gradient line source and destination points. If negative or out of range, random ones
23353 are picked.
23354
23355 @item nb_colors, n
23356 Set number of colors to use at once. Allowed range is from 2 to 8. Default value is 2.
23357
23358 @item seed
23359 Set seed for picking gradient line points.
23360
23361 @item duration, d
23362 Set the duration of the sourced video. See
23363 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23364 for the accepted syntax.
23365
23366 If not specified, or the expressed duration is negative, the video is
23367 supposed to be generated forever.
23368
23369 @item speed
23370 Set speed of gradients rotation.
23371 @end table
23372
23373
23374 @section mandelbrot
23375
23376 Generate a Mandelbrot set fractal, and progressively zoom towards the
23377 point specified with @var{start_x} and @var{start_y}.
23378
23379 This source accepts the following options:
23380
23381 @table @option
23382
23383 @item end_pts
23384 Set the terminal pts value. Default value is 400.
23385
23386 @item end_scale
23387 Set the terminal scale value.
23388 Must be a floating point value. Default value is 0.3.
23389
23390 @item inner
23391 Set the inner coloring mode, that is the algorithm used to draw the
23392 Mandelbrot fractal internal region.
23393
23394 It shall assume one of the following values:
23395 @table @option
23396 @item black
23397 Set black mode.
23398 @item convergence
23399 Show time until convergence.
23400 @item mincol
23401 Set color based on point closest to the origin of the iterations.
23402 @item period
23403 Set period mode.
23404 @end table
23405
23406 Default value is @var{mincol}.
23407
23408 @item bailout
23409 Set the bailout value. Default value is 10.0.
23410
23411 @item maxiter
23412 Set the maximum of iterations performed by the rendering
23413 algorithm. Default value is 7189.
23414
23415 @item outer
23416 Set outer coloring mode.
23417 It shall assume one of following values:
23418 @table @option
23419 @item iteration_count
23420 Set iteration count mode.
23421 @item normalized_iteration_count
23422 set normalized iteration count mode.
23423 @end table
23424 Default value is @var{normalized_iteration_count}.
23425
23426 @item rate, r
23427 Set frame rate, expressed as number of frames per second. Default
23428 value is "25".
23429
23430 @item size, s
23431 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23432 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23433
23434 @item start_scale
23435 Set the initial scale value. Default value is 3.0.
23436
23437 @item start_x
23438 Set the initial x position. Must be a floating point value between
23439 -100 and 100. Default value is -0.743643887037158704752191506114774.
23440
23441 @item start_y
23442 Set the initial y position. Must be a floating point value between
23443 -100 and 100. Default value is -0.131825904205311970493132056385139.
23444 @end table
23445
23446 @section mptestsrc
23447
23448 Generate various test patterns, as generated by the MPlayer test filter.
23449
23450 The size of the generated video is fixed, and is 256x256.
23451 This source is useful in particular for testing encoding features.
23452
23453 This source accepts the following options:
23454
23455 @table @option
23456
23457 @item rate, r
23458 Specify the frame rate of the sourced video, as the number of frames
23459 generated per second. It has to be a string in the format
23460 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23461 number or a valid video frame rate abbreviation. The default value is
23462 "25".
23463
23464 @item duration, d
23465 Set the duration of the sourced video. See
23466 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23467 for the accepted syntax.
23468
23469 If not specified, or the expressed duration is negative, the video is
23470 supposed to be generated forever.
23471
23472 @item test, t
23473
23474 Set the number or the name of the test to perform. Supported tests are:
23475 @table @option
23476 @item dc_luma
23477 @item dc_chroma
23478 @item freq_luma
23479 @item freq_chroma
23480 @item amp_luma
23481 @item amp_chroma
23482 @item cbp
23483 @item mv
23484 @item ring1
23485 @item ring2
23486 @item all
23487
23488 @item max_frames, m
23489 Set the maximum number of frames generated for each test, default value is 30.
23490
23491 @end table
23492
23493 Default value is "all", which will cycle through the list of all tests.
23494 @end table
23495
23496 Some examples:
23497 @example
23498 mptestsrc=t=dc_luma
23499 @end example
23500
23501 will generate a "dc_luma" test pattern.
23502
23503 @section frei0r_src
23504
23505 Provide a frei0r source.
23506
23507 To enable compilation of this filter you need to install the frei0r
23508 header and configure FFmpeg with @code{--enable-frei0r}.
23509
23510 This source accepts the following parameters:
23511
23512 @table @option
23513
23514 @item size
23515 The size of the video to generate. For the syntax of this option, check the
23516 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23517
23518 @item framerate
23519 The framerate of the generated video. It may be a string of the form
23520 @var{num}/@var{den} or a frame rate abbreviation.
23521
23522 @item filter_name
23523 The name to the frei0r source to load. For more information regarding frei0r and
23524 how to set the parameters, read the @ref{frei0r} section in the video filters
23525 documentation.
23526
23527 @item filter_params
23528 A '|'-separated list of parameters to pass to the frei0r source.
23529
23530 @end table
23531
23532 For example, to generate a frei0r partik0l source with size 200x200
23533 and frame rate 10 which is overlaid on the overlay filter main input:
23534 @example
23535 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
23536 @end example
23537
23538 @section life
23539
23540 Generate a life pattern.
23541
23542 This source is based on a generalization of John Conway's life game.
23543
23544 The sourced input represents a life grid, each pixel represents a cell
23545 which can be in one of two possible states, alive or dead. Every cell
23546 interacts with its eight neighbours, which are the cells that are
23547 horizontally, vertically, or diagonally adjacent.
23548
23549 At each interaction the grid evolves according to the adopted rule,
23550 which specifies the number of neighbor alive cells which will make a
23551 cell stay alive or born. The @option{rule} option allows one to specify
23552 the rule to adopt.
23553
23554 This source accepts the following options:
23555
23556 @table @option
23557 @item filename, f
23558 Set the file from which to read the initial grid state. In the file,
23559 each non-whitespace character is considered an alive cell, and newline
23560 is used to delimit the end of each row.
23561
23562 If this option is not specified, the initial grid is generated
23563 randomly.
23564
23565 @item rate, r
23566 Set the video rate, that is the number of frames generated per second.
23567 Default is 25.
23568
23569 @item random_fill_ratio, ratio
23570 Set the random fill ratio for the initial random grid. It is a
23571 floating point number value ranging from 0 to 1, defaults to 1/PHI.
23572 It is ignored when a file is specified.
23573
23574 @item random_seed, seed
23575 Set the seed for filling the initial random grid, must be an integer
23576 included between 0 and UINT32_MAX. If not specified, or if explicitly
23577 set to -1, the filter will try to use a good random seed on a best
23578 effort basis.
23579
23580 @item rule
23581 Set the life rule.
23582
23583 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
23584 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
23585 @var{NS} specifies the number of alive neighbor cells which make a
23586 live cell stay alive, and @var{NB} the number of alive neighbor cells
23587 which make a dead cell to become alive (i.e. to "born").
23588 "s" and "b" can be used in place of "S" and "B", respectively.
23589
23590 Alternatively a rule can be specified by an 18-bits integer. The 9
23591 high order bits are used to encode the next cell state if it is alive
23592 for each number of neighbor alive cells, the low order bits specify
23593 the rule for "borning" new cells. Higher order bits encode for an
23594 higher number of neighbor cells.
23595 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
23596 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
23597
23598 Default value is "S23/B3", which is the original Conway's game of life
23599 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
23600 cells, and will born a new cell if there are three alive cells around
23601 a dead cell.
23602
23603 @item size, s
23604 Set the size of the output video. For the syntax of this option, check the
23605 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23606
23607 If @option{filename} is specified, the size is set by default to the
23608 same size of the input file. If @option{size} is set, it must contain
23609 the size specified in the input file, and the initial grid defined in
23610 that file is centered in the larger resulting area.
23611
23612 If a filename is not specified, the size value defaults to "320x240"
23613 (used for a randomly generated initial grid).
23614
23615 @item stitch
23616 If set to 1, stitch the left and right grid edges together, and the
23617 top and bottom edges also. Defaults to 1.
23618
23619 @item mold
23620 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
23621 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
23622 value from 0 to 255.
23623
23624 @item life_color
23625 Set the color of living (or new born) cells.
23626
23627 @item death_color
23628 Set the color of dead cells. If @option{mold} is set, this is the first color
23629 used to represent a dead cell.
23630
23631 @item mold_color
23632 Set mold color, for definitely dead and moldy cells.
23633
23634 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
23635 ffmpeg-utils manual,ffmpeg-utils}.
23636 @end table
23637
23638 @subsection Examples
23639
23640 @itemize
23641 @item
23642 Read a grid from @file{pattern}, and center it on a grid of size
23643 300x300 pixels:
23644 @example
23645 life=f=pattern:s=300x300
23646 @end example
23647
23648 @item
23649 Generate a random grid of size 200x200, with a fill ratio of 2/3:
23650 @example
23651 life=ratio=2/3:s=200x200
23652 @end example
23653
23654 @item
23655 Specify a custom rule for evolving a randomly generated grid:
23656 @example
23657 life=rule=S14/B34
23658 @end example
23659
23660 @item
23661 Full example with slow death effect (mold) using @command{ffplay}:
23662 @example
23663 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
23664 @end example
23665 @end itemize
23666
23667 @anchor{allrgb}
23668 @anchor{allyuv}
23669 @anchor{color}
23670 @anchor{haldclutsrc}
23671 @anchor{nullsrc}
23672 @anchor{pal75bars}
23673 @anchor{pal100bars}
23674 @anchor{rgbtestsrc}
23675 @anchor{smptebars}
23676 @anchor{smptehdbars}
23677 @anchor{testsrc}
23678 @anchor{testsrc2}
23679 @anchor{yuvtestsrc}
23680 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
23681
23682 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
23683
23684 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
23685
23686 The @code{color} source provides an uniformly colored input.
23687
23688 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
23689 @ref{haldclut} filter.
23690
23691 The @code{nullsrc} source returns unprocessed video frames. It is
23692 mainly useful to be employed in analysis / debugging tools, or as the
23693 source for filters which ignore the input data.
23694
23695 The @code{pal75bars} source generates a color bars pattern, based on
23696 EBU PAL recommendations with 75% color levels.
23697
23698 The @code{pal100bars} source generates a color bars pattern, based on
23699 EBU PAL recommendations with 100% color levels.
23700
23701 The @code{rgbtestsrc} source generates an RGB test pattern useful for
23702 detecting RGB vs BGR issues. You should see a red, green and blue
23703 stripe from top to bottom.
23704
23705 The @code{smptebars} source generates a color bars pattern, based on
23706 the SMPTE Engineering Guideline EG 1-1990.
23707
23708 The @code{smptehdbars} source generates a color bars pattern, based on
23709 the SMPTE RP 219-2002.
23710
23711 The @code{testsrc} source generates a test video pattern, showing a
23712 color pattern, a scrolling gradient and a timestamp. This is mainly
23713 intended for testing purposes.
23714
23715 The @code{testsrc2} source is similar to testsrc, but supports more
23716 pixel formats instead of just @code{rgb24}. This allows using it as an
23717 input for other tests without requiring a format conversion.
23718
23719 The @code{yuvtestsrc} source generates an YUV test pattern. You should
23720 see a y, cb and cr stripe from top to bottom.
23721
23722 The sources accept the following parameters:
23723
23724 @table @option
23725
23726 @item level
23727 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
23728 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
23729 pixels to be used as identity matrix for 3D lookup tables. Each component is
23730 coded on a @code{1/(N*N)} scale.
23731
23732 @item color, c
23733 Specify the color of the source, only available in the @code{color}
23734 source. For the syntax of this option, check the
23735 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
23736
23737 @item size, s
23738 Specify the size of the sourced video. For the syntax of this option, check the
23739 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23740 The default value is @code{320x240}.
23741
23742 This option is not available with the @code{allrgb}, @code{allyuv}, and
23743 @code{haldclutsrc} filters.
23744
23745 @item rate, r
23746 Specify the frame rate of the sourced video, as the number of frames
23747 generated per second. It has to be a string in the format
23748 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
23749 number or a valid video frame rate abbreviation. The default value is
23750 "25".
23751
23752 @item duration, d
23753 Set the duration of the sourced video. See
23754 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
23755 for the accepted syntax.
23756
23757 If not specified, or the expressed duration is negative, the video is
23758 supposed to be generated forever.
23759
23760 Since the frame rate is used as time base, all frames including the last one
23761 will have their full duration. If the specified duration is not a multiple
23762 of the frame duration, it will be rounded up.
23763
23764 @item sar
23765 Set the sample aspect ratio of the sourced video.
23766
23767 @item alpha
23768 Specify the alpha (opacity) of the background, only available in the
23769 @code{testsrc2} source. The value must be between 0 (fully transparent) and
23770 255 (fully opaque, the default).
23771
23772 @item decimals, n
23773 Set the number of decimals to show in the timestamp, only available in the
23774 @code{testsrc} source.
23775
23776 The displayed timestamp value will correspond to the original
23777 timestamp value multiplied by the power of 10 of the specified
23778 value. Default value is 0.
23779 @end table
23780
23781 @subsection Examples
23782
23783 @itemize
23784 @item
23785 Generate a video with a duration of 5.3 seconds, with size
23786 176x144 and a frame rate of 10 frames per second:
23787 @example
23788 testsrc=duration=5.3:size=qcif:rate=10
23789 @end example
23790
23791 @item
23792 The following graph description will generate a red source
23793 with an opacity of 0.2, with size "qcif" and a frame rate of 10
23794 frames per second:
23795 @example
23796 color=c=red@@0.2:s=qcif:r=10
23797 @end example
23798
23799 @item
23800 If the input content is to be ignored, @code{nullsrc} can be used. The
23801 following command generates noise in the luminance plane by employing
23802 the @code{geq} filter:
23803 @example
23804 nullsrc=s=256x256, geq=random(1)*255:128:128
23805 @end example
23806 @end itemize
23807
23808 @subsection Commands
23809
23810 The @code{color} source supports the following commands:
23811
23812 @table @option
23813 @item c, color
23814 Set the color of the created image. Accepts the same syntax of the
23815 corresponding @option{color} option.
23816 @end table
23817
23818 @section openclsrc
23819
23820 Generate video using an OpenCL program.
23821
23822 @table @option
23823
23824 @item source
23825 OpenCL program source file.
23826
23827 @item kernel
23828 Kernel name in program.
23829
23830 @item size, s
23831 Size of frames to generate.  This must be set.
23832
23833 @item format
23834 Pixel format to use for the generated frames.  This must be set.
23835
23836 @item rate, r
23837 Number of frames generated every second.  Default value is '25'.
23838
23839 @end table
23840
23841 For details of how the program loading works, see the @ref{program_opencl}
23842 filter.
23843
23844 Example programs:
23845
23846 @itemize
23847 @item
23848 Generate a colour ramp by setting pixel values from the position of the pixel
23849 in the output image.  (Note that this will work with all pixel formats, but
23850 the generated output will not be the same.)
23851 @verbatim
23852 __kernel void ramp(__write_only image2d_t dst,
23853                    unsigned int index)
23854 {
23855     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23856
23857     float4 val;
23858     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
23859
23860     write_imagef(dst, loc, val);
23861 }
23862 @end verbatim
23863
23864 @item
23865 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
23866 @verbatim
23867 __kernel void sierpinski_carpet(__write_only image2d_t dst,
23868                                 unsigned int index)
23869 {
23870     int2 loc = (int2)(get_global_id(0), get_global_id(1));
23871
23872     float4 value = 0.0f;
23873     int x = loc.x + index;
23874     int y = loc.y + index;
23875     while (x > 0 || y > 0) {
23876         if (x % 3 == 1 && y % 3 == 1) {
23877             value = 1.0f;
23878             break;
23879         }
23880         x /= 3;
23881         y /= 3;
23882     }
23883
23884     write_imagef(dst, loc, value);
23885 }
23886 @end verbatim
23887
23888 @end itemize
23889
23890 @section sierpinski
23891
23892 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
23893
23894 This source accepts the following options:
23895
23896 @table @option
23897 @item size, s
23898 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
23899 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
23900
23901 @item rate, r
23902 Set frame rate, expressed as number of frames per second. Default
23903 value is "25".
23904
23905 @item seed
23906 Set seed which is used for random panning.
23907
23908 @item jump
23909 Set max jump for single pan destination. Allowed range is from 1 to 10000.
23910
23911 @item type
23912 Set fractal type, can be default @code{carpet} or @code{triangle}.
23913 @end table
23914
23915 @c man end VIDEO SOURCES
23916
23917 @chapter Video Sinks
23918 @c man begin VIDEO SINKS
23919
23920 Below is a description of the currently available video sinks.
23921
23922 @section buffersink
23923
23924 Buffer video frames, and make them available to the end of the filter
23925 graph.
23926
23927 This sink is mainly intended for programmatic use, in particular
23928 through the interface defined in @file{libavfilter/buffersink.h}
23929 or the options system.
23930
23931 It accepts a pointer to an AVBufferSinkContext structure, which
23932 defines the incoming buffers' formats, to be passed as the opaque
23933 parameter to @code{avfilter_init_filter} for initialization.
23934
23935 @section nullsink
23936
23937 Null video sink: do absolutely nothing with the input video. It is
23938 mainly useful as a template and for use in analysis / debugging
23939 tools.
23940
23941 @c man end VIDEO SINKS
23942
23943 @chapter Multimedia Filters
23944 @c man begin MULTIMEDIA FILTERS
23945
23946 Below is a description of the currently available multimedia filters.
23947
23948 @section abitscope
23949
23950 Convert input audio to a video output, displaying the audio bit scope.
23951
23952 The filter accepts the following options:
23953
23954 @table @option
23955 @item rate, r
23956 Set frame rate, expressed as number of frames per second. Default
23957 value is "25".
23958
23959 @item size, s
23960 Specify the video size for the output. For the syntax of this option, check the
23961 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23962 Default value is @code{1024x256}.
23963
23964 @item colors
23965 Specify list of colors separated by space or by '|' which will be used to
23966 draw channels. Unrecognized or missing colors will be replaced
23967 by white color.
23968 @end table
23969
23970 @section adrawgraph
23971 Draw a graph using input audio metadata.
23972
23973 See @ref{drawgraph}
23974
23975 @section agraphmonitor
23976
23977 See @ref{graphmonitor}.
23978
23979 @section ahistogram
23980
23981 Convert input audio to a video output, displaying the volume histogram.
23982
23983 The filter accepts the following options:
23984
23985 @table @option
23986 @item dmode
23987 Specify how histogram is calculated.
23988
23989 It accepts the following values:
23990 @table @samp
23991 @item single
23992 Use single histogram for all channels.
23993 @item separate
23994 Use separate histogram for each channel.
23995 @end table
23996 Default is @code{single}.
23997
23998 @item rate, r
23999 Set frame rate, expressed as number of frames per second. Default
24000 value is "25".
24001
24002 @item size, s
24003 Specify the video size for the output. For the syntax of this option, check the
24004 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24005 Default value is @code{hd720}.
24006
24007 @item scale
24008 Set display scale.
24009
24010 It accepts the following values:
24011 @table @samp
24012 @item log
24013 logarithmic
24014 @item sqrt
24015 square root
24016 @item cbrt
24017 cubic root
24018 @item lin
24019 linear
24020 @item rlog
24021 reverse logarithmic
24022 @end table
24023 Default is @code{log}.
24024
24025 @item ascale
24026 Set amplitude scale.
24027
24028 It accepts the following values:
24029 @table @samp
24030 @item log
24031 logarithmic
24032 @item lin
24033 linear
24034 @end table
24035 Default is @code{log}.
24036
24037 @item acount
24038 Set how much frames to accumulate in histogram.
24039 Default is 1. Setting this to -1 accumulates all frames.
24040
24041 @item rheight
24042 Set histogram ratio of window height.
24043
24044 @item slide
24045 Set sonogram sliding.
24046
24047 It accepts the following values:
24048 @table @samp
24049 @item replace
24050 replace old rows with new ones.
24051 @item scroll
24052 scroll from top to bottom.
24053 @end table
24054 Default is @code{replace}.
24055 @end table
24056
24057 @section aphasemeter
24058
24059 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
24060 representing mean phase of current audio frame. A video output can also be produced and is
24061 enabled by default. The audio is passed through as first output.
24062
24063 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
24064 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
24065 and @code{1} means channels are in phase.
24066
24067 The filter accepts the following options, all related to its video output:
24068
24069 @table @option
24070 @item rate, r
24071 Set the output frame rate. Default value is @code{25}.
24072
24073 @item size, s
24074 Set the video size for the output. For the syntax of this option, check the
24075 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24076 Default value is @code{800x400}.
24077
24078 @item rc
24079 @item gc
24080 @item bc
24081 Specify the red, green, blue contrast. Default values are @code{2},
24082 @code{7} and @code{1}.
24083 Allowed range is @code{[0, 255]}.
24084
24085 @item mpc
24086 Set color which will be used for drawing median phase. If color is
24087 @code{none} which is default, no median phase value will be drawn.
24088
24089 @item video
24090 Enable video output. Default is enabled.
24091 @end table
24092
24093 @subsection phasing detection
24094
24095 The filter also detects out of phase and mono sequences in stereo streams.
24096 It logs the sequence start, end and duration when it lasts longer or as long as the minimum set.
24097
24098 The filter accepts the following options for this detection:
24099
24100 @table @option
24101 @item phasing
24102 Enable mono and out of phase detection. Default is disabled.
24103
24104 @item tolerance, t
24105 Set phase tolerance for mono detection, in amplitude ratio. Default is @code{0}.
24106 Allowed range is @code{[0, 1]}.
24107
24108 @item angle, a
24109 Set angle threshold for out of phase detection, in degree. Default is @code{170}.
24110 Allowed range is @code{[90, 180]}.
24111
24112 @item duration, d
24113 Set mono or out of phase duration until notification, expressed in seconds. Default is @code{2}.
24114 @end table
24115
24116 @subsection Examples
24117
24118 @itemize
24119 @item
24120 Complete example with @command{ffmpeg} to detect 1 second of mono with 0.001 phase tolerance:
24121 @example
24122 ffmpeg -i stereo.wav -af aphasemeter=video=0:phasing=1:duration=1:tolerance=0.001 -f null -
24123 @end example
24124 @end itemize
24125
24126 @section avectorscope
24127
24128 Convert input audio to a video output, representing the audio vector
24129 scope.
24130
24131 The filter is used to measure the difference between channels of stereo
24132 audio stream. A monaural signal, consisting of identical left and right
24133 signal, results in straight vertical line. Any stereo separation is visible
24134 as a deviation from this line, creating a Lissajous figure.
24135 If the straight (or deviation from it) but horizontal line appears this
24136 indicates that the left and right channels are out of phase.
24137
24138 The filter accepts the following options:
24139
24140 @table @option
24141 @item mode, m
24142 Set the vectorscope mode.
24143
24144 Available values are:
24145 @table @samp
24146 @item lissajous
24147 Lissajous rotated by 45 degrees.
24148
24149 @item lissajous_xy
24150 Same as above but not rotated.
24151
24152 @item polar
24153 Shape resembling half of circle.
24154 @end table
24155
24156 Default value is @samp{lissajous}.
24157
24158 @item size, s
24159 Set the video size for the output. For the syntax of this option, check the
24160 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24161 Default value is @code{400x400}.
24162
24163 @item rate, r
24164 Set the output frame rate. Default value is @code{25}.
24165
24166 @item rc
24167 @item gc
24168 @item bc
24169 @item ac
24170 Specify the red, green, blue and alpha contrast. Default values are @code{40},
24171 @code{160}, @code{80} and @code{255}.
24172 Allowed range is @code{[0, 255]}.
24173
24174 @item rf
24175 @item gf
24176 @item bf
24177 @item af
24178 Specify the red, green, blue and alpha fade. Default values are @code{15},
24179 @code{10}, @code{5} and @code{5}.
24180 Allowed range is @code{[0, 255]}.
24181
24182 @item zoom
24183 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
24184 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
24185
24186 @item draw
24187 Set the vectorscope drawing mode.
24188
24189 Available values are:
24190 @table @samp
24191 @item dot
24192 Draw dot for each sample.
24193
24194 @item line
24195 Draw line between previous and current sample.
24196 @end table
24197
24198 Default value is @samp{dot}.
24199
24200 @item scale
24201 Specify amplitude scale of audio samples.
24202
24203 Available values are:
24204 @table @samp
24205 @item lin
24206 Linear.
24207
24208 @item sqrt
24209 Square root.
24210
24211 @item cbrt
24212 Cubic root.
24213
24214 @item log
24215 Logarithmic.
24216 @end table
24217
24218 @item swap
24219 Swap left channel axis with right channel axis.
24220
24221 @item mirror
24222 Mirror axis.
24223
24224 @table @samp
24225 @item none
24226 No mirror.
24227
24228 @item x
24229 Mirror only x axis.
24230
24231 @item y
24232 Mirror only y axis.
24233
24234 @item xy
24235 Mirror both axis.
24236 @end table
24237
24238 @end table
24239
24240 @subsection Examples
24241
24242 @itemize
24243 @item
24244 Complete example using @command{ffplay}:
24245 @example
24246 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24247              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
24248 @end example
24249 @end itemize
24250
24251 @section bench, abench
24252
24253 Benchmark part of a filtergraph.
24254
24255 The filter accepts the following options:
24256
24257 @table @option
24258 @item action
24259 Start or stop a timer.
24260
24261 Available values are:
24262 @table @samp
24263 @item start
24264 Get the current time, set it as frame metadata (using the key
24265 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
24266
24267 @item stop
24268 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
24269 the input frame metadata to get the time difference. Time difference, average,
24270 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
24271 @code{min}) are then printed. The timestamps are expressed in seconds.
24272 @end table
24273 @end table
24274
24275 @subsection Examples
24276
24277 @itemize
24278 @item
24279 Benchmark @ref{selectivecolor} filter:
24280 @example
24281 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
24282 @end example
24283 @end itemize
24284
24285 @section concat
24286
24287 Concatenate audio and video streams, joining them together one after the
24288 other.
24289
24290 The filter works on segments of synchronized video and audio streams. All
24291 segments must have the same number of streams of each type, and that will
24292 also be the number of streams at output.
24293
24294 The filter accepts the following options:
24295
24296 @table @option
24297
24298 @item n
24299 Set the number of segments. Default is 2.
24300
24301 @item v
24302 Set the number of output video streams, that is also the number of video
24303 streams in each segment. Default is 1.
24304
24305 @item a
24306 Set the number of output audio streams, that is also the number of audio
24307 streams in each segment. Default is 0.
24308
24309 @item unsafe
24310 Activate unsafe mode: do not fail if segments have a different format.
24311
24312 @end table
24313
24314 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
24315 @var{a} audio outputs.
24316
24317 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
24318 segment, in the same order as the outputs, then the inputs for the second
24319 segment, etc.
24320
24321 Related streams do not always have exactly the same duration, for various
24322 reasons including codec frame size or sloppy authoring. For that reason,
24323 related synchronized streams (e.g. a video and its audio track) should be
24324 concatenated at once. The concat filter will use the duration of the longest
24325 stream in each segment (except the last one), and if necessary pad shorter
24326 audio streams with silence.
24327
24328 For this filter to work correctly, all segments must start at timestamp 0.
24329
24330 All corresponding streams must have the same parameters in all segments; the
24331 filtering system will automatically select a common pixel format for video
24332 streams, and a common sample format, sample rate and channel layout for
24333 audio streams, but other settings, such as resolution, must be converted
24334 explicitly by the user.
24335
24336 Different frame rates are acceptable but will result in variable frame rate
24337 at output; be sure to configure the output file to handle it.
24338
24339 @subsection Examples
24340
24341 @itemize
24342 @item
24343 Concatenate an opening, an episode and an ending, all in bilingual version
24344 (video in stream 0, audio in streams 1 and 2):
24345 @example
24346 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
24347   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
24348    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
24349   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
24350 @end example
24351
24352 @item
24353 Concatenate two parts, handling audio and video separately, using the
24354 (a)movie sources, and adjusting the resolution:
24355 @example
24356 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
24357 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
24358 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
24359 @end example
24360 Note that a desync will happen at the stitch if the audio and video streams
24361 do not have exactly the same duration in the first file.
24362
24363 @end itemize
24364
24365 @subsection Commands
24366
24367 This filter supports the following commands:
24368 @table @option
24369 @item next
24370 Close the current segment and step to the next one
24371 @end table
24372
24373 @anchor{ebur128}
24374 @section ebur128
24375
24376 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
24377 level. By default, it logs a message at a frequency of 10Hz with the
24378 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
24379 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
24380
24381 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
24382 sample format is double-precision floating point. The input stream will be converted to
24383 this specification, if needed. Users may need to insert aformat and/or aresample filters
24384 after this filter to obtain the original parameters.
24385
24386 The filter also has a video output (see the @var{video} option) with a real
24387 time graph to observe the loudness evolution. The graphic contains the logged
24388 message mentioned above, so it is not printed anymore when this option is set,
24389 unless the verbose logging is set. The main graphing area contains the
24390 short-term loudness (3 seconds of analysis), and the gauge on the right is for
24391 the momentary loudness (400 milliseconds), but can optionally be configured
24392 to instead display short-term loudness (see @var{gauge}).
24393
24394 The green area marks a  +/- 1LU target range around the target loudness
24395 (-23LUFS by default, unless modified through @var{target}).
24396
24397 More information about the Loudness Recommendation EBU R128 on
24398 @url{http://tech.ebu.ch/loudness}.
24399
24400 The filter accepts the following options:
24401
24402 @table @option
24403
24404 @item video
24405 Activate the video output. The audio stream is passed unchanged whether this
24406 option is set or no. The video stream will be the first output stream if
24407 activated. Default is @code{0}.
24408
24409 @item size
24410 Set the video size. This option is for video only. For the syntax of this
24411 option, check the
24412 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24413 Default and minimum resolution is @code{640x480}.
24414
24415 @item meter
24416 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
24417 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
24418 other integer value between this range is allowed.
24419
24420 @item metadata
24421 Set metadata injection. If set to @code{1}, the audio input will be segmented
24422 into 100ms output frames, each of them containing various loudness information
24423 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
24424
24425 Default is @code{0}.
24426
24427 @item framelog
24428 Force the frame logging level.
24429
24430 Available values are:
24431 @table @samp
24432 @item info
24433 information logging level
24434 @item verbose
24435 verbose logging level
24436 @end table
24437
24438 By default, the logging level is set to @var{info}. If the @option{video} or
24439 the @option{metadata} options are set, it switches to @var{verbose}.
24440
24441 @item peak
24442 Set peak mode(s).
24443
24444 Available modes can be cumulated (the option is a @code{flag} type). Possible
24445 values are:
24446 @table @samp
24447 @item none
24448 Disable any peak mode (default).
24449 @item sample
24450 Enable sample-peak mode.
24451
24452 Simple peak mode looking for the higher sample value. It logs a message
24453 for sample-peak (identified by @code{SPK}).
24454 @item true
24455 Enable true-peak mode.
24456
24457 If enabled, the peak lookup is done on an over-sampled version of the input
24458 stream for better peak accuracy. It logs a message for true-peak.
24459 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
24460 This mode requires a build with @code{libswresample}.
24461 @end table
24462
24463 @item dualmono
24464 Treat mono input files as "dual mono". If a mono file is intended for playback
24465 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
24466 If set to @code{true}, this option will compensate for this effect.
24467 Multi-channel input files are not affected by this option.
24468
24469 @item panlaw
24470 Set a specific pan law to be used for the measurement of dual mono files.
24471 This parameter is optional, and has a default value of -3.01dB.
24472
24473 @item target
24474 Set a specific target level (in LUFS) used as relative zero in the visualization.
24475 This parameter is optional and has a default value of -23LUFS as specified
24476 by EBU R128. However, material published online may prefer a level of -16LUFS
24477 (e.g. for use with podcasts or video platforms).
24478
24479 @item gauge
24480 Set the value displayed by the gauge. Valid values are @code{momentary} and s
24481 @code{shortterm}. By default the momentary value will be used, but in certain
24482 scenarios it may be more useful to observe the short term value instead (e.g.
24483 live mixing).
24484
24485 @item scale
24486 Sets the display scale for the loudness. Valid parameters are @code{absolute}
24487 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
24488 video output, not the summary or continuous log output.
24489 @end table
24490
24491 @subsection Examples
24492
24493 @itemize
24494 @item
24495 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
24496 @example
24497 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
24498 @end example
24499
24500 @item
24501 Run an analysis with @command{ffmpeg}:
24502 @example
24503 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
24504 @end example
24505 @end itemize
24506
24507 @section interleave, ainterleave
24508
24509 Temporally interleave frames from several inputs.
24510
24511 @code{interleave} works with video inputs, @code{ainterleave} with audio.
24512
24513 These filters read frames from several inputs and send the oldest
24514 queued frame to the output.
24515
24516 Input streams must have well defined, monotonically increasing frame
24517 timestamp values.
24518
24519 In order to submit one frame to output, these filters need to enqueue
24520 at least one frame for each input, so they cannot work in case one
24521 input is not yet terminated and will not receive incoming frames.
24522
24523 For example consider the case when one input is a @code{select} filter
24524 which always drops input frames. The @code{interleave} filter will keep
24525 reading from that input, but it will never be able to send new frames
24526 to output until the input sends an end-of-stream signal.
24527
24528 Also, depending on inputs synchronization, the filters will drop
24529 frames in case one input receives more frames than the other ones, and
24530 the queue is already filled.
24531
24532 These filters accept the following options:
24533
24534 @table @option
24535 @item nb_inputs, n
24536 Set the number of different inputs, it is 2 by default.
24537
24538 @item duration
24539 How to determine the end-of-stream.
24540
24541 @table @option
24542 @item longest
24543 The duration of the longest input. (default)
24544
24545 @item shortest
24546 The duration of the shortest input.
24547
24548 @item first
24549 The duration of the first input.
24550 @end table
24551
24552 @end table
24553
24554 @subsection Examples
24555
24556 @itemize
24557 @item
24558 Interleave frames belonging to different streams using @command{ffmpeg}:
24559 @example
24560 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
24561 @end example
24562
24563 @item
24564 Add flickering blur effect:
24565 @example
24566 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
24567 @end example
24568 @end itemize
24569
24570 @section metadata, ametadata
24571
24572 Manipulate frame metadata.
24573
24574 This filter accepts the following options:
24575
24576 @table @option
24577 @item mode
24578 Set mode of operation of the filter.
24579
24580 Can be one of the following:
24581
24582 @table @samp
24583 @item select
24584 If both @code{value} and @code{key} is set, select frames
24585 which have such metadata. If only @code{key} is set, select
24586 every frame that has such key in metadata.
24587
24588 @item add
24589 Add new metadata @code{key} and @code{value}. If key is already available
24590 do nothing.
24591
24592 @item modify
24593 Modify value of already present key.
24594
24595 @item delete
24596 If @code{value} is set, delete only keys that have such value.
24597 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
24598 the frame.
24599
24600 @item print
24601 Print key and its value if metadata was found. If @code{key} is not set print all
24602 metadata values available in frame.
24603 @end table
24604
24605 @item key
24606 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
24607
24608 @item value
24609 Set metadata value which will be used. This option is mandatory for
24610 @code{modify} and @code{add} mode.
24611
24612 @item function
24613 Which function to use when comparing metadata value and @code{value}.
24614
24615 Can be one of following:
24616
24617 @table @samp
24618 @item same_str
24619 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
24620
24621 @item starts_with
24622 Values are interpreted as strings, returns true if metadata value starts with
24623 the @code{value} option string.
24624
24625 @item less
24626 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
24627
24628 @item equal
24629 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
24630
24631 @item greater
24632 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
24633
24634 @item expr
24635 Values are interpreted as floats, returns true if expression from option @code{expr}
24636 evaluates to true.
24637
24638 @item ends_with
24639 Values are interpreted as strings, returns true if metadata value ends with
24640 the @code{value} option string.
24641 @end table
24642
24643 @item expr
24644 Set expression which is used when @code{function} is set to @code{expr}.
24645 The expression is evaluated through the eval API and can contain the following
24646 constants:
24647
24648 @table @option
24649 @item VALUE1
24650 Float representation of @code{value} from metadata key.
24651
24652 @item VALUE2
24653 Float representation of @code{value} as supplied by user in @code{value} option.
24654 @end table
24655
24656 @item file
24657 If specified in @code{print} mode, output is written to the named file. Instead of
24658 plain filename any writable url can be specified. Filename ``-'' is a shorthand
24659 for standard output. If @code{file} option is not set, output is written to the log
24660 with AV_LOG_INFO loglevel.
24661
24662 @item direct
24663 Reduces buffering in print mode when output is written to a URL set using @var{file}.
24664
24665 @end table
24666
24667 @subsection Examples
24668
24669 @itemize
24670 @item
24671 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
24672 between 0 and 1.
24673 @example
24674 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
24675 @end example
24676 @item
24677 Print silencedetect output to file @file{metadata.txt}.
24678 @example
24679 silencedetect,ametadata=mode=print:file=metadata.txt
24680 @end example
24681 @item
24682 Direct all metadata to a pipe with file descriptor 4.
24683 @example
24684 metadata=mode=print:file='pipe\:4'
24685 @end example
24686 @end itemize
24687
24688 @section perms, aperms
24689
24690 Set read/write permissions for the output frames.
24691
24692 These filters are mainly aimed at developers to test direct path in the
24693 following filter in the filtergraph.
24694
24695 The filters accept the following options:
24696
24697 @table @option
24698 @item mode
24699 Select the permissions mode.
24700
24701 It accepts the following values:
24702 @table @samp
24703 @item none
24704 Do nothing. This is the default.
24705 @item ro
24706 Set all the output frames read-only.
24707 @item rw
24708 Set all the output frames directly writable.
24709 @item toggle
24710 Make the frame read-only if writable, and writable if read-only.
24711 @item random
24712 Set each output frame read-only or writable randomly.
24713 @end table
24714
24715 @item seed
24716 Set the seed for the @var{random} mode, must be an integer included between
24717 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
24718 @code{-1}, the filter will try to use a good random seed on a best effort
24719 basis.
24720 @end table
24721
24722 Note: in case of auto-inserted filter between the permission filter and the
24723 following one, the permission might not be received as expected in that
24724 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
24725 perms/aperms filter can avoid this problem.
24726
24727 @section realtime, arealtime
24728
24729 Slow down filtering to match real time approximately.
24730
24731 These filters will pause the filtering for a variable amount of time to
24732 match the output rate with the input timestamps.
24733 They are similar to the @option{re} option to @code{ffmpeg}.
24734
24735 They accept the following options:
24736
24737 @table @option
24738 @item limit
24739 Time limit for the pauses. Any pause longer than that will be considered
24740 a timestamp discontinuity and reset the timer. Default is 2 seconds.
24741 @item speed
24742 Speed factor for processing. The value must be a float larger than zero.
24743 Values larger than 1.0 will result in faster than realtime processing,
24744 smaller will slow processing down. The @var{limit} is automatically adapted
24745 accordingly. Default is 1.0.
24746
24747 A processing speed faster than what is possible without these filters cannot
24748 be achieved.
24749 @end table
24750
24751 @anchor{select}
24752 @section select, aselect
24753
24754 Select frames to pass in output.
24755
24756 This filter accepts the following options:
24757
24758 @table @option
24759
24760 @item expr, e
24761 Set expression, which is evaluated for each input frame.
24762
24763 If the expression is evaluated to zero, the frame is discarded.
24764
24765 If the evaluation result is negative or NaN, the frame is sent to the
24766 first output; otherwise it is sent to the output with index
24767 @code{ceil(val)-1}, assuming that the input index starts from 0.
24768
24769 For example a value of @code{1.2} corresponds to the output with index
24770 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
24771
24772 @item outputs, n
24773 Set the number of outputs. The output to which to send the selected
24774 frame is based on the result of the evaluation. Default value is 1.
24775 @end table
24776
24777 The expression can contain the following constants:
24778
24779 @table @option
24780 @item n
24781 The (sequential) number of the filtered frame, starting from 0.
24782
24783 @item selected_n
24784 The (sequential) number of the selected frame, starting from 0.
24785
24786 @item prev_selected_n
24787 The sequential number of the last selected frame. It's NAN if undefined.
24788
24789 @item TB
24790 The timebase of the input timestamps.
24791
24792 @item pts
24793 The PTS (Presentation TimeStamp) of the filtered video frame,
24794 expressed in @var{TB} units. It's NAN if undefined.
24795
24796 @item t
24797 The PTS of the filtered video frame,
24798 expressed in seconds. It's NAN if undefined.
24799
24800 @item prev_pts
24801 The PTS of the previously filtered video frame. It's NAN if undefined.
24802
24803 @item prev_selected_pts
24804 The PTS of the last previously filtered video frame. It's NAN if undefined.
24805
24806 @item prev_selected_t
24807 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
24808
24809 @item start_pts
24810 The PTS of the first video frame in the video. It's NAN if undefined.
24811
24812 @item start_t
24813 The time of the first video frame in the video. It's NAN if undefined.
24814
24815 @item pict_type @emph{(video only)}
24816 The type of the filtered frame. It can assume one of the following
24817 values:
24818 @table @option
24819 @item I
24820 @item P
24821 @item B
24822 @item S
24823 @item SI
24824 @item SP
24825 @item BI
24826 @end table
24827
24828 @item interlace_type @emph{(video only)}
24829 The frame interlace type. It can assume one of the following values:
24830 @table @option
24831 @item PROGRESSIVE
24832 The frame is progressive (not interlaced).
24833 @item TOPFIRST
24834 The frame is top-field-first.
24835 @item BOTTOMFIRST
24836 The frame is bottom-field-first.
24837 @end table
24838
24839 @item consumed_sample_n @emph{(audio only)}
24840 the number of selected samples before the current frame
24841
24842 @item samples_n @emph{(audio only)}
24843 the number of samples in the current frame
24844
24845 @item sample_rate @emph{(audio only)}
24846 the input sample rate
24847
24848 @item key
24849 This is 1 if the filtered frame is a key-frame, 0 otherwise.
24850
24851 @item pos
24852 the position in the file of the filtered frame, -1 if the information
24853 is not available (e.g. for synthetic video)
24854
24855 @item scene @emph{(video only)}
24856 value between 0 and 1 to indicate a new scene; a low value reflects a low
24857 probability for the current frame to introduce a new scene, while a higher
24858 value means the current frame is more likely to be one (see the example below)
24859
24860 @item concatdec_select
24861 The concat demuxer can select only part of a concat input file by setting an
24862 inpoint and an outpoint, but the output packets may not be entirely contained
24863 in the selected interval. By using this variable, it is possible to skip frames
24864 generated by the concat demuxer which are not exactly contained in the selected
24865 interval.
24866
24867 This works by comparing the frame pts against the @var{lavf.concat.start_time}
24868 and the @var{lavf.concat.duration} packet metadata values which are also
24869 present in the decoded frames.
24870
24871 The @var{concatdec_select} variable is -1 if the frame pts is at least
24872 start_time and either the duration metadata is missing or the frame pts is less
24873 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
24874 missing.
24875
24876 That basically means that an input frame is selected if its pts is within the
24877 interval set by the concat demuxer.
24878
24879 @end table
24880
24881 The default value of the select expression is "1".
24882
24883 @subsection Examples
24884
24885 @itemize
24886 @item
24887 Select all frames in input:
24888 @example
24889 select
24890 @end example
24891
24892 The example above is the same as:
24893 @example
24894 select=1
24895 @end example
24896
24897 @item
24898 Skip all frames:
24899 @example
24900 select=0
24901 @end example
24902
24903 @item
24904 Select only I-frames:
24905 @example
24906 select='eq(pict_type\,I)'
24907 @end example
24908
24909 @item
24910 Select one frame every 100:
24911 @example
24912 select='not(mod(n\,100))'
24913 @end example
24914
24915 @item
24916 Select only frames contained in the 10-20 time interval:
24917 @example
24918 select=between(t\,10\,20)
24919 @end example
24920
24921 @item
24922 Select only I-frames contained in the 10-20 time interval:
24923 @example
24924 select=between(t\,10\,20)*eq(pict_type\,I)
24925 @end example
24926
24927 @item
24928 Select frames with a minimum distance of 10 seconds:
24929 @example
24930 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
24931 @end example
24932
24933 @item
24934 Use aselect to select only audio frames with samples number > 100:
24935 @example
24936 aselect='gt(samples_n\,100)'
24937 @end example
24938
24939 @item
24940 Create a mosaic of the first scenes:
24941 @example
24942 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
24943 @end example
24944
24945 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
24946 choice.
24947
24948 @item
24949 Send even and odd frames to separate outputs, and compose them:
24950 @example
24951 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
24952 @end example
24953
24954 @item
24955 Select useful frames from an ffconcat file which is using inpoints and
24956 outpoints but where the source files are not intra frame only.
24957 @example
24958 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
24959 @end example
24960 @end itemize
24961
24962 @section sendcmd, asendcmd
24963
24964 Send commands to filters in the filtergraph.
24965
24966 These filters read commands to be sent to other filters in the
24967 filtergraph.
24968
24969 @code{sendcmd} must be inserted between two video filters,
24970 @code{asendcmd} must be inserted between two audio filters, but apart
24971 from that they act the same way.
24972
24973 The specification of commands can be provided in the filter arguments
24974 with the @var{commands} option, or in a file specified by the
24975 @var{filename} option.
24976
24977 These filters accept the following options:
24978 @table @option
24979 @item commands, c
24980 Set the commands to be read and sent to the other filters.
24981 @item filename, f
24982 Set the filename of the commands to be read and sent to the other
24983 filters.
24984 @end table
24985
24986 @subsection Commands syntax
24987
24988 A commands description consists of a sequence of interval
24989 specifications, comprising a list of commands to be executed when a
24990 particular event related to that interval occurs. The occurring event
24991 is typically the current frame time entering or leaving a given time
24992 interval.
24993
24994 An interval is specified by the following syntax:
24995 @example
24996 @var{START}[-@var{END}] @var{COMMANDS};
24997 @end example
24998
24999 The time interval is specified by the @var{START} and @var{END} times.
25000 @var{END} is optional and defaults to the maximum time.
25001
25002 The current frame time is considered within the specified interval if
25003 it is included in the interval [@var{START}, @var{END}), that is when
25004 the time is greater or equal to @var{START} and is lesser than
25005 @var{END}.
25006
25007 @var{COMMANDS} consists of a sequence of one or more command
25008 specifications, separated by ",", relating to that interval.  The
25009 syntax of a command specification is given by:
25010 @example
25011 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
25012 @end example
25013
25014 @var{FLAGS} is optional and specifies the type of events relating to
25015 the time interval which enable sending the specified command, and must
25016 be a non-null sequence of identifier flags separated by "+" or "|" and
25017 enclosed between "[" and "]".
25018
25019 The following flags are recognized:
25020 @table @option
25021 @item enter
25022 The command is sent when the current frame timestamp enters the
25023 specified interval. In other words, the command is sent when the
25024 previous frame timestamp was not in the given interval, and the
25025 current is.
25026
25027 @item leave
25028 The command is sent when the current frame timestamp leaves the
25029 specified interval. In other words, the command is sent when the
25030 previous frame timestamp was in the given interval, and the
25031 current is not.
25032
25033 @item expr
25034 The command @var{ARG} is interpreted as expression and result of
25035 expression is passed as @var{ARG}.
25036
25037 The expression is evaluated through the eval API and can contain the following
25038 constants:
25039
25040 @table @option
25041 @item POS
25042 Original position in the file of the frame, or undefined if undefined
25043 for the current frame.
25044
25045 @item PTS
25046 The presentation timestamp in input.
25047
25048 @item N
25049 The count of the input frame for video or audio, starting from 0.
25050
25051 @item T
25052 The time in seconds of the current frame.
25053
25054 @item TS
25055 The start time in seconds of the current command interval.
25056
25057 @item TE
25058 The end time in seconds of the current command interval.
25059
25060 @item TI
25061 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
25062 @end table
25063
25064 @end table
25065
25066 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
25067 assumed.
25068
25069 @var{TARGET} specifies the target of the command, usually the name of
25070 the filter class or a specific filter instance name.
25071
25072 @var{COMMAND} specifies the name of the command for the target filter.
25073
25074 @var{ARG} is optional and specifies the optional list of argument for
25075 the given @var{COMMAND}.
25076
25077 Between one interval specification and another, whitespaces, or
25078 sequences of characters starting with @code{#} until the end of line,
25079 are ignored and can be used to annotate comments.
25080
25081 A simplified BNF description of the commands specification syntax
25082 follows:
25083 @example
25084 @var{COMMAND_FLAG}  ::= "enter" | "leave"
25085 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
25086 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
25087 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
25088 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
25089 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
25090 @end example
25091
25092 @subsection Examples
25093
25094 @itemize
25095 @item
25096 Specify audio tempo change at second 4:
25097 @example
25098 asendcmd=c='4.0 atempo tempo 1.5',atempo
25099 @end example
25100
25101 @item
25102 Target a specific filter instance:
25103 @example
25104 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
25105 @end example
25106
25107 @item
25108 Specify a list of drawtext and hue commands in a file.
25109 @example
25110 # show text in the interval 5-10
25111 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
25112          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
25113
25114 # desaturate the image in the interval 15-20
25115 15.0-20.0 [enter] hue s 0,
25116           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
25117           [leave] hue s 1,
25118           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
25119
25120 # apply an exponential saturation fade-out effect, starting from time 25
25121 25 [enter] hue s exp(25-t)
25122 @end example
25123
25124 A filtergraph allowing to read and process the above command list
25125 stored in a file @file{test.cmd}, can be specified with:
25126 @example
25127 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
25128 @end example
25129 @end itemize
25130
25131 @anchor{setpts}
25132 @section setpts, asetpts
25133
25134 Change the PTS (presentation timestamp) of the input frames.
25135
25136 @code{setpts} works on video frames, @code{asetpts} on audio frames.
25137
25138 This filter accepts the following options:
25139
25140 @table @option
25141
25142 @item expr
25143 The expression which is evaluated for each frame to construct its timestamp.
25144
25145 @end table
25146
25147 The expression is evaluated through the eval API and can contain the following
25148 constants:
25149
25150 @table @option
25151 @item FRAME_RATE, FR
25152 frame rate, only defined for constant frame-rate video
25153
25154 @item PTS
25155 The presentation timestamp in input
25156
25157 @item N
25158 The count of the input frame for video or the number of consumed samples,
25159 not including the current frame for audio, starting from 0.
25160
25161 @item NB_CONSUMED_SAMPLES
25162 The number of consumed samples, not including the current frame (only
25163 audio)
25164
25165 @item NB_SAMPLES, S
25166 The number of samples in the current frame (only audio)
25167
25168 @item SAMPLE_RATE, SR
25169 The audio sample rate.
25170
25171 @item STARTPTS
25172 The PTS of the first frame.
25173
25174 @item STARTT
25175 the time in seconds of the first frame
25176
25177 @item INTERLACED
25178 State whether the current frame is interlaced.
25179
25180 @item T
25181 the time in seconds of the current frame
25182
25183 @item POS
25184 original position in the file of the frame, or undefined if undefined
25185 for the current frame
25186
25187 @item PREV_INPTS
25188 The previous input PTS.
25189
25190 @item PREV_INT
25191 previous input time in seconds
25192
25193 @item PREV_OUTPTS
25194 The previous output PTS.
25195
25196 @item PREV_OUTT
25197 previous output time in seconds
25198
25199 @item RTCTIME
25200 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
25201 instead.
25202
25203 @item RTCSTART
25204 The wallclock (RTC) time at the start of the movie in microseconds.
25205
25206 @item TB
25207 The timebase of the input timestamps.
25208
25209 @end table
25210
25211 @subsection Examples
25212
25213 @itemize
25214 @item
25215 Start counting PTS from zero
25216 @example
25217 setpts=PTS-STARTPTS
25218 @end example
25219
25220 @item
25221 Apply fast motion effect:
25222 @example
25223 setpts=0.5*PTS
25224 @end example
25225
25226 @item
25227 Apply slow motion effect:
25228 @example
25229 setpts=2.0*PTS
25230 @end example
25231
25232 @item
25233 Set fixed rate of 25 frames per second:
25234 @example
25235 setpts=N/(25*TB)
25236 @end example
25237
25238 @item
25239 Set fixed rate 25 fps with some jitter:
25240 @example
25241 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
25242 @end example
25243
25244 @item
25245 Apply an offset of 10 seconds to the input PTS:
25246 @example
25247 setpts=PTS+10/TB
25248 @end example
25249
25250 @item
25251 Generate timestamps from a "live source" and rebase onto the current timebase:
25252 @example
25253 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
25254 @end example
25255
25256 @item
25257 Generate timestamps by counting samples:
25258 @example
25259 asetpts=N/SR/TB
25260 @end example
25261
25262 @end itemize
25263
25264 @section setrange
25265
25266 Force color range for the output video frame.
25267
25268 The @code{setrange} filter marks the color range property for the
25269 output frames. It does not change the input frame, but only sets the
25270 corresponding property, which affects how the frame is treated by
25271 following filters.
25272
25273 The filter accepts the following options:
25274
25275 @table @option
25276
25277 @item range
25278 Available values are:
25279
25280 @table @samp
25281 @item auto
25282 Keep the same color range property.
25283
25284 @item unspecified, unknown
25285 Set the color range as unspecified.
25286
25287 @item limited, tv, mpeg
25288 Set the color range as limited.
25289
25290 @item full, pc, jpeg
25291 Set the color range as full.
25292 @end table
25293 @end table
25294
25295 @section settb, asettb
25296
25297 Set the timebase to use for the output frames timestamps.
25298 It is mainly useful for testing timebase configuration.
25299
25300 It accepts the following parameters:
25301
25302 @table @option
25303
25304 @item expr, tb
25305 The expression which is evaluated into the output timebase.
25306
25307 @end table
25308
25309 The value for @option{tb} is an arithmetic expression representing a
25310 rational. The expression can contain the constants "AVTB" (the default
25311 timebase), "intb" (the input timebase) and "sr" (the sample rate,
25312 audio only). Default value is "intb".
25313
25314 @subsection Examples
25315
25316 @itemize
25317 @item
25318 Set the timebase to 1/25:
25319 @example
25320 settb=expr=1/25
25321 @end example
25322
25323 @item
25324 Set the timebase to 1/10:
25325 @example
25326 settb=expr=0.1
25327 @end example
25328
25329 @item
25330 Set the timebase to 1001/1000:
25331 @example
25332 settb=1+0.001
25333 @end example
25334
25335 @item
25336 Set the timebase to 2*intb:
25337 @example
25338 settb=2*intb
25339 @end example
25340
25341 @item
25342 Set the default timebase value:
25343 @example
25344 settb=AVTB
25345 @end example
25346 @end itemize
25347
25348 @section showcqt
25349 Convert input audio to a video output representing frequency spectrum
25350 logarithmically using Brown-Puckette constant Q transform algorithm with
25351 direct frequency domain coefficient calculation (but the transform itself
25352 is not really constant Q, instead the Q factor is actually variable/clamped),
25353 with musical tone scale, from E0 to D#10.
25354
25355 The filter accepts the following options:
25356
25357 @table @option
25358 @item size, s
25359 Specify the video size for the output. It must be even. For the syntax of this option,
25360 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25361 Default value is @code{1920x1080}.
25362
25363 @item fps, rate, r
25364 Set the output frame rate. Default value is @code{25}.
25365
25366 @item bar_h
25367 Set the bargraph height. It must be even. Default value is @code{-1} which
25368 computes the bargraph height automatically.
25369
25370 @item axis_h
25371 Set the axis height. It must be even. Default value is @code{-1} which computes
25372 the axis height automatically.
25373
25374 @item sono_h
25375 Set the sonogram height. It must be even. Default value is @code{-1} which
25376 computes the sonogram height automatically.
25377
25378 @item fullhd
25379 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
25380 instead. Default value is @code{1}.
25381
25382 @item sono_v, volume
25383 Specify the sonogram volume expression. It can contain variables:
25384 @table @option
25385 @item bar_v
25386 the @var{bar_v} evaluated expression
25387 @item frequency, freq, f
25388 the frequency where it is evaluated
25389 @item timeclamp, tc
25390 the value of @var{timeclamp} option
25391 @end table
25392 and functions:
25393 @table @option
25394 @item a_weighting(f)
25395 A-weighting of equal loudness
25396 @item b_weighting(f)
25397 B-weighting of equal loudness
25398 @item c_weighting(f)
25399 C-weighting of equal loudness.
25400 @end table
25401 Default value is @code{16}.
25402
25403 @item bar_v, volume2
25404 Specify the bargraph volume expression. It can contain variables:
25405 @table @option
25406 @item sono_v
25407 the @var{sono_v} evaluated expression
25408 @item frequency, freq, f
25409 the frequency where it is evaluated
25410 @item timeclamp, tc
25411 the value of @var{timeclamp} option
25412 @end table
25413 and functions:
25414 @table @option
25415 @item a_weighting(f)
25416 A-weighting of equal loudness
25417 @item b_weighting(f)
25418 B-weighting of equal loudness
25419 @item c_weighting(f)
25420 C-weighting of equal loudness.
25421 @end table
25422 Default value is @code{sono_v}.
25423
25424 @item sono_g, gamma
25425 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
25426 higher gamma makes the spectrum having more range. Default value is @code{3}.
25427 Acceptable range is @code{[1, 7]}.
25428
25429 @item bar_g, gamma2
25430 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
25431 @code{[1, 7]}.
25432
25433 @item bar_t
25434 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
25435 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
25436
25437 @item timeclamp, tc
25438 Specify the transform timeclamp. At low frequency, there is trade-off between
25439 accuracy in time domain and frequency domain. If timeclamp is lower,
25440 event in time domain is represented more accurately (such as fast bass drum),
25441 otherwise event in frequency domain is represented more accurately
25442 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
25443
25444 @item attack
25445 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
25446 limits future samples by applying asymmetric windowing in time domain, useful
25447 when low latency is required. Accepted range is @code{[0, 1]}.
25448
25449 @item basefreq
25450 Specify the transform base frequency. Default value is @code{20.01523126408007475},
25451 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
25452
25453 @item endfreq
25454 Specify the transform end frequency. Default value is @code{20495.59681441799654},
25455 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
25456
25457 @item coeffclamp
25458 This option is deprecated and ignored.
25459
25460 @item tlength
25461 Specify the transform length in time domain. Use this option to control accuracy
25462 trade-off between time domain and frequency domain at every frequency sample.
25463 It can contain variables:
25464 @table @option
25465 @item frequency, freq, f
25466 the frequency where it is evaluated
25467 @item timeclamp, tc
25468 the value of @var{timeclamp} option.
25469 @end table
25470 Default value is @code{384*tc/(384+tc*f)}.
25471
25472 @item count
25473 Specify the transform count for every video frame. Default value is @code{6}.
25474 Acceptable range is @code{[1, 30]}.
25475
25476 @item fcount
25477 Specify the transform count for every single pixel. Default value is @code{0},
25478 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
25479
25480 @item fontfile
25481 Specify font file for use with freetype to draw the axis. If not specified,
25482 use embedded font. Note that drawing with font file or embedded font is not
25483 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
25484 option instead.
25485
25486 @item font
25487 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
25488 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
25489 escaping.
25490
25491 @item fontcolor
25492 Specify font color expression. This is arithmetic expression that should return
25493 integer value 0xRRGGBB. It can contain variables:
25494 @table @option
25495 @item frequency, freq, f
25496 the frequency where it is evaluated
25497 @item timeclamp, tc
25498 the value of @var{timeclamp} option
25499 @end table
25500 and functions:
25501 @table @option
25502 @item midi(f)
25503 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
25504 @item r(x), g(x), b(x)
25505 red, green, and blue value of intensity x.
25506 @end table
25507 Default value is @code{st(0, (midi(f)-59.5)/12);
25508 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
25509 r(1-ld(1)) + b(ld(1))}.
25510
25511 @item axisfile
25512 Specify image file to draw the axis. This option override @var{fontfile} and
25513 @var{fontcolor} option.
25514
25515 @item axis, text
25516 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
25517 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
25518 Default value is @code{1}.
25519
25520 @item csp
25521 Set colorspace. The accepted values are:
25522 @table @samp
25523 @item unspecified
25524 Unspecified (default)
25525
25526 @item bt709
25527 BT.709
25528
25529 @item fcc
25530 FCC
25531
25532 @item bt470bg
25533 BT.470BG or BT.601-6 625
25534
25535 @item smpte170m
25536 SMPTE-170M or BT.601-6 525
25537
25538 @item smpte240m
25539 SMPTE-240M
25540
25541 @item bt2020ncl
25542 BT.2020 with non-constant luminance
25543
25544 @end table
25545
25546 @item cscheme
25547 Set spectrogram color scheme. This is list of floating point values with format
25548 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
25549 The default is @code{1|0.5|0|0|0.5|1}.
25550
25551 @end table
25552
25553 @subsection Examples
25554
25555 @itemize
25556 @item
25557 Playing audio while showing the spectrum:
25558 @example
25559 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
25560 @end example
25561
25562 @item
25563 Same as above, but with frame rate 30 fps:
25564 @example
25565 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
25566 @end example
25567
25568 @item
25569 Playing at 1280x720:
25570 @example
25571 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
25572 @end example
25573
25574 @item
25575 Disable sonogram display:
25576 @example
25577 sono_h=0
25578 @end example
25579
25580 @item
25581 A1 and its harmonics: A1, A2, (near)E3, A3:
25582 @example
25583 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),
25584                  asplit[a][out1]; [a] showcqt [out0]'
25585 @end example
25586
25587 @item
25588 Same as above, but with more accuracy in frequency domain:
25589 @example
25590 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),
25591                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
25592 @end example
25593
25594 @item
25595 Custom volume:
25596 @example
25597 bar_v=10:sono_v=bar_v*a_weighting(f)
25598 @end example
25599
25600 @item
25601 Custom gamma, now spectrum is linear to the amplitude.
25602 @example
25603 bar_g=2:sono_g=2
25604 @end example
25605
25606 @item
25607 Custom tlength equation:
25608 @example
25609 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)))'
25610 @end example
25611
25612 @item
25613 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
25614 @example
25615 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
25616 @end example
25617
25618 @item
25619 Custom font using fontconfig:
25620 @example
25621 font='Courier New,Monospace,mono|bold'
25622 @end example
25623
25624 @item
25625 Custom frequency range with custom axis using image file:
25626 @example
25627 axisfile=myaxis.png:basefreq=40:endfreq=10000
25628 @end example
25629 @end itemize
25630
25631 @section showfreqs
25632
25633 Convert input audio to video output representing the audio power spectrum.
25634 Audio amplitude is on Y-axis while frequency is on X-axis.
25635
25636 The filter accepts the following options:
25637
25638 @table @option
25639 @item size, s
25640 Specify size of video. For the syntax of this option, check the
25641 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25642 Default is @code{1024x512}.
25643
25644 @item mode
25645 Set display mode.
25646 This set how each frequency bin will be represented.
25647
25648 It accepts the following values:
25649 @table @samp
25650 @item line
25651 @item bar
25652 @item dot
25653 @end table
25654 Default is @code{bar}.
25655
25656 @item ascale
25657 Set amplitude scale.
25658
25659 It accepts the following values:
25660 @table @samp
25661 @item lin
25662 Linear scale.
25663
25664 @item sqrt
25665 Square root scale.
25666
25667 @item cbrt
25668 Cubic root scale.
25669
25670 @item log
25671 Logarithmic scale.
25672 @end table
25673 Default is @code{log}.
25674
25675 @item fscale
25676 Set frequency scale.
25677
25678 It accepts the following values:
25679 @table @samp
25680 @item lin
25681 Linear scale.
25682
25683 @item log
25684 Logarithmic scale.
25685
25686 @item rlog
25687 Reverse logarithmic scale.
25688 @end table
25689 Default is @code{lin}.
25690
25691 @item win_size
25692 Set window size. Allowed range is from 16 to 65536.
25693
25694 Default is @code{2048}
25695
25696 @item win_func
25697 Set windowing function.
25698
25699 It accepts the following values:
25700 @table @samp
25701 @item rect
25702 @item bartlett
25703 @item hanning
25704 @item hamming
25705 @item blackman
25706 @item welch
25707 @item flattop
25708 @item bharris
25709 @item bnuttall
25710 @item bhann
25711 @item sine
25712 @item nuttall
25713 @item lanczos
25714 @item gauss
25715 @item tukey
25716 @item dolph
25717 @item cauchy
25718 @item parzen
25719 @item poisson
25720 @item bohman
25721 @end table
25722 Default is @code{hanning}.
25723
25724 @item overlap
25725 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25726 which means optimal overlap for selected window function will be picked.
25727
25728 @item averaging
25729 Set time averaging. Setting this to 0 will display current maximal peaks.
25730 Default is @code{1}, which means time averaging is disabled.
25731
25732 @item colors
25733 Specify list of colors separated by space or by '|' which will be used to
25734 draw channel frequencies. Unrecognized or missing colors will be replaced
25735 by white color.
25736
25737 @item cmode
25738 Set channel display mode.
25739
25740 It accepts the following values:
25741 @table @samp
25742 @item combined
25743 @item separate
25744 @end table
25745 Default is @code{combined}.
25746
25747 @item minamp
25748 Set minimum amplitude used in @code{log} amplitude scaler.
25749
25750 @item data
25751 Set data display mode.
25752
25753 It accepts the following values:
25754 @table @samp
25755 @item magnitude
25756 @item phase
25757 @item delay
25758 @end table
25759 Default is @code{magnitude}.
25760 @end table
25761
25762 @section showspatial
25763
25764 Convert stereo input audio to a video output, representing the spatial relationship
25765 between two channels.
25766
25767 The filter accepts the following options:
25768
25769 @table @option
25770 @item size, s
25771 Specify the video size for the output. For the syntax of this option, check the
25772 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25773 Default value is @code{512x512}.
25774
25775 @item win_size
25776 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
25777
25778 @item win_func
25779 Set window function.
25780
25781 It accepts the following values:
25782 @table @samp
25783 @item rect
25784 @item bartlett
25785 @item hann
25786 @item hanning
25787 @item hamming
25788 @item blackman
25789 @item welch
25790 @item flattop
25791 @item bharris
25792 @item bnuttall
25793 @item bhann
25794 @item sine
25795 @item nuttall
25796 @item lanczos
25797 @item gauss
25798 @item tukey
25799 @item dolph
25800 @item cauchy
25801 @item parzen
25802 @item poisson
25803 @item bohman
25804 @end table
25805
25806 Default value is @code{hann}.
25807
25808 @item overlap
25809 Set ratio of overlap window. Default value is @code{0.5}.
25810 When value is @code{1} overlap is set to recommended size for specific
25811 window function currently used.
25812 @end table
25813
25814 @anchor{showspectrum}
25815 @section showspectrum
25816
25817 Convert input audio to a video output, representing the audio frequency
25818 spectrum.
25819
25820 The filter accepts the following options:
25821
25822 @table @option
25823 @item size, s
25824 Specify the video size for the output. For the syntax of this option, check the
25825 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25826 Default value is @code{640x512}.
25827
25828 @item slide
25829 Specify how the spectrum should slide along the window.
25830
25831 It accepts the following values:
25832 @table @samp
25833 @item replace
25834 the samples start again on the left when they reach the right
25835 @item scroll
25836 the samples scroll from right to left
25837 @item fullframe
25838 frames are only produced when the samples reach the right
25839 @item rscroll
25840 the samples scroll from left to right
25841 @end table
25842
25843 Default value is @code{replace}.
25844
25845 @item mode
25846 Specify display mode.
25847
25848 It accepts the following values:
25849 @table @samp
25850 @item combined
25851 all channels are displayed in the same row
25852 @item separate
25853 all channels are displayed in separate rows
25854 @end table
25855
25856 Default value is @samp{combined}.
25857
25858 @item color
25859 Specify display color mode.
25860
25861 It accepts the following values:
25862 @table @samp
25863 @item channel
25864 each channel is displayed in a separate color
25865 @item intensity
25866 each channel is displayed using the same color scheme
25867 @item rainbow
25868 each channel is displayed using the rainbow color scheme
25869 @item moreland
25870 each channel is displayed using the moreland color scheme
25871 @item nebulae
25872 each channel is displayed using the nebulae color scheme
25873 @item fire
25874 each channel is displayed using the fire color scheme
25875 @item fiery
25876 each channel is displayed using the fiery color scheme
25877 @item fruit
25878 each channel is displayed using the fruit color scheme
25879 @item cool
25880 each channel is displayed using the cool color scheme
25881 @item magma
25882 each channel is displayed using the magma color scheme
25883 @item green
25884 each channel is displayed using the green color scheme
25885 @item viridis
25886 each channel is displayed using the viridis color scheme
25887 @item plasma
25888 each channel is displayed using the plasma color scheme
25889 @item cividis
25890 each channel is displayed using the cividis color scheme
25891 @item terrain
25892 each channel is displayed using the terrain color scheme
25893 @end table
25894
25895 Default value is @samp{channel}.
25896
25897 @item scale
25898 Specify scale used for calculating intensity color values.
25899
25900 It accepts the following values:
25901 @table @samp
25902 @item lin
25903 linear
25904 @item sqrt
25905 square root, default
25906 @item cbrt
25907 cubic root
25908 @item log
25909 logarithmic
25910 @item 4thrt
25911 4th root
25912 @item 5thrt
25913 5th root
25914 @end table
25915
25916 Default value is @samp{sqrt}.
25917
25918 @item fscale
25919 Specify frequency scale.
25920
25921 It accepts the following values:
25922 @table @samp
25923 @item lin
25924 linear
25925 @item log
25926 logarithmic
25927 @end table
25928
25929 Default value is @samp{lin}.
25930
25931 @item saturation
25932 Set saturation modifier for displayed colors. Negative values provide
25933 alternative color scheme. @code{0} is no saturation at all.
25934 Saturation must be in [-10.0, 10.0] range.
25935 Default value is @code{1}.
25936
25937 @item win_func
25938 Set window function.
25939
25940 It accepts the following values:
25941 @table @samp
25942 @item rect
25943 @item bartlett
25944 @item hann
25945 @item hanning
25946 @item hamming
25947 @item blackman
25948 @item welch
25949 @item flattop
25950 @item bharris
25951 @item bnuttall
25952 @item bhann
25953 @item sine
25954 @item nuttall
25955 @item lanczos
25956 @item gauss
25957 @item tukey
25958 @item dolph
25959 @item cauchy
25960 @item parzen
25961 @item poisson
25962 @item bohman
25963 @end table
25964
25965 Default value is @code{hann}.
25966
25967 @item orientation
25968 Set orientation of time vs frequency axis. Can be @code{vertical} or
25969 @code{horizontal}. Default is @code{vertical}.
25970
25971 @item overlap
25972 Set ratio of overlap window. Default value is @code{0}.
25973 When value is @code{1} overlap is set to recommended size for specific
25974 window function currently used.
25975
25976 @item gain
25977 Set scale gain for calculating intensity color values.
25978 Default value is @code{1}.
25979
25980 @item data
25981 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
25982
25983 @item rotation
25984 Set color rotation, must be in [-1.0, 1.0] range.
25985 Default value is @code{0}.
25986
25987 @item start
25988 Set start frequency from which to display spectrogram. Default is @code{0}.
25989
25990 @item stop
25991 Set stop frequency to which to display spectrogram. Default is @code{0}.
25992
25993 @item fps
25994 Set upper frame rate limit. Default is @code{auto}, unlimited.
25995
25996 @item legend
25997 Draw time and frequency axes and legends. Default is disabled.
25998 @end table
25999
26000 The usage is very similar to the showwaves filter; see the examples in that
26001 section.
26002
26003 @subsection Examples
26004
26005 @itemize
26006 @item
26007 Large window with logarithmic color scaling:
26008 @example
26009 showspectrum=s=1280x480:scale=log
26010 @end example
26011
26012 @item
26013 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
26014 @example
26015 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
26016              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
26017 @end example
26018 @end itemize
26019
26020 @section showspectrumpic
26021
26022 Convert input audio to a single video frame, representing the audio frequency
26023 spectrum.
26024
26025 The filter accepts the following options:
26026
26027 @table @option
26028 @item size, s
26029 Specify the video size for the output. For the syntax of this option, check the
26030 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26031 Default value is @code{4096x2048}.
26032
26033 @item mode
26034 Specify display mode.
26035
26036 It accepts the following values:
26037 @table @samp
26038 @item combined
26039 all channels are displayed in the same row
26040 @item separate
26041 all channels are displayed in separate rows
26042 @end table
26043 Default value is @samp{combined}.
26044
26045 @item color
26046 Specify display color mode.
26047
26048 It accepts the following values:
26049 @table @samp
26050 @item channel
26051 each channel is displayed in a separate color
26052 @item intensity
26053 each channel is displayed using the same color scheme
26054 @item rainbow
26055 each channel is displayed using the rainbow color scheme
26056 @item moreland
26057 each channel is displayed using the moreland color scheme
26058 @item nebulae
26059 each channel is displayed using the nebulae color scheme
26060 @item fire
26061 each channel is displayed using the fire color scheme
26062 @item fiery
26063 each channel is displayed using the fiery color scheme
26064 @item fruit
26065 each channel is displayed using the fruit color scheme
26066 @item cool
26067 each channel is displayed using the cool color scheme
26068 @item magma
26069 each channel is displayed using the magma color scheme
26070 @item green
26071 each channel is displayed using the green color scheme
26072 @item viridis
26073 each channel is displayed using the viridis color scheme
26074 @item plasma
26075 each channel is displayed using the plasma color scheme
26076 @item cividis
26077 each channel is displayed using the cividis color scheme
26078 @item terrain
26079 each channel is displayed using the terrain color scheme
26080 @end table
26081 Default value is @samp{intensity}.
26082
26083 @item scale
26084 Specify scale used for calculating intensity color values.
26085
26086 It accepts the following values:
26087 @table @samp
26088 @item lin
26089 linear
26090 @item sqrt
26091 square root, default
26092 @item cbrt
26093 cubic root
26094 @item log
26095 logarithmic
26096 @item 4thrt
26097 4th root
26098 @item 5thrt
26099 5th root
26100 @end table
26101 Default value is @samp{log}.
26102
26103 @item fscale
26104 Specify frequency scale.
26105
26106 It accepts the following values:
26107 @table @samp
26108 @item lin
26109 linear
26110 @item log
26111 logarithmic
26112 @end table
26113
26114 Default value is @samp{lin}.
26115
26116 @item saturation
26117 Set saturation modifier for displayed colors. Negative values provide
26118 alternative color scheme. @code{0} is no saturation at all.
26119 Saturation must be in [-10.0, 10.0] range.
26120 Default value is @code{1}.
26121
26122 @item win_func
26123 Set window function.
26124
26125 It accepts the following values:
26126 @table @samp
26127 @item rect
26128 @item bartlett
26129 @item hann
26130 @item hanning
26131 @item hamming
26132 @item blackman
26133 @item welch
26134 @item flattop
26135 @item bharris
26136 @item bnuttall
26137 @item bhann
26138 @item sine
26139 @item nuttall
26140 @item lanczos
26141 @item gauss
26142 @item tukey
26143 @item dolph
26144 @item cauchy
26145 @item parzen
26146 @item poisson
26147 @item bohman
26148 @end table
26149 Default value is @code{hann}.
26150
26151 @item orientation
26152 Set orientation of time vs frequency axis. Can be @code{vertical} or
26153 @code{horizontal}. Default is @code{vertical}.
26154
26155 @item gain
26156 Set scale gain for calculating intensity color values.
26157 Default value is @code{1}.
26158
26159 @item legend
26160 Draw time and frequency axes and legends. Default is enabled.
26161
26162 @item rotation
26163 Set color rotation, must be in [-1.0, 1.0] range.
26164 Default value is @code{0}.
26165
26166 @item start
26167 Set start frequency from which to display spectrogram. Default is @code{0}.
26168
26169 @item stop
26170 Set stop frequency to which to display spectrogram. Default is @code{0}.
26171 @end table
26172
26173 @subsection Examples
26174
26175 @itemize
26176 @item
26177 Extract an audio spectrogram of a whole audio track
26178 in a 1024x1024 picture using @command{ffmpeg}:
26179 @example
26180 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
26181 @end example
26182 @end itemize
26183
26184 @section showvolume
26185
26186 Convert input audio volume to a video output.
26187
26188 The filter accepts the following options:
26189
26190 @table @option
26191 @item rate, r
26192 Set video rate.
26193
26194 @item b
26195 Set border width, allowed range is [0, 5]. Default is 1.
26196
26197 @item w
26198 Set channel width, allowed range is [80, 8192]. Default is 400.
26199
26200 @item h
26201 Set channel height, allowed range is [1, 900]. Default is 20.
26202
26203 @item f
26204 Set fade, allowed range is [0, 1]. Default is 0.95.
26205
26206 @item c
26207 Set volume color expression.
26208
26209 The expression can use the following variables:
26210
26211 @table @option
26212 @item VOLUME
26213 Current max volume of channel in dB.
26214
26215 @item PEAK
26216 Current peak.
26217
26218 @item CHANNEL
26219 Current channel number, starting from 0.
26220 @end table
26221
26222 @item t
26223 If set, displays channel names. Default is enabled.
26224
26225 @item v
26226 If set, displays volume values. Default is enabled.
26227
26228 @item o
26229 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
26230 default is @code{h}.
26231
26232 @item s
26233 Set step size, allowed range is [0, 5]. Default is 0, which means
26234 step is disabled.
26235
26236 @item p
26237 Set background opacity, allowed range is [0, 1]. Default is 0.
26238
26239 @item m
26240 Set metering mode, can be peak: @code{p} or rms: @code{r},
26241 default is @code{p}.
26242
26243 @item ds
26244 Set display scale, can be linear: @code{lin} or log: @code{log},
26245 default is @code{lin}.
26246
26247 @item dm
26248 In second.
26249 If set to > 0., display a line for the max level
26250 in the previous seconds.
26251 default is disabled: @code{0.}
26252
26253 @item dmc
26254 The color of the max line. Use when @code{dm} option is set to > 0.
26255 default is: @code{orange}
26256 @end table
26257
26258 @section showwaves
26259
26260 Convert input audio to a video output, representing the samples waves.
26261
26262 The filter accepts the following options:
26263
26264 @table @option
26265 @item size, s
26266 Specify the video size for the output. For the syntax of this option, check the
26267 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26268 Default value is @code{600x240}.
26269
26270 @item mode
26271 Set display mode.
26272
26273 Available values are:
26274 @table @samp
26275 @item point
26276 Draw a point for each sample.
26277
26278 @item line
26279 Draw a vertical line for each sample.
26280
26281 @item p2p
26282 Draw a point for each sample and a line between them.
26283
26284 @item cline
26285 Draw a centered vertical line for each sample.
26286 @end table
26287
26288 Default value is @code{point}.
26289
26290 @item n
26291 Set the number of samples which are printed on the same column. A
26292 larger value will decrease the frame rate. Must be a positive
26293 integer. This option can be set only if the value for @var{rate}
26294 is not explicitly specified.
26295
26296 @item rate, r
26297 Set the (approximate) output frame rate. This is done by setting the
26298 option @var{n}. Default value is "25".
26299
26300 @item split_channels
26301 Set if channels should be drawn separately or overlap. Default value is 0.
26302
26303 @item colors
26304 Set colors separated by '|' which are going to be used for drawing of each channel.
26305
26306 @item scale
26307 Set amplitude scale.
26308
26309 Available values are:
26310 @table @samp
26311 @item lin
26312 Linear.
26313
26314 @item log
26315 Logarithmic.
26316
26317 @item sqrt
26318 Square root.
26319
26320 @item cbrt
26321 Cubic root.
26322 @end table
26323
26324 Default is linear.
26325
26326 @item draw
26327 Set the draw mode. This is mostly useful to set for high @var{n}.
26328
26329 Available values are:
26330 @table @samp
26331 @item scale
26332 Scale pixel values for each drawn sample.
26333
26334 @item full
26335 Draw every sample directly.
26336 @end table
26337
26338 Default value is @code{scale}.
26339 @end table
26340
26341 @subsection Examples
26342
26343 @itemize
26344 @item
26345 Output the input file audio and the corresponding video representation
26346 at the same time:
26347 @example
26348 amovie=a.mp3,asplit[out0],showwaves[out1]
26349 @end example
26350
26351 @item
26352 Create a synthetic signal and show it with showwaves, forcing a
26353 frame rate of 30 frames per second:
26354 @example
26355 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
26356 @end example
26357 @end itemize
26358
26359 @section showwavespic
26360
26361 Convert input audio to a single video frame, representing the samples waves.
26362
26363 The filter accepts the following options:
26364
26365 @table @option
26366 @item size, s
26367 Specify the video size for the output. For the syntax of this option, check the
26368 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
26369 Default value is @code{600x240}.
26370
26371 @item split_channels
26372 Set if channels should be drawn separately or overlap. Default value is 0.
26373
26374 @item colors
26375 Set colors separated by '|' which are going to be used for drawing of each channel.
26376
26377 @item scale
26378 Set amplitude scale.
26379
26380 Available values are:
26381 @table @samp
26382 @item lin
26383 Linear.
26384
26385 @item log
26386 Logarithmic.
26387
26388 @item sqrt
26389 Square root.
26390
26391 @item cbrt
26392 Cubic root.
26393 @end table
26394
26395 Default is linear.
26396
26397 @item draw
26398 Set the draw mode.
26399
26400 Available values are:
26401 @table @samp
26402 @item scale
26403 Scale pixel values for each drawn sample.
26404
26405 @item full
26406 Draw every sample directly.
26407 @end table
26408
26409 Default value is @code{scale}.
26410
26411 @item filter
26412 Set the filter mode.
26413
26414 Available values are:
26415 @table @samp
26416 @item average
26417 Use average samples values for each drawn sample.
26418
26419 @item peak
26420 Use peak samples values for each drawn sample.
26421 @end table
26422
26423 Default value is @code{average}.
26424 @end table
26425
26426 @subsection Examples
26427
26428 @itemize
26429 @item
26430 Extract a channel split representation of the wave form of a whole audio track
26431 in a 1024x800 picture using @command{ffmpeg}:
26432 @example
26433 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
26434 @end example
26435 @end itemize
26436
26437 @section sidedata, asidedata
26438
26439 Delete frame side data, or select frames based on it.
26440
26441 This filter accepts the following options:
26442
26443 @table @option
26444 @item mode
26445 Set mode of operation of the filter.
26446
26447 Can be one of the following:
26448
26449 @table @samp
26450 @item select
26451 Select every frame with side data of @code{type}.
26452
26453 @item delete
26454 Delete side data of @code{type}. If @code{type} is not set, delete all side
26455 data in the frame.
26456
26457 @end table
26458
26459 @item type
26460 Set side data type used with all modes. Must be set for @code{select} mode. For
26461 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
26462 in @file{libavutil/frame.h}. For example, to choose
26463 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
26464
26465 @end table
26466
26467 @section spectrumsynth
26468
26469 Synthesize audio from 2 input video spectrums, first input stream represents
26470 magnitude across time and second represents phase across time.
26471 The filter will transform from frequency domain as displayed in videos back
26472 to time domain as presented in audio output.
26473
26474 This filter is primarily created for reversing processed @ref{showspectrum}
26475 filter outputs, but can synthesize sound from other spectrograms too.
26476 But in such case results are going to be poor if the phase data is not
26477 available, because in such cases phase data need to be recreated, usually
26478 it's just recreated from random noise.
26479 For best results use gray only output (@code{channel} color mode in
26480 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
26481 @code{lin} scale for phase video. To produce phase, for 2nd video, use
26482 @code{data} option. Inputs videos should generally use @code{fullframe}
26483 slide mode as that saves resources needed for decoding video.
26484
26485 The filter accepts the following options:
26486
26487 @table @option
26488 @item sample_rate
26489 Specify sample rate of output audio, the sample rate of audio from which
26490 spectrum was generated may differ.
26491
26492 @item channels
26493 Set number of channels represented in input video spectrums.
26494
26495 @item scale
26496 Set scale which was used when generating magnitude input spectrum.
26497 Can be @code{lin} or @code{log}. Default is @code{log}.
26498
26499 @item slide
26500 Set slide which was used when generating inputs spectrums.
26501 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
26502 Default is @code{fullframe}.
26503
26504 @item win_func
26505 Set window function used for resynthesis.
26506
26507 @item overlap
26508 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
26509 which means optimal overlap for selected window function will be picked.
26510
26511 @item orientation
26512 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
26513 Default is @code{vertical}.
26514 @end table
26515
26516 @subsection Examples
26517
26518 @itemize
26519 @item
26520 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
26521 then resynthesize videos back to audio with spectrumsynth:
26522 @example
26523 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
26524 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
26525 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
26526 @end example
26527 @end itemize
26528
26529 @section split, asplit
26530
26531 Split input into several identical outputs.
26532
26533 @code{asplit} works with audio input, @code{split} with video.
26534
26535 The filter accepts a single parameter which specifies the number of outputs. If
26536 unspecified, it defaults to 2.
26537
26538 @subsection Examples
26539
26540 @itemize
26541 @item
26542 Create two separate outputs from the same input:
26543 @example
26544 [in] split [out0][out1]
26545 @end example
26546
26547 @item
26548 To create 3 or more outputs, you need to specify the number of
26549 outputs, like in:
26550 @example
26551 [in] asplit=3 [out0][out1][out2]
26552 @end example
26553
26554 @item
26555 Create two separate outputs from the same input, one cropped and
26556 one padded:
26557 @example
26558 [in] split [splitout1][splitout2];
26559 [splitout1] crop=100:100:0:0    [cropout];
26560 [splitout2] pad=200:200:100:100 [padout];
26561 @end example
26562
26563 @item
26564 Create 5 copies of the input audio with @command{ffmpeg}:
26565 @example
26566 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
26567 @end example
26568 @end itemize
26569
26570 @section zmq, azmq
26571
26572 Receive commands sent through a libzmq client, and forward them to
26573 filters in the filtergraph.
26574
26575 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
26576 must be inserted between two video filters, @code{azmq} between two
26577 audio filters. Both are capable to send messages to any filter type.
26578
26579 To enable these filters you need to install the libzmq library and
26580 headers and configure FFmpeg with @code{--enable-libzmq}.
26581
26582 For more information about libzmq see:
26583 @url{http://www.zeromq.org/}
26584
26585 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
26586 receives messages sent through a network interface defined by the
26587 @option{bind_address} (or the abbreviation "@option{b}") option.
26588 Default value of this option is @file{tcp://localhost:5555}. You may
26589 want to alter this value to your needs, but do not forget to escape any
26590 ':' signs (see @ref{filtergraph escaping}).
26591
26592 The received message must be in the form:
26593 @example
26594 @var{TARGET} @var{COMMAND} [@var{ARG}]
26595 @end example
26596
26597 @var{TARGET} specifies the target of the command, usually the name of
26598 the filter class or a specific filter instance name. The default
26599 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
26600 but you can override this by using the @samp{filter_name@@id} syntax
26601 (see @ref{Filtergraph syntax}).
26602
26603 @var{COMMAND} specifies the name of the command for the target filter.
26604
26605 @var{ARG} is optional and specifies the optional argument list for the
26606 given @var{COMMAND}.
26607
26608 Upon reception, the message is processed and the corresponding command
26609 is injected into the filtergraph. Depending on the result, the filter
26610 will send a reply to the client, adopting the format:
26611 @example
26612 @var{ERROR_CODE} @var{ERROR_REASON}
26613 @var{MESSAGE}
26614 @end example
26615
26616 @var{MESSAGE} is optional.
26617
26618 @subsection Examples
26619
26620 Look at @file{tools/zmqsend} for an example of a zmq client which can
26621 be used to send commands processed by these filters.
26622
26623 Consider the following filtergraph generated by @command{ffplay}.
26624 In this example the last overlay filter has an instance name. All other
26625 filters will have default instance names.
26626
26627 @example
26628 ffplay -dumpgraph 1 -f lavfi "
26629 color=s=100x100:c=red  [l];
26630 color=s=100x100:c=blue [r];
26631 nullsrc=s=200x100, zmq [bg];
26632 [bg][l]   overlay     [bg+l];
26633 [bg+l][r] overlay@@my=x=100 "
26634 @end example
26635
26636 To change the color of the left side of the video, the following
26637 command can be used:
26638 @example
26639 echo Parsed_color_0 c yellow | tools/zmqsend
26640 @end example
26641
26642 To change the right side:
26643 @example
26644 echo Parsed_color_1 c pink | tools/zmqsend
26645 @end example
26646
26647 To change the position of the right side:
26648 @example
26649 echo overlay@@my x 150 | tools/zmqsend
26650 @end example
26651
26652
26653 @c man end MULTIMEDIA FILTERS
26654
26655 @chapter Multimedia Sources
26656 @c man begin MULTIMEDIA SOURCES
26657
26658 Below is a description of the currently available multimedia sources.
26659
26660 @section amovie
26661
26662 This is the same as @ref{movie} source, except it selects an audio
26663 stream by default.
26664
26665 @anchor{movie}
26666 @section movie
26667
26668 Read audio and/or video stream(s) from a movie container.
26669
26670 It accepts the following parameters:
26671
26672 @table @option
26673 @item filename
26674 The name of the resource to read (not necessarily a file; it can also be a
26675 device or a stream accessed through some protocol).
26676
26677 @item format_name, f
26678 Specifies the format assumed for the movie to read, and can be either
26679 the name of a container or an input device. If not specified, the
26680 format is guessed from @var{movie_name} or by probing.
26681
26682 @item seek_point, sp
26683 Specifies the seek point in seconds. The frames will be output
26684 starting from this seek point. The parameter is evaluated with
26685 @code{av_strtod}, so the numerical value may be suffixed by an IS
26686 postfix. The default value is "0".
26687
26688 @item streams, s
26689 Specifies the streams to read. Several streams can be specified,
26690 separated by "+". The source will then have as many outputs, in the
26691 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
26692 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
26693 respectively the default (best suited) video and audio stream. Default
26694 is "dv", or "da" if the filter is called as "amovie".
26695
26696 @item stream_index, si
26697 Specifies the index of the video stream to read. If the value is -1,
26698 the most suitable video stream will be automatically selected. The default
26699 value is "-1". Deprecated. If the filter is called "amovie", it will select
26700 audio instead of video.
26701
26702 @item loop
26703 Specifies how many times to read the stream in sequence.
26704 If the value is 0, the stream will be looped infinitely.
26705 Default value is "1".
26706
26707 Note that when the movie is looped the source timestamps are not
26708 changed, so it will generate non monotonically increasing timestamps.
26709
26710 @item discontinuity
26711 Specifies the time difference between frames above which the point is
26712 considered a timestamp discontinuity which is removed by adjusting the later
26713 timestamps.
26714 @end table
26715
26716 It allows overlaying a second video on top of the main input of
26717 a filtergraph, as shown in this graph:
26718 @example
26719 input -----------> deltapts0 --> overlay --> output
26720                                     ^
26721                                     |
26722 movie --> scale--> deltapts1 -------+
26723 @end example
26724 @subsection Examples
26725
26726 @itemize
26727 @item
26728 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
26729 on top of the input labelled "in":
26730 @example
26731 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
26732 [in] setpts=PTS-STARTPTS [main];
26733 [main][over] overlay=16:16 [out]
26734 @end example
26735
26736 @item
26737 Read from a video4linux2 device, and overlay it on top of the input
26738 labelled "in":
26739 @example
26740 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
26741 [in] setpts=PTS-STARTPTS [main];
26742 [main][over] overlay=16:16 [out]
26743 @end example
26744
26745 @item
26746 Read the first video stream and the audio stream with id 0x81 from
26747 dvd.vob; the video is connected to the pad named "video" and the audio is
26748 connected to the pad named "audio":
26749 @example
26750 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
26751 @end example
26752 @end itemize
26753
26754 @subsection Commands
26755
26756 Both movie and amovie support the following commands:
26757 @table @option
26758 @item seek
26759 Perform seek using "av_seek_frame".
26760 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
26761 @itemize
26762 @item
26763 @var{stream_index}: If stream_index is -1, a default
26764 stream is selected, and @var{timestamp} is automatically converted
26765 from AV_TIME_BASE units to the stream specific time_base.
26766 @item
26767 @var{timestamp}: Timestamp in AVStream.time_base units
26768 or, if no stream is specified, in AV_TIME_BASE units.
26769 @item
26770 @var{flags}: Flags which select direction and seeking mode.
26771 @end itemize
26772
26773 @item get_duration
26774 Get movie duration in AV_TIME_BASE units.
26775
26776 @end table
26777
26778 @c man end MULTIMEDIA SOURCES