]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
16bf2df6c22185665ce9b7592292eb7c96da18f4
[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 @section acontrast
447 Simple audio dynamic range compression/expansion filter.
448
449 The filter accepts the following options:
450
451 @table @option
452 @item contrast
453 Set contrast. Default is 33. Allowed range is between 0 and 100.
454 @end table
455
456 @section acopy
457
458 Copy the input audio source unchanged to the output. This is mainly useful for
459 testing purposes.
460
461 @section acrossfade
462
463 Apply cross fade from one input audio stream to another input audio stream.
464 The cross fade is applied for specified duration near the end of first stream.
465
466 The filter accepts the following options:
467
468 @table @option
469 @item nb_samples, ns
470 Specify the number of samples for which the cross fade effect has to last.
471 At the end of the cross fade effect the first input audio will be completely
472 silent. Default is 44100.
473
474 @item duration, d
475 Specify the duration of the cross fade effect. See
476 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
477 for the accepted syntax.
478 By default the duration is determined by @var{nb_samples}.
479 If set this option is used instead of @var{nb_samples}.
480
481 @item overlap, o
482 Should first stream end overlap with second stream start. Default is enabled.
483
484 @item curve1
485 Set curve for cross fade transition for first stream.
486
487 @item curve2
488 Set curve for cross fade transition for second stream.
489
490 For description of available curve types see @ref{afade} filter description.
491 @end table
492
493 @subsection Examples
494
495 @itemize
496 @item
497 Cross fade from one input to another:
498 @example
499 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
500 @end example
501
502 @item
503 Cross fade from one input to another but without overlapping:
504 @example
505 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
506 @end example
507 @end itemize
508
509 @section acrossover
510 Split audio stream into several bands.
511
512 This filter splits audio stream into two or more frequency ranges.
513 Summing all streams back will give flat output.
514
515 The filter accepts the following options:
516
517 @table @option
518 @item split
519 Set split frequencies. Those must be positive and increasing.
520
521 @item order
522 Set filter order, can be @var{2nd}, @var{4th} or @var{8th}.
523 Default is @var{4th}.
524 @end table
525
526 @section acrusher
527
528 Reduce audio bit resolution.
529
530 This filter is bit crusher with enhanced functionality. A bit crusher
531 is used to audibly reduce number of bits an audio signal is sampled
532 with. This doesn't change the bit depth at all, it just produces the
533 effect. Material reduced in bit depth sounds more harsh and "digital".
534 This filter is able to even round to continuous values instead of discrete
535 bit depths.
536 Additionally it has a D/C offset which results in different crushing of
537 the lower and the upper half of the signal.
538 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
539
540 Another feature of this filter is the logarithmic mode.
541 This setting switches from linear distances between bits to logarithmic ones.
542 The result is a much more "natural" sounding crusher which doesn't gate low
543 signals for example. The human ear has a logarithmic perception,
544 so this kind of crushing is much more pleasant.
545 Logarithmic crushing is also able to get anti-aliased.
546
547 The filter accepts the following options:
548
549 @table @option
550 @item level_in
551 Set level in.
552
553 @item level_out
554 Set level out.
555
556 @item bits
557 Set bit reduction.
558
559 @item mix
560 Set mixing amount.
561
562 @item mode
563 Can be linear: @code{lin} or logarithmic: @code{log}.
564
565 @item dc
566 Set DC.
567
568 @item aa
569 Set anti-aliasing.
570
571 @item samples
572 Set sample reduction.
573
574 @item lfo
575 Enable LFO. By default disabled.
576
577 @item lforange
578 Set LFO range.
579
580 @item lforate
581 Set LFO rate.
582 @end table
583
584 @section acue
585
586 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
587 filter.
588
589 @section adeclick
590 Remove impulsive noise from input audio.
591
592 Samples detected as impulsive noise are replaced by interpolated samples using
593 autoregressive modelling.
594
595 @table @option
596 @item w
597 Set window size, in milliseconds. Allowed range is from @code{10} to
598 @code{100}. Default value is @code{55} milliseconds.
599 This sets size of window which will be processed at once.
600
601 @item o
602 Set window overlap, in percentage of window size. Allowed range is from
603 @code{50} to @code{95}. Default value is @code{75} percent.
604 Setting this to a very high value increases impulsive noise removal but makes
605 whole process much slower.
606
607 @item a
608 Set autoregression order, in percentage of window size. Allowed range is from
609 @code{0} to @code{25}. Default value is @code{2} percent. This option also
610 controls quality of interpolated samples using neighbour good samples.
611
612 @item t
613 Set threshold value. Allowed range is from @code{1} to @code{100}.
614 Default value is @code{2}.
615 This controls the strength of impulsive noise which is going to be removed.
616 The lower value, the more samples will be detected as impulsive noise.
617
618 @item b
619 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
620 @code{10}. Default value is @code{2}.
621 If any two samples detected as noise are spaced less than this value then any
622 sample between those two samples will be also detected as noise.
623
624 @item m
625 Set overlap method.
626
627 It accepts the following values:
628 @table @option
629 @item a
630 Select overlap-add method. Even not interpolated samples are slightly
631 changed with this method.
632
633 @item s
634 Select overlap-save method. Not interpolated samples remain unchanged.
635 @end table
636
637 Default value is @code{a}.
638 @end table
639
640 @section adeclip
641 Remove clipped samples from input audio.
642
643 Samples detected as clipped are replaced by interpolated samples using
644 autoregressive modelling.
645
646 @table @option
647 @item w
648 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
649 Default value is @code{55} milliseconds.
650 This sets size of window which will be processed at once.
651
652 @item o
653 Set window overlap, in percentage of window size. Allowed range is from @code{50}
654 to @code{95}. Default value is @code{75} percent.
655
656 @item a
657 Set autoregression order, in percentage of window size. Allowed range is from
658 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
659 quality of interpolated samples using neighbour good samples.
660
661 @item t
662 Set threshold value. Allowed range is from @code{1} to @code{100}.
663 Default value is @code{10}. Higher values make clip detection less aggressive.
664
665 @item n
666 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
667 Default value is @code{1000}. Higher values make clip detection less aggressive.
668
669 @item m
670 Set overlap method.
671
672 It accepts the following values:
673 @table @option
674 @item a
675 Select overlap-add method. Even not interpolated samples are slightly changed
676 with this method.
677
678 @item s
679 Select overlap-save method. Not interpolated samples remain unchanged.
680 @end table
681
682 Default value is @code{a}.
683 @end table
684
685 @section adelay
686
687 Delay one or more audio channels.
688
689 Samples in delayed channel are filled with silence.
690
691 The filter accepts the following option:
692
693 @table @option
694 @item delays
695 Set list of delays in milliseconds for each channel separated by '|'.
696 Unused delays will be silently ignored. If number of given delays is
697 smaller than number of channels all remaining channels will not be delayed.
698 If you want to delay exact number of samples, append 'S' to number.
699 If you want instead to delay in seconds, append 's' to number.
700
701 @item all
702 Use last set delay for all remaining channels. By default is disabled.
703 This option if enabled changes how option @code{delays} is interpreted.
704 @end table
705
706 @subsection Examples
707
708 @itemize
709 @item
710 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
711 the second channel (and any other channels that may be present) unchanged.
712 @example
713 adelay=1500|0|500
714 @end example
715
716 @item
717 Delay second channel by 500 samples, the third channel by 700 samples and leave
718 the first channel (and any other channels that may be present) unchanged.
719 @example
720 adelay=0|500S|700S
721 @end example
722
723 @item
724 Delay all channels by same number of samples:
725 @example
726 adelay=delays=64S:all=1
727 @end example
728 @end itemize
729
730 @section aderivative, aintegral
731
732 Compute derivative/integral of audio stream.
733
734 Applying both filters one after another produces original audio.
735
736 @section aecho
737
738 Apply echoing to the input audio.
739
740 Echoes are reflected sound and can occur naturally amongst mountains
741 (and sometimes large buildings) when talking or shouting; digital echo
742 effects emulate this behaviour and are often used to help fill out the
743 sound of a single instrument or vocal. The time difference between the
744 original signal and the reflection is the @code{delay}, and the
745 loudness of the reflected signal is the @code{decay}.
746 Multiple echoes can have different delays and decays.
747
748 A description of the accepted parameters follows.
749
750 @table @option
751 @item in_gain
752 Set input gain of reflected signal. Default is @code{0.6}.
753
754 @item out_gain
755 Set output gain of reflected signal. Default is @code{0.3}.
756
757 @item delays
758 Set list of time intervals in milliseconds between original signal and reflections
759 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
760 Default is @code{1000}.
761
762 @item decays
763 Set list of loudness of reflected signals separated by '|'.
764 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
765 Default is @code{0.5}.
766 @end table
767
768 @subsection Examples
769
770 @itemize
771 @item
772 Make it sound as if there are twice as many instruments as are actually playing:
773 @example
774 aecho=0.8:0.88:60:0.4
775 @end example
776
777 @item
778 If delay is very short, then it sounds like a (metallic) robot playing music:
779 @example
780 aecho=0.8:0.88:6:0.4
781 @end example
782
783 @item
784 A longer delay will sound like an open air concert in the mountains:
785 @example
786 aecho=0.8:0.9:1000:0.3
787 @end example
788
789 @item
790 Same as above but with one more mountain:
791 @example
792 aecho=0.8:0.9:1000|1800:0.3|0.25
793 @end example
794 @end itemize
795
796 @section aemphasis
797 Audio emphasis filter creates or restores material directly taken from LPs or
798 emphased CDs with different filter curves. E.g. to store music on vinyl the
799 signal has to be altered by a filter first to even out the disadvantages of
800 this recording medium.
801 Once the material is played back the inverse filter has to be applied to
802 restore the distortion of the frequency response.
803
804 The filter accepts the following options:
805
806 @table @option
807 @item level_in
808 Set input gain.
809
810 @item level_out
811 Set output gain.
812
813 @item mode
814 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
815 use @code{production} mode. Default is @code{reproduction} mode.
816
817 @item type
818 Set filter type. Selects medium. Can be one of the following:
819
820 @table @option
821 @item col
822 select Columbia.
823 @item emi
824 select EMI.
825 @item bsi
826 select BSI (78RPM).
827 @item riaa
828 select RIAA.
829 @item cd
830 select Compact Disc (CD).
831 @item 50fm
832 select 50µs (FM).
833 @item 75fm
834 select 75µs (FM).
835 @item 50kf
836 select 50µs (FM-KF).
837 @item 75kf
838 select 75µs (FM-KF).
839 @end table
840 @end table
841
842 @section aeval
843
844 Modify an audio signal according to the specified expressions.
845
846 This filter accepts one or more expressions (one for each channel),
847 which are evaluated and used to modify a corresponding audio signal.
848
849 It accepts the following parameters:
850
851 @table @option
852 @item exprs
853 Set the '|'-separated expressions list for each separate channel. If
854 the number of input channels is greater than the number of
855 expressions, the last specified expression is used for the remaining
856 output channels.
857
858 @item channel_layout, c
859 Set output channel layout. If not specified, the channel layout is
860 specified by the number of expressions. If set to @samp{same}, it will
861 use by default the same input channel layout.
862 @end table
863
864 Each expression in @var{exprs} can contain the following constants and functions:
865
866 @table @option
867 @item ch
868 channel number of the current expression
869
870 @item n
871 number of the evaluated sample, starting from 0
872
873 @item s
874 sample rate
875
876 @item t
877 time of the evaluated sample expressed in seconds
878
879 @item nb_in_channels
880 @item nb_out_channels
881 input and output number of channels
882
883 @item val(CH)
884 the value of input channel with number @var{CH}
885 @end table
886
887 Note: this filter is slow. For faster processing you should use a
888 dedicated filter.
889
890 @subsection Examples
891
892 @itemize
893 @item
894 Half volume:
895 @example
896 aeval=val(ch)/2:c=same
897 @end example
898
899 @item
900 Invert phase of the second channel:
901 @example
902 aeval=val(0)|-val(1)
903 @end example
904 @end itemize
905
906 @anchor{afade}
907 @section afade
908
909 Apply fade-in/out effect to input audio.
910
911 A description of the accepted parameters follows.
912
913 @table @option
914 @item type, t
915 Specify the effect type, can be either @code{in} for fade-in, or
916 @code{out} for a fade-out effect. Default is @code{in}.
917
918 @item start_sample, ss
919 Specify the number of the start sample for starting to apply the fade
920 effect. Default is 0.
921
922 @item nb_samples, ns
923 Specify the number of samples for which the fade effect has to last. At
924 the end of the fade-in effect the output audio will have the same
925 volume as the input audio, at the end of the fade-out transition
926 the output audio will be silence. Default is 44100.
927
928 @item start_time, st
929 Specify the start time of the fade effect. Default is 0.
930 The value must be specified as a time duration; see
931 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
932 for the accepted syntax.
933 If set this option is used instead of @var{start_sample}.
934
935 @item duration, d
936 Specify the duration of the fade effect. See
937 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
938 for the accepted syntax.
939 At the end of the fade-in effect the output audio will have the same
940 volume as the input audio, at the end of the fade-out transition
941 the output audio will be silence.
942 By default the duration is determined by @var{nb_samples}.
943 If set this option is used instead of @var{nb_samples}.
944
945 @item curve
946 Set curve for fade transition.
947
948 It accepts the following values:
949 @table @option
950 @item tri
951 select triangular, linear slope (default)
952 @item qsin
953 select quarter of sine wave
954 @item hsin
955 select half of sine wave
956 @item esin
957 select exponential sine wave
958 @item log
959 select logarithmic
960 @item ipar
961 select inverted parabola
962 @item qua
963 select quadratic
964 @item cub
965 select cubic
966 @item squ
967 select square root
968 @item cbr
969 select cubic root
970 @item par
971 select parabola
972 @item exp
973 select exponential
974 @item iqsin
975 select inverted quarter of sine wave
976 @item ihsin
977 select inverted half of sine wave
978 @item dese
979 select double-exponential seat
980 @item desi
981 select double-exponential sigmoid
982 @item losi
983 select logistic sigmoid
984 @item nofade
985 no fade applied
986 @end table
987 @end table
988
989 @subsection Examples
990
991 @itemize
992 @item
993 Fade in first 15 seconds of audio:
994 @example
995 afade=t=in:ss=0:d=15
996 @end example
997
998 @item
999 Fade out last 25 seconds of a 900 seconds audio:
1000 @example
1001 afade=t=out:st=875:d=25
1002 @end example
1003 @end itemize
1004
1005 @section afftdn
1006 Denoise audio samples with FFT.
1007
1008 A description of the accepted parameters follows.
1009
1010 @table @option
1011 @item nr
1012 Set the noise reduction in dB, allowed range is 0.01 to 97.
1013 Default value is 12 dB.
1014
1015 @item nf
1016 Set the noise floor in dB, allowed range is -80 to -20.
1017 Default value is -50 dB.
1018
1019 @item nt
1020 Set the noise type.
1021
1022 It accepts the following values:
1023 @table @option
1024 @item w
1025 Select white noise.
1026
1027 @item v
1028 Select vinyl noise.
1029
1030 @item s
1031 Select shellac noise.
1032
1033 @item c
1034 Select custom noise, defined in @code{bn} option.
1035
1036 Default value is white noise.
1037 @end table
1038
1039 @item bn
1040 Set custom band noise for every one of 15 bands.
1041 Bands are separated by ' ' or '|'.
1042
1043 @item rf
1044 Set the residual floor in dB, allowed range is -80 to -20.
1045 Default value is -38 dB.
1046
1047 @item tn
1048 Enable noise tracking. By default is disabled.
1049 With this enabled, noise floor is automatically adjusted.
1050
1051 @item tr
1052 Enable residual tracking. By default is disabled.
1053
1054 @item om
1055 Set the output mode.
1056
1057 It accepts the following values:
1058 @table @option
1059 @item i
1060 Pass input unchanged.
1061
1062 @item o
1063 Pass noise filtered out.
1064
1065 @item n
1066 Pass only noise.
1067
1068 Default value is @var{o}.
1069 @end table
1070 @end table
1071
1072 @subsection Commands
1073
1074 This filter supports the following commands:
1075 @table @option
1076 @item sample_noise, sn
1077 Start or stop measuring noise profile.
1078 Syntax for the command is : "start" or "stop" string.
1079 After measuring noise profile is stopped it will be
1080 automatically applied in filtering.
1081
1082 @item noise_reduction, nr
1083 Change noise reduction. Argument is single float number.
1084 Syntax for the command is : "@var{noise_reduction}"
1085
1086 @item noise_floor, nf
1087 Change noise floor. Argument is single float number.
1088 Syntax for the command is : "@var{noise_floor}"
1089
1090 @item output_mode, om
1091 Change output mode operation.
1092 Syntax for the command is : "i", "o" or "n" string.
1093 @end table
1094
1095 @section afftfilt
1096 Apply arbitrary expressions to samples in frequency domain.
1097
1098 @table @option
1099 @item real
1100 Set frequency domain real expression for each separate channel separated
1101 by '|'. Default is "re".
1102 If the number of input channels is greater than the number of
1103 expressions, the last specified expression is used for the remaining
1104 output channels.
1105
1106 @item imag
1107 Set frequency domain imaginary expression for each separate channel
1108 separated by '|'. Default is "im".
1109
1110 Each expression in @var{real} and @var{imag} can contain the following
1111 constants and functions:
1112
1113 @table @option
1114 @item sr
1115 sample rate
1116
1117 @item b
1118 current frequency bin number
1119
1120 @item nb
1121 number of available bins
1122
1123 @item ch
1124 channel number of the current expression
1125
1126 @item chs
1127 number of channels
1128
1129 @item pts
1130 current frame pts
1131
1132 @item re
1133 current real part of frequency bin of current channel
1134
1135 @item im
1136 current imaginary part of frequency bin of current channel
1137
1138 @item real(b, ch)
1139 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1140
1141 @item imag(b, ch)
1142 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1143 @end table
1144
1145 @item win_size
1146 Set window size. Allowed range is from 16 to 131072.
1147 Default is @code{4096}
1148
1149 @item win_func
1150 Set window function. Default is @code{hann}.
1151
1152 @item overlap
1153 Set window overlap. If set to 1, the recommended overlap for selected
1154 window function will be picked. Default is @code{0.75}.
1155 @end table
1156
1157 @subsection Examples
1158
1159 @itemize
1160 @item
1161 Leave almost only low frequencies in audio:
1162 @example
1163 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1164 @end example
1165
1166 @item
1167 Apply robotize effect:
1168 @example
1169 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1170 @end example
1171
1172 @item
1173 Apply whisper effect:
1174 @example
1175 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"
1176 @end example
1177 @end itemize
1178
1179 @anchor{afir}
1180 @section afir
1181
1182 Apply an arbitrary Frequency Impulse Response filter.
1183
1184 This filter is designed for applying long FIR filters,
1185 up to 60 seconds long.
1186
1187 It can be used as component for digital crossover filters,
1188 room equalization, cross talk cancellation, wavefield synthesis,
1189 auralization, ambiophonics, ambisonics and spatialization.
1190
1191 This filter uses the second stream as FIR coefficients.
1192 If the second stream holds a single channel, it will be used
1193 for all input channels in the first stream, otherwise
1194 the number of channels in the second stream must be same as
1195 the number of channels in the first stream.
1196
1197 It accepts the following parameters:
1198
1199 @table @option
1200 @item dry
1201 Set dry gain. This sets input gain.
1202
1203 @item wet
1204 Set wet gain. This sets final output gain.
1205
1206 @item length
1207 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1208
1209 @item gtype
1210 Enable applying gain measured from power of IR.
1211
1212 Set which approach to use for auto gain measurement.
1213
1214 @table @option
1215 @item none
1216 Do not apply any gain.
1217
1218 @item peak
1219 select peak gain, very conservative approach. This is default value.
1220
1221 @item dc
1222 select DC gain, limited application.
1223
1224 @item gn
1225 select gain to noise approach, this is most popular one.
1226 @end table
1227
1228 @item irgain
1229 Set gain to be applied to IR coefficients before filtering.
1230 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1231
1232 @item irfmt
1233 Set format of IR stream. Can be @code{mono} or @code{input}.
1234 Default is @code{input}.
1235
1236 @item maxir
1237 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1238 Allowed range is 0.1 to 60 seconds.
1239
1240 @item response
1241 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1242 By default it is disabled.
1243
1244 @item channel
1245 Set for which IR channel to display frequency response. By default is first channel
1246 displayed. This option is used only when @var{response} is enabled.
1247
1248 @item size
1249 Set video stream size. This option is used only when @var{response} is enabled.
1250
1251 @item rate
1252 Set video stream frame rate. This option is used only when @var{response} is enabled.
1253
1254 @item minp
1255 Set minimal partition size used for convolution. Default is @var{8192}.
1256 Allowed range is from @var{8} to @var{32768}.
1257 Lower values decreases latency at cost of higher CPU usage.
1258
1259 @item maxp
1260 Set maximal partition size used for convolution. Default is @var{8192}.
1261 Allowed range is from @var{8} to @var{32768}.
1262 Lower values may increase CPU usage.
1263 @end table
1264
1265 @subsection Examples
1266
1267 @itemize
1268 @item
1269 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1270 @example
1271 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1272 @end example
1273 @end itemize
1274
1275 @anchor{aformat}
1276 @section aformat
1277
1278 Set output format constraints for the input audio. The framework will
1279 negotiate the most appropriate format to minimize conversions.
1280
1281 It accepts the following parameters:
1282 @table @option
1283
1284 @item sample_fmts
1285 A '|'-separated list of requested sample formats.
1286
1287 @item sample_rates
1288 A '|'-separated list of requested sample rates.
1289
1290 @item channel_layouts
1291 A '|'-separated list of requested channel layouts.
1292
1293 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1294 for the required syntax.
1295 @end table
1296
1297 If a parameter is omitted, all values are allowed.
1298
1299 Force the output to either unsigned 8-bit or signed 16-bit stereo
1300 @example
1301 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1302 @end example
1303
1304 @section agate
1305
1306 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1307 processing reduces disturbing noise between useful signals.
1308
1309 Gating is done by detecting the volume below a chosen level @var{threshold}
1310 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1311 floor is set via @var{range}. Because an exact manipulation of the signal
1312 would cause distortion of the waveform the reduction can be levelled over
1313 time. This is done by setting @var{attack} and @var{release}.
1314
1315 @var{attack} determines how long the signal has to fall below the threshold
1316 before any reduction will occur and @var{release} sets the time the signal
1317 has to rise above the threshold to reduce the reduction again.
1318 Shorter signals than the chosen attack time will be left untouched.
1319
1320 @table @option
1321 @item level_in
1322 Set input level before filtering.
1323 Default is 1. Allowed range is from 0.015625 to 64.
1324
1325 @item mode
1326 Set the mode of operation. Can be @code{upward} or @code{downward}.
1327 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1328 will be amplified, expanding dynamic range in upward direction.
1329 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1330
1331 @item range
1332 Set the level of gain reduction when the signal is below the threshold.
1333 Default is 0.06125. Allowed range is from 0 to 1.
1334 Setting this to 0 disables reduction and then filter behaves like expander.
1335
1336 @item threshold
1337 If a signal rises above this level the gain reduction is released.
1338 Default is 0.125. Allowed range is from 0 to 1.
1339
1340 @item ratio
1341 Set a ratio by which the signal is reduced.
1342 Default is 2. Allowed range is from 1 to 9000.
1343
1344 @item attack
1345 Amount of milliseconds the signal has to rise above the threshold before gain
1346 reduction stops.
1347 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1348
1349 @item release
1350 Amount of milliseconds the signal has to fall below the threshold before the
1351 reduction is increased again. Default is 250 milliseconds.
1352 Allowed range is from 0.01 to 9000.
1353
1354 @item makeup
1355 Set amount of amplification of signal after processing.
1356 Default is 1. Allowed range is from 1 to 64.
1357
1358 @item knee
1359 Curve the sharp knee around the threshold to enter gain reduction more softly.
1360 Default is 2.828427125. Allowed range is from 1 to 8.
1361
1362 @item detection
1363 Choose if exact signal should be taken for detection or an RMS like one.
1364 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1365
1366 @item link
1367 Choose if the average level between all channels or the louder channel affects
1368 the reduction.
1369 Default is @code{average}. Can be @code{average} or @code{maximum}.
1370 @end table
1371
1372 @section aiir
1373
1374 Apply an arbitrary Infinite Impulse Response filter.
1375
1376 It accepts the following parameters:
1377
1378 @table @option
1379 @item z
1380 Set numerator/zeros coefficients.
1381
1382 @item p
1383 Set denominator/poles coefficients.
1384
1385 @item k
1386 Set channels gains.
1387
1388 @item dry_gain
1389 Set input gain.
1390
1391 @item wet_gain
1392 Set output gain.
1393
1394 @item f
1395 Set coefficients format.
1396
1397 @table @samp
1398 @item tf
1399 transfer function
1400 @item zp
1401 Z-plane zeros/poles, cartesian (default)
1402 @item pr
1403 Z-plane zeros/poles, polar radians
1404 @item pd
1405 Z-plane zeros/poles, polar degrees
1406 @end table
1407
1408 @item r
1409 Set kind of processing.
1410 Can be @code{d} - direct or @code{s} - serial cascading. Default is @code{s}.
1411
1412 @item e
1413 Set filtering precision.
1414
1415 @table @samp
1416 @item dbl
1417 double-precision floating-point (default)
1418 @item flt
1419 single-precision floating-point
1420 @item i32
1421 32-bit integers
1422 @item i16
1423 16-bit integers
1424 @end table
1425
1426 @item mix
1427 How much to use filtered signal in output. Default is 1.
1428 Range is between 0 and 1.
1429
1430 @item response
1431 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1432 By default it is disabled.
1433
1434 @item channel
1435 Set for which IR channel to display frequency response. By default is first channel
1436 displayed. This option is used only when @var{response} is enabled.
1437
1438 @item size
1439 Set video stream size. This option is used only when @var{response} is enabled.
1440 @end table
1441
1442 Coefficients in @code{tf} format are separated by spaces and are in ascending
1443 order.
1444
1445 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1446 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1447 imaginary unit.
1448
1449 Different coefficients and gains can be provided for every channel, in such case
1450 use '|' to separate coefficients or gains. Last provided coefficients will be
1451 used for all remaining channels.
1452
1453 @subsection Examples
1454
1455 @itemize
1456 @item
1457 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1458 @example
1459 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
1460 @end example
1461
1462 @item
1463 Same as above but in @code{zp} format:
1464 @example
1465 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
1466 @end example
1467 @end itemize
1468
1469 @section alimiter
1470
1471 The limiter prevents an input signal from rising over a desired threshold.
1472 This limiter uses lookahead technology to prevent your signal from distorting.
1473 It means that there is a small delay after the signal is processed. Keep in mind
1474 that the delay it produces is the attack time you set.
1475
1476 The filter accepts the following options:
1477
1478 @table @option
1479 @item level_in
1480 Set input gain. Default is 1.
1481
1482 @item level_out
1483 Set output gain. Default is 1.
1484
1485 @item limit
1486 Don't let signals above this level pass the limiter. Default is 1.
1487
1488 @item attack
1489 The limiter will reach its attenuation level in this amount of time in
1490 milliseconds. Default is 5 milliseconds.
1491
1492 @item release
1493 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1494 Default is 50 milliseconds.
1495
1496 @item asc
1497 When gain reduction is always needed ASC takes care of releasing to an
1498 average reduction level rather than reaching a reduction of 0 in the release
1499 time.
1500
1501 @item asc_level
1502 Select how much the release time is affected by ASC, 0 means nearly no changes
1503 in release time while 1 produces higher release times.
1504
1505 @item level
1506 Auto level output signal. Default is enabled.
1507 This normalizes audio back to 0dB if enabled.
1508 @end table
1509
1510 Depending on picked setting it is recommended to upsample input 2x or 4x times
1511 with @ref{aresample} before applying this filter.
1512
1513 @section allpass
1514
1515 Apply a two-pole all-pass filter with central frequency (in Hz)
1516 @var{frequency}, and filter-width @var{width}.
1517 An all-pass filter changes the audio's frequency to phase relationship
1518 without changing its frequency to amplitude relationship.
1519
1520 The filter accepts the following options:
1521
1522 @table @option
1523 @item frequency, f
1524 Set frequency in Hz.
1525
1526 @item width_type, t
1527 Set method to specify band-width of filter.
1528 @table @option
1529 @item h
1530 Hz
1531 @item q
1532 Q-Factor
1533 @item o
1534 octave
1535 @item s
1536 slope
1537 @item k
1538 kHz
1539 @end table
1540
1541 @item width, w
1542 Specify the band-width of a filter in width_type units.
1543
1544 @item mix, m
1545 How much to use filtered signal in output. Default is 1.
1546 Range is between 0 and 1.
1547
1548 @item channels, c
1549 Specify which channels to filter, by default all available are filtered.
1550
1551 @item normalize, n
1552 Normalize biquad coefficients, by default is disabled.
1553 Enabling it will normalize magnitude response at DC to 0dB.
1554 @end table
1555
1556 @subsection Commands
1557
1558 This filter supports the following commands:
1559 @table @option
1560 @item frequency, f
1561 Change allpass frequency.
1562 Syntax for the command is : "@var{frequency}"
1563
1564 @item width_type, t
1565 Change allpass width_type.
1566 Syntax for the command is : "@var{width_type}"
1567
1568 @item width, w
1569 Change allpass width.
1570 Syntax for the command is : "@var{width}"
1571
1572 @item mix, m
1573 Change allpass mix.
1574 Syntax for the command is : "@var{mix}"
1575 @end table
1576
1577 @section aloop
1578
1579 Loop audio samples.
1580
1581 The filter accepts the following options:
1582
1583 @table @option
1584 @item loop
1585 Set the number of loops. Setting this value to -1 will result in infinite loops.
1586 Default is 0.
1587
1588 @item size
1589 Set maximal number of samples. Default is 0.
1590
1591 @item start
1592 Set first sample of loop. Default is 0.
1593 @end table
1594
1595 @anchor{amerge}
1596 @section amerge
1597
1598 Merge two or more audio streams into a single multi-channel stream.
1599
1600 The filter accepts the following options:
1601
1602 @table @option
1603
1604 @item inputs
1605 Set the number of inputs. Default is 2.
1606
1607 @end table
1608
1609 If the channel layouts of the inputs are disjoint, and therefore compatible,
1610 the channel layout of the output will be set accordingly and the channels
1611 will be reordered as necessary. If the channel layouts of the inputs are not
1612 disjoint, the output will have all the channels of the first input then all
1613 the channels of the second input, in that order, and the channel layout of
1614 the output will be the default value corresponding to the total number of
1615 channels.
1616
1617 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1618 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1619 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1620 first input, b1 is the first channel of the second input).
1621
1622 On the other hand, if both input are in stereo, the output channels will be
1623 in the default order: a1, a2, b1, b2, and the channel layout will be
1624 arbitrarily set to 4.0, which may or may not be the expected value.
1625
1626 All inputs must have the same sample rate, and format.
1627
1628 If inputs do not have the same duration, the output will stop with the
1629 shortest.
1630
1631 @subsection Examples
1632
1633 @itemize
1634 @item
1635 Merge two mono files into a stereo stream:
1636 @example
1637 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1638 @end example
1639
1640 @item
1641 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1642 @example
1643 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
1644 @end example
1645 @end itemize
1646
1647 @section amix
1648
1649 Mixes multiple audio inputs into a single output.
1650
1651 Note that this filter only supports float samples (the @var{amerge}
1652 and @var{pan} audio filters support many formats). If the @var{amix}
1653 input has integer samples then @ref{aresample} will be automatically
1654 inserted to perform the conversion to float samples.
1655
1656 For example
1657 @example
1658 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1659 @end example
1660 will mix 3 input audio streams to a single output with the same duration as the
1661 first input and a dropout transition time of 3 seconds.
1662
1663 It accepts the following parameters:
1664 @table @option
1665
1666 @item inputs
1667 The number of inputs. If unspecified, it defaults to 2.
1668
1669 @item duration
1670 How to determine the end-of-stream.
1671 @table @option
1672
1673 @item longest
1674 The duration of the longest input. (default)
1675
1676 @item shortest
1677 The duration of the shortest input.
1678
1679 @item first
1680 The duration of the first input.
1681
1682 @end table
1683
1684 @item dropout_transition
1685 The transition time, in seconds, for volume renormalization when an input
1686 stream ends. The default value is 2 seconds.
1687
1688 @item weights
1689 Specify weight of each input audio stream as sequence.
1690 Each weight is separated by space. By default all inputs have same weight.
1691 @end table
1692
1693 @section amultiply
1694
1695 Multiply first audio stream with second audio stream and store result
1696 in output audio stream. Multiplication is done by multiplying each
1697 sample from first stream with sample at same position from second stream.
1698
1699 With this element-wise multiplication one can create amplitude fades and
1700 amplitude modulations.
1701
1702 @section anequalizer
1703
1704 High-order parametric multiband equalizer for each channel.
1705
1706 It accepts the following parameters:
1707 @table @option
1708 @item params
1709
1710 This option string is in format:
1711 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1712 Each equalizer band is separated by '|'.
1713
1714 @table @option
1715 @item chn
1716 Set channel number to which equalization will be applied.
1717 If input doesn't have that channel the entry is ignored.
1718
1719 @item f
1720 Set central frequency for band.
1721 If input doesn't have that frequency the entry is ignored.
1722
1723 @item w
1724 Set band width in hertz.
1725
1726 @item g
1727 Set band gain in dB.
1728
1729 @item t
1730 Set filter type for band, optional, can be:
1731
1732 @table @samp
1733 @item 0
1734 Butterworth, this is default.
1735
1736 @item 1
1737 Chebyshev type 1.
1738
1739 @item 2
1740 Chebyshev type 2.
1741 @end table
1742 @end table
1743
1744 @item curves
1745 With this option activated frequency response of anequalizer is displayed
1746 in video stream.
1747
1748 @item size
1749 Set video stream size. Only useful if curves option is activated.
1750
1751 @item mgain
1752 Set max gain that will be displayed. Only useful if curves option is activated.
1753 Setting this to a reasonable value makes it possible to display gain which is derived from
1754 neighbour bands which are too close to each other and thus produce higher gain
1755 when both are activated.
1756
1757 @item fscale
1758 Set frequency scale used to draw frequency response in video output.
1759 Can be linear or logarithmic. Default is logarithmic.
1760
1761 @item colors
1762 Set color for each channel curve which is going to be displayed in video stream.
1763 This is list of color names separated by space or by '|'.
1764 Unrecognised or missing colors will be replaced by white color.
1765 @end table
1766
1767 @subsection Examples
1768
1769 @itemize
1770 @item
1771 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1772 for first 2 channels using Chebyshev type 1 filter:
1773 @example
1774 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1775 @end example
1776 @end itemize
1777
1778 @subsection Commands
1779
1780 This filter supports the following commands:
1781 @table @option
1782 @item change
1783 Alter existing filter parameters.
1784 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1785
1786 @var{fN} is existing filter number, starting from 0, if no such filter is available
1787 error is returned.
1788 @var{freq} set new frequency parameter.
1789 @var{width} set new width parameter in herz.
1790 @var{gain} set new gain parameter in dB.
1791
1792 Full filter invocation with asendcmd may look like this:
1793 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1794 @end table
1795
1796 @section anlmdn
1797
1798 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1799
1800 Each sample is adjusted by looking for other samples with similar contexts. This
1801 context similarity is defined by comparing their surrounding patches of size
1802 @option{p}. Patches are searched in an area of @option{r} around the sample.
1803
1804 The filter accepts the following options:
1805
1806 @table @option
1807 @item s
1808 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1809
1810 @item p
1811 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1812 Default value is 2 milliseconds.
1813
1814 @item r
1815 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1816 Default value is 6 milliseconds.
1817
1818 @item o
1819 Set the output mode.
1820
1821 It accepts the following values:
1822 @table @option
1823 @item i
1824 Pass input unchanged.
1825
1826 @item o
1827 Pass noise filtered out.
1828
1829 @item n
1830 Pass only noise.
1831
1832 Default value is @var{o}.
1833 @end table
1834
1835 @item m
1836 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
1837 @end table
1838
1839 @subsection Commands
1840
1841 This filter supports the following commands:
1842 @table @option
1843 @item s
1844 Change denoise strength. Argument is single float number.
1845 Syntax for the command is : "@var{s}"
1846
1847 @item o
1848 Change output mode.
1849 Syntax for the command is : "i", "o" or "n" string.
1850 @end table
1851
1852 @section anlms
1853 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
1854
1855 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
1856 relate to producing the least mean square of the error signal (difference between the desired,
1857 2nd input audio stream and the actual signal, the 1st input audio stream).
1858
1859 A description of the accepted options follows.
1860
1861 @table @option
1862 @item order
1863 Set filter order.
1864
1865 @item mu
1866 Set filter mu.
1867
1868 @item eps
1869 Set the filter eps.
1870
1871 @item leakage
1872 Set the filter leakage.
1873
1874 @item out_mode
1875 It accepts the following values:
1876 @table @option
1877 @item i
1878 Pass the 1st input.
1879
1880 @item d
1881 Pass the 2nd input.
1882
1883 @item o
1884 Pass filtered samples.
1885
1886 @item n
1887 Pass difference between desired and filtered samples.
1888
1889 Default value is @var{o}.
1890 @end table
1891 @end table
1892
1893 @subsection Examples
1894
1895 @itemize
1896 @item
1897 One of many usages of this filter is noise reduction, input audio is filtered
1898 with same samples that are delayed by fixed amount, one such example for stereo audio is:
1899 @example
1900 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
1901 @end example
1902 @end itemize
1903
1904 @subsection Commands
1905
1906 This filter supports the same commands as options, excluding option @code{order}.
1907
1908 @section anull
1909
1910 Pass the audio source unchanged to the output.
1911
1912 @section apad
1913
1914 Pad the end of an audio stream with silence.
1915
1916 This can be used together with @command{ffmpeg} @option{-shortest} to
1917 extend audio streams to the same length as the video stream.
1918
1919 A description of the accepted options follows.
1920
1921 @table @option
1922 @item packet_size
1923 Set silence packet size. Default value is 4096.
1924
1925 @item pad_len
1926 Set the number of samples of silence to add to the end. After the
1927 value is reached, the stream is terminated. This option is mutually
1928 exclusive with @option{whole_len}.
1929
1930 @item whole_len
1931 Set the minimum total number of samples in the output audio stream. If
1932 the value is longer than the input audio length, silence is added to
1933 the end, until the value is reached. This option is mutually exclusive
1934 with @option{pad_len}.
1935
1936 @item pad_dur
1937 Specify the duration of samples of silence to add. See
1938 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1939 for the accepted syntax. Used only if set to non-zero value.
1940
1941 @item whole_dur
1942 Specify the minimum total duration in the output audio stream. See
1943 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1944 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
1945 the input audio length, silence is added to the end, until the value is reached.
1946 This option is mutually exclusive with @option{pad_dur}
1947 @end table
1948
1949 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
1950 nor @option{whole_dur} option is set, the filter will add silence to the end of
1951 the input stream indefinitely.
1952
1953 @subsection Examples
1954
1955 @itemize
1956 @item
1957 Add 1024 samples of silence to the end of the input:
1958 @example
1959 apad=pad_len=1024
1960 @end example
1961
1962 @item
1963 Make sure the audio output will contain at least 10000 samples, pad
1964 the input with silence if required:
1965 @example
1966 apad=whole_len=10000
1967 @end example
1968
1969 @item
1970 Use @command{ffmpeg} to pad the audio input with silence, so that the
1971 video stream will always result the shortest and will be converted
1972 until the end in the output file when using the @option{shortest}
1973 option:
1974 @example
1975 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1976 @end example
1977 @end itemize
1978
1979 @section aphaser
1980 Add a phasing effect to the input audio.
1981
1982 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1983 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1984
1985 A description of the accepted parameters follows.
1986
1987 @table @option
1988 @item in_gain
1989 Set input gain. Default is 0.4.
1990
1991 @item out_gain
1992 Set output gain. Default is 0.74
1993
1994 @item delay
1995 Set delay in milliseconds. Default is 3.0.
1996
1997 @item decay
1998 Set decay. Default is 0.4.
1999
2000 @item speed
2001 Set modulation speed in Hz. Default is 0.5.
2002
2003 @item type
2004 Set modulation type. Default is triangular.
2005
2006 It accepts the following values:
2007 @table @samp
2008 @item triangular, t
2009 @item sinusoidal, s
2010 @end table
2011 @end table
2012
2013 @section apulsator
2014
2015 Audio pulsator is something between an autopanner and a tremolo.
2016 But it can produce funny stereo effects as well. Pulsator changes the volume
2017 of the left and right channel based on a LFO (low frequency oscillator) with
2018 different waveforms and shifted phases.
2019 This filter have the ability to define an offset between left and right
2020 channel. An offset of 0 means that both LFO shapes match each other.
2021 The left and right channel are altered equally - a conventional tremolo.
2022 An offset of 50% means that the shape of the right channel is exactly shifted
2023 in phase (or moved backwards about half of the frequency) - pulsator acts as
2024 an autopanner. At 1 both curves match again. Every setting in between moves the
2025 phase shift gapless between all stages and produces some "bypassing" sounds with
2026 sine and triangle waveforms. The more you set the offset near 1 (starting from
2027 the 0.5) the faster the signal passes from the left to the right speaker.
2028
2029 The filter accepts the following options:
2030
2031 @table @option
2032 @item level_in
2033 Set input gain. By default it is 1. Range is [0.015625 - 64].
2034
2035 @item level_out
2036 Set output gain. By default it is 1. Range is [0.015625 - 64].
2037
2038 @item mode
2039 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2040 sawup or sawdown. Default is sine.
2041
2042 @item amount
2043 Set modulation. Define how much of original signal is affected by the LFO.
2044
2045 @item offset_l
2046 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2047
2048 @item offset_r
2049 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2050
2051 @item width
2052 Set pulse width. Default is 1. Allowed range is [0 - 2].
2053
2054 @item timing
2055 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2056
2057 @item bpm
2058 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2059 is set to bpm.
2060
2061 @item ms
2062 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2063 is set to ms.
2064
2065 @item hz
2066 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2067 if timing is set to hz.
2068 @end table
2069
2070 @anchor{aresample}
2071 @section aresample
2072
2073 Resample the input audio to the specified parameters, using the
2074 libswresample library. If none are specified then the filter will
2075 automatically convert between its input and output.
2076
2077 This filter is also able to stretch/squeeze the audio data to make it match
2078 the timestamps or to inject silence / cut out audio to make it match the
2079 timestamps, do a combination of both or do neither.
2080
2081 The filter accepts the syntax
2082 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2083 expresses a sample rate and @var{resampler_options} is a list of
2084 @var{key}=@var{value} pairs, separated by ":". See the
2085 @ref{Resampler Options,,"Resampler Options" section in the
2086 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2087 for the complete list of supported options.
2088
2089 @subsection Examples
2090
2091 @itemize
2092 @item
2093 Resample the input audio to 44100Hz:
2094 @example
2095 aresample=44100
2096 @end example
2097
2098 @item
2099 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2100 samples per second compensation:
2101 @example
2102 aresample=async=1000
2103 @end example
2104 @end itemize
2105
2106 @section areverse
2107
2108 Reverse an audio clip.
2109
2110 Warning: This filter requires memory to buffer the entire clip, so trimming
2111 is suggested.
2112
2113 @subsection Examples
2114
2115 @itemize
2116 @item
2117 Take the first 5 seconds of a clip, and reverse it.
2118 @example
2119 atrim=end=5,areverse
2120 @end example
2121 @end itemize
2122
2123 @section arnndn
2124
2125 Reduce noise from speech using Recurrent Neural Networks.
2126
2127 This filter accepts the following options:
2128
2129 @table @option
2130 @item model, m
2131 Set train model file to load. This option is always required.
2132 @end table
2133
2134 @section asetnsamples
2135
2136 Set the number of samples per each output audio frame.
2137
2138 The last output packet may contain a different number of samples, as
2139 the filter will flush all the remaining samples when the input audio
2140 signals its end.
2141
2142 The filter accepts the following options:
2143
2144 @table @option
2145
2146 @item nb_out_samples, n
2147 Set the number of frames per each output audio frame. The number is
2148 intended as the number of samples @emph{per each channel}.
2149 Default value is 1024.
2150
2151 @item pad, p
2152 If set to 1, the filter will pad the last audio frame with zeroes, so
2153 that the last frame will contain the same number of samples as the
2154 previous ones. Default value is 1.
2155 @end table
2156
2157 For example, to set the number of per-frame samples to 1234 and
2158 disable padding for the last frame, use:
2159 @example
2160 asetnsamples=n=1234:p=0
2161 @end example
2162
2163 @section asetrate
2164
2165 Set the sample rate without altering the PCM data.
2166 This will result in a change of speed and pitch.
2167
2168 The filter accepts the following options:
2169
2170 @table @option
2171 @item sample_rate, r
2172 Set the output sample rate. Default is 44100 Hz.
2173 @end table
2174
2175 @section ashowinfo
2176
2177 Show a line containing various information for each input audio frame.
2178 The input audio is not modified.
2179
2180 The shown line contains a sequence of key/value pairs of the form
2181 @var{key}:@var{value}.
2182
2183 The following values are shown in the output:
2184
2185 @table @option
2186 @item n
2187 The (sequential) number of the input frame, starting from 0.
2188
2189 @item pts
2190 The presentation timestamp of the input frame, in time base units; the time base
2191 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2192
2193 @item pts_time
2194 The presentation timestamp of the input frame in seconds.
2195
2196 @item pos
2197 position of the frame in the input stream, -1 if this information in
2198 unavailable and/or meaningless (for example in case of synthetic audio)
2199
2200 @item fmt
2201 The sample format.
2202
2203 @item chlayout
2204 The channel layout.
2205
2206 @item rate
2207 The sample rate for the audio frame.
2208
2209 @item nb_samples
2210 The number of samples (per channel) in the frame.
2211
2212 @item checksum
2213 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2214 audio, the data is treated as if all the planes were concatenated.
2215
2216 @item plane_checksums
2217 A list of Adler-32 checksums for each data plane.
2218 @end table
2219
2220 @section asoftclip
2221 Apply audio soft clipping.
2222
2223 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2224 along a smooth curve, rather than the abrupt shape of hard-clipping.
2225
2226 This filter accepts the following options:
2227
2228 @table @option
2229 @item type
2230 Set type of soft-clipping.
2231
2232 It accepts the following values:
2233 @table @option
2234 @item tanh
2235 @item atan
2236 @item cubic
2237 @item exp
2238 @item alg
2239 @item quintic
2240 @item sin
2241 @end table
2242
2243 @item param
2244 Set additional parameter which controls sigmoid function.
2245 @end table
2246
2247 @section asr
2248 Automatic Speech Recognition
2249
2250 This filter uses PocketSphinx for speech recognition. To enable
2251 compilation of this filter, you need to configure FFmpeg with
2252 @code{--enable-pocketsphinx}.
2253
2254 It accepts the following options:
2255
2256 @table @option
2257 @item rate
2258 Set sampling rate of input audio. Defaults is @code{16000}.
2259 This need to match speech models, otherwise one will get poor results.
2260
2261 @item hmm
2262 Set dictionary containing acoustic model files.
2263
2264 @item dict
2265 Set pronunciation dictionary.
2266
2267 @item lm
2268 Set language model file.
2269
2270 @item lmctl
2271 Set language model set.
2272
2273 @item lmname
2274 Set which language model to use.
2275
2276 @item logfn
2277 Set output for log messages.
2278 @end table
2279
2280 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2281
2282 @anchor{astats}
2283 @section astats
2284
2285 Display time domain statistical information about the audio channels.
2286 Statistics are calculated and displayed for each audio channel and,
2287 where applicable, an overall figure is also given.
2288
2289 It accepts the following option:
2290 @table @option
2291 @item length
2292 Short window length in seconds, used for peak and trough RMS measurement.
2293 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2294
2295 @item metadata
2296
2297 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2298 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2299 disabled.
2300
2301 Available keys for each channel are:
2302 DC_offset
2303 Min_level
2304 Max_level
2305 Min_difference
2306 Max_difference
2307 Mean_difference
2308 RMS_difference
2309 Peak_level
2310 RMS_peak
2311 RMS_trough
2312 Crest_factor
2313 Flat_factor
2314 Peak_count
2315 Bit_depth
2316 Dynamic_range
2317 Zero_crossings
2318 Zero_crossings_rate
2319 Number_of_NaNs
2320 Number_of_Infs
2321 Number_of_denormals
2322
2323 and for Overall:
2324 DC_offset
2325 Min_level
2326 Max_level
2327 Min_difference
2328 Max_difference
2329 Mean_difference
2330 RMS_difference
2331 Peak_level
2332 RMS_level
2333 RMS_peak
2334 RMS_trough
2335 Flat_factor
2336 Peak_count
2337 Bit_depth
2338 Number_of_samples
2339 Number_of_NaNs
2340 Number_of_Infs
2341 Number_of_denormals
2342
2343 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2344 this @code{lavfi.astats.Overall.Peak_count}.
2345
2346 For description what each key means read below.
2347
2348 @item reset
2349 Set number of frame after which stats are going to be recalculated.
2350 Default is disabled.
2351
2352 @item measure_perchannel
2353 Select the entries which need to be measured per channel. The metadata keys can
2354 be used as flags, default is @option{all} which measures everything.
2355 @option{none} disables all per channel measurement.
2356
2357 @item measure_overall
2358 Select the entries which need to be measured overall. The metadata keys can
2359 be used as flags, default is @option{all} which measures everything.
2360 @option{none} disables all overall measurement.
2361
2362 @end table
2363
2364 A description of each shown parameter follows:
2365
2366 @table @option
2367 @item DC offset
2368 Mean amplitude displacement from zero.
2369
2370 @item Min level
2371 Minimal sample level.
2372
2373 @item Max level
2374 Maximal sample level.
2375
2376 @item Min difference
2377 Minimal difference between two consecutive samples.
2378
2379 @item Max difference
2380 Maximal difference between two consecutive samples.
2381
2382 @item Mean difference
2383 Mean difference between two consecutive samples.
2384 The average of each difference between two consecutive samples.
2385
2386 @item RMS difference
2387 Root Mean Square difference between two consecutive samples.
2388
2389 @item Peak level dB
2390 @item RMS level dB
2391 Standard peak and RMS level measured in dBFS.
2392
2393 @item RMS peak dB
2394 @item RMS trough dB
2395 Peak and trough values for RMS level measured over a short window.
2396
2397 @item Crest factor
2398 Standard ratio of peak to RMS level (note: not in dB).
2399
2400 @item Flat factor
2401 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2402 (i.e. either @var{Min level} or @var{Max level}).
2403
2404 @item Peak count
2405 Number of occasions (not the number of samples) that the signal attained either
2406 @var{Min level} or @var{Max level}.
2407
2408 @item Bit depth
2409 Overall bit depth of audio. Number of bits used for each sample.
2410
2411 @item Dynamic range
2412 Measured dynamic range of audio in dB.
2413
2414 @item Zero crossings
2415 Number of points where the waveform crosses the zero level axis.
2416
2417 @item Zero crossings rate
2418 Rate of Zero crossings and number of audio samples.
2419 @end table
2420
2421 @section atempo
2422
2423 Adjust audio tempo.
2424
2425 The filter accepts exactly one parameter, the audio tempo. If not
2426 specified then the filter will assume nominal 1.0 tempo. Tempo must
2427 be in the [0.5, 100.0] range.
2428
2429 Note that tempo greater than 2 will skip some samples rather than
2430 blend them in.  If for any reason this is a concern it is always
2431 possible to daisy-chain several instances of atempo to achieve the
2432 desired product tempo.
2433
2434 @subsection Examples
2435
2436 @itemize
2437 @item
2438 Slow down audio to 80% tempo:
2439 @example
2440 atempo=0.8
2441 @end example
2442
2443 @item
2444 To speed up audio to 300% tempo:
2445 @example
2446 atempo=3
2447 @end example
2448
2449 @item
2450 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2451 @example
2452 atempo=sqrt(3),atempo=sqrt(3)
2453 @end example
2454 @end itemize
2455
2456 @subsection Commands
2457
2458 This filter supports the following commands:
2459 @table @option
2460 @item tempo
2461 Change filter tempo scale factor.
2462 Syntax for the command is : "@var{tempo}"
2463 @end table
2464
2465 @section atrim
2466
2467 Trim the input so that the output contains one continuous subpart of the input.
2468
2469 It accepts the following parameters:
2470 @table @option
2471 @item start
2472 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2473 sample with the timestamp @var{start} will be the first sample in the output.
2474
2475 @item end
2476 Specify time of the first audio sample that will be dropped, i.e. the
2477 audio sample immediately preceding the one with the timestamp @var{end} will be
2478 the last sample in the output.
2479
2480 @item start_pts
2481 Same as @var{start}, except this option sets the start timestamp in samples
2482 instead of seconds.
2483
2484 @item end_pts
2485 Same as @var{end}, except this option sets the end timestamp in samples instead
2486 of seconds.
2487
2488 @item duration
2489 The maximum duration of the output in seconds.
2490
2491 @item start_sample
2492 The number of the first sample that should be output.
2493
2494 @item end_sample
2495 The number of the first sample that should be dropped.
2496 @end table
2497
2498 @option{start}, @option{end}, and @option{duration} are expressed as time
2499 duration specifications; see
2500 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2501
2502 Note that the first two sets of the start/end options and the @option{duration}
2503 option look at the frame timestamp, while the _sample options simply count the
2504 samples that pass through the filter. So start/end_pts and start/end_sample will
2505 give different results when the timestamps are wrong, inexact or do not start at
2506 zero. Also note that this filter does not modify the timestamps. If you wish
2507 to have the output timestamps start at zero, insert the asetpts filter after the
2508 atrim filter.
2509
2510 If multiple start or end options are set, this filter tries to be greedy and
2511 keep all samples that match at least one of the specified constraints. To keep
2512 only the part that matches all the constraints at once, chain multiple atrim
2513 filters.
2514
2515 The defaults are such that all the input is kept. So it is possible to set e.g.
2516 just the end values to keep everything before the specified time.
2517
2518 Examples:
2519 @itemize
2520 @item
2521 Drop everything except the second minute of input:
2522 @example
2523 ffmpeg -i INPUT -af atrim=60:120
2524 @end example
2525
2526 @item
2527 Keep only the first 1000 samples:
2528 @example
2529 ffmpeg -i INPUT -af atrim=end_sample=1000
2530 @end example
2531
2532 @end itemize
2533
2534 @section axcorrelate
2535 Calculate normalized cross-correlation between two input audio streams.
2536
2537 Resulted samples are always between -1 and 1 inclusive.
2538 If result is 1 it means two input samples are highly correlated in that selected segment.
2539 Result 0 means they are not correlated at all.
2540 If result is -1 it means two input samples are out of phase, which means they cancel each
2541 other.
2542
2543 The filter accepts the following options:
2544
2545 @table @option
2546 @item size
2547 Set size of segment over which cross-correlation is calculated.
2548 Default is 256. Allowed range is from 2 to 131072.
2549
2550 @item algo
2551 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2552 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2553 are always zero and thus need much less calculations to make.
2554 This is generally not true, but is valid for typical audio streams.
2555 @end table
2556
2557 @subsection Examples
2558
2559 @itemize
2560 @item
2561 Calculate correlation between channels in stereo audio stream:
2562 @example
2563 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2564 @end example
2565 @end itemize
2566
2567 @section bandpass
2568
2569 Apply a two-pole Butterworth band-pass filter with central
2570 frequency @var{frequency}, and (3dB-point) band-width width.
2571 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2572 instead of the default: constant 0dB peak gain.
2573 The filter roll off at 6dB per octave (20dB per decade).
2574
2575 The filter accepts the following options:
2576
2577 @table @option
2578 @item frequency, f
2579 Set the filter's central frequency. Default is @code{3000}.
2580
2581 @item csg
2582 Constant skirt gain if set to 1. Defaults to 0.
2583
2584 @item width_type, t
2585 Set method to specify band-width of filter.
2586 @table @option
2587 @item h
2588 Hz
2589 @item q
2590 Q-Factor
2591 @item o
2592 octave
2593 @item s
2594 slope
2595 @item k
2596 kHz
2597 @end table
2598
2599 @item width, w
2600 Specify the band-width of a filter in width_type units.
2601
2602 @item mix, m
2603 How much to use filtered signal in output. Default is 1.
2604 Range is between 0 and 1.
2605
2606 @item channels, c
2607 Specify which channels to filter, by default all available are filtered.
2608
2609 @item normalize, n
2610 Normalize biquad coefficients, by default is disabled.
2611 Enabling it will normalize magnitude response at DC to 0dB.
2612 @end table
2613
2614 @subsection Commands
2615
2616 This filter supports the following commands:
2617 @table @option
2618 @item frequency, f
2619 Change bandpass frequency.
2620 Syntax for the command is : "@var{frequency}"
2621
2622 @item width_type, t
2623 Change bandpass width_type.
2624 Syntax for the command is : "@var{width_type}"
2625
2626 @item width, w
2627 Change bandpass width.
2628 Syntax for the command is : "@var{width}"
2629
2630 @item mix, m
2631 Change bandpass mix.
2632 Syntax for the command is : "@var{mix}"
2633 @end table
2634
2635 @section bandreject
2636
2637 Apply a two-pole Butterworth band-reject filter with central
2638 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2639 The filter roll off at 6dB per octave (20dB per decade).
2640
2641 The filter accepts the following options:
2642
2643 @table @option
2644 @item frequency, f
2645 Set the filter's central frequency. Default is @code{3000}.
2646
2647 @item width_type, t
2648 Set method to specify band-width of filter.
2649 @table @option
2650 @item h
2651 Hz
2652 @item q
2653 Q-Factor
2654 @item o
2655 octave
2656 @item s
2657 slope
2658 @item k
2659 kHz
2660 @end table
2661
2662 @item width, w
2663 Specify the band-width of a filter in width_type units.
2664
2665 @item mix, m
2666 How much to use filtered signal in output. Default is 1.
2667 Range is between 0 and 1.
2668
2669 @item channels, c
2670 Specify which channels to filter, by default all available are filtered.
2671
2672 @item normalize, n
2673 Normalize biquad coefficients, by default is disabled.
2674 Enabling it will normalize magnitude response at DC to 0dB.
2675 @end table
2676
2677 @subsection Commands
2678
2679 This filter supports the following commands:
2680 @table @option
2681 @item frequency, f
2682 Change bandreject frequency.
2683 Syntax for the command is : "@var{frequency}"
2684
2685 @item width_type, t
2686 Change bandreject width_type.
2687 Syntax for the command is : "@var{width_type}"
2688
2689 @item width, w
2690 Change bandreject width.
2691 Syntax for the command is : "@var{width}"
2692
2693 @item mix, m
2694 Change bandreject mix.
2695 Syntax for the command is : "@var{mix}"
2696 @end table
2697
2698 @section bass, lowshelf
2699
2700 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2701 shelving filter with a response similar to that of a standard
2702 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2703
2704 The filter accepts the following options:
2705
2706 @table @option
2707 @item gain, g
2708 Give the gain at 0 Hz. Its useful range is about -20
2709 (for a large cut) to +20 (for a large boost).
2710 Beware of clipping when using a positive gain.
2711
2712 @item frequency, f
2713 Set the filter's central frequency and so can be used
2714 to extend or reduce the frequency range to be boosted or cut.
2715 The default value is @code{100} Hz.
2716
2717 @item width_type, t
2718 Set method to specify band-width of filter.
2719 @table @option
2720 @item h
2721 Hz
2722 @item q
2723 Q-Factor
2724 @item o
2725 octave
2726 @item s
2727 slope
2728 @item k
2729 kHz
2730 @end table
2731
2732 @item width, w
2733 Determine how steep is the filter's shelf transition.
2734
2735 @item mix, m
2736 How much to use filtered signal in output. Default is 1.
2737 Range is between 0 and 1.
2738
2739 @item channels, c
2740 Specify which channels to filter, by default all available are filtered.
2741
2742 @item normalize, n
2743 Normalize biquad coefficients, by default is disabled.
2744 Enabling it will normalize magnitude response at DC to 0dB.
2745 @end table
2746
2747 @subsection Commands
2748
2749 This filter supports the following commands:
2750 @table @option
2751 @item frequency, f
2752 Change bass frequency.
2753 Syntax for the command is : "@var{frequency}"
2754
2755 @item width_type, t
2756 Change bass width_type.
2757 Syntax for the command is : "@var{width_type}"
2758
2759 @item width, w
2760 Change bass width.
2761 Syntax for the command is : "@var{width}"
2762
2763 @item gain, g
2764 Change bass gain.
2765 Syntax for the command is : "@var{gain}"
2766
2767 @item mix, m
2768 Change bass mix.
2769 Syntax for the command is : "@var{mix}"
2770 @end table
2771
2772 @section biquad
2773
2774 Apply a biquad IIR filter with the given coefficients.
2775 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2776 are the numerator and denominator coefficients respectively.
2777 and @var{channels}, @var{c} specify which channels to filter, by default all
2778 available are filtered.
2779
2780 @subsection Commands
2781
2782 This filter supports the following commands:
2783 @table @option
2784 @item a0
2785 @item a1
2786 @item a2
2787 @item b0
2788 @item b1
2789 @item b2
2790 Change biquad parameter.
2791 Syntax for the command is : "@var{value}"
2792
2793 @item mix, m
2794 How much to use filtered signal in output. Default is 1.
2795 Range is between 0 and 1.
2796
2797 @item channels, c
2798 Specify which channels to filter, by default all available are filtered.
2799
2800 @item normalize, n
2801 Normalize biquad coefficients, by default is disabled.
2802 Enabling it will normalize magnitude response at DC to 0dB.
2803 @end table
2804
2805 @section bs2b
2806 Bauer stereo to binaural transformation, which improves headphone listening of
2807 stereo audio records.
2808
2809 To enable compilation of this filter you need to configure FFmpeg with
2810 @code{--enable-libbs2b}.
2811
2812 It accepts the following parameters:
2813 @table @option
2814
2815 @item profile
2816 Pre-defined crossfeed level.
2817 @table @option
2818
2819 @item default
2820 Default level (fcut=700, feed=50).
2821
2822 @item cmoy
2823 Chu Moy circuit (fcut=700, feed=60).
2824
2825 @item jmeier
2826 Jan Meier circuit (fcut=650, feed=95).
2827
2828 @end table
2829
2830 @item fcut
2831 Cut frequency (in Hz).
2832
2833 @item feed
2834 Feed level (in Hz).
2835
2836 @end table
2837
2838 @section channelmap
2839
2840 Remap input channels to new locations.
2841
2842 It accepts the following parameters:
2843 @table @option
2844 @item map
2845 Map channels from input to output. The argument is a '|'-separated list of
2846 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2847 @var{in_channel} form. @var{in_channel} can be either the name of the input
2848 channel (e.g. FL for front left) or its index in the input channel layout.
2849 @var{out_channel} is the name of the output channel or its index in the output
2850 channel layout. If @var{out_channel} is not given then it is implicitly an
2851 index, starting with zero and increasing by one for each mapping.
2852
2853 @item channel_layout
2854 The channel layout of the output stream.
2855 @end table
2856
2857 If no mapping is present, the filter will implicitly map input channels to
2858 output channels, preserving indices.
2859
2860 @subsection Examples
2861
2862 @itemize
2863 @item
2864 For example, assuming a 5.1+downmix input MOV file,
2865 @example
2866 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2867 @end example
2868 will create an output WAV file tagged as stereo from the downmix channels of
2869 the input.
2870
2871 @item
2872 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2873 @example
2874 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2875 @end example
2876 @end itemize
2877
2878 @section channelsplit
2879
2880 Split each channel from an input audio stream into a separate output stream.
2881
2882 It accepts the following parameters:
2883 @table @option
2884 @item channel_layout
2885 The channel layout of the input stream. The default is "stereo".
2886 @item channels
2887 A channel layout describing the channels to be extracted as separate output streams
2888 or "all" to extract each input channel as a separate stream. The default is "all".
2889
2890 Choosing channels not present in channel layout in the input will result in an error.
2891 @end table
2892
2893 @subsection Examples
2894
2895 @itemize
2896 @item
2897 For example, assuming a stereo input MP3 file,
2898 @example
2899 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2900 @end example
2901 will create an output Matroska file with two audio streams, one containing only
2902 the left channel and the other the right channel.
2903
2904 @item
2905 Split a 5.1 WAV file into per-channel files:
2906 @example
2907 ffmpeg -i in.wav -filter_complex
2908 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2909 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2910 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2911 side_right.wav
2912 @end example
2913
2914 @item
2915 Extract only LFE from a 5.1 WAV file:
2916 @example
2917 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2918 -map '[LFE]' lfe.wav
2919 @end example
2920 @end itemize
2921
2922 @section chorus
2923 Add a chorus effect to the audio.
2924
2925 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2926
2927 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2928 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2929 The modulation depth defines the range the modulated delay is played before or after
2930 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2931 sound tuned around the original one, like in a chorus where some vocals are slightly
2932 off key.
2933
2934 It accepts the following parameters:
2935 @table @option
2936 @item in_gain
2937 Set input gain. Default is 0.4.
2938
2939 @item out_gain
2940 Set output gain. Default is 0.4.
2941
2942 @item delays
2943 Set delays. A typical delay is around 40ms to 60ms.
2944
2945 @item decays
2946 Set decays.
2947
2948 @item speeds
2949 Set speeds.
2950
2951 @item depths
2952 Set depths.
2953 @end table
2954
2955 @subsection Examples
2956
2957 @itemize
2958 @item
2959 A single delay:
2960 @example
2961 chorus=0.7:0.9:55:0.4:0.25:2
2962 @end example
2963
2964 @item
2965 Two delays:
2966 @example
2967 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2968 @end example
2969
2970 @item
2971 Fuller sounding chorus with three delays:
2972 @example
2973 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
2974 @end example
2975 @end itemize
2976
2977 @section compand
2978 Compress or expand the audio's dynamic range.
2979
2980 It accepts the following parameters:
2981
2982 @table @option
2983
2984 @item attacks
2985 @item decays
2986 A list of times in seconds for each channel over which the instantaneous level
2987 of the input signal is averaged to determine its volume. @var{attacks} refers to
2988 increase of volume and @var{decays} refers to decrease of volume. For most
2989 situations, the attack time (response to the audio getting louder) should be
2990 shorter than the decay time, because the human ear is more sensitive to sudden
2991 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2992 a typical value for decay is 0.8 seconds.
2993 If specified number of attacks & decays is lower than number of channels, the last
2994 set attack/decay will be used for all remaining channels.
2995
2996 @item points
2997 A list of points for the transfer function, specified in dB relative to the
2998 maximum possible signal amplitude. Each key points list must be defined using
2999 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3000 @code{x0/y0 x1/y1 x2/y2 ....}
3001
3002 The input values must be in strictly increasing order but the transfer function
3003 does not have to be monotonically rising. The point @code{0/0} is assumed but
3004 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3005 function are @code{-70/-70|-60/-20|1/0}.
3006
3007 @item soft-knee
3008 Set the curve radius in dB for all joints. It defaults to 0.01.
3009
3010 @item gain
3011 Set the additional gain in dB to be applied at all points on the transfer
3012 function. This allows for easy adjustment of the overall gain.
3013 It defaults to 0.
3014
3015 @item volume
3016 Set an initial volume, in dB, to be assumed for each channel when filtering
3017 starts. This permits the user to supply a nominal level initially, so that, for
3018 example, a very large gain is not applied to initial signal levels before the
3019 companding has begun to operate. A typical value for audio which is initially
3020 quiet is -90 dB. It defaults to 0.
3021
3022 @item delay
3023 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3024 delayed before being fed to the volume adjuster. Specifying a delay
3025 approximately equal to the attack/decay times allows the filter to effectively
3026 operate in predictive rather than reactive mode. It defaults to 0.
3027
3028 @end table
3029
3030 @subsection Examples
3031
3032 @itemize
3033 @item
3034 Make music with both quiet and loud passages suitable for listening to in a
3035 noisy environment:
3036 @example
3037 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3038 @end example
3039
3040 Another example for audio with whisper and explosion parts:
3041 @example
3042 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3043 @end example
3044
3045 @item
3046 A noise gate for when the noise is at a lower level than the signal:
3047 @example
3048 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3049 @end example
3050
3051 @item
3052 Here is another noise gate, this time for when the noise is at a higher level
3053 than the signal (making it, in some ways, similar to squelch):
3054 @example
3055 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3056 @end example
3057
3058 @item
3059 2:1 compression starting at -6dB:
3060 @example
3061 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3062 @end example
3063
3064 @item
3065 2:1 compression starting at -9dB:
3066 @example
3067 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3068 @end example
3069
3070 @item
3071 2:1 compression starting at -12dB:
3072 @example
3073 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3074 @end example
3075
3076 @item
3077 2:1 compression starting at -18dB:
3078 @example
3079 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3080 @end example
3081
3082 @item
3083 3:1 compression starting at -15dB:
3084 @example
3085 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3086 @end example
3087
3088 @item
3089 Compressor/Gate:
3090 @example
3091 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3092 @end example
3093
3094 @item
3095 Expander:
3096 @example
3097 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
3098 @end example
3099
3100 @item
3101 Hard limiter at -6dB:
3102 @example
3103 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3104 @end example
3105
3106 @item
3107 Hard limiter at -12dB:
3108 @example
3109 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3110 @end example
3111
3112 @item
3113 Hard noise gate at -35 dB:
3114 @example
3115 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3116 @end example
3117
3118 @item
3119 Soft limiter:
3120 @example
3121 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3122 @end example
3123 @end itemize
3124
3125 @section compensationdelay
3126
3127 Compensation Delay Line is a metric based delay to compensate differing
3128 positions of microphones or speakers.
3129
3130 For example, you have recorded guitar with two microphones placed in
3131 different locations. Because the front of sound wave has fixed speed in
3132 normal conditions, the phasing of microphones can vary and depends on
3133 their location and interposition. The best sound mix can be achieved when
3134 these microphones are in phase (synchronized). Note that a distance of
3135 ~30 cm between microphones makes one microphone capture the signal in
3136 antiphase to the other microphone. That makes the final mix sound moody.
3137 This filter helps to solve phasing problems by adding different delays
3138 to each microphone track and make them synchronized.
3139
3140 The best result can be reached when you take one track as base and
3141 synchronize other tracks one by one with it.
3142 Remember that synchronization/delay tolerance depends on sample rate, too.
3143 Higher sample rates will give more tolerance.
3144
3145 The filter accepts the following parameters:
3146
3147 @table @option
3148 @item mm
3149 Set millimeters distance. This is compensation distance for fine tuning.
3150 Default is 0.
3151
3152 @item cm
3153 Set cm distance. This is compensation distance for tightening distance setup.
3154 Default is 0.
3155
3156 @item m
3157 Set meters distance. This is compensation distance for hard distance setup.
3158 Default is 0.
3159
3160 @item dry
3161 Set dry amount. Amount of unprocessed (dry) signal.
3162 Default is 0.
3163
3164 @item wet
3165 Set wet amount. Amount of processed (wet) signal.
3166 Default is 1.
3167
3168 @item temp
3169 Set temperature in degrees Celsius. This is the temperature of the environment.
3170 Default is 20.
3171 @end table
3172
3173 @section crossfeed
3174 Apply headphone crossfeed filter.
3175
3176 Crossfeed is the process of blending the left and right channels of stereo
3177 audio recording.
3178 It is mainly used to reduce extreme stereo separation of low frequencies.
3179
3180 The intent is to produce more speaker like sound to the listener.
3181
3182 The filter accepts the following options:
3183
3184 @table @option
3185 @item strength
3186 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3187 This sets gain of low shelf filter for side part of stereo image.
3188 Default is -6dB. Max allowed is -30db when strength is set to 1.
3189
3190 @item range
3191 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3192 This sets cut off frequency of low shelf filter. Default is cut off near
3193 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3194
3195 @item level_in
3196 Set input gain. Default is 0.9.
3197
3198 @item level_out
3199 Set output gain. Default is 1.
3200 @end table
3201
3202 @section crystalizer
3203 Simple algorithm to expand audio dynamic range.
3204
3205 The filter accepts the following options:
3206
3207 @table @option
3208 @item i
3209 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3210 (unchanged sound) to 10.0 (maximum effect).
3211
3212 @item c
3213 Enable clipping. By default is enabled.
3214 @end table
3215
3216 @section dcshift
3217 Apply a DC shift to the audio.
3218
3219 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3220 in the recording chain) from the audio. The effect of a DC offset is reduced
3221 headroom and hence volume. The @ref{astats} filter can be used to determine if
3222 a signal has a DC offset.
3223
3224 @table @option
3225 @item shift
3226 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3227 the audio.
3228
3229 @item limitergain
3230 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3231 used to prevent clipping.
3232 @end table
3233
3234 @section deesser
3235
3236 Apply de-essing to the audio samples.
3237
3238 @table @option
3239 @item i
3240 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3241 Default is 0.
3242
3243 @item m
3244 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3245 Default is 0.5.
3246
3247 @item f
3248 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3249 Default is 0.5.
3250
3251 @item s
3252 Set the output mode.
3253
3254 It accepts the following values:
3255 @table @option
3256 @item i
3257 Pass input unchanged.
3258
3259 @item o
3260 Pass ess filtered out.
3261
3262 @item e
3263 Pass only ess.
3264
3265 Default value is @var{o}.
3266 @end table
3267
3268 @end table
3269
3270 @section drmeter
3271 Measure audio dynamic range.
3272
3273 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3274 is found in transition material. And anything less that 8 have very poor dynamics
3275 and is very compressed.
3276
3277 The filter accepts the following options:
3278
3279 @table @option
3280 @item length
3281 Set window length in seconds used to split audio into segments of equal length.
3282 Default is 3 seconds.
3283 @end table
3284
3285 @section dynaudnorm
3286 Dynamic Audio Normalizer.
3287
3288 This filter applies a certain amount of gain to the input audio in order
3289 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3290 contrast to more "simple" normalization algorithms, the Dynamic Audio
3291 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3292 This allows for applying extra gain to the "quiet" sections of the audio
3293 while avoiding distortions or clipping the "loud" sections. In other words:
3294 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3295 sections, in the sense that the volume of each section is brought to the
3296 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3297 this goal *without* applying "dynamic range compressing". It will retain 100%
3298 of the dynamic range *within* each section of the audio file.
3299
3300 @table @option
3301 @item framelen, f
3302 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3303 Default is 500 milliseconds.
3304 The Dynamic Audio Normalizer processes the input audio in small chunks,
3305 referred to as frames. This is required, because a peak magnitude has no
3306 meaning for just a single sample value. Instead, we need to determine the
3307 peak magnitude for a contiguous sequence of sample values. While a "standard"
3308 normalizer would simply use the peak magnitude of the complete file, the
3309 Dynamic Audio Normalizer determines the peak magnitude individually for each
3310 frame. The length of a frame is specified in milliseconds. By default, the
3311 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3312 been found to give good results with most files.
3313 Note that the exact frame length, in number of samples, will be determined
3314 automatically, based on the sampling rate of the individual input audio file.
3315
3316 @item gausssize, g
3317 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3318 number. Default is 31.
3319 Probably the most important parameter of the Dynamic Audio Normalizer is the
3320 @code{window size} of the Gaussian smoothing filter. The filter's window size
3321 is specified in frames, centered around the current frame. For the sake of
3322 simplicity, this must be an odd number. Consequently, the default value of 31
3323 takes into account the current frame, as well as the 15 preceding frames and
3324 the 15 subsequent frames. Using a larger window results in a stronger
3325 smoothing effect and thus in less gain variation, i.e. slower gain
3326 adaptation. Conversely, using a smaller window results in a weaker smoothing
3327 effect and thus in more gain variation, i.e. faster gain adaptation.
3328 In other words, the more you increase this value, the more the Dynamic Audio
3329 Normalizer will behave like a "traditional" normalization filter. On the
3330 contrary, the more you decrease this value, the more the Dynamic Audio
3331 Normalizer will behave like a dynamic range compressor.
3332
3333 @item peak, p
3334 Set the target peak value. This specifies the highest permissible magnitude
3335 level for the normalized audio input. This filter will try to approach the
3336 target peak magnitude as closely as possible, but at the same time it also
3337 makes sure that the normalized signal will never exceed the peak magnitude.
3338 A frame's maximum local gain factor is imposed directly by the target peak
3339 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3340 It is not recommended to go above this value.
3341
3342 @item maxgain, m
3343 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3344 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3345 factor for each input frame, i.e. the maximum gain factor that does not
3346 result in clipping or distortion. The maximum gain factor is determined by
3347 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3348 additionally bounds the frame's maximum gain factor by a predetermined
3349 (global) maximum gain factor. This is done in order to avoid excessive gain
3350 factors in "silent" or almost silent frames. By default, the maximum gain
3351 factor is 10.0, For most inputs the default value should be sufficient and
3352 it usually is not recommended to increase this value. Though, for input
3353 with an extremely low overall volume level, it may be necessary to allow even
3354 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3355 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3356 Instead, a "sigmoid" threshold function will be applied. This way, the
3357 gain factors will smoothly approach the threshold value, but never exceed that
3358 value.
3359
3360 @item targetrms, r
3361 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3362 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3363 This means that the maximum local gain factor for each frame is defined
3364 (only) by the frame's highest magnitude sample. This way, the samples can
3365 be amplified as much as possible without exceeding the maximum signal
3366 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3367 Normalizer can also take into account the frame's root mean square,
3368 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3369 determine the power of a time-varying signal. It is therefore considered
3370 that the RMS is a better approximation of the "perceived loudness" than
3371 just looking at the signal's peak magnitude. Consequently, by adjusting all
3372 frames to a constant RMS value, a uniform "perceived loudness" can be
3373 established. If a target RMS value has been specified, a frame's local gain
3374 factor is defined as the factor that would result in exactly that RMS value.
3375 Note, however, that the maximum local gain factor is still restricted by the
3376 frame's highest magnitude sample, in order to prevent clipping.
3377
3378 @item coupling, n
3379 Enable channels coupling. By default is enabled.
3380 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3381 amount. This means the same gain factor will be applied to all channels, i.e.
3382 the maximum possible gain factor is determined by the "loudest" channel.
3383 However, in some recordings, it may happen that the volume of the different
3384 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3385 In this case, this option can be used to disable the channel coupling. This way,
3386 the gain factor will be determined independently for each channel, depending
3387 only on the individual channel's highest magnitude sample. This allows for
3388 harmonizing the volume of the different channels.
3389
3390 @item correctdc, c
3391 Enable DC bias correction. By default is disabled.
3392 An audio signal (in the time domain) is a sequence of sample values.
3393 In the Dynamic Audio Normalizer these sample values are represented in the
3394 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3395 audio signal, or "waveform", should be centered around the zero point.
3396 That means if we calculate the mean value of all samples in a file, or in a
3397 single frame, then the result should be 0.0 or at least very close to that
3398 value. If, however, there is a significant deviation of the mean value from
3399 0.0, in either positive or negative direction, this is referred to as a
3400 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3401 Audio Normalizer provides optional DC bias correction.
3402 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3403 the mean value, or "DC correction" offset, of each input frame and subtract
3404 that value from all of the frame's sample values which ensures those samples
3405 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3406 boundaries, the DC correction offset values will be interpolated smoothly
3407 between neighbouring frames.
3408
3409 @item altboundary, b
3410 Enable alternative boundary mode. By default is disabled.
3411 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3412 around each frame. This includes the preceding frames as well as the
3413 subsequent frames. However, for the "boundary" frames, located at the very
3414 beginning and at the very end of the audio file, not all neighbouring
3415 frames are available. In particular, for the first few frames in the audio
3416 file, the preceding frames are not known. And, similarly, for the last few
3417 frames in the audio file, the subsequent frames are not known. Thus, the
3418 question arises which gain factors should be assumed for the missing frames
3419 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3420 to deal with this situation. The default boundary mode assumes a gain factor
3421 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3422 "fade out" at the beginning and at the end of the input, respectively.
3423
3424 @item compress, s
3425 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3426 By default, the Dynamic Audio Normalizer does not apply "traditional"
3427 compression. This means that signal peaks will not be pruned and thus the
3428 full dynamic range will be retained within each local neighbourhood. However,
3429 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3430 normalization algorithm with a more "traditional" compression.
3431 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3432 (thresholding) function. If (and only if) the compression feature is enabled,
3433 all input frames will be processed by a soft knee thresholding function prior
3434 to the actual normalization process. Put simply, the thresholding function is
3435 going to prune all samples whose magnitude exceeds a certain threshold value.
3436 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3437 value. Instead, the threshold value will be adjusted for each individual
3438 frame.
3439 In general, smaller parameters result in stronger compression, and vice versa.
3440 Values below 3.0 are not recommended, because audible distortion may appear.
3441 @end table
3442
3443 @section earwax
3444
3445 Make audio easier to listen to on headphones.
3446
3447 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3448 so that when listened to on headphones the stereo image is moved from
3449 inside your head (standard for headphones) to outside and in front of
3450 the listener (standard for speakers).
3451
3452 Ported from SoX.
3453
3454 @section equalizer
3455
3456 Apply a two-pole peaking equalisation (EQ) filter. With this
3457 filter, the signal-level at and around a selected frequency can
3458 be increased or decreased, whilst (unlike bandpass and bandreject
3459 filters) that at all other frequencies is unchanged.
3460
3461 In order to produce complex equalisation curves, this filter can
3462 be given several times, each with a different central frequency.
3463
3464 The filter accepts the following options:
3465
3466 @table @option
3467 @item frequency, f
3468 Set the filter's central frequency in Hz.
3469
3470 @item width_type, t
3471 Set method to specify band-width of filter.
3472 @table @option
3473 @item h
3474 Hz
3475 @item q
3476 Q-Factor
3477 @item o
3478 octave
3479 @item s
3480 slope
3481 @item k
3482 kHz
3483 @end table
3484
3485 @item width, w
3486 Specify the band-width of a filter in width_type units.
3487
3488 @item gain, g
3489 Set the required gain or attenuation in dB.
3490 Beware of clipping when using a positive gain.
3491
3492 @item mix, m
3493 How much to use filtered signal in output. Default is 1.
3494 Range is between 0 and 1.
3495
3496 @item channels, c
3497 Specify which channels to filter, by default all available are filtered.
3498
3499 @item normalize, n
3500 Normalize biquad coefficients, by default is disabled.
3501 Enabling it will normalize magnitude response at DC to 0dB.
3502 @end table
3503
3504 @subsection Examples
3505 @itemize
3506 @item
3507 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3508 @example
3509 equalizer=f=1000:t=h:width=200:g=-10
3510 @end example
3511
3512 @item
3513 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3514 @example
3515 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3516 @end example
3517 @end itemize
3518
3519 @subsection Commands
3520
3521 This filter supports the following commands:
3522 @table @option
3523 @item frequency, f
3524 Change equalizer frequency.
3525 Syntax for the command is : "@var{frequency}"
3526
3527 @item width_type, t
3528 Change equalizer width_type.
3529 Syntax for the command is : "@var{width_type}"
3530
3531 @item width, w
3532 Change equalizer width.
3533 Syntax for the command is : "@var{width}"
3534
3535 @item gain, g
3536 Change equalizer gain.
3537 Syntax for the command is : "@var{gain}"
3538
3539 @item mix, m
3540 Change equalizer mix.
3541 Syntax for the command is : "@var{mix}"
3542 @end table
3543
3544 @section extrastereo
3545
3546 Linearly increases the difference between left and right channels which
3547 adds some sort of "live" effect to playback.
3548
3549 The filter accepts the following options:
3550
3551 @table @option
3552 @item m
3553 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3554 (average of both channels), with 1.0 sound will be unchanged, with
3555 -1.0 left and right channels will be swapped.
3556
3557 @item c
3558 Enable clipping. By default is enabled.
3559 @end table
3560
3561 @section firequalizer
3562 Apply FIR Equalization using arbitrary frequency response.
3563
3564 The filter accepts the following option:
3565
3566 @table @option
3567 @item gain
3568 Set gain curve equation (in dB). The expression can contain variables:
3569 @table @option
3570 @item f
3571 the evaluated frequency
3572 @item sr
3573 sample rate
3574 @item ch
3575 channel number, set to 0 when multichannels evaluation is disabled
3576 @item chid
3577 channel id, see libavutil/channel_layout.h, set to the first channel id when
3578 multichannels evaluation is disabled
3579 @item chs
3580 number of channels
3581 @item chlayout
3582 channel_layout, see libavutil/channel_layout.h
3583
3584 @end table
3585 and functions:
3586 @table @option
3587 @item gain_interpolate(f)
3588 interpolate gain on frequency f based on gain_entry
3589 @item cubic_interpolate(f)
3590 same as gain_interpolate, but smoother
3591 @end table
3592 This option is also available as command. Default is @code{gain_interpolate(f)}.
3593
3594 @item gain_entry
3595 Set gain entry for gain_interpolate function. The expression can
3596 contain functions:
3597 @table @option
3598 @item entry(f, g)
3599 store gain entry at frequency f with value g
3600 @end table
3601 This option is also available as command.
3602
3603 @item delay
3604 Set filter delay in seconds. Higher value means more accurate.
3605 Default is @code{0.01}.
3606
3607 @item accuracy
3608 Set filter accuracy in Hz. Lower value means more accurate.
3609 Default is @code{5}.
3610
3611 @item wfunc
3612 Set window function. Acceptable values are:
3613 @table @option
3614 @item rectangular
3615 rectangular window, useful when gain curve is already smooth
3616 @item hann
3617 hann window (default)
3618 @item hamming
3619 hamming window
3620 @item blackman
3621 blackman window
3622 @item nuttall3
3623 3-terms continuous 1st derivative nuttall window
3624 @item mnuttall3
3625 minimum 3-terms discontinuous nuttall window
3626 @item nuttall
3627 4-terms continuous 1st derivative nuttall window
3628 @item bnuttall
3629 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3630 @item bharris
3631 blackman-harris window
3632 @item tukey
3633 tukey window
3634 @end table
3635
3636 @item fixed
3637 If enabled, use fixed number of audio samples. This improves speed when
3638 filtering with large delay. Default is disabled.
3639
3640 @item multi
3641 Enable multichannels evaluation on gain. Default is disabled.
3642
3643 @item zero_phase
3644 Enable zero phase mode by subtracting timestamp to compensate delay.
3645 Default is disabled.
3646
3647 @item scale
3648 Set scale used by gain. Acceptable values are:
3649 @table @option
3650 @item linlin
3651 linear frequency, linear gain
3652 @item linlog
3653 linear frequency, logarithmic (in dB) gain (default)
3654 @item loglin
3655 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3656 @item loglog
3657 logarithmic frequency, logarithmic gain
3658 @end table
3659
3660 @item dumpfile
3661 Set file for dumping, suitable for gnuplot.
3662
3663 @item dumpscale
3664 Set scale for dumpfile. Acceptable values are same with scale option.
3665 Default is linlog.
3666
3667 @item fft2
3668 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3669 Default is disabled.
3670
3671 @item min_phase
3672 Enable minimum phase impulse response. Default is disabled.
3673 @end table
3674
3675 @subsection Examples
3676 @itemize
3677 @item
3678 lowpass at 1000 Hz:
3679 @example
3680 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3681 @end example
3682 @item
3683 lowpass at 1000 Hz with gain_entry:
3684 @example
3685 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3686 @end example
3687 @item
3688 custom equalization:
3689 @example
3690 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3691 @end example
3692 @item
3693 higher delay with zero phase to compensate delay:
3694 @example
3695 firequalizer=delay=0.1:fixed=on:zero_phase=on
3696 @end example
3697 @item
3698 lowpass on left channel, highpass on right channel:
3699 @example
3700 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3701 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3702 @end example
3703 @end itemize
3704
3705 @section flanger
3706 Apply a flanging effect to the audio.
3707
3708 The filter accepts the following options:
3709
3710 @table @option
3711 @item delay
3712 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3713
3714 @item depth
3715 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3716
3717 @item regen
3718 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3719 Default value is 0.
3720
3721 @item width
3722 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3723 Default value is 71.
3724
3725 @item speed
3726 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3727
3728 @item shape
3729 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3730 Default value is @var{sinusoidal}.
3731
3732 @item phase
3733 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3734 Default value is 25.
3735
3736 @item interp
3737 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3738 Default is @var{linear}.
3739 @end table
3740
3741 @section haas
3742 Apply Haas effect to audio.
3743
3744 Note that this makes most sense to apply on mono signals.
3745 With this filter applied to mono signals it give some directionality and
3746 stretches its stereo image.
3747
3748 The filter accepts the following options:
3749
3750 @table @option
3751 @item level_in
3752 Set input level. By default is @var{1}, or 0dB
3753
3754 @item level_out
3755 Set output level. By default is @var{1}, or 0dB.
3756
3757 @item side_gain
3758 Set gain applied to side part of signal. By default is @var{1}.
3759
3760 @item middle_source
3761 Set kind of middle source. Can be one of the following:
3762
3763 @table @samp
3764 @item left
3765 Pick left channel.
3766
3767 @item right
3768 Pick right channel.
3769
3770 @item mid
3771 Pick middle part signal of stereo image.
3772
3773 @item side
3774 Pick side part signal of stereo image.
3775 @end table
3776
3777 @item middle_phase
3778 Change middle phase. By default is disabled.
3779
3780 @item left_delay
3781 Set left channel delay. By default is @var{2.05} milliseconds.
3782
3783 @item left_balance
3784 Set left channel balance. By default is @var{-1}.
3785
3786 @item left_gain
3787 Set left channel gain. By default is @var{1}.
3788
3789 @item left_phase
3790 Change left phase. By default is disabled.
3791
3792 @item right_delay
3793 Set right channel delay. By defaults is @var{2.12} milliseconds.
3794
3795 @item right_balance
3796 Set right channel balance. By default is @var{1}.
3797
3798 @item right_gain
3799 Set right channel gain. By default is @var{1}.
3800
3801 @item right_phase
3802 Change right phase. By default is enabled.
3803 @end table
3804
3805 @section hdcd
3806
3807 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3808 embedded HDCD codes is expanded into a 20-bit PCM stream.
3809
3810 The filter supports the Peak Extend and Low-level Gain Adjustment features
3811 of HDCD, and detects the Transient Filter flag.
3812
3813 @example
3814 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3815 @end example
3816
3817 When using the filter with wav, note the default encoding for wav is 16-bit,
3818 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3819 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3820 @example
3821 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3822 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3823 @end example
3824
3825 The filter accepts the following options:
3826
3827 @table @option
3828 @item disable_autoconvert
3829 Disable any automatic format conversion or resampling in the filter graph.
3830
3831 @item process_stereo
3832 Process the stereo channels together. If target_gain does not match between
3833 channels, consider it invalid and use the last valid target_gain.
3834
3835 @item cdt_ms
3836 Set the code detect timer period in ms.
3837
3838 @item force_pe
3839 Always extend peaks above -3dBFS even if PE isn't signaled.
3840
3841 @item analyze_mode
3842 Replace audio with a solid tone and adjust the amplitude to signal some
3843 specific aspect of the decoding process. The output file can be loaded in
3844 an audio editor alongside the original to aid analysis.
3845
3846 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3847
3848 Modes are:
3849 @table @samp
3850 @item 0, off
3851 Disabled
3852 @item 1, lle
3853 Gain adjustment level at each sample
3854 @item 2, pe
3855 Samples where peak extend occurs
3856 @item 3, cdt
3857 Samples where the code detect timer is active
3858 @item 4, tgm
3859 Samples where the target gain does not match between channels
3860 @end table
3861 @end table
3862
3863 @section headphone
3864
3865 Apply head-related transfer functions (HRTFs) to create virtual
3866 loudspeakers around the user for binaural listening via headphones.
3867 The HRIRs are provided via additional streams, for each channel
3868 one stereo input stream is needed.
3869
3870 The filter accepts the following options:
3871
3872 @table @option
3873 @item map
3874 Set mapping of input streams for convolution.
3875 The argument is a '|'-separated list of channel names in order as they
3876 are given as additional stream inputs for filter.
3877 This also specify number of input streams. Number of input streams
3878 must be not less than number of channels in first stream plus one.
3879
3880 @item gain
3881 Set gain applied to audio. Value is in dB. Default is 0.
3882
3883 @item type
3884 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3885 processing audio in time domain which is slow.
3886 @var{freq} is processing audio in frequency domain which is fast.
3887 Default is @var{freq}.
3888
3889 @item lfe
3890 Set custom gain for LFE channels. Value is in dB. Default is 0.
3891
3892 @item size
3893 Set size of frame in number of samples which will be processed at once.
3894 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3895
3896 @item hrir
3897 Set format of hrir stream.
3898 Default value is @var{stereo}. Alternative value is @var{multich}.
3899 If value is set to @var{stereo}, number of additional streams should
3900 be greater or equal to number of input channels in first input stream.
3901 Also each additional stream should have stereo number of channels.
3902 If value is set to @var{multich}, number of additional streams should
3903 be exactly one. Also number of input channels of additional stream
3904 should be equal or greater than twice number of channels of first input
3905 stream.
3906 @end table
3907
3908 @subsection Examples
3909
3910 @itemize
3911 @item
3912 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3913 each amovie filter use stereo file with IR coefficients as input.
3914 The files give coefficients for each position of virtual loudspeaker:
3915 @example
3916 ffmpeg -i input.wav
3917 -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"
3918 output.wav
3919 @end example
3920
3921 @item
3922 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3923 but now in @var{multich} @var{hrir} format.
3924 @example
3925 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"
3926 output.wav
3927 @end example
3928 @end itemize
3929
3930 @section highpass
3931
3932 Apply a high-pass filter with 3dB point frequency.
3933 The filter can be either single-pole, or double-pole (the default).
3934 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3935
3936 The filter accepts the following options:
3937
3938 @table @option
3939 @item frequency, f
3940 Set frequency in Hz. Default is 3000.
3941
3942 @item poles, p
3943 Set number of poles. Default is 2.
3944
3945 @item width_type, t
3946 Set method to specify band-width of filter.
3947 @table @option
3948 @item h
3949 Hz
3950 @item q
3951 Q-Factor
3952 @item o
3953 octave
3954 @item s
3955 slope
3956 @item k
3957 kHz
3958 @end table
3959
3960 @item width, w
3961 Specify the band-width of a filter in width_type units.
3962 Applies only to double-pole filter.
3963 The default is 0.707q and gives a Butterworth response.
3964
3965 @item mix, m
3966 How much to use filtered signal in output. Default is 1.
3967 Range is between 0 and 1.
3968
3969 @item channels, c
3970 Specify which channels to filter, by default all available are filtered.
3971
3972 @item normalize, n
3973 Normalize biquad coefficients, by default is disabled.
3974 Enabling it will normalize magnitude response at DC to 0dB.
3975 @end table
3976
3977 @subsection Commands
3978
3979 This filter supports the following commands:
3980 @table @option
3981 @item frequency, f
3982 Change highpass frequency.
3983 Syntax for the command is : "@var{frequency}"
3984
3985 @item width_type, t
3986 Change highpass width_type.
3987 Syntax for the command is : "@var{width_type}"
3988
3989 @item width, w
3990 Change highpass width.
3991 Syntax for the command is : "@var{width}"
3992
3993 @item mix, m
3994 Change highpass mix.
3995 Syntax for the command is : "@var{mix}"
3996 @end table
3997
3998 @section join
3999
4000 Join multiple input streams into one multi-channel stream.
4001
4002 It accepts the following parameters:
4003 @table @option
4004
4005 @item inputs
4006 The number of input streams. It defaults to 2.
4007
4008 @item channel_layout
4009 The desired output channel layout. It defaults to stereo.
4010
4011 @item map
4012 Map channels from inputs to output. The argument is a '|'-separated list of
4013 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4014 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4015 can be either the name of the input channel (e.g. FL for front left) or its
4016 index in the specified input stream. @var{out_channel} is the name of the output
4017 channel.
4018 @end table
4019
4020 The filter will attempt to guess the mappings when they are not specified
4021 explicitly. It does so by first trying to find an unused matching input channel
4022 and if that fails it picks the first unused input channel.
4023
4024 Join 3 inputs (with properly set channel layouts):
4025 @example
4026 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4027 @end example
4028
4029 Build a 5.1 output from 6 single-channel streams:
4030 @example
4031 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4032 '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'
4033 out
4034 @end example
4035
4036 @section ladspa
4037
4038 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4039
4040 To enable compilation of this filter you need to configure FFmpeg with
4041 @code{--enable-ladspa}.
4042
4043 @table @option
4044 @item file, f
4045 Specifies the name of LADSPA plugin library to load. If the environment
4046 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4047 each one of the directories specified by the colon separated list in
4048 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4049 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4050 @file{/usr/lib/ladspa/}.
4051
4052 @item plugin, p
4053 Specifies the plugin within the library. Some libraries contain only
4054 one plugin, but others contain many of them. If this is not set filter
4055 will list all available plugins within the specified library.
4056
4057 @item controls, c
4058 Set the '|' separated list of controls which are zero or more floating point
4059 values that determine the behavior of the loaded plugin (for example delay,
4060 threshold or gain).
4061 Controls need to be defined using the following syntax:
4062 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4063 @var{valuei} is the value set on the @var{i}-th control.
4064 Alternatively they can be also defined using the following syntax:
4065 @var{value0}|@var{value1}|@var{value2}|..., where
4066 @var{valuei} is the value set on the @var{i}-th control.
4067 If @option{controls} is set to @code{help}, all available controls and
4068 their valid ranges are printed.
4069
4070 @item sample_rate, s
4071 Specify the sample rate, default to 44100. Only used if plugin have
4072 zero inputs.
4073
4074 @item nb_samples, n
4075 Set the number of samples per channel per each output frame, default
4076 is 1024. Only used if plugin have zero inputs.
4077
4078 @item duration, d
4079 Set the minimum duration of the sourced audio. See
4080 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4081 for the accepted syntax.
4082 Note that the resulting duration may be greater than the specified duration,
4083 as the generated audio is always cut at the end of a complete frame.
4084 If not specified, or the expressed duration is negative, the audio is
4085 supposed to be generated forever.
4086 Only used if plugin have zero inputs.
4087
4088 @end table
4089
4090 @subsection Examples
4091
4092 @itemize
4093 @item
4094 List all available plugins within amp (LADSPA example plugin) library:
4095 @example
4096 ladspa=file=amp
4097 @end example
4098
4099 @item
4100 List all available controls and their valid ranges for @code{vcf_notch}
4101 plugin from @code{VCF} library:
4102 @example
4103 ladspa=f=vcf:p=vcf_notch:c=help
4104 @end example
4105
4106 @item
4107 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4108 plugin library:
4109 @example
4110 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4111 @end example
4112
4113 @item
4114 Add reverberation to the audio using TAP-plugins
4115 (Tom's Audio Processing plugins):
4116 @example
4117 ladspa=file=tap_reverb:tap_reverb
4118 @end example
4119
4120 @item
4121 Generate white noise, with 0.2 amplitude:
4122 @example
4123 ladspa=file=cmt:noise_source_white:c=c0=.2
4124 @end example
4125
4126 @item
4127 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4128 @code{C* Audio Plugin Suite} (CAPS) library:
4129 @example
4130 ladspa=file=caps:Click:c=c1=20'
4131 @end example
4132
4133 @item
4134 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4135 @example
4136 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4137 @end example
4138
4139 @item
4140 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4141 @code{SWH Plugins} collection:
4142 @example
4143 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4144 @end example
4145
4146 @item
4147 Attenuate low frequencies using Multiband EQ from Steve Harris
4148 @code{SWH Plugins} collection:
4149 @example
4150 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4151 @end example
4152
4153 @item
4154 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4155 (CAPS) library:
4156 @example
4157 ladspa=caps:Narrower
4158 @end example
4159
4160 @item
4161 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4162 @example
4163 ladspa=caps:White:.2
4164 @end example
4165
4166 @item
4167 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4168 @example
4169 ladspa=caps:Fractal:c=c1=1
4170 @end example
4171
4172 @item
4173 Dynamic volume normalization using @code{VLevel} plugin:
4174 @example
4175 ladspa=vlevel-ladspa:vlevel_mono
4176 @end example
4177 @end itemize
4178
4179 @subsection Commands
4180
4181 This filter supports the following commands:
4182 @table @option
4183 @item cN
4184 Modify the @var{N}-th control value.
4185
4186 If the specified value is not valid, it is ignored and prior one is kept.
4187 @end table
4188
4189 @section loudnorm
4190
4191 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4192 Support for both single pass (livestreams, files) and double pass (files) modes.
4193 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
4194 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
4195 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4196
4197 The filter accepts the following options:
4198
4199 @table @option
4200 @item I, i
4201 Set integrated loudness target.
4202 Range is -70.0 - -5.0. Default value is -24.0.
4203
4204 @item LRA, lra
4205 Set loudness range target.
4206 Range is 1.0 - 20.0. Default value is 7.0.
4207
4208 @item TP, tp
4209 Set maximum true peak.
4210 Range is -9.0 - +0.0. Default value is -2.0.
4211
4212 @item measured_I, measured_i
4213 Measured IL of input file.
4214 Range is -99.0 - +0.0.
4215
4216 @item measured_LRA, measured_lra
4217 Measured LRA of input file.
4218 Range is  0.0 - 99.0.
4219
4220 @item measured_TP, measured_tp
4221 Measured true peak of input file.
4222 Range is  -99.0 - +99.0.
4223
4224 @item measured_thresh
4225 Measured threshold of input file.
4226 Range is -99.0 - +0.0.
4227
4228 @item offset
4229 Set offset gain. Gain is applied before the true-peak limiter.
4230 Range is  -99.0 - +99.0. Default is +0.0.
4231
4232 @item linear
4233 Normalize linearly if possible.
4234 measured_I, measured_LRA, measured_TP, and measured_thresh must also
4235 to be specified in order to use this mode.
4236 Options are true or false. Default is true.
4237
4238 @item dual_mono
4239 Treat mono input files as "dual-mono". If a mono file is intended for playback
4240 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4241 If set to @code{true}, this option will compensate for this effect.
4242 Multi-channel input files are not affected by this option.
4243 Options are true or false. Default is false.
4244
4245 @item print_format
4246 Set print format for stats. Options are summary, json, or none.
4247 Default value is none.
4248 @end table
4249
4250 @section lowpass
4251
4252 Apply a low-pass filter with 3dB point frequency.
4253 The filter can be either single-pole or double-pole (the default).
4254 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4255
4256 The filter accepts the following options:
4257
4258 @table @option
4259 @item frequency, f
4260 Set frequency in Hz. Default is 500.
4261
4262 @item poles, p
4263 Set number of poles. Default is 2.
4264
4265 @item width_type, t
4266 Set method to specify band-width of filter.
4267 @table @option
4268 @item h
4269 Hz
4270 @item q
4271 Q-Factor
4272 @item o
4273 octave
4274 @item s
4275 slope
4276 @item k
4277 kHz
4278 @end table
4279
4280 @item width, w
4281 Specify the band-width of a filter in width_type units.
4282 Applies only to double-pole filter.
4283 The default is 0.707q and gives a Butterworth response.
4284
4285 @item mix, m
4286 How much to use filtered signal in output. Default is 1.
4287 Range is between 0 and 1.
4288
4289 @item channels, c
4290 Specify which channels to filter, by default all available are filtered.
4291
4292 @item normalize, n
4293 Normalize biquad coefficients, by default is disabled.
4294 Enabling it will normalize magnitude response at DC to 0dB.
4295 @end table
4296
4297 @subsection Examples
4298 @itemize
4299 @item
4300 Lowpass only LFE channel, it LFE is not present it does nothing:
4301 @example
4302 lowpass=c=LFE
4303 @end example
4304 @end itemize
4305
4306 @subsection Commands
4307
4308 This filter supports the following commands:
4309 @table @option
4310 @item frequency, f
4311 Change lowpass frequency.
4312 Syntax for the command is : "@var{frequency}"
4313
4314 @item width_type, t
4315 Change lowpass width_type.
4316 Syntax for the command is : "@var{width_type}"
4317
4318 @item width, w
4319 Change lowpass width.
4320 Syntax for the command is : "@var{width}"
4321
4322 @item mix, m
4323 Change lowpass mix.
4324 Syntax for the command is : "@var{mix}"
4325 @end table
4326
4327 @section lv2
4328
4329 Load a LV2 (LADSPA Version 2) plugin.
4330
4331 To enable compilation of this filter you need to configure FFmpeg with
4332 @code{--enable-lv2}.
4333
4334 @table @option
4335 @item plugin, p
4336 Specifies the plugin URI. You may need to escape ':'.
4337
4338 @item controls, c
4339 Set the '|' separated list of controls which are zero or more floating point
4340 values that determine the behavior of the loaded plugin (for example delay,
4341 threshold or gain).
4342 If @option{controls} is set to @code{help}, all available controls and
4343 their valid ranges are printed.
4344
4345 @item sample_rate, s
4346 Specify the sample rate, default to 44100. Only used if plugin have
4347 zero inputs.
4348
4349 @item nb_samples, n
4350 Set the number of samples per channel per each output frame, default
4351 is 1024. Only used if plugin have zero inputs.
4352
4353 @item duration, d
4354 Set the minimum duration of the sourced audio. See
4355 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4356 for the accepted syntax.
4357 Note that the resulting duration may be greater than the specified duration,
4358 as the generated audio is always cut at the end of a complete frame.
4359 If not specified, or the expressed duration is negative, the audio is
4360 supposed to be generated forever.
4361 Only used if plugin have zero inputs.
4362 @end table
4363
4364 @subsection Examples
4365
4366 @itemize
4367 @item
4368 Apply bass enhancer plugin from Calf:
4369 @example
4370 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4371 @end example
4372
4373 @item
4374 Apply vinyl plugin from Calf:
4375 @example
4376 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4377 @end example
4378
4379 @item
4380 Apply bit crusher plugin from ArtyFX:
4381 @example
4382 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4383 @end example
4384 @end itemize
4385
4386 @section mcompand
4387 Multiband Compress or expand the audio's dynamic range.
4388
4389 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4390 This is akin to the crossover of a loudspeaker, and results in flat frequency
4391 response when absent compander action.
4392
4393 It accepts the following parameters:
4394
4395 @table @option
4396 @item args
4397 This option syntax is:
4398 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4399 For explanation of each item refer to compand filter documentation.
4400 @end table
4401
4402 @anchor{pan}
4403 @section pan
4404
4405 Mix channels with specific gain levels. The filter accepts the output
4406 channel layout followed by a set of channels definitions.
4407
4408 This filter is also designed to efficiently remap the channels of an audio
4409 stream.
4410
4411 The filter accepts parameters of the form:
4412 "@var{l}|@var{outdef}|@var{outdef}|..."
4413
4414 @table @option
4415 @item l
4416 output channel layout or number of channels
4417
4418 @item outdef
4419 output channel specification, of the form:
4420 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4421
4422 @item out_name
4423 output channel to define, either a channel name (FL, FR, etc.) or a channel
4424 number (c0, c1, etc.)
4425
4426 @item gain
4427 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4428
4429 @item in_name
4430 input channel to use, see out_name for details; it is not possible to mix
4431 named and numbered input channels
4432 @end table
4433
4434 If the `=' in a channel specification is replaced by `<', then the gains for
4435 that specification will be renormalized so that the total is 1, thus
4436 avoiding clipping noise.
4437
4438 @subsection Mixing examples
4439
4440 For example, if you want to down-mix from stereo to mono, but with a bigger
4441 factor for the left channel:
4442 @example
4443 pan=1c|c0=0.9*c0+0.1*c1
4444 @end example
4445
4446 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4447 7-channels surround:
4448 @example
4449 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4450 @end example
4451
4452 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4453 that should be preferred (see "-ac" option) unless you have very specific
4454 needs.
4455
4456 @subsection Remapping examples
4457
4458 The channel remapping will be effective if, and only if:
4459
4460 @itemize
4461 @item gain coefficients are zeroes or ones,
4462 @item only one input per channel output,
4463 @end itemize
4464
4465 If all these conditions are satisfied, the filter will notify the user ("Pure
4466 channel mapping detected"), and use an optimized and lossless method to do the
4467 remapping.
4468
4469 For example, if you have a 5.1 source and want a stereo audio stream by
4470 dropping the extra channels:
4471 @example
4472 pan="stereo| c0=FL | c1=FR"
4473 @end example
4474
4475 Given the same source, you can also switch front left and front right channels
4476 and keep the input channel layout:
4477 @example
4478 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4479 @end example
4480
4481 If the input is a stereo audio stream, you can mute the front left channel (and
4482 still keep the stereo channel layout) with:
4483 @example
4484 pan="stereo|c1=c1"
4485 @end example
4486
4487 Still with a stereo audio stream input, you can copy the right channel in both
4488 front left and right:
4489 @example
4490 pan="stereo| c0=FR | c1=FR"
4491 @end example
4492
4493 @section replaygain
4494
4495 ReplayGain scanner filter. This filter takes an audio stream as an input and
4496 outputs it unchanged.
4497 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4498
4499 @section resample
4500
4501 Convert the audio sample format, sample rate and channel layout. It is
4502 not meant to be used directly.
4503
4504 @section rubberband
4505 Apply time-stretching and pitch-shifting with librubberband.
4506
4507 To enable compilation of this filter, you need to configure FFmpeg with
4508 @code{--enable-librubberband}.
4509
4510 The filter accepts the following options:
4511
4512 @table @option
4513 @item tempo
4514 Set tempo scale factor.
4515
4516 @item pitch
4517 Set pitch scale factor.
4518
4519 @item transients
4520 Set transients detector.
4521 Possible values are:
4522 @table @var
4523 @item crisp
4524 @item mixed
4525 @item smooth
4526 @end table
4527
4528 @item detector
4529 Set detector.
4530 Possible values are:
4531 @table @var
4532 @item compound
4533 @item percussive
4534 @item soft
4535 @end table
4536
4537 @item phase
4538 Set phase.
4539 Possible values are:
4540 @table @var
4541 @item laminar
4542 @item independent
4543 @end table
4544
4545 @item window
4546 Set processing window size.
4547 Possible values are:
4548 @table @var
4549 @item standard
4550 @item short
4551 @item long
4552 @end table
4553
4554 @item smoothing
4555 Set smoothing.
4556 Possible values are:
4557 @table @var
4558 @item off
4559 @item on
4560 @end table
4561
4562 @item formant
4563 Enable formant preservation when shift pitching.
4564 Possible values are:
4565 @table @var
4566 @item shifted
4567 @item preserved
4568 @end table
4569
4570 @item pitchq
4571 Set pitch quality.
4572 Possible values are:
4573 @table @var
4574 @item quality
4575 @item speed
4576 @item consistency
4577 @end table
4578
4579 @item channels
4580 Set channels.
4581 Possible values are:
4582 @table @var
4583 @item apart
4584 @item together
4585 @end table
4586 @end table
4587
4588 @subsection Commands
4589
4590 This filter supports the following commands:
4591 @table @option
4592 @item tempo
4593 Change filter tempo scale factor.
4594 Syntax for the command is : "@var{tempo}"
4595
4596 @item pitch
4597 Change filter pitch scale factor.
4598 Syntax for the command is : "@var{pitch}"
4599 @end table
4600
4601 @section sidechaincompress
4602
4603 This filter acts like normal compressor but has the ability to compress
4604 detected signal using second input signal.
4605 It needs two input streams and returns one output stream.
4606 First input stream will be processed depending on second stream signal.
4607 The filtered signal then can be filtered with other filters in later stages of
4608 processing. See @ref{pan} and @ref{amerge} filter.
4609
4610 The filter accepts the following options:
4611
4612 @table @option
4613 @item level_in
4614 Set input gain. Default is 1. Range is between 0.015625 and 64.
4615
4616 @item mode
4617 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4618 Default is @code{downward}.
4619
4620 @item threshold
4621 If a signal of second stream raises above this level it will affect the gain
4622 reduction of first stream.
4623 By default is 0.125. Range is between 0.00097563 and 1.
4624
4625 @item ratio
4626 Set a ratio about which the signal is reduced. 1:2 means that if the level
4627 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4628 Default is 2. Range is between 1 and 20.
4629
4630 @item attack
4631 Amount of milliseconds the signal has to rise above the threshold before gain
4632 reduction starts. Default is 20. Range is between 0.01 and 2000.
4633
4634 @item release
4635 Amount of milliseconds the signal has to fall below the threshold before
4636 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4637
4638 @item makeup
4639 Set the amount by how much signal will be amplified after processing.
4640 Default is 1. Range is from 1 to 64.
4641
4642 @item knee
4643 Curve the sharp knee around the threshold to enter gain reduction more softly.
4644 Default is 2.82843. Range is between 1 and 8.
4645
4646 @item link
4647 Choose if the @code{average} level between all channels of side-chain stream
4648 or the louder(@code{maximum}) channel of side-chain stream affects the
4649 reduction. Default is @code{average}.
4650
4651 @item detection
4652 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4653 of @code{rms}. Default is @code{rms} which is mainly smoother.
4654
4655 @item level_sc
4656 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4657
4658 @item mix
4659 How much to use compressed signal in output. Default is 1.
4660 Range is between 0 and 1.
4661 @end table
4662
4663 @subsection Examples
4664
4665 @itemize
4666 @item
4667 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4668 depending on the signal of 2nd input and later compressed signal to be
4669 merged with 2nd input:
4670 @example
4671 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4672 @end example
4673 @end itemize
4674
4675 @section sidechaingate
4676
4677 A sidechain gate acts like a normal (wideband) gate but has the ability to
4678 filter the detected signal before sending it to the gain reduction stage.
4679 Normally a gate uses the full range signal to detect a level above the
4680 threshold.
4681 For example: If you cut all lower frequencies from your sidechain signal
4682 the gate will decrease the volume of your track only if not enough highs
4683 appear. With this technique you are able to reduce the resonation of a
4684 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4685 guitar.
4686 It needs two input streams and returns one output stream.
4687 First input stream will be processed depending on second stream signal.
4688
4689 The filter accepts the following options:
4690
4691 @table @option
4692 @item level_in
4693 Set input level before filtering.
4694 Default is 1. Allowed range is from 0.015625 to 64.
4695
4696 @item mode
4697 Set the mode of operation. Can be @code{upward} or @code{downward}.
4698 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4699 will be amplified, expanding dynamic range in upward direction.
4700 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4701
4702 @item range
4703 Set the level of gain reduction when the signal is below the threshold.
4704 Default is 0.06125. Allowed range is from 0 to 1.
4705 Setting this to 0 disables reduction and then filter behaves like expander.
4706
4707 @item threshold
4708 If a signal rises above this level the gain reduction is released.
4709 Default is 0.125. Allowed range is from 0 to 1.
4710
4711 @item ratio
4712 Set a ratio about which the signal is reduced.
4713 Default is 2. Allowed range is from 1 to 9000.
4714
4715 @item attack
4716 Amount of milliseconds the signal has to rise above the threshold before gain
4717 reduction stops.
4718 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4719
4720 @item release
4721 Amount of milliseconds the signal has to fall below the threshold before the
4722 reduction is increased again. Default is 250 milliseconds.
4723 Allowed range is from 0.01 to 9000.
4724
4725 @item makeup
4726 Set amount of amplification of signal after processing.
4727 Default is 1. Allowed range is from 1 to 64.
4728
4729 @item knee
4730 Curve the sharp knee around the threshold to enter gain reduction more softly.
4731 Default is 2.828427125. Allowed range is from 1 to 8.
4732
4733 @item detection
4734 Choose if exact signal should be taken for detection or an RMS like one.
4735 Default is rms. Can be peak or rms.
4736
4737 @item link
4738 Choose if the average level between all channels or the louder channel affects
4739 the reduction.
4740 Default is average. Can be average or maximum.
4741
4742 @item level_sc
4743 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4744 @end table
4745
4746 @section silencedetect
4747
4748 Detect silence in an audio stream.
4749
4750 This filter logs a message when it detects that the input audio volume is less
4751 or equal to a noise tolerance value for a duration greater or equal to the
4752 minimum detected noise duration.
4753
4754 The printed times and duration are expressed in seconds. The
4755 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
4756 is set on the first frame whose timestamp equals or exceeds the detection
4757 duration and it contains the timestamp of the first frame of the silence.
4758
4759 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
4760 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
4761 keys are set on the first frame after the silence. If @option{mono} is
4762 enabled, and each channel is evaluated separately, the @code{.X}
4763 suffixed keys are used, and @code{X} corresponds to the channel number.
4764
4765 The filter accepts the following options:
4766
4767 @table @option
4768 @item noise, n
4769 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4770 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4771
4772 @item duration, d
4773 Set silence duration until notification (default is 2 seconds). See
4774 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4775 for the accepted syntax.
4776
4777 @item mono, m
4778 Process each channel separately, instead of combined. By default is disabled.
4779 @end table
4780
4781 @subsection Examples
4782
4783 @itemize
4784 @item
4785 Detect 5 seconds of silence with -50dB noise tolerance:
4786 @example
4787 silencedetect=n=-50dB:d=5
4788 @end example
4789
4790 @item
4791 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4792 tolerance in @file{silence.mp3}:
4793 @example
4794 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4795 @end example
4796 @end itemize
4797
4798 @section silenceremove
4799
4800 Remove silence from the beginning, middle or end of the audio.
4801
4802 The filter accepts the following options:
4803
4804 @table @option
4805 @item start_periods
4806 This value is used to indicate if audio should be trimmed at beginning of
4807 the audio. A value of zero indicates no silence should be trimmed from the
4808 beginning. When specifying a non-zero value, it trims audio up until it
4809 finds non-silence. Normally, when trimming silence from beginning of audio
4810 the @var{start_periods} will be @code{1} but it can be increased to higher
4811 values to trim all audio up to specific count of non-silence periods.
4812 Default value is @code{0}.
4813
4814 @item start_duration
4815 Specify the amount of time that non-silence must be detected before it stops
4816 trimming audio. By increasing the duration, bursts of noises can be treated
4817 as silence and trimmed off. Default value is @code{0}.
4818
4819 @item start_threshold
4820 This indicates what sample value should be treated as silence. For digital
4821 audio, a value of @code{0} may be fine but for audio recorded from analog,
4822 you may wish to increase the value to account for background noise.
4823 Can be specified in dB (in case "dB" is appended to the specified value)
4824 or amplitude ratio. Default value is @code{0}.
4825
4826 @item start_silence
4827 Specify max duration of silence at beginning that will be kept after
4828 trimming. Default is 0, which is equal to trimming all samples detected
4829 as silence.
4830
4831 @item start_mode
4832 Specify mode of detection of silence end in start of multi-channel audio.
4833 Can be @var{any} or @var{all}. Default is @var{any}.
4834 With @var{any}, any sample that is detected as non-silence will cause
4835 stopped trimming of silence.
4836 With @var{all}, only if all channels are detected as non-silence will cause
4837 stopped trimming of silence.
4838
4839 @item stop_periods
4840 Set the count for trimming silence from the end of audio.
4841 To remove silence from the middle of a file, specify a @var{stop_periods}
4842 that is negative. This value is then treated as a positive value and is
4843 used to indicate the effect should restart processing as specified by
4844 @var{start_periods}, making it suitable for removing periods of silence
4845 in the middle of the audio.
4846 Default value is @code{0}.
4847
4848 @item stop_duration
4849 Specify a duration of silence that must exist before audio is not copied any
4850 more. By specifying a higher duration, silence that is wanted can be left in
4851 the audio.
4852 Default value is @code{0}.
4853
4854 @item stop_threshold
4855 This is the same as @option{start_threshold} but for trimming silence from
4856 the end of audio.
4857 Can be specified in dB (in case "dB" is appended to the specified value)
4858 or amplitude ratio. Default value is @code{0}.
4859
4860 @item stop_silence
4861 Specify max duration of silence at end that will be kept after
4862 trimming. Default is 0, which is equal to trimming all samples detected
4863 as silence.
4864
4865 @item stop_mode
4866 Specify mode of detection of silence start in end of multi-channel audio.
4867 Can be @var{any} or @var{all}. Default is @var{any}.
4868 With @var{any}, any sample that is detected as non-silence will cause
4869 stopped trimming of silence.
4870 With @var{all}, only if all channels are detected as non-silence will cause
4871 stopped trimming of silence.
4872
4873 @item detection
4874 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4875 and works better with digital silence which is exactly 0.
4876 Default value is @code{rms}.
4877
4878 @item window
4879 Set duration in number of seconds used to calculate size of window in number
4880 of samples for detecting silence.
4881 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4882 @end table
4883
4884 @subsection Examples
4885
4886 @itemize
4887 @item
4888 The following example shows how this filter can be used to start a recording
4889 that does not contain the delay at the start which usually occurs between
4890 pressing the record button and the start of the performance:
4891 @example
4892 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4893 @end example
4894
4895 @item
4896 Trim all silence encountered from beginning to end where there is more than 1
4897 second of silence in audio:
4898 @example
4899 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4900 @end example
4901
4902 @item
4903 Trim all digital silence samples, using peak detection, from beginning to end
4904 where there is more than 0 samples of digital silence in audio and digital
4905 silence is detected in all channels at same positions in stream:
4906 @example
4907 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
4908 @end example
4909 @end itemize
4910
4911 @section sofalizer
4912
4913 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4914 loudspeakers around the user for binaural listening via headphones (audio
4915 formats up to 9 channels supported).
4916 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4917 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4918 Austrian Academy of Sciences.
4919
4920 To enable compilation of this filter you need to configure FFmpeg with
4921 @code{--enable-libmysofa}.
4922
4923 The filter accepts the following options:
4924
4925 @table @option
4926 @item sofa
4927 Set the SOFA file used for rendering.
4928
4929 @item gain
4930 Set gain applied to audio. Value is in dB. Default is 0.
4931
4932 @item rotation
4933 Set rotation of virtual loudspeakers in deg. Default is 0.
4934
4935 @item elevation
4936 Set elevation of virtual speakers in deg. Default is 0.
4937
4938 @item radius
4939 Set distance in meters between loudspeakers and the listener with near-field
4940 HRTFs. Default is 1.
4941
4942 @item type
4943 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4944 processing audio in time domain which is slow.
4945 @var{freq} is processing audio in frequency domain which is fast.
4946 Default is @var{freq}.
4947
4948 @item speakers
4949 Set custom positions of virtual loudspeakers. Syntax for this option is:
4950 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4951 Each virtual loudspeaker is described with short channel name following with
4952 azimuth and elevation in degrees.
4953 Each virtual loudspeaker description is separated by '|'.
4954 For example to override front left and front right channel positions use:
4955 'speakers=FL 45 15|FR 345 15'.
4956 Descriptions with unrecognised channel names are ignored.
4957
4958 @item lfegain
4959 Set custom gain for LFE channels. Value is in dB. Default is 0.
4960
4961 @item framesize
4962 Set custom frame size in number of samples. Default is 1024.
4963 Allowed range is from 1024 to 96000. Only used if option @samp{type}
4964 is set to @var{freq}.
4965
4966 @item normalize
4967 Should all IRs be normalized upon importing SOFA file.
4968 By default is enabled.
4969
4970 @item interpolate
4971 Should nearest IRs be interpolated with neighbor IRs if exact position
4972 does not match. By default is disabled.
4973
4974 @item minphase
4975 Minphase all IRs upon loading of SOFA file. By default is disabled.
4976
4977 @item anglestep
4978 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
4979
4980 @item radstep
4981 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
4982 @end table
4983
4984 @subsection Examples
4985
4986 @itemize
4987 @item
4988 Using ClubFritz6 sofa file:
4989 @example
4990 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
4991 @end example
4992
4993 @item
4994 Using ClubFritz12 sofa file and bigger radius with small rotation:
4995 @example
4996 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
4997 @end example
4998
4999 @item
5000 Similar as above but with custom speaker positions for front left, front right, back left and back right
5001 and also with custom gain:
5002 @example
5003 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5004 @end example
5005 @end itemize
5006
5007 @section stereotools
5008
5009 This filter has some handy utilities to manage stereo signals, for converting
5010 M/S stereo recordings to L/R signal while having control over the parameters
5011 or spreading the stereo image of master track.
5012
5013 The filter accepts the following options:
5014
5015 @table @option
5016 @item level_in
5017 Set input level before filtering for both channels. Defaults is 1.
5018 Allowed range is from 0.015625 to 64.
5019
5020 @item level_out
5021 Set output level after filtering for both channels. Defaults is 1.
5022 Allowed range is from 0.015625 to 64.
5023
5024 @item balance_in
5025 Set input balance between both channels. Default is 0.
5026 Allowed range is from -1 to 1.
5027
5028 @item balance_out
5029 Set output balance between both channels. Default is 0.
5030 Allowed range is from -1 to 1.
5031
5032 @item softclip
5033 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5034 clipping. Disabled by default.
5035
5036 @item mutel
5037 Mute the left channel. Disabled by default.
5038
5039 @item muter
5040 Mute the right channel. Disabled by default.
5041
5042 @item phasel
5043 Change the phase of the left channel. Disabled by default.
5044
5045 @item phaser
5046 Change the phase of the right channel. Disabled by default.
5047
5048 @item mode
5049 Set stereo mode. Available values are:
5050
5051 @table @samp
5052 @item lr>lr
5053 Left/Right to Left/Right, this is default.
5054
5055 @item lr>ms
5056 Left/Right to Mid/Side.
5057
5058 @item ms>lr
5059 Mid/Side to Left/Right.
5060
5061 @item lr>ll
5062 Left/Right to Left/Left.
5063
5064 @item lr>rr
5065 Left/Right to Right/Right.
5066
5067 @item lr>l+r
5068 Left/Right to Left + Right.
5069
5070 @item lr>rl
5071 Left/Right to Right/Left.
5072
5073 @item ms>ll
5074 Mid/Side to Left/Left.
5075
5076 @item ms>rr
5077 Mid/Side to Right/Right.
5078 @end table
5079
5080 @item slev
5081 Set level of side signal. Default is 1.
5082 Allowed range is from 0.015625 to 64.
5083
5084 @item sbal
5085 Set balance of side signal. Default is 0.
5086 Allowed range is from -1 to 1.
5087
5088 @item mlev
5089 Set level of the middle signal. Default is 1.
5090 Allowed range is from 0.015625 to 64.
5091
5092 @item mpan
5093 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5094
5095 @item base
5096 Set stereo base between mono and inversed channels. Default is 0.
5097 Allowed range is from -1 to 1.
5098
5099 @item delay
5100 Set delay in milliseconds how much to delay left from right channel and
5101 vice versa. Default is 0. Allowed range is from -20 to 20.
5102
5103 @item sclevel
5104 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5105
5106 @item phase
5107 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5108
5109 @item bmode_in, bmode_out
5110 Set balance mode for balance_in/balance_out option.
5111
5112 Can be one of the following:
5113
5114 @table @samp
5115 @item balance
5116 Classic balance mode. Attenuate one channel at time.
5117 Gain is raised up to 1.
5118
5119 @item amplitude
5120 Similar as classic mode above but gain is raised up to 2.
5121
5122 @item power
5123 Equal power distribution, from -6dB to +6dB range.
5124 @end table
5125 @end table
5126
5127 @subsection Examples
5128
5129 @itemize
5130 @item
5131 Apply karaoke like effect:
5132 @example
5133 stereotools=mlev=0.015625
5134 @end example
5135
5136 @item
5137 Convert M/S signal to L/R:
5138 @example
5139 "stereotools=mode=ms>lr"
5140 @end example
5141 @end itemize
5142
5143 @section stereowiden
5144
5145 This filter enhance the stereo effect by suppressing signal common to both
5146 channels and by delaying the signal of left into right and vice versa,
5147 thereby widening the stereo effect.
5148
5149 The filter accepts the following options:
5150
5151 @table @option
5152 @item delay
5153 Time in milliseconds of the delay of left signal into right and vice versa.
5154 Default is 20 milliseconds.
5155
5156 @item feedback
5157 Amount of gain in delayed signal into right and vice versa. Gives a delay
5158 effect of left signal in right output and vice versa which gives widening
5159 effect. Default is 0.3.
5160
5161 @item crossfeed
5162 Cross feed of left into right with inverted phase. This helps in suppressing
5163 the mono. If the value is 1 it will cancel all the signal common to both
5164 channels. Default is 0.3.
5165
5166 @item drymix
5167 Set level of input signal of original channel. Default is 0.8.
5168 @end table
5169
5170 @section superequalizer
5171 Apply 18 band equalizer.
5172
5173 The filter accepts the following options:
5174 @table @option
5175 @item 1b
5176 Set 65Hz band gain.
5177 @item 2b
5178 Set 92Hz band gain.
5179 @item 3b
5180 Set 131Hz band gain.
5181 @item 4b
5182 Set 185Hz band gain.
5183 @item 5b
5184 Set 262Hz band gain.
5185 @item 6b
5186 Set 370Hz band gain.
5187 @item 7b
5188 Set 523Hz band gain.
5189 @item 8b
5190 Set 740Hz band gain.
5191 @item 9b
5192 Set 1047Hz band gain.
5193 @item 10b
5194 Set 1480Hz band gain.
5195 @item 11b
5196 Set 2093Hz band gain.
5197 @item 12b
5198 Set 2960Hz band gain.
5199 @item 13b
5200 Set 4186Hz band gain.
5201 @item 14b
5202 Set 5920Hz band gain.
5203 @item 15b
5204 Set 8372Hz band gain.
5205 @item 16b
5206 Set 11840Hz band gain.
5207 @item 17b
5208 Set 16744Hz band gain.
5209 @item 18b
5210 Set 20000Hz band gain.
5211 @end table
5212
5213 @section surround
5214 Apply audio surround upmix filter.
5215
5216 This filter allows to produce multichannel output from audio stream.
5217
5218 The filter accepts the following options:
5219
5220 @table @option
5221 @item chl_out
5222 Set output channel layout. By default, this is @var{5.1}.
5223
5224 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5225 for the required syntax.
5226
5227 @item chl_in
5228 Set input channel layout. By default, this is @var{stereo}.
5229
5230 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5231 for the required syntax.
5232
5233 @item level_in
5234 Set input volume level. By default, this is @var{1}.
5235
5236 @item level_out
5237 Set output volume level. By default, this is @var{1}.
5238
5239 @item lfe
5240 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5241
5242 @item lfe_low
5243 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5244
5245 @item lfe_high
5246 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5247
5248 @item lfe_mode
5249 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5250 In @var{add} mode, LFE channel is created from input audio and added to output.
5251 In @var{sub} mode, LFE channel is created from input audio and added to output but
5252 also all non-LFE output channels are subtracted with output LFE channel.
5253
5254 @item angle
5255 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5256 Default is @var{90}.
5257
5258 @item fc_in
5259 Set front center input volume. By default, this is @var{1}.
5260
5261 @item fc_out
5262 Set front center output volume. By default, this is @var{1}.
5263
5264 @item fl_in
5265 Set front left input volume. By default, this is @var{1}.
5266
5267 @item fl_out
5268 Set front left output volume. By default, this is @var{1}.
5269
5270 @item fr_in
5271 Set front right input volume. By default, this is @var{1}.
5272
5273 @item fr_out
5274 Set front right output volume. By default, this is @var{1}.
5275
5276 @item sl_in
5277 Set side left input volume. By default, this is @var{1}.
5278
5279 @item sl_out
5280 Set side left output volume. By default, this is @var{1}.
5281
5282 @item sr_in
5283 Set side right input volume. By default, this is @var{1}.
5284
5285 @item sr_out
5286 Set side right output volume. By default, this is @var{1}.
5287
5288 @item bl_in
5289 Set back left input volume. By default, this is @var{1}.
5290
5291 @item bl_out
5292 Set back left output volume. By default, this is @var{1}.
5293
5294 @item br_in
5295 Set back right input volume. By default, this is @var{1}.
5296
5297 @item br_out
5298 Set back right output volume. By default, this is @var{1}.
5299
5300 @item bc_in
5301 Set back center input volume. By default, this is @var{1}.
5302
5303 @item bc_out
5304 Set back center output volume. By default, this is @var{1}.
5305
5306 @item lfe_in
5307 Set LFE input volume. By default, this is @var{1}.
5308
5309 @item lfe_out
5310 Set LFE output volume. By default, this is @var{1}.
5311
5312 @item allx
5313 Set spread usage of stereo image across X axis for all channels.
5314
5315 @item ally
5316 Set spread usage of stereo image across Y axis for all channels.
5317
5318 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5319 Set spread usage of stereo image across X axis for each channel.
5320
5321 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5322 Set spread usage of stereo image across Y axis for each channel.
5323
5324 @item win_size
5325 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5326
5327 @item win_func
5328 Set window function.
5329
5330 It accepts the following values:
5331 @table @samp
5332 @item rect
5333 @item bartlett
5334 @item hann, hanning
5335 @item hamming
5336 @item blackman
5337 @item welch
5338 @item flattop
5339 @item bharris
5340 @item bnuttall
5341 @item bhann
5342 @item sine
5343 @item nuttall
5344 @item lanczos
5345 @item gauss
5346 @item tukey
5347 @item dolph
5348 @item cauchy
5349 @item parzen
5350 @item poisson
5351 @item bohman
5352 @end table
5353 Default is @code{hann}.
5354
5355 @item overlap
5356 Set window overlap. If set to 1, the recommended overlap for selected
5357 window function will be picked. Default is @code{0.5}.
5358 @end table
5359
5360 @section treble, highshelf
5361
5362 Boost or cut treble (upper) frequencies of the audio using a two-pole
5363 shelving filter with a response similar to that of a standard
5364 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5365
5366 The filter accepts the following options:
5367
5368 @table @option
5369 @item gain, g
5370 Give the gain at whichever is the lower of ~22 kHz and the
5371 Nyquist frequency. Its useful range is about -20 (for a large cut)
5372 to +20 (for a large boost). Beware of clipping when using a positive gain.
5373
5374 @item frequency, f
5375 Set the filter's central frequency and so can be used
5376 to extend or reduce the frequency range to be boosted or cut.
5377 The default value is @code{3000} Hz.
5378
5379 @item width_type, t
5380 Set method to specify band-width of filter.
5381 @table @option
5382 @item h
5383 Hz
5384 @item q
5385 Q-Factor
5386 @item o
5387 octave
5388 @item s
5389 slope
5390 @item k
5391 kHz
5392 @end table
5393
5394 @item width, w
5395 Determine how steep is the filter's shelf transition.
5396
5397 @item mix, m
5398 How much to use filtered signal in output. Default is 1.
5399 Range is between 0 and 1.
5400
5401 @item channels, c
5402 Specify which channels to filter, by default all available are filtered.
5403
5404 @item normalize, n
5405 Normalize biquad coefficients, by default is disabled.
5406 Enabling it will normalize magnitude response at DC to 0dB.
5407 @end table
5408
5409 @subsection Commands
5410
5411 This filter supports the following commands:
5412 @table @option
5413 @item frequency, f
5414 Change treble frequency.
5415 Syntax for the command is : "@var{frequency}"
5416
5417 @item width_type, t
5418 Change treble width_type.
5419 Syntax for the command is : "@var{width_type}"
5420
5421 @item width, w
5422 Change treble width.
5423 Syntax for the command is : "@var{width}"
5424
5425 @item gain, g
5426 Change treble gain.
5427 Syntax for the command is : "@var{gain}"
5428
5429 @item mix, m
5430 Change treble mix.
5431 Syntax for the command is : "@var{mix}"
5432 @end table
5433
5434 @section tremolo
5435
5436 Sinusoidal amplitude modulation.
5437
5438 The filter accepts the following options:
5439
5440 @table @option
5441 @item f
5442 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5443 (20 Hz or lower) will result in a tremolo effect.
5444 This filter may also be used as a ring modulator by specifying
5445 a modulation frequency higher than 20 Hz.
5446 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5447
5448 @item d
5449 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5450 Default value is 0.5.
5451 @end table
5452
5453 @section vibrato
5454
5455 Sinusoidal phase modulation.
5456
5457 The filter accepts the following options:
5458
5459 @table @option
5460 @item f
5461 Modulation frequency in Hertz.
5462 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5463
5464 @item d
5465 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5466 Default value is 0.5.
5467 @end table
5468
5469 @section volume
5470
5471 Adjust the input audio volume.
5472
5473 It accepts the following parameters:
5474 @table @option
5475
5476 @item volume
5477 Set audio volume expression.
5478
5479 Output values are clipped to the maximum value.
5480
5481 The output audio volume is given by the relation:
5482 @example
5483 @var{output_volume} = @var{volume} * @var{input_volume}
5484 @end example
5485
5486 The default value for @var{volume} is "1.0".
5487
5488 @item precision
5489 This parameter represents the mathematical precision.
5490
5491 It determines which input sample formats will be allowed, which affects the
5492 precision of the volume scaling.
5493
5494 @table @option
5495 @item fixed
5496 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5497 @item float
5498 32-bit floating-point; this limits input sample format to FLT. (default)
5499 @item double
5500 64-bit floating-point; this limits input sample format to DBL.
5501 @end table
5502
5503 @item replaygain
5504 Choose the behaviour on encountering ReplayGain side data in input frames.
5505
5506 @table @option
5507 @item drop
5508 Remove ReplayGain side data, ignoring its contents (the default).
5509
5510 @item ignore
5511 Ignore ReplayGain side data, but leave it in the frame.
5512
5513 @item track
5514 Prefer the track gain, if present.
5515
5516 @item album
5517 Prefer the album gain, if present.
5518 @end table
5519
5520 @item replaygain_preamp
5521 Pre-amplification gain in dB to apply to the selected replaygain gain.
5522
5523 Default value for @var{replaygain_preamp} is 0.0.
5524
5525 @item eval
5526 Set when the volume expression is evaluated.
5527
5528 It accepts the following values:
5529 @table @samp
5530 @item once
5531 only evaluate expression once during the filter initialization, or
5532 when the @samp{volume} command is sent
5533
5534 @item frame
5535 evaluate expression for each incoming frame
5536 @end table
5537
5538 Default value is @samp{once}.
5539 @end table
5540
5541 The volume expression can contain the following parameters.
5542
5543 @table @option
5544 @item n
5545 frame number (starting at zero)
5546 @item nb_channels
5547 number of channels
5548 @item nb_consumed_samples
5549 number of samples consumed by the filter
5550 @item nb_samples
5551 number of samples in the current frame
5552 @item pos
5553 original frame position in the file
5554 @item pts
5555 frame PTS
5556 @item sample_rate
5557 sample rate
5558 @item startpts
5559 PTS at start of stream
5560 @item startt
5561 time at start of stream
5562 @item t
5563 frame time
5564 @item tb
5565 timestamp timebase
5566 @item volume
5567 last set volume value
5568 @end table
5569
5570 Note that when @option{eval} is set to @samp{once} only the
5571 @var{sample_rate} and @var{tb} variables are available, all other
5572 variables will evaluate to NAN.
5573
5574 @subsection Commands
5575
5576 This filter supports the following commands:
5577 @table @option
5578 @item volume
5579 Modify the volume expression.
5580 The command accepts the same syntax of the corresponding option.
5581
5582 If the specified expression is not valid, it is kept at its current
5583 value.
5584 @item replaygain_noclip
5585 Prevent clipping by limiting the gain applied.
5586
5587 Default value for @var{replaygain_noclip} is 1.
5588
5589 @end table
5590
5591 @subsection Examples
5592
5593 @itemize
5594 @item
5595 Halve the input audio volume:
5596 @example
5597 volume=volume=0.5
5598 volume=volume=1/2
5599 volume=volume=-6.0206dB
5600 @end example
5601
5602 In all the above example the named key for @option{volume} can be
5603 omitted, for example like in:
5604 @example
5605 volume=0.5
5606 @end example
5607
5608 @item
5609 Increase input audio power by 6 decibels using fixed-point precision:
5610 @example
5611 volume=volume=6dB:precision=fixed
5612 @end example
5613
5614 @item
5615 Fade volume after time 10 with an annihilation period of 5 seconds:
5616 @example
5617 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5618 @end example
5619 @end itemize
5620
5621 @section volumedetect
5622
5623 Detect the volume of the input video.
5624
5625 The filter has no parameters. The input is not modified. Statistics about
5626 the volume will be printed in the log when the input stream end is reached.
5627
5628 In particular it will show the mean volume (root mean square), maximum
5629 volume (on a per-sample basis), and the beginning of a histogram of the
5630 registered volume values (from the maximum value to a cumulated 1/1000 of
5631 the samples).
5632
5633 All volumes are in decibels relative to the maximum PCM value.
5634
5635 @subsection Examples
5636
5637 Here is an excerpt of the output:
5638 @example
5639 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5640 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5641 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5642 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5643 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5644 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5645 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5646 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5647 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5648 @end example
5649
5650 It means that:
5651 @itemize
5652 @item
5653 The mean square energy is approximately -27 dB, or 10^-2.7.
5654 @item
5655 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5656 @item
5657 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5658 @end itemize
5659
5660 In other words, raising the volume by +4 dB does not cause any clipping,
5661 raising it by +5 dB causes clipping for 6 samples, etc.
5662
5663 @c man end AUDIO FILTERS
5664
5665 @chapter Audio Sources
5666 @c man begin AUDIO SOURCES
5667
5668 Below is a description of the currently available audio sources.
5669
5670 @section abuffer
5671
5672 Buffer audio frames, and make them available to the filter chain.
5673
5674 This source is mainly intended for a programmatic use, in particular
5675 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5676
5677 It accepts the following parameters:
5678 @table @option
5679
5680 @item time_base
5681 The timebase which will be used for timestamps of submitted frames. It must be
5682 either a floating-point number or in @var{numerator}/@var{denominator} form.
5683
5684 @item sample_rate
5685 The sample rate of the incoming audio buffers.
5686
5687 @item sample_fmt
5688 The sample format of the incoming audio buffers.
5689 Either a sample format name or its corresponding integer representation from
5690 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5691
5692 @item channel_layout
5693 The channel layout of the incoming audio buffers.
5694 Either a channel layout name from channel_layout_map in
5695 @file{libavutil/channel_layout.c} or its corresponding integer representation
5696 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5697
5698 @item channels
5699 The number of channels of the incoming audio buffers.
5700 If both @var{channels} and @var{channel_layout} are specified, then they
5701 must be consistent.
5702
5703 @end table
5704
5705 @subsection Examples
5706
5707 @example
5708 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5709 @end example
5710
5711 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5712 Since the sample format with name "s16p" corresponds to the number
5713 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5714 equivalent to:
5715 @example
5716 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5717 @end example
5718
5719 @section aevalsrc
5720
5721 Generate an audio signal specified by an expression.
5722
5723 This source accepts in input one or more expressions (one for each
5724 channel), which are evaluated and used to generate a corresponding
5725 audio signal.
5726
5727 This source accepts the following options:
5728
5729 @table @option
5730 @item exprs
5731 Set the '|'-separated expressions list for each separate channel. In case the
5732 @option{channel_layout} option is not specified, the selected channel layout
5733 depends on the number of provided expressions. Otherwise the last
5734 specified expression is applied to the remaining output channels.
5735
5736 @item channel_layout, c
5737 Set the channel layout. The number of channels in the specified layout
5738 must be equal to the number of specified expressions.
5739
5740 @item duration, d
5741 Set the minimum duration of the sourced audio. See
5742 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5743 for the accepted syntax.
5744 Note that the resulting duration may be greater than the specified
5745 duration, as the generated audio is always cut at the end of a
5746 complete frame.
5747
5748 If not specified, or the expressed duration is negative, the audio is
5749 supposed to be generated forever.
5750
5751 @item nb_samples, n
5752 Set the number of samples per channel per each output frame,
5753 default to 1024.
5754
5755 @item sample_rate, s
5756 Specify the sample rate, default to 44100.
5757 @end table
5758
5759 Each expression in @var{exprs} can contain the following constants:
5760
5761 @table @option
5762 @item n
5763 number of the evaluated sample, starting from 0
5764
5765 @item t
5766 time of the evaluated sample expressed in seconds, starting from 0
5767
5768 @item s
5769 sample rate
5770
5771 @end table
5772
5773 @subsection Examples
5774
5775 @itemize
5776 @item
5777 Generate silence:
5778 @example
5779 aevalsrc=0
5780 @end example
5781
5782 @item
5783 Generate a sin signal with frequency of 440 Hz, set sample rate to
5784 8000 Hz:
5785 @example
5786 aevalsrc="sin(440*2*PI*t):s=8000"
5787 @end example
5788
5789 @item
5790 Generate a two channels signal, specify the channel layout (Front
5791 Center + Back Center) explicitly:
5792 @example
5793 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5794 @end example
5795
5796 @item
5797 Generate white noise:
5798 @example
5799 aevalsrc="-2+random(0)"
5800 @end example
5801
5802 @item
5803 Generate an amplitude modulated signal:
5804 @example
5805 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5806 @end example
5807
5808 @item
5809 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5810 @example
5811 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5812 @end example
5813
5814 @end itemize
5815
5816 @section anullsrc
5817
5818 The null audio source, return unprocessed audio frames. It is mainly useful
5819 as a template and to be employed in analysis / debugging tools, or as
5820 the source for filters which ignore the input data (for example the sox
5821 synth filter).
5822
5823 This source accepts the following options:
5824
5825 @table @option
5826
5827 @item channel_layout, cl
5828
5829 Specifies the channel layout, and can be either an integer or a string
5830 representing a channel layout. The default value of @var{channel_layout}
5831 is "stereo".
5832
5833 Check the channel_layout_map definition in
5834 @file{libavutil/channel_layout.c} for the mapping between strings and
5835 channel layout values.
5836
5837 @item sample_rate, r
5838 Specifies the sample rate, and defaults to 44100.
5839
5840 @item nb_samples, n
5841 Set the number of samples per requested frames.
5842
5843 @end table
5844
5845 @subsection Examples
5846
5847 @itemize
5848 @item
5849 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5850 @example
5851 anullsrc=r=48000:cl=4
5852 @end example
5853
5854 @item
5855 Do the same operation with a more obvious syntax:
5856 @example
5857 anullsrc=r=48000:cl=mono
5858 @end example
5859 @end itemize
5860
5861 All the parameters need to be explicitly defined.
5862
5863 @section flite
5864
5865 Synthesize a voice utterance using the libflite library.
5866
5867 To enable compilation of this filter you need to configure FFmpeg with
5868 @code{--enable-libflite}.
5869
5870 Note that versions of the flite library prior to 2.0 are not thread-safe.
5871
5872 The filter accepts the following options:
5873
5874 @table @option
5875
5876 @item list_voices
5877 If set to 1, list the names of the available voices and exit
5878 immediately. Default value is 0.
5879
5880 @item nb_samples, n
5881 Set the maximum number of samples per frame. Default value is 512.
5882
5883 @item textfile
5884 Set the filename containing the text to speak.
5885
5886 @item text
5887 Set the text to speak.
5888
5889 @item voice, v
5890 Set the voice to use for the speech synthesis. Default value is
5891 @code{kal}. See also the @var{list_voices} option.
5892 @end table
5893
5894 @subsection Examples
5895
5896 @itemize
5897 @item
5898 Read from file @file{speech.txt}, and synthesize the text using the
5899 standard flite voice:
5900 @example
5901 flite=textfile=speech.txt
5902 @end example
5903
5904 @item
5905 Read the specified text selecting the @code{slt} voice:
5906 @example
5907 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5908 @end example
5909
5910 @item
5911 Input text to ffmpeg:
5912 @example
5913 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5914 @end example
5915
5916 @item
5917 Make @file{ffplay} speak the specified text, using @code{flite} and
5918 the @code{lavfi} device:
5919 @example
5920 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
5921 @end example
5922 @end itemize
5923
5924 For more information about libflite, check:
5925 @url{http://www.festvox.org/flite/}
5926
5927 @section anoisesrc
5928
5929 Generate a noise audio signal.
5930
5931 The filter accepts the following options:
5932
5933 @table @option
5934 @item sample_rate, r
5935 Specify the sample rate. Default value is 48000 Hz.
5936
5937 @item amplitude, a
5938 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
5939 is 1.0.
5940
5941 @item duration, d
5942 Specify the duration of the generated audio stream. Not specifying this option
5943 results in noise with an infinite length.
5944
5945 @item color, colour, c
5946 Specify the color of noise. Available noise colors are white, pink, brown,
5947 blue and violet. Default color is white.
5948
5949 @item seed, s
5950 Specify a value used to seed the PRNG.
5951
5952 @item nb_samples, n
5953 Set the number of samples per each output frame, default is 1024.
5954 @end table
5955
5956 @subsection Examples
5957
5958 @itemize
5959
5960 @item
5961 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
5962 @example
5963 anoisesrc=d=60:c=pink:r=44100:a=0.5
5964 @end example
5965 @end itemize
5966
5967 @section hilbert
5968
5969 Generate odd-tap Hilbert transform FIR coefficients.
5970
5971 The resulting stream can be used with @ref{afir} filter for phase-shifting
5972 the signal by 90 degrees.
5973
5974 This is used in many matrix coding schemes and for analytic signal generation.
5975 The process is often written as a multiplication by i (or j), the imaginary unit.
5976
5977 The filter accepts the following options:
5978
5979 @table @option
5980
5981 @item sample_rate, s
5982 Set sample rate, default is 44100.
5983
5984 @item taps, t
5985 Set length of FIR filter, default is 22051.
5986
5987 @item nb_samples, n
5988 Set number of samples per each frame.
5989
5990 @item win_func, w
5991 Set window function to be used when generating FIR coefficients.
5992 @end table
5993
5994 @section sinc
5995
5996 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
5997
5998 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
5999
6000 The filter accepts the following options:
6001
6002 @table @option
6003 @item sample_rate, r
6004 Set sample rate, default is 44100.
6005
6006 @item nb_samples, n
6007 Set number of samples per each frame. Default is 1024.
6008
6009 @item hp
6010 Set high-pass frequency. Default is 0.
6011
6012 @item lp
6013 Set low-pass frequency. Default is 0.
6014 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6015 is higher than 0 then filter will create band-pass filter coefficients,
6016 otherwise band-reject filter coefficients.
6017
6018 @item phase
6019 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6020
6021 @item beta
6022 Set Kaiser window beta.
6023
6024 @item att
6025 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6026
6027 @item round
6028 Enable rounding, by default is disabled.
6029
6030 @item hptaps
6031 Set number of taps for high-pass filter.
6032
6033 @item lptaps
6034 Set number of taps for low-pass filter.
6035 @end table
6036
6037 @section sine
6038
6039 Generate an audio signal made of a sine wave with amplitude 1/8.
6040
6041 The audio signal is bit-exact.
6042
6043 The filter accepts the following options:
6044
6045 @table @option
6046
6047 @item frequency, f
6048 Set the carrier frequency. Default is 440 Hz.
6049
6050 @item beep_factor, b
6051 Enable a periodic beep every second with frequency @var{beep_factor} times
6052 the carrier frequency. Default is 0, meaning the beep is disabled.
6053
6054 @item sample_rate, r
6055 Specify the sample rate, default is 44100.
6056
6057 @item duration, d
6058 Specify the duration of the generated audio stream.
6059
6060 @item samples_per_frame
6061 Set the number of samples per output frame.
6062
6063 The expression can contain the following constants:
6064
6065 @table @option
6066 @item n
6067 The (sequential) number of the output audio frame, starting from 0.
6068
6069 @item pts
6070 The PTS (Presentation TimeStamp) of the output audio frame,
6071 expressed in @var{TB} units.
6072
6073 @item t
6074 The PTS of the output audio frame, expressed in seconds.
6075
6076 @item TB
6077 The timebase of the output audio frames.
6078 @end table
6079
6080 Default is @code{1024}.
6081 @end table
6082
6083 @subsection Examples
6084
6085 @itemize
6086
6087 @item
6088 Generate a simple 440 Hz sine wave:
6089 @example
6090 sine
6091 @end example
6092
6093 @item
6094 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6095 @example
6096 sine=220:4:d=5
6097 sine=f=220:b=4:d=5
6098 sine=frequency=220:beep_factor=4:duration=5
6099 @end example
6100
6101 @item
6102 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6103 pattern:
6104 @example
6105 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6106 @end example
6107 @end itemize
6108
6109 @c man end AUDIO SOURCES
6110
6111 @chapter Audio Sinks
6112 @c man begin AUDIO SINKS
6113
6114 Below is a description of the currently available audio sinks.
6115
6116 @section abuffersink
6117
6118 Buffer audio frames, and make them available to the end of filter chain.
6119
6120 This sink is mainly intended for programmatic use, in particular
6121 through the interface defined in @file{libavfilter/buffersink.h}
6122 or the options system.
6123
6124 It accepts a pointer to an AVABufferSinkContext structure, which
6125 defines the incoming buffers' formats, to be passed as the opaque
6126 parameter to @code{avfilter_init_filter} for initialization.
6127 @section anullsink
6128
6129 Null audio sink; do absolutely nothing with the input audio. It is
6130 mainly useful as a template and for use in analysis / debugging
6131 tools.
6132
6133 @c man end AUDIO SINKS
6134
6135 @chapter Video Filters
6136 @c man begin VIDEO FILTERS
6137
6138 When you configure your FFmpeg build, you can disable any of the
6139 existing filters using @code{--disable-filters}.
6140 The configure output will show the video filters included in your
6141 build.
6142
6143 Below is a description of the currently available video filters.
6144
6145 @section addroi
6146
6147 Mark a region of interest in a video frame.
6148
6149 The frame data is passed through unchanged, but metadata is attached
6150 to the frame indicating regions of interest which can affect the
6151 behaviour of later encoding.  Multiple regions can be marked by
6152 applying the filter multiple times.
6153
6154 @table @option
6155 @item x
6156 Region distance in pixels from the left edge of the frame.
6157 @item y
6158 Region distance in pixels from the top edge of the frame.
6159 @item w
6160 Region width in pixels.
6161 @item h
6162 Region height in pixels.
6163
6164 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6165 and may contain the following variables:
6166 @table @option
6167 @item iw
6168 Width of the input frame.
6169 @item ih
6170 Height of the input frame.
6171 @end table
6172
6173 @item qoffset
6174 Quantisation offset to apply within the region.
6175
6176 This must be a real value in the range -1 to +1.  A value of zero
6177 indicates no quality change.  A negative value asks for better quality
6178 (less quantisation), while a positive value asks for worse quality
6179 (greater quantisation).
6180
6181 The range is calibrated so that the extreme values indicate the
6182 largest possible offset - if the rest of the frame is encoded with the
6183 worst possible quality, an offset of -1 indicates that this region
6184 should be encoded with the best possible quality anyway.  Intermediate
6185 values are then interpolated in some codec-dependent way.
6186
6187 For example, in 10-bit H.264 the quantisation parameter varies between
6188 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6189 this region should be encoded with a QP around one-tenth of the full
6190 range better than the rest of the frame.  So, if most of the frame
6191 were to be encoded with a QP of around 30, this region would get a QP
6192 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6193 An extreme value of -1 would indicate that this region should be
6194 encoded with the best possible quality regardless of the treatment of
6195 the rest of the frame - that is, should be encoded at a QP of -12.
6196 @item clear
6197 If set to true, remove any existing regions of interest marked on the
6198 frame before adding the new one.
6199 @end table
6200
6201 @subsection Examples
6202
6203 @itemize
6204 @item
6205 Mark the centre quarter of the frame as interesting.
6206 @example
6207 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6208 @end example
6209 @item
6210 Mark the 100-pixel-wide region on the left edge of the frame as very
6211 uninteresting (to be encoded at much lower quality than the rest of
6212 the frame).
6213 @example
6214 addroi=0:0:100:ih:+1/5
6215 @end example
6216 @end itemize
6217
6218 @section alphaextract
6219
6220 Extract the alpha component from the input as a grayscale video. This
6221 is especially useful with the @var{alphamerge} filter.
6222
6223 @section alphamerge
6224
6225 Add or replace the alpha component of the primary input with the
6226 grayscale value of a second input. This is intended for use with
6227 @var{alphaextract} to allow the transmission or storage of frame
6228 sequences that have alpha in a format that doesn't support an alpha
6229 channel.
6230
6231 For example, to reconstruct full frames from a normal YUV-encoded video
6232 and a separate video created with @var{alphaextract}, you might use:
6233 @example
6234 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6235 @end example
6236
6237 Since this filter is designed for reconstruction, it operates on frame
6238 sequences without considering timestamps, and terminates when either
6239 input reaches end of stream. This will cause problems if your encoding
6240 pipeline drops frames. If you're trying to apply an image as an
6241 overlay to a video stream, consider the @var{overlay} filter instead.
6242
6243 @section amplify
6244
6245 Amplify differences between current pixel and pixels of adjacent frames in
6246 same pixel location.
6247
6248 This filter accepts the following options:
6249
6250 @table @option
6251 @item radius
6252 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6253 For example radius of 3 will instruct filter to calculate average of 7 frames.
6254
6255 @item factor
6256 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6257
6258 @item threshold
6259 Set threshold for difference amplification. Any difference greater or equal to
6260 this value will not alter source pixel. Default is 10.
6261 Allowed range is from 0 to 65535.
6262
6263 @item tolerance
6264 Set tolerance for difference amplification. Any difference lower to
6265 this value will not alter source pixel. Default is 0.
6266 Allowed range is from 0 to 65535.
6267
6268 @item low
6269 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6270 This option controls maximum possible value that will decrease source pixel value.
6271
6272 @item high
6273 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6274 This option controls maximum possible value that will increase source pixel value.
6275
6276 @item planes
6277 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6278 @end table
6279
6280 @subsection Commands
6281
6282 This filter supports the following @ref{commands} that corresponds to option of same name:
6283 @table @option
6284 @item factor
6285 @item threshold
6286 @item tolerance
6287 @item low
6288 @item high
6289 @item planes
6290 @end table
6291
6292 @section ass
6293
6294 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6295 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6296 Substation Alpha) subtitles files.
6297
6298 This filter accepts the following option in addition to the common options from
6299 the @ref{subtitles} filter:
6300
6301 @table @option
6302 @item shaping
6303 Set the shaping engine
6304
6305 Available values are:
6306 @table @samp
6307 @item auto
6308 The default libass shaping engine, which is the best available.
6309 @item simple
6310 Fast, font-agnostic shaper that can do only substitutions
6311 @item complex
6312 Slower shaper using OpenType for substitutions and positioning
6313 @end table
6314
6315 The default is @code{auto}.
6316 @end table
6317
6318 @section atadenoise
6319 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6320
6321 The filter accepts the following options:
6322
6323 @table @option
6324 @item 0a
6325 Set threshold A for 1st plane. Default is 0.02.
6326 Valid range is 0 to 0.3.
6327
6328 @item 0b
6329 Set threshold B for 1st plane. Default is 0.04.
6330 Valid range is 0 to 5.
6331
6332 @item 1a
6333 Set threshold A for 2nd plane. Default is 0.02.
6334 Valid range is 0 to 0.3.
6335
6336 @item 1b
6337 Set threshold B for 2nd plane. Default is 0.04.
6338 Valid range is 0 to 5.
6339
6340 @item 2a
6341 Set threshold A for 3rd plane. Default is 0.02.
6342 Valid range is 0 to 0.3.
6343
6344 @item 2b
6345 Set threshold B for 3rd plane. Default is 0.04.
6346 Valid range is 0 to 5.
6347
6348 Threshold A is designed to react on abrupt changes in the input signal and
6349 threshold B is designed to react on continuous changes in the input signal.
6350
6351 @item s
6352 Set number of frames filter will use for averaging. Default is 9. Must be odd
6353 number in range [5, 129].
6354
6355 @item p
6356 Set what planes of frame filter will use for averaging. Default is all.
6357
6358 @item a
6359 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
6360 Alternatively can be set to @code{s} serial.
6361
6362 Parallel can be faster then serial, while other way around is never true.
6363 Parallel will abort early on first change being greater then thresholds, while serial
6364 will continue processing other side of frames if they are equal or bellow thresholds.
6365 @end table
6366
6367 @subsection Commands
6368 This filter supports same @ref{commands} as options except option @code{s}.
6369 The command accepts the same syntax of the corresponding option.
6370
6371 @section avgblur
6372
6373 Apply average blur filter.
6374
6375 The filter accepts the following options:
6376
6377 @table @option
6378 @item sizeX
6379 Set horizontal radius size.
6380
6381 @item planes
6382 Set which planes to filter. By default all planes are filtered.
6383
6384 @item sizeY
6385 Set vertical radius size, if zero it will be same as @code{sizeX}.
6386 Default is @code{0}.
6387 @end table
6388
6389 @subsection Commands
6390 This filter supports same commands as options.
6391 The command accepts the same syntax of the corresponding option.
6392
6393 If the specified expression is not valid, it is kept at its current
6394 value.
6395
6396 @section bbox
6397
6398 Compute the bounding box for the non-black pixels in the input frame
6399 luminance plane.
6400
6401 This filter computes the bounding box containing all the pixels with a
6402 luminance value greater than the minimum allowed value.
6403 The parameters describing the bounding box are printed on the filter
6404 log.
6405
6406 The filter accepts the following option:
6407
6408 @table @option
6409 @item min_val
6410 Set the minimal luminance value. Default is @code{16}.
6411 @end table
6412
6413 @section bilateral
6414 Apply bilateral filter, spatial smoothing while preserving edges.
6415
6416 The filter accepts the following options:
6417 @table @option
6418 @item sigmaS
6419 Set sigma of gaussian function to calculate spatial weight.
6420 Allowed range is 0 to 10. Default is 0.1.
6421
6422 @item sigmaR
6423 Set sigma of gaussian function to calculate range weight.
6424 Allowed range is 0 to 1. Default is 0.1.
6425
6426 @item planes
6427 Set planes to filter. Default is first only.
6428 @end table
6429
6430 @section bitplanenoise
6431
6432 Show and measure bit plane noise.
6433
6434 The filter accepts the following options:
6435
6436 @table @option
6437 @item bitplane
6438 Set which plane to analyze. Default is @code{1}.
6439
6440 @item filter
6441 Filter out noisy pixels from @code{bitplane} set above.
6442 Default is disabled.
6443 @end table
6444
6445 @section blackdetect
6446
6447 Detect video intervals that are (almost) completely black. Can be
6448 useful to detect chapter transitions, commercials, or invalid
6449 recordings. Output lines contains the time for the start, end and
6450 duration of the detected black interval expressed in seconds.
6451
6452 In order to display the output lines, you need to set the loglevel at
6453 least to the AV_LOG_INFO value.
6454
6455 The filter accepts the following options:
6456
6457 @table @option
6458 @item black_min_duration, d
6459 Set the minimum detected black duration expressed in seconds. It must
6460 be a non-negative floating point number.
6461
6462 Default value is 2.0.
6463
6464 @item picture_black_ratio_th, pic_th
6465 Set the threshold for considering a picture "black".
6466 Express the minimum value for the ratio:
6467 @example
6468 @var{nb_black_pixels} / @var{nb_pixels}
6469 @end example
6470
6471 for which a picture is considered black.
6472 Default value is 0.98.
6473
6474 @item pixel_black_th, pix_th
6475 Set the threshold for considering a pixel "black".
6476
6477 The threshold expresses the maximum pixel luminance value for which a
6478 pixel is considered "black". The provided value is scaled according to
6479 the following equation:
6480 @example
6481 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6482 @end example
6483
6484 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6485 the input video format, the range is [0-255] for YUV full-range
6486 formats and [16-235] for YUV non full-range formats.
6487
6488 Default value is 0.10.
6489 @end table
6490
6491 The following example sets the maximum pixel threshold to the minimum
6492 value, and detects only black intervals of 2 or more seconds:
6493 @example
6494 blackdetect=d=2:pix_th=0.00
6495 @end example
6496
6497 @section blackframe
6498
6499 Detect frames that are (almost) completely black. Can be useful to
6500 detect chapter transitions or commercials. Output lines consist of
6501 the frame number of the detected frame, the percentage of blackness,
6502 the position in the file if known or -1 and the timestamp in seconds.
6503
6504 In order to display the output lines, you need to set the loglevel at
6505 least to the AV_LOG_INFO value.
6506
6507 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6508 The value represents the percentage of pixels in the picture that
6509 are below the threshold value.
6510
6511 It accepts the following parameters:
6512
6513 @table @option
6514
6515 @item amount
6516 The percentage of the pixels that have to be below the threshold; it defaults to
6517 @code{98}.
6518
6519 @item threshold, thresh
6520 The threshold below which a pixel value is considered black; it defaults to
6521 @code{32}.
6522
6523 @end table
6524
6525 @section blend, tblend
6526
6527 Blend two video frames into each other.
6528
6529 The @code{blend} filter takes two input streams and outputs one
6530 stream, the first input is the "top" layer and second input is
6531 "bottom" layer.  By default, the output terminates when the longest input terminates.
6532
6533 The @code{tblend} (time blend) filter takes two consecutive frames
6534 from one single stream, and outputs the result obtained by blending
6535 the new frame on top of the old frame.
6536
6537 A description of the accepted options follows.
6538
6539 @table @option
6540 @item c0_mode
6541 @item c1_mode
6542 @item c2_mode
6543 @item c3_mode
6544 @item all_mode
6545 Set blend mode for specific pixel component or all pixel components in case
6546 of @var{all_mode}. Default value is @code{normal}.
6547
6548 Available values for component modes are:
6549 @table @samp
6550 @item addition
6551 @item grainmerge
6552 @item and
6553 @item average
6554 @item burn
6555 @item darken
6556 @item difference
6557 @item grainextract
6558 @item divide
6559 @item dodge
6560 @item freeze
6561 @item exclusion
6562 @item extremity
6563 @item glow
6564 @item hardlight
6565 @item hardmix
6566 @item heat
6567 @item lighten
6568 @item linearlight
6569 @item multiply
6570 @item multiply128
6571 @item negation
6572 @item normal
6573 @item or
6574 @item overlay
6575 @item phoenix
6576 @item pinlight
6577 @item reflect
6578 @item screen
6579 @item softlight
6580 @item subtract
6581 @item vividlight
6582 @item xor
6583 @end table
6584
6585 @item c0_opacity
6586 @item c1_opacity
6587 @item c2_opacity
6588 @item c3_opacity
6589 @item all_opacity
6590 Set blend opacity for specific pixel component or all pixel components in case
6591 of @var{all_opacity}. Only used in combination with pixel component blend modes.
6592
6593 @item c0_expr
6594 @item c1_expr
6595 @item c2_expr
6596 @item c3_expr
6597 @item all_expr
6598 Set blend expression for specific pixel component or all pixel components in case
6599 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6600
6601 The expressions can use the following variables:
6602
6603 @table @option
6604 @item N
6605 The sequential number of the filtered frame, starting from @code{0}.
6606
6607 @item X
6608 @item Y
6609 the coordinates of the current sample
6610
6611 @item W
6612 @item H
6613 the width and height of currently filtered plane
6614
6615 @item SW
6616 @item SH
6617 Width and height scale for the plane being filtered. It is the
6618 ratio between the dimensions of the current plane to the luma plane,
6619 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6620 the luma plane and @code{0.5,0.5} for the chroma planes.
6621
6622 @item T
6623 Time of the current frame, expressed in seconds.
6624
6625 @item TOP, A
6626 Value of pixel component at current location for first video frame (top layer).
6627
6628 @item BOTTOM, B
6629 Value of pixel component at current location for second video frame (bottom layer).
6630 @end table
6631 @end table
6632
6633 The @code{blend} filter also supports the @ref{framesync} options.
6634
6635 @subsection Examples
6636
6637 @itemize
6638 @item
6639 Apply transition from bottom layer to top layer in first 10 seconds:
6640 @example
6641 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6642 @end example
6643
6644 @item
6645 Apply linear horizontal transition from top layer to bottom layer:
6646 @example
6647 blend=all_expr='A*(X/W)+B*(1-X/W)'
6648 @end example
6649
6650 @item
6651 Apply 1x1 checkerboard effect:
6652 @example
6653 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6654 @end example
6655
6656 @item
6657 Apply uncover left effect:
6658 @example
6659 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6660 @end example
6661
6662 @item
6663 Apply uncover down effect:
6664 @example
6665 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6666 @end example
6667
6668 @item
6669 Apply uncover up-left effect:
6670 @example
6671 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6672 @end example
6673
6674 @item
6675 Split diagonally video and shows top and bottom layer on each side:
6676 @example
6677 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6678 @end example
6679
6680 @item
6681 Display differences between the current and the previous frame:
6682 @example
6683 tblend=all_mode=grainextract
6684 @end example
6685 @end itemize
6686
6687 @section bm3d
6688
6689 Denoise frames using Block-Matching 3D algorithm.
6690
6691 The filter accepts the following options.
6692
6693 @table @option
6694 @item sigma
6695 Set denoising strength. Default value is 1.
6696 Allowed range is from 0 to 999.9.
6697 The denoising algorithm is very sensitive to sigma, so adjust it
6698 according to the source.
6699
6700 @item block
6701 Set local patch size. This sets dimensions in 2D.
6702
6703 @item bstep
6704 Set sliding step for processing blocks. Default value is 4.
6705 Allowed range is from 1 to 64.
6706 Smaller values allows processing more reference blocks and is slower.
6707
6708 @item group
6709 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6710 When set to 1, no block matching is done. Larger values allows more blocks
6711 in single group.
6712 Allowed range is from 1 to 256.
6713
6714 @item range
6715 Set radius for search block matching. Default is 9.
6716 Allowed range is from 1 to INT32_MAX.
6717
6718 @item mstep
6719 Set step between two search locations for block matching. Default is 1.
6720 Allowed range is from 1 to 64. Smaller is slower.
6721
6722 @item thmse
6723 Set threshold of mean square error for block matching. Valid range is 0 to
6724 INT32_MAX.
6725
6726 @item hdthr
6727 Set thresholding parameter for hard thresholding in 3D transformed domain.
6728 Larger values results in stronger hard-thresholding filtering in frequency
6729 domain.
6730
6731 @item estim
6732 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6733 Default is @code{basic}.
6734
6735 @item ref
6736 If enabled, filter will use 2nd stream for block matching.
6737 Default is disabled for @code{basic} value of @var{estim} option,
6738 and always enabled if value of @var{estim} is @code{final}.
6739
6740 @item planes
6741 Set planes to filter. Default is all available except alpha.
6742 @end table
6743
6744 @subsection Examples
6745
6746 @itemize
6747 @item
6748 Basic filtering with bm3d:
6749 @example
6750 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6751 @end example
6752
6753 @item
6754 Same as above, but filtering only luma:
6755 @example
6756 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6757 @end example
6758
6759 @item
6760 Same as above, but with both estimation modes:
6761 @example
6762 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
6763 @end example
6764
6765 @item
6766 Same as above, but prefilter with @ref{nlmeans} filter instead:
6767 @example
6768 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
6769 @end example
6770 @end itemize
6771
6772 @section boxblur
6773
6774 Apply a boxblur algorithm to the input video.
6775
6776 It accepts the following parameters:
6777
6778 @table @option
6779
6780 @item luma_radius, lr
6781 @item luma_power, lp
6782 @item chroma_radius, cr
6783 @item chroma_power, cp
6784 @item alpha_radius, ar
6785 @item alpha_power, ap
6786
6787 @end table
6788
6789 A description of the accepted options follows.
6790
6791 @table @option
6792 @item luma_radius, lr
6793 @item chroma_radius, cr
6794 @item alpha_radius, ar
6795 Set an expression for the box radius in pixels used for blurring the
6796 corresponding input plane.
6797
6798 The radius value must be a non-negative number, and must not be
6799 greater than the value of the expression @code{min(w,h)/2} for the
6800 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6801 planes.
6802
6803 Default value for @option{luma_radius} is "2". If not specified,
6804 @option{chroma_radius} and @option{alpha_radius} default to the
6805 corresponding value set for @option{luma_radius}.
6806
6807 The expressions can contain the following constants:
6808 @table @option
6809 @item w
6810 @item h
6811 The input width and height in pixels.
6812
6813 @item cw
6814 @item ch
6815 The input chroma image width and height in pixels.
6816
6817 @item hsub
6818 @item vsub
6819 The horizontal and vertical chroma subsample values. For example, for the
6820 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6821 @end table
6822
6823 @item luma_power, lp
6824 @item chroma_power, cp
6825 @item alpha_power, ap
6826 Specify how many times the boxblur filter is applied to the
6827 corresponding plane.
6828
6829 Default value for @option{luma_power} is 2. If not specified,
6830 @option{chroma_power} and @option{alpha_power} default to the
6831 corresponding value set for @option{luma_power}.
6832
6833 A value of 0 will disable the effect.
6834 @end table
6835
6836 @subsection Examples
6837
6838 @itemize
6839 @item
6840 Apply a boxblur filter with the luma, chroma, and alpha radii
6841 set to 2:
6842 @example
6843 boxblur=luma_radius=2:luma_power=1
6844 boxblur=2:1
6845 @end example
6846
6847 @item
6848 Set the luma radius to 2, and alpha and chroma radius to 0:
6849 @example
6850 boxblur=2:1:cr=0:ar=0
6851 @end example
6852
6853 @item
6854 Set the luma and chroma radii to a fraction of the video dimension:
6855 @example
6856 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6857 @end example
6858 @end itemize
6859
6860 @section bwdif
6861
6862 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6863 Deinterlacing Filter").
6864
6865 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6866 interpolation algorithms.
6867 It accepts the following parameters:
6868
6869 @table @option
6870 @item mode
6871 The interlacing mode to adopt. It accepts one of the following values:
6872
6873 @table @option
6874 @item 0, send_frame
6875 Output one frame for each frame.
6876 @item 1, send_field
6877 Output one frame for each field.
6878 @end table
6879
6880 The default value is @code{send_field}.
6881
6882 @item parity
6883 The picture field parity assumed for the input interlaced video. It accepts one
6884 of the following values:
6885
6886 @table @option
6887 @item 0, tff
6888 Assume the top field is first.
6889 @item 1, bff
6890 Assume the bottom field is first.
6891 @item -1, auto
6892 Enable automatic detection of field parity.
6893 @end table
6894
6895 The default value is @code{auto}.
6896 If the interlacing is unknown or the decoder does not export this information,
6897 top field first will be assumed.
6898
6899 @item deint
6900 Specify which frames to deinterlace. Accepts one of the following
6901 values:
6902
6903 @table @option
6904 @item 0, all
6905 Deinterlace all frames.
6906 @item 1, interlaced
6907 Only deinterlace frames marked as interlaced.
6908 @end table
6909
6910 The default value is @code{all}.
6911 @end table
6912
6913 @section chromahold
6914 Remove all color information for all colors except for certain one.
6915
6916 The filter accepts the following options:
6917
6918 @table @option
6919 @item color
6920 The color which will not be replaced with neutral chroma.
6921
6922 @item similarity
6923 Similarity percentage with the above color.
6924 0.01 matches only the exact key color, while 1.0 matches everything.
6925
6926 @item blend
6927 Blend percentage.
6928 0.0 makes pixels either fully gray, or not gray at all.
6929 Higher values result in more preserved color.
6930
6931 @item yuv
6932 Signals that the color passed is already in YUV instead of RGB.
6933
6934 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6935 This can be used to pass exact YUV values as hexadecimal numbers.
6936 @end table
6937
6938 @subsection Commands
6939 This filter supports same @ref{commands} as options.
6940 The command accepts the same syntax of the corresponding option.
6941
6942 If the specified expression is not valid, it is kept at its current
6943 value.
6944
6945 @section chromakey
6946 YUV colorspace color/chroma keying.
6947
6948 The filter accepts the following options:
6949
6950 @table @option
6951 @item color
6952 The color which will be replaced with transparency.
6953
6954 @item similarity
6955 Similarity percentage with the key color.
6956
6957 0.01 matches only the exact key color, while 1.0 matches everything.
6958
6959 @item blend
6960 Blend percentage.
6961
6962 0.0 makes pixels either fully transparent, or not transparent at all.
6963
6964 Higher values result in semi-transparent pixels, with a higher transparency
6965 the more similar the pixels color is to the key color.
6966
6967 @item yuv
6968 Signals that the color passed is already in YUV instead of RGB.
6969
6970 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6971 This can be used to pass exact YUV values as hexadecimal numbers.
6972 @end table
6973
6974 @subsection Commands
6975 This filter supports same @ref{commands} as options.
6976 The command accepts the same syntax of the corresponding option.
6977
6978 If the specified expression is not valid, it is kept at its current
6979 value.
6980
6981 @subsection Examples
6982
6983 @itemize
6984 @item
6985 Make every green pixel in the input image transparent:
6986 @example
6987 ffmpeg -i input.png -vf chromakey=green out.png
6988 @end example
6989
6990 @item
6991 Overlay a greenscreen-video on top of a static black background.
6992 @example
6993 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
6994 @end example
6995 @end itemize
6996
6997 @section chromashift
6998 Shift chroma pixels horizontally and/or vertically.
6999
7000 The filter accepts the following options:
7001 @table @option
7002 @item cbh
7003 Set amount to shift chroma-blue horizontally.
7004 @item cbv
7005 Set amount to shift chroma-blue vertically.
7006 @item crh
7007 Set amount to shift chroma-red horizontally.
7008 @item crv
7009 Set amount to shift chroma-red vertically.
7010 @item edge
7011 Set edge mode, can be @var{smear}, default, or @var{warp}.
7012 @end table
7013
7014 @subsection Commands
7015
7016 This filter supports the all above options as @ref{commands}.
7017
7018 @section ciescope
7019
7020 Display CIE color diagram with pixels overlaid onto it.
7021
7022 The filter accepts the following options:
7023
7024 @table @option
7025 @item system
7026 Set color system.
7027
7028 @table @samp
7029 @item ntsc, 470m
7030 @item ebu, 470bg
7031 @item smpte
7032 @item 240m
7033 @item apple
7034 @item widergb
7035 @item cie1931
7036 @item rec709, hdtv
7037 @item uhdtv, rec2020
7038 @item dcip3
7039 @end table
7040
7041 @item cie
7042 Set CIE system.
7043
7044 @table @samp
7045 @item xyy
7046 @item ucs
7047 @item luv
7048 @end table
7049
7050 @item gamuts
7051 Set what gamuts to draw.
7052
7053 See @code{system} option for available values.
7054
7055 @item size, s
7056 Set ciescope size, by default set to 512.
7057
7058 @item intensity, i
7059 Set intensity used to map input pixel values to CIE diagram.
7060
7061 @item contrast
7062 Set contrast used to draw tongue colors that are out of active color system gamut.
7063
7064 @item corrgamma
7065 Correct gamma displayed on scope, by default enabled.
7066
7067 @item showwhite
7068 Show white point on CIE diagram, by default disabled.
7069
7070 @item gamma
7071 Set input gamma. Used only with XYZ input color space.
7072 @end table
7073
7074 @section codecview
7075
7076 Visualize information exported by some codecs.
7077
7078 Some codecs can export information through frames using side-data or other
7079 means. For example, some MPEG based codecs export motion vectors through the
7080 @var{export_mvs} flag in the codec @option{flags2} option.
7081
7082 The filter accepts the following option:
7083
7084 @table @option
7085 @item mv
7086 Set motion vectors to visualize.
7087
7088 Available flags for @var{mv} are:
7089
7090 @table @samp
7091 @item pf
7092 forward predicted MVs of P-frames
7093 @item bf
7094 forward predicted MVs of B-frames
7095 @item bb
7096 backward predicted MVs of B-frames
7097 @end table
7098
7099 @item qp
7100 Display quantization parameters using the chroma planes.
7101
7102 @item mv_type, mvt
7103 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7104
7105 Available flags for @var{mv_type} are:
7106
7107 @table @samp
7108 @item fp
7109 forward predicted MVs
7110 @item bp
7111 backward predicted MVs
7112 @end table
7113
7114 @item frame_type, ft
7115 Set frame type to visualize motion vectors of.
7116
7117 Available flags for @var{frame_type} are:
7118
7119 @table @samp
7120 @item if
7121 intra-coded frames (I-frames)
7122 @item pf
7123 predicted frames (P-frames)
7124 @item bf
7125 bi-directionally predicted frames (B-frames)
7126 @end table
7127 @end table
7128
7129 @subsection Examples
7130
7131 @itemize
7132 @item
7133 Visualize forward predicted MVs of all frames using @command{ffplay}:
7134 @example
7135 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7136 @end example
7137
7138 @item
7139 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7140 @example
7141 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7142 @end example
7143 @end itemize
7144
7145 @section colorbalance
7146 Modify intensity of primary colors (red, green and blue) of input frames.
7147
7148 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7149 regions for the red-cyan, green-magenta or blue-yellow balance.
7150
7151 A positive adjustment value shifts the balance towards the primary color, a negative
7152 value towards the complementary color.
7153
7154 The filter accepts the following options:
7155
7156 @table @option
7157 @item rs
7158 @item gs
7159 @item bs
7160 Adjust red, green and blue shadows (darkest pixels).
7161
7162 @item rm
7163 @item gm
7164 @item bm
7165 Adjust red, green and blue midtones (medium pixels).
7166
7167 @item rh
7168 @item gh
7169 @item bh
7170 Adjust red, green and blue highlights (brightest pixels).
7171
7172 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7173
7174 @item pl
7175 Preserve lightness when changing color balance. Default is disabled.
7176 @end table
7177
7178 @subsection Examples
7179
7180 @itemize
7181 @item
7182 Add red color cast to shadows:
7183 @example
7184 colorbalance=rs=.3
7185 @end example
7186 @end itemize
7187
7188 @subsection Commands
7189
7190 This filter supports the all above options as @ref{commands}.
7191
7192 @section colorchannelmixer
7193
7194 Adjust video input frames by re-mixing color channels.
7195
7196 This filter modifies a color channel by adding the values associated to
7197 the other channels of the same pixels. For example if the value to
7198 modify is red, the output value will be:
7199 @example
7200 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
7201 @end example
7202
7203 The filter accepts the following options:
7204
7205 @table @option
7206 @item rr
7207 @item rg
7208 @item rb
7209 @item ra
7210 Adjust contribution of input red, green, blue and alpha channels for output red channel.
7211 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
7212
7213 @item gr
7214 @item gg
7215 @item gb
7216 @item ga
7217 Adjust contribution of input red, green, blue and alpha channels for output green channel.
7218 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
7219
7220 @item br
7221 @item bg
7222 @item bb
7223 @item ba
7224 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
7225 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
7226
7227 @item ar
7228 @item ag
7229 @item ab
7230 @item aa
7231 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
7232 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
7233
7234 Allowed ranges for options are @code{[-2.0, 2.0]}.
7235 @end table
7236
7237 @subsection Examples
7238
7239 @itemize
7240 @item
7241 Convert source to grayscale:
7242 @example
7243 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
7244 @end example
7245 @item
7246 Simulate sepia tones:
7247 @example
7248 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
7249 @end example
7250 @end itemize
7251
7252 @subsection Commands
7253
7254 This filter supports the all above options as @ref{commands}.
7255
7256 @section colorkey
7257 RGB colorspace color keying.
7258
7259 The filter accepts the following options:
7260
7261 @table @option
7262 @item color
7263 The color which will be replaced with transparency.
7264
7265 @item similarity
7266 Similarity percentage with the key color.
7267
7268 0.01 matches only the exact key color, while 1.0 matches everything.
7269
7270 @item blend
7271 Blend percentage.
7272
7273 0.0 makes pixels either fully transparent, or not transparent at all.
7274
7275 Higher values result in semi-transparent pixels, with a higher transparency
7276 the more similar the pixels color is to the key color.
7277 @end table
7278
7279 @subsection Examples
7280
7281 @itemize
7282 @item
7283 Make every green pixel in the input image transparent:
7284 @example
7285 ffmpeg -i input.png -vf colorkey=green out.png
7286 @end example
7287
7288 @item
7289 Overlay a greenscreen-video on top of a static background image.
7290 @example
7291 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
7292 @end example
7293 @end itemize
7294
7295 @section colorhold
7296 Remove all color information for all RGB colors except for certain one.
7297
7298 The filter accepts the following options:
7299
7300 @table @option
7301 @item color
7302 The color which will not be replaced with neutral gray.
7303
7304 @item similarity
7305 Similarity percentage with the above color.
7306 0.01 matches only the exact key color, while 1.0 matches everything.
7307
7308 @item blend
7309 Blend percentage. 0.0 makes pixels fully gray.
7310 Higher values result in more preserved color.
7311 @end table
7312
7313 @section colorlevels
7314
7315 Adjust video input frames using levels.
7316
7317 The filter accepts the following options:
7318
7319 @table @option
7320 @item rimin
7321 @item gimin
7322 @item bimin
7323 @item aimin
7324 Adjust red, green, blue and alpha input black point.
7325 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7326
7327 @item rimax
7328 @item gimax
7329 @item bimax
7330 @item aimax
7331 Adjust red, green, blue and alpha input white point.
7332 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
7333
7334 Input levels are used to lighten highlights (bright tones), darken shadows
7335 (dark tones), change the balance of bright and dark tones.
7336
7337 @item romin
7338 @item gomin
7339 @item bomin
7340 @item aomin
7341 Adjust red, green, blue and alpha output black point.
7342 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
7343
7344 @item romax
7345 @item gomax
7346 @item bomax
7347 @item aomax
7348 Adjust red, green, blue and alpha output white point.
7349 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
7350
7351 Output levels allows manual selection of a constrained output level range.
7352 @end table
7353
7354 @subsection Examples
7355
7356 @itemize
7357 @item
7358 Make video output darker:
7359 @example
7360 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
7361 @end example
7362
7363 @item
7364 Increase contrast:
7365 @example
7366 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
7367 @end example
7368
7369 @item
7370 Make video output lighter:
7371 @example
7372 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
7373 @end example
7374
7375 @item
7376 Increase brightness:
7377 @example
7378 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
7379 @end example
7380 @end itemize
7381
7382 @section colormatrix
7383
7384 Convert color matrix.
7385
7386 The filter accepts the following options:
7387
7388 @table @option
7389 @item src
7390 @item dst
7391 Specify the source and destination color matrix. Both values must be
7392 specified.
7393
7394 The accepted values are:
7395 @table @samp
7396 @item bt709
7397 BT.709
7398
7399 @item fcc
7400 FCC
7401
7402 @item bt601
7403 BT.601
7404
7405 @item bt470
7406 BT.470
7407
7408 @item bt470bg
7409 BT.470BG
7410
7411 @item smpte170m
7412 SMPTE-170M
7413
7414 @item smpte240m
7415 SMPTE-240M
7416
7417 @item bt2020
7418 BT.2020
7419 @end table
7420 @end table
7421
7422 For example to convert from BT.601 to SMPTE-240M, use the command:
7423 @example
7424 colormatrix=bt601:smpte240m
7425 @end example
7426
7427 @section colorspace
7428
7429 Convert colorspace, transfer characteristics or color primaries.
7430 Input video needs to have an even size.
7431
7432 The filter accepts the following options:
7433
7434 @table @option
7435 @anchor{all}
7436 @item all
7437 Specify all color properties at once.
7438
7439 The accepted values are:
7440 @table @samp
7441 @item bt470m
7442 BT.470M
7443
7444 @item bt470bg
7445 BT.470BG
7446
7447 @item bt601-6-525
7448 BT.601-6 525
7449
7450 @item bt601-6-625
7451 BT.601-6 625
7452
7453 @item bt709
7454 BT.709
7455
7456 @item smpte170m
7457 SMPTE-170M
7458
7459 @item smpte240m
7460 SMPTE-240M
7461
7462 @item bt2020
7463 BT.2020
7464
7465 @end table
7466
7467 @anchor{space}
7468 @item space
7469 Specify output colorspace.
7470
7471 The accepted values are:
7472 @table @samp
7473 @item bt709
7474 BT.709
7475
7476 @item fcc
7477 FCC
7478
7479 @item bt470bg
7480 BT.470BG or BT.601-6 625
7481
7482 @item smpte170m
7483 SMPTE-170M or BT.601-6 525
7484
7485 @item smpte240m
7486 SMPTE-240M
7487
7488 @item ycgco
7489 YCgCo
7490
7491 @item bt2020ncl
7492 BT.2020 with non-constant luminance
7493
7494 @end table
7495
7496 @anchor{trc}
7497 @item trc
7498 Specify output transfer characteristics.
7499
7500 The accepted values are:
7501 @table @samp
7502 @item bt709
7503 BT.709
7504
7505 @item bt470m
7506 BT.470M
7507
7508 @item bt470bg
7509 BT.470BG
7510
7511 @item gamma22
7512 Constant gamma of 2.2
7513
7514 @item gamma28
7515 Constant gamma of 2.8
7516
7517 @item smpte170m
7518 SMPTE-170M, BT.601-6 625 or BT.601-6 525
7519
7520 @item smpte240m
7521 SMPTE-240M
7522
7523 @item srgb
7524 SRGB
7525
7526 @item iec61966-2-1
7527 iec61966-2-1
7528
7529 @item iec61966-2-4
7530 iec61966-2-4
7531
7532 @item xvycc
7533 xvycc
7534
7535 @item bt2020-10
7536 BT.2020 for 10-bits content
7537
7538 @item bt2020-12
7539 BT.2020 for 12-bits content
7540
7541 @end table
7542
7543 @anchor{primaries}
7544 @item primaries
7545 Specify output color primaries.
7546
7547 The accepted values are:
7548 @table @samp
7549 @item bt709
7550 BT.709
7551
7552 @item bt470m
7553 BT.470M
7554
7555 @item bt470bg
7556 BT.470BG or BT.601-6 625
7557
7558 @item smpte170m
7559 SMPTE-170M or BT.601-6 525
7560
7561 @item smpte240m
7562 SMPTE-240M
7563
7564 @item film
7565 film
7566
7567 @item smpte431
7568 SMPTE-431
7569
7570 @item smpte432
7571 SMPTE-432
7572
7573 @item bt2020
7574 BT.2020
7575
7576 @item jedec-p22
7577 JEDEC P22 phosphors
7578
7579 @end table
7580
7581 @anchor{range}
7582 @item range
7583 Specify output color range.
7584
7585 The accepted values are:
7586 @table @samp
7587 @item tv
7588 TV (restricted) range
7589
7590 @item mpeg
7591 MPEG (restricted) range
7592
7593 @item pc
7594 PC (full) range
7595
7596 @item jpeg
7597 JPEG (full) range
7598
7599 @end table
7600
7601 @item format
7602 Specify output color format.
7603
7604 The accepted values are:
7605 @table @samp
7606 @item yuv420p
7607 YUV 4:2:0 planar 8-bits
7608
7609 @item yuv420p10
7610 YUV 4:2:0 planar 10-bits
7611
7612 @item yuv420p12
7613 YUV 4:2:0 planar 12-bits
7614
7615 @item yuv422p
7616 YUV 4:2:2 planar 8-bits
7617
7618 @item yuv422p10
7619 YUV 4:2:2 planar 10-bits
7620
7621 @item yuv422p12
7622 YUV 4:2:2 planar 12-bits
7623
7624 @item yuv444p
7625 YUV 4:4:4 planar 8-bits
7626
7627 @item yuv444p10
7628 YUV 4:4:4 planar 10-bits
7629
7630 @item yuv444p12
7631 YUV 4:4:4 planar 12-bits
7632
7633 @end table
7634
7635 @item fast
7636 Do a fast conversion, which skips gamma/primary correction. This will take
7637 significantly less CPU, but will be mathematically incorrect. To get output
7638 compatible with that produced by the colormatrix filter, use fast=1.
7639
7640 @item dither
7641 Specify dithering mode.
7642
7643 The accepted values are:
7644 @table @samp
7645 @item none
7646 No dithering
7647
7648 @item fsb
7649 Floyd-Steinberg dithering
7650 @end table
7651
7652 @item wpadapt
7653 Whitepoint adaptation mode.
7654
7655 The accepted values are:
7656 @table @samp
7657 @item bradford
7658 Bradford whitepoint adaptation
7659
7660 @item vonkries
7661 von Kries whitepoint adaptation
7662
7663 @item identity
7664 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7665 @end table
7666
7667 @item iall
7668 Override all input properties at once. Same accepted values as @ref{all}.
7669
7670 @item ispace
7671 Override input colorspace. Same accepted values as @ref{space}.
7672
7673 @item iprimaries
7674 Override input color primaries. Same accepted values as @ref{primaries}.
7675
7676 @item itrc
7677 Override input transfer characteristics. Same accepted values as @ref{trc}.
7678
7679 @item irange
7680 Override input color range. Same accepted values as @ref{range}.
7681
7682 @end table
7683
7684 The filter converts the transfer characteristics, color space and color
7685 primaries to the specified user values. The output value, if not specified,
7686 is set to a default value based on the "all" property. If that property is
7687 also not specified, the filter will log an error. The output color range and
7688 format default to the same value as the input color range and format. The
7689 input transfer characteristics, color space, color primaries and color range
7690 should be set on the input data. If any of these are missing, the filter will
7691 log an error and no conversion will take place.
7692
7693 For example to convert the input to SMPTE-240M, use the command:
7694 @example
7695 colorspace=smpte240m
7696 @end example
7697
7698 @section convolution
7699
7700 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7701
7702 The filter accepts the following options:
7703
7704 @table @option
7705 @item 0m
7706 @item 1m
7707 @item 2m
7708 @item 3m
7709 Set matrix for each plane.
7710 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7711 and from 1 to 49 odd number of signed integers in @var{row} mode.
7712
7713 @item 0rdiv
7714 @item 1rdiv
7715 @item 2rdiv
7716 @item 3rdiv
7717 Set multiplier for calculated value for each plane.
7718 If unset or 0, it will be sum of all matrix elements.
7719
7720 @item 0bias
7721 @item 1bias
7722 @item 2bias
7723 @item 3bias
7724 Set bias for each plane. This value is added to the result of the multiplication.
7725 Useful for making the overall image brighter or darker. Default is 0.0.
7726
7727 @item 0mode
7728 @item 1mode
7729 @item 2mode
7730 @item 3mode
7731 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7732 Default is @var{square}.
7733 @end table
7734
7735 @subsection Examples
7736
7737 @itemize
7738 @item
7739 Apply sharpen:
7740 @example
7741 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"
7742 @end example
7743
7744 @item
7745 Apply blur:
7746 @example
7747 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"
7748 @end example
7749
7750 @item
7751 Apply edge enhance:
7752 @example
7753 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"
7754 @end example
7755
7756 @item
7757 Apply edge detect:
7758 @example
7759 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"
7760 @end example
7761
7762 @item
7763 Apply laplacian edge detector which includes diagonals:
7764 @example
7765 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"
7766 @end example
7767
7768 @item
7769 Apply emboss:
7770 @example
7771 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"
7772 @end example
7773 @end itemize
7774
7775 @section convolve
7776
7777 Apply 2D convolution of video stream in frequency domain using second stream
7778 as impulse.
7779
7780 The filter accepts the following options:
7781
7782 @table @option
7783 @item planes
7784 Set which planes to process.
7785
7786 @item impulse
7787 Set which impulse video frames will be processed, can be @var{first}
7788 or @var{all}. Default is @var{all}.
7789 @end table
7790
7791 The @code{convolve} filter also supports the @ref{framesync} options.
7792
7793 @section copy
7794
7795 Copy the input video source unchanged to the output. This is mainly useful for
7796 testing purposes.
7797
7798 @anchor{coreimage}
7799 @section coreimage
7800 Video filtering on GPU using Apple's CoreImage API on OSX.
7801
7802 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7803 processed by video hardware. However, software-based OpenGL implementations
7804 exist which means there is no guarantee for hardware processing. It depends on
7805 the respective OSX.
7806
7807 There are many filters and image generators provided by Apple that come with a
7808 large variety of options. The filter has to be referenced by its name along
7809 with its options.
7810
7811 The coreimage filter accepts the following options:
7812 @table @option
7813 @item list_filters
7814 List all available filters and generators along with all their respective
7815 options as well as possible minimum and maximum values along with the default
7816 values.
7817 @example
7818 list_filters=true
7819 @end example
7820
7821 @item filter
7822 Specify all filters by their respective name and options.
7823 Use @var{list_filters} to determine all valid filter names and options.
7824 Numerical options are specified by a float value and are automatically clamped
7825 to their respective value range.  Vector and color options have to be specified
7826 by a list of space separated float values. Character escaping has to be done.
7827 A special option name @code{default} is available to use default options for a
7828 filter.
7829
7830 It is required to specify either @code{default} or at least one of the filter options.
7831 All omitted options are used with their default values.
7832 The syntax of the filter string is as follows:
7833 @example
7834 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7835 @end example
7836
7837 @item output_rect
7838 Specify a rectangle where the output of the filter chain is copied into the
7839 input image. It is given by a list of space separated float values:
7840 @example
7841 output_rect=x\ y\ width\ height
7842 @end example
7843 If not given, the output rectangle equals the dimensions of the input image.
7844 The output rectangle is automatically cropped at the borders of the input
7845 image. Negative values are valid for each component.
7846 @example
7847 output_rect=25\ 25\ 100\ 100
7848 @end example
7849 @end table
7850
7851 Several filters can be chained for successive processing without GPU-HOST
7852 transfers allowing for fast processing of complex filter chains.
7853 Currently, only filters with zero (generators) or exactly one (filters) input
7854 image and one output image are supported. Also, transition filters are not yet
7855 usable as intended.
7856
7857 Some filters generate output images with additional padding depending on the
7858 respective filter kernel. The padding is automatically removed to ensure the
7859 filter output has the same size as the input image.
7860
7861 For image generators, the size of the output image is determined by the
7862 previous output image of the filter chain or the input image of the whole
7863 filterchain, respectively. The generators do not use the pixel information of
7864 this image to generate their output. However, the generated output is
7865 blended onto this image, resulting in partial or complete coverage of the
7866 output image.
7867
7868 The @ref{coreimagesrc} video source can be used for generating input images
7869 which are directly fed into the filter chain. By using it, providing input
7870 images by another video source or an input video is not required.
7871
7872 @subsection Examples
7873
7874 @itemize
7875
7876 @item
7877 List all filters available:
7878 @example
7879 coreimage=list_filters=true
7880 @end example
7881
7882 @item
7883 Use the CIBoxBlur filter with default options to blur an image:
7884 @example
7885 coreimage=filter=CIBoxBlur@@default
7886 @end example
7887
7888 @item
7889 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
7890 its center at 100x100 and a radius of 50 pixels:
7891 @example
7892 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
7893 @end example
7894
7895 @item
7896 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
7897 given as complete and escaped command-line for Apple's standard bash shell:
7898 @example
7899 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
7900 @end example
7901 @end itemize
7902
7903 @section cover_rect
7904
7905 Cover a rectangular object
7906
7907 It accepts the following options:
7908
7909 @table @option
7910 @item cover
7911 Filepath of the optional cover image, needs to be in yuv420.
7912
7913 @item mode
7914 Set covering mode.
7915
7916 It accepts the following values:
7917 @table @samp
7918 @item cover
7919 cover it by the supplied image
7920 @item blur
7921 cover it by interpolating the surrounding pixels
7922 @end table
7923
7924 Default value is @var{blur}.
7925 @end table
7926
7927 @subsection Examples
7928
7929 @itemize
7930 @item
7931 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
7932 @example
7933 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7934 @end example
7935 @end itemize
7936
7937 @section crop
7938
7939 Crop the input video to given dimensions.
7940
7941 It accepts the following parameters:
7942
7943 @table @option
7944 @item w, out_w
7945 The width of the output video. It defaults to @code{iw}.
7946 This expression is evaluated only once during the filter
7947 configuration, or when the @samp{w} or @samp{out_w} command is sent.
7948
7949 @item h, out_h
7950 The height of the output video. It defaults to @code{ih}.
7951 This expression is evaluated only once during the filter
7952 configuration, or when the @samp{h} or @samp{out_h} command is sent.
7953
7954 @item x
7955 The horizontal position, in the input video, of the left edge of the output
7956 video. It defaults to @code{(in_w-out_w)/2}.
7957 This expression is evaluated per-frame.
7958
7959 @item y
7960 The vertical position, in the input video, of the top edge of the output video.
7961 It defaults to @code{(in_h-out_h)/2}.
7962 This expression is evaluated per-frame.
7963
7964 @item keep_aspect
7965 If set to 1 will force the output display aspect ratio
7966 to be the same of the input, by changing the output sample aspect
7967 ratio. It defaults to 0.
7968
7969 @item exact
7970 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
7971 width/height/x/y as specified and will not be rounded to nearest smaller value.
7972 It defaults to 0.
7973 @end table
7974
7975 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
7976 expressions containing the following constants:
7977
7978 @table @option
7979 @item x
7980 @item y
7981 The computed values for @var{x} and @var{y}. They are evaluated for
7982 each new frame.
7983
7984 @item in_w
7985 @item in_h
7986 The input width and height.
7987
7988 @item iw
7989 @item ih
7990 These are the same as @var{in_w} and @var{in_h}.
7991
7992 @item out_w
7993 @item out_h
7994 The output (cropped) width and height.
7995
7996 @item ow
7997 @item oh
7998 These are the same as @var{out_w} and @var{out_h}.
7999
8000 @item a
8001 same as @var{iw} / @var{ih}
8002
8003 @item sar
8004 input sample aspect ratio
8005
8006 @item dar
8007 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8008
8009 @item hsub
8010 @item vsub
8011 horizontal and vertical chroma subsample values. For example for the
8012 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8013
8014 @item n
8015 The number of the input frame, starting from 0.
8016
8017 @item pos
8018 the position in the file of the input frame, NAN if unknown
8019
8020 @item t
8021 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8022
8023 @end table
8024
8025 The expression for @var{out_w} may depend on the value of @var{out_h},
8026 and the expression for @var{out_h} may depend on @var{out_w}, but they
8027 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8028 evaluated after @var{out_w} and @var{out_h}.
8029
8030 The @var{x} and @var{y} parameters specify the expressions for the
8031 position of the top-left corner of the output (non-cropped) area. They
8032 are evaluated for each frame. If the evaluated value is not valid, it
8033 is approximated to the nearest valid value.
8034
8035 The expression for @var{x} may depend on @var{y}, and the expression
8036 for @var{y} may depend on @var{x}.
8037
8038 @subsection Examples
8039
8040 @itemize
8041 @item
8042 Crop area with size 100x100 at position (12,34).
8043 @example
8044 crop=100:100:12:34
8045 @end example
8046
8047 Using named options, the example above becomes:
8048 @example
8049 crop=w=100:h=100:x=12:y=34
8050 @end example
8051
8052 @item
8053 Crop the central input area with size 100x100:
8054 @example
8055 crop=100:100
8056 @end example
8057
8058 @item
8059 Crop the central input area with size 2/3 of the input video:
8060 @example
8061 crop=2/3*in_w:2/3*in_h
8062 @end example
8063
8064 @item
8065 Crop the input video central square:
8066 @example
8067 crop=out_w=in_h
8068 crop=in_h
8069 @end example
8070
8071 @item
8072 Delimit the rectangle with the top-left corner placed at position
8073 100:100 and the right-bottom corner corresponding to the right-bottom
8074 corner of the input image.
8075 @example
8076 crop=in_w-100:in_h-100:100:100
8077 @end example
8078
8079 @item
8080 Crop 10 pixels from the left and right borders, and 20 pixels from
8081 the top and bottom borders
8082 @example
8083 crop=in_w-2*10:in_h-2*20
8084 @end example
8085
8086 @item
8087 Keep only the bottom right quarter of the input image:
8088 @example
8089 crop=in_w/2:in_h/2:in_w/2:in_h/2
8090 @end example
8091
8092 @item
8093 Crop height for getting Greek harmony:
8094 @example
8095 crop=in_w:1/PHI*in_w
8096 @end example
8097
8098 @item
8099 Apply trembling effect:
8100 @example
8101 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)
8102 @end example
8103
8104 @item
8105 Apply erratic camera effect depending on timestamp:
8106 @example
8107 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)"
8108 @end example
8109
8110 @item
8111 Set x depending on the value of y:
8112 @example
8113 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8114 @end example
8115 @end itemize
8116
8117 @subsection Commands
8118
8119 This filter supports the following commands:
8120 @table @option
8121 @item w, out_w
8122 @item h, out_h
8123 @item x
8124 @item y
8125 Set width/height of the output video and the horizontal/vertical position
8126 in the input video.
8127 The command accepts the same syntax of the corresponding option.
8128
8129 If the specified expression is not valid, it is kept at its current
8130 value.
8131 @end table
8132
8133 @section cropdetect
8134
8135 Auto-detect the crop size.
8136
8137 It calculates the necessary cropping parameters and prints the
8138 recommended parameters via the logging system. The detected dimensions
8139 correspond to the non-black area of the input video.
8140
8141 It accepts the following parameters:
8142
8143 @table @option
8144
8145 @item limit
8146 Set higher black value threshold, which can be optionally specified
8147 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8148 value greater to the set value is considered non-black. It defaults to 24.
8149 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8150 on the bitdepth of the pixel format.
8151
8152 @item round
8153 The value which the width/height should be divisible by. It defaults to
8154 16. The offset is automatically adjusted to center the video. Use 2 to
8155 get only even dimensions (needed for 4:2:2 video). 16 is best when
8156 encoding to most video codecs.
8157
8158 @item reset_count, reset
8159 Set the counter that determines after how many frames cropdetect will
8160 reset the previously detected largest video area and start over to
8161 detect the current optimal crop area. Default value is 0.
8162
8163 This can be useful when channel logos distort the video area. 0
8164 indicates 'never reset', and returns the largest area encountered during
8165 playback.
8166 @end table
8167
8168 @anchor{cue}
8169 @section cue
8170
8171 Delay video filtering until a given wallclock timestamp. The filter first
8172 passes on @option{preroll} amount of frames, then it buffers at most
8173 @option{buffer} amount of frames and waits for the cue. After reaching the cue
8174 it forwards the buffered frames and also any subsequent frames coming in its
8175 input.
8176
8177 The filter can be used synchronize the output of multiple ffmpeg processes for
8178 realtime output devices like decklink. By putting the delay in the filtering
8179 chain and pre-buffering frames the process can pass on data to output almost
8180 immediately after the target wallclock timestamp is reached.
8181
8182 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
8183 some use cases.
8184
8185 @table @option
8186
8187 @item cue
8188 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
8189
8190 @item preroll
8191 The duration of content to pass on as preroll expressed in seconds. Default is 0.
8192
8193 @item buffer
8194 The maximum duration of content to buffer before waiting for the cue expressed
8195 in seconds. Default is 0.
8196
8197 @end table
8198
8199 @anchor{curves}
8200 @section curves
8201
8202 Apply color adjustments using curves.
8203
8204 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
8205 component (red, green and blue) has its values defined by @var{N} key points
8206 tied from each other using a smooth curve. The x-axis represents the pixel
8207 values from the input frame, and the y-axis the new pixel values to be set for
8208 the output frame.
8209
8210 By default, a component curve is defined by the two points @var{(0;0)} and
8211 @var{(1;1)}. This creates a straight line where each original pixel value is
8212 "adjusted" to its own value, which means no change to the image.
8213
8214 The filter allows you to redefine these two points and add some more. A new
8215 curve (using a natural cubic spline interpolation) will be define to pass
8216 smoothly through all these new coordinates. The new defined points needs to be
8217 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
8218 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
8219 the vector spaces, the values will be clipped accordingly.
8220
8221 The filter accepts the following options:
8222
8223 @table @option
8224 @item preset
8225 Select one of the available color presets. This option can be used in addition
8226 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
8227 options takes priority on the preset values.
8228 Available presets are:
8229 @table @samp
8230 @item none
8231 @item color_negative
8232 @item cross_process
8233 @item darker
8234 @item increase_contrast
8235 @item lighter
8236 @item linear_contrast
8237 @item medium_contrast
8238 @item negative
8239 @item strong_contrast
8240 @item vintage
8241 @end table
8242 Default is @code{none}.
8243 @item master, m
8244 Set the master key points. These points will define a second pass mapping. It
8245 is sometimes called a "luminance" or "value" mapping. It can be used with
8246 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
8247 post-processing LUT.
8248 @item red, r
8249 Set the key points for the red component.
8250 @item green, g
8251 Set the key points for the green component.
8252 @item blue, b
8253 Set the key points for the blue component.
8254 @item all
8255 Set the key points for all components (not including master).
8256 Can be used in addition to the other key points component
8257 options. In this case, the unset component(s) will fallback on this
8258 @option{all} setting.
8259 @item psfile
8260 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
8261 @item plot
8262 Save Gnuplot script of the curves in specified file.
8263 @end table
8264
8265 To avoid some filtergraph syntax conflicts, each key points list need to be
8266 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
8267
8268 @subsection Examples
8269
8270 @itemize
8271 @item
8272 Increase slightly the middle level of blue:
8273 @example
8274 curves=blue='0/0 0.5/0.58 1/1'
8275 @end example
8276
8277 @item
8278 Vintage effect:
8279 @example
8280 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'
8281 @end example
8282 Here we obtain the following coordinates for each components:
8283 @table @var
8284 @item red
8285 @code{(0;0.11) (0.42;0.51) (1;0.95)}
8286 @item green
8287 @code{(0;0) (0.50;0.48) (1;1)}
8288 @item blue
8289 @code{(0;0.22) (0.49;0.44) (1;0.80)}
8290 @end table
8291
8292 @item
8293 The previous example can also be achieved with the associated built-in preset:
8294 @example
8295 curves=preset=vintage
8296 @end example
8297
8298 @item
8299 Or simply:
8300 @example
8301 curves=vintage
8302 @end example
8303
8304 @item
8305 Use a Photoshop preset and redefine the points of the green component:
8306 @example
8307 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
8308 @end example
8309
8310 @item
8311 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
8312 and @command{gnuplot}:
8313 @example
8314 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
8315 gnuplot -p /tmp/curves.plt
8316 @end example
8317 @end itemize
8318
8319 @section datascope
8320
8321 Video data analysis filter.
8322
8323 This filter shows hexadecimal pixel values of part of video.
8324
8325 The filter accepts the following options:
8326
8327 @table @option
8328 @item size, s
8329 Set output video size.
8330
8331 @item x
8332 Set x offset from where to pick pixels.
8333
8334 @item y
8335 Set y offset from where to pick pixels.
8336
8337 @item mode
8338 Set scope mode, can be one of the following:
8339 @table @samp
8340 @item mono
8341 Draw hexadecimal pixel values with white color on black background.
8342
8343 @item color
8344 Draw hexadecimal pixel values with input video pixel color on black
8345 background.
8346
8347 @item color2
8348 Draw hexadecimal pixel values on color background picked from input video,
8349 the text color is picked in such way so its always visible.
8350 @end table
8351
8352 @item axis
8353 Draw rows and columns numbers on left and top of video.
8354
8355 @item opacity
8356 Set background opacity.
8357 @end table
8358
8359 @section dctdnoiz
8360
8361 Denoise frames using 2D DCT (frequency domain filtering).
8362
8363 This filter is not designed for real time.
8364
8365 The filter accepts the following options:
8366
8367 @table @option
8368 @item sigma, s
8369 Set the noise sigma constant.
8370
8371 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
8372 coefficient (absolute value) below this threshold with be dropped.
8373
8374 If you need a more advanced filtering, see @option{expr}.
8375
8376 Default is @code{0}.
8377
8378 @item overlap
8379 Set number overlapping pixels for each block. Since the filter can be slow, you
8380 may want to reduce this value, at the cost of a less effective filter and the
8381 risk of various artefacts.
8382
8383 If the overlapping value doesn't permit processing the whole input width or
8384 height, a warning will be displayed and according borders won't be denoised.
8385
8386 Default value is @var{blocksize}-1, which is the best possible setting.
8387
8388 @item expr, e
8389 Set the coefficient factor expression.
8390
8391 For each coefficient of a DCT block, this expression will be evaluated as a
8392 multiplier value for the coefficient.
8393
8394 If this is option is set, the @option{sigma} option will be ignored.
8395
8396 The absolute value of the coefficient can be accessed through the @var{c}
8397 variable.
8398
8399 @item n
8400 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8401 @var{blocksize}, which is the width and height of the processed blocks.
8402
8403 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8404 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8405 on the speed processing. Also, a larger block size does not necessarily means a
8406 better de-noising.
8407 @end table
8408
8409 @subsection Examples
8410
8411 Apply a denoise with a @option{sigma} of @code{4.5}:
8412 @example
8413 dctdnoiz=4.5
8414 @end example
8415
8416 The same operation can be achieved using the expression system:
8417 @example
8418 dctdnoiz=e='gte(c, 4.5*3)'
8419 @end example
8420
8421 Violent denoise using a block size of @code{16x16}:
8422 @example
8423 dctdnoiz=15:n=4
8424 @end example
8425
8426 @section deband
8427
8428 Remove banding artifacts from input video.
8429 It works by replacing banded pixels with average value of referenced pixels.
8430
8431 The filter accepts the following options:
8432
8433 @table @option
8434 @item 1thr
8435 @item 2thr
8436 @item 3thr
8437 @item 4thr
8438 Set banding detection threshold for each plane. Default is 0.02.
8439 Valid range is 0.00003 to 0.5.
8440 If difference between current pixel and reference pixel is less than threshold,
8441 it will be considered as banded.
8442
8443 @item range, r
8444 Banding detection range in pixels. Default is 16. If positive, random number
8445 in range 0 to set value will be used. If negative, exact absolute value
8446 will be used.
8447 The range defines square of four pixels around current pixel.
8448
8449 @item direction, d
8450 Set direction in radians from which four pixel will be compared. If positive,
8451 random direction from 0 to set direction will be picked. If negative, exact of
8452 absolute value will be picked. For example direction 0, -PI or -2*PI radians
8453 will pick only pixels on same row and -PI/2 will pick only pixels on same
8454 column.
8455
8456 @item blur, b
8457 If enabled, current pixel is compared with average value of all four
8458 surrounding pixels. The default is enabled. If disabled current pixel is
8459 compared with all four surrounding pixels. The pixel is considered banded
8460 if only all four differences with surrounding pixels are less than threshold.
8461
8462 @item coupling, c
8463 If enabled, current pixel is changed if and only if all pixel components are banded,
8464 e.g. banding detection threshold is triggered for all color components.
8465 The default is disabled.
8466 @end table
8467
8468 @section deblock
8469
8470 Remove blocking artifacts from input video.
8471
8472 The filter accepts the following options:
8473
8474 @table @option
8475 @item filter
8476 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
8477 This controls what kind of deblocking is applied.
8478
8479 @item block
8480 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
8481
8482 @item alpha
8483 @item beta
8484 @item gamma
8485 @item delta
8486 Set blocking detection thresholds. Allowed range is 0 to 1.
8487 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
8488 Using higher threshold gives more deblocking strength.
8489 Setting @var{alpha} controls threshold detection at exact edge of block.
8490 Remaining options controls threshold detection near the edge. Each one for
8491 below/above or left/right. Setting any of those to @var{0} disables
8492 deblocking.
8493
8494 @item planes
8495 Set planes to filter. Default is to filter all available planes.
8496 @end table
8497
8498 @subsection Examples
8499
8500 @itemize
8501 @item
8502 Deblock using weak filter and block size of 4 pixels.
8503 @example
8504 deblock=filter=weak:block=4
8505 @end example
8506
8507 @item
8508 Deblock using strong filter, block size of 4 pixels and custom thresholds for
8509 deblocking more edges.
8510 @example
8511 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
8512 @end example
8513
8514 @item
8515 Similar as above, but filter only first plane.
8516 @example
8517 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
8518 @end example
8519
8520 @item
8521 Similar as above, but filter only second and third plane.
8522 @example
8523 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
8524 @end example
8525 @end itemize
8526
8527 @anchor{decimate}
8528 @section decimate
8529
8530 Drop duplicated frames at regular intervals.
8531
8532 The filter accepts the following options:
8533
8534 @table @option
8535 @item cycle
8536 Set the number of frames from which one will be dropped. Setting this to
8537 @var{N} means one frame in every batch of @var{N} frames will be dropped.
8538 Default is @code{5}.
8539
8540 @item dupthresh
8541 Set the threshold for duplicate detection. If the difference metric for a frame
8542 is less than or equal to this value, then it is declared as duplicate. Default
8543 is @code{1.1}
8544
8545 @item scthresh
8546 Set scene change threshold. Default is @code{15}.
8547
8548 @item blockx
8549 @item blocky
8550 Set the size of the x and y-axis blocks used during metric calculations.
8551 Larger blocks give better noise suppression, but also give worse detection of
8552 small movements. Must be a power of two. Default is @code{32}.
8553
8554 @item ppsrc
8555 Mark main input as a pre-processed input and activate clean source input
8556 stream. This allows the input to be pre-processed with various filters to help
8557 the metrics calculation while keeping the frame selection lossless. When set to
8558 @code{1}, the first stream is for the pre-processed input, and the second
8559 stream is the clean source from where the kept frames are chosen. Default is
8560 @code{0}.
8561
8562 @item chroma
8563 Set whether or not chroma is considered in the metric calculations. Default is
8564 @code{1}.
8565 @end table
8566
8567 @section deconvolve
8568
8569 Apply 2D deconvolution of video stream in frequency domain using second stream
8570 as impulse.
8571
8572 The filter accepts the following options:
8573
8574 @table @option
8575 @item planes
8576 Set which planes to process.
8577
8578 @item impulse
8579 Set which impulse video frames will be processed, can be @var{first}
8580 or @var{all}. Default is @var{all}.
8581
8582 @item noise
8583 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
8584 and height are not same and not power of 2 or if stream prior to convolving
8585 had noise.
8586 @end table
8587
8588 The @code{deconvolve} filter also supports the @ref{framesync} options.
8589
8590 @section dedot
8591
8592 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
8593
8594 It accepts the following options:
8595
8596 @table @option
8597 @item m
8598 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
8599 @var{rainbows} for cross-color reduction.
8600
8601 @item lt
8602 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
8603
8604 @item tl
8605 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
8606
8607 @item tc
8608 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
8609
8610 @item ct
8611 Set temporal chroma threshold. Lower values increases reduction of cross-color.
8612 @end table
8613
8614 @section deflate
8615
8616 Apply deflate effect to the video.
8617
8618 This filter replaces the pixel by the local(3x3) average by taking into account
8619 only values lower than the pixel.
8620
8621 It accepts the following options:
8622
8623 @table @option
8624 @item threshold0
8625 @item threshold1
8626 @item threshold2
8627 @item threshold3
8628 Limit the maximum change for each plane, default is 65535.
8629 If 0, plane will remain unchanged.
8630 @end table
8631
8632 @section deflicker
8633
8634 Remove temporal frame luminance variations.
8635
8636 It accepts the following options:
8637
8638 @table @option
8639 @item size, s
8640 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
8641
8642 @item mode, m
8643 Set averaging mode to smooth temporal luminance variations.
8644
8645 Available values are:
8646 @table @samp
8647 @item am
8648 Arithmetic mean
8649
8650 @item gm
8651 Geometric mean
8652
8653 @item hm
8654 Harmonic mean
8655
8656 @item qm
8657 Quadratic mean
8658
8659 @item cm
8660 Cubic mean
8661
8662 @item pm
8663 Power mean
8664
8665 @item median
8666 Median
8667 @end table
8668
8669 @item bypass
8670 Do not actually modify frame. Useful when one only wants metadata.
8671 @end table
8672
8673 @section dejudder
8674
8675 Remove judder produced by partially interlaced telecined content.
8676
8677 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
8678 source was partially telecined content then the output of @code{pullup,dejudder}
8679 will have a variable frame rate. May change the recorded frame rate of the
8680 container. Aside from that change, this filter will not affect constant frame
8681 rate video.
8682
8683 The option available in this filter is:
8684 @table @option
8685
8686 @item cycle
8687 Specify the length of the window over which the judder repeats.
8688
8689 Accepts any integer greater than 1. Useful values are:
8690 @table @samp
8691
8692 @item 4
8693 If the original was telecined from 24 to 30 fps (Film to NTSC).
8694
8695 @item 5
8696 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8697
8698 @item 20
8699 If a mixture of the two.
8700 @end table
8701
8702 The default is @samp{4}.
8703 @end table
8704
8705 @section delogo
8706
8707 Suppress a TV station logo by a simple interpolation of the surrounding
8708 pixels. Just set a rectangle covering the logo and watch it disappear
8709 (and sometimes something even uglier appear - your mileage may vary).
8710
8711 It accepts the following parameters:
8712 @table @option
8713
8714 @item x
8715 @item y
8716 Specify the top left corner coordinates of the logo. They must be
8717 specified.
8718
8719 @item w
8720 @item h
8721 Specify the width and height of the logo to clear. They must be
8722 specified.
8723
8724 @item band, t
8725 Specify the thickness of the fuzzy edge of the rectangle (added to
8726 @var{w} and @var{h}). The default value is 1. This option is
8727 deprecated, setting higher values should no longer be necessary and
8728 is not recommended.
8729
8730 @item show
8731 When set to 1, a green rectangle is drawn on the screen to simplify
8732 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8733 The default value is 0.
8734
8735 The rectangle is drawn on the outermost pixels which will be (partly)
8736 replaced with interpolated values. The values of the next pixels
8737 immediately outside this rectangle in each direction will be used to
8738 compute the interpolated pixel values inside the rectangle.
8739
8740 @end table
8741
8742 @subsection Examples
8743
8744 @itemize
8745 @item
8746 Set a rectangle covering the area with top left corner coordinates 0,0
8747 and size 100x77, and a band of size 10:
8748 @example
8749 delogo=x=0:y=0:w=100:h=77:band=10
8750 @end example
8751
8752 @end itemize
8753
8754 @section derain
8755
8756 Remove the rain in the input image/video by applying the derain methods based on
8757 convolutional neural networks. Supported models:
8758
8759 @itemize
8760 @item
8761 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
8762 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
8763 @end itemize
8764
8765 Training as well as model generation scripts are provided in
8766 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
8767
8768 Native model files (.model) can be generated from TensorFlow model
8769 files (.pb) by using tools/python/convert.py
8770
8771 The filter accepts the following options:
8772
8773 @table @option
8774 @item filter_type
8775 Specify which filter to use. This option accepts the following values:
8776
8777 @table @samp
8778 @item derain
8779 Derain filter. To conduct derain filter, you need to use a derain model.
8780
8781 @item dehaze
8782 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
8783 @end table
8784 Default value is @samp{derain}.
8785
8786 @item dnn_backend
8787 Specify which DNN backend to use for model loading and execution. This option accepts
8788 the following values:
8789
8790 @table @samp
8791 @item native
8792 Native implementation of DNN loading and execution.
8793
8794 @item tensorflow
8795 TensorFlow backend. To enable this backend you
8796 need to install the TensorFlow for C library (see
8797 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
8798 @code{--enable-libtensorflow}
8799 @end table
8800 Default value is @samp{native}.
8801
8802 @item model
8803 Set path to model file specifying network architecture and its parameters.
8804 Note that different backends use different file formats. TensorFlow and native
8805 backend can load files for only its format.
8806 @end table
8807
8808 @section deshake
8809
8810 Attempt to fix small changes in horizontal and/or vertical shift. This
8811 filter helps remove camera shake from hand-holding a camera, bumping a
8812 tripod, moving on a vehicle, etc.
8813
8814 The filter accepts the following options:
8815
8816 @table @option
8817
8818 @item x
8819 @item y
8820 @item w
8821 @item h
8822 Specify a rectangular area where to limit the search for motion
8823 vectors.
8824 If desired the search for motion vectors can be limited to a
8825 rectangular area of the frame defined by its top left corner, width
8826 and height. These parameters have the same meaning as the drawbox
8827 filter which can be used to visualise the position of the bounding
8828 box.
8829
8830 This is useful when simultaneous movement of subjects within the frame
8831 might be confused for camera motion by the motion vector search.
8832
8833 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8834 then the full frame is used. This allows later options to be set
8835 without specifying the bounding box for the motion vector search.
8836
8837 Default - search the whole frame.
8838
8839 @item rx
8840 @item ry
8841 Specify the maximum extent of movement in x and y directions in the
8842 range 0-64 pixels. Default 16.
8843
8844 @item edge
8845 Specify how to generate pixels to fill blanks at the edge of the
8846 frame. Available values are:
8847 @table @samp
8848 @item blank, 0
8849 Fill zeroes at blank locations
8850 @item original, 1
8851 Original image at blank locations
8852 @item clamp, 2
8853 Extruded edge value at blank locations
8854 @item mirror, 3
8855 Mirrored edge at blank locations
8856 @end table
8857 Default value is @samp{mirror}.
8858
8859 @item blocksize
8860 Specify the blocksize to use for motion search. Range 4-128 pixels,
8861 default 8.
8862
8863 @item contrast
8864 Specify the contrast threshold for blocks. Only blocks with more than
8865 the specified contrast (difference between darkest and lightest
8866 pixels) will be considered. Range 1-255, default 125.
8867
8868 @item search
8869 Specify the search strategy. Available values are:
8870 @table @samp
8871 @item exhaustive, 0
8872 Set exhaustive search
8873 @item less, 1
8874 Set less exhaustive search.
8875 @end table
8876 Default value is @samp{exhaustive}.
8877
8878 @item filename
8879 If set then a detailed log of the motion search is written to the
8880 specified file.
8881
8882 @end table
8883
8884 @section despill
8885
8886 Remove unwanted contamination of foreground colors, caused by reflected color of
8887 greenscreen or bluescreen.
8888
8889 This filter accepts the following options:
8890
8891 @table @option
8892 @item type
8893 Set what type of despill to use.
8894
8895 @item mix
8896 Set how spillmap will be generated.
8897
8898 @item expand
8899 Set how much to get rid of still remaining spill.
8900
8901 @item red
8902 Controls amount of red in spill area.
8903
8904 @item green
8905 Controls amount of green in spill area.
8906 Should be -1 for greenscreen.
8907
8908 @item blue
8909 Controls amount of blue in spill area.
8910 Should be -1 for bluescreen.
8911
8912 @item brightness
8913 Controls brightness of spill area, preserving colors.
8914
8915 @item alpha
8916 Modify alpha from generated spillmap.
8917 @end table
8918
8919 @section detelecine
8920
8921 Apply an exact inverse of the telecine operation. It requires a predefined
8922 pattern specified using the pattern option which must be the same as that passed
8923 to the telecine filter.
8924
8925 This filter accepts the following options:
8926
8927 @table @option
8928 @item first_field
8929 @table @samp
8930 @item top, t
8931 top field first
8932 @item bottom, b
8933 bottom field first
8934 The default value is @code{top}.
8935 @end table
8936
8937 @item pattern
8938 A string of numbers representing the pulldown pattern you wish to apply.
8939 The default value is @code{23}.
8940
8941 @item start_frame
8942 A number representing position of the first frame with respect to the telecine
8943 pattern. This is to be used if the stream is cut. The default value is @code{0}.
8944 @end table
8945
8946 @section dilation
8947
8948 Apply dilation effect to the video.
8949
8950 This filter replaces the pixel by the local(3x3) maximum.
8951
8952 It accepts the following options:
8953
8954 @table @option
8955 @item threshold0
8956 @item threshold1
8957 @item threshold2
8958 @item threshold3
8959 Limit the maximum change for each plane, default is 65535.
8960 If 0, plane will remain unchanged.
8961
8962 @item coordinates
8963 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
8964 pixels are used.
8965
8966 Flags to local 3x3 coordinates maps like this:
8967
8968     1 2 3
8969     4   5
8970     6 7 8
8971 @end table
8972
8973 @section displace
8974
8975 Displace pixels as indicated by second and third input stream.
8976
8977 It takes three input streams and outputs one stream, the first input is the
8978 source, and second and third input are displacement maps.
8979
8980 The second input specifies how much to displace pixels along the
8981 x-axis, while the third input specifies how much to displace pixels
8982 along the y-axis.
8983 If one of displacement map streams terminates, last frame from that
8984 displacement map will be used.
8985
8986 Note that once generated, displacements maps can be reused over and over again.
8987
8988 A description of the accepted options follows.
8989
8990 @table @option
8991 @item edge
8992 Set displace behavior for pixels that are out of range.
8993
8994 Available values are:
8995 @table @samp
8996 @item blank
8997 Missing pixels are replaced by black pixels.
8998
8999 @item smear
9000 Adjacent pixels will spread out to replace missing pixels.
9001
9002 @item wrap
9003 Out of range pixels are wrapped so they point to pixels of other side.
9004
9005 @item mirror
9006 Out of range pixels will be replaced with mirrored pixels.
9007 @end table
9008 Default is @samp{smear}.
9009
9010 @end table
9011
9012 @subsection Examples
9013
9014 @itemize
9015 @item
9016 Add ripple effect to rgb input of video size hd720:
9017 @example
9018 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
9019 @end example
9020
9021 @item
9022 Add wave effect to rgb input of video size hd720:
9023 @example
9024 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
9025 @end example
9026 @end itemize
9027
9028 @section dnn_processing
9029
9030 Do image processing with deep neural networks. Currently only AVFrame with RGB24
9031 and BGR24 are supported, more formats will be added later.
9032
9033 The filter accepts the following options:
9034
9035 @table @option
9036 @item dnn_backend
9037 Specify which DNN backend to use for model loading and execution. This option accepts
9038 the following values:
9039
9040 @table @samp
9041 @item native
9042 Native implementation of DNN loading and execution.
9043
9044 @item tensorflow
9045 TensorFlow backend. To enable this backend you
9046 need to install the TensorFlow for C library (see
9047 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9048 @code{--enable-libtensorflow}
9049 @end table
9050
9051 Default value is @samp{native}.
9052
9053 @item model
9054 Set path to model file specifying network architecture and its parameters.
9055 Note that different backends use different file formats. TensorFlow and native
9056 backend can load files for only its format.
9057
9058 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9059
9060 @item input
9061 Set the input name of the dnn network.
9062
9063 @item output
9064 Set the output name of the dnn network.
9065
9066 @item fmt
9067 Set the pixel format for the Frame. Allowed values are @code{AV_PIX_FMT_RGB24}, and @code{AV_PIX_FMT_BGR24}.
9068 Default value is @code{AV_PIX_FMT_RGB24}.
9069
9070 @end table
9071
9072 @section drawbox
9073
9074 Draw a colored box on the input image.
9075
9076 It accepts the following parameters:
9077
9078 @table @option
9079 @item x
9080 @item y
9081 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
9082
9083 @item width, w
9084 @item height, h
9085 The expressions which specify the width and height of the box; if 0 they are interpreted as
9086 the input width and height. It defaults to 0.
9087
9088 @item color, c
9089 Specify the color of the box to write. For the general syntax of this option,
9090 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9091 value @code{invert} is used, the box edge color is the same as the
9092 video with inverted luma.
9093
9094 @item thickness, t
9095 The expression which sets the thickness of the box edge.
9096 A value of @code{fill} will create a filled box. Default value is @code{3}.
9097
9098 See below for the list of accepted constants.
9099
9100 @item replace
9101 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
9102 will overwrite the video's color and alpha pixels.
9103 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
9104 @end table
9105
9106 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9107 following constants:
9108
9109 @table @option
9110 @item dar
9111 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9112
9113 @item hsub
9114 @item vsub
9115 horizontal and vertical chroma subsample values. For example for the
9116 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9117
9118 @item in_h, ih
9119 @item in_w, iw
9120 The input width and height.
9121
9122 @item sar
9123 The input sample aspect ratio.
9124
9125 @item x
9126 @item y
9127 The x and y offset coordinates where the box is drawn.
9128
9129 @item w
9130 @item h
9131 The width and height of the drawn box.
9132
9133 @item t
9134 The thickness of the drawn box.
9135
9136 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9137 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9138
9139 @end table
9140
9141 @subsection Examples
9142
9143 @itemize
9144 @item
9145 Draw a black box around the edge of the input image:
9146 @example
9147 drawbox
9148 @end example
9149
9150 @item
9151 Draw a box with color red and an opacity of 50%:
9152 @example
9153 drawbox=10:20:200:60:red@@0.5
9154 @end example
9155
9156 The previous example can be specified as:
9157 @example
9158 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
9159 @end example
9160
9161 @item
9162 Fill the box with pink color:
9163 @example
9164 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
9165 @end example
9166
9167 @item
9168 Draw a 2-pixel red 2.40:1 mask:
9169 @example
9170 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
9171 @end example
9172 @end itemize
9173
9174 @subsection Commands
9175 This filter supports same commands as options.
9176 The command accepts the same syntax of the corresponding option.
9177
9178 If the specified expression is not valid, it is kept at its current
9179 value.
9180
9181 @anchor{drawgraph}
9182 @section drawgraph
9183 Draw a graph using input video metadata.
9184
9185 It accepts the following parameters:
9186
9187 @table @option
9188 @item m1
9189 Set 1st frame metadata key from which metadata values will be used to draw a graph.
9190
9191 @item fg1
9192 Set 1st foreground color expression.
9193
9194 @item m2
9195 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
9196
9197 @item fg2
9198 Set 2nd foreground color expression.
9199
9200 @item m3
9201 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
9202
9203 @item fg3
9204 Set 3rd foreground color expression.
9205
9206 @item m4
9207 Set 4th frame metadata key from which metadata values will be used to draw a graph.
9208
9209 @item fg4
9210 Set 4th foreground color expression.
9211
9212 @item min
9213 Set minimal value of metadata value.
9214
9215 @item max
9216 Set maximal value of metadata value.
9217
9218 @item bg
9219 Set graph background color. Default is white.
9220
9221 @item mode
9222 Set graph mode.
9223
9224 Available values for mode is:
9225 @table @samp
9226 @item bar
9227 @item dot
9228 @item line
9229 @end table
9230
9231 Default is @code{line}.
9232
9233 @item slide
9234 Set slide mode.
9235
9236 Available values for slide is:
9237 @table @samp
9238 @item frame
9239 Draw new frame when right border is reached.
9240
9241 @item replace
9242 Replace old columns with new ones.
9243
9244 @item scroll
9245 Scroll from right to left.
9246
9247 @item rscroll
9248 Scroll from left to right.
9249
9250 @item picture
9251 Draw single picture.
9252 @end table
9253
9254 Default is @code{frame}.
9255
9256 @item size
9257 Set size of graph video. For the syntax of this option, check the
9258 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9259 The default value is @code{900x256}.
9260
9261 The foreground color expressions can use the following variables:
9262 @table @option
9263 @item MIN
9264 Minimal value of metadata value.
9265
9266 @item MAX
9267 Maximal value of metadata value.
9268
9269 @item VAL
9270 Current metadata key value.
9271 @end table
9272
9273 The color is defined as 0xAABBGGRR.
9274 @end table
9275
9276 Example using metadata from @ref{signalstats} filter:
9277 @example
9278 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
9279 @end example
9280
9281 Example using metadata from @ref{ebur128} filter:
9282 @example
9283 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
9284 @end example
9285
9286 @section drawgrid
9287
9288 Draw a grid on the input image.
9289
9290 It accepts the following parameters:
9291
9292 @table @option
9293 @item x
9294 @item y
9295 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
9296
9297 @item width, w
9298 @item height, h
9299 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
9300 input width and height, respectively, minus @code{thickness}, so image gets
9301 framed. Default to 0.
9302
9303 @item color, c
9304 Specify the color of the grid. For the general syntax of this option,
9305 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9306 value @code{invert} is used, the grid color is the same as the
9307 video with inverted luma.
9308
9309 @item thickness, t
9310 The expression which sets the thickness of the grid line. Default value is @code{1}.
9311
9312 See below for the list of accepted constants.
9313
9314 @item replace
9315 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
9316 will overwrite the video's color and alpha pixels.
9317 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
9318 @end table
9319
9320 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9321 following constants:
9322
9323 @table @option
9324 @item dar
9325 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9326
9327 @item hsub
9328 @item vsub
9329 horizontal and vertical chroma subsample values. For example for the
9330 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9331
9332 @item in_h, ih
9333 @item in_w, iw
9334 The input grid cell width and height.
9335
9336 @item sar
9337 The input sample aspect ratio.
9338
9339 @item x
9340 @item y
9341 The x and y coordinates of some point of grid intersection (meant to configure offset).
9342
9343 @item w
9344 @item h
9345 The width and height of the drawn cell.
9346
9347 @item t
9348 The thickness of the drawn cell.
9349
9350 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9351 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9352
9353 @end table
9354
9355 @subsection Examples
9356
9357 @itemize
9358 @item
9359 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
9360 @example
9361 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
9362 @end example
9363
9364 @item
9365 Draw a white 3x3 grid with an opacity of 50%:
9366 @example
9367 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
9368 @end example
9369 @end itemize
9370
9371 @subsection Commands
9372 This filter supports same commands as options.
9373 The command accepts the same syntax of the corresponding option.
9374
9375 If the specified expression is not valid, it is kept at its current
9376 value.
9377
9378 @anchor{drawtext}
9379 @section drawtext
9380
9381 Draw a text string or text from a specified file on top of a video, using the
9382 libfreetype library.
9383
9384 To enable compilation of this filter, you need to configure FFmpeg with
9385 @code{--enable-libfreetype}.
9386 To enable default font fallback and the @var{font} option you need to
9387 configure FFmpeg with @code{--enable-libfontconfig}.
9388 To enable the @var{text_shaping} option, you need to configure FFmpeg with
9389 @code{--enable-libfribidi}.
9390
9391 @subsection Syntax
9392
9393 It accepts the following parameters:
9394
9395 @table @option
9396
9397 @item box
9398 Used to draw a box around text using the background color.
9399 The value must be either 1 (enable) or 0 (disable).
9400 The default value of @var{box} is 0.
9401
9402 @item boxborderw
9403 Set the width of the border to be drawn around the box using @var{boxcolor}.
9404 The default value of @var{boxborderw} is 0.
9405
9406 @item boxcolor
9407 The color to be used for drawing box around text. For the syntax of this
9408 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9409
9410 The default value of @var{boxcolor} is "white".
9411
9412 @item line_spacing
9413 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
9414 The default value of @var{line_spacing} is 0.
9415
9416 @item borderw
9417 Set the width of the border to be drawn around the text using @var{bordercolor}.
9418 The default value of @var{borderw} is 0.
9419
9420 @item bordercolor
9421 Set the color to be used for drawing border around text. For the syntax of this
9422 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9423
9424 The default value of @var{bordercolor} is "black".
9425
9426 @item expansion
9427 Select how the @var{text} is expanded. Can be either @code{none},
9428 @code{strftime} (deprecated) or
9429 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
9430 below for details.
9431
9432 @item basetime
9433 Set a start time for the count. Value is in microseconds. Only applied
9434 in the deprecated strftime expansion mode. To emulate in normal expansion
9435 mode use the @code{pts} function, supplying the start time (in seconds)
9436 as the second argument.
9437
9438 @item fix_bounds
9439 If true, check and fix text coords to avoid clipping.
9440
9441 @item fontcolor
9442 The color to be used for drawing fonts. For the syntax of this option, check
9443 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9444
9445 The default value of @var{fontcolor} is "black".
9446
9447 @item fontcolor_expr
9448 String which is expanded the same way as @var{text} to obtain dynamic
9449 @var{fontcolor} value. By default this option has empty value and is not
9450 processed. When this option is set, it overrides @var{fontcolor} option.
9451
9452 @item font
9453 The font family to be used for drawing text. By default Sans.
9454
9455 @item fontfile
9456 The font file to be used for drawing text. The path must be included.
9457 This parameter is mandatory if the fontconfig support is disabled.
9458
9459 @item alpha
9460 Draw the text applying alpha blending. The value can
9461 be a number between 0.0 and 1.0.
9462 The expression accepts the same variables @var{x, y} as well.
9463 The default value is 1.
9464 Please see @var{fontcolor_expr}.
9465
9466 @item fontsize
9467 The font size to be used for drawing text.
9468 The default value of @var{fontsize} is 16.
9469
9470 @item text_shaping
9471 If set to 1, attempt to shape the text (for example, reverse the order of
9472 right-to-left text and join Arabic characters) before drawing it.
9473 Otherwise, just draw the text exactly as given.
9474 By default 1 (if supported).
9475
9476 @item ft_load_flags
9477 The flags to be used for loading the fonts.
9478
9479 The flags map the corresponding flags supported by libfreetype, and are
9480 a combination of the following values:
9481 @table @var
9482 @item default
9483 @item no_scale
9484 @item no_hinting
9485 @item render
9486 @item no_bitmap
9487 @item vertical_layout
9488 @item force_autohint
9489 @item crop_bitmap
9490 @item pedantic
9491 @item ignore_global_advance_width
9492 @item no_recurse
9493 @item ignore_transform
9494 @item monochrome
9495 @item linear_design
9496 @item no_autohint
9497 @end table
9498
9499 Default value is "default".
9500
9501 For more information consult the documentation for the FT_LOAD_*
9502 libfreetype flags.
9503
9504 @item shadowcolor
9505 The color to be used for drawing a shadow behind the drawn text. For the
9506 syntax of this option, check the @ref{color syntax,,"Color" section in the
9507 ffmpeg-utils manual,ffmpeg-utils}.
9508
9509 The default value of @var{shadowcolor} is "black".
9510
9511 @item shadowx
9512 @item shadowy
9513 The x and y offsets for the text shadow position with respect to the
9514 position of the text. They can be either positive or negative
9515 values. The default value for both is "0".
9516
9517 @item start_number
9518 The starting frame number for the n/frame_num variable. The default value
9519 is "0".
9520
9521 @item tabsize
9522 The size in number of spaces to use for rendering the tab.
9523 Default value is 4.
9524
9525 @item timecode
9526 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
9527 format. It can be used with or without text parameter. @var{timecode_rate}
9528 option must be specified.
9529
9530 @item timecode_rate, rate, r
9531 Set the timecode frame rate (timecode only). Value will be rounded to nearest
9532 integer. Minimum value is "1".
9533 Drop-frame timecode is supported for frame rates 30 & 60.
9534
9535 @item tc24hmax
9536 If set to 1, the output of the timecode option will wrap around at 24 hours.
9537 Default is 0 (disabled).
9538
9539 @item text
9540 The text string to be drawn. The text must be a sequence of UTF-8
9541 encoded characters.
9542 This parameter is mandatory if no file is specified with the parameter
9543 @var{textfile}.
9544
9545 @item textfile
9546 A text file containing text to be drawn. The text must be a sequence
9547 of UTF-8 encoded characters.
9548
9549 This parameter is mandatory if no text string is specified with the
9550 parameter @var{text}.
9551
9552 If both @var{text} and @var{textfile} are specified, an error is thrown.
9553
9554 @item reload
9555 If set to 1, the @var{textfile} will be reloaded before each frame.
9556 Be sure to update it atomically, or it may be read partially, or even fail.
9557
9558 @item x
9559 @item y
9560 The expressions which specify the offsets where text will be drawn
9561 within the video frame. They are relative to the top/left border of the
9562 output image.
9563
9564 The default value of @var{x} and @var{y} is "0".
9565
9566 See below for the list of accepted constants and functions.
9567 @end table
9568
9569 The parameters for @var{x} and @var{y} are expressions containing the
9570 following constants and functions:
9571
9572 @table @option
9573 @item dar
9574 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
9575
9576 @item hsub
9577 @item vsub
9578 horizontal and vertical chroma subsample values. For example for the
9579 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9580
9581 @item line_h, lh
9582 the height of each text line
9583
9584 @item main_h, h, H
9585 the input height
9586
9587 @item main_w, w, W
9588 the input width
9589
9590 @item max_glyph_a, ascent
9591 the maximum distance from the baseline to the highest/upper grid
9592 coordinate used to place a glyph outline point, for all the rendered
9593 glyphs.
9594 It is a positive value, due to the grid's orientation with the Y axis
9595 upwards.
9596
9597 @item max_glyph_d, descent
9598 the maximum distance from the baseline to the lowest grid coordinate
9599 used to place a glyph outline point, for all the rendered glyphs.
9600 This is a negative value, due to the grid's orientation, with the Y axis
9601 upwards.
9602
9603 @item max_glyph_h
9604 maximum glyph height, that is the maximum height for all the glyphs
9605 contained in the rendered text, it is equivalent to @var{ascent} -
9606 @var{descent}.
9607
9608 @item max_glyph_w
9609 maximum glyph width, that is the maximum width for all the glyphs
9610 contained in the rendered text
9611
9612 @item n
9613 the number of input frame, starting from 0
9614
9615 @item rand(min, max)
9616 return a random number included between @var{min} and @var{max}
9617
9618 @item sar
9619 The input sample aspect ratio.
9620
9621 @item t
9622 timestamp expressed in seconds, NAN if the input timestamp is unknown
9623
9624 @item text_h, th
9625 the height of the rendered text
9626
9627 @item text_w, tw
9628 the width of the rendered text
9629
9630 @item x
9631 @item y
9632 the x and y offset coordinates where the text is drawn.
9633
9634 These parameters allow the @var{x} and @var{y} expressions to refer
9635 to each other, so you can for example specify @code{y=x/dar}.
9636
9637 @item pict_type
9638 A one character description of the current frame's picture type.
9639
9640 @item pkt_pos
9641 The current packet's position in the input file or stream
9642 (in bytes, from the start of the input). A value of -1 indicates
9643 this info is not available.
9644
9645 @item pkt_duration
9646 The current packet's duration, in seconds.
9647
9648 @item pkt_size
9649 The current packet's size (in bytes).
9650 @end table
9651
9652 @anchor{drawtext_expansion}
9653 @subsection Text expansion
9654
9655 If @option{expansion} is set to @code{strftime},
9656 the filter recognizes strftime() sequences in the provided text and
9657 expands them accordingly. Check the documentation of strftime(). This
9658 feature is deprecated.
9659
9660 If @option{expansion} is set to @code{none}, the text is printed verbatim.
9661
9662 If @option{expansion} is set to @code{normal} (which is the default),
9663 the following expansion mechanism is used.
9664
9665 The backslash character @samp{\}, followed by any character, always expands to
9666 the second character.
9667
9668 Sequences of the form @code{%@{...@}} are expanded. The text between the
9669 braces is a function name, possibly followed by arguments separated by ':'.
9670 If the arguments contain special characters or delimiters (':' or '@}'),
9671 they should be escaped.
9672
9673 Note that they probably must also be escaped as the value for the
9674 @option{text} option in the filter argument string and as the filter
9675 argument in the filtergraph description, and possibly also for the shell,
9676 that makes up to four levels of escaping; using a text file avoids these
9677 problems.
9678
9679 The following functions are available:
9680
9681 @table @command
9682
9683 @item expr, e
9684 The expression evaluation result.
9685
9686 It must take one argument specifying the expression to be evaluated,
9687 which accepts the same constants and functions as the @var{x} and
9688 @var{y} values. Note that not all constants should be used, for
9689 example the text size is not known when evaluating the expression, so
9690 the constants @var{text_w} and @var{text_h} will have an undefined
9691 value.
9692
9693 @item expr_int_format, eif
9694 Evaluate the expression's value and output as formatted integer.
9695
9696 The first argument is the expression to be evaluated, just as for the @var{expr} function.
9697 The second argument specifies the output format. Allowed values are @samp{x},
9698 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
9699 @code{printf} function.
9700 The third parameter is optional and sets the number of positions taken by the output.
9701 It can be used to add padding with zeros from the left.
9702
9703 @item gmtime
9704 The time at which the filter is running, expressed in UTC.
9705 It can accept an argument: a strftime() format string.
9706
9707 @item localtime
9708 The time at which the filter is running, expressed in the local time zone.
9709 It can accept an argument: a strftime() format string.
9710
9711 @item metadata
9712 Frame metadata. Takes one or two arguments.
9713
9714 The first argument is mandatory and specifies the metadata key.
9715
9716 The second argument is optional and specifies a default value, used when the
9717 metadata key is not found or empty.
9718
9719 Available metadata can be identified by inspecting entries
9720 starting with TAG included within each frame section
9721 printed by running @code{ffprobe -show_frames}.
9722
9723 String metadata generated in filters leading to
9724 the drawtext filter are also available.
9725
9726 @item n, frame_num
9727 The frame number, starting from 0.
9728
9729 @item pict_type
9730 A one character description of the current picture type.
9731
9732 @item pts
9733 The timestamp of the current frame.
9734 It can take up to three arguments.
9735
9736 The first argument is the format of the timestamp; it defaults to @code{flt}
9737 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
9738 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
9739 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
9740 @code{localtime} stands for the timestamp of the frame formatted as
9741 local time zone time.
9742
9743 The second argument is an offset added to the timestamp.
9744
9745 If the format is set to @code{hms}, a third argument @code{24HH} may be
9746 supplied to present the hour part of the formatted timestamp in 24h format
9747 (00-23).
9748
9749 If the format is set to @code{localtime} or @code{gmtime},
9750 a third argument may be supplied: a strftime() format string.
9751 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
9752 @end table
9753
9754 @subsection Commands
9755
9756 This filter supports altering parameters via commands:
9757 @table @option
9758 @item reinit
9759 Alter existing filter parameters.
9760
9761 Syntax for the argument is the same as for filter invocation, e.g.
9762
9763 @example
9764 fontsize=56:fontcolor=green:text='Hello World'
9765 @end example
9766
9767 Full filter invocation with sendcmd would look like this:
9768
9769 @example
9770 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
9771 @end example
9772 @end table
9773
9774 If the entire argument can't be parsed or applied as valid values then the filter will
9775 continue with its existing parameters.
9776
9777 @subsection Examples
9778
9779 @itemize
9780 @item
9781 Draw "Test Text" with font FreeSerif, using the default values for the
9782 optional parameters.
9783
9784 @example
9785 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
9786 @end example
9787
9788 @item
9789 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
9790 and y=50 (counting from the top-left corner of the screen), text is
9791 yellow with a red box around it. Both the text and the box have an
9792 opacity of 20%.
9793
9794 @example
9795 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
9796           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
9797 @end example
9798
9799 Note that the double quotes are not necessary if spaces are not used
9800 within the parameter list.
9801
9802 @item
9803 Show the text at the center of the video frame:
9804 @example
9805 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
9806 @end example
9807
9808 @item
9809 Show the text at a random position, switching to a new position every 30 seconds:
9810 @example
9811 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)"
9812 @end example
9813
9814 @item
9815 Show a text line sliding from right to left in the last row of the video
9816 frame. The file @file{LONG_LINE} is assumed to contain a single line
9817 with no newlines.
9818 @example
9819 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
9820 @end example
9821
9822 @item
9823 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
9824 @example
9825 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
9826 @end example
9827
9828 @item
9829 Draw a single green letter "g", at the center of the input video.
9830 The glyph baseline is placed at half screen height.
9831 @example
9832 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
9833 @end example
9834
9835 @item
9836 Show text for 1 second every 3 seconds:
9837 @example
9838 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
9839 @end example
9840
9841 @item
9842 Use fontconfig to set the font. Note that the colons need to be escaped.
9843 @example
9844 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
9845 @end example
9846
9847 @item
9848 Print the date of a real-time encoding (see strftime(3)):
9849 @example
9850 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
9851 @end example
9852
9853 @item
9854 Show text fading in and out (appearing/disappearing):
9855 @example
9856 #!/bin/sh
9857 DS=1.0 # display start
9858 DE=10.0 # display end
9859 FID=1.5 # fade in duration
9860 FOD=5 # fade out duration
9861 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 @}"
9862 @end example
9863
9864 @item
9865 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
9866 and the @option{fontsize} value are included in the @option{y} offset.
9867 @example
9868 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
9869 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
9870 @end example
9871
9872 @end itemize
9873
9874 For more information about libfreetype, check:
9875 @url{http://www.freetype.org/}.
9876
9877 For more information about fontconfig, check:
9878 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
9879
9880 For more information about libfribidi, check:
9881 @url{http://fribidi.org/}.
9882
9883 @section edgedetect
9884
9885 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
9886
9887 The filter accepts the following options:
9888
9889 @table @option
9890 @item low
9891 @item high
9892 Set low and high threshold values used by the Canny thresholding
9893 algorithm.
9894
9895 The high threshold selects the "strong" edge pixels, which are then
9896 connected through 8-connectivity with the "weak" edge pixels selected
9897 by the low threshold.
9898
9899 @var{low} and @var{high} threshold values must be chosen in the range
9900 [0,1], and @var{low} should be lesser or equal to @var{high}.
9901
9902 Default value for @var{low} is @code{20/255}, and default value for @var{high}
9903 is @code{50/255}.
9904
9905 @item mode
9906 Define the drawing mode.
9907
9908 @table @samp
9909 @item wires
9910 Draw white/gray wires on black background.
9911
9912 @item colormix
9913 Mix the colors to create a paint/cartoon effect.
9914
9915 @item canny
9916 Apply Canny edge detector on all selected planes.
9917 @end table
9918 Default value is @var{wires}.
9919
9920 @item planes
9921 Select planes for filtering. By default all available planes are filtered.
9922 @end table
9923
9924 @subsection Examples
9925
9926 @itemize
9927 @item
9928 Standard edge detection with custom values for the hysteresis thresholding:
9929 @example
9930 edgedetect=low=0.1:high=0.4
9931 @end example
9932
9933 @item
9934 Painting effect without thresholding:
9935 @example
9936 edgedetect=mode=colormix:high=0
9937 @end example
9938 @end itemize
9939
9940 @section elbg
9941
9942 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
9943
9944 For each input image, the filter will compute the optimal mapping from
9945 the input to the output given the codebook length, that is the number
9946 of distinct output colors.
9947
9948 This filter accepts the following options.
9949
9950 @table @option
9951 @item codebook_length, l
9952 Set codebook length. The value must be a positive integer, and
9953 represents the number of distinct output colors. Default value is 256.
9954
9955 @item nb_steps, n
9956 Set the maximum number of iterations to apply for computing the optimal
9957 mapping. The higher the value the better the result and the higher the
9958 computation time. Default value is 1.
9959
9960 @item seed, s
9961 Set a random seed, must be an integer included between 0 and
9962 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
9963 will try to use a good random seed on a best effort basis.
9964
9965 @item pal8
9966 Set pal8 output pixel format. This option does not work with codebook
9967 length greater than 256.
9968 @end table
9969
9970 @section entropy
9971
9972 Measure graylevel entropy in histogram of color channels of video frames.
9973
9974 It accepts the following parameters:
9975
9976 @table @option
9977 @item mode
9978 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
9979
9980 @var{diff} mode measures entropy of histogram delta values, absolute differences
9981 between neighbour histogram values.
9982 @end table
9983
9984 @section eq
9985 Set brightness, contrast, saturation and approximate gamma adjustment.
9986
9987 The filter accepts the following options:
9988
9989 @table @option
9990 @item contrast
9991 Set the contrast expression. The value must be a float value in range
9992 @code{-1000.0} to @code{1000.0}. The default value is "1".
9993
9994 @item brightness
9995 Set the brightness expression. The value must be a float value in
9996 range @code{-1.0} to @code{1.0}. The default value is "0".
9997
9998 @item saturation
9999 Set the saturation expression. The value must be a float in
10000 range @code{0.0} to @code{3.0}. The default value is "1".
10001
10002 @item gamma
10003 Set the gamma expression. The value must be a float in range
10004 @code{0.1} to @code{10.0}.  The default value is "1".
10005
10006 @item gamma_r
10007 Set the gamma expression for red. The value must be a float in
10008 range @code{0.1} to @code{10.0}. The default value is "1".
10009
10010 @item gamma_g
10011 Set the gamma expression for green. The value must be a float in range
10012 @code{0.1} to @code{10.0}. The default value is "1".
10013
10014 @item gamma_b
10015 Set the gamma expression for blue. The value must be a float in range
10016 @code{0.1} to @code{10.0}. The default value is "1".
10017
10018 @item gamma_weight
10019 Set the gamma weight expression. It can be used to reduce the effect
10020 of a high gamma value on bright image areas, e.g. keep them from
10021 getting overamplified and just plain white. The value must be a float
10022 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10023 gamma correction all the way down while @code{1.0} leaves it at its
10024 full strength. Default is "1".
10025
10026 @item eval
10027 Set when the expressions for brightness, contrast, saturation and
10028 gamma expressions are evaluated.
10029
10030 It accepts the following values:
10031 @table @samp
10032 @item init
10033 only evaluate expressions once during the filter initialization or
10034 when a command is processed
10035
10036 @item frame
10037 evaluate expressions for each incoming frame
10038 @end table
10039
10040 Default value is @samp{init}.
10041 @end table
10042
10043 The expressions accept the following parameters:
10044 @table @option
10045 @item n
10046 frame count of the input frame starting from 0
10047
10048 @item pos
10049 byte position of the corresponding packet in the input file, NAN if
10050 unspecified
10051
10052 @item r
10053 frame rate of the input video, NAN if the input frame rate is unknown
10054
10055 @item t
10056 timestamp expressed in seconds, NAN if the input timestamp is unknown
10057 @end table
10058
10059 @subsection Commands
10060 The filter supports the following commands:
10061
10062 @table @option
10063 @item contrast
10064 Set the contrast expression.
10065
10066 @item brightness
10067 Set the brightness expression.
10068
10069 @item saturation
10070 Set the saturation expression.
10071
10072 @item gamma
10073 Set the gamma expression.
10074
10075 @item gamma_r
10076 Set the gamma_r expression.
10077
10078 @item gamma_g
10079 Set gamma_g expression.
10080
10081 @item gamma_b
10082 Set gamma_b expression.
10083
10084 @item gamma_weight
10085 Set gamma_weight expression.
10086
10087 The command accepts the same syntax of the corresponding option.
10088
10089 If the specified expression is not valid, it is kept at its current
10090 value.
10091
10092 @end table
10093
10094 @section erosion
10095
10096 Apply erosion effect to the video.
10097
10098 This filter replaces the pixel by the local(3x3) minimum.
10099
10100 It accepts the following options:
10101
10102 @table @option
10103 @item threshold0
10104 @item threshold1
10105 @item threshold2
10106 @item threshold3
10107 Limit the maximum change for each plane, default is 65535.
10108 If 0, plane will remain unchanged.
10109
10110 @item coordinates
10111 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
10112 pixels are used.
10113
10114 Flags to local 3x3 coordinates maps like this:
10115
10116     1 2 3
10117     4   5
10118     6 7 8
10119 @end table
10120
10121 @section extractplanes
10122
10123 Extract color channel components from input video stream into
10124 separate grayscale video streams.
10125
10126 The filter accepts the following option:
10127
10128 @table @option
10129 @item planes
10130 Set plane(s) to extract.
10131
10132 Available values for planes are:
10133 @table @samp
10134 @item y
10135 @item u
10136 @item v
10137 @item a
10138 @item r
10139 @item g
10140 @item b
10141 @end table
10142
10143 Choosing planes not available in the input will result in an error.
10144 That means you cannot select @code{r}, @code{g}, @code{b} planes
10145 with @code{y}, @code{u}, @code{v} planes at same time.
10146 @end table
10147
10148 @subsection Examples
10149
10150 @itemize
10151 @item
10152 Extract luma, u and v color channel component from input video frame
10153 into 3 grayscale outputs:
10154 @example
10155 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
10156 @end example
10157 @end itemize
10158
10159 @section fade
10160
10161 Apply a fade-in/out effect to the input video.
10162
10163 It accepts the following parameters:
10164
10165 @table @option
10166 @item type, t
10167 The effect type can be either "in" for a fade-in, or "out" for a fade-out
10168 effect.
10169 Default is @code{in}.
10170
10171 @item start_frame, s
10172 Specify the number of the frame to start applying the fade
10173 effect at. Default is 0.
10174
10175 @item nb_frames, n
10176 The number of frames that the fade effect lasts. At the end of the
10177 fade-in effect, the output video will have the same intensity as the input video.
10178 At the end of the fade-out transition, the output video will be filled with the
10179 selected @option{color}.
10180 Default is 25.
10181
10182 @item alpha
10183 If set to 1, fade only alpha channel, if one exists on the input.
10184 Default value is 0.
10185
10186 @item start_time, st
10187 Specify the timestamp (in seconds) of the frame to start to apply the fade
10188 effect. If both start_frame and start_time are specified, the fade will start at
10189 whichever comes last.  Default is 0.
10190
10191 @item duration, d
10192 The number of seconds for which the fade effect has to last. At the end of the
10193 fade-in effect the output video will have the same intensity as the input video,
10194 at the end of the fade-out transition the output video will be filled with the
10195 selected @option{color}.
10196 If both duration and nb_frames are specified, duration is used. Default is 0
10197 (nb_frames is used by default).
10198
10199 @item color, c
10200 Specify the color of the fade. Default is "black".
10201 @end table
10202
10203 @subsection Examples
10204
10205 @itemize
10206 @item
10207 Fade in the first 30 frames of video:
10208 @example
10209 fade=in:0:30
10210 @end example
10211
10212 The command above is equivalent to:
10213 @example
10214 fade=t=in:s=0:n=30
10215 @end example
10216
10217 @item
10218 Fade out the last 45 frames of a 200-frame video:
10219 @example
10220 fade=out:155:45
10221 fade=type=out:start_frame=155:nb_frames=45
10222 @end example
10223
10224 @item
10225 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
10226 @example
10227 fade=in:0:25, fade=out:975:25
10228 @end example
10229
10230 @item
10231 Make the first 5 frames yellow, then fade in from frame 5-24:
10232 @example
10233 fade=in:5:20:color=yellow
10234 @end example
10235
10236 @item
10237 Fade in alpha over first 25 frames of video:
10238 @example
10239 fade=in:0:25:alpha=1
10240 @end example
10241
10242 @item
10243 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
10244 @example
10245 fade=t=in:st=5.5:d=0.5
10246 @end example
10247
10248 @end itemize
10249
10250 @section fftdnoiz
10251 Denoise frames using 3D FFT (frequency domain filtering).
10252
10253 The filter accepts the following options:
10254
10255 @table @option
10256 @item sigma
10257 Set the noise sigma constant. This sets denoising strength.
10258 Default value is 1. Allowed range is from 0 to 30.
10259 Using very high sigma with low overlap may give blocking artifacts.
10260
10261 @item amount
10262 Set amount of denoising. By default all detected noise is reduced.
10263 Default value is 1. Allowed range is from 0 to 1.
10264
10265 @item block
10266 Set size of block, Default is 4, can be 3, 4, 5 or 6.
10267 Actual size of block in pixels is 2 to power of @var{block}, so by default
10268 block size in pixels is 2^4 which is 16.
10269
10270 @item overlap
10271 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
10272
10273 @item prev
10274 Set number of previous frames to use for denoising. By default is set to 0.
10275
10276 @item next
10277 Set number of next frames to to use for denoising. By default is set to 0.
10278
10279 @item planes
10280 Set planes which will be filtered, by default are all available filtered
10281 except alpha.
10282 @end table
10283
10284 @section fftfilt
10285 Apply arbitrary expressions to samples in frequency domain
10286
10287 @table @option
10288 @item dc_Y
10289 Adjust the dc value (gain) of the luma plane of the image. The filter
10290 accepts an integer value in range @code{0} to @code{1000}. The default
10291 value is set to @code{0}.
10292
10293 @item dc_U
10294 Adjust the dc value (gain) of the 1st chroma plane of the image. The
10295 filter accepts an integer value in range @code{0} to @code{1000}. The
10296 default value is set to @code{0}.
10297
10298 @item dc_V
10299 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
10300 filter accepts an integer value in range @code{0} to @code{1000}. The
10301 default value is set to @code{0}.
10302
10303 @item weight_Y
10304 Set the frequency domain weight expression for the luma plane.
10305
10306 @item weight_U
10307 Set the frequency domain weight expression for the 1st chroma plane.
10308
10309 @item weight_V
10310 Set the frequency domain weight expression for the 2nd chroma plane.
10311
10312 @item eval
10313 Set when the expressions are evaluated.
10314
10315 It accepts the following values:
10316 @table @samp
10317 @item init
10318 Only evaluate expressions once during the filter initialization.
10319
10320 @item frame
10321 Evaluate expressions for each incoming frame.
10322 @end table
10323
10324 Default value is @samp{init}.
10325
10326 The filter accepts the following variables:
10327 @item X
10328 @item Y
10329 The coordinates of the current sample.
10330
10331 @item W
10332 @item H
10333 The width and height of the image.
10334
10335 @item N
10336 The number of input frame, starting from 0.
10337 @end table
10338
10339 @subsection Examples
10340
10341 @itemize
10342 @item
10343 High-pass:
10344 @example
10345 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
10346 @end example
10347
10348 @item
10349 Low-pass:
10350 @example
10351 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
10352 @end example
10353
10354 @item
10355 Sharpen:
10356 @example
10357 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
10358 @end example
10359
10360 @item
10361 Blur:
10362 @example
10363 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
10364 @end example
10365
10366 @end itemize
10367
10368 @section field
10369
10370 Extract a single field from an interlaced image using stride
10371 arithmetic to avoid wasting CPU time. The output frames are marked as
10372 non-interlaced.
10373
10374 The filter accepts the following options:
10375
10376 @table @option
10377 @item type
10378 Specify whether to extract the top (if the value is @code{0} or
10379 @code{top}) or the bottom field (if the value is @code{1} or
10380 @code{bottom}).
10381 @end table
10382
10383 @section fieldhint
10384
10385 Create new frames by copying the top and bottom fields from surrounding frames
10386 supplied as numbers by the hint file.
10387
10388 @table @option
10389 @item hint
10390 Set file containing hints: absolute/relative frame numbers.
10391
10392 There must be one line for each frame in a clip. Each line must contain two
10393 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
10394 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
10395 is current frame number for @code{absolute} mode or out of [-1, 1] range
10396 for @code{relative} mode. First number tells from which frame to pick up top
10397 field and second number tells from which frame to pick up bottom field.
10398
10399 If optionally followed by @code{+} output frame will be marked as interlaced,
10400 else if followed by @code{-} output frame will be marked as progressive, else
10401 it will be marked same as input frame.
10402 If optionally followed by @code{t} output frame will use only top field, or in
10403 case of @code{b} it will use only bottom field.
10404 If line starts with @code{#} or @code{;} that line is skipped.
10405
10406 @item mode
10407 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
10408 @end table
10409
10410 Example of first several lines of @code{hint} file for @code{relative} mode:
10411 @example
10412 0,0 - # first frame
10413 1,0 - # second frame, use third's frame top field and second's frame bottom field
10414 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
10415 1,0 -
10416 0,0 -
10417 0,0 -
10418 1,0 -
10419 1,0 -
10420 1,0 -
10421 0,0 -
10422 0,0 -
10423 1,0 -
10424 1,0 -
10425 1,0 -
10426 0,0 -
10427 @end example
10428
10429 @section fieldmatch
10430
10431 Field matching filter for inverse telecine. It is meant to reconstruct the
10432 progressive frames from a telecined stream. The filter does not drop duplicated
10433 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
10434 followed by a decimation filter such as @ref{decimate} in the filtergraph.
10435
10436 The separation of the field matching and the decimation is notably motivated by
10437 the possibility of inserting a de-interlacing filter fallback between the two.
10438 If the source has mixed telecined and real interlaced content,
10439 @code{fieldmatch} will not be able to match fields for the interlaced parts.
10440 But these remaining combed frames will be marked as interlaced, and thus can be
10441 de-interlaced by a later filter such as @ref{yadif} before decimation.
10442
10443 In addition to the various configuration options, @code{fieldmatch} can take an
10444 optional second stream, activated through the @option{ppsrc} option. If
10445 enabled, the frames reconstruction will be based on the fields and frames from
10446 this second stream. This allows the first input to be pre-processed in order to
10447 help the various algorithms of the filter, while keeping the output lossless
10448 (assuming the fields are matched properly). Typically, a field-aware denoiser,
10449 or brightness/contrast adjustments can help.
10450
10451 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
10452 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
10453 which @code{fieldmatch} is based on. While the semantic and usage are very
10454 close, some behaviour and options names can differ.
10455
10456 The @ref{decimate} filter currently only works for constant frame rate input.
10457 If your input has mixed telecined (30fps) and progressive content with a lower
10458 framerate like 24fps use the following filterchain to produce the necessary cfr
10459 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
10460
10461 The filter accepts the following options:
10462
10463 @table @option
10464 @item order
10465 Specify the assumed field order of the input stream. Available values are:
10466
10467 @table @samp
10468 @item auto
10469 Auto detect parity (use FFmpeg's internal parity value).
10470 @item bff
10471 Assume bottom field first.
10472 @item tff
10473 Assume top field first.
10474 @end table
10475
10476 Note that it is sometimes recommended not to trust the parity announced by the
10477 stream.
10478
10479 Default value is @var{auto}.
10480
10481 @item mode
10482 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
10483 sense that it won't risk creating jerkiness due to duplicate frames when
10484 possible, but if there are bad edits or blended fields it will end up
10485 outputting combed frames when a good match might actually exist. On the other
10486 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
10487 but will almost always find a good frame if there is one. The other values are
10488 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
10489 jerkiness and creating duplicate frames versus finding good matches in sections
10490 with bad edits, orphaned fields, blended fields, etc.
10491
10492 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
10493
10494 Available values are:
10495
10496 @table @samp
10497 @item pc
10498 2-way matching (p/c)
10499 @item pc_n
10500 2-way matching, and trying 3rd match if still combed (p/c + n)
10501 @item pc_u
10502 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
10503 @item pc_n_ub
10504 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
10505 still combed (p/c + n + u/b)
10506 @item pcn
10507 3-way matching (p/c/n)
10508 @item pcn_ub
10509 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
10510 detected as combed (p/c/n + u/b)
10511 @end table
10512
10513 The parenthesis at the end indicate the matches that would be used for that
10514 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
10515 @var{top}).
10516
10517 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
10518 the slowest.
10519
10520 Default value is @var{pc_n}.
10521
10522 @item ppsrc
10523 Mark the main input stream as a pre-processed input, and enable the secondary
10524 input stream as the clean source to pick the fields from. See the filter
10525 introduction for more details. It is similar to the @option{clip2} feature from
10526 VFM/TFM.
10527
10528 Default value is @code{0} (disabled).
10529
10530 @item field
10531 Set the field to match from. It is recommended to set this to the same value as
10532 @option{order} unless you experience matching failures with that setting. In
10533 certain circumstances changing the field that is used to match from can have a
10534 large impact on matching performance. Available values are:
10535
10536 @table @samp
10537 @item auto
10538 Automatic (same value as @option{order}).
10539 @item bottom
10540 Match from the bottom field.
10541 @item top
10542 Match from the top field.
10543 @end table
10544
10545 Default value is @var{auto}.
10546
10547 @item mchroma
10548 Set whether or not chroma is included during the match comparisons. In most
10549 cases it is recommended to leave this enabled. You should set this to @code{0}
10550 only if your clip has bad chroma problems such as heavy rainbowing or other
10551 artifacts. Setting this to @code{0} could also be used to speed things up at
10552 the cost of some accuracy.
10553
10554 Default value is @code{1}.
10555
10556 @item y0
10557 @item y1
10558 These define an exclusion band which excludes the lines between @option{y0} and
10559 @option{y1} from being included in the field matching decision. An exclusion
10560 band can be used to ignore subtitles, a logo, or other things that may
10561 interfere with the matching. @option{y0} sets the starting scan line and
10562 @option{y1} sets the ending line; all lines in between @option{y0} and
10563 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
10564 @option{y0} and @option{y1} to the same value will disable the feature.
10565 @option{y0} and @option{y1} defaults to @code{0}.
10566
10567 @item scthresh
10568 Set the scene change detection threshold as a percentage of maximum change on
10569 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
10570 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
10571 @option{scthresh} is @code{[0.0, 100.0]}.
10572
10573 Default value is @code{12.0}.
10574
10575 @item combmatch
10576 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
10577 account the combed scores of matches when deciding what match to use as the
10578 final match. Available values are:
10579
10580 @table @samp
10581 @item none
10582 No final matching based on combed scores.
10583 @item sc
10584 Combed scores are only used when a scene change is detected.
10585 @item full
10586 Use combed scores all the time.
10587 @end table
10588
10589 Default is @var{sc}.
10590
10591 @item combdbg
10592 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
10593 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
10594 Available values are:
10595
10596 @table @samp
10597 @item none
10598 No forced calculation.
10599 @item pcn
10600 Force p/c/n calculations.
10601 @item pcnub
10602 Force p/c/n/u/b calculations.
10603 @end table
10604
10605 Default value is @var{none}.
10606
10607 @item cthresh
10608 This is the area combing threshold used for combed frame detection. This
10609 essentially controls how "strong" or "visible" combing must be to be detected.
10610 Larger values mean combing must be more visible and smaller values mean combing
10611 can be less visible or strong and still be detected. Valid settings are from
10612 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
10613 be detected as combed). This is basically a pixel difference value. A good
10614 range is @code{[8, 12]}.
10615
10616 Default value is @code{9}.
10617
10618 @item chroma
10619 Sets whether or not chroma is considered in the combed frame decision.  Only
10620 disable this if your source has chroma problems (rainbowing, etc.) that are
10621 causing problems for the combed frame detection with chroma enabled. Actually,
10622 using @option{chroma}=@var{0} is usually more reliable, except for the case
10623 where there is chroma only combing in the source.
10624
10625 Default value is @code{0}.
10626
10627 @item blockx
10628 @item blocky
10629 Respectively set the x-axis and y-axis size of the window used during combed
10630 frame detection. This has to do with the size of the area in which
10631 @option{combpel} pixels are required to be detected as combed for a frame to be
10632 declared combed. See the @option{combpel} parameter description for more info.
10633 Possible values are any number that is a power of 2 starting at 4 and going up
10634 to 512.
10635
10636 Default value is @code{16}.
10637
10638 @item combpel
10639 The number of combed pixels inside any of the @option{blocky} by
10640 @option{blockx} size blocks on the frame for the frame to be detected as
10641 combed. While @option{cthresh} controls how "visible" the combing must be, this
10642 setting controls "how much" combing there must be in any localized area (a
10643 window defined by the @option{blockx} and @option{blocky} settings) on the
10644 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
10645 which point no frames will ever be detected as combed). This setting is known
10646 as @option{MI} in TFM/VFM vocabulary.
10647
10648 Default value is @code{80}.
10649 @end table
10650
10651 @anchor{p/c/n/u/b meaning}
10652 @subsection p/c/n/u/b meaning
10653
10654 @subsubsection p/c/n
10655
10656 We assume the following telecined stream:
10657
10658 @example
10659 Top fields:     1 2 2 3 4
10660 Bottom fields:  1 2 3 4 4
10661 @end example
10662
10663 The numbers correspond to the progressive frame the fields relate to. Here, the
10664 first two frames are progressive, the 3rd and 4th are combed, and so on.
10665
10666 When @code{fieldmatch} is configured to run a matching from bottom
10667 (@option{field}=@var{bottom}) this is how this input stream get transformed:
10668
10669 @example
10670 Input stream:
10671                 T     1 2 2 3 4
10672                 B     1 2 3 4 4   <-- matching reference
10673
10674 Matches:              c c n n c
10675
10676 Output stream:
10677                 T     1 2 3 4 4
10678                 B     1 2 3 4 4
10679 @end example
10680
10681 As a result of the field matching, we can see that some frames get duplicated.
10682 To perform a complete inverse telecine, you need to rely on a decimation filter
10683 after this operation. See for instance the @ref{decimate} filter.
10684
10685 The same operation now matching from top fields (@option{field}=@var{top})
10686 looks like this:
10687
10688 @example
10689 Input stream:
10690                 T     1 2 2 3 4   <-- matching reference
10691                 B     1 2 3 4 4
10692
10693 Matches:              c c p p c
10694
10695 Output stream:
10696                 T     1 2 2 3 4
10697                 B     1 2 2 3 4
10698 @end example
10699
10700 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
10701 basically, they refer to the frame and field of the opposite parity:
10702
10703 @itemize
10704 @item @var{p} matches the field of the opposite parity in the previous frame
10705 @item @var{c} matches the field of the opposite parity in the current frame
10706 @item @var{n} matches the field of the opposite parity in the next frame
10707 @end itemize
10708
10709 @subsubsection u/b
10710
10711 The @var{u} and @var{b} matching are a bit special in the sense that they match
10712 from the opposite parity flag. In the following examples, we assume that we are
10713 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
10714 'x' is placed above and below each matched fields.
10715
10716 With bottom matching (@option{field}=@var{bottom}):
10717 @example
10718 Match:           c         p           n          b          u
10719
10720                  x       x               x        x          x
10721   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10722   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10723                  x         x           x        x              x
10724
10725 Output frames:
10726                  2          1          2          2          2
10727                  2          2          2          1          3
10728 @end example
10729
10730 With top matching (@option{field}=@var{top}):
10731 @example
10732 Match:           c         p           n          b          u
10733
10734                  x         x           x        x              x
10735   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10736   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10737                  x       x               x        x          x
10738
10739 Output frames:
10740                  2          2          2          1          2
10741                  2          1          3          2          2
10742 @end example
10743
10744 @subsection Examples
10745
10746 Simple IVTC of a top field first telecined stream:
10747 @example
10748 fieldmatch=order=tff:combmatch=none, decimate
10749 @end example
10750
10751 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
10752 @example
10753 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
10754 @end example
10755
10756 @section fieldorder
10757
10758 Transform the field order of the input video.
10759
10760 It accepts the following parameters:
10761
10762 @table @option
10763
10764 @item order
10765 The output field order. Valid values are @var{tff} for top field first or @var{bff}
10766 for bottom field first.
10767 @end table
10768
10769 The default value is @samp{tff}.
10770
10771 The transformation is done by shifting the picture content up or down
10772 by one line, and filling the remaining line with appropriate picture content.
10773 This method is consistent with most broadcast field order converters.
10774
10775 If the input video is not flagged as being interlaced, or it is already
10776 flagged as being of the required output field order, then this filter does
10777 not alter the incoming video.
10778
10779 It is very useful when converting to or from PAL DV material,
10780 which is bottom field first.
10781
10782 For example:
10783 @example
10784 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
10785 @end example
10786
10787 @section fifo, afifo
10788
10789 Buffer input images and send them when they are requested.
10790
10791 It is mainly useful when auto-inserted by the libavfilter
10792 framework.
10793
10794 It does not take parameters.
10795
10796 @section fillborders
10797
10798 Fill borders of the input video, without changing video stream dimensions.
10799 Sometimes video can have garbage at the four edges and you may not want to
10800 crop video input to keep size multiple of some number.
10801
10802 This filter accepts the following options:
10803
10804 @table @option
10805 @item left
10806 Number of pixels to fill from left border.
10807
10808 @item right
10809 Number of pixels to fill from right border.
10810
10811 @item top
10812 Number of pixels to fill from top border.
10813
10814 @item bottom
10815 Number of pixels to fill from bottom border.
10816
10817 @item mode
10818 Set fill mode.
10819
10820 It accepts the following values:
10821 @table @samp
10822 @item smear
10823 fill pixels using outermost pixels
10824
10825 @item mirror
10826 fill pixels using mirroring
10827
10828 @item fixed
10829 fill pixels with constant value
10830 @end table
10831
10832 Default is @var{smear}.
10833
10834 @item color
10835 Set color for pixels in fixed mode. Default is @var{black}.
10836 @end table
10837
10838 @subsection Commands
10839 This filter supports same @ref{commands} as options.
10840 The command accepts the same syntax of the corresponding option.
10841
10842 If the specified expression is not valid, it is kept at its current
10843 value.
10844
10845 @section find_rect
10846
10847 Find a rectangular object
10848
10849 It accepts the following options:
10850
10851 @table @option
10852 @item object
10853 Filepath of the object image, needs to be in gray8.
10854
10855 @item threshold
10856 Detection threshold, default is 0.5.
10857
10858 @item mipmaps
10859 Number of mipmaps, default is 3.
10860
10861 @item xmin, ymin, xmax, ymax
10862 Specifies the rectangle in which to search.
10863 @end table
10864
10865 @subsection Examples
10866
10867 @itemize
10868 @item
10869 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
10870 @example
10871 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
10872 @end example
10873 @end itemize
10874
10875 @section floodfill
10876
10877 Flood area with values of same pixel components with another values.
10878
10879 It accepts the following options:
10880 @table @option
10881 @item x
10882 Set pixel x coordinate.
10883
10884 @item y
10885 Set pixel y coordinate.
10886
10887 @item s0
10888 Set source #0 component value.
10889
10890 @item s1
10891 Set source #1 component value.
10892
10893 @item s2
10894 Set source #2 component value.
10895
10896 @item s3
10897 Set source #3 component value.
10898
10899 @item d0
10900 Set destination #0 component value.
10901
10902 @item d1
10903 Set destination #1 component value.
10904
10905 @item d2
10906 Set destination #2 component value.
10907
10908 @item d3
10909 Set destination #3 component value.
10910 @end table
10911
10912 @anchor{format}
10913 @section format
10914
10915 Convert the input video to one of the specified pixel formats.
10916 Libavfilter will try to pick one that is suitable as input to
10917 the next filter.
10918
10919 It accepts the following parameters:
10920 @table @option
10921
10922 @item pix_fmts
10923 A '|'-separated list of pixel format names, such as
10924 "pix_fmts=yuv420p|monow|rgb24".
10925
10926 @end table
10927
10928 @subsection Examples
10929
10930 @itemize
10931 @item
10932 Convert the input video to the @var{yuv420p} format
10933 @example
10934 format=pix_fmts=yuv420p
10935 @end example
10936
10937 Convert the input video to any of the formats in the list
10938 @example
10939 format=pix_fmts=yuv420p|yuv444p|yuv410p
10940 @end example
10941 @end itemize
10942
10943 @anchor{fps}
10944 @section fps
10945
10946 Convert the video to specified constant frame rate by duplicating or dropping
10947 frames as necessary.
10948
10949 It accepts the following parameters:
10950 @table @option
10951
10952 @item fps
10953 The desired output frame rate. The default is @code{25}.
10954
10955 @item start_time
10956 Assume the first PTS should be the given value, in seconds. This allows for
10957 padding/trimming at the start of stream. By default, no assumption is made
10958 about the first frame's expected PTS, so no padding or trimming is done.
10959 For example, this could be set to 0 to pad the beginning with duplicates of
10960 the first frame if a video stream starts after the audio stream or to trim any
10961 frames with a negative PTS.
10962
10963 @item round
10964 Timestamp (PTS) rounding method.
10965
10966 Possible values are:
10967 @table @option
10968 @item zero
10969 round towards 0
10970 @item inf
10971 round away from 0
10972 @item down
10973 round towards -infinity
10974 @item up
10975 round towards +infinity
10976 @item near
10977 round to nearest
10978 @end table
10979 The default is @code{near}.
10980
10981 @item eof_action
10982 Action performed when reading the last frame.
10983
10984 Possible values are:
10985 @table @option
10986 @item round
10987 Use same timestamp rounding method as used for other frames.
10988 @item pass
10989 Pass through last frame if input duration has not been reached yet.
10990 @end table
10991 The default is @code{round}.
10992
10993 @end table
10994
10995 Alternatively, the options can be specified as a flat string:
10996 @var{fps}[:@var{start_time}[:@var{round}]].
10997
10998 See also the @ref{setpts} filter.
10999
11000 @subsection Examples
11001
11002 @itemize
11003 @item
11004 A typical usage in order to set the fps to 25:
11005 @example
11006 fps=fps=25
11007 @end example
11008
11009 @item
11010 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
11011 @example
11012 fps=fps=film:round=near
11013 @end example
11014 @end itemize
11015
11016 @section framepack
11017
11018 Pack two different video streams into a stereoscopic video, setting proper
11019 metadata on supported codecs. The two views should have the same size and
11020 framerate and processing will stop when the shorter video ends. Please note
11021 that you may conveniently adjust view properties with the @ref{scale} and
11022 @ref{fps} filters.
11023
11024 It accepts the following parameters:
11025 @table @option
11026
11027 @item format
11028 The desired packing format. Supported values are:
11029
11030 @table @option
11031
11032 @item sbs
11033 The views are next to each other (default).
11034
11035 @item tab
11036 The views are on top of each other.
11037
11038 @item lines
11039 The views are packed by line.
11040
11041 @item columns
11042 The views are packed by column.
11043
11044 @item frameseq
11045 The views are temporally interleaved.
11046
11047 @end table
11048
11049 @end table
11050
11051 Some examples:
11052
11053 @example
11054 # Convert left and right views into a frame-sequential video
11055 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
11056
11057 # Convert views into a side-by-side video with the same output resolution as the input
11058 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
11059 @end example
11060
11061 @section framerate
11062
11063 Change the frame rate by interpolating new video output frames from the source
11064 frames.
11065
11066 This filter is not designed to function correctly with interlaced media. If
11067 you wish to change the frame rate of interlaced media then you are required
11068 to deinterlace before this filter and re-interlace after this filter.
11069
11070 A description of the accepted options follows.
11071
11072 @table @option
11073 @item fps
11074 Specify the output frames per second. This option can also be specified
11075 as a value alone. The default is @code{50}.
11076
11077 @item interp_start
11078 Specify the start of a range where the output frame will be created as a
11079 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11080 the default is @code{15}.
11081
11082 @item interp_end
11083 Specify the end of a range where the output frame will be created as a
11084 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11085 the default is @code{240}.
11086
11087 @item scene
11088 Specify the level at which a scene change is detected as a value between
11089 0 and 100 to indicate a new scene; a low value reflects a low
11090 probability for the current frame to introduce a new scene, while a higher
11091 value means the current frame is more likely to be one.
11092 The default is @code{8.2}.
11093
11094 @item flags
11095 Specify flags influencing the filter process.
11096
11097 Available value for @var{flags} is:
11098
11099 @table @option
11100 @item scene_change_detect, scd
11101 Enable scene change detection using the value of the option @var{scene}.
11102 This flag is enabled by default.
11103 @end table
11104 @end table
11105
11106 @section framestep
11107
11108 Select one frame every N-th frame.
11109
11110 This filter accepts the following option:
11111 @table @option
11112 @item step
11113 Select frame after every @code{step} frames.
11114 Allowed values are positive integers higher than 0. Default value is @code{1}.
11115 @end table
11116
11117 @section freezedetect
11118
11119 Detect frozen video.
11120
11121 This filter logs a message and sets frame metadata when it detects that the
11122 input video has no significant change in content during a specified duration.
11123 Video freeze detection calculates the mean average absolute difference of all
11124 the components of video frames and compares it to a noise floor.
11125
11126 The printed times and duration are expressed in seconds. The
11127 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
11128 whose timestamp equals or exceeds the detection duration and it contains the
11129 timestamp of the first frame of the freeze. The
11130 @code{lavfi.freezedetect.freeze_duration} and
11131 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
11132 after the freeze.
11133
11134 The filter accepts the following options:
11135
11136 @table @option
11137 @item noise, n
11138 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
11139 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
11140 0.001.
11141
11142 @item duration, d
11143 Set freeze duration until notification (default is 2 seconds).
11144 @end table
11145
11146 @anchor{frei0r}
11147 @section frei0r
11148
11149 Apply a frei0r effect to the input video.
11150
11151 To enable the compilation of this filter, you need to install the frei0r
11152 header and configure FFmpeg with @code{--enable-frei0r}.
11153
11154 It accepts the following parameters:
11155
11156 @table @option
11157
11158 @item filter_name
11159 The name of the frei0r effect to load. If the environment variable
11160 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
11161 directories specified by the colon-separated list in @env{FREI0R_PATH}.
11162 Otherwise, the standard frei0r paths are searched, in this order:
11163 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
11164 @file{/usr/lib/frei0r-1/}.
11165
11166 @item filter_params
11167 A '|'-separated list of parameters to pass to the frei0r effect.
11168
11169 @end table
11170
11171 A frei0r effect parameter can be a boolean (its value is either
11172 "y" or "n"), a double, a color (specified as
11173 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
11174 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
11175 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
11176 a position (specified as @var{X}/@var{Y}, where
11177 @var{X} and @var{Y} are floating point numbers) and/or a string.
11178
11179 The number and types of parameters depend on the loaded effect. If an
11180 effect parameter is not specified, the default value is set.
11181
11182 @subsection Examples
11183
11184 @itemize
11185 @item
11186 Apply the distort0r effect, setting the first two double parameters:
11187 @example
11188 frei0r=filter_name=distort0r:filter_params=0.5|0.01
11189 @end example
11190
11191 @item
11192 Apply the colordistance effect, taking a color as the first parameter:
11193 @example
11194 frei0r=colordistance:0.2/0.3/0.4
11195 frei0r=colordistance:violet
11196 frei0r=colordistance:0x112233
11197 @end example
11198
11199 @item
11200 Apply the perspective effect, specifying the top left and top right image
11201 positions:
11202 @example
11203 frei0r=perspective:0.2/0.2|0.8/0.2
11204 @end example
11205 @end itemize
11206
11207 For more information, see
11208 @url{http://frei0r.dyne.org}
11209
11210 @section fspp
11211
11212 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
11213
11214 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
11215 processing filter, one of them is performed once per block, not per pixel.
11216 This allows for much higher speed.
11217
11218 The filter accepts the following options:
11219
11220 @table @option
11221 @item quality
11222 Set quality. This option defines the number of levels for averaging. It accepts
11223 an integer in the range 4-5. Default value is @code{4}.
11224
11225 @item qp
11226 Force a constant quantization parameter. It accepts an integer in range 0-63.
11227 If not set, the filter will use the QP from the video stream (if available).
11228
11229 @item strength
11230 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
11231 more details but also more artifacts, while higher values make the image smoother
11232 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
11233
11234 @item use_bframe_qp
11235 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
11236 option may cause flicker since the B-Frames have often larger QP. Default is
11237 @code{0} (not enabled).
11238
11239 @end table
11240
11241 @section gblur
11242
11243 Apply Gaussian blur filter.
11244
11245 The filter accepts the following options:
11246
11247 @table @option
11248 @item sigma
11249 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
11250
11251 @item steps
11252 Set number of steps for Gaussian approximation. Default is @code{1}.
11253
11254 @item planes
11255 Set which planes to filter. By default all planes are filtered.
11256
11257 @item sigmaV
11258 Set vertical sigma, if negative it will be same as @code{sigma}.
11259 Default is @code{-1}.
11260 @end table
11261
11262 @subsection Commands
11263 This filter supports same commands as options.
11264 The command accepts the same syntax of the corresponding option.
11265
11266 If the specified expression is not valid, it is kept at its current
11267 value.
11268
11269 @section geq
11270
11271 Apply generic equation to each pixel.
11272
11273 The filter accepts the following options:
11274
11275 @table @option
11276 @item lum_expr, lum
11277 Set the luminance expression.
11278 @item cb_expr, cb
11279 Set the chrominance blue expression.
11280 @item cr_expr, cr
11281 Set the chrominance red expression.
11282 @item alpha_expr, a
11283 Set the alpha expression.
11284 @item red_expr, r
11285 Set the red expression.
11286 @item green_expr, g
11287 Set the green expression.
11288 @item blue_expr, b
11289 Set the blue expression.
11290 @end table
11291
11292 The colorspace is selected according to the specified options. If one
11293 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
11294 options is specified, the filter will automatically select a YCbCr
11295 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
11296 @option{blue_expr} options is specified, it will select an RGB
11297 colorspace.
11298
11299 If one of the chrominance expression is not defined, it falls back on the other
11300 one. If no alpha expression is specified it will evaluate to opaque value.
11301 If none of chrominance expressions are specified, they will evaluate
11302 to the luminance expression.
11303
11304 The expressions can use the following variables and functions:
11305
11306 @table @option
11307 @item N
11308 The sequential number of the filtered frame, starting from @code{0}.
11309
11310 @item X
11311 @item Y
11312 The coordinates of the current sample.
11313
11314 @item W
11315 @item H
11316 The width and height of the image.
11317
11318 @item SW
11319 @item SH
11320 Width and height scale depending on the currently filtered plane. It is the
11321 ratio between the corresponding luma plane number of pixels and the current
11322 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
11323 @code{0.5,0.5} for chroma planes.
11324
11325 @item T
11326 Time of the current frame, expressed in seconds.
11327
11328 @item p(x, y)
11329 Return the value of the pixel at location (@var{x},@var{y}) of the current
11330 plane.
11331
11332 @item lum(x, y)
11333 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
11334 plane.
11335
11336 @item cb(x, y)
11337 Return the value of the pixel at location (@var{x},@var{y}) of the
11338 blue-difference chroma plane. Return 0 if there is no such plane.
11339
11340 @item cr(x, y)
11341 Return the value of the pixel at location (@var{x},@var{y}) of the
11342 red-difference chroma plane. Return 0 if there is no such plane.
11343
11344 @item r(x, y)
11345 @item g(x, y)
11346 @item b(x, y)
11347 Return the value of the pixel at location (@var{x},@var{y}) of the
11348 red/green/blue component. Return 0 if there is no such component.
11349
11350 @item alpha(x, y)
11351 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
11352 plane. Return 0 if there is no such plane.
11353
11354 @item interpolation
11355 Set one of interpolation methods:
11356 @table @option
11357 @item nearest, n
11358 @item bilinear, b
11359 @end table
11360 Default is bilinear.
11361 @end table
11362
11363 For functions, if @var{x} and @var{y} are outside the area, the value will be
11364 automatically clipped to the closer edge.
11365
11366 @subsection Examples
11367
11368 @itemize
11369 @item
11370 Flip the image horizontally:
11371 @example
11372 geq=p(W-X\,Y)
11373 @end example
11374
11375 @item
11376 Generate a bidimensional sine wave, with angle @code{PI/3} and a
11377 wavelength of 100 pixels:
11378 @example
11379 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
11380 @end example
11381
11382 @item
11383 Generate a fancy enigmatic moving light:
11384 @example
11385 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
11386 @end example
11387
11388 @item
11389 Generate a quick emboss effect:
11390 @example
11391 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
11392 @end example
11393
11394 @item
11395 Modify RGB components depending on pixel position:
11396 @example
11397 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
11398 @end example
11399
11400 @item
11401 Create a radial gradient that is the same size as the input (also see
11402 the @ref{vignette} filter):
11403 @example
11404 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
11405 @end example
11406 @end itemize
11407
11408 @section gradfun
11409
11410 Fix the banding artifacts that are sometimes introduced into nearly flat
11411 regions by truncation to 8-bit color depth.
11412 Interpolate the gradients that should go where the bands are, and
11413 dither them.
11414
11415 It is designed for playback only.  Do not use it prior to
11416 lossy compression, because compression tends to lose the dither and
11417 bring back the bands.
11418
11419 It accepts the following parameters:
11420
11421 @table @option
11422
11423 @item strength
11424 The maximum amount by which the filter will change any one pixel. This is also
11425 the threshold for detecting nearly flat regions. Acceptable values range from
11426 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
11427 valid range.
11428
11429 @item radius
11430 The neighborhood to fit the gradient to. A larger radius makes for smoother
11431 gradients, but also prevents the filter from modifying the pixels near detailed
11432 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
11433 values will be clipped to the valid range.
11434
11435 @end table
11436
11437 Alternatively, the options can be specified as a flat string:
11438 @var{strength}[:@var{radius}]
11439
11440 @subsection Examples
11441
11442 @itemize
11443 @item
11444 Apply the filter with a @code{3.5} strength and radius of @code{8}:
11445 @example
11446 gradfun=3.5:8
11447 @end example
11448
11449 @item
11450 Specify radius, omitting the strength (which will fall-back to the default
11451 value):
11452 @example
11453 gradfun=radius=8
11454 @end example
11455
11456 @end itemize
11457
11458 @anchor{graphmonitor}
11459 @section graphmonitor
11460 Show various filtergraph stats.
11461
11462 With this filter one can debug complete filtergraph.
11463 Especially issues with links filling with queued frames.
11464
11465 The filter accepts the following options:
11466
11467 @table @option
11468 @item size, s
11469 Set video output size. Default is @var{hd720}.
11470
11471 @item opacity, o
11472 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
11473
11474 @item mode, m
11475 Set output mode, can be @var{fulll} or @var{compact}.
11476 In @var{compact} mode only filters with some queued frames have displayed stats.
11477
11478 @item flags, f
11479 Set flags which enable which stats are shown in video.
11480
11481 Available values for flags are:
11482 @table @samp
11483 @item queue
11484 Display number of queued frames in each link.
11485
11486 @item frame_count_in
11487 Display number of frames taken from filter.
11488
11489 @item frame_count_out
11490 Display number of frames given out from filter.
11491
11492 @item pts
11493 Display current filtered frame pts.
11494
11495 @item time
11496 Display current filtered frame time.
11497
11498 @item timebase
11499 Display time base for filter link.
11500
11501 @item format
11502 Display used format for filter link.
11503
11504 @item size
11505 Display video size or number of audio channels in case of audio used by filter link.
11506
11507 @item rate
11508 Display video frame rate or sample rate in case of audio used by filter link.
11509 @end table
11510
11511 @item rate, r
11512 Set upper limit for video rate of output stream, Default value is @var{25}.
11513 This guarantee that output video frame rate will not be higher than this value.
11514 @end table
11515
11516 @section greyedge
11517 A color constancy variation filter which estimates scene illumination via grey edge algorithm
11518 and corrects the scene colors accordingly.
11519
11520 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
11521
11522 The filter accepts the following options:
11523
11524 @table @option
11525 @item difford
11526 The order of differentiation to be applied on the scene. Must be chosen in the range
11527 [0,2] and default value is 1.
11528
11529 @item minknorm
11530 The Minkowski parameter to be used for calculating the Minkowski distance. Must
11531 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
11532 max value instead of calculating Minkowski distance.
11533
11534 @item sigma
11535 The standard deviation of Gaussian blur to be applied on the scene. Must be
11536 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
11537 can't be equal to 0 if @var{difford} is greater than 0.
11538 @end table
11539
11540 @subsection Examples
11541 @itemize
11542
11543 @item
11544 Grey Edge:
11545 @example
11546 greyedge=difford=1:minknorm=5:sigma=2
11547 @end example
11548
11549 @item
11550 Max Edge:
11551 @example
11552 greyedge=difford=1:minknorm=0:sigma=2
11553 @end example
11554
11555 @end itemize
11556
11557 @anchor{haldclut}
11558 @section haldclut
11559
11560 Apply a Hald CLUT to a video stream.
11561
11562 First input is the video stream to process, and second one is the Hald CLUT.
11563 The Hald CLUT input can be a simple picture or a complete video stream.
11564
11565 The filter accepts the following options:
11566
11567 @table @option
11568 @item shortest
11569 Force termination when the shortest input terminates. Default is @code{0}.
11570 @item repeatlast
11571 Continue applying the last CLUT after the end of the stream. A value of
11572 @code{0} disable the filter after the last frame of the CLUT is reached.
11573 Default is @code{1}.
11574 @end table
11575
11576 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
11577 filters share the same internals).
11578
11579 This filter also supports the @ref{framesync} options.
11580
11581 More information about the Hald CLUT can be found on Eskil Steenberg's website
11582 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
11583
11584 @subsection Workflow examples
11585
11586 @subsubsection Hald CLUT video stream
11587
11588 Generate an identity Hald CLUT stream altered with various effects:
11589 @example
11590 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
11591 @end example
11592
11593 Note: make sure you use a lossless codec.
11594
11595 Then use it with @code{haldclut} to apply it on some random stream:
11596 @example
11597 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
11598 @end example
11599
11600 The Hald CLUT will be applied to the 10 first seconds (duration of
11601 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
11602 to the remaining frames of the @code{mandelbrot} stream.
11603
11604 @subsubsection Hald CLUT with preview
11605
11606 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
11607 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
11608 biggest possible square starting at the top left of the picture. The remaining
11609 padding pixels (bottom or right) will be ignored. This area can be used to add
11610 a preview of the Hald CLUT.
11611
11612 Typically, the following generated Hald CLUT will be supported by the
11613 @code{haldclut} filter:
11614
11615 @example
11616 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
11617    pad=iw+320 [padded_clut];
11618    smptebars=s=320x256, split [a][b];
11619    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
11620    [main][b] overlay=W-320" -frames:v 1 clut.png
11621 @end example
11622
11623 It contains the original and a preview of the effect of the CLUT: SMPTE color
11624 bars are displayed on the right-top, and below the same color bars processed by
11625 the color changes.
11626
11627 Then, the effect of this Hald CLUT can be visualized with:
11628 @example
11629 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
11630 @end example
11631
11632 @section hflip
11633
11634 Flip the input video horizontally.
11635
11636 For example, to horizontally flip the input video with @command{ffmpeg}:
11637 @example
11638 ffmpeg -i in.avi -vf "hflip" out.avi
11639 @end example
11640
11641 @section histeq
11642 This filter applies a global color histogram equalization on a
11643 per-frame basis.
11644
11645 It can be used to correct video that has a compressed range of pixel
11646 intensities.  The filter redistributes the pixel intensities to
11647 equalize their distribution across the intensity range. It may be
11648 viewed as an "automatically adjusting contrast filter". This filter is
11649 useful only for correcting degraded or poorly captured source
11650 video.
11651
11652 The filter accepts the following options:
11653
11654 @table @option
11655 @item strength
11656 Determine the amount of equalization to be applied.  As the strength
11657 is reduced, the distribution of pixel intensities more-and-more
11658 approaches that of the input frame. The value must be a float number
11659 in the range [0,1] and defaults to 0.200.
11660
11661 @item intensity
11662 Set the maximum intensity that can generated and scale the output
11663 values appropriately.  The strength should be set as desired and then
11664 the intensity can be limited if needed to avoid washing-out. The value
11665 must be a float number in the range [0,1] and defaults to 0.210.
11666
11667 @item antibanding
11668 Set the antibanding level. If enabled the filter will randomly vary
11669 the luminance of output pixels by a small amount to avoid banding of
11670 the histogram. Possible values are @code{none}, @code{weak} or
11671 @code{strong}. It defaults to @code{none}.
11672 @end table
11673
11674 @section histogram
11675
11676 Compute and draw a color distribution histogram for the input video.
11677
11678 The computed histogram is a representation of the color component
11679 distribution in an image.
11680
11681 Standard histogram displays the color components distribution in an image.
11682 Displays color graph for each color component. Shows distribution of
11683 the Y, U, V, A or R, G, B components, depending on input format, in the
11684 current frame. Below each graph a color component scale meter is shown.
11685
11686 The filter accepts the following options:
11687
11688 @table @option
11689 @item level_height
11690 Set height of level. Default value is @code{200}.
11691 Allowed range is [50, 2048].
11692
11693 @item scale_height
11694 Set height of color scale. Default value is @code{12}.
11695 Allowed range is [0, 40].
11696
11697 @item display_mode
11698 Set display mode.
11699 It accepts the following values:
11700 @table @samp
11701 @item stack
11702 Per color component graphs are placed below each other.
11703
11704 @item parade
11705 Per color component graphs are placed side by side.
11706
11707 @item overlay
11708 Presents information identical to that in the @code{parade}, except
11709 that the graphs representing color components are superimposed directly
11710 over one another.
11711 @end table
11712 Default is @code{stack}.
11713
11714 @item levels_mode
11715 Set mode. Can be either @code{linear}, or @code{logarithmic}.
11716 Default is @code{linear}.
11717
11718 @item components
11719 Set what color components to display.
11720 Default is @code{7}.
11721
11722 @item fgopacity
11723 Set foreground opacity. Default is @code{0.7}.
11724
11725 @item bgopacity
11726 Set background opacity. Default is @code{0.5}.
11727 @end table
11728
11729 @subsection Examples
11730
11731 @itemize
11732
11733 @item
11734 Calculate and draw histogram:
11735 @example
11736 ffplay -i input -vf histogram
11737 @end example
11738
11739 @end itemize
11740
11741 @anchor{hqdn3d}
11742 @section hqdn3d
11743
11744 This is a high precision/quality 3d denoise filter. It aims to reduce
11745 image noise, producing smooth images and making still images really
11746 still. It should enhance compressibility.
11747
11748 It accepts the following optional parameters:
11749
11750 @table @option
11751 @item luma_spatial
11752 A non-negative floating point number which specifies spatial luma strength.
11753 It defaults to 4.0.
11754
11755 @item chroma_spatial
11756 A non-negative floating point number which specifies spatial chroma strength.
11757 It defaults to 3.0*@var{luma_spatial}/4.0.
11758
11759 @item luma_tmp
11760 A floating point number which specifies luma temporal strength. It defaults to
11761 6.0*@var{luma_spatial}/4.0.
11762
11763 @item chroma_tmp
11764 A floating point number which specifies chroma temporal strength. It defaults to
11765 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
11766 @end table
11767
11768 @anchor{hwdownload}
11769 @section hwdownload
11770
11771 Download hardware frames to system memory.
11772
11773 The input must be in hardware frames, and the output a non-hardware format.
11774 Not all formats will be supported on the output - it may be necessary to insert
11775 an additional @option{format} filter immediately following in the graph to get
11776 the output in a supported format.
11777
11778 @section hwmap
11779
11780 Map hardware frames to system memory or to another device.
11781
11782 This filter has several different modes of operation; which one is used depends
11783 on the input and output formats:
11784 @itemize
11785 @item
11786 Hardware frame input, normal frame output
11787
11788 Map the input frames to system memory and pass them to the output.  If the
11789 original hardware frame is later required (for example, after overlaying
11790 something else on part of it), the @option{hwmap} filter can be used again
11791 in the next mode to retrieve it.
11792 @item
11793 Normal frame input, hardware frame output
11794
11795 If the input is actually a software-mapped hardware frame, then unmap it -
11796 that is, return the original hardware frame.
11797
11798 Otherwise, a device must be provided.  Create new hardware surfaces on that
11799 device for the output, then map them back to the software format at the input
11800 and give those frames to the preceding filter.  This will then act like the
11801 @option{hwupload} filter, but may be able to avoid an additional copy when
11802 the input is already in a compatible format.
11803 @item
11804 Hardware frame input and output
11805
11806 A device must be supplied for the output, either directly or with the
11807 @option{derive_device} option.  The input and output devices must be of
11808 different types and compatible - the exact meaning of this is
11809 system-dependent, but typically it means that they must refer to the same
11810 underlying hardware context (for example, refer to the same graphics card).
11811
11812 If the input frames were originally created on the output device, then unmap
11813 to retrieve the original frames.
11814
11815 Otherwise, map the frames to the output device - create new hardware frames
11816 on the output corresponding to the frames on the input.
11817 @end itemize
11818
11819 The following additional parameters are accepted:
11820
11821 @table @option
11822 @item mode
11823 Set the frame mapping mode.  Some combination of:
11824 @table @var
11825 @item read
11826 The mapped frame should be readable.
11827 @item write
11828 The mapped frame should be writeable.
11829 @item overwrite
11830 The mapping will always overwrite the entire frame.
11831
11832 This may improve performance in some cases, as the original contents of the
11833 frame need not be loaded.
11834 @item direct
11835 The mapping must not involve any copying.
11836
11837 Indirect mappings to copies of frames are created in some cases where either
11838 direct mapping is not possible or it would have unexpected properties.
11839 Setting this flag ensures that the mapping is direct and will fail if that is
11840 not possible.
11841 @end table
11842 Defaults to @var{read+write} if not specified.
11843
11844 @item derive_device @var{type}
11845 Rather than using the device supplied at initialisation, instead derive a new
11846 device of type @var{type} from the device the input frames exist on.
11847
11848 @item reverse
11849 In a hardware to hardware mapping, map in reverse - create frames in the sink
11850 and map them back to the source.  This may be necessary in some cases where
11851 a mapping in one direction is required but only the opposite direction is
11852 supported by the devices being used.
11853
11854 This option is dangerous - it may break the preceding filter in undefined
11855 ways if there are any additional constraints on that filter's output.
11856 Do not use it without fully understanding the implications of its use.
11857 @end table
11858
11859 @anchor{hwupload}
11860 @section hwupload
11861
11862 Upload system memory frames to hardware surfaces.
11863
11864 The device to upload to must be supplied when the filter is initialised.  If
11865 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
11866 option.
11867
11868 @anchor{hwupload_cuda}
11869 @section hwupload_cuda
11870
11871 Upload system memory frames to a CUDA device.
11872
11873 It accepts the following optional parameters:
11874
11875 @table @option
11876 @item device
11877 The number of the CUDA device to use
11878 @end table
11879
11880 @section hqx
11881
11882 Apply a high-quality magnification filter designed for pixel art. This filter
11883 was originally created by Maxim Stepin.
11884
11885 It accepts the following option:
11886
11887 @table @option
11888 @item n
11889 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
11890 @code{hq3x} and @code{4} for @code{hq4x}.
11891 Default is @code{3}.
11892 @end table
11893
11894 @section hstack
11895 Stack input videos horizontally.
11896
11897 All streams must be of same pixel format and of same height.
11898
11899 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
11900 to create same output.
11901
11902 The filter accepts the following option:
11903
11904 @table @option
11905 @item inputs
11906 Set number of input streams. Default is 2.
11907
11908 @item shortest
11909 If set to 1, force the output to terminate when the shortest input
11910 terminates. Default value is 0.
11911 @end table
11912
11913 @section hue
11914
11915 Modify the hue and/or the saturation of the input.
11916
11917 It accepts the following parameters:
11918
11919 @table @option
11920 @item h
11921 Specify the hue angle as a number of degrees. It accepts an expression,
11922 and defaults to "0".
11923
11924 @item s
11925 Specify the saturation in the [-10,10] range. It accepts an expression and
11926 defaults to "1".
11927
11928 @item H
11929 Specify the hue angle as a number of radians. It accepts an
11930 expression, and defaults to "0".
11931
11932 @item b
11933 Specify the brightness in the [-10,10] range. It accepts an expression and
11934 defaults to "0".
11935 @end table
11936
11937 @option{h} and @option{H} are mutually exclusive, and can't be
11938 specified at the same time.
11939
11940 The @option{b}, @option{h}, @option{H} and @option{s} option values are
11941 expressions containing the following constants:
11942
11943 @table @option
11944 @item n
11945 frame count of the input frame starting from 0
11946
11947 @item pts
11948 presentation timestamp of the input frame expressed in time base units
11949
11950 @item r
11951 frame rate of the input video, NAN if the input frame rate is unknown
11952
11953 @item t
11954 timestamp expressed in seconds, NAN if the input timestamp is unknown
11955
11956 @item tb
11957 time base of the input video
11958 @end table
11959
11960 @subsection Examples
11961
11962 @itemize
11963 @item
11964 Set the hue to 90 degrees and the saturation to 1.0:
11965 @example
11966 hue=h=90:s=1
11967 @end example
11968
11969 @item
11970 Same command but expressing the hue in radians:
11971 @example
11972 hue=H=PI/2:s=1
11973 @end example
11974
11975 @item
11976 Rotate hue and make the saturation swing between 0
11977 and 2 over a period of 1 second:
11978 @example
11979 hue="H=2*PI*t: s=sin(2*PI*t)+1"
11980 @end example
11981
11982 @item
11983 Apply a 3 seconds saturation fade-in effect starting at 0:
11984 @example
11985 hue="s=min(t/3\,1)"
11986 @end example
11987
11988 The general fade-in expression can be written as:
11989 @example
11990 hue="s=min(0\, max((t-START)/DURATION\, 1))"
11991 @end example
11992
11993 @item
11994 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
11995 @example
11996 hue="s=max(0\, min(1\, (8-t)/3))"
11997 @end example
11998
11999 The general fade-out expression can be written as:
12000 @example
12001 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
12002 @end example
12003
12004 @end itemize
12005
12006 @subsection Commands
12007
12008 This filter supports the following commands:
12009 @table @option
12010 @item b
12011 @item s
12012 @item h
12013 @item H
12014 Modify the hue and/or the saturation and/or brightness of the input video.
12015 The command accepts the same syntax of the corresponding option.
12016
12017 If the specified expression is not valid, it is kept at its current
12018 value.
12019 @end table
12020
12021 @section hysteresis
12022
12023 Grow first stream into second stream by connecting components.
12024 This makes it possible to build more robust edge masks.
12025
12026 This filter accepts the following options:
12027
12028 @table @option
12029 @item planes
12030 Set which planes will be processed as bitmap, unprocessed planes will be
12031 copied from first stream.
12032 By default value 0xf, all planes will be processed.
12033
12034 @item threshold
12035 Set threshold which is used in filtering. If pixel component value is higher than
12036 this value filter algorithm for connecting components is activated.
12037 By default value is 0.
12038 @end table
12039
12040 @section idet
12041
12042 Detect video interlacing type.
12043
12044 This filter tries to detect if the input frames are interlaced, progressive,
12045 top or bottom field first. It will also try to detect fields that are
12046 repeated between adjacent frames (a sign of telecine).
12047
12048 Single frame detection considers only immediately adjacent frames when classifying each frame.
12049 Multiple frame detection incorporates the classification history of previous frames.
12050
12051 The filter will log these metadata values:
12052
12053 @table @option
12054 @item single.current_frame
12055 Detected type of current frame using single-frame detection. One of:
12056 ``tff'' (top field first), ``bff'' (bottom field first),
12057 ``progressive'', or ``undetermined''
12058
12059 @item single.tff
12060 Cumulative number of frames detected as top field first using single-frame detection.
12061
12062 @item multiple.tff
12063 Cumulative number of frames detected as top field first using multiple-frame detection.
12064
12065 @item single.bff
12066 Cumulative number of frames detected as bottom field first using single-frame detection.
12067
12068 @item multiple.current_frame
12069 Detected type of current frame using multiple-frame detection. One of:
12070 ``tff'' (top field first), ``bff'' (bottom field first),
12071 ``progressive'', or ``undetermined''
12072
12073 @item multiple.bff
12074 Cumulative number of frames detected as bottom field first using multiple-frame detection.
12075
12076 @item single.progressive
12077 Cumulative number of frames detected as progressive using single-frame detection.
12078
12079 @item multiple.progressive
12080 Cumulative number of frames detected as progressive using multiple-frame detection.
12081
12082 @item single.undetermined
12083 Cumulative number of frames that could not be classified using single-frame detection.
12084
12085 @item multiple.undetermined
12086 Cumulative number of frames that could not be classified using multiple-frame detection.
12087
12088 @item repeated.current_frame
12089 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
12090
12091 @item repeated.neither
12092 Cumulative number of frames with no repeated field.
12093
12094 @item repeated.top
12095 Cumulative number of frames with the top field repeated from the previous frame's top field.
12096
12097 @item repeated.bottom
12098 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
12099 @end table
12100
12101 The filter accepts the following options:
12102
12103 @table @option
12104 @item intl_thres
12105 Set interlacing threshold.
12106 @item prog_thres
12107 Set progressive threshold.
12108 @item rep_thres
12109 Threshold for repeated field detection.
12110 @item half_life
12111 Number of frames after which a given frame's contribution to the
12112 statistics is halved (i.e., it contributes only 0.5 to its
12113 classification). The default of 0 means that all frames seen are given
12114 full weight of 1.0 forever.
12115 @item analyze_interlaced_flag
12116 When this is not 0 then idet will use the specified number of frames to determine
12117 if the interlaced flag is accurate, it will not count undetermined frames.
12118 If the flag is found to be accurate it will be used without any further
12119 computations, if it is found to be inaccurate it will be cleared without any
12120 further computations. This allows inserting the idet filter as a low computational
12121 method to clean up the interlaced flag
12122 @end table
12123
12124 @section il
12125
12126 Deinterleave or interleave fields.
12127
12128 This filter allows one to process interlaced images fields without
12129 deinterlacing them. Deinterleaving splits the input frame into 2
12130 fields (so called half pictures). Odd lines are moved to the top
12131 half of the output image, even lines to the bottom half.
12132 You can process (filter) them independently and then re-interleave them.
12133
12134 The filter accepts the following options:
12135
12136 @table @option
12137 @item luma_mode, l
12138 @item chroma_mode, c
12139 @item alpha_mode, a
12140 Available values for @var{luma_mode}, @var{chroma_mode} and
12141 @var{alpha_mode} are:
12142
12143 @table @samp
12144 @item none
12145 Do nothing.
12146
12147 @item deinterleave, d
12148 Deinterleave fields, placing one above the other.
12149
12150 @item interleave, i
12151 Interleave fields. Reverse the effect of deinterleaving.
12152 @end table
12153 Default value is @code{none}.
12154
12155 @item luma_swap, ls
12156 @item chroma_swap, cs
12157 @item alpha_swap, as
12158 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
12159 @end table
12160
12161 @section inflate
12162
12163 Apply inflate effect to the video.
12164
12165 This filter replaces the pixel by the local(3x3) average by taking into account
12166 only values higher than the pixel.
12167
12168 It accepts the following options:
12169
12170 @table @option
12171 @item threshold0
12172 @item threshold1
12173 @item threshold2
12174 @item threshold3
12175 Limit the maximum change for each plane, default is 65535.
12176 If 0, plane will remain unchanged.
12177 @end table
12178
12179 @section interlace
12180
12181 Simple interlacing filter from progressive contents. This interleaves upper (or
12182 lower) lines from odd frames with lower (or upper) lines from even frames,
12183 halving the frame rate and preserving image height.
12184
12185 @example
12186    Original        Original             New Frame
12187    Frame 'j'      Frame 'j+1'             (tff)
12188   ==========      ===========       ==================
12189     Line 0  -------------------->    Frame 'j' Line 0
12190     Line 1          Line 1  ---->   Frame 'j+1' Line 1
12191     Line 2 --------------------->    Frame 'j' Line 2
12192     Line 3          Line 3  ---->   Frame 'j+1' Line 3
12193      ...             ...                   ...
12194 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
12195 @end example
12196
12197 It accepts the following optional parameters:
12198
12199 @table @option
12200 @item scan
12201 This determines whether the interlaced frame is taken from the even
12202 (tff - default) or odd (bff) lines of the progressive frame.
12203
12204 @item lowpass
12205 Vertical lowpass filter to avoid twitter interlacing and
12206 reduce moire patterns.
12207
12208 @table @samp
12209 @item 0, off
12210 Disable vertical lowpass filter
12211
12212 @item 1, linear
12213 Enable linear filter (default)
12214
12215 @item 2, complex
12216 Enable complex filter. This will slightly less reduce twitter and moire
12217 but better retain detail and subjective sharpness impression.
12218
12219 @end table
12220 @end table
12221
12222 @section kerndeint
12223
12224 Deinterlace input video by applying Donald Graft's adaptive kernel
12225 deinterling. Work on interlaced parts of a video to produce
12226 progressive frames.
12227
12228 The description of the accepted parameters follows.
12229
12230 @table @option
12231 @item thresh
12232 Set the threshold which affects the filter's tolerance when
12233 determining if a pixel line must be processed. It must be an integer
12234 in the range [0,255] and defaults to 10. A value of 0 will result in
12235 applying the process on every pixels.
12236
12237 @item map
12238 Paint pixels exceeding the threshold value to white if set to 1.
12239 Default is 0.
12240
12241 @item order
12242 Set the fields order. Swap fields if set to 1, leave fields alone if
12243 0. Default is 0.
12244
12245 @item sharp
12246 Enable additional sharpening if set to 1. Default is 0.
12247
12248 @item twoway
12249 Enable twoway sharpening if set to 1. Default is 0.
12250 @end table
12251
12252 @subsection Examples
12253
12254 @itemize
12255 @item
12256 Apply default values:
12257 @example
12258 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
12259 @end example
12260
12261 @item
12262 Enable additional sharpening:
12263 @example
12264 kerndeint=sharp=1
12265 @end example
12266
12267 @item
12268 Paint processed pixels in white:
12269 @example
12270 kerndeint=map=1
12271 @end example
12272 @end itemize
12273
12274 @section lagfun
12275
12276 Slowly update darker pixels.
12277
12278 This filter makes short flashes of light appear longer.
12279 This filter accepts the following options:
12280
12281 @table @option
12282 @item decay
12283 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
12284
12285 @item planes
12286 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
12287 @end table
12288
12289 @section lenscorrection
12290
12291 Correct radial lens distortion
12292
12293 This filter can be used to correct for radial distortion as can result from the use
12294 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
12295 one can use tools available for example as part of opencv or simply trial-and-error.
12296 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
12297 and extract the k1 and k2 coefficients from the resulting matrix.
12298
12299 Note that effectively the same filter is available in the open-source tools Krita and
12300 Digikam from the KDE project.
12301
12302 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
12303 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
12304 brightness distribution, so you may want to use both filters together in certain
12305 cases, though you will have to take care of ordering, i.e. whether vignetting should
12306 be applied before or after lens correction.
12307
12308 @subsection Options
12309
12310 The filter accepts the following options:
12311
12312 @table @option
12313 @item cx
12314 Relative x-coordinate of the focal point of the image, and thereby the center of the
12315 distortion. This value has a range [0,1] and is expressed as fractions of the image
12316 width. Default is 0.5.
12317 @item cy
12318 Relative y-coordinate of the focal point of the image, and thereby the center of the
12319 distortion. This value has a range [0,1] and is expressed as fractions of the image
12320 height. Default is 0.5.
12321 @item k1
12322 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
12323 no correction. Default is 0.
12324 @item k2
12325 Coefficient of the double quadratic correction term. This value has a range [-1,1].
12326 0 means no correction. Default is 0.
12327 @end table
12328
12329 The formula that generates the correction is:
12330
12331 @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)
12332
12333 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
12334 distances from the focal point in the source and target images, respectively.
12335
12336 @section lensfun
12337
12338 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
12339
12340 The @code{lensfun} filter requires the camera make, camera model, and lens model
12341 to apply the lens correction. The filter will load the lensfun database and
12342 query it to find the corresponding camera and lens entries in the database. As
12343 long as these entries can be found with the given options, the filter can
12344 perform corrections on frames. Note that incomplete strings will result in the
12345 filter choosing the best match with the given options, and the filter will
12346 output the chosen camera and lens models (logged with level "info"). You must
12347 provide the make, camera model, and lens model as they are required.
12348
12349 The filter accepts the following options:
12350
12351 @table @option
12352 @item make
12353 The make of the camera (for example, "Canon"). This option is required.
12354
12355 @item model
12356 The model of the camera (for example, "Canon EOS 100D"). This option is
12357 required.
12358
12359 @item lens_model
12360 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
12361 option is required.
12362
12363 @item mode
12364 The type of correction to apply. The following values are valid options:
12365
12366 @table @samp
12367 @item vignetting
12368 Enables fixing lens vignetting.
12369
12370 @item geometry
12371 Enables fixing lens geometry. This is the default.
12372
12373 @item subpixel
12374 Enables fixing chromatic aberrations.
12375
12376 @item vig_geo
12377 Enables fixing lens vignetting and lens geometry.
12378
12379 @item vig_subpixel
12380 Enables fixing lens vignetting and chromatic aberrations.
12381
12382 @item distortion
12383 Enables fixing both lens geometry and chromatic aberrations.
12384
12385 @item all
12386 Enables all possible corrections.
12387
12388 @end table
12389 @item focal_length
12390 The focal length of the image/video (zoom; expected constant for video). For
12391 example, a 18--55mm lens has focal length range of [18--55], so a value in that
12392 range should be chosen when using that lens. Default 18.
12393
12394 @item aperture
12395 The aperture of the image/video (expected constant for video). Note that
12396 aperture is only used for vignetting correction. Default 3.5.
12397
12398 @item focus_distance
12399 The focus distance of the image/video (expected constant for video). Note that
12400 focus distance is only used for vignetting and only slightly affects the
12401 vignetting correction process. If unknown, leave it at the default value (which
12402 is 1000).
12403
12404 @item scale
12405 The scale factor which is applied after transformation. After correction the
12406 video is no longer necessarily rectangular. This parameter controls how much of
12407 the resulting image is visible. The value 0 means that a value will be chosen
12408 automatically such that there is little or no unmapped area in the output
12409 image. 1.0 means that no additional scaling is done. Lower values may result
12410 in more of the corrected image being visible, while higher values may avoid
12411 unmapped areas in the output.
12412
12413 @item target_geometry
12414 The target geometry of the output image/video. The following values are valid
12415 options:
12416
12417 @table @samp
12418 @item rectilinear (default)
12419 @item fisheye
12420 @item panoramic
12421 @item equirectangular
12422 @item fisheye_orthographic
12423 @item fisheye_stereographic
12424 @item fisheye_equisolid
12425 @item fisheye_thoby
12426 @end table
12427 @item reverse
12428 Apply the reverse of image correction (instead of correcting distortion, apply
12429 it).
12430
12431 @item interpolation
12432 The type of interpolation used when correcting distortion. The following values
12433 are valid options:
12434
12435 @table @samp
12436 @item nearest
12437 @item linear (default)
12438 @item lanczos
12439 @end table
12440 @end table
12441
12442 @subsection Examples
12443
12444 @itemize
12445 @item
12446 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
12447 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
12448 aperture of "8.0".
12449
12450 @example
12451 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
12452 @end example
12453
12454 @item
12455 Apply the same as before, but only for the first 5 seconds of video.
12456
12457 @example
12458 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
12459 @end example
12460
12461 @end itemize
12462
12463 @section libvmaf
12464
12465 Obtain the VMAF (Video Multi-Method Assessment Fusion)
12466 score between two input videos.
12467
12468 The obtained VMAF score is printed through the logging system.
12469
12470 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
12471 After installing the library it can be enabled using:
12472 @code{./configure --enable-libvmaf --enable-version3}.
12473 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
12474
12475 The filter has following options:
12476
12477 @table @option
12478 @item model_path
12479 Set the model path which is to be used for SVM.
12480 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
12481
12482 @item log_path
12483 Set the file path to be used to store logs.
12484
12485 @item log_fmt
12486 Set the format of the log file (xml or json).
12487
12488 @item enable_transform
12489 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
12490 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
12491 Default value: @code{false}
12492
12493 @item phone_model
12494 Invokes the phone model which will generate VMAF scores higher than in the
12495 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
12496 Default value: @code{false}
12497
12498 @item psnr
12499 Enables computing psnr along with vmaf.
12500 Default value: @code{false}
12501
12502 @item ssim
12503 Enables computing ssim along with vmaf.
12504 Default value: @code{false}
12505
12506 @item ms_ssim
12507 Enables computing ms_ssim along with vmaf.
12508 Default value: @code{false}
12509
12510 @item pool
12511 Set the pool method to be used for computing vmaf.
12512 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
12513
12514 @item n_threads
12515 Set number of threads to be used when computing vmaf.
12516 Default value: @code{0}, which makes use of all available logical processors.
12517
12518 @item n_subsample
12519 Set interval for frame subsampling used when computing vmaf.
12520 Default value: @code{1}
12521
12522 @item enable_conf_interval
12523 Enables confidence interval.
12524 Default value: @code{false}
12525 @end table
12526
12527 This filter also supports the @ref{framesync} options.
12528
12529 @subsection Examples
12530 @itemize
12531 @item
12532 On the below examples the input file @file{main.mpg} being processed is
12533 compared with the reference file @file{ref.mpg}.
12534
12535 @example
12536 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
12537 @end example
12538
12539 @item
12540 Example with options:
12541 @example
12542 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
12543 @end example
12544
12545 @item
12546 Example with options and different containers:
12547 @example
12548 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 -
12549 @end example
12550 @end itemize
12551
12552 @section limiter
12553
12554 Limits the pixel components values to the specified range [min, max].
12555
12556 The filter accepts the following options:
12557
12558 @table @option
12559 @item min
12560 Lower bound. Defaults to the lowest allowed value for the input.
12561
12562 @item max
12563 Upper bound. Defaults to the highest allowed value for the input.
12564
12565 @item planes
12566 Specify which planes will be processed. Defaults to all available.
12567 @end table
12568
12569 @section loop
12570
12571 Loop video frames.
12572
12573 The filter accepts the following options:
12574
12575 @table @option
12576 @item loop
12577 Set the number of loops. Setting this value to -1 will result in infinite loops.
12578 Default is 0.
12579
12580 @item size
12581 Set maximal size in number of frames. Default is 0.
12582
12583 @item start
12584 Set first frame of loop. Default is 0.
12585 @end table
12586
12587 @subsection Examples
12588
12589 @itemize
12590 @item
12591 Loop single first frame infinitely:
12592 @example
12593 loop=loop=-1:size=1:start=0
12594 @end example
12595
12596 @item
12597 Loop single first frame 10 times:
12598 @example
12599 loop=loop=10:size=1:start=0
12600 @end example
12601
12602 @item
12603 Loop 10 first frames 5 times:
12604 @example
12605 loop=loop=5:size=10:start=0
12606 @end example
12607 @end itemize
12608
12609 @section lut1d
12610
12611 Apply a 1D LUT to an input video.
12612
12613 The filter accepts the following options:
12614
12615 @table @option
12616 @item file
12617 Set the 1D LUT file name.
12618
12619 Currently supported formats:
12620 @table @samp
12621 @item cube
12622 Iridas
12623 @item csp
12624 cineSpace
12625 @end table
12626
12627 @item interp
12628 Select interpolation mode.
12629
12630 Available values are:
12631
12632 @table @samp
12633 @item nearest
12634 Use values from the nearest defined point.
12635 @item linear
12636 Interpolate values using the linear interpolation.
12637 @item cosine
12638 Interpolate values using the cosine interpolation.
12639 @item cubic
12640 Interpolate values using the cubic interpolation.
12641 @item spline
12642 Interpolate values using the spline interpolation.
12643 @end table
12644 @end table
12645
12646 @anchor{lut3d}
12647 @section lut3d
12648
12649 Apply a 3D LUT to an input video.
12650
12651 The filter accepts the following options:
12652
12653 @table @option
12654 @item file
12655 Set the 3D LUT file name.
12656
12657 Currently supported formats:
12658 @table @samp
12659 @item 3dl
12660 AfterEffects
12661 @item cube
12662 Iridas
12663 @item dat
12664 DaVinci
12665 @item m3d
12666 Pandora
12667 @item csp
12668 cineSpace
12669 @end table
12670 @item interp
12671 Select interpolation mode.
12672
12673 Available values are:
12674
12675 @table @samp
12676 @item nearest
12677 Use values from the nearest defined point.
12678 @item trilinear
12679 Interpolate values using the 8 points defining a cube.
12680 @item tetrahedral
12681 Interpolate values using a tetrahedron.
12682 @end table
12683 @end table
12684
12685 @section lumakey
12686
12687 Turn certain luma values into transparency.
12688
12689 The filter accepts the following options:
12690
12691 @table @option
12692 @item threshold
12693 Set the luma which will be used as base for transparency.
12694 Default value is @code{0}.
12695
12696 @item tolerance
12697 Set the range of luma values to be keyed out.
12698 Default value is @code{0.01}.
12699
12700 @item softness
12701 Set the range of softness. Default value is @code{0}.
12702 Use this to control gradual transition from zero to full transparency.
12703 @end table
12704
12705 @subsection Commands
12706 This filter supports same @ref{commands} as options.
12707 The command accepts the same syntax of the corresponding option.
12708
12709 If the specified expression is not valid, it is kept at its current
12710 value.
12711
12712 @section lut, lutrgb, lutyuv
12713
12714 Compute a look-up table for binding each pixel component input value
12715 to an output value, and apply it to the input video.
12716
12717 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
12718 to an RGB input video.
12719
12720 These filters accept the following parameters:
12721 @table @option
12722 @item c0
12723 set first pixel component expression
12724 @item c1
12725 set second pixel component expression
12726 @item c2
12727 set third pixel component expression
12728 @item c3
12729 set fourth pixel component expression, corresponds to the alpha component
12730
12731 @item r
12732 set red component expression
12733 @item g
12734 set green component expression
12735 @item b
12736 set blue component expression
12737 @item a
12738 alpha component expression
12739
12740 @item y
12741 set Y/luminance component expression
12742 @item u
12743 set U/Cb component expression
12744 @item v
12745 set V/Cr component expression
12746 @end table
12747
12748 Each of them specifies the expression to use for computing the lookup table for
12749 the corresponding pixel component values.
12750
12751 The exact component associated to each of the @var{c*} options depends on the
12752 format in input.
12753
12754 The @var{lut} filter requires either YUV or RGB pixel formats in input,
12755 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
12756
12757 The expressions can contain the following constants and functions:
12758
12759 @table @option
12760 @item w
12761 @item h
12762 The input width and height.
12763
12764 @item val
12765 The input value for the pixel component.
12766
12767 @item clipval
12768 The input value, clipped to the @var{minval}-@var{maxval} range.
12769
12770 @item maxval
12771 The maximum value for the pixel component.
12772
12773 @item minval
12774 The minimum value for the pixel component.
12775
12776 @item negval
12777 The negated value for the pixel component value, clipped to the
12778 @var{minval}-@var{maxval} range; it corresponds to the expression
12779 "maxval-clipval+minval".
12780
12781 @item clip(val)
12782 The computed value in @var{val}, clipped to the
12783 @var{minval}-@var{maxval} range.
12784
12785 @item gammaval(gamma)
12786 The computed gamma correction value of the pixel component value,
12787 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
12788 expression
12789 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
12790
12791 @end table
12792
12793 All expressions default to "val".
12794
12795 @subsection Examples
12796
12797 @itemize
12798 @item
12799 Negate input video:
12800 @example
12801 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
12802 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
12803 @end example
12804
12805 The above is the same as:
12806 @example
12807 lutrgb="r=negval:g=negval:b=negval"
12808 lutyuv="y=negval:u=negval:v=negval"
12809 @end example
12810
12811 @item
12812 Negate luminance:
12813 @example
12814 lutyuv=y=negval
12815 @end example
12816
12817 @item
12818 Remove chroma components, turning the video into a graytone image:
12819 @example
12820 lutyuv="u=128:v=128"
12821 @end example
12822
12823 @item
12824 Apply a luma burning effect:
12825 @example
12826 lutyuv="y=2*val"
12827 @end example
12828
12829 @item
12830 Remove green and blue components:
12831 @example
12832 lutrgb="g=0:b=0"
12833 @end example
12834
12835 @item
12836 Set a constant alpha channel value on input:
12837 @example
12838 format=rgba,lutrgb=a="maxval-minval/2"
12839 @end example
12840
12841 @item
12842 Correct luminance gamma by a factor of 0.5:
12843 @example
12844 lutyuv=y=gammaval(0.5)
12845 @end example
12846
12847 @item
12848 Discard least significant bits of luma:
12849 @example
12850 lutyuv=y='bitand(val, 128+64+32)'
12851 @end example
12852
12853 @item
12854 Technicolor like effect:
12855 @example
12856 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
12857 @end example
12858 @end itemize
12859
12860 @section lut2, tlut2
12861
12862 The @code{lut2} filter takes two input streams and outputs one
12863 stream.
12864
12865 The @code{tlut2} (time lut2) filter takes two consecutive frames
12866 from one single stream.
12867
12868 This filter accepts the following parameters:
12869 @table @option
12870 @item c0
12871 set first pixel component expression
12872 @item c1
12873 set second pixel component expression
12874 @item c2
12875 set third pixel component expression
12876 @item c3
12877 set fourth pixel component expression, corresponds to the alpha component
12878
12879 @item d
12880 set output bit depth, only available for @code{lut2} filter. By default is 0,
12881 which means bit depth is automatically picked from first input format.
12882 @end table
12883
12884 Each of them specifies the expression to use for computing the lookup table for
12885 the corresponding pixel component values.
12886
12887 The exact component associated to each of the @var{c*} options depends on the
12888 format in inputs.
12889
12890 The expressions can contain the following constants:
12891
12892 @table @option
12893 @item w
12894 @item h
12895 The input width and height.
12896
12897 @item x
12898 The first input value for the pixel component.
12899
12900 @item y
12901 The second input value for the pixel component.
12902
12903 @item bdx
12904 The first input video bit depth.
12905
12906 @item bdy
12907 The second input video bit depth.
12908 @end table
12909
12910 All expressions default to "x".
12911
12912 @subsection Examples
12913
12914 @itemize
12915 @item
12916 Highlight differences between two RGB video streams:
12917 @example
12918 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)'
12919 @end example
12920
12921 @item
12922 Highlight differences between two YUV video streams:
12923 @example
12924 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)'
12925 @end example
12926
12927 @item
12928 Show max difference between two video streams:
12929 @example
12930 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)))'
12931 @end example
12932 @end itemize
12933
12934 @section maskedclamp
12935
12936 Clamp the first input stream with the second input and third input stream.
12937
12938 Returns the value of first stream to be between second input
12939 stream - @code{undershoot} and third input stream + @code{overshoot}.
12940
12941 This filter accepts the following options:
12942 @table @option
12943 @item undershoot
12944 Default value is @code{0}.
12945
12946 @item overshoot
12947 Default value is @code{0}.
12948
12949 @item planes
12950 Set which planes will be processed as bitmap, unprocessed planes will be
12951 copied from first stream.
12952 By default value 0xf, all planes will be processed.
12953 @end table
12954
12955 @section maskedmax
12956
12957 Merge the second and third input stream into output stream using absolute differences
12958 between second input stream and first input stream and absolute difference between
12959 third input stream and first input stream. The picked value will be from second input
12960 stream if second absolute difference is greater than first one or from third input stream
12961 otherwise.
12962
12963 This filter accepts the following options:
12964 @table @option
12965 @item planes
12966 Set which planes will be processed as bitmap, unprocessed planes will be
12967 copied from first stream.
12968 By default value 0xf, all planes will be processed.
12969 @end table
12970
12971 @section maskedmerge
12972
12973 Merge the first input stream with the second input stream using per pixel
12974 weights in the third input stream.
12975
12976 A value of 0 in the third stream pixel component means that pixel component
12977 from first stream is returned unchanged, while maximum value (eg. 255 for
12978 8-bit videos) means that pixel component from second stream is returned
12979 unchanged. Intermediate values define the amount of merging between both
12980 input stream's pixel components.
12981
12982 This filter accepts the following options:
12983 @table @option
12984 @item planes
12985 Set which planes will be processed as bitmap, unprocessed planes will be
12986 copied from first stream.
12987 By default value 0xf, all planes will be processed.
12988 @end table
12989
12990 @section maskedmin
12991
12992 Merge the second and third input stream into output stream using absolute differences
12993 between second input stream and first input stream and absolute difference between
12994 third input stream and first input stream. The picked value will be from second input
12995 stream if second absolute difference is less than first one or from third input stream
12996 otherwise.
12997
12998 This filter accepts the following options:
12999 @table @option
13000 @item planes
13001 Set which planes will be processed as bitmap, unprocessed planes will be
13002 copied from first stream.
13003 By default value 0xf, all planes will be processed.
13004 @end table
13005
13006 @section maskfun
13007 Create mask from input video.
13008
13009 For example it is useful to create motion masks after @code{tblend} filter.
13010
13011 This filter accepts the following options:
13012
13013 @table @option
13014 @item low
13015 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
13016
13017 @item high
13018 Set high threshold. Any pixel component higher than this value will be set to max value
13019 allowed for current pixel format.
13020
13021 @item planes
13022 Set planes to filter, by default all available planes are filtered.
13023
13024 @item fill
13025 Fill all frame pixels with this value.
13026
13027 @item sum
13028 Set max average pixel value for frame. If sum of all pixel components is higher that this
13029 average, output frame will be completely filled with value set by @var{fill} option.
13030 Typically useful for scene changes when used in combination with @code{tblend} filter.
13031 @end table
13032
13033 @section mcdeint
13034
13035 Apply motion-compensation deinterlacing.
13036
13037 It needs one field per frame as input and must thus be used together
13038 with yadif=1/3 or equivalent.
13039
13040 This filter accepts the following options:
13041 @table @option
13042 @item mode
13043 Set the deinterlacing mode.
13044
13045 It accepts one of the following values:
13046 @table @samp
13047 @item fast
13048 @item medium
13049 @item slow
13050 use iterative motion estimation
13051 @item extra_slow
13052 like @samp{slow}, but use multiple reference frames.
13053 @end table
13054 Default value is @samp{fast}.
13055
13056 @item parity
13057 Set the picture field parity assumed for the input video. It must be
13058 one of the following values:
13059
13060 @table @samp
13061 @item 0, tff
13062 assume top field first
13063 @item 1, bff
13064 assume bottom field first
13065 @end table
13066
13067 Default value is @samp{bff}.
13068
13069 @item qp
13070 Set per-block quantization parameter (QP) used by the internal
13071 encoder.
13072
13073 Higher values should result in a smoother motion vector field but less
13074 optimal individual vectors. Default value is 1.
13075 @end table
13076
13077 @section median
13078
13079 Pick median pixel from certain rectangle defined by radius.
13080
13081 This filter accepts the following options:
13082
13083 @table @option
13084 @item radius
13085 Set horizontal radius size. Default value is @code{1}.
13086 Allowed range is integer from 1 to 127.
13087
13088 @item planes
13089 Set which planes to process. Default is @code{15}, which is all available planes.
13090
13091 @item radiusV
13092 Set vertical radius size. Default value is @code{0}.
13093 Allowed range is integer from 0 to 127.
13094 If it is 0, value will be picked from horizontal @code{radius} option.
13095 @end table
13096
13097 @subsection Commands
13098 This filter supports same @ref{commands} as options.
13099 The command accepts the same syntax of the corresponding option.
13100
13101 If the specified expression is not valid, it is kept at its current
13102 value.
13103
13104 @section mergeplanes
13105
13106 Merge color channel components from several video streams.
13107
13108 The filter accepts up to 4 input streams, and merge selected input
13109 planes to the output video.
13110
13111 This filter accepts the following options:
13112 @table @option
13113 @item mapping
13114 Set input to output plane mapping. Default is @code{0}.
13115
13116 The mappings is specified as a bitmap. It should be specified as a
13117 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
13118 mapping for the first plane of the output stream. 'A' sets the number of
13119 the input stream to use (from 0 to 3), and 'a' the plane number of the
13120 corresponding input to use (from 0 to 3). The rest of the mappings is
13121 similar, 'Bb' describes the mapping for the output stream second
13122 plane, 'Cc' describes the mapping for the output stream third plane and
13123 'Dd' describes the mapping for the output stream fourth plane.
13124
13125 @item format
13126 Set output pixel format. Default is @code{yuva444p}.
13127 @end table
13128
13129 @subsection Examples
13130
13131 @itemize
13132 @item
13133 Merge three gray video streams of same width and height into single video stream:
13134 @example
13135 [a0][a1][a2]mergeplanes=0x001020:yuv444p
13136 @end example
13137
13138 @item
13139 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
13140 @example
13141 [a0][a1]mergeplanes=0x00010210:yuva444p
13142 @end example
13143
13144 @item
13145 Swap Y and A plane in yuva444p stream:
13146 @example
13147 format=yuva444p,mergeplanes=0x03010200:yuva444p
13148 @end example
13149
13150 @item
13151 Swap U and V plane in yuv420p stream:
13152 @example
13153 format=yuv420p,mergeplanes=0x000201:yuv420p
13154 @end example
13155
13156 @item
13157 Cast a rgb24 clip to yuv444p:
13158 @example
13159 format=rgb24,mergeplanes=0x000102:yuv444p
13160 @end example
13161 @end itemize
13162
13163 @section mestimate
13164
13165 Estimate and export motion vectors using block matching algorithms.
13166 Motion vectors are stored in frame side data to be used by other filters.
13167
13168 This filter accepts the following options:
13169 @table @option
13170 @item method
13171 Specify the motion estimation method. Accepts one of the following values:
13172
13173 @table @samp
13174 @item esa
13175 Exhaustive search algorithm.
13176 @item tss
13177 Three step search algorithm.
13178 @item tdls
13179 Two dimensional logarithmic search algorithm.
13180 @item ntss
13181 New three step search algorithm.
13182 @item fss
13183 Four step search algorithm.
13184 @item ds
13185 Diamond search algorithm.
13186 @item hexbs
13187 Hexagon-based search algorithm.
13188 @item epzs
13189 Enhanced predictive zonal search algorithm.
13190 @item umh
13191 Uneven multi-hexagon search algorithm.
13192 @end table
13193 Default value is @samp{esa}.
13194
13195 @item mb_size
13196 Macroblock size. Default @code{16}.
13197
13198 @item search_param
13199 Search parameter. Default @code{7}.
13200 @end table
13201
13202 @section midequalizer
13203
13204 Apply Midway Image Equalization effect using two video streams.
13205
13206 Midway Image Equalization adjusts a pair of images to have the same
13207 histogram, while maintaining their dynamics as much as possible. It's
13208 useful for e.g. matching exposures from a pair of stereo cameras.
13209
13210 This filter has two inputs and one output, which must be of same pixel format, but
13211 may be of different sizes. The output of filter is first input adjusted with
13212 midway histogram of both inputs.
13213
13214 This filter accepts the following option:
13215
13216 @table @option
13217 @item planes
13218 Set which planes to process. Default is @code{15}, which is all available planes.
13219 @end table
13220
13221 @section minterpolate
13222
13223 Convert the video to specified frame rate using motion interpolation.
13224
13225 This filter accepts the following options:
13226 @table @option
13227 @item fps
13228 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}.
13229
13230 @item mi_mode
13231 Motion interpolation mode. Following values are accepted:
13232 @table @samp
13233 @item dup
13234 Duplicate previous or next frame for interpolating new ones.
13235 @item blend
13236 Blend source frames. Interpolated frame is mean of previous and next frames.
13237 @item mci
13238 Motion compensated interpolation. Following options are effective when this mode is selected:
13239
13240 @table @samp
13241 @item mc_mode
13242 Motion compensation mode. Following values are accepted:
13243 @table @samp
13244 @item obmc
13245 Overlapped block motion compensation.
13246 @item aobmc
13247 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
13248 @end table
13249 Default mode is @samp{obmc}.
13250
13251 @item me_mode
13252 Motion estimation mode. Following values are accepted:
13253 @table @samp
13254 @item bidir
13255 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
13256 @item bilat
13257 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
13258 @end table
13259 Default mode is @samp{bilat}.
13260
13261 @item me
13262 The algorithm to be used for motion estimation. Following values are accepted:
13263 @table @samp
13264 @item esa
13265 Exhaustive search algorithm.
13266 @item tss
13267 Three step search algorithm.
13268 @item tdls
13269 Two dimensional logarithmic search algorithm.
13270 @item ntss
13271 New three step search algorithm.
13272 @item fss
13273 Four step search algorithm.
13274 @item ds
13275 Diamond search algorithm.
13276 @item hexbs
13277 Hexagon-based search algorithm.
13278 @item epzs
13279 Enhanced predictive zonal search algorithm.
13280 @item umh
13281 Uneven multi-hexagon search algorithm.
13282 @end table
13283 Default algorithm is @samp{epzs}.
13284
13285 @item mb_size
13286 Macroblock size. Default @code{16}.
13287
13288 @item search_param
13289 Motion estimation search parameter. Default @code{32}.
13290
13291 @item vsbmc
13292 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).
13293 @end table
13294 @end table
13295
13296 @item scd
13297 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:
13298 @table @samp
13299 @item none
13300 Disable scene change detection.
13301 @item fdiff
13302 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
13303 @end table
13304 Default method is @samp{fdiff}.
13305
13306 @item scd_threshold
13307 Scene change detection threshold. Default is @code{5.0}.
13308 @end table
13309
13310 @section mix
13311
13312 Mix several video input streams into one video stream.
13313
13314 A description of the accepted options follows.
13315
13316 @table @option
13317 @item nb_inputs
13318 The number of inputs. If unspecified, it defaults to 2.
13319
13320 @item weights
13321 Specify weight of each input video stream as sequence.
13322 Each weight is separated by space. If number of weights
13323 is smaller than number of @var{frames} last specified
13324 weight will be used for all remaining unset weights.
13325
13326 @item scale
13327 Specify scale, if it is set it will be multiplied with sum
13328 of each weight multiplied with pixel values to give final destination
13329 pixel value. By default @var{scale} is auto scaled to sum of weights.
13330
13331 @item duration
13332 Specify how end of stream is determined.
13333 @table @samp
13334 @item longest
13335 The duration of the longest input. (default)
13336
13337 @item shortest
13338 The duration of the shortest input.
13339
13340 @item first
13341 The duration of the first input.
13342 @end table
13343 @end table
13344
13345 @section mpdecimate
13346
13347 Drop frames that do not differ greatly from the previous frame in
13348 order to reduce frame rate.
13349
13350 The main use of this filter is for very-low-bitrate encoding
13351 (e.g. streaming over dialup modem), but it could in theory be used for
13352 fixing movies that were inverse-telecined incorrectly.
13353
13354 A description of the accepted options follows.
13355
13356 @table @option
13357 @item max
13358 Set the maximum number of consecutive frames which can be dropped (if
13359 positive), or the minimum interval between dropped frames (if
13360 negative). If the value is 0, the frame is dropped disregarding the
13361 number of previous sequentially dropped frames.
13362
13363 Default value is 0.
13364
13365 @item hi
13366 @item lo
13367 @item frac
13368 Set the dropping threshold values.
13369
13370 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
13371 represent actual pixel value differences, so a threshold of 64
13372 corresponds to 1 unit of difference for each pixel, or the same spread
13373 out differently over the block.
13374
13375 A frame is a candidate for dropping if no 8x8 blocks differ by more
13376 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
13377 meaning the whole image) differ by more than a threshold of @option{lo}.
13378
13379 Default value for @option{hi} is 64*12, default value for @option{lo} is
13380 64*5, and default value for @option{frac} is 0.33.
13381 @end table
13382
13383
13384 @section negate
13385
13386 Negate (invert) the input video.
13387
13388 It accepts the following option:
13389
13390 @table @option
13391
13392 @item negate_alpha
13393 With value 1, it negates the alpha component, if present. Default value is 0.
13394 @end table
13395
13396 @anchor{nlmeans}
13397 @section nlmeans
13398
13399 Denoise frames using Non-Local Means algorithm.
13400
13401 Each pixel is adjusted by looking for other pixels with similar contexts. This
13402 context similarity is defined by comparing their surrounding patches of size
13403 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
13404 around the pixel.
13405
13406 Note that the research area defines centers for patches, which means some
13407 patches will be made of pixels outside that research area.
13408
13409 The filter accepts the following options.
13410
13411 @table @option
13412 @item s
13413 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
13414
13415 @item p
13416 Set patch size. Default is 7. Must be odd number in range [0, 99].
13417
13418 @item pc
13419 Same as @option{p} but for chroma planes.
13420
13421 The default value is @var{0} and means automatic.
13422
13423 @item r
13424 Set research size. Default is 15. Must be odd number in range [0, 99].
13425
13426 @item rc
13427 Same as @option{r} but for chroma planes.
13428
13429 The default value is @var{0} and means automatic.
13430 @end table
13431
13432 @section nnedi
13433
13434 Deinterlace video using neural network edge directed interpolation.
13435
13436 This filter accepts the following options:
13437
13438 @table @option
13439 @item weights
13440 Mandatory option, without binary file filter can not work.
13441 Currently file can be found here:
13442 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
13443
13444 @item deint
13445 Set which frames to deinterlace, by default it is @code{all}.
13446 Can be @code{all} or @code{interlaced}.
13447
13448 @item field
13449 Set mode of operation.
13450
13451 Can be one of the following:
13452
13453 @table @samp
13454 @item af
13455 Use frame flags, both fields.
13456 @item a
13457 Use frame flags, single field.
13458 @item t
13459 Use top field only.
13460 @item b
13461 Use bottom field only.
13462 @item tf
13463 Use both fields, top first.
13464 @item bf
13465 Use both fields, bottom first.
13466 @end table
13467
13468 @item planes
13469 Set which planes to process, by default filter process all frames.
13470
13471 @item nsize
13472 Set size of local neighborhood around each pixel, used by the predictor neural
13473 network.
13474
13475 Can be one of the following:
13476
13477 @table @samp
13478 @item s8x6
13479 @item s16x6
13480 @item s32x6
13481 @item s48x6
13482 @item s8x4
13483 @item s16x4
13484 @item s32x4
13485 @end table
13486
13487 @item nns
13488 Set the number of neurons in predictor neural network.
13489 Can be one of the following:
13490
13491 @table @samp
13492 @item n16
13493 @item n32
13494 @item n64
13495 @item n128
13496 @item n256
13497 @end table
13498
13499 @item qual
13500 Controls the number of different neural network predictions that are blended
13501 together to compute the final output value. Can be @code{fast}, default or
13502 @code{slow}.
13503
13504 @item etype
13505 Set which set of weights to use in the predictor.
13506 Can be one of the following:
13507
13508 @table @samp
13509 @item a
13510 weights trained to minimize absolute error
13511 @item s
13512 weights trained to minimize squared error
13513 @end table
13514
13515 @item pscrn
13516 Controls whether or not the prescreener neural network is used to decide
13517 which pixels should be processed by the predictor neural network and which
13518 can be handled by simple cubic interpolation.
13519 The prescreener is trained to know whether cubic interpolation will be
13520 sufficient for a pixel or whether it should be predicted by the predictor nn.
13521 The computational complexity of the prescreener nn is much less than that of
13522 the predictor nn. Since most pixels can be handled by cubic interpolation,
13523 using the prescreener generally results in much faster processing.
13524 The prescreener is pretty accurate, so the difference between using it and not
13525 using it is almost always unnoticeable.
13526
13527 Can be one of the following:
13528
13529 @table @samp
13530 @item none
13531 @item original
13532 @item new
13533 @end table
13534
13535 Default is @code{new}.
13536
13537 @item fapprox
13538 Set various debugging flags.
13539 @end table
13540
13541 @section noformat
13542
13543 Force libavfilter not to use any of the specified pixel formats for the
13544 input to the next filter.
13545
13546 It accepts the following parameters:
13547 @table @option
13548
13549 @item pix_fmts
13550 A '|'-separated list of pixel format names, such as
13551 pix_fmts=yuv420p|monow|rgb24".
13552
13553 @end table
13554
13555 @subsection Examples
13556
13557 @itemize
13558 @item
13559 Force libavfilter to use a format different from @var{yuv420p} for the
13560 input to the vflip filter:
13561 @example
13562 noformat=pix_fmts=yuv420p,vflip
13563 @end example
13564
13565 @item
13566 Convert the input video to any of the formats not contained in the list:
13567 @example
13568 noformat=yuv420p|yuv444p|yuv410p
13569 @end example
13570 @end itemize
13571
13572 @section noise
13573
13574 Add noise on video input frame.
13575
13576 The filter accepts the following options:
13577
13578 @table @option
13579 @item all_seed
13580 @item c0_seed
13581 @item c1_seed
13582 @item c2_seed
13583 @item c3_seed
13584 Set noise seed for specific pixel component or all pixel components in case
13585 of @var{all_seed}. Default value is @code{123457}.
13586
13587 @item all_strength, alls
13588 @item c0_strength, c0s
13589 @item c1_strength, c1s
13590 @item c2_strength, c2s
13591 @item c3_strength, c3s
13592 Set noise strength for specific pixel component or all pixel components in case
13593 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
13594
13595 @item all_flags, allf
13596 @item c0_flags, c0f
13597 @item c1_flags, c1f
13598 @item c2_flags, c2f
13599 @item c3_flags, c3f
13600 Set pixel component flags or set flags for all components if @var{all_flags}.
13601 Available values for component flags are:
13602 @table @samp
13603 @item a
13604 averaged temporal noise (smoother)
13605 @item p
13606 mix random noise with a (semi)regular pattern
13607 @item t
13608 temporal noise (noise pattern changes between frames)
13609 @item u
13610 uniform noise (gaussian otherwise)
13611 @end table
13612 @end table
13613
13614 @subsection Examples
13615
13616 Add temporal and uniform noise to input video:
13617 @example
13618 noise=alls=20:allf=t+u
13619 @end example
13620
13621 @section normalize
13622
13623 Normalize RGB video (aka histogram stretching, contrast stretching).
13624 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
13625
13626 For each channel of each frame, the filter computes the input range and maps
13627 it linearly to the user-specified output range. The output range defaults
13628 to the full dynamic range from pure black to pure white.
13629
13630 Temporal smoothing can be used on the input range to reduce flickering (rapid
13631 changes in brightness) caused when small dark or bright objects enter or leave
13632 the scene. This is similar to the auto-exposure (automatic gain control) on a
13633 video camera, and, like a video camera, it may cause a period of over- or
13634 under-exposure of the video.
13635
13636 The R,G,B channels can be normalized independently, which may cause some
13637 color shifting, or linked together as a single channel, which prevents
13638 color shifting. Linked normalization preserves hue. Independent normalization
13639 does not, so it can be used to remove some color casts. Independent and linked
13640 normalization can be combined in any ratio.
13641
13642 The normalize filter accepts the following options:
13643
13644 @table @option
13645 @item blackpt
13646 @item whitept
13647 Colors which define the output range. The minimum input value is mapped to
13648 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
13649 The defaults are black and white respectively. Specifying white for
13650 @var{blackpt} and black for @var{whitept} will give color-inverted,
13651 normalized video. Shades of grey can be used to reduce the dynamic range
13652 (contrast). Specifying saturated colors here can create some interesting
13653 effects.
13654
13655 @item smoothing
13656 The number of previous frames to use for temporal smoothing. The input range
13657 of each channel is smoothed using a rolling average over the current frame
13658 and the @var{smoothing} previous frames. The default is 0 (no temporal
13659 smoothing).
13660
13661 @item independence
13662 Controls the ratio of independent (color shifting) channel normalization to
13663 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
13664 independent. Defaults to 1.0 (fully independent).
13665
13666 @item strength
13667 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
13668 expensive no-op. Defaults to 1.0 (full strength).
13669
13670 @end table
13671
13672 @subsection Commands
13673 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
13674 The command accepts the same syntax of the corresponding option.
13675
13676 If the specified expression is not valid, it is kept at its current
13677 value.
13678
13679 @subsection Examples
13680
13681 Stretch video contrast to use the full dynamic range, with no temporal
13682 smoothing; may flicker depending on the source content:
13683 @example
13684 normalize=blackpt=black:whitept=white:smoothing=0
13685 @end example
13686
13687 As above, but with 50 frames of temporal smoothing; flicker should be
13688 reduced, depending on the source content:
13689 @example
13690 normalize=blackpt=black:whitept=white:smoothing=50
13691 @end example
13692
13693 As above, but with hue-preserving linked channel normalization:
13694 @example
13695 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
13696 @end example
13697
13698 As above, but with half strength:
13699 @example
13700 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
13701 @end example
13702
13703 Map the darkest input color to red, the brightest input color to cyan:
13704 @example
13705 normalize=blackpt=red:whitept=cyan
13706 @end example
13707
13708 @section null
13709
13710 Pass the video source unchanged to the output.
13711
13712 @section ocr
13713 Optical Character Recognition
13714
13715 This filter uses Tesseract for optical character recognition. To enable
13716 compilation of this filter, you need to configure FFmpeg with
13717 @code{--enable-libtesseract}.
13718
13719 It accepts the following options:
13720
13721 @table @option
13722 @item datapath
13723 Set datapath to tesseract data. Default is to use whatever was
13724 set at installation.
13725
13726 @item language
13727 Set language, default is "eng".
13728
13729 @item whitelist
13730 Set character whitelist.
13731
13732 @item blacklist
13733 Set character blacklist.
13734 @end table
13735
13736 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
13737 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
13738
13739 @section ocv
13740
13741 Apply a video transform using libopencv.
13742
13743 To enable this filter, install the libopencv library and headers and
13744 configure FFmpeg with @code{--enable-libopencv}.
13745
13746 It accepts the following parameters:
13747
13748 @table @option
13749
13750 @item filter_name
13751 The name of the libopencv filter to apply.
13752
13753 @item filter_params
13754 The parameters to pass to the libopencv filter. If not specified, the default
13755 values are assumed.
13756
13757 @end table
13758
13759 Refer to the official libopencv documentation for more precise
13760 information:
13761 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
13762
13763 Several libopencv filters are supported; see the following subsections.
13764
13765 @anchor{dilate}
13766 @subsection dilate
13767
13768 Dilate an image by using a specific structuring element.
13769 It corresponds to the libopencv function @code{cvDilate}.
13770
13771 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
13772
13773 @var{struct_el} represents a structuring element, and has the syntax:
13774 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
13775
13776 @var{cols} and @var{rows} represent the number of columns and rows of
13777 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
13778 point, and @var{shape} the shape for the structuring element. @var{shape}
13779 must be "rect", "cross", "ellipse", or "custom".
13780
13781 If the value for @var{shape} is "custom", it must be followed by a
13782 string of the form "=@var{filename}". The file with name
13783 @var{filename} is assumed to represent a binary image, with each
13784 printable character corresponding to a bright pixel. When a custom
13785 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
13786 or columns and rows of the read file are assumed instead.
13787
13788 The default value for @var{struct_el} is "3x3+0x0/rect".
13789
13790 @var{nb_iterations} specifies the number of times the transform is
13791 applied to the image, and defaults to 1.
13792
13793 Some examples:
13794 @example
13795 # Use the default values
13796 ocv=dilate
13797
13798 # Dilate using a structuring element with a 5x5 cross, iterating two times
13799 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
13800
13801 # Read the shape from the file diamond.shape, iterating two times.
13802 # The file diamond.shape may contain a pattern of characters like this
13803 #   *
13804 #  ***
13805 # *****
13806 #  ***
13807 #   *
13808 # The specified columns and rows are ignored
13809 # but the anchor point coordinates are not
13810 ocv=dilate:0x0+2x2/custom=diamond.shape|2
13811 @end example
13812
13813 @subsection erode
13814
13815 Erode an image by using a specific structuring element.
13816 It corresponds to the libopencv function @code{cvErode}.
13817
13818 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
13819 with the same syntax and semantics as the @ref{dilate} filter.
13820
13821 @subsection smooth
13822
13823 Smooth the input video.
13824
13825 The filter takes the following parameters:
13826 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
13827
13828 @var{type} is the type of smooth filter to apply, and must be one of
13829 the following values: "blur", "blur_no_scale", "median", "gaussian",
13830 or "bilateral". The default value is "gaussian".
13831
13832 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
13833 depends on the smooth type. @var{param1} and
13834 @var{param2} accept integer positive values or 0. @var{param3} and
13835 @var{param4} accept floating point values.
13836
13837 The default value for @var{param1} is 3. The default value for the
13838 other parameters is 0.
13839
13840 These parameters correspond to the parameters assigned to the
13841 libopencv function @code{cvSmooth}.
13842
13843 @section oscilloscope
13844
13845 2D Video Oscilloscope.
13846
13847 Useful to measure spatial impulse, step responses, chroma delays, etc.
13848
13849 It accepts the following parameters:
13850
13851 @table @option
13852 @item x
13853 Set scope center x position.
13854
13855 @item y
13856 Set scope center y position.
13857
13858 @item s
13859 Set scope size, relative to frame diagonal.
13860
13861 @item t
13862 Set scope tilt/rotation.
13863
13864 @item o
13865 Set trace opacity.
13866
13867 @item tx
13868 Set trace center x position.
13869
13870 @item ty
13871 Set trace center y position.
13872
13873 @item tw
13874 Set trace width, relative to width of frame.
13875
13876 @item th
13877 Set trace height, relative to height of frame.
13878
13879 @item c
13880 Set which components to trace. By default it traces first three components.
13881
13882 @item g
13883 Draw trace grid. By default is enabled.
13884
13885 @item st
13886 Draw some statistics. By default is enabled.
13887
13888 @item sc
13889 Draw scope. By default is enabled.
13890 @end table
13891
13892 @subsection Commands
13893 This filter supports same @ref{commands} as options.
13894 The command accepts the same syntax of the corresponding option.
13895
13896 If the specified expression is not valid, it is kept at its current
13897 value.
13898
13899 @subsection Examples
13900
13901 @itemize
13902 @item
13903 Inspect full first row of video frame.
13904 @example
13905 oscilloscope=x=0.5:y=0:s=1
13906 @end example
13907
13908 @item
13909 Inspect full last row of video frame.
13910 @example
13911 oscilloscope=x=0.5:y=1:s=1
13912 @end example
13913
13914 @item
13915 Inspect full 5th line of video frame of height 1080.
13916 @example
13917 oscilloscope=x=0.5:y=5/1080:s=1
13918 @end example
13919
13920 @item
13921 Inspect full last column of video frame.
13922 @example
13923 oscilloscope=x=1:y=0.5:s=1:t=1
13924 @end example
13925
13926 @end itemize
13927
13928 @anchor{overlay}
13929 @section overlay
13930
13931 Overlay one video on top of another.
13932
13933 It takes two inputs and has one output. The first input is the "main"
13934 video on which the second input is overlaid.
13935
13936 It accepts the following parameters:
13937
13938 A description of the accepted options follows.
13939
13940 @table @option
13941 @item x
13942 @item y
13943 Set the expression for the x and y coordinates of the overlaid video
13944 on the main video. Default value is "0" for both expressions. In case
13945 the expression is invalid, it is set to a huge value (meaning that the
13946 overlay will not be displayed within the output visible area).
13947
13948 @item eof_action
13949 See @ref{framesync}.
13950
13951 @item eval
13952 Set when the expressions for @option{x}, and @option{y} are evaluated.
13953
13954 It accepts the following values:
13955 @table @samp
13956 @item init
13957 only evaluate expressions once during the filter initialization or
13958 when a command is processed
13959
13960 @item frame
13961 evaluate expressions for each incoming frame
13962 @end table
13963
13964 Default value is @samp{frame}.
13965
13966 @item shortest
13967 See @ref{framesync}.
13968
13969 @item format
13970 Set the format for the output video.
13971
13972 It accepts the following values:
13973 @table @samp
13974 @item yuv420
13975 force YUV420 output
13976
13977 @item yuv422
13978 force YUV422 output
13979
13980 @item yuv444
13981 force YUV444 output
13982
13983 @item rgb
13984 force packed RGB output
13985
13986 @item gbrp
13987 force planar RGB output
13988
13989 @item auto
13990 automatically pick format
13991 @end table
13992
13993 Default value is @samp{yuv420}.
13994
13995 @item repeatlast
13996 See @ref{framesync}.
13997
13998 @item alpha
13999 Set format of alpha of the overlaid video, it can be @var{straight} or
14000 @var{premultiplied}. Default is @var{straight}.
14001 @end table
14002
14003 The @option{x}, and @option{y} expressions can contain the following
14004 parameters.
14005
14006 @table @option
14007 @item main_w, W
14008 @item main_h, H
14009 The main input width and height.
14010
14011 @item overlay_w, w
14012 @item overlay_h, h
14013 The overlay input width and height.
14014
14015 @item x
14016 @item y
14017 The computed values for @var{x} and @var{y}. They are evaluated for
14018 each new frame.
14019
14020 @item hsub
14021 @item vsub
14022 horizontal and vertical chroma subsample values of the output
14023 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
14024 @var{vsub} is 1.
14025
14026 @item n
14027 the number of input frame, starting from 0
14028
14029 @item pos
14030 the position in the file of the input frame, NAN if unknown
14031
14032 @item t
14033 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
14034
14035 @end table
14036
14037 This filter also supports the @ref{framesync} options.
14038
14039 Note that the @var{n}, @var{pos}, @var{t} variables are available only
14040 when evaluation is done @emph{per frame}, and will evaluate to NAN
14041 when @option{eval} is set to @samp{init}.
14042
14043 Be aware that frames are taken from each input video in timestamp
14044 order, hence, if their initial timestamps differ, it is a good idea
14045 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
14046 have them begin in the same zero timestamp, as the example for
14047 the @var{movie} filter does.
14048
14049 You can chain together more overlays but you should test the
14050 efficiency of such approach.
14051
14052 @subsection Commands
14053
14054 This filter supports the following commands:
14055 @table @option
14056 @item x
14057 @item y
14058 Modify the x and y of the overlay input.
14059 The command accepts the same syntax of the corresponding option.
14060
14061 If the specified expression is not valid, it is kept at its current
14062 value.
14063 @end table
14064
14065 @subsection Examples
14066
14067 @itemize
14068 @item
14069 Draw the overlay at 10 pixels from the bottom right corner of the main
14070 video:
14071 @example
14072 overlay=main_w-overlay_w-10:main_h-overlay_h-10
14073 @end example
14074
14075 Using named options the example above becomes:
14076 @example
14077 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
14078 @end example
14079
14080 @item
14081 Insert a transparent PNG logo in the bottom left corner of the input,
14082 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
14083 @example
14084 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
14085 @end example
14086
14087 @item
14088 Insert 2 different transparent PNG logos (second logo on bottom
14089 right corner) using the @command{ffmpeg} tool:
14090 @example
14091 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
14092 @end example
14093
14094 @item
14095 Add a transparent color layer on top of the main video; @code{WxH}
14096 must specify the size of the main input to the overlay filter:
14097 @example
14098 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
14099 @end example
14100
14101 @item
14102 Play an original video and a filtered version (here with the deshake
14103 filter) side by side using the @command{ffplay} tool:
14104 @example
14105 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
14106 @end example
14107
14108 The above command is the same as:
14109 @example
14110 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
14111 @end example
14112
14113 @item
14114 Make a sliding overlay appearing from the left to the right top part of the
14115 screen starting since time 2:
14116 @example
14117 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
14118 @end example
14119
14120 @item
14121 Compose output by putting two input videos side to side:
14122 @example
14123 ffmpeg -i left.avi -i right.avi -filter_complex "
14124 nullsrc=size=200x100 [background];
14125 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
14126 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
14127 [background][left]       overlay=shortest=1       [background+left];
14128 [background+left][right] overlay=shortest=1:x=100 [left+right]
14129 "
14130 @end example
14131
14132 @item
14133 Mask 10-20 seconds of a video by applying the delogo filter to a section
14134 @example
14135 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
14136 -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]'
14137 masked.avi
14138 @end example
14139
14140 @item
14141 Chain several overlays in cascade:
14142 @example
14143 nullsrc=s=200x200 [bg];
14144 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
14145 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
14146 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
14147 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
14148 [in3] null,       [mid2] overlay=100:100 [out0]
14149 @end example
14150
14151 @end itemize
14152
14153 @section owdenoise
14154
14155 Apply Overcomplete Wavelet denoiser.
14156
14157 The filter accepts the following options:
14158
14159 @table @option
14160 @item depth
14161 Set depth.
14162
14163 Larger depth values will denoise lower frequency components more, but
14164 slow down filtering.
14165
14166 Must be an int in the range 8-16, default is @code{8}.
14167
14168 @item luma_strength, ls
14169 Set luma strength.
14170
14171 Must be a double value in the range 0-1000, default is @code{1.0}.
14172
14173 @item chroma_strength, cs
14174 Set chroma strength.
14175
14176 Must be a double value in the range 0-1000, default is @code{1.0}.
14177 @end table
14178
14179 @anchor{pad}
14180 @section pad
14181
14182 Add paddings to the input image, and place the original input at the
14183 provided @var{x}, @var{y} coordinates.
14184
14185 It accepts the following parameters:
14186
14187 @table @option
14188 @item width, w
14189 @item height, h
14190 Specify an expression for the size of the output image with the
14191 paddings added. If the value for @var{width} or @var{height} is 0, the
14192 corresponding input size is used for the output.
14193
14194 The @var{width} expression can reference the value set by the
14195 @var{height} expression, and vice versa.
14196
14197 The default value of @var{width} and @var{height} is 0.
14198
14199 @item x
14200 @item y
14201 Specify the offsets to place the input image at within the padded area,
14202 with respect to the top/left border of the output image.
14203
14204 The @var{x} expression can reference the value set by the @var{y}
14205 expression, and vice versa.
14206
14207 The default value of @var{x} and @var{y} is 0.
14208
14209 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
14210 so the input image is centered on the padded area.
14211
14212 @item color
14213 Specify the color of the padded area. For the syntax of this option,
14214 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
14215 manual,ffmpeg-utils}.
14216
14217 The default value of @var{color} is "black".
14218
14219 @item eval
14220 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
14221
14222 It accepts the following values:
14223
14224 @table @samp
14225 @item init
14226 Only evaluate expressions once during the filter initialization or when
14227 a command is processed.
14228
14229 @item frame
14230 Evaluate expressions for each incoming frame.
14231
14232 @end table
14233
14234 Default value is @samp{init}.
14235
14236 @item aspect
14237 Pad to aspect instead to a resolution.
14238
14239 @end table
14240
14241 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
14242 options are expressions containing the following constants:
14243
14244 @table @option
14245 @item in_w
14246 @item in_h
14247 The input video width and height.
14248
14249 @item iw
14250 @item ih
14251 These are the same as @var{in_w} and @var{in_h}.
14252
14253 @item out_w
14254 @item out_h
14255 The output width and height (the size of the padded area), as
14256 specified by the @var{width} and @var{height} expressions.
14257
14258 @item ow
14259 @item oh
14260 These are the same as @var{out_w} and @var{out_h}.
14261
14262 @item x
14263 @item y
14264 The x and y offsets as specified by the @var{x} and @var{y}
14265 expressions, or NAN if not yet specified.
14266
14267 @item a
14268 same as @var{iw} / @var{ih}
14269
14270 @item sar
14271 input sample aspect ratio
14272
14273 @item dar
14274 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
14275
14276 @item hsub
14277 @item vsub
14278 The horizontal and vertical chroma subsample values. For example for the
14279 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14280 @end table
14281
14282 @subsection Examples
14283
14284 @itemize
14285 @item
14286 Add paddings with the color "violet" to the input video. The output video
14287 size is 640x480, and the top-left corner of the input video is placed at
14288 column 0, row 40
14289 @example
14290 pad=640:480:0:40:violet
14291 @end example
14292
14293 The example above is equivalent to the following command:
14294 @example
14295 pad=width=640:height=480:x=0:y=40:color=violet
14296 @end example
14297
14298 @item
14299 Pad the input to get an output with dimensions increased by 3/2,
14300 and put the input video at the center of the padded area:
14301 @example
14302 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
14303 @end example
14304
14305 @item
14306 Pad the input to get a squared output with size equal to the maximum
14307 value between the input width and height, and put the input video at
14308 the center of the padded area:
14309 @example
14310 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
14311 @end example
14312
14313 @item
14314 Pad the input to get a final w/h ratio of 16:9:
14315 @example
14316 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
14317 @end example
14318
14319 @item
14320 In case of anamorphic video, in order to set the output display aspect
14321 correctly, it is necessary to use @var{sar} in the expression,
14322 according to the relation:
14323 @example
14324 (ih * X / ih) * sar = output_dar
14325 X = output_dar / sar
14326 @end example
14327
14328 Thus the previous example needs to be modified to:
14329 @example
14330 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
14331 @end example
14332
14333 @item
14334 Double the output size and put the input video in the bottom-right
14335 corner of the output padded area:
14336 @example
14337 pad="2*iw:2*ih:ow-iw:oh-ih"
14338 @end example
14339 @end itemize
14340
14341 @anchor{palettegen}
14342 @section palettegen
14343
14344 Generate one palette for a whole video stream.
14345
14346 It accepts the following options:
14347
14348 @table @option
14349 @item max_colors
14350 Set the maximum number of colors to quantize in the palette.
14351 Note: the palette will still contain 256 colors; the unused palette entries
14352 will be black.
14353
14354 @item reserve_transparent
14355 Create a palette of 255 colors maximum and reserve the last one for
14356 transparency. Reserving the transparency color is useful for GIF optimization.
14357 If not set, the maximum of colors in the palette will be 256. You probably want
14358 to disable this option for a standalone image.
14359 Set by default.
14360
14361 @item transparency_color
14362 Set the color that will be used as background for transparency.
14363
14364 @item stats_mode
14365 Set statistics mode.
14366
14367 It accepts the following values:
14368 @table @samp
14369 @item full
14370 Compute full frame histograms.
14371 @item diff
14372 Compute histograms only for the part that differs from previous frame. This
14373 might be relevant to give more importance to the moving part of your input if
14374 the background is static.
14375 @item single
14376 Compute new histogram for each frame.
14377 @end table
14378
14379 Default value is @var{full}.
14380 @end table
14381
14382 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
14383 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
14384 color quantization of the palette. This information is also visible at
14385 @var{info} logging level.
14386
14387 @subsection Examples
14388
14389 @itemize
14390 @item
14391 Generate a representative palette of a given video using @command{ffmpeg}:
14392 @example
14393 ffmpeg -i input.mkv -vf palettegen palette.png
14394 @end example
14395 @end itemize
14396
14397 @section paletteuse
14398
14399 Use a palette to downsample an input video stream.
14400
14401 The filter takes two inputs: one video stream and a palette. The palette must
14402 be a 256 pixels image.
14403
14404 It accepts the following options:
14405
14406 @table @option
14407 @item dither
14408 Select dithering mode. Available algorithms are:
14409 @table @samp
14410 @item bayer
14411 Ordered 8x8 bayer dithering (deterministic)
14412 @item heckbert
14413 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
14414 Note: this dithering is sometimes considered "wrong" and is included as a
14415 reference.
14416 @item floyd_steinberg
14417 Floyd and Steingberg dithering (error diffusion)
14418 @item sierra2
14419 Frankie Sierra dithering v2 (error diffusion)
14420 @item sierra2_4a
14421 Frankie Sierra dithering v2 "Lite" (error diffusion)
14422 @end table
14423
14424 Default is @var{sierra2_4a}.
14425
14426 @item bayer_scale
14427 When @var{bayer} dithering is selected, this option defines the scale of the
14428 pattern (how much the crosshatch pattern is visible). A low value means more
14429 visible pattern for less banding, and higher value means less visible pattern
14430 at the cost of more banding.
14431
14432 The option must be an integer value in the range [0,5]. Default is @var{2}.
14433
14434 @item diff_mode
14435 If set, define the zone to process
14436
14437 @table @samp
14438 @item rectangle
14439 Only the changing rectangle will be reprocessed. This is similar to GIF
14440 cropping/offsetting compression mechanism. This option can be useful for speed
14441 if only a part of the image is changing, and has use cases such as limiting the
14442 scope of the error diffusal @option{dither} to the rectangle that bounds the
14443 moving scene (it leads to more deterministic output if the scene doesn't change
14444 much, and as a result less moving noise and better GIF compression).
14445 @end table
14446
14447 Default is @var{none}.
14448
14449 @item new
14450 Take new palette for each output frame.
14451
14452 @item alpha_threshold
14453 Sets the alpha threshold for transparency. Alpha values above this threshold
14454 will be treated as completely opaque, and values below this threshold will be
14455 treated as completely transparent.
14456
14457 The option must be an integer value in the range [0,255]. Default is @var{128}.
14458 @end table
14459
14460 @subsection Examples
14461
14462 @itemize
14463 @item
14464 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
14465 using @command{ffmpeg}:
14466 @example
14467 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
14468 @end example
14469 @end itemize
14470
14471 @section perspective
14472
14473 Correct perspective of video not recorded perpendicular to the screen.
14474
14475 A description of the accepted parameters follows.
14476
14477 @table @option
14478 @item x0
14479 @item y0
14480 @item x1
14481 @item y1
14482 @item x2
14483 @item y2
14484 @item x3
14485 @item y3
14486 Set coordinates expression for top left, top right, bottom left and bottom right corners.
14487 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
14488 If the @code{sense} option is set to @code{source}, then the specified points will be sent
14489 to the corners of the destination. If the @code{sense} option is set to @code{destination},
14490 then the corners of the source will be sent to the specified coordinates.
14491
14492 The expressions can use the following variables:
14493
14494 @table @option
14495 @item W
14496 @item H
14497 the width and height of video frame.
14498 @item in
14499 Input frame count.
14500 @item on
14501 Output frame count.
14502 @end table
14503
14504 @item interpolation
14505 Set interpolation for perspective correction.
14506
14507 It accepts the following values:
14508 @table @samp
14509 @item linear
14510 @item cubic
14511 @end table
14512
14513 Default value is @samp{linear}.
14514
14515 @item sense
14516 Set interpretation of coordinate options.
14517
14518 It accepts the following values:
14519 @table @samp
14520 @item 0, source
14521
14522 Send point in the source specified by the given coordinates to
14523 the corners of the destination.
14524
14525 @item 1, destination
14526
14527 Send the corners of the source to the point in the destination specified
14528 by the given coordinates.
14529
14530 Default value is @samp{source}.
14531 @end table
14532
14533 @item eval
14534 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
14535
14536 It accepts the following values:
14537 @table @samp
14538 @item init
14539 only evaluate expressions once during the filter initialization or
14540 when a command is processed
14541
14542 @item frame
14543 evaluate expressions for each incoming frame
14544 @end table
14545
14546 Default value is @samp{init}.
14547 @end table
14548
14549 @section phase
14550
14551 Delay interlaced video by one field time so that the field order changes.
14552
14553 The intended use is to fix PAL movies that have been captured with the
14554 opposite field order to the film-to-video transfer.
14555
14556 A description of the accepted parameters follows.
14557
14558 @table @option
14559 @item mode
14560 Set phase mode.
14561
14562 It accepts the following values:
14563 @table @samp
14564 @item t
14565 Capture field order top-first, transfer bottom-first.
14566 Filter will delay the bottom field.
14567
14568 @item b
14569 Capture field order bottom-first, transfer top-first.
14570 Filter will delay the top field.
14571
14572 @item p
14573 Capture and transfer with the same field order. This mode only exists
14574 for the documentation of the other options to refer to, but if you
14575 actually select it, the filter will faithfully do nothing.
14576
14577 @item a
14578 Capture field order determined automatically by field flags, transfer
14579 opposite.
14580 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
14581 basis using field flags. If no field information is available,
14582 then this works just like @samp{u}.
14583
14584 @item u
14585 Capture unknown or varying, transfer opposite.
14586 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
14587 analyzing the images and selecting the alternative that produces best
14588 match between the fields.
14589
14590 @item T
14591 Capture top-first, transfer unknown or varying.
14592 Filter selects among @samp{t} and @samp{p} using image analysis.
14593
14594 @item B
14595 Capture bottom-first, transfer unknown or varying.
14596 Filter selects among @samp{b} and @samp{p} using image analysis.
14597
14598 @item A
14599 Capture determined by field flags, transfer unknown or varying.
14600 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
14601 image analysis. If no field information is available, then this works just
14602 like @samp{U}. This is the default mode.
14603
14604 @item U
14605 Both capture and transfer unknown or varying.
14606 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
14607 @end table
14608 @end table
14609
14610 @section photosensitivity
14611 Reduce various flashes in video, so to help users with epilepsy.
14612
14613 It accepts the following options:
14614 @table @option
14615 @item frames, f
14616 Set how many frames to use when filtering. Default is 30.
14617
14618 @item threshold, t
14619 Set detection threshold factor. Default is 1.
14620 Lower is stricter.
14621
14622 @item skip
14623 Set how many pixels to skip when sampling frames. Default is 1.
14624 Allowed range is from 1 to 1024.
14625
14626 @item bypass
14627 Leave frames unchanged. Default is disabled.
14628 @end table
14629
14630 @section pixdesctest
14631
14632 Pixel format descriptor test filter, mainly useful for internal
14633 testing. The output video should be equal to the input video.
14634
14635 For example:
14636 @example
14637 format=monow, pixdesctest
14638 @end example
14639
14640 can be used to test the monowhite pixel format descriptor definition.
14641
14642 @section pixscope
14643
14644 Display sample values of color channels. Mainly useful for checking color
14645 and levels. Minimum supported resolution is 640x480.
14646
14647 The filters accept the following options:
14648
14649 @table @option
14650 @item x
14651 Set scope X position, relative offset on X axis.
14652
14653 @item y
14654 Set scope Y position, relative offset on Y axis.
14655
14656 @item w
14657 Set scope width.
14658
14659 @item h
14660 Set scope height.
14661
14662 @item o
14663 Set window opacity. This window also holds statistics about pixel area.
14664
14665 @item wx
14666 Set window X position, relative offset on X axis.
14667
14668 @item wy
14669 Set window Y position, relative offset on Y axis.
14670 @end table
14671
14672 @section pp
14673
14674 Enable the specified chain of postprocessing subfilters using libpostproc. This
14675 library should be automatically selected with a GPL build (@code{--enable-gpl}).
14676 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
14677 Each subfilter and some options have a short and a long name that can be used
14678 interchangeably, i.e. dr/dering are the same.
14679
14680 The filters accept the following options:
14681
14682 @table @option
14683 @item subfilters
14684 Set postprocessing subfilters string.
14685 @end table
14686
14687 All subfilters share common options to determine their scope:
14688
14689 @table @option
14690 @item a/autoq
14691 Honor the quality commands for this subfilter.
14692
14693 @item c/chrom
14694 Do chrominance filtering, too (default).
14695
14696 @item y/nochrom
14697 Do luminance filtering only (no chrominance).
14698
14699 @item n/noluma
14700 Do chrominance filtering only (no luminance).
14701 @end table
14702
14703 These options can be appended after the subfilter name, separated by a '|'.
14704
14705 Available subfilters are:
14706
14707 @table @option
14708 @item hb/hdeblock[|difference[|flatness]]
14709 Horizontal deblocking filter
14710 @table @option
14711 @item difference
14712 Difference factor where higher values mean more deblocking (default: @code{32}).
14713 @item flatness
14714 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14715 @end table
14716
14717 @item vb/vdeblock[|difference[|flatness]]
14718 Vertical deblocking filter
14719 @table @option
14720 @item difference
14721 Difference factor where higher values mean more deblocking (default: @code{32}).
14722 @item flatness
14723 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14724 @end table
14725
14726 @item ha/hadeblock[|difference[|flatness]]
14727 Accurate horizontal deblocking filter
14728 @table @option
14729 @item difference
14730 Difference factor where higher values mean more deblocking (default: @code{32}).
14731 @item flatness
14732 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14733 @end table
14734
14735 @item va/vadeblock[|difference[|flatness]]
14736 Accurate vertical deblocking filter
14737 @table @option
14738 @item difference
14739 Difference factor where higher values mean more deblocking (default: @code{32}).
14740 @item flatness
14741 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14742 @end table
14743 @end table
14744
14745 The horizontal and vertical deblocking filters share the difference and
14746 flatness values so you cannot set different horizontal and vertical
14747 thresholds.
14748
14749 @table @option
14750 @item h1/x1hdeblock
14751 Experimental horizontal deblocking filter
14752
14753 @item v1/x1vdeblock
14754 Experimental vertical deblocking filter
14755
14756 @item dr/dering
14757 Deringing filter
14758
14759 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
14760 @table @option
14761 @item threshold1
14762 larger -> stronger filtering
14763 @item threshold2
14764 larger -> stronger filtering
14765 @item threshold3
14766 larger -> stronger filtering
14767 @end table
14768
14769 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
14770 @table @option
14771 @item f/fullyrange
14772 Stretch luminance to @code{0-255}.
14773 @end table
14774
14775 @item lb/linblenddeint
14776 Linear blend deinterlacing filter that deinterlaces the given block by
14777 filtering all lines with a @code{(1 2 1)} filter.
14778
14779 @item li/linipoldeint
14780 Linear interpolating deinterlacing filter that deinterlaces the given block by
14781 linearly interpolating every second line.
14782
14783 @item ci/cubicipoldeint
14784 Cubic interpolating deinterlacing filter deinterlaces the given block by
14785 cubically interpolating every second line.
14786
14787 @item md/mediandeint
14788 Median deinterlacing filter that deinterlaces the given block by applying a
14789 median filter to every second line.
14790
14791 @item fd/ffmpegdeint
14792 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
14793 second line with a @code{(-1 4 2 4 -1)} filter.
14794
14795 @item l5/lowpass5
14796 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
14797 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
14798
14799 @item fq/forceQuant[|quantizer]
14800 Overrides the quantizer table from the input with the constant quantizer you
14801 specify.
14802 @table @option
14803 @item quantizer
14804 Quantizer to use
14805 @end table
14806
14807 @item de/default
14808 Default pp filter combination (@code{hb|a,vb|a,dr|a})
14809
14810 @item fa/fast
14811 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
14812
14813 @item ac
14814 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
14815 @end table
14816
14817 @subsection Examples
14818
14819 @itemize
14820 @item
14821 Apply horizontal and vertical deblocking, deringing and automatic
14822 brightness/contrast:
14823 @example
14824 pp=hb/vb/dr/al
14825 @end example
14826
14827 @item
14828 Apply default filters without brightness/contrast correction:
14829 @example
14830 pp=de/-al
14831 @end example
14832
14833 @item
14834 Apply default filters and temporal denoiser:
14835 @example
14836 pp=default/tmpnoise|1|2|3
14837 @end example
14838
14839 @item
14840 Apply deblocking on luminance only, and switch vertical deblocking on or off
14841 automatically depending on available CPU time:
14842 @example
14843 pp=hb|y/vb|a
14844 @end example
14845 @end itemize
14846
14847 @section pp7
14848 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
14849 similar to spp = 6 with 7 point DCT, where only the center sample is
14850 used after IDCT.
14851
14852 The filter accepts the following options:
14853
14854 @table @option
14855 @item qp
14856 Force a constant quantization parameter. It accepts an integer in range
14857 0 to 63. If not set, the filter will use the QP from the video stream
14858 (if available).
14859
14860 @item mode
14861 Set thresholding mode. Available modes are:
14862
14863 @table @samp
14864 @item hard
14865 Set hard thresholding.
14866 @item soft
14867 Set soft thresholding (better de-ringing effect, but likely blurrier).
14868 @item medium
14869 Set medium thresholding (good results, default).
14870 @end table
14871 @end table
14872
14873 @section premultiply
14874 Apply alpha premultiply effect to input video stream using first plane
14875 of second stream as alpha.
14876
14877 Both streams must have same dimensions and same pixel format.
14878
14879 The filter accepts the following option:
14880
14881 @table @option
14882 @item planes
14883 Set which planes will be processed, unprocessed planes will be copied.
14884 By default value 0xf, all planes will be processed.
14885
14886 @item inplace
14887 Do not require 2nd input for processing, instead use alpha plane from input stream.
14888 @end table
14889
14890 @section prewitt
14891 Apply prewitt operator to input video stream.
14892
14893 The filter accepts the following option:
14894
14895 @table @option
14896 @item planes
14897 Set which planes will be processed, unprocessed planes will be copied.
14898 By default value 0xf, all planes will be processed.
14899
14900 @item scale
14901 Set value which will be multiplied with filtered result.
14902
14903 @item delta
14904 Set value which will be added to filtered result.
14905 @end table
14906
14907 @anchor{program_opencl}
14908 @section program_opencl
14909
14910 Filter video using an OpenCL program.
14911
14912 @table @option
14913
14914 @item source
14915 OpenCL program source file.
14916
14917 @item kernel
14918 Kernel name in program.
14919
14920 @item inputs
14921 Number of inputs to the filter.  Defaults to 1.
14922
14923 @item size, s
14924 Size of output frames.  Defaults to the same as the first input.
14925
14926 @end table
14927
14928 The program source file must contain a kernel function with the given name,
14929 which will be run once for each plane of the output.  Each run on a plane
14930 gets enqueued as a separate 2D global NDRange with one work-item for each
14931 pixel to be generated.  The global ID offset for each work-item is therefore
14932 the coordinates of a pixel in the destination image.
14933
14934 The kernel function needs to take the following arguments:
14935 @itemize
14936 @item
14937 Destination image, @var{__write_only image2d_t}.
14938
14939 This image will become the output; the kernel should write all of it.
14940 @item
14941 Frame index, @var{unsigned int}.
14942
14943 This is a counter starting from zero and increasing by one for each frame.
14944 @item
14945 Source images, @var{__read_only image2d_t}.
14946
14947 These are the most recent images on each input.  The kernel may read from
14948 them to generate the output, but they can't be written to.
14949 @end itemize
14950
14951 Example programs:
14952
14953 @itemize
14954 @item
14955 Copy the input to the output (output must be the same size as the input).
14956 @verbatim
14957 __kernel void copy(__write_only image2d_t destination,
14958                    unsigned int index,
14959                    __read_only  image2d_t source)
14960 {
14961     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
14962
14963     int2 location = (int2)(get_global_id(0), get_global_id(1));
14964
14965     float4 value = read_imagef(source, sampler, location);
14966
14967     write_imagef(destination, location, value);
14968 }
14969 @end verbatim
14970
14971 @item
14972 Apply a simple transformation, rotating the input by an amount increasing
14973 with the index counter.  Pixel values are linearly interpolated by the
14974 sampler, and the output need not have the same dimensions as the input.
14975 @verbatim
14976 __kernel void rotate_image(__write_only image2d_t dst,
14977                            unsigned int index,
14978                            __read_only  image2d_t src)
14979 {
14980     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
14981                                CLK_FILTER_LINEAR);
14982
14983     float angle = (float)index / 100.0f;
14984
14985     float2 dst_dim = convert_float2(get_image_dim(dst));
14986     float2 src_dim = convert_float2(get_image_dim(src));
14987
14988     float2 dst_cen = dst_dim / 2.0f;
14989     float2 src_cen = src_dim / 2.0f;
14990
14991     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
14992
14993     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
14994     float2 src_pos = {
14995         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
14996         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
14997     };
14998     src_pos = src_pos * src_dim / dst_dim;
14999
15000     float2 src_loc = src_pos + src_cen;
15001
15002     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
15003         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
15004         write_imagef(dst, dst_loc, 0.5f);
15005     else
15006         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
15007 }
15008 @end verbatim
15009
15010 @item
15011 Blend two inputs together, with the amount of each input used varying
15012 with the index counter.
15013 @verbatim
15014 __kernel void blend_images(__write_only image2d_t dst,
15015                            unsigned int index,
15016                            __read_only  image2d_t src1,
15017                            __read_only  image2d_t src2)
15018 {
15019     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
15020                                CLK_FILTER_LINEAR);
15021
15022     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
15023
15024     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
15025     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
15026     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
15027
15028     float4 val1 = read_imagef(src1, sampler, src1_loc);
15029     float4 val2 = read_imagef(src2, sampler, src2_loc);
15030
15031     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
15032 }
15033 @end verbatim
15034
15035 @end itemize
15036
15037 @section pseudocolor
15038
15039 Alter frame colors in video with pseudocolors.
15040
15041 This filter accepts the following options:
15042
15043 @table @option
15044 @item c0
15045 set pixel first component expression
15046
15047 @item c1
15048 set pixel second component expression
15049
15050 @item c2
15051 set pixel third component expression
15052
15053 @item c3
15054 set pixel fourth component expression, corresponds to the alpha component
15055
15056 @item i
15057 set component to use as base for altering colors
15058 @end table
15059
15060 Each of them specifies the expression to use for computing the lookup table for
15061 the corresponding pixel component values.
15062
15063 The expressions can contain the following constants and functions:
15064
15065 @table @option
15066 @item w
15067 @item h
15068 The input width and height.
15069
15070 @item val
15071 The input value for the pixel component.
15072
15073 @item ymin, umin, vmin, amin
15074 The minimum allowed component value.
15075
15076 @item ymax, umax, vmax, amax
15077 The maximum allowed component value.
15078 @end table
15079
15080 All expressions default to "val".
15081
15082 @subsection Examples
15083
15084 @itemize
15085 @item
15086 Change too high luma values to gradient:
15087 @example
15088 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'"
15089 @end example
15090 @end itemize
15091
15092 @section psnr
15093
15094 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
15095 Ratio) between two input videos.
15096
15097 This filter takes in input two input videos, the first input is
15098 considered the "main" source and is passed unchanged to the
15099 output. The second input is used as a "reference" video for computing
15100 the PSNR.
15101
15102 Both video inputs must have the same resolution and pixel format for
15103 this filter to work correctly. Also it assumes that both inputs
15104 have the same number of frames, which are compared one by one.
15105
15106 The obtained average PSNR is printed through the logging system.
15107
15108 The filter stores the accumulated MSE (mean squared error) of each
15109 frame, and at the end of the processing it is averaged across all frames
15110 equally, and the following formula is applied to obtain the PSNR:
15111
15112 @example
15113 PSNR = 10*log10(MAX^2/MSE)
15114 @end example
15115
15116 Where MAX is the average of the maximum values of each component of the
15117 image.
15118
15119 The description of the accepted parameters follows.
15120
15121 @table @option
15122 @item stats_file, f
15123 If specified the filter will use the named file to save the PSNR of
15124 each individual frame. When filename equals "-" the data is sent to
15125 standard output.
15126
15127 @item stats_version
15128 Specifies which version of the stats file format to use. Details of
15129 each format are written below.
15130 Default value is 1.
15131
15132 @item stats_add_max
15133 Determines whether the max value is output to the stats log.
15134 Default value is 0.
15135 Requires stats_version >= 2. If this is set and stats_version < 2,
15136 the filter will return an error.
15137 @end table
15138
15139 This filter also supports the @ref{framesync} options.
15140
15141 The file printed if @var{stats_file} is selected, contains a sequence of
15142 key/value pairs of the form @var{key}:@var{value} for each compared
15143 couple of frames.
15144
15145 If a @var{stats_version} greater than 1 is specified, a header line precedes
15146 the list of per-frame-pair stats, with key value pairs following the frame
15147 format with the following parameters:
15148
15149 @table @option
15150 @item psnr_log_version
15151 The version of the log file format. Will match @var{stats_version}.
15152
15153 @item fields
15154 A comma separated list of the per-frame-pair parameters included in
15155 the log.
15156 @end table
15157
15158 A description of each shown per-frame-pair parameter follows:
15159
15160 @table @option
15161 @item n
15162 sequential number of the input frame, starting from 1
15163
15164 @item mse_avg
15165 Mean Square Error pixel-by-pixel average difference of the compared
15166 frames, averaged over all the image components.
15167
15168 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
15169 Mean Square Error pixel-by-pixel average difference of the compared
15170 frames for the component specified by the suffix.
15171
15172 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
15173 Peak Signal to Noise ratio of the compared frames for the component
15174 specified by the suffix.
15175
15176 @item max_avg, max_y, max_u, max_v
15177 Maximum allowed value for each channel, and average over all
15178 channels.
15179 @end table
15180
15181 @subsection Examples
15182 @itemize
15183 @item
15184 For example:
15185 @example
15186 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
15187 [main][ref] psnr="stats_file=stats.log" [out]
15188 @end example
15189
15190 On this example the input file being processed is compared with the
15191 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
15192 is stored in @file{stats.log}.
15193
15194 @item
15195 Another example with different containers:
15196 @example
15197 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 -
15198 @end example
15199 @end itemize
15200
15201 @anchor{pullup}
15202 @section pullup
15203
15204 Pulldown reversal (inverse telecine) filter, capable of handling mixed
15205 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
15206 content.
15207
15208 The pullup filter is designed to take advantage of future context in making
15209 its decisions. This filter is stateless in the sense that it does not lock
15210 onto a pattern to follow, but it instead looks forward to the following
15211 fields in order to identify matches and rebuild progressive frames.
15212
15213 To produce content with an even framerate, insert the fps filter after
15214 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
15215 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
15216
15217 The filter accepts the following options:
15218
15219 @table @option
15220 @item jl
15221 @item jr
15222 @item jt
15223 @item jb
15224 These options set the amount of "junk" to ignore at the left, right, top, and
15225 bottom of the image, respectively. Left and right are in units of 8 pixels,
15226 while top and bottom are in units of 2 lines.
15227 The default is 8 pixels on each side.
15228
15229 @item sb
15230 Set the strict breaks. Setting this option to 1 will reduce the chances of
15231 filter generating an occasional mismatched frame, but it may also cause an
15232 excessive number of frames to be dropped during high motion sequences.
15233 Conversely, setting it to -1 will make filter match fields more easily.
15234 This may help processing of video where there is slight blurring between
15235 the fields, but may also cause there to be interlaced frames in the output.
15236 Default value is @code{0}.
15237
15238 @item mp
15239 Set the metric plane to use. It accepts the following values:
15240 @table @samp
15241 @item l
15242 Use luma plane.
15243
15244 @item u
15245 Use chroma blue plane.
15246
15247 @item v
15248 Use chroma red plane.
15249 @end table
15250
15251 This option may be set to use chroma plane instead of the default luma plane
15252 for doing filter's computations. This may improve accuracy on very clean
15253 source material, but more likely will decrease accuracy, especially if there
15254 is chroma noise (rainbow effect) or any grayscale video.
15255 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
15256 load and make pullup usable in realtime on slow machines.
15257 @end table
15258
15259 For best results (without duplicated frames in the output file) it is
15260 necessary to change the output frame rate. For example, to inverse
15261 telecine NTSC input:
15262 @example
15263 ffmpeg -i input -vf pullup -r 24000/1001 ...
15264 @end example
15265
15266 @section qp
15267
15268 Change video quantization parameters (QP).
15269
15270 The filter accepts the following option:
15271
15272 @table @option
15273 @item qp
15274 Set expression for quantization parameter.
15275 @end table
15276
15277 The expression is evaluated through the eval API and can contain, among others,
15278 the following constants:
15279
15280 @table @var
15281 @item known
15282 1 if index is not 129, 0 otherwise.
15283
15284 @item qp
15285 Sequential index starting from -129 to 128.
15286 @end table
15287
15288 @subsection Examples
15289
15290 @itemize
15291 @item
15292 Some equation like:
15293 @example
15294 qp=2+2*sin(PI*qp)
15295 @end example
15296 @end itemize
15297
15298 @section random
15299
15300 Flush video frames from internal cache of frames into a random order.
15301 No frame is discarded.
15302 Inspired by @ref{frei0r} nervous filter.
15303
15304 @table @option
15305 @item frames
15306 Set size in number of frames of internal cache, in range from @code{2} to
15307 @code{512}. Default is @code{30}.
15308
15309 @item seed
15310 Set seed for random number generator, must be an integer included between
15311 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15312 less than @code{0}, the filter will try to use a good random seed on a
15313 best effort basis.
15314 @end table
15315
15316 @section readeia608
15317
15318 Read closed captioning (EIA-608) information from the top lines of a video frame.
15319
15320 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
15321 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
15322 with EIA-608 data (starting from 0). A description of each metadata value follows:
15323
15324 @table @option
15325 @item lavfi.readeia608.X.cc
15326 The two bytes stored as EIA-608 data (printed in hexadecimal).
15327
15328 @item lavfi.readeia608.X.line
15329 The number of the line on which the EIA-608 data was identified and read.
15330 @end table
15331
15332 This filter accepts the following options:
15333
15334 @table @option
15335 @item scan_min
15336 Set the line to start scanning for EIA-608 data. Default is @code{0}.
15337
15338 @item scan_max
15339 Set the line to end scanning for EIA-608 data. Default is @code{29}.
15340
15341 @item mac
15342 Set minimal acceptable amplitude change for sync codes detection.
15343 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
15344
15345 @item spw
15346 Set the ratio of width reserved for sync code detection.
15347 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
15348
15349 @item mhd
15350 Set the max peaks height difference for sync code detection.
15351 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
15352
15353 @item mpd
15354 Set max peaks period difference for sync code detection.
15355 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
15356
15357 @item msd
15358 Set the first two max start code bits differences.
15359 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
15360
15361 @item bhd
15362 Set the minimum ratio of bits height compared to 3rd start code bit.
15363 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
15364
15365 @item th_w
15366 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
15367
15368 @item th_b
15369 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
15370
15371 @item chp
15372 Enable checking the parity bit. In the event of a parity error, the filter will output
15373 @code{0x00} for that character. Default is false.
15374
15375 @item lp
15376 Lowpass lines prior to further processing. Default is disabled.
15377 @end table
15378
15379 @subsection Examples
15380
15381 @itemize
15382 @item
15383 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
15384 @example
15385 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
15386 @end example
15387 @end itemize
15388
15389 @section readvitc
15390
15391 Read vertical interval timecode (VITC) information from the top lines of a
15392 video frame.
15393
15394 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
15395 timecode value, if a valid timecode has been detected. Further metadata key
15396 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
15397 timecode data has been found or not.
15398
15399 This filter accepts the following options:
15400
15401 @table @option
15402 @item scan_max
15403 Set the maximum number of lines to scan for VITC data. If the value is set to
15404 @code{-1} the full video frame is scanned. Default is @code{45}.
15405
15406 @item thr_b
15407 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
15408 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
15409
15410 @item thr_w
15411 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
15412 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
15413 @end table
15414
15415 @subsection Examples
15416
15417 @itemize
15418 @item
15419 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
15420 draw @code{--:--:--:--} as a placeholder:
15421 @example
15422 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
15423 @end example
15424 @end itemize
15425
15426 @section remap
15427
15428 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
15429
15430 Destination pixel at position (X, Y) will be picked from source (x, y) position
15431 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
15432 value for pixel will be used for destination pixel.
15433
15434 Xmap and Ymap input video streams must be of same dimensions. Output video stream
15435 will have Xmap/Ymap video stream dimensions.
15436 Xmap and Ymap input video streams are 16bit depth, single channel.
15437
15438 @table @option
15439 @item format
15440 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
15441 Default is @code{color}.
15442 @end table
15443
15444 @section removegrain
15445
15446 The removegrain filter is a spatial denoiser for progressive video.
15447
15448 @table @option
15449 @item m0
15450 Set mode for the first plane.
15451
15452 @item m1
15453 Set mode for the second plane.
15454
15455 @item m2
15456 Set mode for the third plane.
15457
15458 @item m3
15459 Set mode for the fourth plane.
15460 @end table
15461
15462 Range of mode is from 0 to 24. Description of each mode follows:
15463
15464 @table @var
15465 @item 0
15466 Leave input plane unchanged. Default.
15467
15468 @item 1
15469 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
15470
15471 @item 2
15472 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
15473
15474 @item 3
15475 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
15476
15477 @item 4
15478 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
15479 This is equivalent to a median filter.
15480
15481 @item 5
15482 Line-sensitive clipping giving the minimal change.
15483
15484 @item 6
15485 Line-sensitive clipping, intermediate.
15486
15487 @item 7
15488 Line-sensitive clipping, intermediate.
15489
15490 @item 8
15491 Line-sensitive clipping, intermediate.
15492
15493 @item 9
15494 Line-sensitive clipping on a line where the neighbours pixels are the closest.
15495
15496 @item 10
15497 Replaces the target pixel with the closest neighbour.
15498
15499 @item 11
15500 [1 2 1] horizontal and vertical kernel blur.
15501
15502 @item 12
15503 Same as mode 11.
15504
15505 @item 13
15506 Bob mode, interpolates top field from the line where the neighbours
15507 pixels are the closest.
15508
15509 @item 14
15510 Bob mode, interpolates bottom field from the line where the neighbours
15511 pixels are the closest.
15512
15513 @item 15
15514 Bob mode, interpolates top field. Same as 13 but with a more complicated
15515 interpolation formula.
15516
15517 @item 16
15518 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
15519 interpolation formula.
15520
15521 @item 17
15522 Clips the pixel with the minimum and maximum of respectively the maximum and
15523 minimum of each pair of opposite neighbour pixels.
15524
15525 @item 18
15526 Line-sensitive clipping using opposite neighbours whose greatest distance from
15527 the current pixel is minimal.
15528
15529 @item 19
15530 Replaces the pixel with the average of its 8 neighbours.
15531
15532 @item 20
15533 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
15534
15535 @item 21
15536 Clips pixels using the averages of opposite neighbour.
15537
15538 @item 22
15539 Same as mode 21 but simpler and faster.
15540
15541 @item 23
15542 Small edge and halo removal, but reputed useless.
15543
15544 @item 24
15545 Similar as 23.
15546 @end table
15547
15548 @section removelogo
15549
15550 Suppress a TV station logo, using an image file to determine which
15551 pixels comprise the logo. It works by filling in the pixels that
15552 comprise the logo with neighboring pixels.
15553
15554 The filter accepts the following options:
15555
15556 @table @option
15557 @item filename, f
15558 Set the filter bitmap file, which can be any image format supported by
15559 libavformat. The width and height of the image file must match those of the
15560 video stream being processed.
15561 @end table
15562
15563 Pixels in the provided bitmap image with a value of zero are not
15564 considered part of the logo, non-zero pixels are considered part of
15565 the logo. If you use white (255) for the logo and black (0) for the
15566 rest, you will be safe. For making the filter bitmap, it is
15567 recommended to take a screen capture of a black frame with the logo
15568 visible, and then using a threshold filter followed by the erode
15569 filter once or twice.
15570
15571 If needed, little splotches can be fixed manually. Remember that if
15572 logo pixels are not covered, the filter quality will be much
15573 reduced. Marking too many pixels as part of the logo does not hurt as
15574 much, but it will increase the amount of blurring needed to cover over
15575 the image and will destroy more information than necessary, and extra
15576 pixels will slow things down on a large logo.
15577
15578 @section repeatfields
15579
15580 This filter uses the repeat_field flag from the Video ES headers and hard repeats
15581 fields based on its value.
15582
15583 @section reverse
15584
15585 Reverse a video clip.
15586
15587 Warning: This filter requires memory to buffer the entire clip, so trimming
15588 is suggested.
15589
15590 @subsection Examples
15591
15592 @itemize
15593 @item
15594 Take the first 5 seconds of a clip, and reverse it.
15595 @example
15596 trim=end=5,reverse
15597 @end example
15598 @end itemize
15599
15600 @section rgbashift
15601 Shift R/G/B/A pixels horizontally and/or vertically.
15602
15603 The filter accepts the following options:
15604 @table @option
15605 @item rh
15606 Set amount to shift red horizontally.
15607 @item rv
15608 Set amount to shift red vertically.
15609 @item gh
15610 Set amount to shift green horizontally.
15611 @item gv
15612 Set amount to shift green vertically.
15613 @item bh
15614 Set amount to shift blue horizontally.
15615 @item bv
15616 Set amount to shift blue vertically.
15617 @item ah
15618 Set amount to shift alpha horizontally.
15619 @item av
15620 Set amount to shift alpha vertically.
15621 @item edge
15622 Set edge mode, can be @var{smear}, default, or @var{warp}.
15623 @end table
15624
15625 @subsection Commands
15626
15627 This filter supports the all above options as @ref{commands}.
15628
15629 @section roberts
15630 Apply roberts cross operator to input video stream.
15631
15632 The filter accepts the following option:
15633
15634 @table @option
15635 @item planes
15636 Set which planes will be processed, unprocessed planes will be copied.
15637 By default value 0xf, all planes will be processed.
15638
15639 @item scale
15640 Set value which will be multiplied with filtered result.
15641
15642 @item delta
15643 Set value which will be added to filtered result.
15644 @end table
15645
15646 @section rotate
15647
15648 Rotate video by an arbitrary angle expressed in radians.
15649
15650 The filter accepts the following options:
15651
15652 A description of the optional parameters follows.
15653 @table @option
15654 @item angle, a
15655 Set an expression for the angle by which to rotate the input video
15656 clockwise, expressed as a number of radians. A negative value will
15657 result in a counter-clockwise rotation. By default it is set to "0".
15658
15659 This expression is evaluated for each frame.
15660
15661 @item out_w, ow
15662 Set the output width expression, default value is "iw".
15663 This expression is evaluated just once during configuration.
15664
15665 @item out_h, oh
15666 Set the output height expression, default value is "ih".
15667 This expression is evaluated just once during configuration.
15668
15669 @item bilinear
15670 Enable bilinear interpolation if set to 1, a value of 0 disables
15671 it. Default value is 1.
15672
15673 @item fillcolor, c
15674 Set the color used to fill the output area not covered by the rotated
15675 image. For the general syntax of this option, check the
15676 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15677 If the special value "none" is selected then no
15678 background is printed (useful for example if the background is never shown).
15679
15680 Default value is "black".
15681 @end table
15682
15683 The expressions for the angle and the output size can contain the
15684 following constants and functions:
15685
15686 @table @option
15687 @item n
15688 sequential number of the input frame, starting from 0. It is always NAN
15689 before the first frame is filtered.
15690
15691 @item t
15692 time in seconds of the input frame, it is set to 0 when the filter is
15693 configured. It is always NAN before the first frame is filtered.
15694
15695 @item hsub
15696 @item vsub
15697 horizontal and vertical chroma subsample values. For example for the
15698 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15699
15700 @item in_w, iw
15701 @item in_h, ih
15702 the input video width and height
15703
15704 @item out_w, ow
15705 @item out_h, oh
15706 the output width and height, that is the size of the padded area as
15707 specified by the @var{width} and @var{height} expressions
15708
15709 @item rotw(a)
15710 @item roth(a)
15711 the minimal width/height required for completely containing the input
15712 video rotated by @var{a} radians.
15713
15714 These are only available when computing the @option{out_w} and
15715 @option{out_h} expressions.
15716 @end table
15717
15718 @subsection Examples
15719
15720 @itemize
15721 @item
15722 Rotate the input by PI/6 radians clockwise:
15723 @example
15724 rotate=PI/6
15725 @end example
15726
15727 @item
15728 Rotate the input by PI/6 radians counter-clockwise:
15729 @example
15730 rotate=-PI/6
15731 @end example
15732
15733 @item
15734 Rotate the input by 45 degrees clockwise:
15735 @example
15736 rotate=45*PI/180
15737 @end example
15738
15739 @item
15740 Apply a constant rotation with period T, starting from an angle of PI/3:
15741 @example
15742 rotate=PI/3+2*PI*t/T
15743 @end example
15744
15745 @item
15746 Make the input video rotation oscillating with a period of T
15747 seconds and an amplitude of A radians:
15748 @example
15749 rotate=A*sin(2*PI/T*t)
15750 @end example
15751
15752 @item
15753 Rotate the video, output size is chosen so that the whole rotating
15754 input video is always completely contained in the output:
15755 @example
15756 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
15757 @end example
15758
15759 @item
15760 Rotate the video, reduce the output size so that no background is ever
15761 shown:
15762 @example
15763 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
15764 @end example
15765 @end itemize
15766
15767 @subsection Commands
15768
15769 The filter supports the following commands:
15770
15771 @table @option
15772 @item a, angle
15773 Set the angle expression.
15774 The command accepts the same syntax of the corresponding option.
15775
15776 If the specified expression is not valid, it is kept at its current
15777 value.
15778 @end table
15779
15780 @section sab
15781
15782 Apply Shape Adaptive Blur.
15783
15784 The filter accepts the following options:
15785
15786 @table @option
15787 @item luma_radius, lr
15788 Set luma blur filter strength, must be a value in range 0.1-4.0, default
15789 value is 1.0. A greater value will result in a more blurred image, and
15790 in slower processing.
15791
15792 @item luma_pre_filter_radius, lpfr
15793 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
15794 value is 1.0.
15795
15796 @item luma_strength, ls
15797 Set luma maximum difference between pixels to still be considered, must
15798 be a value in the 0.1-100.0 range, default value is 1.0.
15799
15800 @item chroma_radius, cr
15801 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
15802 greater value will result in a more blurred image, and in slower
15803 processing.
15804
15805 @item chroma_pre_filter_radius, cpfr
15806 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
15807
15808 @item chroma_strength, cs
15809 Set chroma maximum difference between pixels to still be considered,
15810 must be a value in the -0.9-100.0 range.
15811 @end table
15812
15813 Each chroma option value, if not explicitly specified, is set to the
15814 corresponding luma option value.
15815
15816 @anchor{scale}
15817 @section scale
15818
15819 Scale (resize) the input video, using the libswscale library.
15820
15821 The scale filter forces the output display aspect ratio to be the same
15822 of the input, by changing the output sample aspect ratio.
15823
15824 If the input image format is different from the format requested by
15825 the next filter, the scale filter will convert the input to the
15826 requested format.
15827
15828 @subsection Options
15829 The filter accepts the following options, or any of the options
15830 supported by the libswscale scaler.
15831
15832 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
15833 the complete list of scaler options.
15834
15835 @table @option
15836 @item width, w
15837 @item height, h
15838 Set the output video dimension expression. Default value is the input
15839 dimension.
15840
15841 If the @var{width} or @var{w} value is 0, the input width is used for
15842 the output. If the @var{height} or @var{h} value is 0, the input height
15843 is used for the output.
15844
15845 If one and only one of the values is -n with n >= 1, the scale filter
15846 will use a value that maintains the aspect ratio of the input image,
15847 calculated from the other specified dimension. After that it will,
15848 however, make sure that the calculated dimension is divisible by n and
15849 adjust the value if necessary.
15850
15851 If both values are -n with n >= 1, the behavior will be identical to
15852 both values being set to 0 as previously detailed.
15853
15854 See below for the list of accepted constants for use in the dimension
15855 expression.
15856
15857 @item eval
15858 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
15859
15860 @table @samp
15861 @item init
15862 Only evaluate expressions once during the filter initialization or when a command is processed.
15863
15864 @item frame
15865 Evaluate expressions for each incoming frame.
15866
15867 @end table
15868
15869 Default value is @samp{init}.
15870
15871
15872 @item interl
15873 Set the interlacing mode. It accepts the following values:
15874
15875 @table @samp
15876 @item 1
15877 Force interlaced aware scaling.
15878
15879 @item 0
15880 Do not apply interlaced scaling.
15881
15882 @item -1
15883 Select interlaced aware scaling depending on whether the source frames
15884 are flagged as interlaced or not.
15885 @end table
15886
15887 Default value is @samp{0}.
15888
15889 @item flags
15890 Set libswscale scaling flags. See
15891 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15892 complete list of values. If not explicitly specified the filter applies
15893 the default flags.
15894
15895
15896 @item param0, param1
15897 Set libswscale input parameters for scaling algorithms that need them. See
15898 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15899 complete documentation. If not explicitly specified the filter applies
15900 empty parameters.
15901
15902
15903
15904 @item size, s
15905 Set the video size. For the syntax of this option, check the
15906 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15907
15908 @item in_color_matrix
15909 @item out_color_matrix
15910 Set in/output YCbCr color space type.
15911
15912 This allows the autodetected value to be overridden as well as allows forcing
15913 a specific value used for the output and encoder.
15914
15915 If not specified, the color space type depends on the pixel format.
15916
15917 Possible values:
15918
15919 @table @samp
15920 @item auto
15921 Choose automatically.
15922
15923 @item bt709
15924 Format conforming to International Telecommunication Union (ITU)
15925 Recommendation BT.709.
15926
15927 @item fcc
15928 Set color space conforming to the United States Federal Communications
15929 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
15930
15931 @item bt601
15932 @item bt470
15933 @item smpte170m
15934 Set color space conforming to:
15935
15936 @itemize
15937 @item
15938 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
15939
15940 @item
15941 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
15942
15943 @item
15944 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
15945
15946 @end itemize
15947
15948 @item smpte240m
15949 Set color space conforming to SMPTE ST 240:1999.
15950
15951 @item bt2020
15952 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
15953 @end table
15954
15955 @item in_range
15956 @item out_range
15957 Set in/output YCbCr sample range.
15958
15959 This allows the autodetected value to be overridden as well as allows forcing
15960 a specific value used for the output and encoder. If not specified, the
15961 range depends on the pixel format. Possible values:
15962
15963 @table @samp
15964 @item auto/unknown
15965 Choose automatically.
15966
15967 @item jpeg/full/pc
15968 Set full range (0-255 in case of 8-bit luma).
15969
15970 @item mpeg/limited/tv
15971 Set "MPEG" range (16-235 in case of 8-bit luma).
15972 @end table
15973
15974 @item force_original_aspect_ratio
15975 Enable decreasing or increasing output video width or height if necessary to
15976 keep the original aspect ratio. Possible values:
15977
15978 @table @samp
15979 @item disable
15980 Scale the video as specified and disable this feature.
15981
15982 @item decrease
15983 The output video dimensions will automatically be decreased if needed.
15984
15985 @item increase
15986 The output video dimensions will automatically be increased if needed.
15987
15988 @end table
15989
15990 One useful instance of this option is that when you know a specific device's
15991 maximum allowed resolution, you can use this to limit the output video to
15992 that, while retaining the aspect ratio. For example, device A allows
15993 1280x720 playback, and your video is 1920x800. Using this option (set it to
15994 decrease) and specifying 1280x720 to the command line makes the output
15995 1280x533.
15996
15997 Please note that this is a different thing than specifying -1 for @option{w}
15998 or @option{h}, you still need to specify the output resolution for this option
15999 to work.
16000
16001 @item force_divisible_by
16002 Ensures that both the output dimensions, width and height, are divisible by the
16003 given integer when used together with @option{force_original_aspect_ratio}. This
16004 works similar to using @code{-n} in the @option{w} and @option{h} options.
16005
16006 This option respects the value set for @option{force_original_aspect_ratio},
16007 increasing or decreasing the resolution accordingly. The video's aspect ratio
16008 may be slightly modified.
16009
16010 This option can be handy if you need to have a video fit within or exceed
16011 a defined resolution using @option{force_original_aspect_ratio} but also have
16012 encoder restrictions on width or height divisibility.
16013
16014 @end table
16015
16016 The values of the @option{w} and @option{h} options are expressions
16017 containing the following constants:
16018
16019 @table @var
16020 @item in_w
16021 @item in_h
16022 The input width and height
16023
16024 @item iw
16025 @item ih
16026 These are the same as @var{in_w} and @var{in_h}.
16027
16028 @item out_w
16029 @item out_h
16030 The output (scaled) width and height
16031
16032 @item ow
16033 @item oh
16034 These are the same as @var{out_w} and @var{out_h}
16035
16036 @item a
16037 The same as @var{iw} / @var{ih}
16038
16039 @item sar
16040 input sample aspect ratio
16041
16042 @item dar
16043 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16044
16045 @item hsub
16046 @item vsub
16047 horizontal and vertical input chroma subsample values. For example for the
16048 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16049
16050 @item ohsub
16051 @item ovsub
16052 horizontal and vertical output chroma subsample values. For example for the
16053 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16054 @end table
16055
16056 @subsection Examples
16057
16058 @itemize
16059 @item
16060 Scale the input video to a size of 200x100
16061 @example
16062 scale=w=200:h=100
16063 @end example
16064
16065 This is equivalent to:
16066 @example
16067 scale=200:100
16068 @end example
16069
16070 or:
16071 @example
16072 scale=200x100
16073 @end example
16074
16075 @item
16076 Specify a size abbreviation for the output size:
16077 @example
16078 scale=qcif
16079 @end example
16080
16081 which can also be written as:
16082 @example
16083 scale=size=qcif
16084 @end example
16085
16086 @item
16087 Scale the input to 2x:
16088 @example
16089 scale=w=2*iw:h=2*ih
16090 @end example
16091
16092 @item
16093 The above is the same as:
16094 @example
16095 scale=2*in_w:2*in_h
16096 @end example
16097
16098 @item
16099 Scale the input to 2x with forced interlaced scaling:
16100 @example
16101 scale=2*iw:2*ih:interl=1
16102 @end example
16103
16104 @item
16105 Scale the input to half size:
16106 @example
16107 scale=w=iw/2:h=ih/2
16108 @end example
16109
16110 @item
16111 Increase the width, and set the height to the same size:
16112 @example
16113 scale=3/2*iw:ow
16114 @end example
16115
16116 @item
16117 Seek Greek harmony:
16118 @example
16119 scale=iw:1/PHI*iw
16120 scale=ih*PHI:ih
16121 @end example
16122
16123 @item
16124 Increase the height, and set the width to 3/2 of the height:
16125 @example
16126 scale=w=3/2*oh:h=3/5*ih
16127 @end example
16128
16129 @item
16130 Increase the size, making the size a multiple of the chroma
16131 subsample values:
16132 @example
16133 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
16134 @end example
16135
16136 @item
16137 Increase the width to a maximum of 500 pixels,
16138 keeping the same aspect ratio as the input:
16139 @example
16140 scale=w='min(500\, iw*3/2):h=-1'
16141 @end example
16142
16143 @item
16144 Make pixels square by combining scale and setsar:
16145 @example
16146 scale='trunc(ih*dar):ih',setsar=1/1
16147 @end example
16148
16149 @item
16150 Make pixels square by combining scale and setsar,
16151 making sure the resulting resolution is even (required by some codecs):
16152 @example
16153 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
16154 @end example
16155 @end itemize
16156
16157 @subsection Commands
16158
16159 This filter supports the following commands:
16160 @table @option
16161 @item width, w
16162 @item height, h
16163 Set the output video dimension expression.
16164 The command accepts the same syntax of the corresponding option.
16165
16166 If the specified expression is not valid, it is kept at its current
16167 value.
16168 @end table
16169
16170 @section scale_npp
16171
16172 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
16173 format conversion on CUDA video frames. Setting the output width and height
16174 works in the same way as for the @var{scale} filter.
16175
16176 The following additional options are accepted:
16177 @table @option
16178 @item format
16179 The pixel format of the output CUDA frames. If set to the string "same" (the
16180 default), the input format will be kept. Note that automatic format negotiation
16181 and conversion is not yet supported for hardware frames
16182
16183 @item interp_algo
16184 The interpolation algorithm used for resizing. One of the following:
16185 @table @option
16186 @item nn
16187 Nearest neighbour.
16188
16189 @item linear
16190 @item cubic
16191 @item cubic2p_bspline
16192 2-parameter cubic (B=1, C=0)
16193
16194 @item cubic2p_catmullrom
16195 2-parameter cubic (B=0, C=1/2)
16196
16197 @item cubic2p_b05c03
16198 2-parameter cubic (B=1/2, C=3/10)
16199
16200 @item super
16201 Supersampling
16202
16203 @item lanczos
16204 @end table
16205
16206 @end table
16207
16208 @section scale2ref
16209
16210 Scale (resize) the input video, based on a reference video.
16211
16212 See the scale filter for available options, scale2ref supports the same but
16213 uses the reference video instead of the main input as basis. scale2ref also
16214 supports the following additional constants for the @option{w} and
16215 @option{h} options:
16216
16217 @table @var
16218 @item main_w
16219 @item main_h
16220 The main input video's width and height
16221
16222 @item main_a
16223 The same as @var{main_w} / @var{main_h}
16224
16225 @item main_sar
16226 The main input video's sample aspect ratio
16227
16228 @item main_dar, mdar
16229 The main input video's display aspect ratio. Calculated from
16230 @code{(main_w / main_h) * main_sar}.
16231
16232 @item main_hsub
16233 @item main_vsub
16234 The main input video's horizontal and vertical chroma subsample values.
16235 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
16236 is 1.
16237 @end table
16238
16239 @subsection Examples
16240
16241 @itemize
16242 @item
16243 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
16244 @example
16245 'scale2ref[b][a];[a][b]overlay'
16246 @end example
16247
16248 @item
16249 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
16250 @example
16251 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
16252 @end example
16253 @end itemize
16254
16255 @section scroll
16256 Scroll input video horizontally and/or vertically by constant speed.
16257
16258 The filter accepts the following options:
16259 @table @option
16260 @item horizontal, h
16261 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
16262 Negative values changes scrolling direction.
16263
16264 @item vertical, v
16265 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
16266 Negative values changes scrolling direction.
16267
16268 @item hpos
16269 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
16270
16271 @item vpos
16272 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
16273 @end table
16274
16275 @subsection Commands
16276
16277 This filter supports the following @ref{commands}:
16278 @table @option
16279 @item horizontal, h
16280 Set the horizontal scrolling speed.
16281 @item vertical, v
16282 Set the vertical scrolling speed.
16283 @end table
16284
16285 @anchor{selectivecolor}
16286 @section selectivecolor
16287
16288 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
16289 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
16290 by the "purity" of the color (that is, how saturated it already is).
16291
16292 This filter is similar to the Adobe Photoshop Selective Color tool.
16293
16294 The filter accepts the following options:
16295
16296 @table @option
16297 @item correction_method
16298 Select color correction method.
16299
16300 Available values are:
16301 @table @samp
16302 @item absolute
16303 Specified adjustments are applied "as-is" (added/subtracted to original pixel
16304 component value).
16305 @item relative
16306 Specified adjustments are relative to the original component value.
16307 @end table
16308 Default is @code{absolute}.
16309 @item reds
16310 Adjustments for red pixels (pixels where the red component is the maximum)
16311 @item yellows
16312 Adjustments for yellow pixels (pixels where the blue component is the minimum)
16313 @item greens
16314 Adjustments for green pixels (pixels where the green component is the maximum)
16315 @item cyans
16316 Adjustments for cyan pixels (pixels where the red component is the minimum)
16317 @item blues
16318 Adjustments for blue pixels (pixels where the blue component is the maximum)
16319 @item magentas
16320 Adjustments for magenta pixels (pixels where the green component is the minimum)
16321 @item whites
16322 Adjustments for white pixels (pixels where all components are greater than 128)
16323 @item neutrals
16324 Adjustments for all pixels except pure black and pure white
16325 @item blacks
16326 Adjustments for black pixels (pixels where all components are lesser than 128)
16327 @item psfile
16328 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
16329 @end table
16330
16331 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
16332 4 space separated floating point adjustment values in the [-1,1] range,
16333 respectively to adjust the amount of cyan, magenta, yellow and black for the
16334 pixels of its range.
16335
16336 @subsection Examples
16337
16338 @itemize
16339 @item
16340 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
16341 increase magenta by 27% in blue areas:
16342 @example
16343 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
16344 @end example
16345
16346 @item
16347 Use a Photoshop selective color preset:
16348 @example
16349 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
16350 @end example
16351 @end itemize
16352
16353 @anchor{separatefields}
16354 @section separatefields
16355
16356 The @code{separatefields} takes a frame-based video input and splits
16357 each frame into its components fields, producing a new half height clip
16358 with twice the frame rate and twice the frame count.
16359
16360 This filter use field-dominance information in frame to decide which
16361 of each pair of fields to place first in the output.
16362 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
16363
16364 @section setdar, setsar
16365
16366 The @code{setdar} filter sets the Display Aspect Ratio for the filter
16367 output video.
16368
16369 This is done by changing the specified Sample (aka Pixel) Aspect
16370 Ratio, according to the following equation:
16371 @example
16372 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
16373 @end example
16374
16375 Keep in mind that the @code{setdar} filter does not modify the pixel
16376 dimensions of the video frame. Also, the display aspect ratio set by
16377 this filter may be changed by later filters in the filterchain,
16378 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
16379 applied.
16380
16381 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
16382 the filter output video.
16383
16384 Note that as a consequence of the application of this filter, the
16385 output display aspect ratio will change according to the equation
16386 above.
16387
16388 Keep in mind that the sample aspect ratio set by the @code{setsar}
16389 filter may be changed by later filters in the filterchain, e.g. if
16390 another "setsar" or a "setdar" filter is applied.
16391
16392 It accepts the following parameters:
16393
16394 @table @option
16395 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
16396 Set the aspect ratio used by the filter.
16397
16398 The parameter can be a floating point number string, an expression, or
16399 a string of the form @var{num}:@var{den}, where @var{num} and
16400 @var{den} are the numerator and denominator of the aspect ratio. If
16401 the parameter is not specified, it is assumed the value "0".
16402 In case the form "@var{num}:@var{den}" is used, the @code{:} character
16403 should be escaped.
16404
16405 @item max
16406 Set the maximum integer value to use for expressing numerator and
16407 denominator when reducing the expressed aspect ratio to a rational.
16408 Default value is @code{100}.
16409
16410 @end table
16411
16412 The parameter @var{sar} is an expression containing
16413 the following constants:
16414
16415 @table @option
16416 @item E, PI, PHI
16417 These are approximated values for the mathematical constants e
16418 (Euler's number), pi (Greek pi), and phi (the golden ratio).
16419
16420 @item w, h
16421 The input width and height.
16422
16423 @item a
16424 These are the same as @var{w} / @var{h}.
16425
16426 @item sar
16427 The input sample aspect ratio.
16428
16429 @item dar
16430 The input display aspect ratio. It is the same as
16431 (@var{w} / @var{h}) * @var{sar}.
16432
16433 @item hsub, vsub
16434 Horizontal and vertical chroma subsample values. For example, for the
16435 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16436 @end table
16437
16438 @subsection Examples
16439
16440 @itemize
16441
16442 @item
16443 To change the display aspect ratio to 16:9, specify one of the following:
16444 @example
16445 setdar=dar=1.77777
16446 setdar=dar=16/9
16447 @end example
16448
16449 @item
16450 To change the sample aspect ratio to 10:11, specify:
16451 @example
16452 setsar=sar=10/11
16453 @end example
16454
16455 @item
16456 To set a display aspect ratio of 16:9, and specify a maximum integer value of
16457 1000 in the aspect ratio reduction, use the command:
16458 @example
16459 setdar=ratio=16/9:max=1000
16460 @end example
16461
16462 @end itemize
16463
16464 @anchor{setfield}
16465 @section setfield
16466
16467 Force field for the output video frame.
16468
16469 The @code{setfield} filter marks the interlace type field for the
16470 output frames. It does not change the input frame, but only sets the
16471 corresponding property, which affects how the frame is treated by
16472 following filters (e.g. @code{fieldorder} or @code{yadif}).
16473
16474 The filter accepts the following options:
16475
16476 @table @option
16477
16478 @item mode
16479 Available values are:
16480
16481 @table @samp
16482 @item auto
16483 Keep the same field property.
16484
16485 @item bff
16486 Mark the frame as bottom-field-first.
16487
16488 @item tff
16489 Mark the frame as top-field-first.
16490
16491 @item prog
16492 Mark the frame as progressive.
16493 @end table
16494 @end table
16495
16496 @anchor{setparams}
16497 @section setparams
16498
16499 Force frame parameter for the output video frame.
16500
16501 The @code{setparams} filter marks interlace and color range for the
16502 output frames. It does not change the input frame, but only sets the
16503 corresponding property, which affects how the frame is treated by
16504 filters/encoders.
16505
16506 @table @option
16507 @item field_mode
16508 Available values are:
16509
16510 @table @samp
16511 @item auto
16512 Keep the same field property (default).
16513
16514 @item bff
16515 Mark the frame as bottom-field-first.
16516
16517 @item tff
16518 Mark the frame as top-field-first.
16519
16520 @item prog
16521 Mark the frame as progressive.
16522 @end table
16523
16524 @item range
16525 Available values are:
16526
16527 @table @samp
16528 @item auto
16529 Keep the same color range property (default).
16530
16531 @item unspecified, unknown
16532 Mark the frame as unspecified color range.
16533
16534 @item limited, tv, mpeg
16535 Mark the frame as limited range.
16536
16537 @item full, pc, jpeg
16538 Mark the frame as full range.
16539 @end table
16540
16541 @item color_primaries
16542 Set the color primaries.
16543 Available values are:
16544
16545 @table @samp
16546 @item auto
16547 Keep the same color primaries property (default).
16548
16549 @item bt709
16550 @item unknown
16551 @item bt470m
16552 @item bt470bg
16553 @item smpte170m
16554 @item smpte240m
16555 @item film
16556 @item bt2020
16557 @item smpte428
16558 @item smpte431
16559 @item smpte432
16560 @item jedec-p22
16561 @end table
16562
16563 @item color_trc
16564 Set the color transfer.
16565 Available values are:
16566
16567 @table @samp
16568 @item auto
16569 Keep the same color trc property (default).
16570
16571 @item bt709
16572 @item unknown
16573 @item bt470m
16574 @item bt470bg
16575 @item smpte170m
16576 @item smpte240m
16577 @item linear
16578 @item log100
16579 @item log316
16580 @item iec61966-2-4
16581 @item bt1361e
16582 @item iec61966-2-1
16583 @item bt2020-10
16584 @item bt2020-12
16585 @item smpte2084
16586 @item smpte428
16587 @item arib-std-b67
16588 @end table
16589
16590 @item colorspace
16591 Set the colorspace.
16592 Available values are:
16593
16594 @table @samp
16595 @item auto
16596 Keep the same colorspace property (default).
16597
16598 @item gbr
16599 @item bt709
16600 @item unknown
16601 @item fcc
16602 @item bt470bg
16603 @item smpte170m
16604 @item smpte240m
16605 @item ycgco
16606 @item bt2020nc
16607 @item bt2020c
16608 @item smpte2085
16609 @item chroma-derived-nc
16610 @item chroma-derived-c
16611 @item ictcp
16612 @end table
16613 @end table
16614
16615 @section showinfo
16616
16617 Show a line containing various information for each input video frame.
16618 The input video is not modified.
16619
16620 This filter supports the following options:
16621
16622 @table @option
16623 @item checksum
16624 Calculate checksums of each plane. By default enabled.
16625 @end table
16626
16627 The shown line contains a sequence of key/value pairs of the form
16628 @var{key}:@var{value}.
16629
16630 The following values are shown in the output:
16631
16632 @table @option
16633 @item n
16634 The (sequential) number of the input frame, starting from 0.
16635
16636 @item pts
16637 The Presentation TimeStamp of the input frame, expressed as a number of
16638 time base units. The time base unit depends on the filter input pad.
16639
16640 @item pts_time
16641 The Presentation TimeStamp of the input frame, expressed as a number of
16642 seconds.
16643
16644 @item pos
16645 The position of the frame in the input stream, or -1 if this information is
16646 unavailable and/or meaningless (for example in case of synthetic video).
16647
16648 @item fmt
16649 The pixel format name.
16650
16651 @item sar
16652 The sample aspect ratio of the input frame, expressed in the form
16653 @var{num}/@var{den}.
16654
16655 @item s
16656 The size of the input frame. For the syntax of this option, check the
16657 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16658
16659 @item i
16660 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
16661 for bottom field first).
16662
16663 @item iskey
16664 This is 1 if the frame is a key frame, 0 otherwise.
16665
16666 @item type
16667 The picture type of the input frame ("I" for an I-frame, "P" for a
16668 P-frame, "B" for a B-frame, or "?" for an unknown type).
16669 Also refer to the documentation of the @code{AVPictureType} enum and of
16670 the @code{av_get_picture_type_char} function defined in
16671 @file{libavutil/avutil.h}.
16672
16673 @item checksum
16674 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
16675
16676 @item plane_checksum
16677 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
16678 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
16679 @end table
16680
16681 @section showpalette
16682
16683 Displays the 256 colors palette of each frame. This filter is only relevant for
16684 @var{pal8} pixel format frames.
16685
16686 It accepts the following option:
16687
16688 @table @option
16689 @item s
16690 Set the size of the box used to represent one palette color entry. Default is
16691 @code{30} (for a @code{30x30} pixel box).
16692 @end table
16693
16694 @section shuffleframes
16695
16696 Reorder and/or duplicate and/or drop video frames.
16697
16698 It accepts the following parameters:
16699
16700 @table @option
16701 @item mapping
16702 Set the destination indexes of input frames.
16703 This is space or '|' separated list of indexes that maps input frames to output
16704 frames. Number of indexes also sets maximal value that each index may have.
16705 '-1' index have special meaning and that is to drop frame.
16706 @end table
16707
16708 The first frame has the index 0. The default is to keep the input unchanged.
16709
16710 @subsection Examples
16711
16712 @itemize
16713 @item
16714 Swap second and third frame of every three frames of the input:
16715 @example
16716 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
16717 @end example
16718
16719 @item
16720 Swap 10th and 1st frame of every ten frames of the input:
16721 @example
16722 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
16723 @end example
16724 @end itemize
16725
16726 @section shuffleplanes
16727
16728 Reorder and/or duplicate video planes.
16729
16730 It accepts the following parameters:
16731
16732 @table @option
16733
16734 @item map0
16735 The index of the input plane to be used as the first output plane.
16736
16737 @item map1
16738 The index of the input plane to be used as the second output plane.
16739
16740 @item map2
16741 The index of the input plane to be used as the third output plane.
16742
16743 @item map3
16744 The index of the input plane to be used as the fourth output plane.
16745
16746 @end table
16747
16748 The first plane has the index 0. The default is to keep the input unchanged.
16749
16750 @subsection Examples
16751
16752 @itemize
16753 @item
16754 Swap the second and third planes of the input:
16755 @example
16756 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
16757 @end example
16758 @end itemize
16759
16760 @anchor{signalstats}
16761 @section signalstats
16762 Evaluate various visual metrics that assist in determining issues associated
16763 with the digitization of analog video media.
16764
16765 By default the filter will log these metadata values:
16766
16767 @table @option
16768 @item YMIN
16769 Display the minimal Y value contained within the input frame. Expressed in
16770 range of [0-255].
16771
16772 @item YLOW
16773 Display the Y value at the 10% percentile within the input frame. Expressed in
16774 range of [0-255].
16775
16776 @item YAVG
16777 Display the average Y value within the input frame. Expressed in range of
16778 [0-255].
16779
16780 @item YHIGH
16781 Display the Y value at the 90% percentile within the input frame. Expressed in
16782 range of [0-255].
16783
16784 @item YMAX
16785 Display the maximum Y value contained within the input frame. Expressed in
16786 range of [0-255].
16787
16788 @item UMIN
16789 Display the minimal U value contained within the input frame. Expressed in
16790 range of [0-255].
16791
16792 @item ULOW
16793 Display the U value at the 10% percentile within the input frame. Expressed in
16794 range of [0-255].
16795
16796 @item UAVG
16797 Display the average U value within the input frame. Expressed in range of
16798 [0-255].
16799
16800 @item UHIGH
16801 Display the U value at the 90% percentile within the input frame. Expressed in
16802 range of [0-255].
16803
16804 @item UMAX
16805 Display the maximum U value contained within the input frame. Expressed in
16806 range of [0-255].
16807
16808 @item VMIN
16809 Display the minimal V value contained within the input frame. Expressed in
16810 range of [0-255].
16811
16812 @item VLOW
16813 Display the V value at the 10% percentile within the input frame. Expressed in
16814 range of [0-255].
16815
16816 @item VAVG
16817 Display the average V value within the input frame. Expressed in range of
16818 [0-255].
16819
16820 @item VHIGH
16821 Display the V value at the 90% percentile within the input frame. Expressed in
16822 range of [0-255].
16823
16824 @item VMAX
16825 Display the maximum V value contained within the input frame. Expressed in
16826 range of [0-255].
16827
16828 @item SATMIN
16829 Display the minimal saturation value contained within the input frame.
16830 Expressed in range of [0-~181.02].
16831
16832 @item SATLOW
16833 Display the saturation value at the 10% percentile within the input frame.
16834 Expressed in range of [0-~181.02].
16835
16836 @item SATAVG
16837 Display the average saturation value within the input frame. Expressed in range
16838 of [0-~181.02].
16839
16840 @item SATHIGH
16841 Display the saturation value at the 90% percentile within the input frame.
16842 Expressed in range of [0-~181.02].
16843
16844 @item SATMAX
16845 Display the maximum saturation value contained within the input frame.
16846 Expressed in range of [0-~181.02].
16847
16848 @item HUEMED
16849 Display the median value for hue within the input frame. Expressed in range of
16850 [0-360].
16851
16852 @item HUEAVG
16853 Display the average value for hue within the input frame. Expressed in range of
16854 [0-360].
16855
16856 @item YDIF
16857 Display the average of sample value difference between all values of the Y
16858 plane in the current frame and corresponding values of the previous input frame.
16859 Expressed in range of [0-255].
16860
16861 @item UDIF
16862 Display the average of sample value difference between all values of the U
16863 plane in the current frame and corresponding values of the previous input frame.
16864 Expressed in range of [0-255].
16865
16866 @item VDIF
16867 Display the average of sample value difference between all values of the V
16868 plane in the current frame and corresponding values of the previous input frame.
16869 Expressed in range of [0-255].
16870
16871 @item YBITDEPTH
16872 Display bit depth of Y plane in current frame.
16873 Expressed in range of [0-16].
16874
16875 @item UBITDEPTH
16876 Display bit depth of U plane in current frame.
16877 Expressed in range of [0-16].
16878
16879 @item VBITDEPTH
16880 Display bit depth of V plane in current frame.
16881 Expressed in range of [0-16].
16882 @end table
16883
16884 The filter accepts the following options:
16885
16886 @table @option
16887 @item stat
16888 @item out
16889
16890 @option{stat} specify an additional form of image analysis.
16891 @option{out} output video with the specified type of pixel highlighted.
16892
16893 Both options accept the following values:
16894
16895 @table @samp
16896 @item tout
16897 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
16898 unlike the neighboring pixels of the same field. Examples of temporal outliers
16899 include the results of video dropouts, head clogs, or tape tracking issues.
16900
16901 @item vrep
16902 Identify @var{vertical line repetition}. Vertical line repetition includes
16903 similar rows of pixels within a frame. In born-digital video vertical line
16904 repetition is common, but this pattern is uncommon in video digitized from an
16905 analog source. When it occurs in video that results from the digitization of an
16906 analog source it can indicate concealment from a dropout compensator.
16907
16908 @item brng
16909 Identify pixels that fall outside of legal broadcast range.
16910 @end table
16911
16912 @item color, c
16913 Set the highlight color for the @option{out} option. The default color is
16914 yellow.
16915 @end table
16916
16917 @subsection Examples
16918
16919 @itemize
16920 @item
16921 Output data of various video metrics:
16922 @example
16923 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
16924 @end example
16925
16926 @item
16927 Output specific data about the minimum and maximum values of the Y plane per frame:
16928 @example
16929 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
16930 @end example
16931
16932 @item
16933 Playback video while highlighting pixels that are outside of broadcast range in red.
16934 @example
16935 ffplay example.mov -vf signalstats="out=brng:color=red"
16936 @end example
16937
16938 @item
16939 Playback video with signalstats metadata drawn over the frame.
16940 @example
16941 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
16942 @end example
16943
16944 The contents of signalstat_drawtext.txt used in the command are:
16945 @example
16946 time %@{pts:hms@}
16947 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
16948 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
16949 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
16950 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
16951
16952 @end example
16953 @end itemize
16954
16955 @anchor{signature}
16956 @section signature
16957
16958 Calculates the MPEG-7 Video Signature. The filter can handle more than one
16959 input. In this case the matching between the inputs can be calculated additionally.
16960 The filter always passes through the first input. The signature of each stream can
16961 be written into a file.
16962
16963 It accepts the following options:
16964
16965 @table @option
16966 @item detectmode
16967 Enable or disable the matching process.
16968
16969 Available values are:
16970
16971 @table @samp
16972 @item off
16973 Disable the calculation of a matching (default).
16974 @item full
16975 Calculate the matching for the whole video and output whether the whole video
16976 matches or only parts.
16977 @item fast
16978 Calculate only until a matching is found or the video ends. Should be faster in
16979 some cases.
16980 @end table
16981
16982 @item nb_inputs
16983 Set the number of inputs. The option value must be a non negative integer.
16984 Default value is 1.
16985
16986 @item filename
16987 Set the path to which the output is written. If there is more than one input,
16988 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
16989 integer), that will be replaced with the input number. If no filename is
16990 specified, no output will be written. This is the default.
16991
16992 @item format
16993 Choose the output format.
16994
16995 Available values are:
16996
16997 @table @samp
16998 @item binary
16999 Use the specified binary representation (default).
17000 @item xml
17001 Use the specified xml representation.
17002 @end table
17003
17004 @item th_d
17005 Set threshold to detect one word as similar. The option value must be an integer
17006 greater than zero. The default value is 9000.
17007
17008 @item th_dc
17009 Set threshold to detect all words as similar. The option value must be an integer
17010 greater than zero. The default value is 60000.
17011
17012 @item th_xh
17013 Set threshold to detect frames as similar. The option value must be an integer
17014 greater than zero. The default value is 116.
17015
17016 @item th_di
17017 Set the minimum length of a sequence in frames to recognize it as matching
17018 sequence. The option value must be a non negative integer value.
17019 The default value is 0.
17020
17021 @item th_it
17022 Set the minimum relation, that matching frames to all frames must have.
17023 The option value must be a double value between 0 and 1. The default value is 0.5.
17024 @end table
17025
17026 @subsection Examples
17027
17028 @itemize
17029 @item
17030 To calculate the signature of an input video and store it in signature.bin:
17031 @example
17032 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
17033 @end example
17034
17035 @item
17036 To detect whether two videos match and store the signatures in XML format in
17037 signature0.xml and signature1.xml:
17038 @example
17039 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 -
17040 @end example
17041
17042 @end itemize
17043
17044 @anchor{smartblur}
17045 @section smartblur
17046
17047 Blur the input video without impacting the outlines.
17048
17049 It accepts the following options:
17050
17051 @table @option
17052 @item luma_radius, lr
17053 Set the luma radius. The option value must be a float number in
17054 the range [0.1,5.0] that specifies the variance of the gaussian filter
17055 used to blur the image (slower if larger). Default value is 1.0.
17056
17057 @item luma_strength, ls
17058 Set the luma strength. The option value must be a float number
17059 in the range [-1.0,1.0] that configures the blurring. A value included
17060 in [0.0,1.0] will blur the image whereas a value included in
17061 [-1.0,0.0] will sharpen the image. Default value is 1.0.
17062
17063 @item luma_threshold, lt
17064 Set the luma threshold used as a coefficient to determine
17065 whether a pixel should be blurred or not. The option value must be an
17066 integer in the range [-30,30]. A value of 0 will filter all the image,
17067 a value included in [0,30] will filter flat areas and a value included
17068 in [-30,0] will filter edges. Default value is 0.
17069
17070 @item chroma_radius, cr
17071 Set the chroma radius. The option value must be a float number in
17072 the range [0.1,5.0] that specifies the variance of the gaussian filter
17073 used to blur the image (slower if larger). Default value is @option{luma_radius}.
17074
17075 @item chroma_strength, cs
17076 Set the chroma strength. The option value must be a float number
17077 in the range [-1.0,1.0] that configures the blurring. A value included
17078 in [0.0,1.0] will blur the image whereas a value included in
17079 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
17080
17081 @item chroma_threshold, ct
17082 Set the chroma threshold used as a coefficient to determine
17083 whether a pixel should be blurred or not. The option value must be an
17084 integer in the range [-30,30]. A value of 0 will filter all the image,
17085 a value included in [0,30] will filter flat areas and a value included
17086 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
17087 @end table
17088
17089 If a chroma option is not explicitly set, the corresponding luma value
17090 is set.
17091
17092 @section sobel
17093 Apply sobel operator to input video stream.
17094
17095 The filter accepts the following option:
17096
17097 @table @option
17098 @item planes
17099 Set which planes will be processed, unprocessed planes will be copied.
17100 By default value 0xf, all planes will be processed.
17101
17102 @item scale
17103 Set value which will be multiplied with filtered result.
17104
17105 @item delta
17106 Set value which will be added to filtered result.
17107 @end table
17108
17109 @anchor{spp}
17110 @section spp
17111
17112 Apply a simple postprocessing filter that compresses and decompresses the image
17113 at several (or - in the case of @option{quality} level @code{6} - all) shifts
17114 and average the results.
17115
17116 The filter accepts the following options:
17117
17118 @table @option
17119 @item quality
17120 Set quality. This option defines the number of levels for averaging. It accepts
17121 an integer in the range 0-6. If set to @code{0}, the filter will have no
17122 effect. A value of @code{6} means the higher quality. For each increment of
17123 that value the speed drops by a factor of approximately 2.  Default value is
17124 @code{3}.
17125
17126 @item qp
17127 Force a constant quantization parameter. If not set, the filter will use the QP
17128 from the video stream (if available).
17129
17130 @item mode
17131 Set thresholding mode. Available modes are:
17132
17133 @table @samp
17134 @item hard
17135 Set hard thresholding (default).
17136 @item soft
17137 Set soft thresholding (better de-ringing effect, but likely blurrier).
17138 @end table
17139
17140 @item use_bframe_qp
17141 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
17142 option may cause flicker since the B-Frames have often larger QP. Default is
17143 @code{0} (not enabled).
17144 @end table
17145
17146 @section sr
17147
17148 Scale the input by applying one of the super-resolution methods based on
17149 convolutional neural networks. Supported models:
17150
17151 @itemize
17152 @item
17153 Super-Resolution Convolutional Neural Network model (SRCNN).
17154 See @url{https://arxiv.org/abs/1501.00092}.
17155
17156 @item
17157 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
17158 See @url{https://arxiv.org/abs/1609.05158}.
17159 @end itemize
17160
17161 Training scripts as well as scripts for model file (.pb) saving can be found at
17162 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
17163 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
17164
17165 Native model files (.model) can be generated from TensorFlow model
17166 files (.pb) by using tools/python/convert.py
17167
17168 The filter accepts the following options:
17169
17170 @table @option
17171 @item dnn_backend
17172 Specify which DNN backend to use for model loading and execution. This option accepts
17173 the following values:
17174
17175 @table @samp
17176 @item native
17177 Native implementation of DNN loading and execution.
17178
17179 @item tensorflow
17180 TensorFlow backend. To enable this backend you
17181 need to install the TensorFlow for C library (see
17182 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
17183 @code{--enable-libtensorflow}
17184 @end table
17185
17186 Default value is @samp{native}.
17187
17188 @item model
17189 Set path to model file specifying network architecture and its parameters.
17190 Note that different backends use different file formats. TensorFlow backend
17191 can load files for both formats, while native backend can load files for only
17192 its format.
17193
17194 @item scale_factor
17195 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
17196 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
17197 input upscaled using bicubic upscaling with proper scale factor.
17198 @end table
17199
17200 @section ssim
17201
17202 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
17203
17204 This filter takes in input two input videos, the first input is
17205 considered the "main" source and is passed unchanged to the
17206 output. The second input is used as a "reference" video for computing
17207 the SSIM.
17208
17209 Both video inputs must have the same resolution and pixel format for
17210 this filter to work correctly. Also it assumes that both inputs
17211 have the same number of frames, which are compared one by one.
17212
17213 The filter stores the calculated SSIM of each frame.
17214
17215 The description of the accepted parameters follows.
17216
17217 @table @option
17218 @item stats_file, f
17219 If specified the filter will use the named file to save the SSIM of
17220 each individual frame. When filename equals "-" the data is sent to
17221 standard output.
17222 @end table
17223
17224 The file printed if @var{stats_file} is selected, contains a sequence of
17225 key/value pairs of the form @var{key}:@var{value} for each compared
17226 couple of frames.
17227
17228 A description of each shown parameter follows:
17229
17230 @table @option
17231 @item n
17232 sequential number of the input frame, starting from 1
17233
17234 @item Y, U, V, R, G, B
17235 SSIM of the compared frames for the component specified by the suffix.
17236
17237 @item All
17238 SSIM of the compared frames for the whole frame.
17239
17240 @item dB
17241 Same as above but in dB representation.
17242 @end table
17243
17244 This filter also supports the @ref{framesync} options.
17245
17246 @subsection Examples
17247 @itemize
17248 @item
17249 For example:
17250 @example
17251 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
17252 [main][ref] ssim="stats_file=stats.log" [out]
17253 @end example
17254
17255 On this example the input file being processed is compared with the
17256 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
17257 is stored in @file{stats.log}.
17258
17259 @item
17260 Another example with both psnr and ssim at same time:
17261 @example
17262 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
17263 @end example
17264
17265 @item
17266 Another example with different containers:
17267 @example
17268 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 -
17269 @end example
17270 @end itemize
17271
17272 @section stereo3d
17273
17274 Convert between different stereoscopic image formats.
17275
17276 The filters accept the following options:
17277
17278 @table @option
17279 @item in
17280 Set stereoscopic image format of input.
17281
17282 Available values for input image formats are:
17283 @table @samp
17284 @item sbsl
17285 side by side parallel (left eye left, right eye right)
17286
17287 @item sbsr
17288 side by side crosseye (right eye left, left eye right)
17289
17290 @item sbs2l
17291 side by side parallel with half width resolution
17292 (left eye left, right eye right)
17293
17294 @item sbs2r
17295 side by side crosseye with half width resolution
17296 (right eye left, left eye right)
17297
17298 @item abl
17299 @item tbl
17300 above-below (left eye above, right eye below)
17301
17302 @item abr
17303 @item tbr
17304 above-below (right eye above, left eye below)
17305
17306 @item ab2l
17307 @item tb2l
17308 above-below with half height resolution
17309 (left eye above, right eye below)
17310
17311 @item ab2r
17312 @item tb2r
17313 above-below with half height resolution
17314 (right eye above, left eye below)
17315
17316 @item al
17317 alternating frames (left eye first, right eye second)
17318
17319 @item ar
17320 alternating frames (right eye first, left eye second)
17321
17322 @item irl
17323 interleaved rows (left eye has top row, right eye starts on next row)
17324
17325 @item irr
17326 interleaved rows (right eye has top row, left eye starts on next row)
17327
17328 @item icl
17329 interleaved columns, left eye first
17330
17331 @item icr
17332 interleaved columns, right eye first
17333
17334 Default value is @samp{sbsl}.
17335 @end table
17336
17337 @item out
17338 Set stereoscopic image format of output.
17339
17340 @table @samp
17341 @item sbsl
17342 side by side parallel (left eye left, right eye right)
17343
17344 @item sbsr
17345 side by side crosseye (right eye left, left eye right)
17346
17347 @item sbs2l
17348 side by side parallel with half width resolution
17349 (left eye left, right eye right)
17350
17351 @item sbs2r
17352 side by side crosseye with half width resolution
17353 (right eye left, left eye right)
17354
17355 @item abl
17356 @item tbl
17357 above-below (left eye above, right eye below)
17358
17359 @item abr
17360 @item tbr
17361 above-below (right eye above, left eye below)
17362
17363 @item ab2l
17364 @item tb2l
17365 above-below with half height resolution
17366 (left eye above, right eye below)
17367
17368 @item ab2r
17369 @item tb2r
17370 above-below with half height resolution
17371 (right eye above, left eye below)
17372
17373 @item al
17374 alternating frames (left eye first, right eye second)
17375
17376 @item ar
17377 alternating frames (right eye first, left eye second)
17378
17379 @item irl
17380 interleaved rows (left eye has top row, right eye starts on next row)
17381
17382 @item irr
17383 interleaved rows (right eye has top row, left eye starts on next row)
17384
17385 @item arbg
17386 anaglyph red/blue gray
17387 (red filter on left eye, blue filter on right eye)
17388
17389 @item argg
17390 anaglyph red/green gray
17391 (red filter on left eye, green filter on right eye)
17392
17393 @item arcg
17394 anaglyph red/cyan gray
17395 (red filter on left eye, cyan filter on right eye)
17396
17397 @item arch
17398 anaglyph red/cyan half colored
17399 (red filter on left eye, cyan filter on right eye)
17400
17401 @item arcc
17402 anaglyph red/cyan color
17403 (red filter on left eye, cyan filter on right eye)
17404
17405 @item arcd
17406 anaglyph red/cyan color optimized with the least squares projection of dubois
17407 (red filter on left eye, cyan filter on right eye)
17408
17409 @item agmg
17410 anaglyph green/magenta gray
17411 (green filter on left eye, magenta filter on right eye)
17412
17413 @item agmh
17414 anaglyph green/magenta half colored
17415 (green filter on left eye, magenta filter on right eye)
17416
17417 @item agmc
17418 anaglyph green/magenta colored
17419 (green filter on left eye, magenta filter on right eye)
17420
17421 @item agmd
17422 anaglyph green/magenta color optimized with the least squares projection of dubois
17423 (green filter on left eye, magenta filter on right eye)
17424
17425 @item aybg
17426 anaglyph yellow/blue gray
17427 (yellow filter on left eye, blue filter on right eye)
17428
17429 @item aybh
17430 anaglyph yellow/blue half colored
17431 (yellow filter on left eye, blue filter on right eye)
17432
17433 @item aybc
17434 anaglyph yellow/blue colored
17435 (yellow filter on left eye, blue filter on right eye)
17436
17437 @item aybd
17438 anaglyph yellow/blue color optimized with the least squares projection of dubois
17439 (yellow filter on left eye, blue filter on right eye)
17440
17441 @item ml
17442 mono output (left eye only)
17443
17444 @item mr
17445 mono output (right eye only)
17446
17447 @item chl
17448 checkerboard, left eye first
17449
17450 @item chr
17451 checkerboard, right eye first
17452
17453 @item icl
17454 interleaved columns, left eye first
17455
17456 @item icr
17457 interleaved columns, right eye first
17458
17459 @item hdmi
17460 HDMI frame pack
17461 @end table
17462
17463 Default value is @samp{arcd}.
17464 @end table
17465
17466 @subsection Examples
17467
17468 @itemize
17469 @item
17470 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
17471 @example
17472 stereo3d=sbsl:aybd
17473 @end example
17474
17475 @item
17476 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
17477 @example
17478 stereo3d=abl:sbsr
17479 @end example
17480 @end itemize
17481
17482 @section streamselect, astreamselect
17483 Select video or audio streams.
17484
17485 The filter accepts the following options:
17486
17487 @table @option
17488 @item inputs
17489 Set number of inputs. Default is 2.
17490
17491 @item map
17492 Set input indexes to remap to outputs.
17493 @end table
17494
17495 @subsection Commands
17496
17497 The @code{streamselect} and @code{astreamselect} filter supports the following
17498 commands:
17499
17500 @table @option
17501 @item map
17502 Set input indexes to remap to outputs.
17503 @end table
17504
17505 @subsection Examples
17506
17507 @itemize
17508 @item
17509 Select first 5 seconds 1st stream and rest of time 2nd stream:
17510 @example
17511 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
17512 @end example
17513
17514 @item
17515 Same as above, but for audio:
17516 @example
17517 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
17518 @end example
17519 @end itemize
17520
17521 @anchor{subtitles}
17522 @section subtitles
17523
17524 Draw subtitles on top of input video using the libass library.
17525
17526 To enable compilation of this filter you need to configure FFmpeg with
17527 @code{--enable-libass}. This filter also requires a build with libavcodec and
17528 libavformat to convert the passed subtitles file to ASS (Advanced Substation
17529 Alpha) subtitles format.
17530
17531 The filter accepts the following options:
17532
17533 @table @option
17534 @item filename, f
17535 Set the filename of the subtitle file to read. It must be specified.
17536
17537 @item original_size
17538 Specify the size of the original video, the video for which the ASS file
17539 was composed. For the syntax of this option, check the
17540 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17541 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
17542 correctly scale the fonts if the aspect ratio has been changed.
17543
17544 @item fontsdir
17545 Set a directory path containing fonts that can be used by the filter.
17546 These fonts will be used in addition to whatever the font provider uses.
17547
17548 @item alpha
17549 Process alpha channel, by default alpha channel is untouched.
17550
17551 @item charenc
17552 Set subtitles input character encoding. @code{subtitles} filter only. Only
17553 useful if not UTF-8.
17554
17555 @item stream_index, si
17556 Set subtitles stream index. @code{subtitles} filter only.
17557
17558 @item force_style
17559 Override default style or script info parameters of the subtitles. It accepts a
17560 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
17561 @end table
17562
17563 If the first key is not specified, it is assumed that the first value
17564 specifies the @option{filename}.
17565
17566 For example, to render the file @file{sub.srt} on top of the input
17567 video, use the command:
17568 @example
17569 subtitles=sub.srt
17570 @end example
17571
17572 which is equivalent to:
17573 @example
17574 subtitles=filename=sub.srt
17575 @end example
17576
17577 To render the default subtitles stream from file @file{video.mkv}, use:
17578 @example
17579 subtitles=video.mkv
17580 @end example
17581
17582 To render the second subtitles stream from that file, use:
17583 @example
17584 subtitles=video.mkv:si=1
17585 @end example
17586
17587 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
17588 @code{DejaVu Serif}, use:
17589 @example
17590 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
17591 @end example
17592
17593 @section super2xsai
17594
17595 Scale the input by 2x and smooth using the Super2xSaI (Scale and
17596 Interpolate) pixel art scaling algorithm.
17597
17598 Useful for enlarging pixel art images without reducing sharpness.
17599
17600 @section swaprect
17601
17602 Swap two rectangular objects in video.
17603
17604 This filter accepts the following options:
17605
17606 @table @option
17607 @item w
17608 Set object width.
17609
17610 @item h
17611 Set object height.
17612
17613 @item x1
17614 Set 1st rect x coordinate.
17615
17616 @item y1
17617 Set 1st rect y coordinate.
17618
17619 @item x2
17620 Set 2nd rect x coordinate.
17621
17622 @item y2
17623 Set 2nd rect y coordinate.
17624
17625 All expressions are evaluated once for each frame.
17626 @end table
17627
17628 The all options are expressions containing the following constants:
17629
17630 @table @option
17631 @item w
17632 @item h
17633 The input width and height.
17634
17635 @item a
17636 same as @var{w} / @var{h}
17637
17638 @item sar
17639 input sample aspect ratio
17640
17641 @item dar
17642 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
17643
17644 @item n
17645 The number of the input frame, starting from 0.
17646
17647 @item t
17648 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
17649
17650 @item pos
17651 the position in the file of the input frame, NAN if unknown
17652 @end table
17653
17654 @section swapuv
17655 Swap U & V plane.
17656
17657 @section telecine
17658
17659 Apply telecine process to the video.
17660
17661 This filter accepts the following options:
17662
17663 @table @option
17664 @item first_field
17665 @table @samp
17666 @item top, t
17667 top field first
17668 @item bottom, b
17669 bottom field first
17670 The default value is @code{top}.
17671 @end table
17672
17673 @item pattern
17674 A string of numbers representing the pulldown pattern you wish to apply.
17675 The default value is @code{23}.
17676 @end table
17677
17678 @example
17679 Some typical patterns:
17680
17681 NTSC output (30i):
17682 27.5p: 32222
17683 24p: 23 (classic)
17684 24p: 2332 (preferred)
17685 20p: 33
17686 18p: 334
17687 16p: 3444
17688
17689 PAL output (25i):
17690 27.5p: 12222
17691 24p: 222222222223 ("Euro pulldown")
17692 16.67p: 33
17693 16p: 33333334
17694 @end example
17695
17696 @section threshold
17697
17698 Apply threshold effect to video stream.
17699
17700 This filter needs four video streams to perform thresholding.
17701 First stream is stream we are filtering.
17702 Second stream is holding threshold values, third stream is holding min values,
17703 and last, fourth stream is holding max values.
17704
17705 The filter accepts the following option:
17706
17707 @table @option
17708 @item planes
17709 Set which planes will be processed, unprocessed planes will be copied.
17710 By default value 0xf, all planes will be processed.
17711 @end table
17712
17713 For example if first stream pixel's component value is less then threshold value
17714 of pixel component from 2nd threshold stream, third stream value will picked,
17715 otherwise fourth stream pixel component value will be picked.
17716
17717 Using color source filter one can perform various types of thresholding:
17718
17719 @subsection Examples
17720
17721 @itemize
17722 @item
17723 Binary threshold, using gray color as threshold:
17724 @example
17725 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
17726 @end example
17727
17728 @item
17729 Inverted binary threshold, using gray color as threshold:
17730 @example
17731 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
17732 @end example
17733
17734 @item
17735 Truncate binary threshold, using gray color as threshold:
17736 @example
17737 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
17738 @end example
17739
17740 @item
17741 Threshold to zero, using gray color as threshold:
17742 @example
17743 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
17744 @end example
17745
17746 @item
17747 Inverted threshold to zero, using gray color as threshold:
17748 @example
17749 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
17750 @end example
17751 @end itemize
17752
17753 @section thumbnail
17754 Select the most representative frame in a given sequence of consecutive frames.
17755
17756 The filter accepts the following options:
17757
17758 @table @option
17759 @item n
17760 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
17761 will pick one of them, and then handle the next batch of @var{n} frames until
17762 the end. Default is @code{100}.
17763 @end table
17764
17765 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
17766 value will result in a higher memory usage, so a high value is not recommended.
17767
17768 @subsection Examples
17769
17770 @itemize
17771 @item
17772 Extract one picture each 50 frames:
17773 @example
17774 thumbnail=50
17775 @end example
17776
17777 @item
17778 Complete example of a thumbnail creation with @command{ffmpeg}:
17779 @example
17780 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
17781 @end example
17782 @end itemize
17783
17784 @section tile
17785
17786 Tile several successive frames together.
17787
17788 The filter accepts the following options:
17789
17790 @table @option
17791
17792 @item layout
17793 Set the grid size (i.e. the number of lines and columns). For the syntax of
17794 this option, check the
17795 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17796
17797 @item nb_frames
17798 Set the maximum number of frames to render in the given area. It must be less
17799 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
17800 the area will be used.
17801
17802 @item margin
17803 Set the outer border margin in pixels.
17804
17805 @item padding
17806 Set the inner border thickness (i.e. the number of pixels between frames). For
17807 more advanced padding options (such as having different values for the edges),
17808 refer to the pad video filter.
17809
17810 @item color
17811 Specify the color of the unused area. For the syntax of this option, check the
17812 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
17813 The default value of @var{color} is "black".
17814
17815 @item overlap
17816 Set the number of frames to overlap when tiling several successive frames together.
17817 The value must be between @code{0} and @var{nb_frames - 1}.
17818
17819 @item init_padding
17820 Set the number of frames to initially be empty before displaying first output frame.
17821 This controls how soon will one get first output frame.
17822 The value must be between @code{0} and @var{nb_frames - 1}.
17823 @end table
17824
17825 @subsection Examples
17826
17827 @itemize
17828 @item
17829 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
17830 @example
17831 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
17832 @end example
17833 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
17834 duplicating each output frame to accommodate the originally detected frame
17835 rate.
17836
17837 @item
17838 Display @code{5} pictures in an area of @code{3x2} frames,
17839 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
17840 mixed flat and named options:
17841 @example
17842 tile=3x2:nb_frames=5:padding=7:margin=2
17843 @end example
17844 @end itemize
17845
17846 @section tinterlace
17847
17848 Perform various types of temporal field interlacing.
17849
17850 Frames are counted starting from 1, so the first input frame is
17851 considered odd.
17852
17853 The filter accepts the following options:
17854
17855 @table @option
17856
17857 @item mode
17858 Specify the mode of the interlacing. This option can also be specified
17859 as a value alone. See below for a list of values for this option.
17860
17861 Available values are:
17862
17863 @table @samp
17864 @item merge, 0
17865 Move odd frames into the upper field, even into the lower field,
17866 generating a double height frame at half frame rate.
17867 @example
17868  ------> time
17869 Input:
17870 Frame 1         Frame 2         Frame 3         Frame 4
17871
17872 11111           22222           33333           44444
17873 11111           22222           33333           44444
17874 11111           22222           33333           44444
17875 11111           22222           33333           44444
17876
17877 Output:
17878 11111                           33333
17879 22222                           44444
17880 11111                           33333
17881 22222                           44444
17882 11111                           33333
17883 22222                           44444
17884 11111                           33333
17885 22222                           44444
17886 @end example
17887
17888 @item drop_even, 1
17889 Only output odd frames, even frames are dropped, generating a frame with
17890 unchanged height at half frame rate.
17891
17892 @example
17893  ------> time
17894 Input:
17895 Frame 1         Frame 2         Frame 3         Frame 4
17896
17897 11111           22222           33333           44444
17898 11111           22222           33333           44444
17899 11111           22222           33333           44444
17900 11111           22222           33333           44444
17901
17902 Output:
17903 11111                           33333
17904 11111                           33333
17905 11111                           33333
17906 11111                           33333
17907 @end example
17908
17909 @item drop_odd, 2
17910 Only output even frames, odd frames are dropped, generating a frame with
17911 unchanged height at half frame rate.
17912
17913 @example
17914  ------> time
17915 Input:
17916 Frame 1         Frame 2         Frame 3         Frame 4
17917
17918 11111           22222           33333           44444
17919 11111           22222           33333           44444
17920 11111           22222           33333           44444
17921 11111           22222           33333           44444
17922
17923 Output:
17924                 22222                           44444
17925                 22222                           44444
17926                 22222                           44444
17927                 22222                           44444
17928 @end example
17929
17930 @item pad, 3
17931 Expand each frame to full height, but pad alternate lines with black,
17932 generating a frame with double height at the same input frame rate.
17933
17934 @example
17935  ------> time
17936 Input:
17937 Frame 1         Frame 2         Frame 3         Frame 4
17938
17939 11111           22222           33333           44444
17940 11111           22222           33333           44444
17941 11111           22222           33333           44444
17942 11111           22222           33333           44444
17943
17944 Output:
17945 11111           .....           33333           .....
17946 .....           22222           .....           44444
17947 11111           .....           33333           .....
17948 .....           22222           .....           44444
17949 11111           .....           33333           .....
17950 .....           22222           .....           44444
17951 11111           .....           33333           .....
17952 .....           22222           .....           44444
17953 @end example
17954
17955
17956 @item interleave_top, 4
17957 Interleave the upper field from odd frames with the lower field from
17958 even frames, generating a frame with unchanged height at half frame rate.
17959
17960 @example
17961  ------> time
17962 Input:
17963 Frame 1         Frame 2         Frame 3         Frame 4
17964
17965 11111<-         22222           33333<-         44444
17966 11111           22222<-         33333           44444<-
17967 11111<-         22222           33333<-         44444
17968 11111           22222<-         33333           44444<-
17969
17970 Output:
17971 11111                           33333
17972 22222                           44444
17973 11111                           33333
17974 22222                           44444
17975 @end example
17976
17977
17978 @item interleave_bottom, 5
17979 Interleave the lower field from odd frames with the upper field from
17980 even frames, generating a frame with unchanged height at half frame rate.
17981
17982 @example
17983  ------> time
17984 Input:
17985 Frame 1         Frame 2         Frame 3         Frame 4
17986
17987 11111           22222<-         33333           44444<-
17988 11111<-         22222           33333<-         44444
17989 11111           22222<-         33333           44444<-
17990 11111<-         22222           33333<-         44444
17991
17992 Output:
17993 22222                           44444
17994 11111                           33333
17995 22222                           44444
17996 11111                           33333
17997 @end example
17998
17999
18000 @item interlacex2, 6
18001 Double frame rate with unchanged height. Frames are inserted each
18002 containing the second temporal field from the previous input frame and
18003 the first temporal field from the next input frame. This mode relies on
18004 the top_field_first flag. Useful for interlaced video displays with no
18005 field synchronisation.
18006
18007 @example
18008  ------> time
18009 Input:
18010 Frame 1         Frame 2         Frame 3         Frame 4
18011
18012 11111           22222           33333           44444
18013  11111           22222           33333           44444
18014 11111           22222           33333           44444
18015  11111           22222           33333           44444
18016
18017 Output:
18018 11111   22222   22222   33333   33333   44444   44444
18019  11111   11111   22222   22222   33333   33333   44444
18020 11111   22222   22222   33333   33333   44444   44444
18021  11111   11111   22222   22222   33333   33333   44444
18022 @end example
18023
18024
18025 @item mergex2, 7
18026 Move odd frames into the upper field, even into the lower field,
18027 generating a double height frame at same frame rate.
18028
18029 @example
18030  ------> time
18031 Input:
18032 Frame 1         Frame 2         Frame 3         Frame 4
18033
18034 11111           22222           33333           44444
18035 11111           22222           33333           44444
18036 11111           22222           33333           44444
18037 11111           22222           33333           44444
18038
18039 Output:
18040 11111           33333           33333           55555
18041 22222           22222           44444           44444
18042 11111           33333           33333           55555
18043 22222           22222           44444           44444
18044 11111           33333           33333           55555
18045 22222           22222           44444           44444
18046 11111           33333           33333           55555
18047 22222           22222           44444           44444
18048 @end example
18049
18050 @end table
18051
18052 Numeric values are deprecated but are accepted for backward
18053 compatibility reasons.
18054
18055 Default mode is @code{merge}.
18056
18057 @item flags
18058 Specify flags influencing the filter process.
18059
18060 Available value for @var{flags} is:
18061
18062 @table @option
18063 @item low_pass_filter, vlpf
18064 Enable linear vertical low-pass filtering in the filter.
18065 Vertical low-pass filtering is required when creating an interlaced
18066 destination from a progressive source which contains high-frequency
18067 vertical detail. Filtering will reduce interlace 'twitter' and Moire
18068 patterning.
18069
18070 @item complex_filter, cvlpf
18071 Enable complex vertical low-pass filtering.
18072 This will slightly less reduce interlace 'twitter' and Moire
18073 patterning but better retain detail and subjective sharpness impression.
18074
18075 @end table
18076
18077 Vertical low-pass filtering can only be enabled for @option{mode}
18078 @var{interleave_top} and @var{interleave_bottom}.
18079
18080 @end table
18081
18082 @section tmix
18083
18084 Mix successive video frames.
18085
18086 A description of the accepted options follows.
18087
18088 @table @option
18089 @item frames
18090 The number of successive frames to mix. If unspecified, it defaults to 3.
18091
18092 @item weights
18093 Specify weight of each input video frame.
18094 Each weight is separated by space. If number of weights is smaller than
18095 number of @var{frames} last specified weight will be used for all remaining
18096 unset weights.
18097
18098 @item scale
18099 Specify scale, if it is set it will be multiplied with sum
18100 of each weight multiplied with pixel values to give final destination
18101 pixel value. By default @var{scale} is auto scaled to sum of weights.
18102 @end table
18103
18104 @subsection Examples
18105
18106 @itemize
18107 @item
18108 Average 7 successive frames:
18109 @example
18110 tmix=frames=7:weights="1 1 1 1 1 1 1"
18111 @end example
18112
18113 @item
18114 Apply simple temporal convolution:
18115 @example
18116 tmix=frames=3:weights="-1 3 -1"
18117 @end example
18118
18119 @item
18120 Similar as above but only showing temporal differences:
18121 @example
18122 tmix=frames=3:weights="-1 2 -1":scale=1
18123 @end example
18124 @end itemize
18125
18126 @anchor{tonemap}
18127 @section tonemap
18128 Tone map colors from different dynamic ranges.
18129
18130 This filter expects data in single precision floating point, as it needs to
18131 operate on (and can output) out-of-range values. Another filter, such as
18132 @ref{zscale}, is needed to convert the resulting frame to a usable format.
18133
18134 The tonemapping algorithms implemented only work on linear light, so input
18135 data should be linearized beforehand (and possibly correctly tagged).
18136
18137 @example
18138 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
18139 @end example
18140
18141 @subsection Options
18142 The filter accepts the following options.
18143
18144 @table @option
18145 @item tonemap
18146 Set the tone map algorithm to use.
18147
18148 Possible values are:
18149 @table @var
18150 @item none
18151 Do not apply any tone map, only desaturate overbright pixels.
18152
18153 @item clip
18154 Hard-clip any out-of-range values. Use it for perfect color accuracy for
18155 in-range values, while distorting out-of-range values.
18156
18157 @item linear
18158 Stretch the entire reference gamut to a linear multiple of the display.
18159
18160 @item gamma
18161 Fit a logarithmic transfer between the tone curves.
18162
18163 @item reinhard
18164 Preserve overall image brightness with a simple curve, using nonlinear
18165 contrast, which results in flattening details and degrading color accuracy.
18166
18167 @item hable
18168 Preserve both dark and bright details better than @var{reinhard}, at the cost
18169 of slightly darkening everything. Use it when detail preservation is more
18170 important than color and brightness accuracy.
18171
18172 @item mobius
18173 Smoothly map out-of-range values, while retaining contrast and colors for
18174 in-range material as much as possible. Use it when color accuracy is more
18175 important than detail preservation.
18176 @end table
18177
18178 Default is none.
18179
18180 @item param
18181 Tune the tone mapping algorithm.
18182
18183 This affects the following algorithms:
18184 @table @var
18185 @item none
18186 Ignored.
18187
18188 @item linear
18189 Specifies the scale factor to use while stretching.
18190 Default to 1.0.
18191
18192 @item gamma
18193 Specifies the exponent of the function.
18194 Default to 1.8.
18195
18196 @item clip
18197 Specify an extra linear coefficient to multiply into the signal before clipping.
18198 Default to 1.0.
18199
18200 @item reinhard
18201 Specify the local contrast coefficient at the display peak.
18202 Default to 0.5, which means that in-gamut values will be about half as bright
18203 as when clipping.
18204
18205 @item hable
18206 Ignored.
18207
18208 @item mobius
18209 Specify the transition point from linear to mobius transform. Every value
18210 below this point is guaranteed to be mapped 1:1. The higher the value, the
18211 more accurate the result will be, at the cost of losing bright details.
18212 Default to 0.3, which due to the steep initial slope still preserves in-range
18213 colors fairly accurately.
18214 @end table
18215
18216 @item desat
18217 Apply desaturation for highlights that exceed this level of brightness. The
18218 higher the parameter, the more color information will be preserved. This
18219 setting helps prevent unnaturally blown-out colors for super-highlights, by
18220 (smoothly) turning into white instead. This makes images feel more natural,
18221 at the cost of reducing information about out-of-range colors.
18222
18223 The default of 2.0 is somewhat conservative and will mostly just apply to
18224 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
18225
18226 This option works only if the input frame has a supported color tag.
18227
18228 @item peak
18229 Override signal/nominal/reference peak with this value. Useful when the
18230 embedded peak information in display metadata is not reliable or when tone
18231 mapping from a lower range to a higher range.
18232 @end table
18233
18234 @section tpad
18235
18236 Temporarily pad video frames.
18237
18238 The filter accepts the following options:
18239
18240 @table @option
18241 @item start
18242 Specify number of delay frames before input video stream.
18243
18244 @item stop
18245 Specify number of padding frames after input video stream.
18246 Set to -1 to pad indefinitely.
18247
18248 @item start_mode
18249 Set kind of frames added to beginning of stream.
18250 Can be either @var{add} or @var{clone}.
18251 With @var{add} frames of solid-color are added.
18252 With @var{clone} frames are clones of first frame.
18253
18254 @item stop_mode
18255 Set kind of frames added to end of stream.
18256 Can be either @var{add} or @var{clone}.
18257 With @var{add} frames of solid-color are added.
18258 With @var{clone} frames are clones of last frame.
18259
18260 @item start_duration, stop_duration
18261 Specify the duration of the start/stop delay. See
18262 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18263 for the accepted syntax.
18264 These options override @var{start} and @var{stop}.
18265
18266 @item color
18267 Specify the color of the padded area. For the syntax of this option,
18268 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
18269 manual,ffmpeg-utils}.
18270
18271 The default value of @var{color} is "black".
18272 @end table
18273
18274 @anchor{transpose}
18275 @section transpose
18276
18277 Transpose rows with columns in the input video and optionally flip it.
18278
18279 It accepts the following parameters:
18280
18281 @table @option
18282
18283 @item dir
18284 Specify the transposition direction.
18285
18286 Can assume the following values:
18287 @table @samp
18288 @item 0, 4, cclock_flip
18289 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
18290 @example
18291 L.R     L.l
18292 . . ->  . .
18293 l.r     R.r
18294 @end example
18295
18296 @item 1, 5, clock
18297 Rotate by 90 degrees clockwise, that is:
18298 @example
18299 L.R     l.L
18300 . . ->  . .
18301 l.r     r.R
18302 @end example
18303
18304 @item 2, 6, cclock
18305 Rotate by 90 degrees counterclockwise, that is:
18306 @example
18307 L.R     R.r
18308 . . ->  . .
18309 l.r     L.l
18310 @end example
18311
18312 @item 3, 7, clock_flip
18313 Rotate by 90 degrees clockwise and vertically flip, that is:
18314 @example
18315 L.R     r.R
18316 . . ->  . .
18317 l.r     l.L
18318 @end example
18319 @end table
18320
18321 For values between 4-7, the transposition is only done if the input
18322 video geometry is portrait and not landscape. These values are
18323 deprecated, the @code{passthrough} option should be used instead.
18324
18325 Numerical values are deprecated, and should be dropped in favor of
18326 symbolic constants.
18327
18328 @item passthrough
18329 Do not apply the transposition if the input geometry matches the one
18330 specified by the specified value. It accepts the following values:
18331 @table @samp
18332 @item none
18333 Always apply transposition.
18334 @item portrait
18335 Preserve portrait geometry (when @var{height} >= @var{width}).
18336 @item landscape
18337 Preserve landscape geometry (when @var{width} >= @var{height}).
18338 @end table
18339
18340 Default value is @code{none}.
18341 @end table
18342
18343 For example to rotate by 90 degrees clockwise and preserve portrait
18344 layout:
18345 @example
18346 transpose=dir=1:passthrough=portrait
18347 @end example
18348
18349 The command above can also be specified as:
18350 @example
18351 transpose=1:portrait
18352 @end example
18353
18354 @section transpose_npp
18355
18356 Transpose rows with columns in the input video and optionally flip it.
18357 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
18358
18359 It accepts the following parameters:
18360
18361 @table @option
18362
18363 @item dir
18364 Specify the transposition direction.
18365
18366 Can assume the following values:
18367 @table @samp
18368 @item cclock_flip
18369 Rotate by 90 degrees counterclockwise and vertically flip. (default)
18370
18371 @item clock
18372 Rotate by 90 degrees clockwise.
18373
18374 @item cclock
18375 Rotate by 90 degrees counterclockwise.
18376
18377 @item clock_flip
18378 Rotate by 90 degrees clockwise and vertically flip.
18379 @end table
18380
18381 @item passthrough
18382 Do not apply the transposition if the input geometry matches the one
18383 specified by the specified value. It accepts the following values:
18384 @table @samp
18385 @item none
18386 Always apply transposition. (default)
18387 @item portrait
18388 Preserve portrait geometry (when @var{height} >= @var{width}).
18389 @item landscape
18390 Preserve landscape geometry (when @var{width} >= @var{height}).
18391 @end table
18392
18393 @end table
18394
18395 @section trim
18396 Trim the input so that the output contains one continuous subpart of the input.
18397
18398 It accepts the following parameters:
18399 @table @option
18400 @item start
18401 Specify the time of the start of the kept section, i.e. the frame with the
18402 timestamp @var{start} will be the first frame in the output.
18403
18404 @item end
18405 Specify the time of the first frame that will be dropped, i.e. the frame
18406 immediately preceding the one with the timestamp @var{end} will be the last
18407 frame in the output.
18408
18409 @item start_pts
18410 This is the same as @var{start}, except this option sets the start timestamp
18411 in timebase units instead of seconds.
18412
18413 @item end_pts
18414 This is the same as @var{end}, except this option sets the end timestamp
18415 in timebase units instead of seconds.
18416
18417 @item duration
18418 The maximum duration of the output in seconds.
18419
18420 @item start_frame
18421 The number of the first frame that should be passed to the output.
18422
18423 @item end_frame
18424 The number of the first frame that should be dropped.
18425 @end table
18426
18427 @option{start}, @option{end}, and @option{duration} are expressed as time
18428 duration specifications; see
18429 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18430 for the accepted syntax.
18431
18432 Note that the first two sets of the start/end options and the @option{duration}
18433 option look at the frame timestamp, while the _frame variants simply count the
18434 frames that pass through the filter. Also note that this filter does not modify
18435 the timestamps. If you wish for the output timestamps to start at zero, insert a
18436 setpts filter after the trim filter.
18437
18438 If multiple start or end options are set, this filter tries to be greedy and
18439 keep all the frames that match at least one of the specified constraints. To keep
18440 only the part that matches all the constraints at once, chain multiple trim
18441 filters.
18442
18443 The defaults are such that all the input is kept. So it is possible to set e.g.
18444 just the end values to keep everything before the specified time.
18445
18446 Examples:
18447 @itemize
18448 @item
18449 Drop everything except the second minute of input:
18450 @example
18451 ffmpeg -i INPUT -vf trim=60:120
18452 @end example
18453
18454 @item
18455 Keep only the first second:
18456 @example
18457 ffmpeg -i INPUT -vf trim=duration=1
18458 @end example
18459
18460 @end itemize
18461
18462 @section unpremultiply
18463 Apply alpha unpremultiply effect to input video stream using first plane
18464 of second stream as alpha.
18465
18466 Both streams must have same dimensions and same pixel format.
18467
18468 The filter accepts the following option:
18469
18470 @table @option
18471 @item planes
18472 Set which planes will be processed, unprocessed planes will be copied.
18473 By default value 0xf, all planes will be processed.
18474
18475 If the format has 1 or 2 components, then luma is bit 0.
18476 If the format has 3 or 4 components:
18477 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
18478 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
18479 If present, the alpha channel is always the last bit.
18480
18481 @item inplace
18482 Do not require 2nd input for processing, instead use alpha plane from input stream.
18483 @end table
18484
18485 @anchor{unsharp}
18486 @section unsharp
18487
18488 Sharpen or blur the input video.
18489
18490 It accepts the following parameters:
18491
18492 @table @option
18493 @item luma_msize_x, lx
18494 Set the luma matrix horizontal size. It must be an odd integer between
18495 3 and 23. The default value is 5.
18496
18497 @item luma_msize_y, ly
18498 Set the luma matrix vertical size. It must be an odd integer between 3
18499 and 23. The default value is 5.
18500
18501 @item luma_amount, la
18502 Set the luma effect strength. It must be a floating point number, reasonable
18503 values lay between -1.5 and 1.5.
18504
18505 Negative values will blur the input video, while positive values will
18506 sharpen it, a value of zero will disable the effect.
18507
18508 Default value is 1.0.
18509
18510 @item chroma_msize_x, cx
18511 Set the chroma matrix horizontal size. It must be an odd integer
18512 between 3 and 23. The default value is 5.
18513
18514 @item chroma_msize_y, cy
18515 Set the chroma matrix vertical size. It must be an odd integer
18516 between 3 and 23. The default value is 5.
18517
18518 @item chroma_amount, ca
18519 Set the chroma effect strength. It must be a floating point number, reasonable
18520 values lay between -1.5 and 1.5.
18521
18522 Negative values will blur the input video, while positive values will
18523 sharpen it, a value of zero will disable the effect.
18524
18525 Default value is 0.0.
18526
18527 @end table
18528
18529 All parameters are optional and default to the equivalent of the
18530 string '5:5:1.0:5:5:0.0'.
18531
18532 @subsection Examples
18533
18534 @itemize
18535 @item
18536 Apply strong luma sharpen effect:
18537 @example
18538 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
18539 @end example
18540
18541 @item
18542 Apply a strong blur of both luma and chroma parameters:
18543 @example
18544 unsharp=7:7:-2:7:7:-2
18545 @end example
18546 @end itemize
18547
18548 @section uspp
18549
18550 Apply ultra slow/simple postprocessing filter that compresses and decompresses
18551 the image at several (or - in the case of @option{quality} level @code{8} - all)
18552 shifts and average the results.
18553
18554 The way this differs from the behavior of spp is that uspp actually encodes &
18555 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
18556 DCT similar to MJPEG.
18557
18558 The filter accepts the following options:
18559
18560 @table @option
18561 @item quality
18562 Set quality. This option defines the number of levels for averaging. It accepts
18563 an integer in the range 0-8. If set to @code{0}, the filter will have no
18564 effect. A value of @code{8} means the higher quality. For each increment of
18565 that value the speed drops by a factor of approximately 2.  Default value is
18566 @code{3}.
18567
18568 @item qp
18569 Force a constant quantization parameter. If not set, the filter will use the QP
18570 from the video stream (if available).
18571 @end table
18572
18573 @section v360
18574
18575 Convert 360 videos between various formats.
18576
18577 The filter accepts the following options:
18578
18579 @table @option
18580
18581 @item input
18582 @item output
18583 Set format of the input/output video.
18584
18585 Available formats:
18586
18587 @table @samp
18588
18589 @item e
18590 @item equirect
18591 Equirectangular projection.
18592
18593 @item c3x2
18594 @item c6x1
18595 @item c1x6
18596 Cubemap with 3x2/6x1/1x6 layout.
18597
18598 Format specific options:
18599
18600 @table @option
18601 @item in_pad
18602 @item out_pad
18603 Set padding proportion for the input/output cubemap. Values in decimals.
18604
18605 Example values:
18606 @table @samp
18607 @item 0
18608 No padding.
18609 @item 0.01
18610 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)
18611 @end table
18612
18613 Default value is @b{@samp{0}}.
18614
18615 @item fin_pad
18616 @item fout_pad
18617 Set fixed padding for the input/output cubemap. Values in pixels.
18618
18619 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
18620
18621 @item in_forder
18622 @item out_forder
18623 Set order of faces for the input/output cubemap. Choose one direction for each position.
18624
18625 Designation of directions:
18626 @table @samp
18627 @item r
18628 right
18629 @item l
18630 left
18631 @item u
18632 up
18633 @item d
18634 down
18635 @item f
18636 forward
18637 @item b
18638 back
18639 @end table
18640
18641 Default value is @b{@samp{rludfb}}.
18642
18643 @item in_frot
18644 @item out_frot
18645 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
18646
18647 Designation of angles:
18648 @table @samp
18649 @item 0
18650 0 degrees clockwise
18651 @item 1
18652 90 degrees clockwise
18653 @item 2
18654 180 degrees clockwise
18655 @item 3
18656 270 degrees clockwise
18657 @end table
18658
18659 Default value is @b{@samp{000000}}.
18660 @end table
18661
18662 @item eac
18663 Equi-Angular Cubemap.
18664
18665 @item flat
18666 @item gnomonic
18667 @item rectilinear
18668 Regular video. @i{(output only)}
18669
18670 Format specific options:
18671 @table @option
18672 @item h_fov
18673 @item v_fov
18674 @item d_fov
18675 Set horizontal/vertical/diagonal field of view. Values in degrees.
18676
18677 If diagonal field of view is set it overrides horizontal and vertical field of view.
18678 @end table
18679
18680 @item dfisheye
18681 Dual fisheye.
18682
18683 Format specific options:
18684 @table @option
18685 @item in_pad
18686 @item out_pad
18687 Set padding proportion. Values in decimals.
18688
18689 Example values:
18690 @table @samp
18691 @item 0
18692 No padding.
18693 @item 0.01
18694 1% padding.
18695 @end table
18696
18697 Default value is @b{@samp{0}}.
18698 @end table
18699
18700 @item barrel
18701 @item fb
18702 Facebook's 360 format.
18703
18704 @item sg
18705 Stereographic format.
18706
18707 Format specific options:
18708 @table @option
18709 @item h_fov
18710 @item v_fov
18711 @item d_fov
18712 Set horizontal/vertical/diagonal field of view. Values in degrees.
18713
18714 If diagonal field of view is set it overrides horizontal and vertical field of view.
18715 @end table
18716
18717 @item mercator
18718 Mercator format.
18719
18720 @item ball
18721 Ball format, gives significant distortion toward the back.
18722
18723 @item hammer
18724 Hammer-Aitoff map projection format.
18725
18726 @item sinusoidal
18727 Sinusoidal map projection format.
18728
18729 @end table
18730
18731 @item interp
18732 Set interpolation method.@*
18733 @i{Note: more complex interpolation methods require much more memory to run.}
18734
18735 Available methods:
18736
18737 @table @samp
18738 @item near
18739 @item nearest
18740 Nearest neighbour.
18741 @item line
18742 @item linear
18743 Bilinear interpolation.
18744 @item cube
18745 @item cubic
18746 Bicubic interpolation.
18747 @item lanc
18748 @item lanczos
18749 Lanczos interpolation.
18750 @end table
18751
18752 Default value is @b{@samp{line}}.
18753
18754 @item w
18755 @item h
18756 Set the output video resolution.
18757
18758 Default resolution depends on formats.
18759
18760 @item in_stereo
18761 @item out_stereo
18762 Set the input/output stereo format.
18763
18764 @table @samp
18765 @item 2d
18766 2D mono
18767 @item sbs
18768 Side by side
18769 @item tb
18770 Top bottom
18771 @end table
18772
18773 Default value is @b{@samp{2d}} for input and output format.
18774
18775 @item yaw
18776 @item pitch
18777 @item roll
18778 Set rotation for the output video. Values in degrees.
18779
18780 @item rorder
18781 Set rotation order for the output video. Choose one item for each position.
18782
18783 @table @samp
18784 @item y, Y
18785 yaw
18786 @item p, P
18787 pitch
18788 @item r, R
18789 roll
18790 @end table
18791
18792 Default value is @b{@samp{ypr}}.
18793
18794 @item h_flip
18795 @item v_flip
18796 @item d_flip
18797 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
18798
18799 @item ih_flip
18800 @item iv_flip
18801 Set if input video is flipped horizontally/vertically. Boolean values.
18802
18803 @item in_trans
18804 Set if input video is transposed. Boolean value, by default disabled.
18805
18806 @item out_trans
18807 Set if output video needs to be transposed. Boolean value, by default disabled.
18808
18809 @end table
18810
18811 @subsection Examples
18812
18813 @itemize
18814 @item
18815 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
18816 @example
18817 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
18818 @end example
18819 @item
18820 Extract back view of Equi-Angular Cubemap:
18821 @example
18822 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
18823 @end example
18824 @item
18825 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
18826 @example
18827 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
18828 @end example
18829 @end itemize
18830
18831 @section vaguedenoiser
18832
18833 Apply a wavelet based denoiser.
18834
18835 It transforms each frame from the video input into the wavelet domain,
18836 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
18837 the obtained coefficients. It does an inverse wavelet transform after.
18838 Due to wavelet properties, it should give a nice smoothed result, and
18839 reduced noise, without blurring picture features.
18840
18841 This filter accepts the following options:
18842
18843 @table @option
18844 @item threshold
18845 The filtering strength. The higher, the more filtered the video will be.
18846 Hard thresholding can use a higher threshold than soft thresholding
18847 before the video looks overfiltered. Default value is 2.
18848
18849 @item method
18850 The filtering method the filter will use.
18851
18852 It accepts the following values:
18853 @table @samp
18854 @item hard
18855 All values under the threshold will be zeroed.
18856
18857 @item soft
18858 All values under the threshold will be zeroed. All values above will be
18859 reduced by the threshold.
18860
18861 @item garrote
18862 Scales or nullifies coefficients - intermediary between (more) soft and
18863 (less) hard thresholding.
18864 @end table
18865
18866 Default is garrote.
18867
18868 @item nsteps
18869 Number of times, the wavelet will decompose the picture. Picture can't
18870 be decomposed beyond a particular point (typically, 8 for a 640x480
18871 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
18872
18873 @item percent
18874 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
18875
18876 @item planes
18877 A list of the planes to process. By default all planes are processed.
18878 @end table
18879
18880 @section vectorscope
18881
18882 Display 2 color component values in the two dimensional graph (which is called
18883 a vectorscope).
18884
18885 This filter accepts the following options:
18886
18887 @table @option
18888 @item mode, m
18889 Set vectorscope mode.
18890
18891 It accepts the following values:
18892 @table @samp
18893 @item gray
18894 Gray values are displayed on graph, higher brightness means more pixels have
18895 same component color value on location in graph. This is the default mode.
18896
18897 @item color
18898 Gray values are displayed on graph. Surrounding pixels values which are not
18899 present in video frame are drawn in gradient of 2 color components which are
18900 set by option @code{x} and @code{y}. The 3rd color component is static.
18901
18902 @item color2
18903 Actual color components values present in video frame are displayed on graph.
18904
18905 @item color3
18906 Similar as color2 but higher frequency of same values @code{x} and @code{y}
18907 on graph increases value of another color component, which is luminance by
18908 default values of @code{x} and @code{y}.
18909
18910 @item color4
18911 Actual colors present in video frame are displayed on graph. If two different
18912 colors map to same position on graph then color with higher value of component
18913 not present in graph is picked.
18914
18915 @item color5
18916 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
18917 component picked from radial gradient.
18918 @end table
18919
18920 @item x
18921 Set which color component will be represented on X-axis. Default is @code{1}.
18922
18923 @item y
18924 Set which color component will be represented on Y-axis. Default is @code{2}.
18925
18926 @item intensity, i
18927 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
18928 of color component which represents frequency of (X, Y) location in graph.
18929
18930 @item envelope, e
18931 @table @samp
18932 @item none
18933 No envelope, this is default.
18934
18935 @item instant
18936 Instant envelope, even darkest single pixel will be clearly highlighted.
18937
18938 @item peak
18939 Hold maximum and minimum values presented in graph over time. This way you
18940 can still spot out of range values without constantly looking at vectorscope.
18941
18942 @item peak+instant
18943 Peak and instant envelope combined together.
18944 @end table
18945
18946 @item graticule, g
18947 Set what kind of graticule to draw.
18948 @table @samp
18949 @item none
18950 @item green
18951 @item color
18952 @end table
18953
18954 @item opacity, o
18955 Set graticule opacity.
18956
18957 @item flags, f
18958 Set graticule flags.
18959
18960 @table @samp
18961 @item white
18962 Draw graticule for white point.
18963
18964 @item black
18965 Draw graticule for black point.
18966
18967 @item name
18968 Draw color points short names.
18969 @end table
18970
18971 @item bgopacity, b
18972 Set background opacity.
18973
18974 @item lthreshold, l
18975 Set low threshold for color component not represented on X or Y axis.
18976 Values lower than this value will be ignored. Default is 0.
18977 Note this value is multiplied with actual max possible value one pixel component
18978 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
18979 is 0.1 * 255 = 25.
18980
18981 @item hthreshold, h
18982 Set high threshold for color component not represented on X or Y axis.
18983 Values higher than this value will be ignored. Default is 1.
18984 Note this value is multiplied with actual max possible value one pixel component
18985 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
18986 is 0.9 * 255 = 230.
18987
18988 @item colorspace, c
18989 Set what kind of colorspace to use when drawing graticule.
18990 @table @samp
18991 @item auto
18992 @item 601
18993 @item 709
18994 @end table
18995 Default is auto.
18996 @end table
18997
18998 @anchor{vidstabdetect}
18999 @section vidstabdetect
19000
19001 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
19002 @ref{vidstabtransform} for pass 2.
19003
19004 This filter generates a file with relative translation and rotation
19005 transform information about subsequent frames, which is then used by
19006 the @ref{vidstabtransform} filter.
19007
19008 To enable compilation of this filter you need to configure FFmpeg with
19009 @code{--enable-libvidstab}.
19010
19011 This filter accepts the following options:
19012
19013 @table @option
19014 @item result
19015 Set the path to the file used to write the transforms information.
19016 Default value is @file{transforms.trf}.
19017
19018 @item shakiness
19019 Set how shaky the video is and how quick the camera is. It accepts an
19020 integer in the range 1-10, a value of 1 means little shakiness, a
19021 value of 10 means strong shakiness. Default value is 5.
19022
19023 @item accuracy
19024 Set the accuracy of the detection process. It must be a value in the
19025 range 1-15. A value of 1 means low accuracy, a value of 15 means high
19026 accuracy. Default value is 15.
19027
19028 @item stepsize
19029 Set stepsize of the search process. The region around minimum is
19030 scanned with 1 pixel resolution. Default value is 6.
19031
19032 @item mincontrast
19033 Set minimum contrast. Below this value a local measurement field is
19034 discarded. Must be a floating point value in the range 0-1. Default
19035 value is 0.3.
19036
19037 @item tripod
19038 Set reference frame number for tripod mode.
19039
19040 If enabled, the motion of the frames is compared to a reference frame
19041 in the filtered stream, identified by the specified number. The idea
19042 is to compensate all movements in a more-or-less static scene and keep
19043 the camera view absolutely still.
19044
19045 If set to 0, it is disabled. The frames are counted starting from 1.
19046
19047 @item show
19048 Show fields and transforms in the resulting frames. It accepts an
19049 integer in the range 0-2. Default value is 0, which disables any
19050 visualization.
19051 @end table
19052
19053 @subsection Examples
19054
19055 @itemize
19056 @item
19057 Use default values:
19058 @example
19059 vidstabdetect
19060 @end example
19061
19062 @item
19063 Analyze strongly shaky movie and put the results in file
19064 @file{mytransforms.trf}:
19065 @example
19066 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
19067 @end example
19068
19069 @item
19070 Visualize the result of internal transformations in the resulting
19071 video:
19072 @example
19073 vidstabdetect=show=1
19074 @end example
19075
19076 @item
19077 Analyze a video with medium shakiness using @command{ffmpeg}:
19078 @example
19079 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
19080 @end example
19081 @end itemize
19082
19083 @anchor{vidstabtransform}
19084 @section vidstabtransform
19085
19086 Video stabilization/deshaking: pass 2 of 2,
19087 see @ref{vidstabdetect} for pass 1.
19088
19089 Read a file with transform information for each frame and
19090 apply/compensate them. Together with the @ref{vidstabdetect}
19091 filter this can be used to deshake videos. See also
19092 @url{http://public.hronopik.de/vid.stab}. It is important to also use
19093 the @ref{unsharp} filter, see below.
19094
19095 To enable compilation of this filter you need to configure FFmpeg with
19096 @code{--enable-libvidstab}.
19097
19098 @subsection Options
19099
19100 @table @option
19101 @item input
19102 Set path to the file used to read the transforms. Default value is
19103 @file{transforms.trf}.
19104
19105 @item smoothing
19106 Set the number of frames (value*2 + 1) used for lowpass filtering the
19107 camera movements. Default value is 10.
19108
19109 For example a number of 10 means that 21 frames are used (10 in the
19110 past and 10 in the future) to smoothen the motion in the video. A
19111 larger value leads to a smoother video, but limits the acceleration of
19112 the camera (pan/tilt movements). 0 is a special case where a static
19113 camera is simulated.
19114
19115 @item optalgo
19116 Set the camera path optimization algorithm.
19117
19118 Accepted values are:
19119 @table @samp
19120 @item gauss
19121 gaussian kernel low-pass filter on camera motion (default)
19122 @item avg
19123 averaging on transformations
19124 @end table
19125
19126 @item maxshift
19127 Set maximal number of pixels to translate frames. Default value is -1,
19128 meaning no limit.
19129
19130 @item maxangle
19131 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
19132 value is -1, meaning no limit.
19133
19134 @item crop
19135 Specify how to deal with borders that may be visible due to movement
19136 compensation.
19137
19138 Available values are:
19139 @table @samp
19140 @item keep
19141 keep image information from previous frame (default)
19142 @item black
19143 fill the border black
19144 @end table
19145
19146 @item invert
19147 Invert transforms if set to 1. Default value is 0.
19148
19149 @item relative
19150 Consider transforms as relative to previous frame if set to 1,
19151 absolute if set to 0. Default value is 0.
19152
19153 @item zoom
19154 Set percentage to zoom. A positive value will result in a zoom-in
19155 effect, a negative value in a zoom-out effect. Default value is 0 (no
19156 zoom).
19157
19158 @item optzoom
19159 Set optimal zooming to avoid borders.
19160
19161 Accepted values are:
19162 @table @samp
19163 @item 0
19164 disabled
19165 @item 1
19166 optimal static zoom value is determined (only very strong movements
19167 will lead to visible borders) (default)
19168 @item 2
19169 optimal adaptive zoom value is determined (no borders will be
19170 visible), see @option{zoomspeed}
19171 @end table
19172
19173 Note that the value given at zoom is added to the one calculated here.
19174
19175 @item zoomspeed
19176 Set percent to zoom maximally each frame (enabled when
19177 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
19178 0.25.
19179
19180 @item interpol
19181 Specify type of interpolation.
19182
19183 Available values are:
19184 @table @samp
19185 @item no
19186 no interpolation
19187 @item linear
19188 linear only horizontal
19189 @item bilinear
19190 linear in both directions (default)
19191 @item bicubic
19192 cubic in both directions (slow)
19193 @end table
19194
19195 @item tripod
19196 Enable virtual tripod mode if set to 1, which is equivalent to
19197 @code{relative=0:smoothing=0}. Default value is 0.
19198
19199 Use also @code{tripod} option of @ref{vidstabdetect}.
19200
19201 @item debug
19202 Increase log verbosity if set to 1. Also the detected global motions
19203 are written to the temporary file @file{global_motions.trf}. Default
19204 value is 0.
19205 @end table
19206
19207 @subsection Examples
19208
19209 @itemize
19210 @item
19211 Use @command{ffmpeg} for a typical stabilization with default values:
19212 @example
19213 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
19214 @end example
19215
19216 Note the use of the @ref{unsharp} filter which is always recommended.
19217
19218 @item
19219 Zoom in a bit more and load transform data from a given file:
19220 @example
19221 vidstabtransform=zoom=5:input="mytransforms.trf"
19222 @end example
19223
19224 @item
19225 Smoothen the video even more:
19226 @example
19227 vidstabtransform=smoothing=30
19228 @end example
19229 @end itemize
19230
19231 @section vflip
19232
19233 Flip the input video vertically.
19234
19235 For example, to vertically flip a video with @command{ffmpeg}:
19236 @example
19237 ffmpeg -i in.avi -vf "vflip" out.avi
19238 @end example
19239
19240 @section vfrdet
19241
19242 Detect variable frame rate video.
19243
19244 This filter tries to detect if the input is variable or constant frame rate.
19245
19246 At end it will output number of frames detected as having variable delta pts,
19247 and ones with constant delta pts.
19248 If there was frames with variable delta, than it will also show min, max and
19249 average delta encountered.
19250
19251 @section vibrance
19252
19253 Boost or alter saturation.
19254
19255 The filter accepts the following options:
19256 @table @option
19257 @item intensity
19258 Set strength of boost if positive value or strength of alter if negative value.
19259 Default is 0. Allowed range is from -2 to 2.
19260
19261 @item rbal
19262 Set the red balance. Default is 1. Allowed range is from -10 to 10.
19263
19264 @item gbal
19265 Set the green balance. Default is 1. Allowed range is from -10 to 10.
19266
19267 @item bbal
19268 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
19269
19270 @item rlum
19271 Set the red luma coefficient.
19272
19273 @item glum
19274 Set the green luma coefficient.
19275
19276 @item blum
19277 Set the blue luma coefficient.
19278
19279 @item alternate
19280 If @code{intensity} is negative and this is set to 1, colors will change,
19281 otherwise colors will be less saturated, more towards gray.
19282 @end table
19283
19284 @anchor{vignette}
19285 @section vignette
19286
19287 Make or reverse a natural vignetting effect.
19288
19289 The filter accepts the following options:
19290
19291 @table @option
19292 @item angle, a
19293 Set lens angle expression as a number of radians.
19294
19295 The value is clipped in the @code{[0,PI/2]} range.
19296
19297 Default value: @code{"PI/5"}
19298
19299 @item x0
19300 @item y0
19301 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
19302 by default.
19303
19304 @item mode
19305 Set forward/backward mode.
19306
19307 Available modes are:
19308 @table @samp
19309 @item forward
19310 The larger the distance from the central point, the darker the image becomes.
19311
19312 @item backward
19313 The larger the distance from the central point, the brighter the image becomes.
19314 This can be used to reverse a vignette effect, though there is no automatic
19315 detection to extract the lens @option{angle} and other settings (yet). It can
19316 also be used to create a burning effect.
19317 @end table
19318
19319 Default value is @samp{forward}.
19320
19321 @item eval
19322 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
19323
19324 It accepts the following values:
19325 @table @samp
19326 @item init
19327 Evaluate expressions only once during the filter initialization.
19328
19329 @item frame
19330 Evaluate expressions for each incoming frame. This is way slower than the
19331 @samp{init} mode since it requires all the scalers to be re-computed, but it
19332 allows advanced dynamic expressions.
19333 @end table
19334
19335 Default value is @samp{init}.
19336
19337 @item dither
19338 Set dithering to reduce the circular banding effects. Default is @code{1}
19339 (enabled).
19340
19341 @item aspect
19342 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
19343 Setting this value to the SAR of the input will make a rectangular vignetting
19344 following the dimensions of the video.
19345
19346 Default is @code{1/1}.
19347 @end table
19348
19349 @subsection Expressions
19350
19351 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
19352 following parameters.
19353
19354 @table @option
19355 @item w
19356 @item h
19357 input width and height
19358
19359 @item n
19360 the number of input frame, starting from 0
19361
19362 @item pts
19363 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
19364 @var{TB} units, NAN if undefined
19365
19366 @item r
19367 frame rate of the input video, NAN if the input frame rate is unknown
19368
19369 @item t
19370 the PTS (Presentation TimeStamp) of the filtered video frame,
19371 expressed in seconds, NAN if undefined
19372
19373 @item tb
19374 time base of the input video
19375 @end table
19376
19377
19378 @subsection Examples
19379
19380 @itemize
19381 @item
19382 Apply simple strong vignetting effect:
19383 @example
19384 vignette=PI/4
19385 @end example
19386
19387 @item
19388 Make a flickering vignetting:
19389 @example
19390 vignette='PI/4+random(1)*PI/50':eval=frame
19391 @end example
19392
19393 @end itemize
19394
19395 @section vmafmotion
19396
19397 Obtain the average VMAF motion score of a video.
19398 It is one of the component metrics of VMAF.
19399
19400 The obtained average motion score is printed through the logging system.
19401
19402 The filter accepts the following options:
19403
19404 @table @option
19405 @item stats_file
19406 If specified, the filter will use the named file to save the motion score of
19407 each frame with respect to the previous frame.
19408 When filename equals "-" the data is sent to standard output.
19409 @end table
19410
19411 Example:
19412 @example
19413 ffmpeg -i ref.mpg -vf vmafmotion -f null -
19414 @end example
19415
19416 @section vstack
19417 Stack input videos vertically.
19418
19419 All streams must be of same pixel format and of same width.
19420
19421 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
19422 to create same output.
19423
19424 The filter accepts the following options:
19425
19426 @table @option
19427 @item inputs
19428 Set number of input streams. Default is 2.
19429
19430 @item shortest
19431 If set to 1, force the output to terminate when the shortest input
19432 terminates. Default value is 0.
19433 @end table
19434
19435 @section w3fdif
19436
19437 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
19438 Deinterlacing Filter").
19439
19440 Based on the process described by Martin Weston for BBC R&D, and
19441 implemented based on the de-interlace algorithm written by Jim
19442 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
19443 uses filter coefficients calculated by BBC R&D.
19444
19445 This filter uses field-dominance information in frame to decide which
19446 of each pair of fields to place first in the output.
19447 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
19448
19449 There are two sets of filter coefficients, so called "simple"
19450 and "complex". Which set of filter coefficients is used can
19451 be set by passing an optional parameter:
19452
19453 @table @option
19454 @item filter
19455 Set the interlacing filter coefficients. Accepts one of the following values:
19456
19457 @table @samp
19458 @item simple
19459 Simple filter coefficient set.
19460 @item complex
19461 More-complex filter coefficient set.
19462 @end table
19463 Default value is @samp{complex}.
19464
19465 @item deint
19466 Specify which frames to deinterlace. Accepts one of the following values:
19467
19468 @table @samp
19469 @item all
19470 Deinterlace all frames,
19471 @item interlaced
19472 Only deinterlace frames marked as interlaced.
19473 @end table
19474
19475 Default value is @samp{all}.
19476 @end table
19477
19478 @section waveform
19479 Video waveform monitor.
19480
19481 The waveform monitor plots color component intensity. By default luminance
19482 only. Each column of the waveform corresponds to a column of pixels in the
19483 source video.
19484
19485 It accepts the following options:
19486
19487 @table @option
19488 @item mode, m
19489 Can be either @code{row}, or @code{column}. Default is @code{column}.
19490 In row mode, the graph on the left side represents color component value 0 and
19491 the right side represents value = 255. In column mode, the top side represents
19492 color component value = 0 and bottom side represents value = 255.
19493
19494 @item intensity, i
19495 Set intensity. Smaller values are useful to find out how many values of the same
19496 luminance are distributed across input rows/columns.
19497 Default value is @code{0.04}. Allowed range is [0, 1].
19498
19499 @item mirror, r
19500 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
19501 In mirrored mode, higher values will be represented on the left
19502 side for @code{row} mode and at the top for @code{column} mode. Default is
19503 @code{1} (mirrored).
19504
19505 @item display, d
19506 Set display mode.
19507 It accepts the following values:
19508 @table @samp
19509 @item overlay
19510 Presents information identical to that in the @code{parade}, except
19511 that the graphs representing color components are superimposed directly
19512 over one another.
19513
19514 This display mode makes it easier to spot relative differences or similarities
19515 in overlapping areas of the color components that are supposed to be identical,
19516 such as neutral whites, grays, or blacks.
19517
19518 @item stack
19519 Display separate graph for the color components side by side in
19520 @code{row} mode or one below the other in @code{column} mode.
19521
19522 @item parade
19523 Display separate graph for the color components side by side in
19524 @code{column} mode or one below the other in @code{row} mode.
19525
19526 Using this display mode makes it easy to spot color casts in the highlights
19527 and shadows of an image, by comparing the contours of the top and the bottom
19528 graphs of each waveform. Since whites, grays, and blacks are characterized
19529 by exactly equal amounts of red, green, and blue, neutral areas of the picture
19530 should display three waveforms of roughly equal width/height. If not, the
19531 correction is easy to perform by making level adjustments the three waveforms.
19532 @end table
19533 Default is @code{stack}.
19534
19535 @item components, c
19536 Set which color components to display. Default is 1, which means only luminance
19537 or red color component if input is in RGB colorspace. If is set for example to
19538 7 it will display all 3 (if) available color components.
19539
19540 @item envelope, e
19541 @table @samp
19542 @item none
19543 No envelope, this is default.
19544
19545 @item instant
19546 Instant envelope, minimum and maximum values presented in graph will be easily
19547 visible even with small @code{step} value.
19548
19549 @item peak
19550 Hold minimum and maximum values presented in graph across time. This way you
19551 can still spot out of range values without constantly looking at waveforms.
19552
19553 @item peak+instant
19554 Peak and instant envelope combined together.
19555 @end table
19556
19557 @item filter, f
19558 @table @samp
19559 @item lowpass
19560 No filtering, this is default.
19561
19562 @item flat
19563 Luma and chroma combined together.
19564
19565 @item aflat
19566 Similar as above, but shows difference between blue and red chroma.
19567
19568 @item xflat
19569 Similar as above, but use different colors.
19570
19571 @item yflat
19572 Similar as above, but again with different colors.
19573
19574 @item chroma
19575 Displays only chroma.
19576
19577 @item color
19578 Displays actual color value on waveform.
19579
19580 @item acolor
19581 Similar as above, but with luma showing frequency of chroma values.
19582 @end table
19583
19584 @item graticule, g
19585 Set which graticule to display.
19586
19587 @table @samp
19588 @item none
19589 Do not display graticule.
19590
19591 @item green
19592 Display green graticule showing legal broadcast ranges.
19593
19594 @item orange
19595 Display orange graticule showing legal broadcast ranges.
19596
19597 @item invert
19598 Display invert graticule showing legal broadcast ranges.
19599 @end table
19600
19601 @item opacity, o
19602 Set graticule opacity.
19603
19604 @item flags, fl
19605 Set graticule flags.
19606
19607 @table @samp
19608 @item numbers
19609 Draw numbers above lines. By default enabled.
19610
19611 @item dots
19612 Draw dots instead of lines.
19613 @end table
19614
19615 @item scale, s
19616 Set scale used for displaying graticule.
19617
19618 @table @samp
19619 @item digital
19620 @item millivolts
19621 @item ire
19622 @end table
19623 Default is digital.
19624
19625 @item bgopacity, b
19626 Set background opacity.
19627 @end table
19628
19629 @section weave, doubleweave
19630
19631 The @code{weave} takes a field-based video input and join
19632 each two sequential fields into single frame, producing a new double
19633 height clip with half the frame rate and half the frame count.
19634
19635 The @code{doubleweave} works same as @code{weave} but without
19636 halving frame rate and frame count.
19637
19638 It accepts the following option:
19639
19640 @table @option
19641 @item first_field
19642 Set first field. Available values are:
19643
19644 @table @samp
19645 @item top, t
19646 Set the frame as top-field-first.
19647
19648 @item bottom, b
19649 Set the frame as bottom-field-first.
19650 @end table
19651 @end table
19652
19653 @subsection Examples
19654
19655 @itemize
19656 @item
19657 Interlace video using @ref{select} and @ref{separatefields} filter:
19658 @example
19659 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
19660 @end example
19661 @end itemize
19662
19663 @section xbr
19664 Apply the xBR high-quality magnification filter which is designed for pixel
19665 art. It follows a set of edge-detection rules, see
19666 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
19667
19668 It accepts the following option:
19669
19670 @table @option
19671 @item n
19672 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
19673 @code{3xBR} and @code{4} for @code{4xBR}.
19674 Default is @code{3}.
19675 @end table
19676
19677 @section xmedian
19678 Pick median pixels from several input videos.
19679
19680 The filter accepts the following options:
19681
19682 @table @option
19683 @item inputs
19684 Set number of inputs.
19685 Default is 3. Allowed range is from 3 to 255.
19686 If number of inputs is even number, than result will be mean value between two median values.
19687
19688 @item planes
19689 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19690 @end table
19691
19692 @section xstack
19693 Stack video inputs into custom layout.
19694
19695 All streams must be of same pixel format.
19696
19697 The filter accepts the following options:
19698
19699 @table @option
19700 @item inputs
19701 Set number of input streams. Default is 2.
19702
19703 @item layout
19704 Specify layout of inputs.
19705 This option requires the desired layout configuration to be explicitly set by the user.
19706 This sets position of each video input in output. Each input
19707 is separated by '|'.
19708 The first number represents the column, and the second number represents the row.
19709 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
19710 where X is video input from which to take width or height.
19711 Multiple values can be used when separated by '+'. In such
19712 case values are summed together.
19713
19714 Note that if inputs are of different sizes gaps may appear, as not all of
19715 the output video frame will be filled. Similarly, videos can overlap each
19716 other if their position doesn't leave enough space for the full frame of
19717 adjoining videos.
19718
19719 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
19720 a layout must be set by the user.
19721
19722 @item shortest
19723 If set to 1, force the output to terminate when the shortest input
19724 terminates. Default value is 0.
19725 @end table
19726
19727 @subsection Examples
19728
19729 @itemize
19730 @item
19731 Display 4 inputs into 2x2 grid.
19732
19733 Layout:
19734 @example
19735 input1(0, 0)  | input3(w0, 0)
19736 input2(0, h0) | input4(w0, h0)
19737 @end example
19738
19739 @example
19740 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
19741 @end example
19742
19743 Note that if inputs are of different sizes, gaps or overlaps may occur.
19744
19745 @item
19746 Display 4 inputs into 1x4 grid.
19747
19748 Layout:
19749 @example
19750 input1(0, 0)
19751 input2(0, h0)
19752 input3(0, h0+h1)
19753 input4(0, h0+h1+h2)
19754 @end example
19755
19756 @example
19757 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
19758 @end example
19759
19760 Note that if inputs are of different widths, unused space will appear.
19761
19762 @item
19763 Display 9 inputs into 3x3 grid.
19764
19765 Layout:
19766 @example
19767 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
19768 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
19769 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
19770 @end example
19771
19772 @example
19773 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
19774 @end example
19775
19776 Note that if inputs are of different sizes, gaps or overlaps may occur.
19777
19778 @item
19779 Display 16 inputs into 4x4 grid.
19780
19781 Layout:
19782 @example
19783 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
19784 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
19785 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
19786 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
19787 @end example
19788
19789 @example
19790 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|
19791 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
19792 @end example
19793
19794 Note that if inputs are of different sizes, gaps or overlaps may occur.
19795
19796 @end itemize
19797
19798 @anchor{yadif}
19799 @section yadif
19800
19801 Deinterlace the input video ("yadif" means "yet another deinterlacing
19802 filter").
19803
19804 It accepts the following parameters:
19805
19806
19807 @table @option
19808
19809 @item mode
19810 The interlacing mode to adopt. It accepts one of the following values:
19811
19812 @table @option
19813 @item 0, send_frame
19814 Output one frame for each frame.
19815 @item 1, send_field
19816 Output one frame for each field.
19817 @item 2, send_frame_nospatial
19818 Like @code{send_frame}, but it skips the spatial interlacing check.
19819 @item 3, send_field_nospatial
19820 Like @code{send_field}, but it skips the spatial interlacing check.
19821 @end table
19822
19823 The default value is @code{send_frame}.
19824
19825 @item parity
19826 The picture field parity assumed for the input interlaced video. It accepts one
19827 of the following values:
19828
19829 @table @option
19830 @item 0, tff
19831 Assume the top field is first.
19832 @item 1, bff
19833 Assume the bottom field is first.
19834 @item -1, auto
19835 Enable automatic detection of field parity.
19836 @end table
19837
19838 The default value is @code{auto}.
19839 If the interlacing is unknown or the decoder does not export this information,
19840 top field first will be assumed.
19841
19842 @item deint
19843 Specify which frames to deinterlace. Accepts one of the following
19844 values:
19845
19846 @table @option
19847 @item 0, all
19848 Deinterlace all frames.
19849 @item 1, interlaced
19850 Only deinterlace frames marked as interlaced.
19851 @end table
19852
19853 The default value is @code{all}.
19854 @end table
19855
19856 @section yadif_cuda
19857
19858 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
19859 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
19860 and/or nvenc.
19861
19862 It accepts the following parameters:
19863
19864
19865 @table @option
19866
19867 @item mode
19868 The interlacing mode to adopt. It accepts one of the following values:
19869
19870 @table @option
19871 @item 0, send_frame
19872 Output one frame for each frame.
19873 @item 1, send_field
19874 Output one frame for each field.
19875 @item 2, send_frame_nospatial
19876 Like @code{send_frame}, but it skips the spatial interlacing check.
19877 @item 3, send_field_nospatial
19878 Like @code{send_field}, but it skips the spatial interlacing check.
19879 @end table
19880
19881 The default value is @code{send_frame}.
19882
19883 @item parity
19884 The picture field parity assumed for the input interlaced video. It accepts one
19885 of the following values:
19886
19887 @table @option
19888 @item 0, tff
19889 Assume the top field is first.
19890 @item 1, bff
19891 Assume the bottom field is first.
19892 @item -1, auto
19893 Enable automatic detection of field parity.
19894 @end table
19895
19896 The default value is @code{auto}.
19897 If the interlacing is unknown or the decoder does not export this information,
19898 top field first will be assumed.
19899
19900 @item deint
19901 Specify which frames to deinterlace. Accepts one of the following
19902 values:
19903
19904 @table @option
19905 @item 0, all
19906 Deinterlace all frames.
19907 @item 1, interlaced
19908 Only deinterlace frames marked as interlaced.
19909 @end table
19910
19911 The default value is @code{all}.
19912 @end table
19913
19914 @section zoompan
19915
19916 Apply Zoom & Pan effect.
19917
19918 This filter accepts the following options:
19919
19920 @table @option
19921 @item zoom, z
19922 Set the zoom expression. Range is 1-10. Default is 1.
19923
19924 @item x
19925 @item y
19926 Set the x and y expression. Default is 0.
19927
19928 @item d
19929 Set the duration expression in number of frames.
19930 This sets for how many number of frames effect will last for
19931 single input image.
19932
19933 @item s
19934 Set the output image size, default is 'hd720'.
19935
19936 @item fps
19937 Set the output frame rate, default is '25'.
19938 @end table
19939
19940 Each expression can contain the following constants:
19941
19942 @table @option
19943 @item in_w, iw
19944 Input width.
19945
19946 @item in_h, ih
19947 Input height.
19948
19949 @item out_w, ow
19950 Output width.
19951
19952 @item out_h, oh
19953 Output height.
19954
19955 @item in
19956 Input frame count.
19957
19958 @item on
19959 Output frame count.
19960
19961 @item x
19962 @item y
19963 Last calculated 'x' and 'y' position from 'x' and 'y' expression
19964 for current input frame.
19965
19966 @item px
19967 @item py
19968 'x' and 'y' of last output frame of previous input frame or 0 when there was
19969 not yet such frame (first input frame).
19970
19971 @item zoom
19972 Last calculated zoom from 'z' expression for current input frame.
19973
19974 @item pzoom
19975 Last calculated zoom of last output frame of previous input frame.
19976
19977 @item duration
19978 Number of output frames for current input frame. Calculated from 'd' expression
19979 for each input frame.
19980
19981 @item pduration
19982 number of output frames created for previous input frame
19983
19984 @item a
19985 Rational number: input width / input height
19986
19987 @item sar
19988 sample aspect ratio
19989
19990 @item dar
19991 display aspect ratio
19992
19993 @end table
19994
19995 @subsection Examples
19996
19997 @itemize
19998 @item
19999 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
20000 @example
20001 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
20002 @end example
20003
20004 @item
20005 Zoom-in up to 1.5 and pan always at center of picture:
20006 @example
20007 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20008 @end example
20009
20010 @item
20011 Same as above but without pausing:
20012 @example
20013 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20014 @end example
20015 @end itemize
20016
20017 @anchor{zscale}
20018 @section zscale
20019 Scale (resize) the input video, using the z.lib library:
20020 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
20021 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
20022
20023 The zscale filter forces the output display aspect ratio to be the same
20024 as the input, by changing the output sample aspect ratio.
20025
20026 If the input image format is different from the format requested by
20027 the next filter, the zscale filter will convert the input to the
20028 requested format.
20029
20030 @subsection Options
20031 The filter accepts the following options.
20032
20033 @table @option
20034 @item width, w
20035 @item height, h
20036 Set the output video dimension expression. Default value is the input
20037 dimension.
20038
20039 If the @var{width} or @var{w} value is 0, the input width is used for
20040 the output. If the @var{height} or @var{h} value is 0, the input height
20041 is used for the output.
20042
20043 If one and only one of the values is -n with n >= 1, the zscale filter
20044 will use a value that maintains the aspect ratio of the input image,
20045 calculated from the other specified dimension. After that it will,
20046 however, make sure that the calculated dimension is divisible by n and
20047 adjust the value if necessary.
20048
20049 If both values are -n with n >= 1, the behavior will be identical to
20050 both values being set to 0 as previously detailed.
20051
20052 See below for the list of accepted constants for use in the dimension
20053 expression.
20054
20055 @item size, s
20056 Set the video size. For the syntax of this option, check the
20057 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20058
20059 @item dither, d
20060 Set the dither type.
20061
20062 Possible values are:
20063 @table @var
20064 @item none
20065 @item ordered
20066 @item random
20067 @item error_diffusion
20068 @end table
20069
20070 Default is none.
20071
20072 @item filter, f
20073 Set the resize filter type.
20074
20075 Possible values are:
20076 @table @var
20077 @item point
20078 @item bilinear
20079 @item bicubic
20080 @item spline16
20081 @item spline36
20082 @item lanczos
20083 @end table
20084
20085 Default is bilinear.
20086
20087 @item range, r
20088 Set the color range.
20089
20090 Possible values are:
20091 @table @var
20092 @item input
20093 @item limited
20094 @item full
20095 @end table
20096
20097 Default is same as input.
20098
20099 @item primaries, p
20100 Set the color primaries.
20101
20102 Possible values are:
20103 @table @var
20104 @item input
20105 @item 709
20106 @item unspecified
20107 @item 170m
20108 @item 240m
20109 @item 2020
20110 @end table
20111
20112 Default is same as input.
20113
20114 @item transfer, t
20115 Set the transfer characteristics.
20116
20117 Possible values are:
20118 @table @var
20119 @item input
20120 @item 709
20121 @item unspecified
20122 @item 601
20123 @item linear
20124 @item 2020_10
20125 @item 2020_12
20126 @item smpte2084
20127 @item iec61966-2-1
20128 @item arib-std-b67
20129 @end table
20130
20131 Default is same as input.
20132
20133 @item matrix, m
20134 Set the colorspace matrix.
20135
20136 Possible value are:
20137 @table @var
20138 @item input
20139 @item 709
20140 @item unspecified
20141 @item 470bg
20142 @item 170m
20143 @item 2020_ncl
20144 @item 2020_cl
20145 @end table
20146
20147 Default is same as input.
20148
20149 @item rangein, rin
20150 Set the input color range.
20151
20152 Possible values are:
20153 @table @var
20154 @item input
20155 @item limited
20156 @item full
20157 @end table
20158
20159 Default is same as input.
20160
20161 @item primariesin, pin
20162 Set the input color primaries.
20163
20164 Possible values are:
20165 @table @var
20166 @item input
20167 @item 709
20168 @item unspecified
20169 @item 170m
20170 @item 240m
20171 @item 2020
20172 @end table
20173
20174 Default is same as input.
20175
20176 @item transferin, tin
20177 Set the input transfer characteristics.
20178
20179 Possible values are:
20180 @table @var
20181 @item input
20182 @item 709
20183 @item unspecified
20184 @item 601
20185 @item linear
20186 @item 2020_10
20187 @item 2020_12
20188 @end table
20189
20190 Default is same as input.
20191
20192 @item matrixin, min
20193 Set the input colorspace matrix.
20194
20195 Possible value are:
20196 @table @var
20197 @item input
20198 @item 709
20199 @item unspecified
20200 @item 470bg
20201 @item 170m
20202 @item 2020_ncl
20203 @item 2020_cl
20204 @end table
20205
20206 @item chromal, c
20207 Set the output chroma location.
20208
20209 Possible values are:
20210 @table @var
20211 @item input
20212 @item left
20213 @item center
20214 @item topleft
20215 @item top
20216 @item bottomleft
20217 @item bottom
20218 @end table
20219
20220 @item chromalin, cin
20221 Set the input chroma location.
20222
20223 Possible values are:
20224 @table @var
20225 @item input
20226 @item left
20227 @item center
20228 @item topleft
20229 @item top
20230 @item bottomleft
20231 @item bottom
20232 @end table
20233
20234 @item npl
20235 Set the nominal peak luminance.
20236 @end table
20237
20238 The values of the @option{w} and @option{h} options are expressions
20239 containing the following constants:
20240
20241 @table @var
20242 @item in_w
20243 @item in_h
20244 The input width and height
20245
20246 @item iw
20247 @item ih
20248 These are the same as @var{in_w} and @var{in_h}.
20249
20250 @item out_w
20251 @item out_h
20252 The output (scaled) width and height
20253
20254 @item ow
20255 @item oh
20256 These are the same as @var{out_w} and @var{out_h}
20257
20258 @item a
20259 The same as @var{iw} / @var{ih}
20260
20261 @item sar
20262 input sample aspect ratio
20263
20264 @item dar
20265 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
20266
20267 @item hsub
20268 @item vsub
20269 horizontal and vertical input chroma subsample values. For example for the
20270 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20271
20272 @item ohsub
20273 @item ovsub
20274 horizontal and vertical output chroma subsample values. For example for the
20275 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20276 @end table
20277
20278 @table @option
20279 @end table
20280
20281 @c man end VIDEO FILTERS
20282
20283 @chapter OpenCL Video Filters
20284 @c man begin OPENCL VIDEO FILTERS
20285
20286 Below is a description of the currently available OpenCL video filters.
20287
20288 To enable compilation of these filters you need to configure FFmpeg with
20289 @code{--enable-opencl}.
20290
20291 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
20292 @table @option
20293
20294 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
20295 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
20296 given device parameters.
20297
20298 @item -filter_hw_device @var{name}
20299 Pass the hardware device called @var{name} to all filters in any filter graph.
20300
20301 @end table
20302
20303 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
20304
20305 @itemize
20306 @item
20307 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
20308 @example
20309 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
20310 @end example
20311 @end itemize
20312
20313 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.
20314
20315 @section avgblur_opencl
20316
20317 Apply average blur filter.
20318
20319 The filter accepts the following options:
20320
20321 @table @option
20322 @item sizeX
20323 Set horizontal radius size.
20324 Range is @code{[1, 1024]} and default value is @code{1}.
20325
20326 @item planes
20327 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20328
20329 @item sizeY
20330 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
20331 @end table
20332
20333 @subsection Example
20334
20335 @itemize
20336 @item
20337 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.
20338 @example
20339 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
20340 @end example
20341 @end itemize
20342
20343 @section boxblur_opencl
20344
20345 Apply a boxblur algorithm to the input video.
20346
20347 It accepts the following parameters:
20348
20349 @table @option
20350
20351 @item luma_radius, lr
20352 @item luma_power, lp
20353 @item chroma_radius, cr
20354 @item chroma_power, cp
20355 @item alpha_radius, ar
20356 @item alpha_power, ap
20357
20358 @end table
20359
20360 A description of the accepted options follows.
20361
20362 @table @option
20363 @item luma_radius, lr
20364 @item chroma_radius, cr
20365 @item alpha_radius, ar
20366 Set an expression for the box radius in pixels used for blurring the
20367 corresponding input plane.
20368
20369 The radius value must be a non-negative number, and must not be
20370 greater than the value of the expression @code{min(w,h)/2} for the
20371 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
20372 planes.
20373
20374 Default value for @option{luma_radius} is "2". If not specified,
20375 @option{chroma_radius} and @option{alpha_radius} default to the
20376 corresponding value set for @option{luma_radius}.
20377
20378 The expressions can contain the following constants:
20379 @table @option
20380 @item w
20381 @item h
20382 The input width and height in pixels.
20383
20384 @item cw
20385 @item ch
20386 The input chroma image width and height in pixels.
20387
20388 @item hsub
20389 @item vsub
20390 The horizontal and vertical chroma subsample values. For example, for the
20391 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
20392 @end table
20393
20394 @item luma_power, lp
20395 @item chroma_power, cp
20396 @item alpha_power, ap
20397 Specify how many times the boxblur filter is applied to the
20398 corresponding plane.
20399
20400 Default value for @option{luma_power} is 2. If not specified,
20401 @option{chroma_power} and @option{alpha_power} default to the
20402 corresponding value set for @option{luma_power}.
20403
20404 A value of 0 will disable the effect.
20405 @end table
20406
20407 @subsection Examples
20408
20409 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.
20410
20411 @itemize
20412 @item
20413 Apply a boxblur filter with the luma, chroma, and alpha radius
20414 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.
20415 @example
20416 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
20417 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
20418 @end example
20419
20420 @item
20421 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.
20422
20423 For the luma plane, a 2x2 box radius will be run once.
20424
20425 For the chroma plane, a 4x4 box radius will be run 5 times.
20426
20427 For the alpha plane, a 3x3 box radius will be run 7 times.
20428 @example
20429 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
20430 @end example
20431 @end itemize
20432
20433 @section convolution_opencl
20434
20435 Apply convolution of 3x3, 5x5, 7x7 matrix.
20436
20437 The filter accepts the following options:
20438
20439 @table @option
20440 @item 0m
20441 @item 1m
20442 @item 2m
20443 @item 3m
20444 Set matrix for each plane.
20445 Matrix is sequence of 9, 25 or 49 signed numbers.
20446 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
20447
20448 @item 0rdiv
20449 @item 1rdiv
20450 @item 2rdiv
20451 @item 3rdiv
20452 Set multiplier for calculated value for each plane.
20453 If unset or 0, it will be sum of all matrix elements.
20454 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
20455
20456 @item 0bias
20457 @item 1bias
20458 @item 2bias
20459 @item 3bias
20460 Set bias for each plane. This value is added to the result of the multiplication.
20461 Useful for making the overall image brighter or darker.
20462 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
20463
20464 @end table
20465
20466 @subsection Examples
20467
20468 @itemize
20469 @item
20470 Apply sharpen:
20471 @example
20472 -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
20473 @end example
20474
20475 @item
20476 Apply blur:
20477 @example
20478 -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
20479 @end example
20480
20481 @item
20482 Apply edge enhance:
20483 @example
20484 -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
20485 @end example
20486
20487 @item
20488 Apply edge detect:
20489 @example
20490 -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
20491 @end example
20492
20493 @item
20494 Apply laplacian edge detector which includes diagonals:
20495 @example
20496 -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
20497 @end example
20498
20499 @item
20500 Apply emboss:
20501 @example
20502 -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
20503 @end example
20504 @end itemize
20505
20506 @section dilation_opencl
20507
20508 Apply dilation effect to the video.
20509
20510 This filter replaces the pixel by the local(3x3) maximum.
20511
20512 It accepts the following options:
20513
20514 @table @option
20515 @item threshold0
20516 @item threshold1
20517 @item threshold2
20518 @item threshold3
20519 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
20520 If @code{0}, plane will remain unchanged.
20521
20522 @item coordinates
20523 Flag which specifies the pixel to refer to.
20524 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
20525
20526 Flags to local 3x3 coordinates region centered on @code{x}:
20527
20528     1 2 3
20529
20530     4 x 5
20531
20532     6 7 8
20533 @end table
20534
20535 @subsection Example
20536
20537 @itemize
20538 @item
20539 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.
20540 @example
20541 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
20542 @end example
20543 @end itemize
20544
20545 @section erosion_opencl
20546
20547 Apply erosion effect to the video.
20548
20549 This filter replaces the pixel by the local(3x3) minimum.
20550
20551 It accepts the following options:
20552
20553 @table @option
20554 @item threshold0
20555 @item threshold1
20556 @item threshold2
20557 @item threshold3
20558 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
20559 If @code{0}, plane will remain unchanged.
20560
20561 @item coordinates
20562 Flag which specifies the pixel to refer to.
20563 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
20564
20565 Flags to local 3x3 coordinates region centered on @code{x}:
20566
20567     1 2 3
20568
20569     4 x 5
20570
20571     6 7 8
20572 @end table
20573
20574 @subsection Example
20575
20576 @itemize
20577 @item
20578 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.
20579 @example
20580 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
20581 @end example
20582 @end itemize
20583
20584 @section colorkey_opencl
20585 RGB colorspace color keying.
20586
20587 The filter accepts the following options:
20588
20589 @table @option
20590 @item color
20591 The color which will be replaced with transparency.
20592
20593 @item similarity
20594 Similarity percentage with the key color.
20595
20596 0.01 matches only the exact key color, while 1.0 matches everything.
20597
20598 @item blend
20599 Blend percentage.
20600
20601 0.0 makes pixels either fully transparent, or not transparent at all.
20602
20603 Higher values result in semi-transparent pixels, with a higher transparency
20604 the more similar the pixels color is to the key color.
20605 @end table
20606
20607 @subsection Examples
20608
20609 @itemize
20610 @item
20611 Make every semi-green pixel in the input transparent with some slight blending:
20612 @example
20613 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
20614 @end example
20615 @end itemize
20616
20617 @section deshake_opencl
20618 Feature-point based video stabilization filter.
20619
20620 The filter accepts the following options:
20621
20622 @table @option
20623 @item tripod
20624 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
20625
20626 @item debug
20627 Whether or not additional debug info should be displayed, both in the processed output and in the console.
20628
20629 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
20630
20631 Viewing point matches in the output video is only supported for RGB input.
20632
20633 Defaults to @code{0}.
20634
20635 @item adaptive_crop
20636 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
20637
20638 Defaults to @code{1}.
20639
20640 @item refine_features
20641 Whether or not feature points should be refined at a sub-pixel level.
20642
20643 This can be turned off for a slight performance gain at the cost of precision.
20644
20645 Defaults to @code{1}.
20646
20647 @item smooth_strength
20648 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
20649
20650 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
20651
20652 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
20653
20654 Defaults to @code{0.0}.
20655
20656 @item smooth_window_multiplier
20657 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
20658
20659 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
20660
20661 Acceptable values range from @code{0.1} to @code{10.0}.
20662
20663 Larger values increase the amount of motion data available for determining how to smooth the camera path,
20664 potentially improving smoothness, but also increase latency and memory usage.
20665
20666 Defaults to @code{2.0}.
20667
20668 @end table
20669
20670 @subsection Examples
20671
20672 @itemize
20673 @item
20674 Stabilize a video with a fixed, medium smoothing strength:
20675 @example
20676 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
20677 @end example
20678
20679 @item
20680 Stabilize a video with debugging (both in console and in rendered video):
20681 @example
20682 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
20683 @end example
20684 @end itemize
20685
20686 @section nlmeans_opencl
20687
20688 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
20689
20690 @section overlay_opencl
20691
20692 Overlay one video on top of another.
20693
20694 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
20695 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
20696
20697 The filter accepts the following options:
20698
20699 @table @option
20700
20701 @item x
20702 Set the x coordinate of the overlaid video on the main video.
20703 Default value is @code{0}.
20704
20705 @item y
20706 Set the y coordinate of the overlaid video on the main video.
20707 Default value is @code{0}.
20708
20709 @end table
20710
20711 @subsection Examples
20712
20713 @itemize
20714 @item
20715 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
20716 @example
20717 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
20718 @end example
20719 @item
20720 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
20721 @example
20722 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
20723 @end example
20724
20725 @end itemize
20726
20727 @section prewitt_opencl
20728
20729 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
20730
20731 The filter accepts the following option:
20732
20733 @table @option
20734 @item planes
20735 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20736
20737 @item scale
20738 Set value which will be multiplied with filtered result.
20739 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
20740
20741 @item delta
20742 Set value which will be added to filtered result.
20743 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
20744 @end table
20745
20746 @subsection Example
20747
20748 @itemize
20749 @item
20750 Apply the Prewitt operator with scale set to 2 and delta set to 10.
20751 @example
20752 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
20753 @end example
20754 @end itemize
20755
20756 @section roberts_opencl
20757 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
20758
20759 The filter accepts the following option:
20760
20761 @table @option
20762 @item planes
20763 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20764
20765 @item scale
20766 Set value which will be multiplied with filtered result.
20767 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
20768
20769 @item delta
20770 Set value which will be added to filtered result.
20771 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
20772 @end table
20773
20774 @subsection Example
20775
20776 @itemize
20777 @item
20778 Apply the Roberts cross operator with scale set to 2 and delta set to 10
20779 @example
20780 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
20781 @end example
20782 @end itemize
20783
20784 @section sobel_opencl
20785
20786 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
20787
20788 The filter accepts the following option:
20789
20790 @table @option
20791 @item planes
20792 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20793
20794 @item scale
20795 Set value which will be multiplied with filtered result.
20796 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
20797
20798 @item delta
20799 Set value which will be added to filtered result.
20800 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
20801 @end table
20802
20803 @subsection Example
20804
20805 @itemize
20806 @item
20807 Apply sobel operator with scale set to 2 and delta set to 10
20808 @example
20809 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
20810 @end example
20811 @end itemize
20812
20813 @section tonemap_opencl
20814
20815 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
20816
20817 It accepts the following parameters:
20818
20819 @table @option
20820 @item tonemap
20821 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
20822
20823 @item param
20824 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
20825
20826 @item desat
20827 Apply desaturation for highlights that exceed this level of brightness. The
20828 higher the parameter, the more color information will be preserved. This
20829 setting helps prevent unnaturally blown-out colors for super-highlights, by
20830 (smoothly) turning into white instead. This makes images feel more natural,
20831 at the cost of reducing information about out-of-range colors.
20832
20833 The default value is 0.5, and the algorithm here is a little different from
20834 the cpu version tonemap currently. A setting of 0.0 disables this option.
20835
20836 @item threshold
20837 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
20838 is used to detect whether the scene has changed or not. If the distance between
20839 the current frame average brightness and the current running average exceeds
20840 a threshold value, we would re-calculate scene average and peak brightness.
20841 The default value is 0.2.
20842
20843 @item format
20844 Specify the output pixel format.
20845
20846 Currently supported formats are:
20847 @table @var
20848 @item p010
20849 @item nv12
20850 @end table
20851
20852 @item range, r
20853 Set the output color range.
20854
20855 Possible values are:
20856 @table @var
20857 @item tv/mpeg
20858 @item pc/jpeg
20859 @end table
20860
20861 Default is same as input.
20862
20863 @item primaries, p
20864 Set the output color primaries.
20865
20866 Possible values are:
20867 @table @var
20868 @item bt709
20869 @item bt2020
20870 @end table
20871
20872 Default is same as input.
20873
20874 @item transfer, t
20875 Set the output transfer characteristics.
20876
20877 Possible values are:
20878 @table @var
20879 @item bt709
20880 @item bt2020
20881 @end table
20882
20883 Default is bt709.
20884
20885 @item matrix, m
20886 Set the output colorspace matrix.
20887
20888 Possible value are:
20889 @table @var
20890 @item bt709
20891 @item bt2020
20892 @end table
20893
20894 Default is same as input.
20895
20896 @end table
20897
20898 @subsection Example
20899
20900 @itemize
20901 @item
20902 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
20903 @example
20904 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
20905 @end example
20906 @end itemize
20907
20908 @section unsharp_opencl
20909
20910 Sharpen or blur the input video.
20911
20912 It accepts the following parameters:
20913
20914 @table @option
20915 @item luma_msize_x, lx
20916 Set the luma matrix horizontal size.
20917 Range is @code{[1, 23]} and default value is @code{5}.
20918
20919 @item luma_msize_y, ly
20920 Set the luma matrix vertical size.
20921 Range is @code{[1, 23]} and default value is @code{5}.
20922
20923 @item luma_amount, la
20924 Set the luma effect strength.
20925 Range is @code{[-10, 10]} and default value is @code{1.0}.
20926
20927 Negative values will blur the input video, while positive values will
20928 sharpen it, a value of zero will disable the effect.
20929
20930 @item chroma_msize_x, cx
20931 Set the chroma matrix horizontal size.
20932 Range is @code{[1, 23]} and default value is @code{5}.
20933
20934 @item chroma_msize_y, cy
20935 Set the chroma matrix vertical size.
20936 Range is @code{[1, 23]} and default value is @code{5}.
20937
20938 @item chroma_amount, ca
20939 Set the chroma effect strength.
20940 Range is @code{[-10, 10]} and default value is @code{0.0}.
20941
20942 Negative values will blur the input video, while positive values will
20943 sharpen it, a value of zero will disable the effect.
20944
20945 @end table
20946
20947 All parameters are optional and default to the equivalent of the
20948 string '5:5:1.0:5:5:0.0'.
20949
20950 @subsection Examples
20951
20952 @itemize
20953 @item
20954 Apply strong luma sharpen effect:
20955 @example
20956 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
20957 @end example
20958
20959 @item
20960 Apply a strong blur of both luma and chroma parameters:
20961 @example
20962 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
20963 @end example
20964 @end itemize
20965
20966 @c man end OPENCL VIDEO FILTERS
20967
20968 @chapter Video Sources
20969 @c man begin VIDEO SOURCES
20970
20971 Below is a description of the currently available video sources.
20972
20973 @section buffer
20974
20975 Buffer video frames, and make them available to the filter chain.
20976
20977 This source is mainly intended for a programmatic use, in particular
20978 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
20979
20980 It accepts the following parameters:
20981
20982 @table @option
20983
20984 @item video_size
20985 Specify the size (width and height) of the buffered video frames. For the
20986 syntax of this option, check the
20987 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20988
20989 @item width
20990 The input video width.
20991
20992 @item height
20993 The input video height.
20994
20995 @item pix_fmt
20996 A string representing the pixel format of the buffered video frames.
20997 It may be a number corresponding to a pixel format, or a pixel format
20998 name.
20999
21000 @item time_base
21001 Specify the timebase assumed by the timestamps of the buffered frames.
21002
21003 @item frame_rate
21004 Specify the frame rate expected for the video stream.
21005
21006 @item pixel_aspect, sar
21007 The sample (pixel) aspect ratio of the input video.
21008
21009 @item sws_param
21010 Specify the optional parameters to be used for the scale filter which
21011 is automatically inserted when an input change is detected in the
21012 input size or format.
21013
21014 @item hw_frames_ctx
21015 When using a hardware pixel format, this should be a reference to an
21016 AVHWFramesContext describing input frames.
21017 @end table
21018
21019 For example:
21020 @example
21021 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
21022 @end example
21023
21024 will instruct the source to accept video frames with size 320x240 and
21025 with format "yuv410p", assuming 1/24 as the timestamps timebase and
21026 square pixels (1:1 sample aspect ratio).
21027 Since the pixel format with name "yuv410p" corresponds to the number 6
21028 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
21029 this example corresponds to:
21030 @example
21031 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
21032 @end example
21033
21034 Alternatively, the options can be specified as a flat string, but this
21035 syntax is deprecated:
21036
21037 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}[:@var{sws_param}]
21038
21039 @section cellauto
21040
21041 Create a pattern generated by an elementary cellular automaton.
21042
21043 The initial state of the cellular automaton can be defined through the
21044 @option{filename} and @option{pattern} options. If such options are
21045 not specified an initial state is created randomly.
21046
21047 At each new frame a new row in the video is filled with the result of
21048 the cellular automaton next generation. The behavior when the whole
21049 frame is filled is defined by the @option{scroll} option.
21050
21051 This source accepts the following options:
21052
21053 @table @option
21054 @item filename, f
21055 Read the initial cellular automaton state, i.e. the starting row, from
21056 the specified file.
21057 In the file, each non-whitespace character is considered an alive
21058 cell, a newline will terminate the row, and further characters in the
21059 file will be ignored.
21060
21061 @item pattern, p
21062 Read the initial cellular automaton state, i.e. the starting row, from
21063 the specified string.
21064
21065 Each non-whitespace character in the string is considered an alive
21066 cell, a newline will terminate the row, and further characters in the
21067 string will be ignored.
21068
21069 @item rate, r
21070 Set the video rate, that is the number of frames generated per second.
21071 Default is 25.
21072
21073 @item random_fill_ratio, ratio
21074 Set the random fill ratio for the initial cellular automaton row. It
21075 is a floating point number value ranging from 0 to 1, defaults to
21076 1/PHI.
21077
21078 This option is ignored when a file or a pattern is specified.
21079
21080 @item random_seed, seed
21081 Set the seed for filling randomly the initial row, must be an integer
21082 included between 0 and UINT32_MAX. If not specified, or if explicitly
21083 set to -1, the filter will try to use a good random seed on a best
21084 effort basis.
21085
21086 @item rule
21087 Set the cellular automaton rule, it is a number ranging from 0 to 255.
21088 Default value is 110.
21089
21090 @item size, s
21091 Set the size of the output video. For the syntax of this option, check the
21092 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21093
21094 If @option{filename} or @option{pattern} is specified, the size is set
21095 by default to the width of the specified initial state row, and the
21096 height is set to @var{width} * PHI.
21097
21098 If @option{size} is set, it must contain the width of the specified
21099 pattern string, and the specified pattern will be centered in the
21100 larger row.
21101
21102 If a filename or a pattern string is not specified, the size value
21103 defaults to "320x518" (used for a randomly generated initial state).
21104
21105 @item scroll
21106 If set to 1, scroll the output upward when all the rows in the output
21107 have been already filled. If set to 0, the new generated row will be
21108 written over the top row just after the bottom row is filled.
21109 Defaults to 1.
21110
21111 @item start_full, full
21112 If set to 1, completely fill the output with generated rows before
21113 outputting the first frame.
21114 This is the default behavior, for disabling set the value to 0.
21115
21116 @item stitch
21117 If set to 1, stitch the left and right row edges together.
21118 This is the default behavior, for disabling set the value to 0.
21119 @end table
21120
21121 @subsection Examples
21122
21123 @itemize
21124 @item
21125 Read the initial state from @file{pattern}, and specify an output of
21126 size 200x400.
21127 @example
21128 cellauto=f=pattern:s=200x400
21129 @end example
21130
21131 @item
21132 Generate a random initial row with a width of 200 cells, with a fill
21133 ratio of 2/3:
21134 @example
21135 cellauto=ratio=2/3:s=200x200
21136 @end example
21137
21138 @item
21139 Create a pattern generated by rule 18 starting by a single alive cell
21140 centered on an initial row with width 100:
21141 @example
21142 cellauto=p=@@:s=100x400:full=0:rule=18
21143 @end example
21144
21145 @item
21146 Specify a more elaborated initial pattern:
21147 @example
21148 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
21149 @end example
21150
21151 @end itemize
21152
21153 @anchor{coreimagesrc}
21154 @section coreimagesrc
21155 Video source generated on GPU using Apple's CoreImage API on OSX.
21156
21157 This video source is a specialized version of the @ref{coreimage} video filter.
21158 Use a core image generator at the beginning of the applied filterchain to
21159 generate the content.
21160
21161 The coreimagesrc video source accepts the following options:
21162 @table @option
21163 @item list_generators
21164 List all available generators along with all their respective options as well as
21165 possible minimum and maximum values along with the default values.
21166 @example
21167 list_generators=true
21168 @end example
21169
21170 @item size, s
21171 Specify the size of the sourced video. For the syntax of this option, check the
21172 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21173 The default value is @code{320x240}.
21174
21175 @item rate, r
21176 Specify the frame rate of the sourced video, as the number of frames
21177 generated per second. It has to be a string in the format
21178 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
21179 number or a valid video frame rate abbreviation. The default value is
21180 "25".
21181
21182 @item sar
21183 Set the sample aspect ratio of the sourced video.
21184
21185 @item duration, d
21186 Set the duration of the sourced video. See
21187 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
21188 for the accepted syntax.
21189
21190 If not specified, or the expressed duration is negative, the video is
21191 supposed to be generated forever.
21192 @end table
21193
21194 Additionally, all options of the @ref{coreimage} video filter are accepted.
21195 A complete filterchain can be used for further processing of the
21196 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
21197 and examples for details.
21198
21199 @subsection Examples
21200
21201 @itemize
21202
21203 @item
21204 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
21205 given as complete and escaped command-line for Apple's standard bash shell:
21206 @example
21207 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
21208 @end example
21209 This example is equivalent to the QRCode example of @ref{coreimage} without the
21210 need for a nullsrc video source.
21211 @end itemize
21212
21213
21214 @section mandelbrot
21215
21216 Generate a Mandelbrot set fractal, and progressively zoom towards the
21217 point specified with @var{start_x} and @var{start_y}.
21218
21219 This source accepts the following options:
21220
21221 @table @option
21222
21223 @item end_pts
21224 Set the terminal pts value. Default value is 400.
21225
21226 @item end_scale
21227 Set the terminal scale value.
21228 Must be a floating point value. Default value is 0.3.
21229
21230 @item inner
21231 Set the inner coloring mode, that is the algorithm used to draw the
21232 Mandelbrot fractal internal region.
21233
21234 It shall assume one of the following values:
21235 @table @option
21236 @item black
21237 Set black mode.
21238 @item convergence
21239 Show time until convergence.
21240 @item mincol
21241 Set color based on point closest to the origin of the iterations.
21242 @item period
21243 Set period mode.
21244 @end table
21245
21246 Default value is @var{mincol}.
21247
21248 @item bailout
21249 Set the bailout value. Default value is 10.0.
21250
21251 @item maxiter
21252 Set the maximum of iterations performed by the rendering
21253 algorithm. Default value is 7189.
21254
21255 @item outer
21256 Set outer coloring mode.
21257 It shall assume one of following values:
21258 @table @option
21259 @item iteration_count
21260 Set iteration count mode.
21261 @item normalized_iteration_count
21262 set normalized iteration count mode.
21263 @end table
21264 Default value is @var{normalized_iteration_count}.
21265
21266 @item rate, r
21267 Set frame rate, expressed as number of frames per second. Default
21268 value is "25".
21269
21270 @item size, s
21271 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
21272 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
21273
21274 @item start_scale
21275 Set the initial scale value. Default value is 3.0.
21276
21277 @item start_x
21278 Set the initial x position. Must be a floating point value between
21279 -100 and 100. Default value is -0.743643887037158704752191506114774.
21280
21281 @item start_y
21282 Set the initial y position. Must be a floating point value between
21283 -100 and 100. Default value is -0.131825904205311970493132056385139.
21284 @end table
21285
21286 @section mptestsrc
21287
21288 Generate various test patterns, as generated by the MPlayer test filter.
21289
21290 The size of the generated video is fixed, and is 256x256.
21291 This source is useful in particular for testing encoding features.
21292
21293 This source accepts the following options:
21294
21295 @table @option
21296
21297 @item rate, r
21298 Specify the frame rate of the sourced video, as the number of frames
21299 generated per second. It has to be a string in the format
21300 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
21301 number or a valid video frame rate abbreviation. The default value is
21302 "25".
21303
21304 @item duration, d
21305 Set the duration of the sourced video. See
21306 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
21307 for the accepted syntax.
21308
21309 If not specified, or the expressed duration is negative, the video is
21310 supposed to be generated forever.
21311
21312 @item test, t
21313
21314 Set the number or the name of the test to perform. Supported tests are:
21315 @table @option
21316 @item dc_luma
21317 @item dc_chroma
21318 @item freq_luma
21319 @item freq_chroma
21320 @item amp_luma
21321 @item amp_chroma
21322 @item cbp
21323 @item mv
21324 @item ring1
21325 @item ring2
21326 @item all
21327
21328 @item max_frames, m
21329 Set the maximum number of frames generated for each test, default value is 30.
21330
21331 @end table
21332
21333 Default value is "all", which will cycle through the list of all tests.
21334 @end table
21335
21336 Some examples:
21337 @example
21338 mptestsrc=t=dc_luma
21339 @end example
21340
21341 will generate a "dc_luma" test pattern.
21342
21343 @section frei0r_src
21344
21345 Provide a frei0r source.
21346
21347 To enable compilation of this filter you need to install the frei0r
21348 header and configure FFmpeg with @code{--enable-frei0r}.
21349
21350 This source accepts the following parameters:
21351
21352 @table @option
21353
21354 @item size
21355 The size of the video to generate. For the syntax of this option, check the
21356 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21357
21358 @item framerate
21359 The framerate of the generated video. It may be a string of the form
21360 @var{num}/@var{den} or a frame rate abbreviation.
21361
21362 @item filter_name
21363 The name to the frei0r source to load. For more information regarding frei0r and
21364 how to set the parameters, read the @ref{frei0r} section in the video filters
21365 documentation.
21366
21367 @item filter_params
21368 A '|'-separated list of parameters to pass to the frei0r source.
21369
21370 @end table
21371
21372 For example, to generate a frei0r partik0l source with size 200x200
21373 and frame rate 10 which is overlaid on the overlay filter main input:
21374 @example
21375 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
21376 @end example
21377
21378 @section life
21379
21380 Generate a life pattern.
21381
21382 This source is based on a generalization of John Conway's life game.
21383
21384 The sourced input represents a life grid, each pixel represents a cell
21385 which can be in one of two possible states, alive or dead. Every cell
21386 interacts with its eight neighbours, which are the cells that are
21387 horizontally, vertically, or diagonally adjacent.
21388
21389 At each interaction the grid evolves according to the adopted rule,
21390 which specifies the number of neighbor alive cells which will make a
21391 cell stay alive or born. The @option{rule} option allows one to specify
21392 the rule to adopt.
21393
21394 This source accepts the following options:
21395
21396 @table @option
21397 @item filename, f
21398 Set the file from which to read the initial grid state. In the file,
21399 each non-whitespace character is considered an alive cell, and newline
21400 is used to delimit the end of each row.
21401
21402 If this option is not specified, the initial grid is generated
21403 randomly.
21404
21405 @item rate, r
21406 Set the video rate, that is the number of frames generated per second.
21407 Default is 25.
21408
21409 @item random_fill_ratio, ratio
21410 Set the random fill ratio for the initial random grid. It is a
21411 floating point number value ranging from 0 to 1, defaults to 1/PHI.
21412 It is ignored when a file is specified.
21413
21414 @item random_seed, seed
21415 Set the seed for filling the initial random grid, must be an integer
21416 included between 0 and UINT32_MAX. If not specified, or if explicitly
21417 set to -1, the filter will try to use a good random seed on a best
21418 effort basis.
21419
21420 @item rule
21421 Set the life rule.
21422
21423 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
21424 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
21425 @var{NS} specifies the number of alive neighbor cells which make a
21426 live cell stay alive, and @var{NB} the number of alive neighbor cells
21427 which make a dead cell to become alive (i.e. to "born").
21428 "s" and "b" can be used in place of "S" and "B", respectively.
21429
21430 Alternatively a rule can be specified by an 18-bits integer. The 9
21431 high order bits are used to encode the next cell state if it is alive
21432 for each number of neighbor alive cells, the low order bits specify
21433 the rule for "borning" new cells. Higher order bits encode for an
21434 higher number of neighbor cells.
21435 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
21436 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
21437
21438 Default value is "S23/B3", which is the original Conway's game of life
21439 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
21440 cells, and will born a new cell if there are three alive cells around
21441 a dead cell.
21442
21443 @item size, s
21444 Set the size of the output video. For the syntax of this option, check the
21445 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21446
21447 If @option{filename} is specified, the size is set by default to the
21448 same size of the input file. If @option{size} is set, it must contain
21449 the size specified in the input file, and the initial grid defined in
21450 that file is centered in the larger resulting area.
21451
21452 If a filename is not specified, the size value defaults to "320x240"
21453 (used for a randomly generated initial grid).
21454
21455 @item stitch
21456 If set to 1, stitch the left and right grid edges together, and the
21457 top and bottom edges also. Defaults to 1.
21458
21459 @item mold
21460 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
21461 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
21462 value from 0 to 255.
21463
21464 @item life_color
21465 Set the color of living (or new born) cells.
21466
21467 @item death_color
21468 Set the color of dead cells. If @option{mold} is set, this is the first color
21469 used to represent a dead cell.
21470
21471 @item mold_color
21472 Set mold color, for definitely dead and moldy cells.
21473
21474 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
21475 ffmpeg-utils manual,ffmpeg-utils}.
21476 @end table
21477
21478 @subsection Examples
21479
21480 @itemize
21481 @item
21482 Read a grid from @file{pattern}, and center it on a grid of size
21483 300x300 pixels:
21484 @example
21485 life=f=pattern:s=300x300
21486 @end example
21487
21488 @item
21489 Generate a random grid of size 200x200, with a fill ratio of 2/3:
21490 @example
21491 life=ratio=2/3:s=200x200
21492 @end example
21493
21494 @item
21495 Specify a custom rule for evolving a randomly generated grid:
21496 @example
21497 life=rule=S14/B34
21498 @end example
21499
21500 @item
21501 Full example with slow death effect (mold) using @command{ffplay}:
21502 @example
21503 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
21504 @end example
21505 @end itemize
21506
21507 @anchor{allrgb}
21508 @anchor{allyuv}
21509 @anchor{color}
21510 @anchor{haldclutsrc}
21511 @anchor{nullsrc}
21512 @anchor{pal75bars}
21513 @anchor{pal100bars}
21514 @anchor{rgbtestsrc}
21515 @anchor{smptebars}
21516 @anchor{smptehdbars}
21517 @anchor{testsrc}
21518 @anchor{testsrc2}
21519 @anchor{yuvtestsrc}
21520 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
21521
21522 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
21523
21524 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
21525
21526 The @code{color} source provides an uniformly colored input.
21527
21528 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
21529 @ref{haldclut} filter.
21530
21531 The @code{nullsrc} source returns unprocessed video frames. It is
21532 mainly useful to be employed in analysis / debugging tools, or as the
21533 source for filters which ignore the input data.
21534
21535 The @code{pal75bars} source generates a color bars pattern, based on
21536 EBU PAL recommendations with 75% color levels.
21537
21538 The @code{pal100bars} source generates a color bars pattern, based on
21539 EBU PAL recommendations with 100% color levels.
21540
21541 The @code{rgbtestsrc} source generates an RGB test pattern useful for
21542 detecting RGB vs BGR issues. You should see a red, green and blue
21543 stripe from top to bottom.
21544
21545 The @code{smptebars} source generates a color bars pattern, based on
21546 the SMPTE Engineering Guideline EG 1-1990.
21547
21548 The @code{smptehdbars} source generates a color bars pattern, based on
21549 the SMPTE RP 219-2002.
21550
21551 The @code{testsrc} source generates a test video pattern, showing a
21552 color pattern, a scrolling gradient and a timestamp. This is mainly
21553 intended for testing purposes.
21554
21555 The @code{testsrc2} source is similar to testsrc, but supports more
21556 pixel formats instead of just @code{rgb24}. This allows using it as an
21557 input for other tests without requiring a format conversion.
21558
21559 The @code{yuvtestsrc} source generates an YUV test pattern. You should
21560 see a y, cb and cr stripe from top to bottom.
21561
21562 The sources accept the following parameters:
21563
21564 @table @option
21565
21566 @item level
21567 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
21568 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
21569 pixels to be used as identity matrix for 3D lookup tables. Each component is
21570 coded on a @code{1/(N*N)} scale.
21571
21572 @item color, c
21573 Specify the color of the source, only available in the @code{color}
21574 source. For the syntax of this option, check the
21575 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
21576
21577 @item size, s
21578 Specify the size of the sourced video. For the syntax of this option, check the
21579 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21580 The default value is @code{320x240}.
21581
21582 This option is not available with the @code{allrgb}, @code{allyuv}, and
21583 @code{haldclutsrc} filters.
21584
21585 @item rate, r
21586 Specify the frame rate of the sourced video, as the number of frames
21587 generated per second. It has to be a string in the format
21588 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
21589 number or a valid video frame rate abbreviation. The default value is
21590 "25".
21591
21592 @item duration, d
21593 Set the duration of the sourced video. See
21594 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
21595 for the accepted syntax.
21596
21597 If not specified, or the expressed duration is negative, the video is
21598 supposed to be generated forever.
21599
21600 @item sar
21601 Set the sample aspect ratio of the sourced video.
21602
21603 @item alpha
21604 Specify the alpha (opacity) of the background, only available in the
21605 @code{testsrc2} source. The value must be between 0 (fully transparent) and
21606 255 (fully opaque, the default).
21607
21608 @item decimals, n
21609 Set the number of decimals to show in the timestamp, only available in the
21610 @code{testsrc} source.
21611
21612 The displayed timestamp value will correspond to the original
21613 timestamp value multiplied by the power of 10 of the specified
21614 value. Default value is 0.
21615 @end table
21616
21617 @subsection Examples
21618
21619 @itemize
21620 @item
21621 Generate a video with a duration of 5.3 seconds, with size
21622 176x144 and a frame rate of 10 frames per second:
21623 @example
21624 testsrc=duration=5.3:size=qcif:rate=10
21625 @end example
21626
21627 @item
21628 The following graph description will generate a red source
21629 with an opacity of 0.2, with size "qcif" and a frame rate of 10
21630 frames per second:
21631 @example
21632 color=c=red@@0.2:s=qcif:r=10
21633 @end example
21634
21635 @item
21636 If the input content is to be ignored, @code{nullsrc} can be used. The
21637 following command generates noise in the luminance plane by employing
21638 the @code{geq} filter:
21639 @example
21640 nullsrc=s=256x256, geq=random(1)*255:128:128
21641 @end example
21642 @end itemize
21643
21644 @subsection Commands
21645
21646 The @code{color} source supports the following commands:
21647
21648 @table @option
21649 @item c, color
21650 Set the color of the created image. Accepts the same syntax of the
21651 corresponding @option{color} option.
21652 @end table
21653
21654 @section openclsrc
21655
21656 Generate video using an OpenCL program.
21657
21658 @table @option
21659
21660 @item source
21661 OpenCL program source file.
21662
21663 @item kernel
21664 Kernel name in program.
21665
21666 @item size, s
21667 Size of frames to generate.  This must be set.
21668
21669 @item format
21670 Pixel format to use for the generated frames.  This must be set.
21671
21672 @item rate, r
21673 Number of frames generated every second.  Default value is '25'.
21674
21675 @end table
21676
21677 For details of how the program loading works, see the @ref{program_opencl}
21678 filter.
21679
21680 Example programs:
21681
21682 @itemize
21683 @item
21684 Generate a colour ramp by setting pixel values from the position of the pixel
21685 in the output image.  (Note that this will work with all pixel formats, but
21686 the generated output will not be the same.)
21687 @verbatim
21688 __kernel void ramp(__write_only image2d_t dst,
21689                    unsigned int index)
21690 {
21691     int2 loc = (int2)(get_global_id(0), get_global_id(1));
21692
21693     float4 val;
21694     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
21695
21696     write_imagef(dst, loc, val);
21697 }
21698 @end verbatim
21699
21700 @item
21701 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
21702 @verbatim
21703 __kernel void sierpinski_carpet(__write_only image2d_t dst,
21704                                 unsigned int index)
21705 {
21706     int2 loc = (int2)(get_global_id(0), get_global_id(1));
21707
21708     float4 value = 0.0f;
21709     int x = loc.x + index;
21710     int y = loc.y + index;
21711     while (x > 0 || y > 0) {
21712         if (x % 3 == 1 && y % 3 == 1) {
21713             value = 1.0f;
21714             break;
21715         }
21716         x /= 3;
21717         y /= 3;
21718     }
21719
21720     write_imagef(dst, loc, value);
21721 }
21722 @end verbatim
21723
21724 @end itemize
21725
21726 @section sierpinski
21727
21728 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
21729
21730 This source accepts the following options:
21731
21732 @table @option
21733 @item size, s
21734 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
21735 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
21736
21737 @item rate, r
21738 Set frame rate, expressed as number of frames per second. Default
21739 value is "25".
21740
21741 @item seed
21742 Set seed which is used for random panning.
21743
21744 @item jump
21745 Set max jump for single pan destination. Allowed range is from 1 to 10000.
21746
21747 @item type
21748 Set fractal type, can be default @code{carpet} or @code{triangle}.
21749 @end table
21750
21751 @c man end VIDEO SOURCES
21752
21753 @chapter Video Sinks
21754 @c man begin VIDEO SINKS
21755
21756 Below is a description of the currently available video sinks.
21757
21758 @section buffersink
21759
21760 Buffer video frames, and make them available to the end of the filter
21761 graph.
21762
21763 This sink is mainly intended for programmatic use, in particular
21764 through the interface defined in @file{libavfilter/buffersink.h}
21765 or the options system.
21766
21767 It accepts a pointer to an AVBufferSinkContext structure, which
21768 defines the incoming buffers' formats, to be passed as the opaque
21769 parameter to @code{avfilter_init_filter} for initialization.
21770
21771 @section nullsink
21772
21773 Null video sink: do absolutely nothing with the input video. It is
21774 mainly useful as a template and for use in analysis / debugging
21775 tools.
21776
21777 @c man end VIDEO SINKS
21778
21779 @chapter Multimedia Filters
21780 @c man begin MULTIMEDIA FILTERS
21781
21782 Below is a description of the currently available multimedia filters.
21783
21784 @section abitscope
21785
21786 Convert input audio to a video output, displaying the audio bit scope.
21787
21788 The filter accepts the following options:
21789
21790 @table @option
21791 @item rate, r
21792 Set frame rate, expressed as number of frames per second. Default
21793 value is "25".
21794
21795 @item size, s
21796 Specify the video size for the output. For the syntax of this option, check the
21797 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21798 Default value is @code{1024x256}.
21799
21800 @item colors
21801 Specify list of colors separated by space or by '|' which will be used to
21802 draw channels. Unrecognized or missing colors will be replaced
21803 by white color.
21804 @end table
21805
21806 @section adrawgraph
21807 Draw a graph using input audio metadata.
21808
21809 See @ref{drawgraph}
21810
21811 @section agraphmonitor
21812
21813 See @ref{graphmonitor}.
21814
21815 @section ahistogram
21816
21817 Convert input audio to a video output, displaying the volume histogram.
21818
21819 The filter accepts the following options:
21820
21821 @table @option
21822 @item dmode
21823 Specify how histogram is calculated.
21824
21825 It accepts the following values:
21826 @table @samp
21827 @item single
21828 Use single histogram for all channels.
21829 @item separate
21830 Use separate histogram for each channel.
21831 @end table
21832 Default is @code{single}.
21833
21834 @item rate, r
21835 Set frame rate, expressed as number of frames per second. Default
21836 value is "25".
21837
21838 @item size, s
21839 Specify the video size for the output. For the syntax of this option, check the
21840 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21841 Default value is @code{hd720}.
21842
21843 @item scale
21844 Set display scale.
21845
21846 It accepts the following values:
21847 @table @samp
21848 @item log
21849 logarithmic
21850 @item sqrt
21851 square root
21852 @item cbrt
21853 cubic root
21854 @item lin
21855 linear
21856 @item rlog
21857 reverse logarithmic
21858 @end table
21859 Default is @code{log}.
21860
21861 @item ascale
21862 Set amplitude scale.
21863
21864 It accepts the following values:
21865 @table @samp
21866 @item log
21867 logarithmic
21868 @item lin
21869 linear
21870 @end table
21871 Default is @code{log}.
21872
21873 @item acount
21874 Set how much frames to accumulate in histogram.
21875 Default is 1. Setting this to -1 accumulates all frames.
21876
21877 @item rheight
21878 Set histogram ratio of window height.
21879
21880 @item slide
21881 Set sonogram sliding.
21882
21883 It accepts the following values:
21884 @table @samp
21885 @item replace
21886 replace old rows with new ones.
21887 @item scroll
21888 scroll from top to bottom.
21889 @end table
21890 Default is @code{replace}.
21891 @end table
21892
21893 @section aphasemeter
21894
21895 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
21896 representing mean phase of current audio frame. A video output can also be produced and is
21897 enabled by default. The audio is passed through as first output.
21898
21899 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
21900 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
21901 and @code{1} means channels are in phase.
21902
21903 The filter accepts the following options, all related to its video output:
21904
21905 @table @option
21906 @item rate, r
21907 Set the output frame rate. Default value is @code{25}.
21908
21909 @item size, s
21910 Set the video size for the output. For the syntax of this option, check the
21911 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21912 Default value is @code{800x400}.
21913
21914 @item rc
21915 @item gc
21916 @item bc
21917 Specify the red, green, blue contrast. Default values are @code{2},
21918 @code{7} and @code{1}.
21919 Allowed range is @code{[0, 255]}.
21920
21921 @item mpc
21922 Set color which will be used for drawing median phase. If color is
21923 @code{none} which is default, no median phase value will be drawn.
21924
21925 @item video
21926 Enable video output. Default is enabled.
21927 @end table
21928
21929 @section avectorscope
21930
21931 Convert input audio to a video output, representing the audio vector
21932 scope.
21933
21934 The filter is used to measure the difference between channels of stereo
21935 audio stream. A monaural signal, consisting of identical left and right
21936 signal, results in straight vertical line. Any stereo separation is visible
21937 as a deviation from this line, creating a Lissajous figure.
21938 If the straight (or deviation from it) but horizontal line appears this
21939 indicates that the left and right channels are out of phase.
21940
21941 The filter accepts the following options:
21942
21943 @table @option
21944 @item mode, m
21945 Set the vectorscope mode.
21946
21947 Available values are:
21948 @table @samp
21949 @item lissajous
21950 Lissajous rotated by 45 degrees.
21951
21952 @item lissajous_xy
21953 Same as above but not rotated.
21954
21955 @item polar
21956 Shape resembling half of circle.
21957 @end table
21958
21959 Default value is @samp{lissajous}.
21960
21961 @item size, s
21962 Set the video size for the output. For the syntax of this option, check the
21963 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21964 Default value is @code{400x400}.
21965
21966 @item rate, r
21967 Set the output frame rate. Default value is @code{25}.
21968
21969 @item rc
21970 @item gc
21971 @item bc
21972 @item ac
21973 Specify the red, green, blue and alpha contrast. Default values are @code{40},
21974 @code{160}, @code{80} and @code{255}.
21975 Allowed range is @code{[0, 255]}.
21976
21977 @item rf
21978 @item gf
21979 @item bf
21980 @item af
21981 Specify the red, green, blue and alpha fade. Default values are @code{15},
21982 @code{10}, @code{5} and @code{5}.
21983 Allowed range is @code{[0, 255]}.
21984
21985 @item zoom
21986 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
21987 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
21988
21989 @item draw
21990 Set the vectorscope drawing mode.
21991
21992 Available values are:
21993 @table @samp
21994 @item dot
21995 Draw dot for each sample.
21996
21997 @item line
21998 Draw line between previous and current sample.
21999 @end table
22000
22001 Default value is @samp{dot}.
22002
22003 @item scale
22004 Specify amplitude scale of audio samples.
22005
22006 Available values are:
22007 @table @samp
22008 @item lin
22009 Linear.
22010
22011 @item sqrt
22012 Square root.
22013
22014 @item cbrt
22015 Cubic root.
22016
22017 @item log
22018 Logarithmic.
22019 @end table
22020
22021 @item swap
22022 Swap left channel axis with right channel axis.
22023
22024 @item mirror
22025 Mirror axis.
22026
22027 @table @samp
22028 @item none
22029 No mirror.
22030
22031 @item x
22032 Mirror only x axis.
22033
22034 @item y
22035 Mirror only y axis.
22036
22037 @item xy
22038 Mirror both axis.
22039 @end table
22040
22041 @end table
22042
22043 @subsection Examples
22044
22045 @itemize
22046 @item
22047 Complete example using @command{ffplay}:
22048 @example
22049 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
22050              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
22051 @end example
22052 @end itemize
22053
22054 @section bench, abench
22055
22056 Benchmark part of a filtergraph.
22057
22058 The filter accepts the following options:
22059
22060 @table @option
22061 @item action
22062 Start or stop a timer.
22063
22064 Available values are:
22065 @table @samp
22066 @item start
22067 Get the current time, set it as frame metadata (using the key
22068 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
22069
22070 @item stop
22071 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
22072 the input frame metadata to get the time difference. Time difference, average,
22073 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
22074 @code{min}) are then printed. The timestamps are expressed in seconds.
22075 @end table
22076 @end table
22077
22078 @subsection Examples
22079
22080 @itemize
22081 @item
22082 Benchmark @ref{selectivecolor} filter:
22083 @example
22084 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
22085 @end example
22086 @end itemize
22087
22088 @section concat
22089
22090 Concatenate audio and video streams, joining them together one after the
22091 other.
22092
22093 The filter works on segments of synchronized video and audio streams. All
22094 segments must have the same number of streams of each type, and that will
22095 also be the number of streams at output.
22096
22097 The filter accepts the following options:
22098
22099 @table @option
22100
22101 @item n
22102 Set the number of segments. Default is 2.
22103
22104 @item v
22105 Set the number of output video streams, that is also the number of video
22106 streams in each segment. Default is 1.
22107
22108 @item a
22109 Set the number of output audio streams, that is also the number of audio
22110 streams in each segment. Default is 0.
22111
22112 @item unsafe
22113 Activate unsafe mode: do not fail if segments have a different format.
22114
22115 @end table
22116
22117 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
22118 @var{a} audio outputs.
22119
22120 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
22121 segment, in the same order as the outputs, then the inputs for the second
22122 segment, etc.
22123
22124 Related streams do not always have exactly the same duration, for various
22125 reasons including codec frame size or sloppy authoring. For that reason,
22126 related synchronized streams (e.g. a video and its audio track) should be
22127 concatenated at once. The concat filter will use the duration of the longest
22128 stream in each segment (except the last one), and if necessary pad shorter
22129 audio streams with silence.
22130
22131 For this filter to work correctly, all segments must start at timestamp 0.
22132
22133 All corresponding streams must have the same parameters in all segments; the
22134 filtering system will automatically select a common pixel format for video
22135 streams, and a common sample format, sample rate and channel layout for
22136 audio streams, but other settings, such as resolution, must be converted
22137 explicitly by the user.
22138
22139 Different frame rates are acceptable but will result in variable frame rate
22140 at output; be sure to configure the output file to handle it.
22141
22142 @subsection Examples
22143
22144 @itemize
22145 @item
22146 Concatenate an opening, an episode and an ending, all in bilingual version
22147 (video in stream 0, audio in streams 1 and 2):
22148 @example
22149 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
22150   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
22151    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
22152   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
22153 @end example
22154
22155 @item
22156 Concatenate two parts, handling audio and video separately, using the
22157 (a)movie sources, and adjusting the resolution:
22158 @example
22159 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
22160 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
22161 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
22162 @end example
22163 Note that a desync will happen at the stitch if the audio and video streams
22164 do not have exactly the same duration in the first file.
22165
22166 @end itemize
22167
22168 @subsection Commands
22169
22170 This filter supports the following commands:
22171 @table @option
22172 @item next
22173 Close the current segment and step to the next one
22174 @end table
22175
22176 @anchor{ebur128}
22177 @section ebur128
22178
22179 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
22180 level. By default, it logs a message at a frequency of 10Hz with the
22181 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
22182 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
22183
22184 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
22185 sample format is double-precision floating point. The input stream will be converted to
22186 this specification, if needed. Users may need to insert aformat and/or aresample filters
22187 after this filter to obtain the original parameters.
22188
22189 The filter also has a video output (see the @var{video} option) with a real
22190 time graph to observe the loudness evolution. The graphic contains the logged
22191 message mentioned above, so it is not printed anymore when this option is set,
22192 unless the verbose logging is set. The main graphing area contains the
22193 short-term loudness (3 seconds of analysis), and the gauge on the right is for
22194 the momentary loudness (400 milliseconds), but can optionally be configured
22195 to instead display short-term loudness (see @var{gauge}).
22196
22197 The green area marks a  +/- 1LU target range around the target loudness
22198 (-23LUFS by default, unless modified through @var{target}).
22199
22200 More information about the Loudness Recommendation EBU R128 on
22201 @url{http://tech.ebu.ch/loudness}.
22202
22203 The filter accepts the following options:
22204
22205 @table @option
22206
22207 @item video
22208 Activate the video output. The audio stream is passed unchanged whether this
22209 option is set or no. The video stream will be the first output stream if
22210 activated. Default is @code{0}.
22211
22212 @item size
22213 Set the video size. This option is for video only. For the syntax of this
22214 option, check the
22215 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22216 Default and minimum resolution is @code{640x480}.
22217
22218 @item meter
22219 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
22220 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
22221 other integer value between this range is allowed.
22222
22223 @item metadata
22224 Set metadata injection. If set to @code{1}, the audio input will be segmented
22225 into 100ms output frames, each of them containing various loudness information
22226 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
22227
22228 Default is @code{0}.
22229
22230 @item framelog
22231 Force the frame logging level.
22232
22233 Available values are:
22234 @table @samp
22235 @item info
22236 information logging level
22237 @item verbose
22238 verbose logging level
22239 @end table
22240
22241 By default, the logging level is set to @var{info}. If the @option{video} or
22242 the @option{metadata} options are set, it switches to @var{verbose}.
22243
22244 @item peak
22245 Set peak mode(s).
22246
22247 Available modes can be cumulated (the option is a @code{flag} type). Possible
22248 values are:
22249 @table @samp
22250 @item none
22251 Disable any peak mode (default).
22252 @item sample
22253 Enable sample-peak mode.
22254
22255 Simple peak mode looking for the higher sample value. It logs a message
22256 for sample-peak (identified by @code{SPK}).
22257 @item true
22258 Enable true-peak mode.
22259
22260 If enabled, the peak lookup is done on an over-sampled version of the input
22261 stream for better peak accuracy. It logs a message for true-peak.
22262 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
22263 This mode requires a build with @code{libswresample}.
22264 @end table
22265
22266 @item dualmono
22267 Treat mono input files as "dual mono". If a mono file is intended for playback
22268 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
22269 If set to @code{true}, this option will compensate for this effect.
22270 Multi-channel input files are not affected by this option.
22271
22272 @item panlaw
22273 Set a specific pan law to be used for the measurement of dual mono files.
22274 This parameter is optional, and has a default value of -3.01dB.
22275
22276 @item target
22277 Set a specific target level (in LUFS) used as relative zero in the visualization.
22278 This parameter is optional and has a default value of -23LUFS as specified
22279 by EBU R128. However, material published online may prefer a level of -16LUFS
22280 (e.g. for use with podcasts or video platforms).
22281
22282 @item gauge
22283 Set the value displayed by the gauge. Valid values are @code{momentary} and s
22284 @code{shortterm}. By default the momentary value will be used, but in certain
22285 scenarios it may be more useful to observe the short term value instead (e.g.
22286 live mixing).
22287
22288 @item scale
22289 Sets the display scale for the loudness. Valid parameters are @code{absolute}
22290 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
22291 video output, not the summary or continuous log output.
22292 @end table
22293
22294 @subsection Examples
22295
22296 @itemize
22297 @item
22298 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
22299 @example
22300 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
22301 @end example
22302
22303 @item
22304 Run an analysis with @command{ffmpeg}:
22305 @example
22306 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
22307 @end example
22308 @end itemize
22309
22310 @section interleave, ainterleave
22311
22312 Temporally interleave frames from several inputs.
22313
22314 @code{interleave} works with video inputs, @code{ainterleave} with audio.
22315
22316 These filters read frames from several inputs and send the oldest
22317 queued frame to the output.
22318
22319 Input streams must have well defined, monotonically increasing frame
22320 timestamp values.
22321
22322 In order to submit one frame to output, these filters need to enqueue
22323 at least one frame for each input, so they cannot work in case one
22324 input is not yet terminated and will not receive incoming frames.
22325
22326 For example consider the case when one input is a @code{select} filter
22327 which always drops input frames. The @code{interleave} filter will keep
22328 reading from that input, but it will never be able to send new frames
22329 to output until the input sends an end-of-stream signal.
22330
22331 Also, depending on inputs synchronization, the filters will drop
22332 frames in case one input receives more frames than the other ones, and
22333 the queue is already filled.
22334
22335 These filters accept the following options:
22336
22337 @table @option
22338 @item nb_inputs, n
22339 Set the number of different inputs, it is 2 by default.
22340 @end table
22341
22342 @subsection Examples
22343
22344 @itemize
22345 @item
22346 Interleave frames belonging to different streams using @command{ffmpeg}:
22347 @example
22348 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
22349 @end example
22350
22351 @item
22352 Add flickering blur effect:
22353 @example
22354 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
22355 @end example
22356 @end itemize
22357
22358 @section metadata, ametadata
22359
22360 Manipulate frame metadata.
22361
22362 This filter accepts the following options:
22363
22364 @table @option
22365 @item mode
22366 Set mode of operation of the filter.
22367
22368 Can be one of the following:
22369
22370 @table @samp
22371 @item select
22372 If both @code{value} and @code{key} is set, select frames
22373 which have such metadata. If only @code{key} is set, select
22374 every frame that has such key in metadata.
22375
22376 @item add
22377 Add new metadata @code{key} and @code{value}. If key is already available
22378 do nothing.
22379
22380 @item modify
22381 Modify value of already present key.
22382
22383 @item delete
22384 If @code{value} is set, delete only keys that have such value.
22385 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
22386 the frame.
22387
22388 @item print
22389 Print key and its value if metadata was found. If @code{key} is not set print all
22390 metadata values available in frame.
22391 @end table
22392
22393 @item key
22394 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
22395
22396 @item value
22397 Set metadata value which will be used. This option is mandatory for
22398 @code{modify} and @code{add} mode.
22399
22400 @item function
22401 Which function to use when comparing metadata value and @code{value}.
22402
22403 Can be one of following:
22404
22405 @table @samp
22406 @item same_str
22407 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
22408
22409 @item starts_with
22410 Values are interpreted as strings, returns true if metadata value starts with
22411 the @code{value} option string.
22412
22413 @item less
22414 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
22415
22416 @item equal
22417 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
22418
22419 @item greater
22420 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
22421
22422 @item expr
22423 Values are interpreted as floats, returns true if expression from option @code{expr}
22424 evaluates to true.
22425
22426 @item ends_with
22427 Values are interpreted as strings, returns true if metadata value ends with
22428 the @code{value} option string.
22429 @end table
22430
22431 @item expr
22432 Set expression which is used when @code{function} is set to @code{expr}.
22433 The expression is evaluated through the eval API and can contain the following
22434 constants:
22435
22436 @table @option
22437 @item VALUE1
22438 Float representation of @code{value} from metadata key.
22439
22440 @item VALUE2
22441 Float representation of @code{value} as supplied by user in @code{value} option.
22442 @end table
22443
22444 @item file
22445 If specified in @code{print} mode, output is written to the named file. Instead of
22446 plain filename any writable url can be specified. Filename ``-'' is a shorthand
22447 for standard output. If @code{file} option is not set, output is written to the log
22448 with AV_LOG_INFO loglevel.
22449
22450 @end table
22451
22452 @subsection Examples
22453
22454 @itemize
22455 @item
22456 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
22457 between 0 and 1.
22458 @example
22459 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
22460 @end example
22461 @item
22462 Print silencedetect output to file @file{metadata.txt}.
22463 @example
22464 silencedetect,ametadata=mode=print:file=metadata.txt
22465 @end example
22466 @item
22467 Direct all metadata to a pipe with file descriptor 4.
22468 @example
22469 metadata=mode=print:file='pipe\:4'
22470 @end example
22471 @end itemize
22472
22473 @section perms, aperms
22474
22475 Set read/write permissions for the output frames.
22476
22477 These filters are mainly aimed at developers to test direct path in the
22478 following filter in the filtergraph.
22479
22480 The filters accept the following options:
22481
22482 @table @option
22483 @item mode
22484 Select the permissions mode.
22485
22486 It accepts the following values:
22487 @table @samp
22488 @item none
22489 Do nothing. This is the default.
22490 @item ro
22491 Set all the output frames read-only.
22492 @item rw
22493 Set all the output frames directly writable.
22494 @item toggle
22495 Make the frame read-only if writable, and writable if read-only.
22496 @item random
22497 Set each output frame read-only or writable randomly.
22498 @end table
22499
22500 @item seed
22501 Set the seed for the @var{random} mode, must be an integer included between
22502 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
22503 @code{-1}, the filter will try to use a good random seed on a best effort
22504 basis.
22505 @end table
22506
22507 Note: in case of auto-inserted filter between the permission filter and the
22508 following one, the permission might not be received as expected in that
22509 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
22510 perms/aperms filter can avoid this problem.
22511
22512 @section realtime, arealtime
22513
22514 Slow down filtering to match real time approximately.
22515
22516 These filters will pause the filtering for a variable amount of time to
22517 match the output rate with the input timestamps.
22518 They are similar to the @option{re} option to @code{ffmpeg}.
22519
22520 They accept the following options:
22521
22522 @table @option
22523 @item limit
22524 Time limit for the pauses. Any pause longer than that will be considered
22525 a timestamp discontinuity and reset the timer. Default is 2 seconds.
22526 @item speed
22527 Speed factor for processing. The value must be a float larger than zero.
22528 Values larger than 1.0 will result in faster than realtime processing,
22529 smaller will slow processing down. The @var{limit} is automatically adapted
22530 accordingly. Default is 1.0.
22531
22532 A processing speed faster than what is possible without these filters cannot
22533 be achieved.
22534 @end table
22535
22536 @anchor{select}
22537 @section select, aselect
22538
22539 Select frames to pass in output.
22540
22541 This filter accepts the following options:
22542
22543 @table @option
22544
22545 @item expr, e
22546 Set expression, which is evaluated for each input frame.
22547
22548 If the expression is evaluated to zero, the frame is discarded.
22549
22550 If the evaluation result is negative or NaN, the frame is sent to the
22551 first output; otherwise it is sent to the output with index
22552 @code{ceil(val)-1}, assuming that the input index starts from 0.
22553
22554 For example a value of @code{1.2} corresponds to the output with index
22555 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
22556
22557 @item outputs, n
22558 Set the number of outputs. The output to which to send the selected
22559 frame is based on the result of the evaluation. Default value is 1.
22560 @end table
22561
22562 The expression can contain the following constants:
22563
22564 @table @option
22565 @item n
22566 The (sequential) number of the filtered frame, starting from 0.
22567
22568 @item selected_n
22569 The (sequential) number of the selected frame, starting from 0.
22570
22571 @item prev_selected_n
22572 The sequential number of the last selected frame. It's NAN if undefined.
22573
22574 @item TB
22575 The timebase of the input timestamps.
22576
22577 @item pts
22578 The PTS (Presentation TimeStamp) of the filtered video frame,
22579 expressed in @var{TB} units. It's NAN if undefined.
22580
22581 @item t
22582 The PTS of the filtered video frame,
22583 expressed in seconds. It's NAN if undefined.
22584
22585 @item prev_pts
22586 The PTS of the previously filtered video frame. It's NAN if undefined.
22587
22588 @item prev_selected_pts
22589 The PTS of the last previously filtered video frame. It's NAN if undefined.
22590
22591 @item prev_selected_t
22592 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
22593
22594 @item start_pts
22595 The PTS of the first video frame in the video. It's NAN if undefined.
22596
22597 @item start_t
22598 The time of the first video frame in the video. It's NAN if undefined.
22599
22600 @item pict_type @emph{(video only)}
22601 The type of the filtered frame. It can assume one of the following
22602 values:
22603 @table @option
22604 @item I
22605 @item P
22606 @item B
22607 @item S
22608 @item SI
22609 @item SP
22610 @item BI
22611 @end table
22612
22613 @item interlace_type @emph{(video only)}
22614 The frame interlace type. It can assume one of the following values:
22615 @table @option
22616 @item PROGRESSIVE
22617 The frame is progressive (not interlaced).
22618 @item TOPFIRST
22619 The frame is top-field-first.
22620 @item BOTTOMFIRST
22621 The frame is bottom-field-first.
22622 @end table
22623
22624 @item consumed_sample_n @emph{(audio only)}
22625 the number of selected samples before the current frame
22626
22627 @item samples_n @emph{(audio only)}
22628 the number of samples in the current frame
22629
22630 @item sample_rate @emph{(audio only)}
22631 the input sample rate
22632
22633 @item key
22634 This is 1 if the filtered frame is a key-frame, 0 otherwise.
22635
22636 @item pos
22637 the position in the file of the filtered frame, -1 if the information
22638 is not available (e.g. for synthetic video)
22639
22640 @item scene @emph{(video only)}
22641 value between 0 and 1 to indicate a new scene; a low value reflects a low
22642 probability for the current frame to introduce a new scene, while a higher
22643 value means the current frame is more likely to be one (see the example below)
22644
22645 @item concatdec_select
22646 The concat demuxer can select only part of a concat input file by setting an
22647 inpoint and an outpoint, but the output packets may not be entirely contained
22648 in the selected interval. By using this variable, it is possible to skip frames
22649 generated by the concat demuxer which are not exactly contained in the selected
22650 interval.
22651
22652 This works by comparing the frame pts against the @var{lavf.concat.start_time}
22653 and the @var{lavf.concat.duration} packet metadata values which are also
22654 present in the decoded frames.
22655
22656 The @var{concatdec_select} variable is -1 if the frame pts is at least
22657 start_time and either the duration metadata is missing or the frame pts is less
22658 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
22659 missing.
22660
22661 That basically means that an input frame is selected if its pts is within the
22662 interval set by the concat demuxer.
22663
22664 @end table
22665
22666 The default value of the select expression is "1".
22667
22668 @subsection Examples
22669
22670 @itemize
22671 @item
22672 Select all frames in input:
22673 @example
22674 select
22675 @end example
22676
22677 The example above is the same as:
22678 @example
22679 select=1
22680 @end example
22681
22682 @item
22683 Skip all frames:
22684 @example
22685 select=0
22686 @end example
22687
22688 @item
22689 Select only I-frames:
22690 @example
22691 select='eq(pict_type\,I)'
22692 @end example
22693
22694 @item
22695 Select one frame every 100:
22696 @example
22697 select='not(mod(n\,100))'
22698 @end example
22699
22700 @item
22701 Select only frames contained in the 10-20 time interval:
22702 @example
22703 select=between(t\,10\,20)
22704 @end example
22705
22706 @item
22707 Select only I-frames contained in the 10-20 time interval:
22708 @example
22709 select=between(t\,10\,20)*eq(pict_type\,I)
22710 @end example
22711
22712 @item
22713 Select frames with a minimum distance of 10 seconds:
22714 @example
22715 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
22716 @end example
22717
22718 @item
22719 Use aselect to select only audio frames with samples number > 100:
22720 @example
22721 aselect='gt(samples_n\,100)'
22722 @end example
22723
22724 @item
22725 Create a mosaic of the first scenes:
22726 @example
22727 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
22728 @end example
22729
22730 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
22731 choice.
22732
22733 @item
22734 Send even and odd frames to separate outputs, and compose them:
22735 @example
22736 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
22737 @end example
22738
22739 @item
22740 Select useful frames from an ffconcat file which is using inpoints and
22741 outpoints but where the source files are not intra frame only.
22742 @example
22743 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
22744 @end example
22745 @end itemize
22746
22747 @section sendcmd, asendcmd
22748
22749 Send commands to filters in the filtergraph.
22750
22751 These filters read commands to be sent to other filters in the
22752 filtergraph.
22753
22754 @code{sendcmd} must be inserted between two video filters,
22755 @code{asendcmd} must be inserted between two audio filters, but apart
22756 from that they act the same way.
22757
22758 The specification of commands can be provided in the filter arguments
22759 with the @var{commands} option, or in a file specified by the
22760 @var{filename} option.
22761
22762 These filters accept the following options:
22763 @table @option
22764 @item commands, c
22765 Set the commands to be read and sent to the other filters.
22766 @item filename, f
22767 Set the filename of the commands to be read and sent to the other
22768 filters.
22769 @end table
22770
22771 @subsection Commands syntax
22772
22773 A commands description consists of a sequence of interval
22774 specifications, comprising a list of commands to be executed when a
22775 particular event related to that interval occurs. The occurring event
22776 is typically the current frame time entering or leaving a given time
22777 interval.
22778
22779 An interval is specified by the following syntax:
22780 @example
22781 @var{START}[-@var{END}] @var{COMMANDS};
22782 @end example
22783
22784 The time interval is specified by the @var{START} and @var{END} times.
22785 @var{END} is optional and defaults to the maximum time.
22786
22787 The current frame time is considered within the specified interval if
22788 it is included in the interval [@var{START}, @var{END}), that is when
22789 the time is greater or equal to @var{START} and is lesser than
22790 @var{END}.
22791
22792 @var{COMMANDS} consists of a sequence of one or more command
22793 specifications, separated by ",", relating to that interval.  The
22794 syntax of a command specification is given by:
22795 @example
22796 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
22797 @end example
22798
22799 @var{FLAGS} is optional and specifies the type of events relating to
22800 the time interval which enable sending the specified command, and must
22801 be a non-null sequence of identifier flags separated by "+" or "|" and
22802 enclosed between "[" and "]".
22803
22804 The following flags are recognized:
22805 @table @option
22806 @item enter
22807 The command is sent when the current frame timestamp enters the
22808 specified interval. In other words, the command is sent when the
22809 previous frame timestamp was not in the given interval, and the
22810 current is.
22811
22812 @item leave
22813 The command is sent when the current frame timestamp leaves the
22814 specified interval. In other words, the command is sent when the
22815 previous frame timestamp was in the given interval, and the
22816 current is not.
22817 @end table
22818
22819 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
22820 assumed.
22821
22822 @var{TARGET} specifies the target of the command, usually the name of
22823 the filter class or a specific filter instance name.
22824
22825 @var{COMMAND} specifies the name of the command for the target filter.
22826
22827 @var{ARG} is optional and specifies the optional list of argument for
22828 the given @var{COMMAND}.
22829
22830 Between one interval specification and another, whitespaces, or
22831 sequences of characters starting with @code{#} until the end of line,
22832 are ignored and can be used to annotate comments.
22833
22834 A simplified BNF description of the commands specification syntax
22835 follows:
22836 @example
22837 @var{COMMAND_FLAG}  ::= "enter" | "leave"
22838 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
22839 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
22840 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
22841 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
22842 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
22843 @end example
22844
22845 @subsection Examples
22846
22847 @itemize
22848 @item
22849 Specify audio tempo change at second 4:
22850 @example
22851 asendcmd=c='4.0 atempo tempo 1.5',atempo
22852 @end example
22853
22854 @item
22855 Target a specific filter instance:
22856 @example
22857 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
22858 @end example
22859
22860 @item
22861 Specify a list of drawtext and hue commands in a file.
22862 @example
22863 # show text in the interval 5-10
22864 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
22865          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
22866
22867 # desaturate the image in the interval 15-20
22868 15.0-20.0 [enter] hue s 0,
22869           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
22870           [leave] hue s 1,
22871           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
22872
22873 # apply an exponential saturation fade-out effect, starting from time 25
22874 25 [enter] hue s exp(25-t)
22875 @end example
22876
22877 A filtergraph allowing to read and process the above command list
22878 stored in a file @file{test.cmd}, can be specified with:
22879 @example
22880 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
22881 @end example
22882 @end itemize
22883
22884 @anchor{setpts}
22885 @section setpts, asetpts
22886
22887 Change the PTS (presentation timestamp) of the input frames.
22888
22889 @code{setpts} works on video frames, @code{asetpts} on audio frames.
22890
22891 This filter accepts the following options:
22892
22893 @table @option
22894
22895 @item expr
22896 The expression which is evaluated for each frame to construct its timestamp.
22897
22898 @end table
22899
22900 The expression is evaluated through the eval API and can contain the following
22901 constants:
22902
22903 @table @option
22904 @item FRAME_RATE, FR
22905 frame rate, only defined for constant frame-rate video
22906
22907 @item PTS
22908 The presentation timestamp in input
22909
22910 @item N
22911 The count of the input frame for video or the number of consumed samples,
22912 not including the current frame for audio, starting from 0.
22913
22914 @item NB_CONSUMED_SAMPLES
22915 The number of consumed samples, not including the current frame (only
22916 audio)
22917
22918 @item NB_SAMPLES, S
22919 The number of samples in the current frame (only audio)
22920
22921 @item SAMPLE_RATE, SR
22922 The audio sample rate.
22923
22924 @item STARTPTS
22925 The PTS of the first frame.
22926
22927 @item STARTT
22928 the time in seconds of the first frame
22929
22930 @item INTERLACED
22931 State whether the current frame is interlaced.
22932
22933 @item T
22934 the time in seconds of the current frame
22935
22936 @item POS
22937 original position in the file of the frame, or undefined if undefined
22938 for the current frame
22939
22940 @item PREV_INPTS
22941 The previous input PTS.
22942
22943 @item PREV_INT
22944 previous input time in seconds
22945
22946 @item PREV_OUTPTS
22947 The previous output PTS.
22948
22949 @item PREV_OUTT
22950 previous output time in seconds
22951
22952 @item RTCTIME
22953 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
22954 instead.
22955
22956 @item RTCSTART
22957 The wallclock (RTC) time at the start of the movie in microseconds.
22958
22959 @item TB
22960 The timebase of the input timestamps.
22961
22962 @end table
22963
22964 @subsection Examples
22965
22966 @itemize
22967 @item
22968 Start counting PTS from zero
22969 @example
22970 setpts=PTS-STARTPTS
22971 @end example
22972
22973 @item
22974 Apply fast motion effect:
22975 @example
22976 setpts=0.5*PTS
22977 @end example
22978
22979 @item
22980 Apply slow motion effect:
22981 @example
22982 setpts=2.0*PTS
22983 @end example
22984
22985 @item
22986 Set fixed rate of 25 frames per second:
22987 @example
22988 setpts=N/(25*TB)
22989 @end example
22990
22991 @item
22992 Set fixed rate 25 fps with some jitter:
22993 @example
22994 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
22995 @end example
22996
22997 @item
22998 Apply an offset of 10 seconds to the input PTS:
22999 @example
23000 setpts=PTS+10/TB
23001 @end example
23002
23003 @item
23004 Generate timestamps from a "live source" and rebase onto the current timebase:
23005 @example
23006 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
23007 @end example
23008
23009 @item
23010 Generate timestamps by counting samples:
23011 @example
23012 asetpts=N/SR/TB
23013 @end example
23014
23015 @end itemize
23016
23017 @section setrange
23018
23019 Force color range for the output video frame.
23020
23021 The @code{setrange} filter marks the color range property for the
23022 output frames. It does not change the input frame, but only sets the
23023 corresponding property, which affects how the frame is treated by
23024 following filters.
23025
23026 The filter accepts the following options:
23027
23028 @table @option
23029
23030 @item range
23031 Available values are:
23032
23033 @table @samp
23034 @item auto
23035 Keep the same color range property.
23036
23037 @item unspecified, unknown
23038 Set the color range as unspecified.
23039
23040 @item limited, tv, mpeg
23041 Set the color range as limited.
23042
23043 @item full, pc, jpeg
23044 Set the color range as full.
23045 @end table
23046 @end table
23047
23048 @section settb, asettb
23049
23050 Set the timebase to use for the output frames timestamps.
23051 It is mainly useful for testing timebase configuration.
23052
23053 It accepts the following parameters:
23054
23055 @table @option
23056
23057 @item expr, tb
23058 The expression which is evaluated into the output timebase.
23059
23060 @end table
23061
23062 The value for @option{tb} is an arithmetic expression representing a
23063 rational. The expression can contain the constants "AVTB" (the default
23064 timebase), "intb" (the input timebase) and "sr" (the sample rate,
23065 audio only). Default value is "intb".
23066
23067 @subsection Examples
23068
23069 @itemize
23070 @item
23071 Set the timebase to 1/25:
23072 @example
23073 settb=expr=1/25
23074 @end example
23075
23076 @item
23077 Set the timebase to 1/10:
23078 @example
23079 settb=expr=0.1
23080 @end example
23081
23082 @item
23083 Set the timebase to 1001/1000:
23084 @example
23085 settb=1+0.001
23086 @end example
23087
23088 @item
23089 Set the timebase to 2*intb:
23090 @example
23091 settb=2*intb
23092 @end example
23093
23094 @item
23095 Set the default timebase value:
23096 @example
23097 settb=AVTB
23098 @end example
23099 @end itemize
23100
23101 @section showcqt
23102 Convert input audio to a video output representing frequency spectrum
23103 logarithmically using Brown-Puckette constant Q transform algorithm with
23104 direct frequency domain coefficient calculation (but the transform itself
23105 is not really constant Q, instead the Q factor is actually variable/clamped),
23106 with musical tone scale, from E0 to D#10.
23107
23108 The filter accepts the following options:
23109
23110 @table @option
23111 @item size, s
23112 Specify the video size for the output. It must be even. For the syntax of this option,
23113 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23114 Default value is @code{1920x1080}.
23115
23116 @item fps, rate, r
23117 Set the output frame rate. Default value is @code{25}.
23118
23119 @item bar_h
23120 Set the bargraph height. It must be even. Default value is @code{-1} which
23121 computes the bargraph height automatically.
23122
23123 @item axis_h
23124 Set the axis height. It must be even. Default value is @code{-1} which computes
23125 the axis height automatically.
23126
23127 @item sono_h
23128 Set the sonogram height. It must be even. Default value is @code{-1} which
23129 computes the sonogram height automatically.
23130
23131 @item fullhd
23132 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
23133 instead. Default value is @code{1}.
23134
23135 @item sono_v, volume
23136 Specify the sonogram volume expression. It can contain variables:
23137 @table @option
23138 @item bar_v
23139 the @var{bar_v} evaluated expression
23140 @item frequency, freq, f
23141 the frequency where it is evaluated
23142 @item timeclamp, tc
23143 the value of @var{timeclamp} option
23144 @end table
23145 and functions:
23146 @table @option
23147 @item a_weighting(f)
23148 A-weighting of equal loudness
23149 @item b_weighting(f)
23150 B-weighting of equal loudness
23151 @item c_weighting(f)
23152 C-weighting of equal loudness.
23153 @end table
23154 Default value is @code{16}.
23155
23156 @item bar_v, volume2
23157 Specify the bargraph volume expression. It can contain variables:
23158 @table @option
23159 @item sono_v
23160 the @var{sono_v} evaluated expression
23161 @item frequency, freq, f
23162 the frequency where it is evaluated
23163 @item timeclamp, tc
23164 the value of @var{timeclamp} option
23165 @end table
23166 and functions:
23167 @table @option
23168 @item a_weighting(f)
23169 A-weighting of equal loudness
23170 @item b_weighting(f)
23171 B-weighting of equal loudness
23172 @item c_weighting(f)
23173 C-weighting of equal loudness.
23174 @end table
23175 Default value is @code{sono_v}.
23176
23177 @item sono_g, gamma
23178 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
23179 higher gamma makes the spectrum having more range. Default value is @code{3}.
23180 Acceptable range is @code{[1, 7]}.
23181
23182 @item bar_g, gamma2
23183 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
23184 @code{[1, 7]}.
23185
23186 @item bar_t
23187 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
23188 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
23189
23190 @item timeclamp, tc
23191 Specify the transform timeclamp. At low frequency, there is trade-off between
23192 accuracy in time domain and frequency domain. If timeclamp is lower,
23193 event in time domain is represented more accurately (such as fast bass drum),
23194 otherwise event in frequency domain is represented more accurately
23195 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
23196
23197 @item attack
23198 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
23199 limits future samples by applying asymmetric windowing in time domain, useful
23200 when low latency is required. Accepted range is @code{[0, 1]}.
23201
23202 @item basefreq
23203 Specify the transform base frequency. Default value is @code{20.01523126408007475},
23204 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
23205
23206 @item endfreq
23207 Specify the transform end frequency. Default value is @code{20495.59681441799654},
23208 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
23209
23210 @item coeffclamp
23211 This option is deprecated and ignored.
23212
23213 @item tlength
23214 Specify the transform length in time domain. Use this option to control accuracy
23215 trade-off between time domain and frequency domain at every frequency sample.
23216 It can contain variables:
23217 @table @option
23218 @item frequency, freq, f
23219 the frequency where it is evaluated
23220 @item timeclamp, tc
23221 the value of @var{timeclamp} option.
23222 @end table
23223 Default value is @code{384*tc/(384+tc*f)}.
23224
23225 @item count
23226 Specify the transform count for every video frame. Default value is @code{6}.
23227 Acceptable range is @code{[1, 30]}.
23228
23229 @item fcount
23230 Specify the transform count for every single pixel. Default value is @code{0},
23231 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
23232
23233 @item fontfile
23234 Specify font file for use with freetype to draw the axis. If not specified,
23235 use embedded font. Note that drawing with font file or embedded font is not
23236 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
23237 option instead.
23238
23239 @item font
23240 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
23241 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
23242 escaping.
23243
23244 @item fontcolor
23245 Specify font color expression. This is arithmetic expression that should return
23246 integer value 0xRRGGBB. It can contain variables:
23247 @table @option
23248 @item frequency, freq, f
23249 the frequency where it is evaluated
23250 @item timeclamp, tc
23251 the value of @var{timeclamp} option
23252 @end table
23253 and functions:
23254 @table @option
23255 @item midi(f)
23256 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
23257 @item r(x), g(x), b(x)
23258 red, green, and blue value of intensity x.
23259 @end table
23260 Default value is @code{st(0, (midi(f)-59.5)/12);
23261 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
23262 r(1-ld(1)) + b(ld(1))}.
23263
23264 @item axisfile
23265 Specify image file to draw the axis. This option override @var{fontfile} and
23266 @var{fontcolor} option.
23267
23268 @item axis, text
23269 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
23270 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
23271 Default value is @code{1}.
23272
23273 @item csp
23274 Set colorspace. The accepted values are:
23275 @table @samp
23276 @item unspecified
23277 Unspecified (default)
23278
23279 @item bt709
23280 BT.709
23281
23282 @item fcc
23283 FCC
23284
23285 @item bt470bg
23286 BT.470BG or BT.601-6 625
23287
23288 @item smpte170m
23289 SMPTE-170M or BT.601-6 525
23290
23291 @item smpte240m
23292 SMPTE-240M
23293
23294 @item bt2020ncl
23295 BT.2020 with non-constant luminance
23296
23297 @end table
23298
23299 @item cscheme
23300 Set spectrogram color scheme. This is list of floating point values with format
23301 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
23302 The default is @code{1|0.5|0|0|0.5|1}.
23303
23304 @end table
23305
23306 @subsection Examples
23307
23308 @itemize
23309 @item
23310 Playing audio while showing the spectrum:
23311 @example
23312 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
23313 @end example
23314
23315 @item
23316 Same as above, but with frame rate 30 fps:
23317 @example
23318 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
23319 @end example
23320
23321 @item
23322 Playing at 1280x720:
23323 @example
23324 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
23325 @end example
23326
23327 @item
23328 Disable sonogram display:
23329 @example
23330 sono_h=0
23331 @end example
23332
23333 @item
23334 A1 and its harmonics: A1, A2, (near)E3, A3:
23335 @example
23336 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),
23337                  asplit[a][out1]; [a] showcqt [out0]'
23338 @end example
23339
23340 @item
23341 Same as above, but with more accuracy in frequency domain:
23342 @example
23343 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),
23344                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
23345 @end example
23346
23347 @item
23348 Custom volume:
23349 @example
23350 bar_v=10:sono_v=bar_v*a_weighting(f)
23351 @end example
23352
23353 @item
23354 Custom gamma, now spectrum is linear to the amplitude.
23355 @example
23356 bar_g=2:sono_g=2
23357 @end example
23358
23359 @item
23360 Custom tlength equation:
23361 @example
23362 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)))'
23363 @end example
23364
23365 @item
23366 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
23367 @example
23368 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
23369 @end example
23370
23371 @item
23372 Custom font using fontconfig:
23373 @example
23374 font='Courier New,Monospace,mono|bold'
23375 @end example
23376
23377 @item
23378 Custom frequency range with custom axis using image file:
23379 @example
23380 axisfile=myaxis.png:basefreq=40:endfreq=10000
23381 @end example
23382 @end itemize
23383
23384 @section showfreqs
23385
23386 Convert input audio to video output representing the audio power spectrum.
23387 Audio amplitude is on Y-axis while frequency is on X-axis.
23388
23389 The filter accepts the following options:
23390
23391 @table @option
23392 @item size, s
23393 Specify size of video. For the syntax of this option, check the
23394 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23395 Default is @code{1024x512}.
23396
23397 @item mode
23398 Set display mode.
23399 This set how each frequency bin will be represented.
23400
23401 It accepts the following values:
23402 @table @samp
23403 @item line
23404 @item bar
23405 @item dot
23406 @end table
23407 Default is @code{bar}.
23408
23409 @item ascale
23410 Set amplitude scale.
23411
23412 It accepts the following values:
23413 @table @samp
23414 @item lin
23415 Linear scale.
23416
23417 @item sqrt
23418 Square root scale.
23419
23420 @item cbrt
23421 Cubic root scale.
23422
23423 @item log
23424 Logarithmic scale.
23425 @end table
23426 Default is @code{log}.
23427
23428 @item fscale
23429 Set frequency scale.
23430
23431 It accepts the following values:
23432 @table @samp
23433 @item lin
23434 Linear scale.
23435
23436 @item log
23437 Logarithmic scale.
23438
23439 @item rlog
23440 Reverse logarithmic scale.
23441 @end table
23442 Default is @code{lin}.
23443
23444 @item win_size
23445 Set window size. Allowed range is from 16 to 65536.
23446
23447 Default is @code{2048}
23448
23449 @item win_func
23450 Set windowing function.
23451
23452 It accepts the following values:
23453 @table @samp
23454 @item rect
23455 @item bartlett
23456 @item hanning
23457 @item hamming
23458 @item blackman
23459 @item welch
23460 @item flattop
23461 @item bharris
23462 @item bnuttall
23463 @item bhann
23464 @item sine
23465 @item nuttall
23466 @item lanczos
23467 @item gauss
23468 @item tukey
23469 @item dolph
23470 @item cauchy
23471 @item parzen
23472 @item poisson
23473 @item bohman
23474 @end table
23475 Default is @code{hanning}.
23476
23477 @item overlap
23478 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
23479 which means optimal overlap for selected window function will be picked.
23480
23481 @item averaging
23482 Set time averaging. Setting this to 0 will display current maximal peaks.
23483 Default is @code{1}, which means time averaging is disabled.
23484
23485 @item colors
23486 Specify list of colors separated by space or by '|' which will be used to
23487 draw channel frequencies. Unrecognized or missing colors will be replaced
23488 by white color.
23489
23490 @item cmode
23491 Set channel display mode.
23492
23493 It accepts the following values:
23494 @table @samp
23495 @item combined
23496 @item separate
23497 @end table
23498 Default is @code{combined}.
23499
23500 @item minamp
23501 Set minimum amplitude used in @code{log} amplitude scaler.
23502
23503 @end table
23504
23505 @section showspatial
23506
23507 Convert stereo input audio to a video output, representing the spatial relationship
23508 between two channels.
23509
23510 The filter accepts the following options:
23511
23512 @table @option
23513 @item size, s
23514 Specify the video size for the output. For the syntax of this option, check the
23515 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23516 Default value is @code{512x512}.
23517
23518 @item win_size
23519 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
23520
23521 @item win_func
23522 Set window function.
23523
23524 It accepts the following values:
23525 @table @samp
23526 @item rect
23527 @item bartlett
23528 @item hann
23529 @item hanning
23530 @item hamming
23531 @item blackman
23532 @item welch
23533 @item flattop
23534 @item bharris
23535 @item bnuttall
23536 @item bhann
23537 @item sine
23538 @item nuttall
23539 @item lanczos
23540 @item gauss
23541 @item tukey
23542 @item dolph
23543 @item cauchy
23544 @item parzen
23545 @item poisson
23546 @item bohman
23547 @end table
23548
23549 Default value is @code{hann}.
23550
23551 @item overlap
23552 Set ratio of overlap window. Default value is @code{0.5}.
23553 When value is @code{1} overlap is set to recommended size for specific
23554 window function currently used.
23555 @end table
23556
23557 @anchor{showspectrum}
23558 @section showspectrum
23559
23560 Convert input audio to a video output, representing the audio frequency
23561 spectrum.
23562
23563 The filter accepts the following options:
23564
23565 @table @option
23566 @item size, s
23567 Specify the video size for the output. For the syntax of this option, check the
23568 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23569 Default value is @code{640x512}.
23570
23571 @item slide
23572 Specify how the spectrum should slide along the window.
23573
23574 It accepts the following values:
23575 @table @samp
23576 @item replace
23577 the samples start again on the left when they reach the right
23578 @item scroll
23579 the samples scroll from right to left
23580 @item fullframe
23581 frames are only produced when the samples reach the right
23582 @item rscroll
23583 the samples scroll from left to right
23584 @end table
23585
23586 Default value is @code{replace}.
23587
23588 @item mode
23589 Specify display mode.
23590
23591 It accepts the following values:
23592 @table @samp
23593 @item combined
23594 all channels are displayed in the same row
23595 @item separate
23596 all channels are displayed in separate rows
23597 @end table
23598
23599 Default value is @samp{combined}.
23600
23601 @item color
23602 Specify display color mode.
23603
23604 It accepts the following values:
23605 @table @samp
23606 @item channel
23607 each channel is displayed in a separate color
23608 @item intensity
23609 each channel is displayed using the same color scheme
23610 @item rainbow
23611 each channel is displayed using the rainbow color scheme
23612 @item moreland
23613 each channel is displayed using the moreland color scheme
23614 @item nebulae
23615 each channel is displayed using the nebulae color scheme
23616 @item fire
23617 each channel is displayed using the fire color scheme
23618 @item fiery
23619 each channel is displayed using the fiery color scheme
23620 @item fruit
23621 each channel is displayed using the fruit color scheme
23622 @item cool
23623 each channel is displayed using the cool color scheme
23624 @item magma
23625 each channel is displayed using the magma color scheme
23626 @item green
23627 each channel is displayed using the green color scheme
23628 @item viridis
23629 each channel is displayed using the viridis color scheme
23630 @item plasma
23631 each channel is displayed using the plasma color scheme
23632 @item cividis
23633 each channel is displayed using the cividis color scheme
23634 @item terrain
23635 each channel is displayed using the terrain color scheme
23636 @end table
23637
23638 Default value is @samp{channel}.
23639
23640 @item scale
23641 Specify scale used for calculating intensity color values.
23642
23643 It accepts the following values:
23644 @table @samp
23645 @item lin
23646 linear
23647 @item sqrt
23648 square root, default
23649 @item cbrt
23650 cubic root
23651 @item log
23652 logarithmic
23653 @item 4thrt
23654 4th root
23655 @item 5thrt
23656 5th root
23657 @end table
23658
23659 Default value is @samp{sqrt}.
23660
23661 @item fscale
23662 Specify frequency scale.
23663
23664 It accepts the following values:
23665 @table @samp
23666 @item lin
23667 linear
23668 @item log
23669 logarithmic
23670 @end table
23671
23672 Default value is @samp{lin}.
23673
23674 @item saturation
23675 Set saturation modifier for displayed colors. Negative values provide
23676 alternative color scheme. @code{0} is no saturation at all.
23677 Saturation must be in [-10.0, 10.0] range.
23678 Default value is @code{1}.
23679
23680 @item win_func
23681 Set window function.
23682
23683 It accepts the following values:
23684 @table @samp
23685 @item rect
23686 @item bartlett
23687 @item hann
23688 @item hanning
23689 @item hamming
23690 @item blackman
23691 @item welch
23692 @item flattop
23693 @item bharris
23694 @item bnuttall
23695 @item bhann
23696 @item sine
23697 @item nuttall
23698 @item lanczos
23699 @item gauss
23700 @item tukey
23701 @item dolph
23702 @item cauchy
23703 @item parzen
23704 @item poisson
23705 @item bohman
23706 @end table
23707
23708 Default value is @code{hann}.
23709
23710 @item orientation
23711 Set orientation of time vs frequency axis. Can be @code{vertical} or
23712 @code{horizontal}. Default is @code{vertical}.
23713
23714 @item overlap
23715 Set ratio of overlap window. Default value is @code{0}.
23716 When value is @code{1} overlap is set to recommended size for specific
23717 window function currently used.
23718
23719 @item gain
23720 Set scale gain for calculating intensity color values.
23721 Default value is @code{1}.
23722
23723 @item data
23724 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
23725
23726 @item rotation
23727 Set color rotation, must be in [-1.0, 1.0] range.
23728 Default value is @code{0}.
23729
23730 @item start
23731 Set start frequency from which to display spectrogram. Default is @code{0}.
23732
23733 @item stop
23734 Set stop frequency to which to display spectrogram. Default is @code{0}.
23735
23736 @item fps
23737 Set upper frame rate limit. Default is @code{auto}, unlimited.
23738
23739 @item legend
23740 Draw time and frequency axes and legends. Default is disabled.
23741 @end table
23742
23743 The usage is very similar to the showwaves filter; see the examples in that
23744 section.
23745
23746 @subsection Examples
23747
23748 @itemize
23749 @item
23750 Large window with logarithmic color scaling:
23751 @example
23752 showspectrum=s=1280x480:scale=log
23753 @end example
23754
23755 @item
23756 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
23757 @example
23758 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
23759              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
23760 @end example
23761 @end itemize
23762
23763 @section showspectrumpic
23764
23765 Convert input audio to a single video frame, representing the audio frequency
23766 spectrum.
23767
23768 The filter accepts the following options:
23769
23770 @table @option
23771 @item size, s
23772 Specify the video size for the output. For the syntax of this option, check the
23773 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23774 Default value is @code{4096x2048}.
23775
23776 @item mode
23777 Specify display mode.
23778
23779 It accepts the following values:
23780 @table @samp
23781 @item combined
23782 all channels are displayed in the same row
23783 @item separate
23784 all channels are displayed in separate rows
23785 @end table
23786 Default value is @samp{combined}.
23787
23788 @item color
23789 Specify display color mode.
23790
23791 It accepts the following values:
23792 @table @samp
23793 @item channel
23794 each channel is displayed in a separate color
23795 @item intensity
23796 each channel is displayed using the same color scheme
23797 @item rainbow
23798 each channel is displayed using the rainbow color scheme
23799 @item moreland
23800 each channel is displayed using the moreland color scheme
23801 @item nebulae
23802 each channel is displayed using the nebulae color scheme
23803 @item fire
23804 each channel is displayed using the fire color scheme
23805 @item fiery
23806 each channel is displayed using the fiery color scheme
23807 @item fruit
23808 each channel is displayed using the fruit color scheme
23809 @item cool
23810 each channel is displayed using the cool color scheme
23811 @item magma
23812 each channel is displayed using the magma color scheme
23813 @item green
23814 each channel is displayed using the green color scheme
23815 @item viridis
23816 each channel is displayed using the viridis color scheme
23817 @item plasma
23818 each channel is displayed using the plasma color scheme
23819 @item cividis
23820 each channel is displayed using the cividis color scheme
23821 @item terrain
23822 each channel is displayed using the terrain color scheme
23823 @end table
23824 Default value is @samp{intensity}.
23825
23826 @item scale
23827 Specify scale used for calculating intensity color values.
23828
23829 It accepts the following values:
23830 @table @samp
23831 @item lin
23832 linear
23833 @item sqrt
23834 square root, default
23835 @item cbrt
23836 cubic root
23837 @item log
23838 logarithmic
23839 @item 4thrt
23840 4th root
23841 @item 5thrt
23842 5th root
23843 @end table
23844 Default value is @samp{log}.
23845
23846 @item fscale
23847 Specify frequency scale.
23848
23849 It accepts the following values:
23850 @table @samp
23851 @item lin
23852 linear
23853 @item log
23854 logarithmic
23855 @end table
23856
23857 Default value is @samp{lin}.
23858
23859 @item saturation
23860 Set saturation modifier for displayed colors. Negative values provide
23861 alternative color scheme. @code{0} is no saturation at all.
23862 Saturation must be in [-10.0, 10.0] range.
23863 Default value is @code{1}.
23864
23865 @item win_func
23866 Set window function.
23867
23868 It accepts the following values:
23869 @table @samp
23870 @item rect
23871 @item bartlett
23872 @item hann
23873 @item hanning
23874 @item hamming
23875 @item blackman
23876 @item welch
23877 @item flattop
23878 @item bharris
23879 @item bnuttall
23880 @item bhann
23881 @item sine
23882 @item nuttall
23883 @item lanczos
23884 @item gauss
23885 @item tukey
23886 @item dolph
23887 @item cauchy
23888 @item parzen
23889 @item poisson
23890 @item bohman
23891 @end table
23892 Default value is @code{hann}.
23893
23894 @item orientation
23895 Set orientation of time vs frequency axis. Can be @code{vertical} or
23896 @code{horizontal}. Default is @code{vertical}.
23897
23898 @item gain
23899 Set scale gain for calculating intensity color values.
23900 Default value is @code{1}.
23901
23902 @item legend
23903 Draw time and frequency axes and legends. Default is enabled.
23904
23905 @item rotation
23906 Set color rotation, must be in [-1.0, 1.0] range.
23907 Default value is @code{0}.
23908
23909 @item start
23910 Set start frequency from which to display spectrogram. Default is @code{0}.
23911
23912 @item stop
23913 Set stop frequency to which to display spectrogram. Default is @code{0}.
23914 @end table
23915
23916 @subsection Examples
23917
23918 @itemize
23919 @item
23920 Extract an audio spectrogram of a whole audio track
23921 in a 1024x1024 picture using @command{ffmpeg}:
23922 @example
23923 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
23924 @end example
23925 @end itemize
23926
23927 @section showvolume
23928
23929 Convert input audio volume to a video output.
23930
23931 The filter accepts the following options:
23932
23933 @table @option
23934 @item rate, r
23935 Set video rate.
23936
23937 @item b
23938 Set border width, allowed range is [0, 5]. Default is 1.
23939
23940 @item w
23941 Set channel width, allowed range is [80, 8192]. Default is 400.
23942
23943 @item h
23944 Set channel height, allowed range is [1, 900]. Default is 20.
23945
23946 @item f
23947 Set fade, allowed range is [0, 1]. Default is 0.95.
23948
23949 @item c
23950 Set volume color expression.
23951
23952 The expression can use the following variables:
23953
23954 @table @option
23955 @item VOLUME
23956 Current max volume of channel in dB.
23957
23958 @item PEAK
23959 Current peak.
23960
23961 @item CHANNEL
23962 Current channel number, starting from 0.
23963 @end table
23964
23965 @item t
23966 If set, displays channel names. Default is enabled.
23967
23968 @item v
23969 If set, displays volume values. Default is enabled.
23970
23971 @item o
23972 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
23973 default is @code{h}.
23974
23975 @item s
23976 Set step size, allowed range is [0, 5]. Default is 0, which means
23977 step is disabled.
23978
23979 @item p
23980 Set background opacity, allowed range is [0, 1]. Default is 0.
23981
23982 @item m
23983 Set metering mode, can be peak: @code{p} or rms: @code{r},
23984 default is @code{p}.
23985
23986 @item ds
23987 Set display scale, can be linear: @code{lin} or log: @code{log},
23988 default is @code{lin}.
23989
23990 @item dm
23991 In second.
23992 If set to > 0., display a line for the max level
23993 in the previous seconds.
23994 default is disabled: @code{0.}
23995
23996 @item dmc
23997 The color of the max line. Use when @code{dm} option is set to > 0.
23998 default is: @code{orange}
23999 @end table
24000
24001 @section showwaves
24002
24003 Convert input audio to a video output, representing the samples waves.
24004
24005 The filter accepts the following options:
24006
24007 @table @option
24008 @item size, s
24009 Specify the video size for the output. For the syntax of this option, check the
24010 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24011 Default value is @code{600x240}.
24012
24013 @item mode
24014 Set display mode.
24015
24016 Available values are:
24017 @table @samp
24018 @item point
24019 Draw a point for each sample.
24020
24021 @item line
24022 Draw a vertical line for each sample.
24023
24024 @item p2p
24025 Draw a point for each sample and a line between them.
24026
24027 @item cline
24028 Draw a centered vertical line for each sample.
24029 @end table
24030
24031 Default value is @code{point}.
24032
24033 @item n
24034 Set the number of samples which are printed on the same column. A
24035 larger value will decrease the frame rate. Must be a positive
24036 integer. This option can be set only if the value for @var{rate}
24037 is not explicitly specified.
24038
24039 @item rate, r
24040 Set the (approximate) output frame rate. This is done by setting the
24041 option @var{n}. Default value is "25".
24042
24043 @item split_channels
24044 Set if channels should be drawn separately or overlap. Default value is 0.
24045
24046 @item colors
24047 Set colors separated by '|' which are going to be used for drawing of each channel.
24048
24049 @item scale
24050 Set amplitude scale.
24051
24052 Available values are:
24053 @table @samp
24054 @item lin
24055 Linear.
24056
24057 @item log
24058 Logarithmic.
24059
24060 @item sqrt
24061 Square root.
24062
24063 @item cbrt
24064 Cubic root.
24065 @end table
24066
24067 Default is linear.
24068
24069 @item draw
24070 Set the draw mode. This is mostly useful to set for high @var{n}.
24071
24072 Available values are:
24073 @table @samp
24074 @item scale
24075 Scale pixel values for each drawn sample.
24076
24077 @item full
24078 Draw every sample directly.
24079 @end table
24080
24081 Default value is @code{scale}.
24082 @end table
24083
24084 @subsection Examples
24085
24086 @itemize
24087 @item
24088 Output the input file audio and the corresponding video representation
24089 at the same time:
24090 @example
24091 amovie=a.mp3,asplit[out0],showwaves[out1]
24092 @end example
24093
24094 @item
24095 Create a synthetic signal and show it with showwaves, forcing a
24096 frame rate of 30 frames per second:
24097 @example
24098 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
24099 @end example
24100 @end itemize
24101
24102 @section showwavespic
24103
24104 Convert input audio to a single video frame, representing the samples waves.
24105
24106 The filter accepts the following options:
24107
24108 @table @option
24109 @item size, s
24110 Specify the video size for the output. For the syntax of this option, check the
24111 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24112 Default value is @code{600x240}.
24113
24114 @item split_channels
24115 Set if channels should be drawn separately or overlap. Default value is 0.
24116
24117 @item colors
24118 Set colors separated by '|' which are going to be used for drawing of each channel.
24119
24120 @item scale
24121 Set amplitude scale.
24122
24123 Available values are:
24124 @table @samp
24125 @item lin
24126 Linear.
24127
24128 @item log
24129 Logarithmic.
24130
24131 @item sqrt
24132 Square root.
24133
24134 @item cbrt
24135 Cubic root.
24136 @end table
24137
24138 Default is linear.
24139
24140 @item draw
24141 Set the draw mode.
24142
24143 Available values are:
24144 @table @samp
24145 @item scale
24146 Scale pixel values for each drawn sample.
24147
24148 @item full
24149 Draw every sample directly.
24150 @end table
24151
24152 Default value is @code{scale}.
24153 @end table
24154
24155 @subsection Examples
24156
24157 @itemize
24158 @item
24159 Extract a channel split representation of the wave form of a whole audio track
24160 in a 1024x800 picture using @command{ffmpeg}:
24161 @example
24162 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
24163 @end example
24164 @end itemize
24165
24166 @section sidedata, asidedata
24167
24168 Delete frame side data, or select frames based on it.
24169
24170 This filter accepts the following options:
24171
24172 @table @option
24173 @item mode
24174 Set mode of operation of the filter.
24175
24176 Can be one of the following:
24177
24178 @table @samp
24179 @item select
24180 Select every frame with side data of @code{type}.
24181
24182 @item delete
24183 Delete side data of @code{type}. If @code{type} is not set, delete all side
24184 data in the frame.
24185
24186 @end table
24187
24188 @item type
24189 Set side data type used with all modes. Must be set for @code{select} mode. For
24190 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
24191 in @file{libavutil/frame.h}. For example, to choose
24192 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
24193
24194 @end table
24195
24196 @section spectrumsynth
24197
24198 Synthesize audio from 2 input video spectrums, first input stream represents
24199 magnitude across time and second represents phase across time.
24200 The filter will transform from frequency domain as displayed in videos back
24201 to time domain as presented in audio output.
24202
24203 This filter is primarily created for reversing processed @ref{showspectrum}
24204 filter outputs, but can synthesize sound from other spectrograms too.
24205 But in such case results are going to be poor if the phase data is not
24206 available, because in such cases phase data need to be recreated, usually
24207 it's just recreated from random noise.
24208 For best results use gray only output (@code{channel} color mode in
24209 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
24210 @code{lin} scale for phase video. To produce phase, for 2nd video, use
24211 @code{data} option. Inputs videos should generally use @code{fullframe}
24212 slide mode as that saves resources needed for decoding video.
24213
24214 The filter accepts the following options:
24215
24216 @table @option
24217 @item sample_rate
24218 Specify sample rate of output audio, the sample rate of audio from which
24219 spectrum was generated may differ.
24220
24221 @item channels
24222 Set number of channels represented in input video spectrums.
24223
24224 @item scale
24225 Set scale which was used when generating magnitude input spectrum.
24226 Can be @code{lin} or @code{log}. Default is @code{log}.
24227
24228 @item slide
24229 Set slide which was used when generating inputs spectrums.
24230 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
24231 Default is @code{fullframe}.
24232
24233 @item win_func
24234 Set window function used for resynthesis.
24235
24236 @item overlap
24237 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
24238 which means optimal overlap for selected window function will be picked.
24239
24240 @item orientation
24241 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
24242 Default is @code{vertical}.
24243 @end table
24244
24245 @subsection Examples
24246
24247 @itemize
24248 @item
24249 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
24250 then resynthesize videos back to audio with spectrumsynth:
24251 @example
24252 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
24253 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
24254 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
24255 @end example
24256 @end itemize
24257
24258 @section split, asplit
24259
24260 Split input into several identical outputs.
24261
24262 @code{asplit} works with audio input, @code{split} with video.
24263
24264 The filter accepts a single parameter which specifies the number of outputs. If
24265 unspecified, it defaults to 2.
24266
24267 @subsection Examples
24268
24269 @itemize
24270 @item
24271 Create two separate outputs from the same input:
24272 @example
24273 [in] split [out0][out1]
24274 @end example
24275
24276 @item
24277 To create 3 or more outputs, you need to specify the number of
24278 outputs, like in:
24279 @example
24280 [in] asplit=3 [out0][out1][out2]
24281 @end example
24282
24283 @item
24284 Create two separate outputs from the same input, one cropped and
24285 one padded:
24286 @example
24287 [in] split [splitout1][splitout2];
24288 [splitout1] crop=100:100:0:0    [cropout];
24289 [splitout2] pad=200:200:100:100 [padout];
24290 @end example
24291
24292 @item
24293 Create 5 copies of the input audio with @command{ffmpeg}:
24294 @example
24295 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
24296 @end example
24297 @end itemize
24298
24299 @section zmq, azmq
24300
24301 Receive commands sent through a libzmq client, and forward them to
24302 filters in the filtergraph.
24303
24304 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
24305 must be inserted between two video filters, @code{azmq} between two
24306 audio filters. Both are capable to send messages to any filter type.
24307
24308 To enable these filters you need to install the libzmq library and
24309 headers and configure FFmpeg with @code{--enable-libzmq}.
24310
24311 For more information about libzmq see:
24312 @url{http://www.zeromq.org/}
24313
24314 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
24315 receives messages sent through a network interface defined by the
24316 @option{bind_address} (or the abbreviation "@option{b}") option.
24317 Default value of this option is @file{tcp://localhost:5555}. You may
24318 want to alter this value to your needs, but do not forget to escape any
24319 ':' signs (see @ref{filtergraph escaping}).
24320
24321 The received message must be in the form:
24322 @example
24323 @var{TARGET} @var{COMMAND} [@var{ARG}]
24324 @end example
24325
24326 @var{TARGET} specifies the target of the command, usually the name of
24327 the filter class or a specific filter instance name. The default
24328 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
24329 but you can override this by using the @samp{filter_name@@id} syntax
24330 (see @ref{Filtergraph syntax}).
24331
24332 @var{COMMAND} specifies the name of the command for the target filter.
24333
24334 @var{ARG} is optional and specifies the optional argument list for the
24335 given @var{COMMAND}.
24336
24337 Upon reception, the message is processed and the corresponding command
24338 is injected into the filtergraph. Depending on the result, the filter
24339 will send a reply to the client, adopting the format:
24340 @example
24341 @var{ERROR_CODE} @var{ERROR_REASON}
24342 @var{MESSAGE}
24343 @end example
24344
24345 @var{MESSAGE} is optional.
24346
24347 @subsection Examples
24348
24349 Look at @file{tools/zmqsend} for an example of a zmq client which can
24350 be used to send commands processed by these filters.
24351
24352 Consider the following filtergraph generated by @command{ffplay}.
24353 In this example the last overlay filter has an instance name. All other
24354 filters will have default instance names.
24355
24356 @example
24357 ffplay -dumpgraph 1 -f lavfi "
24358 color=s=100x100:c=red  [l];
24359 color=s=100x100:c=blue [r];
24360 nullsrc=s=200x100, zmq [bg];
24361 [bg][l]   overlay     [bg+l];
24362 [bg+l][r] overlay@@my=x=100 "
24363 @end example
24364
24365 To change the color of the left side of the video, the following
24366 command can be used:
24367 @example
24368 echo Parsed_color_0 c yellow | tools/zmqsend
24369 @end example
24370
24371 To change the right side:
24372 @example
24373 echo Parsed_color_1 c pink | tools/zmqsend
24374 @end example
24375
24376 To change the position of the right side:
24377 @example
24378 echo overlay@@my x 150 | tools/zmqsend
24379 @end example
24380
24381
24382 @c man end MULTIMEDIA FILTERS
24383
24384 @chapter Multimedia Sources
24385 @c man begin MULTIMEDIA SOURCES
24386
24387 Below is a description of the currently available multimedia sources.
24388
24389 @section amovie
24390
24391 This is the same as @ref{movie} source, except it selects an audio
24392 stream by default.
24393
24394 @anchor{movie}
24395 @section movie
24396
24397 Read audio and/or video stream(s) from a movie container.
24398
24399 It accepts the following parameters:
24400
24401 @table @option
24402 @item filename
24403 The name of the resource to read (not necessarily a file; it can also be a
24404 device or a stream accessed through some protocol).
24405
24406 @item format_name, f
24407 Specifies the format assumed for the movie to read, and can be either
24408 the name of a container or an input device. If not specified, the
24409 format is guessed from @var{movie_name} or by probing.
24410
24411 @item seek_point, sp
24412 Specifies the seek point in seconds. The frames will be output
24413 starting from this seek point. The parameter is evaluated with
24414 @code{av_strtod}, so the numerical value may be suffixed by an IS
24415 postfix. The default value is "0".
24416
24417 @item streams, s
24418 Specifies the streams to read. Several streams can be specified,
24419 separated by "+". The source will then have as many outputs, in the
24420 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
24421 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
24422 respectively the default (best suited) video and audio stream. Default
24423 is "dv", or "da" if the filter is called as "amovie".
24424
24425 @item stream_index, si
24426 Specifies the index of the video stream to read. If the value is -1,
24427 the most suitable video stream will be automatically selected. The default
24428 value is "-1". Deprecated. If the filter is called "amovie", it will select
24429 audio instead of video.
24430
24431 @item loop
24432 Specifies how many times to read the stream in sequence.
24433 If the value is 0, the stream will be looped infinitely.
24434 Default value is "1".
24435
24436 Note that when the movie is looped the source timestamps are not
24437 changed, so it will generate non monotonically increasing timestamps.
24438
24439 @item discontinuity
24440 Specifies the time difference between frames above which the point is
24441 considered a timestamp discontinuity which is removed by adjusting the later
24442 timestamps.
24443 @end table
24444
24445 It allows overlaying a second video on top of the main input of
24446 a filtergraph, as shown in this graph:
24447 @example
24448 input -----------> deltapts0 --> overlay --> output
24449                                     ^
24450                                     |
24451 movie --> scale--> deltapts1 -------+
24452 @end example
24453 @subsection Examples
24454
24455 @itemize
24456 @item
24457 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
24458 on top of the input labelled "in":
24459 @example
24460 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
24461 [in] setpts=PTS-STARTPTS [main];
24462 [main][over] overlay=16:16 [out]
24463 @end example
24464
24465 @item
24466 Read from a video4linux2 device, and overlay it on top of the input
24467 labelled "in":
24468 @example
24469 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
24470 [in] setpts=PTS-STARTPTS [main];
24471 [main][over] overlay=16:16 [out]
24472 @end example
24473
24474 @item
24475 Read the first video stream and the audio stream with id 0x81 from
24476 dvd.vob; the video is connected to the pad named "video" and the audio is
24477 connected to the pad named "audio":
24478 @example
24479 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
24480 @end example
24481 @end itemize
24482
24483 @subsection Commands
24484
24485 Both movie and amovie support the following commands:
24486 @table @option
24487 @item seek
24488 Perform seek using "av_seek_frame".
24489 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
24490 @itemize
24491 @item
24492 @var{stream_index}: If stream_index is -1, a default
24493 stream is selected, and @var{timestamp} is automatically converted
24494 from AV_TIME_BASE units to the stream specific time_base.
24495 @item
24496 @var{timestamp}: Timestamp in AVStream.time_base units
24497 or, if no stream is specified, in AV_TIME_BASE units.
24498 @item
24499 @var{flags}: Flags which select direction and seeking mode.
24500 @end itemize
24501
24502 @item get_duration
24503 Get movie duration in AV_TIME_BASE units.
24504
24505 @end table
24506
24507 @c man end MULTIMEDIA SOURCES