]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/vf_dnn_processing.c: add frame size change support for planar yuv format
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{id}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program optionally followed by "@@@var{id}".
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{commands}
316 @chapter Changing options at runtime with a command
317
318 Some options can be changed during the operation of the filter using
319 a command. These options are marked 'T' on the output of
320 @command{ffmpeg} @option{-h filter=<name of filter>}.
321 The name of the command is the name of the option and the argument is
322 the new value.
323
324 @anchor{framesync}
325 @chapter Options for filters with several inputs (framesync)
326 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
327
328 Some filters with several inputs support a common set of options.
329 These options can only be set by name, not with the short notation.
330
331 @table @option
332 @item eof_action
333 The action to take when EOF is encountered on the secondary input; it accepts
334 one of the following values:
335
336 @table @option
337 @item repeat
338 Repeat the last frame (the default).
339 @item endall
340 End both streams.
341 @item pass
342 Pass the main input through.
343 @end table
344
345 @item shortest
346 If set to 1, force the output to terminate when the shortest input
347 terminates. Default value is 0.
348
349 @item repeatlast
350 If set to 1, force the filter to extend the last frame of secondary streams
351 until the end of the primary stream. A value of 0 disables this behavior.
352 Default value is 1.
353 @end table
354
355 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
356
357 @chapter Audio Filters
358 @c man begin AUDIO FILTERS
359
360 When you configure your FFmpeg build, you can disable any of the
361 existing filters using @code{--disable-filters}.
362 The configure output will show the audio filters included in your
363 build.
364
365 Below is a description of the currently available audio filters.
366
367 @section acompressor
368
369 A compressor is mainly used to reduce the dynamic range of a signal.
370 Especially modern music is mostly compressed at a high ratio to
371 improve the overall loudness. It's done to get the highest attention
372 of a listener, "fatten" the sound and bring more "power" to the track.
373 If a signal is compressed too much it may sound dull or "dead"
374 afterwards or it may start to "pump" (which could be a powerful effect
375 but can also destroy a track completely).
376 The right compression is the key to reach a professional sound and is
377 the high art of mixing and mastering. Because of its complex settings
378 it may take a long time to get the right feeling for this kind of effect.
379
380 Compression is done by detecting the volume above a chosen level
381 @code{threshold} and dividing it by the factor set with @code{ratio}.
382 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
383 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
384 the signal would cause distortion of the waveform the reduction can be
385 levelled over the time. This is done by setting "Attack" and "Release".
386 @code{attack} determines how long the signal has to rise above the threshold
387 before any reduction will occur and @code{release} sets the time the signal
388 has to fall below the threshold to reduce the reduction again. Shorter signals
389 than the chosen attack time will be left untouched.
390 The overall reduction of the signal can be made up afterwards with the
391 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
392 raising the makeup to this level results in a signal twice as loud than the
393 source. To gain a softer entry in the compression the @code{knee} flattens the
394 hard edge at the threshold in the range of the chosen decibels.
395
396 The filter accepts the following options:
397
398 @table @option
399 @item level_in
400 Set input gain. Default is 1. Range is between 0.015625 and 64.
401
402 @item mode
403 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
404 Default is @code{downward}.
405
406 @item threshold
407 If a signal of stream rises above this level it will affect the gain
408 reduction.
409 By default it is 0.125. Range is between 0.00097563 and 1.
410
411 @item ratio
412 Set a ratio by which the signal is reduced. 1:2 means that if the level
413 rose 4dB above the threshold, it will be only 2dB above after the reduction.
414 Default is 2. Range is between 1 and 20.
415
416 @item attack
417 Amount of milliseconds the signal has to rise above the threshold before gain
418 reduction starts. Default is 20. Range is between 0.01 and 2000.
419
420 @item release
421 Amount of milliseconds the signal has to fall below the threshold before
422 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
423
424 @item makeup
425 Set the amount by how much signal will be amplified after processing.
426 Default is 1. Range is from 1 to 64.
427
428 @item knee
429 Curve the sharp knee around the threshold to enter gain reduction more softly.
430 Default is 2.82843. Range is between 1 and 8.
431
432 @item link
433 Choose if the @code{average} level between all channels of input stream
434 or the louder(@code{maximum}) channel of input stream affects the
435 reduction. Default is @code{average}.
436
437 @item detection
438 Should the exact signal be taken in case of @code{peak} or an RMS one in case
439 of @code{rms}. Default is @code{rms} which is mostly smoother.
440
441 @item mix
442 How much to use compressed signal in output. Default is 1.
443 Range is between 0 and 1.
444 @end table
445
446 @subsection Commands
447
448 This filter supports the all above options as @ref{commands}.
449
450 @section acontrast
451 Simple audio dynamic range compression/expansion filter.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item contrast
457 Set contrast. Default is 33. Allowed range is between 0 and 100.
458 @end table
459
460 @section acopy
461
462 Copy the input audio source unchanged to the output. This is mainly useful for
463 testing purposes.
464
465 @section acrossfade
466
467 Apply cross fade from one input audio stream to another input audio stream.
468 The cross fade is applied for specified duration near the end of first stream.
469
470 The filter accepts the following options:
471
472 @table @option
473 @item nb_samples, ns
474 Specify the number of samples for which the cross fade effect has to last.
475 At the end of the cross fade effect the first input audio will be completely
476 silent. Default is 44100.
477
478 @item duration, d
479 Specify the duration of the cross fade effect. See
480 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
481 for the accepted syntax.
482 By default the duration is determined by @var{nb_samples}.
483 If set this option is used instead of @var{nb_samples}.
484
485 @item overlap, o
486 Should first stream end overlap with second stream start. Default is enabled.
487
488 @item curve1
489 Set curve for cross fade transition for first stream.
490
491 @item curve2
492 Set curve for cross fade transition for second stream.
493
494 For description of available curve types see @ref{afade} filter description.
495 @end table
496
497 @subsection Examples
498
499 @itemize
500 @item
501 Cross fade from one input to another:
502 @example
503 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
504 @end example
505
506 @item
507 Cross fade from one input to another but without overlapping:
508 @example
509 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
510 @end example
511 @end itemize
512
513 @section acrossover
514 Split audio stream into several bands.
515
516 This filter splits audio stream into two or more frequency ranges.
517 Summing all streams back will give flat output.
518
519 The filter accepts the following options:
520
521 @table @option
522 @item split
523 Set split frequencies. Those must be positive and increasing.
524
525 @item order
526 Set filter order, can be @var{2nd}, @var{4th} or @var{8th}.
527 Default is @var{4th}.
528 @end table
529
530 @section acrusher
531
532 Reduce audio bit resolution.
533
534 This filter is bit crusher with enhanced functionality. A bit crusher
535 is used to audibly reduce number of bits an audio signal is sampled
536 with. This doesn't change the bit depth at all, it just produces the
537 effect. Material reduced in bit depth sounds more harsh and "digital".
538 This filter is able to even round to continuous values instead of discrete
539 bit depths.
540 Additionally it has a D/C offset which results in different crushing of
541 the lower and the upper half of the signal.
542 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
543
544 Another feature of this filter is the logarithmic mode.
545 This setting switches from linear distances between bits to logarithmic ones.
546 The result is a much more "natural" sounding crusher which doesn't gate low
547 signals for example. The human ear has a logarithmic perception,
548 so this kind of crushing is much more pleasant.
549 Logarithmic crushing is also able to get anti-aliased.
550
551 The filter accepts the following options:
552
553 @table @option
554 @item level_in
555 Set level in.
556
557 @item level_out
558 Set level out.
559
560 @item bits
561 Set bit reduction.
562
563 @item mix
564 Set mixing amount.
565
566 @item mode
567 Can be linear: @code{lin} or logarithmic: @code{log}.
568
569 @item dc
570 Set DC.
571
572 @item aa
573 Set anti-aliasing.
574
575 @item samples
576 Set sample reduction.
577
578 @item lfo
579 Enable LFO. By default disabled.
580
581 @item lforange
582 Set LFO range.
583
584 @item lforate
585 Set LFO rate.
586 @end table
587
588 @section acue
589
590 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
591 filter.
592
593 @section adeclick
594 Remove impulsive noise from input audio.
595
596 Samples detected as impulsive noise are replaced by interpolated samples using
597 autoregressive modelling.
598
599 @table @option
600 @item w
601 Set window size, in milliseconds. Allowed range is from @code{10} to
602 @code{100}. Default value is @code{55} milliseconds.
603 This sets size of window which will be processed at once.
604
605 @item o
606 Set window overlap, in percentage of window size. Allowed range is from
607 @code{50} to @code{95}. Default value is @code{75} percent.
608 Setting this to a very high value increases impulsive noise removal but makes
609 whole process much slower.
610
611 @item a
612 Set autoregression order, in percentage of window size. Allowed range is from
613 @code{0} to @code{25}. Default value is @code{2} percent. This option also
614 controls quality of interpolated samples using neighbour good samples.
615
616 @item t
617 Set threshold value. Allowed range is from @code{1} to @code{100}.
618 Default value is @code{2}.
619 This controls the strength of impulsive noise which is going to be removed.
620 The lower value, the more samples will be detected as impulsive noise.
621
622 @item b
623 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
624 @code{10}. Default value is @code{2}.
625 If any two samples detected as noise are spaced less than this value then any
626 sample between those two samples will be also detected as noise.
627
628 @item m
629 Set overlap method.
630
631 It accepts the following values:
632 @table @option
633 @item a
634 Select overlap-add method. Even not interpolated samples are slightly
635 changed with this method.
636
637 @item s
638 Select overlap-save method. Not interpolated samples remain unchanged.
639 @end table
640
641 Default value is @code{a}.
642 @end table
643
644 @section adeclip
645 Remove clipped samples from input audio.
646
647 Samples detected as clipped are replaced by interpolated samples using
648 autoregressive modelling.
649
650 @table @option
651 @item w
652 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
653 Default value is @code{55} milliseconds.
654 This sets size of window which will be processed at once.
655
656 @item o
657 Set window overlap, in percentage of window size. Allowed range is from @code{50}
658 to @code{95}. Default value is @code{75} percent.
659
660 @item a
661 Set autoregression order, in percentage of window size. Allowed range is from
662 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
663 quality of interpolated samples using neighbour good samples.
664
665 @item t
666 Set threshold value. Allowed range is from @code{1} to @code{100}.
667 Default value is @code{10}. Higher values make clip detection less aggressive.
668
669 @item n
670 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
671 Default value is @code{1000}. Higher values make clip detection less aggressive.
672
673 @item m
674 Set overlap method.
675
676 It accepts the following values:
677 @table @option
678 @item a
679 Select overlap-add method. Even not interpolated samples are slightly changed
680 with this method.
681
682 @item s
683 Select overlap-save method. Not interpolated samples remain unchanged.
684 @end table
685
686 Default value is @code{a}.
687 @end table
688
689 @section adelay
690
691 Delay one or more audio channels.
692
693 Samples in delayed channel are filled with silence.
694
695 The filter accepts the following option:
696
697 @table @option
698 @item delays
699 Set list of delays in milliseconds for each channel separated by '|'.
700 Unused delays will be silently ignored. If number of given delays is
701 smaller than number of channels all remaining channels will not be delayed.
702 If you want to delay exact number of samples, append 'S' to number.
703 If you want instead to delay in seconds, append 's' to number.
704
705 @item all
706 Use last set delay for all remaining channels. By default is disabled.
707 This option if enabled changes how option @code{delays} is interpreted.
708 @end table
709
710 @subsection Examples
711
712 @itemize
713 @item
714 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
715 the second channel (and any other channels that may be present) unchanged.
716 @example
717 adelay=1500|0|500
718 @end example
719
720 @item
721 Delay second channel by 500 samples, the third channel by 700 samples and leave
722 the first channel (and any other channels that may be present) unchanged.
723 @example
724 adelay=0|500S|700S
725 @end example
726
727 @item
728 Delay all channels by same number of samples:
729 @example
730 adelay=delays=64S:all=1
731 @end example
732 @end itemize
733
734 @section aderivative, aintegral
735
736 Compute derivative/integral of audio stream.
737
738 Applying both filters one after another produces original audio.
739
740 @section aecho
741
742 Apply echoing to the input audio.
743
744 Echoes are reflected sound and can occur naturally amongst mountains
745 (and sometimes large buildings) when talking or shouting; digital echo
746 effects emulate this behaviour and are often used to help fill out the
747 sound of a single instrument or vocal. The time difference between the
748 original signal and the reflection is the @code{delay}, and the
749 loudness of the reflected signal is the @code{decay}.
750 Multiple echoes can have different delays and decays.
751
752 A description of the accepted parameters follows.
753
754 @table @option
755 @item in_gain
756 Set input gain of reflected signal. Default is @code{0.6}.
757
758 @item out_gain
759 Set output gain of reflected signal. Default is @code{0.3}.
760
761 @item delays
762 Set list of time intervals in milliseconds between original signal and reflections
763 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
764 Default is @code{1000}.
765
766 @item decays
767 Set list of loudness of reflected signals separated by '|'.
768 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
769 Default is @code{0.5}.
770 @end table
771
772 @subsection Examples
773
774 @itemize
775 @item
776 Make it sound as if there are twice as many instruments as are actually playing:
777 @example
778 aecho=0.8:0.88:60:0.4
779 @end example
780
781 @item
782 If delay is very short, then it sounds like a (metallic) robot playing music:
783 @example
784 aecho=0.8:0.88:6:0.4
785 @end example
786
787 @item
788 A longer delay will sound like an open air concert in the mountains:
789 @example
790 aecho=0.8:0.9:1000:0.3
791 @end example
792
793 @item
794 Same as above but with one more mountain:
795 @example
796 aecho=0.8:0.9:1000|1800:0.3|0.25
797 @end example
798 @end itemize
799
800 @section aemphasis
801 Audio emphasis filter creates or restores material directly taken from LPs or
802 emphased CDs with different filter curves. E.g. to store music on vinyl the
803 signal has to be altered by a filter first to even out the disadvantages of
804 this recording medium.
805 Once the material is played back the inverse filter has to be applied to
806 restore the distortion of the frequency response.
807
808 The filter accepts the following options:
809
810 @table @option
811 @item level_in
812 Set input gain.
813
814 @item level_out
815 Set output gain.
816
817 @item mode
818 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
819 use @code{production} mode. Default is @code{reproduction} mode.
820
821 @item type
822 Set filter type. Selects medium. Can be one of the following:
823
824 @table @option
825 @item col
826 select Columbia.
827 @item emi
828 select EMI.
829 @item bsi
830 select BSI (78RPM).
831 @item riaa
832 select RIAA.
833 @item cd
834 select Compact Disc (CD).
835 @item 50fm
836 select 50µs (FM).
837 @item 75fm
838 select 75µs (FM).
839 @item 50kf
840 select 50µs (FM-KF).
841 @item 75kf
842 select 75µs (FM-KF).
843 @end table
844 @end table
845
846 @section aeval
847
848 Modify an audio signal according to the specified expressions.
849
850 This filter accepts one or more expressions (one for each channel),
851 which are evaluated and used to modify a corresponding audio signal.
852
853 It accepts the following parameters:
854
855 @table @option
856 @item exprs
857 Set the '|'-separated expressions list for each separate channel. If
858 the number of input channels is greater than the number of
859 expressions, the last specified expression is used for the remaining
860 output channels.
861
862 @item channel_layout, c
863 Set output channel layout. If not specified, the channel layout is
864 specified by the number of expressions. If set to @samp{same}, it will
865 use by default the same input channel layout.
866 @end table
867
868 Each expression in @var{exprs} can contain the following constants and functions:
869
870 @table @option
871 @item ch
872 channel number of the current expression
873
874 @item n
875 number of the evaluated sample, starting from 0
876
877 @item s
878 sample rate
879
880 @item t
881 time of the evaluated sample expressed in seconds
882
883 @item nb_in_channels
884 @item nb_out_channels
885 input and output number of channels
886
887 @item val(CH)
888 the value of input channel with number @var{CH}
889 @end table
890
891 Note: this filter is slow. For faster processing you should use a
892 dedicated filter.
893
894 @subsection Examples
895
896 @itemize
897 @item
898 Half volume:
899 @example
900 aeval=val(ch)/2:c=same
901 @end example
902
903 @item
904 Invert phase of the second channel:
905 @example
906 aeval=val(0)|-val(1)
907 @end example
908 @end itemize
909
910 @anchor{afade}
911 @section afade
912
913 Apply fade-in/out effect to input audio.
914
915 A description of the accepted parameters follows.
916
917 @table @option
918 @item type, t
919 Specify the effect type, can be either @code{in} for fade-in, or
920 @code{out} for a fade-out effect. Default is @code{in}.
921
922 @item start_sample, ss
923 Specify the number of the start sample for starting to apply the fade
924 effect. Default is 0.
925
926 @item nb_samples, ns
927 Specify the number of samples for which the fade effect has to last. At
928 the end of the fade-in effect the output audio will have the same
929 volume as the input audio, at the end of the fade-out transition
930 the output audio will be silence. Default is 44100.
931
932 @item start_time, st
933 Specify the start time of the fade effect. Default is 0.
934 The value must be specified as a time duration; see
935 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
936 for the accepted syntax.
937 If set this option is used instead of @var{start_sample}.
938
939 @item duration, d
940 Specify the duration of the fade effect. See
941 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
942 for the accepted syntax.
943 At the end of the fade-in effect the output audio will have the same
944 volume as the input audio, at the end of the fade-out transition
945 the output audio will be silence.
946 By default the duration is determined by @var{nb_samples}.
947 If set this option is used instead of @var{nb_samples}.
948
949 @item curve
950 Set curve for fade transition.
951
952 It accepts the following values:
953 @table @option
954 @item tri
955 select triangular, linear slope (default)
956 @item qsin
957 select quarter of sine wave
958 @item hsin
959 select half of sine wave
960 @item esin
961 select exponential sine wave
962 @item log
963 select logarithmic
964 @item ipar
965 select inverted parabola
966 @item qua
967 select quadratic
968 @item cub
969 select cubic
970 @item squ
971 select square root
972 @item cbr
973 select cubic root
974 @item par
975 select parabola
976 @item exp
977 select exponential
978 @item iqsin
979 select inverted quarter of sine wave
980 @item ihsin
981 select inverted half of sine wave
982 @item dese
983 select double-exponential seat
984 @item desi
985 select double-exponential sigmoid
986 @item losi
987 select logistic sigmoid
988 @item nofade
989 no fade applied
990 @end table
991 @end table
992
993 @subsection Examples
994
995 @itemize
996 @item
997 Fade in first 15 seconds of audio:
998 @example
999 afade=t=in:ss=0:d=15
1000 @end example
1001
1002 @item
1003 Fade out last 25 seconds of a 900 seconds audio:
1004 @example
1005 afade=t=out:st=875:d=25
1006 @end example
1007 @end itemize
1008
1009 @section afftdn
1010 Denoise audio samples with FFT.
1011
1012 A description of the accepted parameters follows.
1013
1014 @table @option
1015 @item nr
1016 Set the noise reduction in dB, allowed range is 0.01 to 97.
1017 Default value is 12 dB.
1018
1019 @item nf
1020 Set the noise floor in dB, allowed range is -80 to -20.
1021 Default value is -50 dB.
1022
1023 @item nt
1024 Set the noise type.
1025
1026 It accepts the following values:
1027 @table @option
1028 @item w
1029 Select white noise.
1030
1031 @item v
1032 Select vinyl noise.
1033
1034 @item s
1035 Select shellac noise.
1036
1037 @item c
1038 Select custom noise, defined in @code{bn} option.
1039
1040 Default value is white noise.
1041 @end table
1042
1043 @item bn
1044 Set custom band noise for every one of 15 bands.
1045 Bands are separated by ' ' or '|'.
1046
1047 @item rf
1048 Set the residual floor in dB, allowed range is -80 to -20.
1049 Default value is -38 dB.
1050
1051 @item tn
1052 Enable noise tracking. By default is disabled.
1053 With this enabled, noise floor is automatically adjusted.
1054
1055 @item tr
1056 Enable residual tracking. By default is disabled.
1057
1058 @item om
1059 Set the output mode.
1060
1061 It accepts the following values:
1062 @table @option
1063 @item i
1064 Pass input unchanged.
1065
1066 @item o
1067 Pass noise filtered out.
1068
1069 @item n
1070 Pass only noise.
1071
1072 Default value is @var{o}.
1073 @end table
1074 @end table
1075
1076 @subsection Commands
1077
1078 This filter supports the following commands:
1079 @table @option
1080 @item sample_noise, sn
1081 Start or stop measuring noise profile.
1082 Syntax for the command is : "start" or "stop" string.
1083 After measuring noise profile is stopped it will be
1084 automatically applied in filtering.
1085
1086 @item noise_reduction, nr
1087 Change noise reduction. Argument is single float number.
1088 Syntax for the command is : "@var{noise_reduction}"
1089
1090 @item noise_floor, nf
1091 Change noise floor. Argument is single float number.
1092 Syntax for the command is : "@var{noise_floor}"
1093
1094 @item output_mode, om
1095 Change output mode operation.
1096 Syntax for the command is : "i", "o" or "n" string.
1097 @end table
1098
1099 @section afftfilt
1100 Apply arbitrary expressions to samples in frequency domain.
1101
1102 @table @option
1103 @item real
1104 Set frequency domain real expression for each separate channel separated
1105 by '|'. Default is "re".
1106 If the number of input channels is greater than the number of
1107 expressions, the last specified expression is used for the remaining
1108 output channels.
1109
1110 @item imag
1111 Set frequency domain imaginary expression for each separate channel
1112 separated by '|'. Default is "im".
1113
1114 Each expression in @var{real} and @var{imag} can contain the following
1115 constants and functions:
1116
1117 @table @option
1118 @item sr
1119 sample rate
1120
1121 @item b
1122 current frequency bin number
1123
1124 @item nb
1125 number of available bins
1126
1127 @item ch
1128 channel number of the current expression
1129
1130 @item chs
1131 number of channels
1132
1133 @item pts
1134 current frame pts
1135
1136 @item re
1137 current real part of frequency bin of current channel
1138
1139 @item im
1140 current imaginary part of frequency bin of current channel
1141
1142 @item real(b, ch)
1143 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1144
1145 @item imag(b, ch)
1146 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1147 @end table
1148
1149 @item win_size
1150 Set window size. Allowed range is from 16 to 131072.
1151 Default is @code{4096}
1152
1153 @item win_func
1154 Set window function. Default is @code{hann}.
1155
1156 @item overlap
1157 Set window overlap. If set to 1, the recommended overlap for selected
1158 window function will be picked. Default is @code{0.75}.
1159 @end table
1160
1161 @subsection Examples
1162
1163 @itemize
1164 @item
1165 Leave almost only low frequencies in audio:
1166 @example
1167 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1168 @end example
1169
1170 @item
1171 Apply robotize effect:
1172 @example
1173 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1174 @end example
1175
1176 @item
1177 Apply whisper effect:
1178 @example
1179 afftfilt="real='hypot(re,im)*cos((random(0)*2-1)*2*3.14)':imag='hypot(re,im)*sin((random(1)*2-1)*2*3.14)':win_size=128:overlap=0.8"
1180 @end example
1181 @end itemize
1182
1183 @anchor{afir}
1184 @section afir
1185
1186 Apply an arbitrary Finite Impulse Response filter.
1187
1188 This filter is designed for applying long FIR filters,
1189 up to 60 seconds long.
1190
1191 It can be used as component for digital crossover filters,
1192 room equalization, cross talk cancellation, wavefield synthesis,
1193 auralization, ambiophonics, ambisonics and spatialization.
1194
1195 This filter uses the streams higher than first one as FIR coefficients.
1196 If the non-first stream holds a single channel, it will be used
1197 for all input channels in the first stream, otherwise
1198 the number of channels in the non-first stream must be same as
1199 the number of channels in the first stream.
1200
1201 It accepts the following parameters:
1202
1203 @table @option
1204 @item dry
1205 Set dry gain. This sets input gain.
1206
1207 @item wet
1208 Set wet gain. This sets final output gain.
1209
1210 @item length
1211 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1212
1213 @item gtype
1214 Enable applying gain measured from power of IR.
1215
1216 Set which approach to use for auto gain measurement.
1217
1218 @table @option
1219 @item none
1220 Do not apply any gain.
1221
1222 @item peak
1223 select peak gain, very conservative approach. This is default value.
1224
1225 @item dc
1226 select DC gain, limited application.
1227
1228 @item gn
1229 select gain to noise approach, this is most popular one.
1230 @end table
1231
1232 @item irgain
1233 Set gain to be applied to IR coefficients before filtering.
1234 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1235
1236 @item irfmt
1237 Set format of IR stream. Can be @code{mono} or @code{input}.
1238 Default is @code{input}.
1239
1240 @item maxir
1241 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1242 Allowed range is 0.1 to 60 seconds.
1243
1244 @item response
1245 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1246 By default it is disabled.
1247
1248 @item channel
1249 Set for which IR channel to display frequency response. By default is first channel
1250 displayed. This option is used only when @var{response} is enabled.
1251
1252 @item size
1253 Set video stream size. This option is used only when @var{response} is enabled.
1254
1255 @item rate
1256 Set video stream frame rate. This option is used only when @var{response} is enabled.
1257
1258 @item minp
1259 Set minimal partition size used for convolution. Default is @var{8192}.
1260 Allowed range is from @var{1} to @var{32768}.
1261 Lower values decreases latency at cost of higher CPU usage.
1262
1263 @item maxp
1264 Set maximal partition size used for convolution. Default is @var{8192}.
1265 Allowed range is from @var{8} to @var{32768}.
1266 Lower values may increase CPU usage.
1267
1268 @item nbirs
1269 Set number of input impulse responses streams which will be switchable at runtime.
1270 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1271
1272 @item ir
1273 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1274 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1275 This option can be changed at runtime via @ref{commands}.
1276 @end table
1277
1278 @subsection Examples
1279
1280 @itemize
1281 @item
1282 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1283 @example
1284 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1285 @end example
1286 @end itemize
1287
1288 @anchor{aformat}
1289 @section aformat
1290
1291 Set output format constraints for the input audio. The framework will
1292 negotiate the most appropriate format to minimize conversions.
1293
1294 It accepts the following parameters:
1295 @table @option
1296
1297 @item sample_fmts, f
1298 A '|'-separated list of requested sample formats.
1299
1300 @item sample_rates, r
1301 A '|'-separated list of requested sample rates.
1302
1303 @item channel_layouts, cl
1304 A '|'-separated list of requested channel layouts.
1305
1306 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1307 for the required syntax.
1308 @end table
1309
1310 If a parameter is omitted, all values are allowed.
1311
1312 Force the output to either unsigned 8-bit or signed 16-bit stereo
1313 @example
1314 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1315 @end example
1316
1317 @section agate
1318
1319 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1320 processing reduces disturbing noise between useful signals.
1321
1322 Gating is done by detecting the volume below a chosen level @var{threshold}
1323 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1324 floor is set via @var{range}. Because an exact manipulation of the signal
1325 would cause distortion of the waveform the reduction can be levelled over
1326 time. This is done by setting @var{attack} and @var{release}.
1327
1328 @var{attack} determines how long the signal has to fall below the threshold
1329 before any reduction will occur and @var{release} sets the time the signal
1330 has to rise above the threshold to reduce the reduction again.
1331 Shorter signals than the chosen attack time will be left untouched.
1332
1333 @table @option
1334 @item level_in
1335 Set input level before filtering.
1336 Default is 1. Allowed range is from 0.015625 to 64.
1337
1338 @item mode
1339 Set the mode of operation. Can be @code{upward} or @code{downward}.
1340 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1341 will be amplified, expanding dynamic range in upward direction.
1342 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1343
1344 @item range
1345 Set the level of gain reduction when the signal is below the threshold.
1346 Default is 0.06125. Allowed range is from 0 to 1.
1347 Setting this to 0 disables reduction and then filter behaves like expander.
1348
1349 @item threshold
1350 If a signal rises above this level the gain reduction is released.
1351 Default is 0.125. Allowed range is from 0 to 1.
1352
1353 @item ratio
1354 Set a ratio by which the signal is reduced.
1355 Default is 2. Allowed range is from 1 to 9000.
1356
1357 @item attack
1358 Amount of milliseconds the signal has to rise above the threshold before gain
1359 reduction stops.
1360 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1361
1362 @item release
1363 Amount of milliseconds the signal has to fall below the threshold before the
1364 reduction is increased again. Default is 250 milliseconds.
1365 Allowed range is from 0.01 to 9000.
1366
1367 @item makeup
1368 Set amount of amplification of signal after processing.
1369 Default is 1. Allowed range is from 1 to 64.
1370
1371 @item knee
1372 Curve the sharp knee around the threshold to enter gain reduction more softly.
1373 Default is 2.828427125. Allowed range is from 1 to 8.
1374
1375 @item detection
1376 Choose if exact signal should be taken for detection or an RMS like one.
1377 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1378
1379 @item link
1380 Choose if the average level between all channels or the louder channel affects
1381 the reduction.
1382 Default is @code{average}. Can be @code{average} or @code{maximum}.
1383 @end table
1384
1385 @section aiir
1386
1387 Apply an arbitrary Infinite Impulse Response filter.
1388
1389 It accepts the following parameters:
1390
1391 @table @option
1392 @item z
1393 Set numerator/zeros coefficients.
1394
1395 @item p
1396 Set denominator/poles coefficients.
1397
1398 @item k
1399 Set channels gains.
1400
1401 @item dry_gain
1402 Set input gain.
1403
1404 @item wet_gain
1405 Set output gain.
1406
1407 @item f
1408 Set coefficients format.
1409
1410 @table @samp
1411 @item tf
1412 transfer function
1413 @item zp
1414 Z-plane zeros/poles, cartesian (default)
1415 @item pr
1416 Z-plane zeros/poles, polar radians
1417 @item pd
1418 Z-plane zeros/poles, polar degrees
1419 @end table
1420
1421 @item r
1422 Set kind of processing.
1423 Can be @code{d} - direct or @code{s} - serial cascading. Default is @code{s}.
1424
1425 @item e
1426 Set filtering precision.
1427
1428 @table @samp
1429 @item dbl
1430 double-precision floating-point (default)
1431 @item flt
1432 single-precision floating-point
1433 @item i32
1434 32-bit integers
1435 @item i16
1436 16-bit integers
1437 @end table
1438
1439 @item mix
1440 How much to use filtered signal in output. Default is 1.
1441 Range is between 0 and 1.
1442
1443 @item response
1444 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1445 By default it is disabled.
1446
1447 @item channel
1448 Set for which IR channel to display frequency response. By default is first channel
1449 displayed. This option is used only when @var{response} is enabled.
1450
1451 @item size
1452 Set video stream size. This option is used only when @var{response} is enabled.
1453 @end table
1454
1455 Coefficients in @code{tf} format are separated by spaces and are in ascending
1456 order.
1457
1458 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1459 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1460 imaginary unit.
1461
1462 Different coefficients and gains can be provided for every channel, in such case
1463 use '|' to separate coefficients or gains. Last provided coefficients will be
1464 used for all remaining channels.
1465
1466 @subsection Examples
1467
1468 @itemize
1469 @item
1470 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1471 @example
1472 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1473 @end example
1474
1475 @item
1476 Same as above but in @code{zp} format:
1477 @example
1478 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1479 @end example
1480 @end itemize
1481
1482 @section alimiter
1483
1484 The limiter prevents an input signal from rising over a desired threshold.
1485 This limiter uses lookahead technology to prevent your signal from distorting.
1486 It means that there is a small delay after the signal is processed. Keep in mind
1487 that the delay it produces is the attack time you set.
1488
1489 The filter accepts the following options:
1490
1491 @table @option
1492 @item level_in
1493 Set input gain. Default is 1.
1494
1495 @item level_out
1496 Set output gain. Default is 1.
1497
1498 @item limit
1499 Don't let signals above this level pass the limiter. Default is 1.
1500
1501 @item attack
1502 The limiter will reach its attenuation level in this amount of time in
1503 milliseconds. Default is 5 milliseconds.
1504
1505 @item release
1506 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1507 Default is 50 milliseconds.
1508
1509 @item asc
1510 When gain reduction is always needed ASC takes care of releasing to an
1511 average reduction level rather than reaching a reduction of 0 in the release
1512 time.
1513
1514 @item asc_level
1515 Select how much the release time is affected by ASC, 0 means nearly no changes
1516 in release time while 1 produces higher release times.
1517
1518 @item level
1519 Auto level output signal. Default is enabled.
1520 This normalizes audio back to 0dB if enabled.
1521 @end table
1522
1523 Depending on picked setting it is recommended to upsample input 2x or 4x times
1524 with @ref{aresample} before applying this filter.
1525
1526 @section allpass
1527
1528 Apply a two-pole all-pass filter with central frequency (in Hz)
1529 @var{frequency}, and filter-width @var{width}.
1530 An all-pass filter changes the audio's frequency to phase relationship
1531 without changing its frequency to amplitude relationship.
1532
1533 The filter accepts the following options:
1534
1535 @table @option
1536 @item frequency, f
1537 Set frequency in Hz.
1538
1539 @item width_type, t
1540 Set method to specify band-width of filter.
1541 @table @option
1542 @item h
1543 Hz
1544 @item q
1545 Q-Factor
1546 @item o
1547 octave
1548 @item s
1549 slope
1550 @item k
1551 kHz
1552 @end table
1553
1554 @item width, w
1555 Specify the band-width of a filter in width_type units.
1556
1557 @item mix, m
1558 How much to use filtered signal in output. Default is 1.
1559 Range is between 0 and 1.
1560
1561 @item channels, c
1562 Specify which channels to filter, by default all available are filtered.
1563
1564 @item normalize, n
1565 Normalize biquad coefficients, by default is disabled.
1566 Enabling it will normalize magnitude response at DC to 0dB.
1567 @end table
1568
1569 @subsection Commands
1570
1571 This filter supports the following commands:
1572 @table @option
1573 @item frequency, f
1574 Change allpass frequency.
1575 Syntax for the command is : "@var{frequency}"
1576
1577 @item width_type, t
1578 Change allpass width_type.
1579 Syntax for the command is : "@var{width_type}"
1580
1581 @item width, w
1582 Change allpass width.
1583 Syntax for the command is : "@var{width}"
1584
1585 @item mix, m
1586 Change allpass mix.
1587 Syntax for the command is : "@var{mix}"
1588 @end table
1589
1590 @section aloop
1591
1592 Loop audio samples.
1593
1594 The filter accepts the following options:
1595
1596 @table @option
1597 @item loop
1598 Set the number of loops. Setting this value to -1 will result in infinite loops.
1599 Default is 0.
1600
1601 @item size
1602 Set maximal number of samples. Default is 0.
1603
1604 @item start
1605 Set first sample of loop. Default is 0.
1606 @end table
1607
1608 @anchor{amerge}
1609 @section amerge
1610
1611 Merge two or more audio streams into a single multi-channel stream.
1612
1613 The filter accepts the following options:
1614
1615 @table @option
1616
1617 @item inputs
1618 Set the number of inputs. Default is 2.
1619
1620 @end table
1621
1622 If the channel layouts of the inputs are disjoint, and therefore compatible,
1623 the channel layout of the output will be set accordingly and the channels
1624 will be reordered as necessary. If the channel layouts of the inputs are not
1625 disjoint, the output will have all the channels of the first input then all
1626 the channels of the second input, in that order, and the channel layout of
1627 the output will be the default value corresponding to the total number of
1628 channels.
1629
1630 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1631 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1632 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1633 first input, b1 is the first channel of the second input).
1634
1635 On the other hand, if both input are in stereo, the output channels will be
1636 in the default order: a1, a2, b1, b2, and the channel layout will be
1637 arbitrarily set to 4.0, which may or may not be the expected value.
1638
1639 All inputs must have the same sample rate, and format.
1640
1641 If inputs do not have the same duration, the output will stop with the
1642 shortest.
1643
1644 @subsection Examples
1645
1646 @itemize
1647 @item
1648 Merge two mono files into a stereo stream:
1649 @example
1650 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1651 @end example
1652
1653 @item
1654 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1655 @example
1656 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
1657 @end example
1658 @end itemize
1659
1660 @section amix
1661
1662 Mixes multiple audio inputs into a single output.
1663
1664 Note that this filter only supports float samples (the @var{amerge}
1665 and @var{pan} audio filters support many formats). If the @var{amix}
1666 input has integer samples then @ref{aresample} will be automatically
1667 inserted to perform the conversion to float samples.
1668
1669 For example
1670 @example
1671 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1672 @end example
1673 will mix 3 input audio streams to a single output with the same duration as the
1674 first input and a dropout transition time of 3 seconds.
1675
1676 It accepts the following parameters:
1677 @table @option
1678
1679 @item inputs
1680 The number of inputs. If unspecified, it defaults to 2.
1681
1682 @item duration
1683 How to determine the end-of-stream.
1684 @table @option
1685
1686 @item longest
1687 The duration of the longest input. (default)
1688
1689 @item shortest
1690 The duration of the shortest input.
1691
1692 @item first
1693 The duration of the first input.
1694
1695 @end table
1696
1697 @item dropout_transition
1698 The transition time, in seconds, for volume renormalization when an input
1699 stream ends. The default value is 2 seconds.
1700
1701 @item weights
1702 Specify weight of each input audio stream as sequence.
1703 Each weight is separated by space. By default all inputs have same weight.
1704 @end table
1705
1706 @section amultiply
1707
1708 Multiply first audio stream with second audio stream and store result
1709 in output audio stream. Multiplication is done by multiplying each
1710 sample from first stream with sample at same position from second stream.
1711
1712 With this element-wise multiplication one can create amplitude fades and
1713 amplitude modulations.
1714
1715 @section anequalizer
1716
1717 High-order parametric multiband equalizer for each channel.
1718
1719 It accepts the following parameters:
1720 @table @option
1721 @item params
1722
1723 This option string is in format:
1724 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1725 Each equalizer band is separated by '|'.
1726
1727 @table @option
1728 @item chn
1729 Set channel number to which equalization will be applied.
1730 If input doesn't have that channel the entry is ignored.
1731
1732 @item f
1733 Set central frequency for band.
1734 If input doesn't have that frequency the entry is ignored.
1735
1736 @item w
1737 Set band width in hertz.
1738
1739 @item g
1740 Set band gain in dB.
1741
1742 @item t
1743 Set filter type for band, optional, can be:
1744
1745 @table @samp
1746 @item 0
1747 Butterworth, this is default.
1748
1749 @item 1
1750 Chebyshev type 1.
1751
1752 @item 2
1753 Chebyshev type 2.
1754 @end table
1755 @end table
1756
1757 @item curves
1758 With this option activated frequency response of anequalizer is displayed
1759 in video stream.
1760
1761 @item size
1762 Set video stream size. Only useful if curves option is activated.
1763
1764 @item mgain
1765 Set max gain that will be displayed. Only useful if curves option is activated.
1766 Setting this to a reasonable value makes it possible to display gain which is derived from
1767 neighbour bands which are too close to each other and thus produce higher gain
1768 when both are activated.
1769
1770 @item fscale
1771 Set frequency scale used to draw frequency response in video output.
1772 Can be linear or logarithmic. Default is logarithmic.
1773
1774 @item colors
1775 Set color for each channel curve which is going to be displayed in video stream.
1776 This is list of color names separated by space or by '|'.
1777 Unrecognised or missing colors will be replaced by white color.
1778 @end table
1779
1780 @subsection Examples
1781
1782 @itemize
1783 @item
1784 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1785 for first 2 channels using Chebyshev type 1 filter:
1786 @example
1787 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1788 @end example
1789 @end itemize
1790
1791 @subsection Commands
1792
1793 This filter supports the following commands:
1794 @table @option
1795 @item change
1796 Alter existing filter parameters.
1797 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1798
1799 @var{fN} is existing filter number, starting from 0, if no such filter is available
1800 error is returned.
1801 @var{freq} set new frequency parameter.
1802 @var{width} set new width parameter in herz.
1803 @var{gain} set new gain parameter in dB.
1804
1805 Full filter invocation with asendcmd may look like this:
1806 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1807 @end table
1808
1809 @section anlmdn
1810
1811 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1812
1813 Each sample is adjusted by looking for other samples with similar contexts. This
1814 context similarity is defined by comparing their surrounding patches of size
1815 @option{p}. Patches are searched in an area of @option{r} around the sample.
1816
1817 The filter accepts the following options:
1818
1819 @table @option
1820 @item s
1821 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1822
1823 @item p
1824 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1825 Default value is 2 milliseconds.
1826
1827 @item r
1828 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1829 Default value is 6 milliseconds.
1830
1831 @item o
1832 Set the output mode.
1833
1834 It accepts the following values:
1835 @table @option
1836 @item i
1837 Pass input unchanged.
1838
1839 @item o
1840 Pass noise filtered out.
1841
1842 @item n
1843 Pass only noise.
1844
1845 Default value is @var{o}.
1846 @end table
1847
1848 @item m
1849 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
1850 @end table
1851
1852 @subsection Commands
1853
1854 This filter supports the following commands:
1855 @table @option
1856 @item s
1857 Change denoise strength. Argument is single float number.
1858 Syntax for the command is : "@var{s}"
1859
1860 @item o
1861 Change output mode.
1862 Syntax for the command is : "i", "o" or "n" string.
1863 @end table
1864
1865 @section anlms
1866 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
1867
1868 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
1869 relate to producing the least mean square of the error signal (difference between the desired,
1870 2nd input audio stream and the actual signal, the 1st input audio stream).
1871
1872 A description of the accepted options follows.
1873
1874 @table @option
1875 @item order
1876 Set filter order.
1877
1878 @item mu
1879 Set filter mu.
1880
1881 @item eps
1882 Set the filter eps.
1883
1884 @item leakage
1885 Set the filter leakage.
1886
1887 @item out_mode
1888 It accepts the following values:
1889 @table @option
1890 @item i
1891 Pass the 1st input.
1892
1893 @item d
1894 Pass the 2nd input.
1895
1896 @item o
1897 Pass filtered samples.
1898
1899 @item n
1900 Pass difference between desired and filtered samples.
1901
1902 Default value is @var{o}.
1903 @end table
1904 @end table
1905
1906 @subsection Examples
1907
1908 @itemize
1909 @item
1910 One of many usages of this filter is noise reduction, input audio is filtered
1911 with same samples that are delayed by fixed amount, one such example for stereo audio is:
1912 @example
1913 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
1914 @end example
1915 @end itemize
1916
1917 @subsection Commands
1918
1919 This filter supports the same commands as options, excluding option @code{order}.
1920
1921 @section anull
1922
1923 Pass the audio source unchanged to the output.
1924
1925 @section apad
1926
1927 Pad the end of an audio stream with silence.
1928
1929 This can be used together with @command{ffmpeg} @option{-shortest} to
1930 extend audio streams to the same length as the video stream.
1931
1932 A description of the accepted options follows.
1933
1934 @table @option
1935 @item packet_size
1936 Set silence packet size. Default value is 4096.
1937
1938 @item pad_len
1939 Set the number of samples of silence to add to the end. After the
1940 value is reached, the stream is terminated. This option is mutually
1941 exclusive with @option{whole_len}.
1942
1943 @item whole_len
1944 Set the minimum total number of samples in the output audio stream. If
1945 the value is longer than the input audio length, silence is added to
1946 the end, until the value is reached. This option is mutually exclusive
1947 with @option{pad_len}.
1948
1949 @item pad_dur
1950 Specify the duration of samples of silence to add. See
1951 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1952 for the accepted syntax. Used only if set to non-zero value.
1953
1954 @item whole_dur
1955 Specify the minimum total duration in the output audio stream. See
1956 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1957 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
1958 the input audio length, silence is added to the end, until the value is reached.
1959 This option is mutually exclusive with @option{pad_dur}
1960 @end table
1961
1962 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
1963 nor @option{whole_dur} option is set, the filter will add silence to the end of
1964 the input stream indefinitely.
1965
1966 @subsection Examples
1967
1968 @itemize
1969 @item
1970 Add 1024 samples of silence to the end of the input:
1971 @example
1972 apad=pad_len=1024
1973 @end example
1974
1975 @item
1976 Make sure the audio output will contain at least 10000 samples, pad
1977 the input with silence if required:
1978 @example
1979 apad=whole_len=10000
1980 @end example
1981
1982 @item
1983 Use @command{ffmpeg} to pad the audio input with silence, so that the
1984 video stream will always result the shortest and will be converted
1985 until the end in the output file when using the @option{shortest}
1986 option:
1987 @example
1988 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1989 @end example
1990 @end itemize
1991
1992 @section aphaser
1993 Add a phasing effect to the input audio.
1994
1995 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1996 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1997
1998 A description of the accepted parameters follows.
1999
2000 @table @option
2001 @item in_gain
2002 Set input gain. Default is 0.4.
2003
2004 @item out_gain
2005 Set output gain. Default is 0.74
2006
2007 @item delay
2008 Set delay in milliseconds. Default is 3.0.
2009
2010 @item decay
2011 Set decay. Default is 0.4.
2012
2013 @item speed
2014 Set modulation speed in Hz. Default is 0.5.
2015
2016 @item type
2017 Set modulation type. Default is triangular.
2018
2019 It accepts the following values:
2020 @table @samp
2021 @item triangular, t
2022 @item sinusoidal, s
2023 @end table
2024 @end table
2025
2026 @section apulsator
2027
2028 Audio pulsator is something between an autopanner and a tremolo.
2029 But it can produce funny stereo effects as well. Pulsator changes the volume
2030 of the left and right channel based on a LFO (low frequency oscillator) with
2031 different waveforms and shifted phases.
2032 This filter have the ability to define an offset between left and right
2033 channel. An offset of 0 means that both LFO shapes match each other.
2034 The left and right channel are altered equally - a conventional tremolo.
2035 An offset of 50% means that the shape of the right channel is exactly shifted
2036 in phase (or moved backwards about half of the frequency) - pulsator acts as
2037 an autopanner. At 1 both curves match again. Every setting in between moves the
2038 phase shift gapless between all stages and produces some "bypassing" sounds with
2039 sine and triangle waveforms. The more you set the offset near 1 (starting from
2040 the 0.5) the faster the signal passes from the left to the right speaker.
2041
2042 The filter accepts the following options:
2043
2044 @table @option
2045 @item level_in
2046 Set input gain. By default it is 1. Range is [0.015625 - 64].
2047
2048 @item level_out
2049 Set output gain. By default it is 1. Range is [0.015625 - 64].
2050
2051 @item mode
2052 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2053 sawup or sawdown. Default is sine.
2054
2055 @item amount
2056 Set modulation. Define how much of original signal is affected by the LFO.
2057
2058 @item offset_l
2059 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2060
2061 @item offset_r
2062 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2063
2064 @item width
2065 Set pulse width. Default is 1. Allowed range is [0 - 2].
2066
2067 @item timing
2068 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2069
2070 @item bpm
2071 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2072 is set to bpm.
2073
2074 @item ms
2075 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2076 is set to ms.
2077
2078 @item hz
2079 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2080 if timing is set to hz.
2081 @end table
2082
2083 @anchor{aresample}
2084 @section aresample
2085
2086 Resample the input audio to the specified parameters, using the
2087 libswresample library. If none are specified then the filter will
2088 automatically convert between its input and output.
2089
2090 This filter is also able to stretch/squeeze the audio data to make it match
2091 the timestamps or to inject silence / cut out audio to make it match the
2092 timestamps, do a combination of both or do neither.
2093
2094 The filter accepts the syntax
2095 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2096 expresses a sample rate and @var{resampler_options} is a list of
2097 @var{key}=@var{value} pairs, separated by ":". See the
2098 @ref{Resampler Options,,"Resampler Options" section in the
2099 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2100 for the complete list of supported options.
2101
2102 @subsection Examples
2103
2104 @itemize
2105 @item
2106 Resample the input audio to 44100Hz:
2107 @example
2108 aresample=44100
2109 @end example
2110
2111 @item
2112 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2113 samples per second compensation:
2114 @example
2115 aresample=async=1000
2116 @end example
2117 @end itemize
2118
2119 @section areverse
2120
2121 Reverse an audio clip.
2122
2123 Warning: This filter requires memory to buffer the entire clip, so trimming
2124 is suggested.
2125
2126 @subsection Examples
2127
2128 @itemize
2129 @item
2130 Take the first 5 seconds of a clip, and reverse it.
2131 @example
2132 atrim=end=5,areverse
2133 @end example
2134 @end itemize
2135
2136 @section arnndn
2137
2138 Reduce noise from speech using Recurrent Neural Networks.
2139
2140 This filter accepts the following options:
2141
2142 @table @option
2143 @item model, m
2144 Set train model file to load. This option is always required.
2145 @end table
2146
2147 @section asetnsamples
2148
2149 Set the number of samples per each output audio frame.
2150
2151 The last output packet may contain a different number of samples, as
2152 the filter will flush all the remaining samples when the input audio
2153 signals its end.
2154
2155 The filter accepts the following options:
2156
2157 @table @option
2158
2159 @item nb_out_samples, n
2160 Set the number of frames per each output audio frame. The number is
2161 intended as the number of samples @emph{per each channel}.
2162 Default value is 1024.
2163
2164 @item pad, p
2165 If set to 1, the filter will pad the last audio frame with zeroes, so
2166 that the last frame will contain the same number of samples as the
2167 previous ones. Default value is 1.
2168 @end table
2169
2170 For example, to set the number of per-frame samples to 1234 and
2171 disable padding for the last frame, use:
2172 @example
2173 asetnsamples=n=1234:p=0
2174 @end example
2175
2176 @section asetrate
2177
2178 Set the sample rate without altering the PCM data.
2179 This will result in a change of speed and pitch.
2180
2181 The filter accepts the following options:
2182
2183 @table @option
2184 @item sample_rate, r
2185 Set the output sample rate. Default is 44100 Hz.
2186 @end table
2187
2188 @section ashowinfo
2189
2190 Show a line containing various information for each input audio frame.
2191 The input audio is not modified.
2192
2193 The shown line contains a sequence of key/value pairs of the form
2194 @var{key}:@var{value}.
2195
2196 The following values are shown in the output:
2197
2198 @table @option
2199 @item n
2200 The (sequential) number of the input frame, starting from 0.
2201
2202 @item pts
2203 The presentation timestamp of the input frame, in time base units; the time base
2204 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2205
2206 @item pts_time
2207 The presentation timestamp of the input frame in seconds.
2208
2209 @item pos
2210 position of the frame in the input stream, -1 if this information in
2211 unavailable and/or meaningless (for example in case of synthetic audio)
2212
2213 @item fmt
2214 The sample format.
2215
2216 @item chlayout
2217 The channel layout.
2218
2219 @item rate
2220 The sample rate for the audio frame.
2221
2222 @item nb_samples
2223 The number of samples (per channel) in the frame.
2224
2225 @item checksum
2226 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2227 audio, the data is treated as if all the planes were concatenated.
2228
2229 @item plane_checksums
2230 A list of Adler-32 checksums for each data plane.
2231 @end table
2232
2233 @section asoftclip
2234 Apply audio soft clipping.
2235
2236 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2237 along a smooth curve, rather than the abrupt shape of hard-clipping.
2238
2239 This filter accepts the following options:
2240
2241 @table @option
2242 @item type
2243 Set type of soft-clipping.
2244
2245 It accepts the following values:
2246 @table @option
2247 @item tanh
2248 @item atan
2249 @item cubic
2250 @item exp
2251 @item alg
2252 @item quintic
2253 @item sin
2254 @end table
2255
2256 @item param
2257 Set additional parameter which controls sigmoid function.
2258 @end table
2259
2260 @subsection Commands
2261
2262 This filter supports the all above options as @ref{commands}.
2263
2264 @section asr
2265 Automatic Speech Recognition
2266
2267 This filter uses PocketSphinx for speech recognition. To enable
2268 compilation of this filter, you need to configure FFmpeg with
2269 @code{--enable-pocketsphinx}.
2270
2271 It accepts the following options:
2272
2273 @table @option
2274 @item rate
2275 Set sampling rate of input audio. Defaults is @code{16000}.
2276 This need to match speech models, otherwise one will get poor results.
2277
2278 @item hmm
2279 Set dictionary containing acoustic model files.
2280
2281 @item dict
2282 Set pronunciation dictionary.
2283
2284 @item lm
2285 Set language model file.
2286
2287 @item lmctl
2288 Set language model set.
2289
2290 @item lmname
2291 Set which language model to use.
2292
2293 @item logfn
2294 Set output for log messages.
2295 @end table
2296
2297 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2298
2299 @anchor{astats}
2300 @section astats
2301
2302 Display time domain statistical information about the audio channels.
2303 Statistics are calculated and displayed for each audio channel and,
2304 where applicable, an overall figure is also given.
2305
2306 It accepts the following option:
2307 @table @option
2308 @item length
2309 Short window length in seconds, used for peak and trough RMS measurement.
2310 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2311
2312 @item metadata
2313
2314 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2315 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2316 disabled.
2317
2318 Available keys for each channel are:
2319 DC_offset
2320 Min_level
2321 Max_level
2322 Min_difference
2323 Max_difference
2324 Mean_difference
2325 RMS_difference
2326 Peak_level
2327 RMS_peak
2328 RMS_trough
2329 Crest_factor
2330 Flat_factor
2331 Peak_count
2332 Bit_depth
2333 Dynamic_range
2334 Zero_crossings
2335 Zero_crossings_rate
2336 Number_of_NaNs
2337 Number_of_Infs
2338 Number_of_denormals
2339
2340 and for Overall:
2341 DC_offset
2342 Min_level
2343 Max_level
2344 Min_difference
2345 Max_difference
2346 Mean_difference
2347 RMS_difference
2348 Peak_level
2349 RMS_level
2350 RMS_peak
2351 RMS_trough
2352 Flat_factor
2353 Peak_count
2354 Bit_depth
2355 Number_of_samples
2356 Number_of_NaNs
2357 Number_of_Infs
2358 Number_of_denormals
2359
2360 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2361 this @code{lavfi.astats.Overall.Peak_count}.
2362
2363 For description what each key means read below.
2364
2365 @item reset
2366 Set number of frame after which stats are going to be recalculated.
2367 Default is disabled.
2368
2369 @item measure_perchannel
2370 Select the entries which need to be measured per channel. The metadata keys can
2371 be used as flags, default is @option{all} which measures everything.
2372 @option{none} disables all per channel measurement.
2373
2374 @item measure_overall
2375 Select the entries which need to be measured overall. The metadata keys can
2376 be used as flags, default is @option{all} which measures everything.
2377 @option{none} disables all overall measurement.
2378
2379 @end table
2380
2381 A description of each shown parameter follows:
2382
2383 @table @option
2384 @item DC offset
2385 Mean amplitude displacement from zero.
2386
2387 @item Min level
2388 Minimal sample level.
2389
2390 @item Max level
2391 Maximal sample level.
2392
2393 @item Min difference
2394 Minimal difference between two consecutive samples.
2395
2396 @item Max difference
2397 Maximal difference between two consecutive samples.
2398
2399 @item Mean difference
2400 Mean difference between two consecutive samples.
2401 The average of each difference between two consecutive samples.
2402
2403 @item RMS difference
2404 Root Mean Square difference between two consecutive samples.
2405
2406 @item Peak level dB
2407 @item RMS level dB
2408 Standard peak and RMS level measured in dBFS.
2409
2410 @item RMS peak dB
2411 @item RMS trough dB
2412 Peak and trough values for RMS level measured over a short window.
2413
2414 @item Crest factor
2415 Standard ratio of peak to RMS level (note: not in dB).
2416
2417 @item Flat factor
2418 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2419 (i.e. either @var{Min level} or @var{Max level}).
2420
2421 @item Peak count
2422 Number of occasions (not the number of samples) that the signal attained either
2423 @var{Min level} or @var{Max level}.
2424
2425 @item Bit depth
2426 Overall bit depth of audio. Number of bits used for each sample.
2427
2428 @item Dynamic range
2429 Measured dynamic range of audio in dB.
2430
2431 @item Zero crossings
2432 Number of points where the waveform crosses the zero level axis.
2433
2434 @item Zero crossings rate
2435 Rate of Zero crossings and number of audio samples.
2436 @end table
2437
2438 @section atempo
2439
2440 Adjust audio tempo.
2441
2442 The filter accepts exactly one parameter, the audio tempo. If not
2443 specified then the filter will assume nominal 1.0 tempo. Tempo must
2444 be in the [0.5, 100.0] range.
2445
2446 Note that tempo greater than 2 will skip some samples rather than
2447 blend them in.  If for any reason this is a concern it is always
2448 possible to daisy-chain several instances of atempo to achieve the
2449 desired product tempo.
2450
2451 @subsection Examples
2452
2453 @itemize
2454 @item
2455 Slow down audio to 80% tempo:
2456 @example
2457 atempo=0.8
2458 @end example
2459
2460 @item
2461 To speed up audio to 300% tempo:
2462 @example
2463 atempo=3
2464 @end example
2465
2466 @item
2467 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2468 @example
2469 atempo=sqrt(3),atempo=sqrt(3)
2470 @end example
2471 @end itemize
2472
2473 @subsection Commands
2474
2475 This filter supports the following commands:
2476 @table @option
2477 @item tempo
2478 Change filter tempo scale factor.
2479 Syntax for the command is : "@var{tempo}"
2480 @end table
2481
2482 @section atrim
2483
2484 Trim the input so that the output contains one continuous subpart of the input.
2485
2486 It accepts the following parameters:
2487 @table @option
2488 @item start
2489 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2490 sample with the timestamp @var{start} will be the first sample in the output.
2491
2492 @item end
2493 Specify time of the first audio sample that will be dropped, i.e. the
2494 audio sample immediately preceding the one with the timestamp @var{end} will be
2495 the last sample in the output.
2496
2497 @item start_pts
2498 Same as @var{start}, except this option sets the start timestamp in samples
2499 instead of seconds.
2500
2501 @item end_pts
2502 Same as @var{end}, except this option sets the end timestamp in samples instead
2503 of seconds.
2504
2505 @item duration
2506 The maximum duration of the output in seconds.
2507
2508 @item start_sample
2509 The number of the first sample that should be output.
2510
2511 @item end_sample
2512 The number of the first sample that should be dropped.
2513 @end table
2514
2515 @option{start}, @option{end}, and @option{duration} are expressed as time
2516 duration specifications; see
2517 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2518
2519 Note that the first two sets of the start/end options and the @option{duration}
2520 option look at the frame timestamp, while the _sample options simply count the
2521 samples that pass through the filter. So start/end_pts and start/end_sample will
2522 give different results when the timestamps are wrong, inexact or do not start at
2523 zero. Also note that this filter does not modify the timestamps. If you wish
2524 to have the output timestamps start at zero, insert the asetpts filter after the
2525 atrim filter.
2526
2527 If multiple start or end options are set, this filter tries to be greedy and
2528 keep all samples that match at least one of the specified constraints. To keep
2529 only the part that matches all the constraints at once, chain multiple atrim
2530 filters.
2531
2532 The defaults are such that all the input is kept. So it is possible to set e.g.
2533 just the end values to keep everything before the specified time.
2534
2535 Examples:
2536 @itemize
2537 @item
2538 Drop everything except the second minute of input:
2539 @example
2540 ffmpeg -i INPUT -af atrim=60:120
2541 @end example
2542
2543 @item
2544 Keep only the first 1000 samples:
2545 @example
2546 ffmpeg -i INPUT -af atrim=end_sample=1000
2547 @end example
2548
2549 @end itemize
2550
2551 @section axcorrelate
2552 Calculate normalized cross-correlation between two input audio streams.
2553
2554 Resulted samples are always between -1 and 1 inclusive.
2555 If result is 1 it means two input samples are highly correlated in that selected segment.
2556 Result 0 means they are not correlated at all.
2557 If result is -1 it means two input samples are out of phase, which means they cancel each
2558 other.
2559
2560 The filter accepts the following options:
2561
2562 @table @option
2563 @item size
2564 Set size of segment over which cross-correlation is calculated.
2565 Default is 256. Allowed range is from 2 to 131072.
2566
2567 @item algo
2568 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2569 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2570 are always zero and thus need much less calculations to make.
2571 This is generally not true, but is valid for typical audio streams.
2572 @end table
2573
2574 @subsection Examples
2575
2576 @itemize
2577 @item
2578 Calculate correlation between channels in stereo audio stream:
2579 @example
2580 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2581 @end example
2582 @end itemize
2583
2584 @section bandpass
2585
2586 Apply a two-pole Butterworth band-pass filter with central
2587 frequency @var{frequency}, and (3dB-point) band-width width.
2588 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2589 instead of the default: constant 0dB peak gain.
2590 The filter roll off at 6dB per octave (20dB per decade).
2591
2592 The filter accepts the following options:
2593
2594 @table @option
2595 @item frequency, f
2596 Set the filter's central frequency. Default is @code{3000}.
2597
2598 @item csg
2599 Constant skirt gain if set to 1. Defaults to 0.
2600
2601 @item width_type, t
2602 Set method to specify band-width of filter.
2603 @table @option
2604 @item h
2605 Hz
2606 @item q
2607 Q-Factor
2608 @item o
2609 octave
2610 @item s
2611 slope
2612 @item k
2613 kHz
2614 @end table
2615
2616 @item width, w
2617 Specify the band-width of a filter in width_type units.
2618
2619 @item mix, m
2620 How much to use filtered signal in output. Default is 1.
2621 Range is between 0 and 1.
2622
2623 @item channels, c
2624 Specify which channels to filter, by default all available are filtered.
2625
2626 @item normalize, n
2627 Normalize biquad coefficients, by default is disabled.
2628 Enabling it will normalize magnitude response at DC to 0dB.
2629 @end table
2630
2631 @subsection Commands
2632
2633 This filter supports the following commands:
2634 @table @option
2635 @item frequency, f
2636 Change bandpass frequency.
2637 Syntax for the command is : "@var{frequency}"
2638
2639 @item width_type, t
2640 Change bandpass width_type.
2641 Syntax for the command is : "@var{width_type}"
2642
2643 @item width, w
2644 Change bandpass width.
2645 Syntax for the command is : "@var{width}"
2646
2647 @item mix, m
2648 Change bandpass mix.
2649 Syntax for the command is : "@var{mix}"
2650 @end table
2651
2652 @section bandreject
2653
2654 Apply a two-pole Butterworth band-reject filter with central
2655 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2656 The filter roll off at 6dB per octave (20dB per decade).
2657
2658 The filter accepts the following options:
2659
2660 @table @option
2661 @item frequency, f
2662 Set the filter's central frequency. Default is @code{3000}.
2663
2664 @item width_type, t
2665 Set method to specify band-width of filter.
2666 @table @option
2667 @item h
2668 Hz
2669 @item q
2670 Q-Factor
2671 @item o
2672 octave
2673 @item s
2674 slope
2675 @item k
2676 kHz
2677 @end table
2678
2679 @item width, w
2680 Specify the band-width of a filter in width_type units.
2681
2682 @item mix, m
2683 How much to use filtered signal in output. Default is 1.
2684 Range is between 0 and 1.
2685
2686 @item channels, c
2687 Specify which channels to filter, by default all available are filtered.
2688
2689 @item normalize, n
2690 Normalize biquad coefficients, by default is disabled.
2691 Enabling it will normalize magnitude response at DC to 0dB.
2692 @end table
2693
2694 @subsection Commands
2695
2696 This filter supports the following commands:
2697 @table @option
2698 @item frequency, f
2699 Change bandreject frequency.
2700 Syntax for the command is : "@var{frequency}"
2701
2702 @item width_type, t
2703 Change bandreject width_type.
2704 Syntax for the command is : "@var{width_type}"
2705
2706 @item width, w
2707 Change bandreject width.
2708 Syntax for the command is : "@var{width}"
2709
2710 @item mix, m
2711 Change bandreject mix.
2712 Syntax for the command is : "@var{mix}"
2713 @end table
2714
2715 @section bass, lowshelf
2716
2717 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2718 shelving filter with a response similar to that of a standard
2719 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2720
2721 The filter accepts the following options:
2722
2723 @table @option
2724 @item gain, g
2725 Give the gain at 0 Hz. Its useful range is about -20
2726 (for a large cut) to +20 (for a large boost).
2727 Beware of clipping when using a positive gain.
2728
2729 @item frequency, f
2730 Set the filter's central frequency and so can be used
2731 to extend or reduce the frequency range to be boosted or cut.
2732 The default value is @code{100} Hz.
2733
2734 @item width_type, t
2735 Set method to specify band-width of filter.
2736 @table @option
2737 @item h
2738 Hz
2739 @item q
2740 Q-Factor
2741 @item o
2742 octave
2743 @item s
2744 slope
2745 @item k
2746 kHz
2747 @end table
2748
2749 @item width, w
2750 Determine how steep is the filter's shelf transition.
2751
2752 @item mix, m
2753 How much to use filtered signal in output. Default is 1.
2754 Range is between 0 and 1.
2755
2756 @item channels, c
2757 Specify which channels to filter, by default all available are filtered.
2758
2759 @item normalize, n
2760 Normalize biquad coefficients, by default is disabled.
2761 Enabling it will normalize magnitude response at DC to 0dB.
2762 @end table
2763
2764 @subsection Commands
2765
2766 This filter supports the following commands:
2767 @table @option
2768 @item frequency, f
2769 Change bass frequency.
2770 Syntax for the command is : "@var{frequency}"
2771
2772 @item width_type, t
2773 Change bass width_type.
2774 Syntax for the command is : "@var{width_type}"
2775
2776 @item width, w
2777 Change bass width.
2778 Syntax for the command is : "@var{width}"
2779
2780 @item gain, g
2781 Change bass gain.
2782 Syntax for the command is : "@var{gain}"
2783
2784 @item mix, m
2785 Change bass mix.
2786 Syntax for the command is : "@var{mix}"
2787 @end table
2788
2789 @section biquad
2790
2791 Apply a biquad IIR filter with the given coefficients.
2792 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2793 are the numerator and denominator coefficients respectively.
2794 and @var{channels}, @var{c} specify which channels to filter, by default all
2795 available are filtered.
2796
2797 @subsection Commands
2798
2799 This filter supports the following commands:
2800 @table @option
2801 @item a0
2802 @item a1
2803 @item a2
2804 @item b0
2805 @item b1
2806 @item b2
2807 Change biquad parameter.
2808 Syntax for the command is : "@var{value}"
2809
2810 @item mix, m
2811 How much to use filtered signal in output. Default is 1.
2812 Range is between 0 and 1.
2813
2814 @item channels, c
2815 Specify which channels to filter, by default all available are filtered.
2816
2817 @item normalize, n
2818 Normalize biquad coefficients, by default is disabled.
2819 Enabling it will normalize magnitude response at DC to 0dB.
2820 @end table
2821
2822 @section bs2b
2823 Bauer stereo to binaural transformation, which improves headphone listening of
2824 stereo audio records.
2825
2826 To enable compilation of this filter you need to configure FFmpeg with
2827 @code{--enable-libbs2b}.
2828
2829 It accepts the following parameters:
2830 @table @option
2831
2832 @item profile
2833 Pre-defined crossfeed level.
2834 @table @option
2835
2836 @item default
2837 Default level (fcut=700, feed=50).
2838
2839 @item cmoy
2840 Chu Moy circuit (fcut=700, feed=60).
2841
2842 @item jmeier
2843 Jan Meier circuit (fcut=650, feed=95).
2844
2845 @end table
2846
2847 @item fcut
2848 Cut frequency (in Hz).
2849
2850 @item feed
2851 Feed level (in Hz).
2852
2853 @end table
2854
2855 @section channelmap
2856
2857 Remap input channels to new locations.
2858
2859 It accepts the following parameters:
2860 @table @option
2861 @item map
2862 Map channels from input to output. The argument is a '|'-separated list of
2863 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2864 @var{in_channel} form. @var{in_channel} can be either the name of the input
2865 channel (e.g. FL for front left) or its index in the input channel layout.
2866 @var{out_channel} is the name of the output channel or its index in the output
2867 channel layout. If @var{out_channel} is not given then it is implicitly an
2868 index, starting with zero and increasing by one for each mapping.
2869
2870 @item channel_layout
2871 The channel layout of the output stream.
2872 @end table
2873
2874 If no mapping is present, the filter will implicitly map input channels to
2875 output channels, preserving indices.
2876
2877 @subsection Examples
2878
2879 @itemize
2880 @item
2881 For example, assuming a 5.1+downmix input MOV file,
2882 @example
2883 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2884 @end example
2885 will create an output WAV file tagged as stereo from the downmix channels of
2886 the input.
2887
2888 @item
2889 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2890 @example
2891 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2892 @end example
2893 @end itemize
2894
2895 @section channelsplit
2896
2897 Split each channel from an input audio stream into a separate output stream.
2898
2899 It accepts the following parameters:
2900 @table @option
2901 @item channel_layout
2902 The channel layout of the input stream. The default is "stereo".
2903 @item channels
2904 A channel layout describing the channels to be extracted as separate output streams
2905 or "all" to extract each input channel as a separate stream. The default is "all".
2906
2907 Choosing channels not present in channel layout in the input will result in an error.
2908 @end table
2909
2910 @subsection Examples
2911
2912 @itemize
2913 @item
2914 For example, assuming a stereo input MP3 file,
2915 @example
2916 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2917 @end example
2918 will create an output Matroska file with two audio streams, one containing only
2919 the left channel and the other the right channel.
2920
2921 @item
2922 Split a 5.1 WAV file into per-channel files:
2923 @example
2924 ffmpeg -i in.wav -filter_complex
2925 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2926 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2927 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2928 side_right.wav
2929 @end example
2930
2931 @item
2932 Extract only LFE from a 5.1 WAV file:
2933 @example
2934 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2935 -map '[LFE]' lfe.wav
2936 @end example
2937 @end itemize
2938
2939 @section chorus
2940 Add a chorus effect to the audio.
2941
2942 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2943
2944 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2945 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2946 The modulation depth defines the range the modulated delay is played before or after
2947 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2948 sound tuned around the original one, like in a chorus where some vocals are slightly
2949 off key.
2950
2951 It accepts the following parameters:
2952 @table @option
2953 @item in_gain
2954 Set input gain. Default is 0.4.
2955
2956 @item out_gain
2957 Set output gain. Default is 0.4.
2958
2959 @item delays
2960 Set delays. A typical delay is around 40ms to 60ms.
2961
2962 @item decays
2963 Set decays.
2964
2965 @item speeds
2966 Set speeds.
2967
2968 @item depths
2969 Set depths.
2970 @end table
2971
2972 @subsection Examples
2973
2974 @itemize
2975 @item
2976 A single delay:
2977 @example
2978 chorus=0.7:0.9:55:0.4:0.25:2
2979 @end example
2980
2981 @item
2982 Two delays:
2983 @example
2984 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2985 @end example
2986
2987 @item
2988 Fuller sounding chorus with three delays:
2989 @example
2990 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
2991 @end example
2992 @end itemize
2993
2994 @section compand
2995 Compress or expand the audio's dynamic range.
2996
2997 It accepts the following parameters:
2998
2999 @table @option
3000
3001 @item attacks
3002 @item decays
3003 A list of times in seconds for each channel over which the instantaneous level
3004 of the input signal is averaged to determine its volume. @var{attacks} refers to
3005 increase of volume and @var{decays} refers to decrease of volume. For most
3006 situations, the attack time (response to the audio getting louder) should be
3007 shorter than the decay time, because the human ear is more sensitive to sudden
3008 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3009 a typical value for decay is 0.8 seconds.
3010 If specified number of attacks & decays is lower than number of channels, the last
3011 set attack/decay will be used for all remaining channels.
3012
3013 @item points
3014 A list of points for the transfer function, specified in dB relative to the
3015 maximum possible signal amplitude. Each key points list must be defined using
3016 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3017 @code{x0/y0 x1/y1 x2/y2 ....}
3018
3019 The input values must be in strictly increasing order but the transfer function
3020 does not have to be monotonically rising. The point @code{0/0} is assumed but
3021 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3022 function are @code{-70/-70|-60/-20|1/0}.
3023
3024 @item soft-knee
3025 Set the curve radius in dB for all joints. It defaults to 0.01.
3026
3027 @item gain
3028 Set the additional gain in dB to be applied at all points on the transfer
3029 function. This allows for easy adjustment of the overall gain.
3030 It defaults to 0.
3031
3032 @item volume
3033 Set an initial volume, in dB, to be assumed for each channel when filtering
3034 starts. This permits the user to supply a nominal level initially, so that, for
3035 example, a very large gain is not applied to initial signal levels before the
3036 companding has begun to operate. A typical value for audio which is initially
3037 quiet is -90 dB. It defaults to 0.
3038
3039 @item delay
3040 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3041 delayed before being fed to the volume adjuster. Specifying a delay
3042 approximately equal to the attack/decay times allows the filter to effectively
3043 operate in predictive rather than reactive mode. It defaults to 0.
3044
3045 @end table
3046
3047 @subsection Examples
3048
3049 @itemize
3050 @item
3051 Make music with both quiet and loud passages suitable for listening to in a
3052 noisy environment:
3053 @example
3054 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3055 @end example
3056
3057 Another example for audio with whisper and explosion parts:
3058 @example
3059 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3060 @end example
3061
3062 @item
3063 A noise gate for when the noise is at a lower level than the signal:
3064 @example
3065 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3066 @end example
3067
3068 @item
3069 Here is another noise gate, this time for when the noise is at a higher level
3070 than the signal (making it, in some ways, similar to squelch):
3071 @example
3072 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3073 @end example
3074
3075 @item
3076 2:1 compression starting at -6dB:
3077 @example
3078 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3079 @end example
3080
3081 @item
3082 2:1 compression starting at -9dB:
3083 @example
3084 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3085 @end example
3086
3087 @item
3088 2:1 compression starting at -12dB:
3089 @example
3090 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3091 @end example
3092
3093 @item
3094 2:1 compression starting at -18dB:
3095 @example
3096 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3097 @end example
3098
3099 @item
3100 3:1 compression starting at -15dB:
3101 @example
3102 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3103 @end example
3104
3105 @item
3106 Compressor/Gate:
3107 @example
3108 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3109 @end example
3110
3111 @item
3112 Expander:
3113 @example
3114 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
3115 @end example
3116
3117 @item
3118 Hard limiter at -6dB:
3119 @example
3120 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3121 @end example
3122
3123 @item
3124 Hard limiter at -12dB:
3125 @example
3126 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3127 @end example
3128
3129 @item
3130 Hard noise gate at -35 dB:
3131 @example
3132 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3133 @end example
3134
3135 @item
3136 Soft limiter:
3137 @example
3138 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3139 @end example
3140 @end itemize
3141
3142 @section compensationdelay
3143
3144 Compensation Delay Line is a metric based delay to compensate differing
3145 positions of microphones or speakers.
3146
3147 For example, you have recorded guitar with two microphones placed in
3148 different locations. Because the front of sound wave has fixed speed in
3149 normal conditions, the phasing of microphones can vary and depends on
3150 their location and interposition. The best sound mix can be achieved when
3151 these microphones are in phase (synchronized). Note that a distance of
3152 ~30 cm between microphones makes one microphone capture the signal in
3153 antiphase to the other microphone. That makes the final mix sound moody.
3154 This filter helps to solve phasing problems by adding different delays
3155 to each microphone track and make them synchronized.
3156
3157 The best result can be reached when you take one track as base and
3158 synchronize other tracks one by one with it.
3159 Remember that synchronization/delay tolerance depends on sample rate, too.
3160 Higher sample rates will give more tolerance.
3161
3162 The filter accepts the following parameters:
3163
3164 @table @option
3165 @item mm
3166 Set millimeters distance. This is compensation distance for fine tuning.
3167 Default is 0.
3168
3169 @item cm
3170 Set cm distance. This is compensation distance for tightening distance setup.
3171 Default is 0.
3172
3173 @item m
3174 Set meters distance. This is compensation distance for hard distance setup.
3175 Default is 0.
3176
3177 @item dry
3178 Set dry amount. Amount of unprocessed (dry) signal.
3179 Default is 0.
3180
3181 @item wet
3182 Set wet amount. Amount of processed (wet) signal.
3183 Default is 1.
3184
3185 @item temp
3186 Set temperature in degrees Celsius. This is the temperature of the environment.
3187 Default is 20.
3188 @end table
3189
3190 @section crossfeed
3191 Apply headphone crossfeed filter.
3192
3193 Crossfeed is the process of blending the left and right channels of stereo
3194 audio recording.
3195 It is mainly used to reduce extreme stereo separation of low frequencies.
3196
3197 The intent is to produce more speaker like sound to the listener.
3198
3199 The filter accepts the following options:
3200
3201 @table @option
3202 @item strength
3203 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3204 This sets gain of low shelf filter for side part of stereo image.
3205 Default is -6dB. Max allowed is -30db when strength is set to 1.
3206
3207 @item range
3208 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3209 This sets cut off frequency of low shelf filter. Default is cut off near
3210 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3211
3212 @item level_in
3213 Set input gain. Default is 0.9.
3214
3215 @item level_out
3216 Set output gain. Default is 1.
3217 @end table
3218
3219 @section crystalizer
3220 Simple algorithm to expand audio dynamic range.
3221
3222 The filter accepts the following options:
3223
3224 @table @option
3225 @item i
3226 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3227 (unchanged sound) to 10.0 (maximum effect).
3228
3229 @item c
3230 Enable clipping. By default is enabled.
3231 @end table
3232
3233 @subsection Commands
3234
3235 This filter supports the all above options as @ref{commands}.
3236
3237 @section dcshift
3238 Apply a DC shift to the audio.
3239
3240 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3241 in the recording chain) from the audio. The effect of a DC offset is reduced
3242 headroom and hence volume. The @ref{astats} filter can be used to determine if
3243 a signal has a DC offset.
3244
3245 @table @option
3246 @item shift
3247 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3248 the audio.
3249
3250 @item limitergain
3251 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3252 used to prevent clipping.
3253 @end table
3254
3255 @section deesser
3256
3257 Apply de-essing to the audio samples.
3258
3259 @table @option
3260 @item i
3261 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3262 Default is 0.
3263
3264 @item m
3265 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3266 Default is 0.5.
3267
3268 @item f
3269 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3270 Default is 0.5.
3271
3272 @item s
3273 Set the output mode.
3274
3275 It accepts the following values:
3276 @table @option
3277 @item i
3278 Pass input unchanged.
3279
3280 @item o
3281 Pass ess filtered out.
3282
3283 @item e
3284 Pass only ess.
3285
3286 Default value is @var{o}.
3287 @end table
3288
3289 @end table
3290
3291 @section drmeter
3292 Measure audio dynamic range.
3293
3294 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3295 is found in transition material. And anything less that 8 have very poor dynamics
3296 and is very compressed.
3297
3298 The filter accepts the following options:
3299
3300 @table @option
3301 @item length
3302 Set window length in seconds used to split audio into segments of equal length.
3303 Default is 3 seconds.
3304 @end table
3305
3306 @section dynaudnorm
3307 Dynamic Audio Normalizer.
3308
3309 This filter applies a certain amount of gain to the input audio in order
3310 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3311 contrast to more "simple" normalization algorithms, the Dynamic Audio
3312 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3313 This allows for applying extra gain to the "quiet" sections of the audio
3314 while avoiding distortions or clipping the "loud" sections. In other words:
3315 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3316 sections, in the sense that the volume of each section is brought to the
3317 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3318 this goal *without* applying "dynamic range compressing". It will retain 100%
3319 of the dynamic range *within* each section of the audio file.
3320
3321 @table @option
3322 @item framelen, f
3323 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3324 Default is 500 milliseconds.
3325 The Dynamic Audio Normalizer processes the input audio in small chunks,
3326 referred to as frames. This is required, because a peak magnitude has no
3327 meaning for just a single sample value. Instead, we need to determine the
3328 peak magnitude for a contiguous sequence of sample values. While a "standard"
3329 normalizer would simply use the peak magnitude of the complete file, the
3330 Dynamic Audio Normalizer determines the peak magnitude individually for each
3331 frame. The length of a frame is specified in milliseconds. By default, the
3332 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3333 been found to give good results with most files.
3334 Note that the exact frame length, in number of samples, will be determined
3335 automatically, based on the sampling rate of the individual input audio file.
3336
3337 @item gausssize, g
3338 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3339 number. Default is 31.
3340 Probably the most important parameter of the Dynamic Audio Normalizer is the
3341 @code{window size} of the Gaussian smoothing filter. The filter's window size
3342 is specified in frames, centered around the current frame. For the sake of
3343 simplicity, this must be an odd number. Consequently, the default value of 31
3344 takes into account the current frame, as well as the 15 preceding frames and
3345 the 15 subsequent frames. Using a larger window results in a stronger
3346 smoothing effect and thus in less gain variation, i.e. slower gain
3347 adaptation. Conversely, using a smaller window results in a weaker smoothing
3348 effect and thus in more gain variation, i.e. faster gain adaptation.
3349 In other words, the more you increase this value, the more the Dynamic Audio
3350 Normalizer will behave like a "traditional" normalization filter. On the
3351 contrary, the more you decrease this value, the more the Dynamic Audio
3352 Normalizer will behave like a dynamic range compressor.
3353
3354 @item peak, p
3355 Set the target peak value. This specifies the highest permissible magnitude
3356 level for the normalized audio input. This filter will try to approach the
3357 target peak magnitude as closely as possible, but at the same time it also
3358 makes sure that the normalized signal will never exceed the peak magnitude.
3359 A frame's maximum local gain factor is imposed directly by the target peak
3360 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3361 It is not recommended to go above this value.
3362
3363 @item maxgain, m
3364 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3365 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3366 factor for each input frame, i.e. the maximum gain factor that does not
3367 result in clipping or distortion. The maximum gain factor is determined by
3368 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3369 additionally bounds the frame's maximum gain factor by a predetermined
3370 (global) maximum gain factor. This is done in order to avoid excessive gain
3371 factors in "silent" or almost silent frames. By default, the maximum gain
3372 factor is 10.0, For most inputs the default value should be sufficient and
3373 it usually is not recommended to increase this value. Though, for input
3374 with an extremely low overall volume level, it may be necessary to allow even
3375 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3376 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3377 Instead, a "sigmoid" threshold function will be applied. This way, the
3378 gain factors will smoothly approach the threshold value, but never exceed that
3379 value.
3380
3381 @item targetrms, r
3382 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3383 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3384 This means that the maximum local gain factor for each frame is defined
3385 (only) by the frame's highest magnitude sample. This way, the samples can
3386 be amplified as much as possible without exceeding the maximum signal
3387 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3388 Normalizer can also take into account the frame's root mean square,
3389 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3390 determine the power of a time-varying signal. It is therefore considered
3391 that the RMS is a better approximation of the "perceived loudness" than
3392 just looking at the signal's peak magnitude. Consequently, by adjusting all
3393 frames to a constant RMS value, a uniform "perceived loudness" can be
3394 established. If a target RMS value has been specified, a frame's local gain
3395 factor is defined as the factor that would result in exactly that RMS value.
3396 Note, however, that the maximum local gain factor is still restricted by the
3397 frame's highest magnitude sample, in order to prevent clipping.
3398
3399 @item coupling, n
3400 Enable channels coupling. By default is enabled.
3401 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3402 amount. This means the same gain factor will be applied to all channels, i.e.
3403 the maximum possible gain factor is determined by the "loudest" channel.
3404 However, in some recordings, it may happen that the volume of the different
3405 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3406 In this case, this option can be used to disable the channel coupling. This way,
3407 the gain factor will be determined independently for each channel, depending
3408 only on the individual channel's highest magnitude sample. This allows for
3409 harmonizing the volume of the different channels.
3410
3411 @item correctdc, c
3412 Enable DC bias correction. By default is disabled.
3413 An audio signal (in the time domain) is a sequence of sample values.
3414 In the Dynamic Audio Normalizer these sample values are represented in the
3415 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3416 audio signal, or "waveform", should be centered around the zero point.
3417 That means if we calculate the mean value of all samples in a file, or in a
3418 single frame, then the result should be 0.0 or at least very close to that
3419 value. If, however, there is a significant deviation of the mean value from
3420 0.0, in either positive or negative direction, this is referred to as a
3421 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3422 Audio Normalizer provides optional DC bias correction.
3423 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3424 the mean value, or "DC correction" offset, of each input frame and subtract
3425 that value from all of the frame's sample values which ensures those samples
3426 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3427 boundaries, the DC correction offset values will be interpolated smoothly
3428 between neighbouring frames.
3429
3430 @item altboundary, b
3431 Enable alternative boundary mode. By default is disabled.
3432 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3433 around each frame. This includes the preceding frames as well as the
3434 subsequent frames. However, for the "boundary" frames, located at the very
3435 beginning and at the very end of the audio file, not all neighbouring
3436 frames are available. In particular, for the first few frames in the audio
3437 file, the preceding frames are not known. And, similarly, for the last few
3438 frames in the audio file, the subsequent frames are not known. Thus, the
3439 question arises which gain factors should be assumed for the missing frames
3440 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3441 to deal with this situation. The default boundary mode assumes a gain factor
3442 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3443 "fade out" at the beginning and at the end of the input, respectively.
3444
3445 @item compress, s
3446 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3447 By default, the Dynamic Audio Normalizer does not apply "traditional"
3448 compression. This means that signal peaks will not be pruned and thus the
3449 full dynamic range will be retained within each local neighbourhood. However,
3450 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3451 normalization algorithm with a more "traditional" compression.
3452 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3453 (thresholding) function. If (and only if) the compression feature is enabled,
3454 all input frames will be processed by a soft knee thresholding function prior
3455 to the actual normalization process. Put simply, the thresholding function is
3456 going to prune all samples whose magnitude exceeds a certain threshold value.
3457 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3458 value. Instead, the threshold value will be adjusted for each individual
3459 frame.
3460 In general, smaller parameters result in stronger compression, and vice versa.
3461 Values below 3.0 are not recommended, because audible distortion may appear.
3462
3463 @item threshold, t
3464 Set the target threshold value. This specifies the lowest permissible
3465 magnitude level for the audio input which will be normalized.
3466 If input frame volume is above this value frame will be normalized.
3467 Otherwise frame may not be normalized at all. The default value is set
3468 to 0, which means all input frames will be normalized.
3469 This option is mostly useful if digital noise is not wanted to be amplified.
3470 @end table
3471
3472 @subsection Commands
3473
3474 This filter supports the all above options as @ref{commands}.
3475
3476 @section earwax
3477
3478 Make audio easier to listen to on headphones.
3479
3480 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3481 so that when listened to on headphones the stereo image is moved from
3482 inside your head (standard for headphones) to outside and in front of
3483 the listener (standard for speakers).
3484
3485 Ported from SoX.
3486
3487 @section equalizer
3488
3489 Apply a two-pole peaking equalisation (EQ) filter. With this
3490 filter, the signal-level at and around a selected frequency can
3491 be increased or decreased, whilst (unlike bandpass and bandreject
3492 filters) that at all other frequencies is unchanged.
3493
3494 In order to produce complex equalisation curves, this filter can
3495 be given several times, each with a different central frequency.
3496
3497 The filter accepts the following options:
3498
3499 @table @option
3500 @item frequency, f
3501 Set the filter's central frequency in Hz.
3502
3503 @item width_type, t
3504 Set method to specify band-width of filter.
3505 @table @option
3506 @item h
3507 Hz
3508 @item q
3509 Q-Factor
3510 @item o
3511 octave
3512 @item s
3513 slope
3514 @item k
3515 kHz
3516 @end table
3517
3518 @item width, w
3519 Specify the band-width of a filter in width_type units.
3520
3521 @item gain, g
3522 Set the required gain or attenuation in dB.
3523 Beware of clipping when using a positive gain.
3524
3525 @item mix, m
3526 How much to use filtered signal in output. Default is 1.
3527 Range is between 0 and 1.
3528
3529 @item channels, c
3530 Specify which channels to filter, by default all available are filtered.
3531
3532 @item normalize, n
3533 Normalize biquad coefficients, by default is disabled.
3534 Enabling it will normalize magnitude response at DC to 0dB.
3535 @end table
3536
3537 @subsection Examples
3538 @itemize
3539 @item
3540 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3541 @example
3542 equalizer=f=1000:t=h:width=200:g=-10
3543 @end example
3544
3545 @item
3546 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3547 @example
3548 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3549 @end example
3550 @end itemize
3551
3552 @subsection Commands
3553
3554 This filter supports the following commands:
3555 @table @option
3556 @item frequency, f
3557 Change equalizer frequency.
3558 Syntax for the command is : "@var{frequency}"
3559
3560 @item width_type, t
3561 Change equalizer width_type.
3562 Syntax for the command is : "@var{width_type}"
3563
3564 @item width, w
3565 Change equalizer width.
3566 Syntax for the command is : "@var{width}"
3567
3568 @item gain, g
3569 Change equalizer gain.
3570 Syntax for the command is : "@var{gain}"
3571
3572 @item mix, m
3573 Change equalizer mix.
3574 Syntax for the command is : "@var{mix}"
3575 @end table
3576
3577 @section extrastereo
3578
3579 Linearly increases the difference between left and right channels which
3580 adds some sort of "live" effect to playback.
3581
3582 The filter accepts the following options:
3583
3584 @table @option
3585 @item m
3586 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3587 (average of both channels), with 1.0 sound will be unchanged, with
3588 -1.0 left and right channels will be swapped.
3589
3590 @item c
3591 Enable clipping. By default is enabled.
3592 @end table
3593
3594 @subsection Commands
3595
3596 This filter supports the all above options as @ref{commands}.
3597
3598 @section firequalizer
3599 Apply FIR Equalization using arbitrary frequency response.
3600
3601 The filter accepts the following option:
3602
3603 @table @option
3604 @item gain
3605 Set gain curve equation (in dB). The expression can contain variables:
3606 @table @option
3607 @item f
3608 the evaluated frequency
3609 @item sr
3610 sample rate
3611 @item ch
3612 channel number, set to 0 when multichannels evaluation is disabled
3613 @item chid
3614 channel id, see libavutil/channel_layout.h, set to the first channel id when
3615 multichannels evaluation is disabled
3616 @item chs
3617 number of channels
3618 @item chlayout
3619 channel_layout, see libavutil/channel_layout.h
3620
3621 @end table
3622 and functions:
3623 @table @option
3624 @item gain_interpolate(f)
3625 interpolate gain on frequency f based on gain_entry
3626 @item cubic_interpolate(f)
3627 same as gain_interpolate, but smoother
3628 @end table
3629 This option is also available as command. Default is @code{gain_interpolate(f)}.
3630
3631 @item gain_entry
3632 Set gain entry for gain_interpolate function. The expression can
3633 contain functions:
3634 @table @option
3635 @item entry(f, g)
3636 store gain entry at frequency f with value g
3637 @end table
3638 This option is also available as command.
3639
3640 @item delay
3641 Set filter delay in seconds. Higher value means more accurate.
3642 Default is @code{0.01}.
3643
3644 @item accuracy
3645 Set filter accuracy in Hz. Lower value means more accurate.
3646 Default is @code{5}.
3647
3648 @item wfunc
3649 Set window function. Acceptable values are:
3650 @table @option
3651 @item rectangular
3652 rectangular window, useful when gain curve is already smooth
3653 @item hann
3654 hann window (default)
3655 @item hamming
3656 hamming window
3657 @item blackman
3658 blackman window
3659 @item nuttall3
3660 3-terms continuous 1st derivative nuttall window
3661 @item mnuttall3
3662 minimum 3-terms discontinuous nuttall window
3663 @item nuttall
3664 4-terms continuous 1st derivative nuttall window
3665 @item bnuttall
3666 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3667 @item bharris
3668 blackman-harris window
3669 @item tukey
3670 tukey window
3671 @end table
3672
3673 @item fixed
3674 If enabled, use fixed number of audio samples. This improves speed when
3675 filtering with large delay. Default is disabled.
3676
3677 @item multi
3678 Enable multichannels evaluation on gain. Default is disabled.
3679
3680 @item zero_phase
3681 Enable zero phase mode by subtracting timestamp to compensate delay.
3682 Default is disabled.
3683
3684 @item scale
3685 Set scale used by gain. Acceptable values are:
3686 @table @option
3687 @item linlin
3688 linear frequency, linear gain
3689 @item linlog
3690 linear frequency, logarithmic (in dB) gain (default)
3691 @item loglin
3692 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3693 @item loglog
3694 logarithmic frequency, logarithmic gain
3695 @end table
3696
3697 @item dumpfile
3698 Set file for dumping, suitable for gnuplot.
3699
3700 @item dumpscale
3701 Set scale for dumpfile. Acceptable values are same with scale option.
3702 Default is linlog.
3703
3704 @item fft2
3705 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3706 Default is disabled.
3707
3708 @item min_phase
3709 Enable minimum phase impulse response. Default is disabled.
3710 @end table
3711
3712 @subsection Examples
3713 @itemize
3714 @item
3715 lowpass at 1000 Hz:
3716 @example
3717 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3718 @end example
3719 @item
3720 lowpass at 1000 Hz with gain_entry:
3721 @example
3722 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3723 @end example
3724 @item
3725 custom equalization:
3726 @example
3727 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3728 @end example
3729 @item
3730 higher delay with zero phase to compensate delay:
3731 @example
3732 firequalizer=delay=0.1:fixed=on:zero_phase=on
3733 @end example
3734 @item
3735 lowpass on left channel, highpass on right channel:
3736 @example
3737 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3738 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3739 @end example
3740 @end itemize
3741
3742 @section flanger
3743 Apply a flanging effect to the audio.
3744
3745 The filter accepts the following options:
3746
3747 @table @option
3748 @item delay
3749 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3750
3751 @item depth
3752 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3753
3754 @item regen
3755 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3756 Default value is 0.
3757
3758 @item width
3759 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3760 Default value is 71.
3761
3762 @item speed
3763 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3764
3765 @item shape
3766 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3767 Default value is @var{sinusoidal}.
3768
3769 @item phase
3770 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3771 Default value is 25.
3772
3773 @item interp
3774 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3775 Default is @var{linear}.
3776 @end table
3777
3778 @section haas
3779 Apply Haas effect to audio.
3780
3781 Note that this makes most sense to apply on mono signals.
3782 With this filter applied to mono signals it give some directionality and
3783 stretches its stereo image.
3784
3785 The filter accepts the following options:
3786
3787 @table @option
3788 @item level_in
3789 Set input level. By default is @var{1}, or 0dB
3790
3791 @item level_out
3792 Set output level. By default is @var{1}, or 0dB.
3793
3794 @item side_gain
3795 Set gain applied to side part of signal. By default is @var{1}.
3796
3797 @item middle_source
3798 Set kind of middle source. Can be one of the following:
3799
3800 @table @samp
3801 @item left
3802 Pick left channel.
3803
3804 @item right
3805 Pick right channel.
3806
3807 @item mid
3808 Pick middle part signal of stereo image.
3809
3810 @item side
3811 Pick side part signal of stereo image.
3812 @end table
3813
3814 @item middle_phase
3815 Change middle phase. By default is disabled.
3816
3817 @item left_delay
3818 Set left channel delay. By default is @var{2.05} milliseconds.
3819
3820 @item left_balance
3821 Set left channel balance. By default is @var{-1}.
3822
3823 @item left_gain
3824 Set left channel gain. By default is @var{1}.
3825
3826 @item left_phase
3827 Change left phase. By default is disabled.
3828
3829 @item right_delay
3830 Set right channel delay. By defaults is @var{2.12} milliseconds.
3831
3832 @item right_balance
3833 Set right channel balance. By default is @var{1}.
3834
3835 @item right_gain
3836 Set right channel gain. By default is @var{1}.
3837
3838 @item right_phase
3839 Change right phase. By default is enabled.
3840 @end table
3841
3842 @section hdcd
3843
3844 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3845 embedded HDCD codes is expanded into a 20-bit PCM stream.
3846
3847 The filter supports the Peak Extend and Low-level Gain Adjustment features
3848 of HDCD, and detects the Transient Filter flag.
3849
3850 @example
3851 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3852 @end example
3853
3854 When using the filter with wav, note the default encoding for wav is 16-bit,
3855 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3856 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3857 @example
3858 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3859 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3860 @end example
3861
3862 The filter accepts the following options:
3863
3864 @table @option
3865 @item disable_autoconvert
3866 Disable any automatic format conversion or resampling in the filter graph.
3867
3868 @item process_stereo
3869 Process the stereo channels together. If target_gain does not match between
3870 channels, consider it invalid and use the last valid target_gain.
3871
3872 @item cdt_ms
3873 Set the code detect timer period in ms.
3874
3875 @item force_pe
3876 Always extend peaks above -3dBFS even if PE isn't signaled.
3877
3878 @item analyze_mode
3879 Replace audio with a solid tone and adjust the amplitude to signal some
3880 specific aspect of the decoding process. The output file can be loaded in
3881 an audio editor alongside the original to aid analysis.
3882
3883 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3884
3885 Modes are:
3886 @table @samp
3887 @item 0, off
3888 Disabled
3889 @item 1, lle
3890 Gain adjustment level at each sample
3891 @item 2, pe
3892 Samples where peak extend occurs
3893 @item 3, cdt
3894 Samples where the code detect timer is active
3895 @item 4, tgm
3896 Samples where the target gain does not match between channels
3897 @end table
3898 @end table
3899
3900 @section headphone
3901
3902 Apply head-related transfer functions (HRTFs) to create virtual
3903 loudspeakers around the user for binaural listening via headphones.
3904 The HRIRs are provided via additional streams, for each channel
3905 one stereo input stream is needed.
3906
3907 The filter accepts the following options:
3908
3909 @table @option
3910 @item map
3911 Set mapping of input streams for convolution.
3912 The argument is a '|'-separated list of channel names in order as they
3913 are given as additional stream inputs for filter.
3914 This also specify number of input streams. Number of input streams
3915 must be not less than number of channels in first stream plus one.
3916
3917 @item gain
3918 Set gain applied to audio. Value is in dB. Default is 0.
3919
3920 @item type
3921 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3922 processing audio in time domain which is slow.
3923 @var{freq} is processing audio in frequency domain which is fast.
3924 Default is @var{freq}.
3925
3926 @item lfe
3927 Set custom gain for LFE channels. Value is in dB. Default is 0.
3928
3929 @item size
3930 Set size of frame in number of samples which will be processed at once.
3931 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3932
3933 @item hrir
3934 Set format of hrir stream.
3935 Default value is @var{stereo}. Alternative value is @var{multich}.
3936 If value is set to @var{stereo}, number of additional streams should
3937 be greater or equal to number of input channels in first input stream.
3938 Also each additional stream should have stereo number of channels.
3939 If value is set to @var{multich}, number of additional streams should
3940 be exactly one. Also number of input channels of additional stream
3941 should be equal or greater than twice number of channels of first input
3942 stream.
3943 @end table
3944
3945 @subsection Examples
3946
3947 @itemize
3948 @item
3949 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3950 each amovie filter use stereo file with IR coefficients as input.
3951 The files give coefficients for each position of virtual loudspeaker:
3952 @example
3953 ffmpeg -i input.wav
3954 -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"
3955 output.wav
3956 @end example
3957
3958 @item
3959 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3960 but now in @var{multich} @var{hrir} format.
3961 @example
3962 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"
3963 output.wav
3964 @end example
3965 @end itemize
3966
3967 @section highpass
3968
3969 Apply a high-pass filter with 3dB point frequency.
3970 The filter can be either single-pole, or double-pole (the default).
3971 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3972
3973 The filter accepts the following options:
3974
3975 @table @option
3976 @item frequency, f
3977 Set frequency in Hz. Default is 3000.
3978
3979 @item poles, p
3980 Set number of poles. Default is 2.
3981
3982 @item width_type, t
3983 Set method to specify band-width of filter.
3984 @table @option
3985 @item h
3986 Hz
3987 @item q
3988 Q-Factor
3989 @item o
3990 octave
3991 @item s
3992 slope
3993 @item k
3994 kHz
3995 @end table
3996
3997 @item width, w
3998 Specify the band-width of a filter in width_type units.
3999 Applies only to double-pole filter.
4000 The default is 0.707q and gives a Butterworth response.
4001
4002 @item mix, m
4003 How much to use filtered signal in output. Default is 1.
4004 Range is between 0 and 1.
4005
4006 @item channels, c
4007 Specify which channels to filter, by default all available are filtered.
4008
4009 @item normalize, n
4010 Normalize biquad coefficients, by default is disabled.
4011 Enabling it will normalize magnitude response at DC to 0dB.
4012 @end table
4013
4014 @subsection Commands
4015
4016 This filter supports the following commands:
4017 @table @option
4018 @item frequency, f
4019 Change highpass frequency.
4020 Syntax for the command is : "@var{frequency}"
4021
4022 @item width_type, t
4023 Change highpass width_type.
4024 Syntax for the command is : "@var{width_type}"
4025
4026 @item width, w
4027 Change highpass width.
4028 Syntax for the command is : "@var{width}"
4029
4030 @item mix, m
4031 Change highpass mix.
4032 Syntax for the command is : "@var{mix}"
4033 @end table
4034
4035 @section join
4036
4037 Join multiple input streams into one multi-channel stream.
4038
4039 It accepts the following parameters:
4040 @table @option
4041
4042 @item inputs
4043 The number of input streams. It defaults to 2.
4044
4045 @item channel_layout
4046 The desired output channel layout. It defaults to stereo.
4047
4048 @item map
4049 Map channels from inputs to output. The argument is a '|'-separated list of
4050 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4051 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4052 can be either the name of the input channel (e.g. FL for front left) or its
4053 index in the specified input stream. @var{out_channel} is the name of the output
4054 channel.
4055 @end table
4056
4057 The filter will attempt to guess the mappings when they are not specified
4058 explicitly. It does so by first trying to find an unused matching input channel
4059 and if that fails it picks the first unused input channel.
4060
4061 Join 3 inputs (with properly set channel layouts):
4062 @example
4063 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4064 @end example
4065
4066 Build a 5.1 output from 6 single-channel streams:
4067 @example
4068 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4069 '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'
4070 out
4071 @end example
4072
4073 @section ladspa
4074
4075 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4076
4077 To enable compilation of this filter you need to configure FFmpeg with
4078 @code{--enable-ladspa}.
4079
4080 @table @option
4081 @item file, f
4082 Specifies the name of LADSPA plugin library to load. If the environment
4083 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4084 each one of the directories specified by the colon separated list in
4085 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4086 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4087 @file{/usr/lib/ladspa/}.
4088
4089 @item plugin, p
4090 Specifies the plugin within the library. Some libraries contain only
4091 one plugin, but others contain many of them. If this is not set filter
4092 will list all available plugins within the specified library.
4093
4094 @item controls, c
4095 Set the '|' separated list of controls which are zero or more floating point
4096 values that determine the behavior of the loaded plugin (for example delay,
4097 threshold or gain).
4098 Controls need to be defined using the following syntax:
4099 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4100 @var{valuei} is the value set on the @var{i}-th control.
4101 Alternatively they can be also defined using the following syntax:
4102 @var{value0}|@var{value1}|@var{value2}|..., where
4103 @var{valuei} is the value set on the @var{i}-th control.
4104 If @option{controls} is set to @code{help}, all available controls and
4105 their valid ranges are printed.
4106
4107 @item sample_rate, s
4108 Specify the sample rate, default to 44100. Only used if plugin have
4109 zero inputs.
4110
4111 @item nb_samples, n
4112 Set the number of samples per channel per each output frame, default
4113 is 1024. Only used if plugin have zero inputs.
4114
4115 @item duration, d
4116 Set the minimum duration of the sourced audio. See
4117 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4118 for the accepted syntax.
4119 Note that the resulting duration may be greater than the specified duration,
4120 as the generated audio is always cut at the end of a complete frame.
4121 If not specified, or the expressed duration is negative, the audio is
4122 supposed to be generated forever.
4123 Only used if plugin have zero inputs.
4124
4125 @end table
4126
4127 @subsection Examples
4128
4129 @itemize
4130 @item
4131 List all available plugins within amp (LADSPA example plugin) library:
4132 @example
4133 ladspa=file=amp
4134 @end example
4135
4136 @item
4137 List all available controls and their valid ranges for @code{vcf_notch}
4138 plugin from @code{VCF} library:
4139 @example
4140 ladspa=f=vcf:p=vcf_notch:c=help
4141 @end example
4142
4143 @item
4144 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4145 plugin library:
4146 @example
4147 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4148 @end example
4149
4150 @item
4151 Add reverberation to the audio using TAP-plugins
4152 (Tom's Audio Processing plugins):
4153 @example
4154 ladspa=file=tap_reverb:tap_reverb
4155 @end example
4156
4157 @item
4158 Generate white noise, with 0.2 amplitude:
4159 @example
4160 ladspa=file=cmt:noise_source_white:c=c0=.2
4161 @end example
4162
4163 @item
4164 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4165 @code{C* Audio Plugin Suite} (CAPS) library:
4166 @example
4167 ladspa=file=caps:Click:c=c1=20'
4168 @end example
4169
4170 @item
4171 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4172 @example
4173 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4174 @end example
4175
4176 @item
4177 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4178 @code{SWH Plugins} collection:
4179 @example
4180 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4181 @end example
4182
4183 @item
4184 Attenuate low frequencies using Multiband EQ from Steve Harris
4185 @code{SWH Plugins} collection:
4186 @example
4187 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4188 @end example
4189
4190 @item
4191 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4192 (CAPS) library:
4193 @example
4194 ladspa=caps:Narrower
4195 @end example
4196
4197 @item
4198 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4199 @example
4200 ladspa=caps:White:.2
4201 @end example
4202
4203 @item
4204 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4205 @example
4206 ladspa=caps:Fractal:c=c1=1
4207 @end example
4208
4209 @item
4210 Dynamic volume normalization using @code{VLevel} plugin:
4211 @example
4212 ladspa=vlevel-ladspa:vlevel_mono
4213 @end example
4214 @end itemize
4215
4216 @subsection Commands
4217
4218 This filter supports the following commands:
4219 @table @option
4220 @item cN
4221 Modify the @var{N}-th control value.
4222
4223 If the specified value is not valid, it is ignored and prior one is kept.
4224 @end table
4225
4226 @section loudnorm
4227
4228 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4229 Support for both single pass (livestreams, files) and double pass (files) modes.
4230 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4231 detect true peaks, the audio stream will be upsampled to 192 kHz.
4232 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4233
4234 The filter accepts the following options:
4235
4236 @table @option
4237 @item I, i
4238 Set integrated loudness target.
4239 Range is -70.0 - -5.0. Default value is -24.0.
4240
4241 @item LRA, lra
4242 Set loudness range target.
4243 Range is 1.0 - 20.0. Default value is 7.0.
4244
4245 @item TP, tp
4246 Set maximum true peak.
4247 Range is -9.0 - +0.0. Default value is -2.0.
4248
4249 @item measured_I, measured_i
4250 Measured IL of input file.
4251 Range is -99.0 - +0.0.
4252
4253 @item measured_LRA, measured_lra
4254 Measured LRA of input file.
4255 Range is  0.0 - 99.0.
4256
4257 @item measured_TP, measured_tp
4258 Measured true peak of input file.
4259 Range is  -99.0 - +99.0.
4260
4261 @item measured_thresh
4262 Measured threshold of input file.
4263 Range is -99.0 - +0.0.
4264
4265 @item offset
4266 Set offset gain. Gain is applied before the true-peak limiter.
4267 Range is  -99.0 - +99.0. Default is +0.0.
4268
4269 @item linear
4270 Normalize by linearly scaling the source audio.
4271 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4272 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4273 be lower than source LRA and the change in integrated loudness shouldn't
4274 result in a true peak which exceeds the target TP. If any of these
4275 conditions aren't met, normalization mode will revert to @var{dynamic}.
4276 Options are @code{true} or @code{false}. Default is @code{true}.
4277
4278 @item dual_mono
4279 Treat mono input files as "dual-mono". If a mono file is intended for playback
4280 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4281 If set to @code{true}, this option will compensate for this effect.
4282 Multi-channel input files are not affected by this option.
4283 Options are true or false. Default is false.
4284
4285 @item print_format
4286 Set print format for stats. Options are summary, json, or none.
4287 Default value is none.
4288 @end table
4289
4290 @section lowpass
4291
4292 Apply a low-pass filter with 3dB point frequency.
4293 The filter can be either single-pole or double-pole (the default).
4294 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4295
4296 The filter accepts the following options:
4297
4298 @table @option
4299 @item frequency, f
4300 Set frequency in Hz. Default is 500.
4301
4302 @item poles, p
4303 Set number of poles. Default is 2.
4304
4305 @item width_type, t
4306 Set method to specify band-width of filter.
4307 @table @option
4308 @item h
4309 Hz
4310 @item q
4311 Q-Factor
4312 @item o
4313 octave
4314 @item s
4315 slope
4316 @item k
4317 kHz
4318 @end table
4319
4320 @item width, w
4321 Specify the band-width of a filter in width_type units.
4322 Applies only to double-pole filter.
4323 The default is 0.707q and gives a Butterworth response.
4324
4325 @item mix, m
4326 How much to use filtered signal in output. Default is 1.
4327 Range is between 0 and 1.
4328
4329 @item channels, c
4330 Specify which channels to filter, by default all available are filtered.
4331
4332 @item normalize, n
4333 Normalize biquad coefficients, by default is disabled.
4334 Enabling it will normalize magnitude response at DC to 0dB.
4335 @end table
4336
4337 @subsection Examples
4338 @itemize
4339 @item
4340 Lowpass only LFE channel, it LFE is not present it does nothing:
4341 @example
4342 lowpass=c=LFE
4343 @end example
4344 @end itemize
4345
4346 @subsection Commands
4347
4348 This filter supports the following commands:
4349 @table @option
4350 @item frequency, f
4351 Change lowpass frequency.
4352 Syntax for the command is : "@var{frequency}"
4353
4354 @item width_type, t
4355 Change lowpass width_type.
4356 Syntax for the command is : "@var{width_type}"
4357
4358 @item width, w
4359 Change lowpass width.
4360 Syntax for the command is : "@var{width}"
4361
4362 @item mix, m
4363 Change lowpass mix.
4364 Syntax for the command is : "@var{mix}"
4365 @end table
4366
4367 @section lv2
4368
4369 Load a LV2 (LADSPA Version 2) plugin.
4370
4371 To enable compilation of this filter you need to configure FFmpeg with
4372 @code{--enable-lv2}.
4373
4374 @table @option
4375 @item plugin, p
4376 Specifies the plugin URI. You may need to escape ':'.
4377
4378 @item controls, c
4379 Set the '|' separated list of controls which are zero or more floating point
4380 values that determine the behavior of the loaded plugin (for example delay,
4381 threshold or gain).
4382 If @option{controls} is set to @code{help}, all available controls and
4383 their valid ranges are printed.
4384
4385 @item sample_rate, s
4386 Specify the sample rate, default to 44100. Only used if plugin have
4387 zero inputs.
4388
4389 @item nb_samples, n
4390 Set the number of samples per channel per each output frame, default
4391 is 1024. Only used if plugin have zero inputs.
4392
4393 @item duration, d
4394 Set the minimum duration of the sourced audio. See
4395 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4396 for the accepted syntax.
4397 Note that the resulting duration may be greater than the specified duration,
4398 as the generated audio is always cut at the end of a complete frame.
4399 If not specified, or the expressed duration is negative, the audio is
4400 supposed to be generated forever.
4401 Only used if plugin have zero inputs.
4402 @end table
4403
4404 @subsection Examples
4405
4406 @itemize
4407 @item
4408 Apply bass enhancer plugin from Calf:
4409 @example
4410 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4411 @end example
4412
4413 @item
4414 Apply vinyl plugin from Calf:
4415 @example
4416 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4417 @end example
4418
4419 @item
4420 Apply bit crusher plugin from ArtyFX:
4421 @example
4422 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4423 @end example
4424 @end itemize
4425
4426 @section mcompand
4427 Multiband Compress or expand the audio's dynamic range.
4428
4429 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4430 This is akin to the crossover of a loudspeaker, and results in flat frequency
4431 response when absent compander action.
4432
4433 It accepts the following parameters:
4434
4435 @table @option
4436 @item args
4437 This option syntax is:
4438 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4439 For explanation of each item refer to compand filter documentation.
4440 @end table
4441
4442 @anchor{pan}
4443 @section pan
4444
4445 Mix channels with specific gain levels. The filter accepts the output
4446 channel layout followed by a set of channels definitions.
4447
4448 This filter is also designed to efficiently remap the channels of an audio
4449 stream.
4450
4451 The filter accepts parameters of the form:
4452 "@var{l}|@var{outdef}|@var{outdef}|..."
4453
4454 @table @option
4455 @item l
4456 output channel layout or number of channels
4457
4458 @item outdef
4459 output channel specification, of the form:
4460 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4461
4462 @item out_name
4463 output channel to define, either a channel name (FL, FR, etc.) or a channel
4464 number (c0, c1, etc.)
4465
4466 @item gain
4467 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4468
4469 @item in_name
4470 input channel to use, see out_name for details; it is not possible to mix
4471 named and numbered input channels
4472 @end table
4473
4474 If the `=' in a channel specification is replaced by `<', then the gains for
4475 that specification will be renormalized so that the total is 1, thus
4476 avoiding clipping noise.
4477
4478 @subsection Mixing examples
4479
4480 For example, if you want to down-mix from stereo to mono, but with a bigger
4481 factor for the left channel:
4482 @example
4483 pan=1c|c0=0.9*c0+0.1*c1
4484 @end example
4485
4486 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4487 7-channels surround:
4488 @example
4489 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4490 @end example
4491
4492 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4493 that should be preferred (see "-ac" option) unless you have very specific
4494 needs.
4495
4496 @subsection Remapping examples
4497
4498 The channel remapping will be effective if, and only if:
4499
4500 @itemize
4501 @item gain coefficients are zeroes or ones,
4502 @item only one input per channel output,
4503 @end itemize
4504
4505 If all these conditions are satisfied, the filter will notify the user ("Pure
4506 channel mapping detected"), and use an optimized and lossless method to do the
4507 remapping.
4508
4509 For example, if you have a 5.1 source and want a stereo audio stream by
4510 dropping the extra channels:
4511 @example
4512 pan="stereo| c0=FL | c1=FR"
4513 @end example
4514
4515 Given the same source, you can also switch front left and front right channels
4516 and keep the input channel layout:
4517 @example
4518 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4519 @end example
4520
4521 If the input is a stereo audio stream, you can mute the front left channel (and
4522 still keep the stereo channel layout) with:
4523 @example
4524 pan="stereo|c1=c1"
4525 @end example
4526
4527 Still with a stereo audio stream input, you can copy the right channel in both
4528 front left and right:
4529 @example
4530 pan="stereo| c0=FR | c1=FR"
4531 @end example
4532
4533 @section replaygain
4534
4535 ReplayGain scanner filter. This filter takes an audio stream as an input and
4536 outputs it unchanged.
4537 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4538
4539 @section resample
4540
4541 Convert the audio sample format, sample rate and channel layout. It is
4542 not meant to be used directly.
4543
4544 @section rubberband
4545 Apply time-stretching and pitch-shifting with librubberband.
4546
4547 To enable compilation of this filter, you need to configure FFmpeg with
4548 @code{--enable-librubberband}.
4549
4550 The filter accepts the following options:
4551
4552 @table @option
4553 @item tempo
4554 Set tempo scale factor.
4555
4556 @item pitch
4557 Set pitch scale factor.
4558
4559 @item transients
4560 Set transients detector.
4561 Possible values are:
4562 @table @var
4563 @item crisp
4564 @item mixed
4565 @item smooth
4566 @end table
4567
4568 @item detector
4569 Set detector.
4570 Possible values are:
4571 @table @var
4572 @item compound
4573 @item percussive
4574 @item soft
4575 @end table
4576
4577 @item phase
4578 Set phase.
4579 Possible values are:
4580 @table @var
4581 @item laminar
4582 @item independent
4583 @end table
4584
4585 @item window
4586 Set processing window size.
4587 Possible values are:
4588 @table @var
4589 @item standard
4590 @item short
4591 @item long
4592 @end table
4593
4594 @item smoothing
4595 Set smoothing.
4596 Possible values are:
4597 @table @var
4598 @item off
4599 @item on
4600 @end table
4601
4602 @item formant
4603 Enable formant preservation when shift pitching.
4604 Possible values are:
4605 @table @var
4606 @item shifted
4607 @item preserved
4608 @end table
4609
4610 @item pitchq
4611 Set pitch quality.
4612 Possible values are:
4613 @table @var
4614 @item quality
4615 @item speed
4616 @item consistency
4617 @end table
4618
4619 @item channels
4620 Set channels.
4621 Possible values are:
4622 @table @var
4623 @item apart
4624 @item together
4625 @end table
4626 @end table
4627
4628 @subsection Commands
4629
4630 This filter supports the following commands:
4631 @table @option
4632 @item tempo
4633 Change filter tempo scale factor.
4634 Syntax for the command is : "@var{tempo}"
4635
4636 @item pitch
4637 Change filter pitch scale factor.
4638 Syntax for the command is : "@var{pitch}"
4639 @end table
4640
4641 @section sidechaincompress
4642
4643 This filter acts like normal compressor but has the ability to compress
4644 detected signal using second input signal.
4645 It needs two input streams and returns one output stream.
4646 First input stream will be processed depending on second stream signal.
4647 The filtered signal then can be filtered with other filters in later stages of
4648 processing. See @ref{pan} and @ref{amerge} filter.
4649
4650 The filter accepts the following options:
4651
4652 @table @option
4653 @item level_in
4654 Set input gain. Default is 1. Range is between 0.015625 and 64.
4655
4656 @item mode
4657 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4658 Default is @code{downward}.
4659
4660 @item threshold
4661 If a signal of second stream raises above this level it will affect the gain
4662 reduction of first stream.
4663 By default is 0.125. Range is between 0.00097563 and 1.
4664
4665 @item ratio
4666 Set a ratio about which the signal is reduced. 1:2 means that if the level
4667 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4668 Default is 2. Range is between 1 and 20.
4669
4670 @item attack
4671 Amount of milliseconds the signal has to rise above the threshold before gain
4672 reduction starts. Default is 20. Range is between 0.01 and 2000.
4673
4674 @item release
4675 Amount of milliseconds the signal has to fall below the threshold before
4676 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4677
4678 @item makeup
4679 Set the amount by how much signal will be amplified after processing.
4680 Default is 1. Range is from 1 to 64.
4681
4682 @item knee
4683 Curve the sharp knee around the threshold to enter gain reduction more softly.
4684 Default is 2.82843. Range is between 1 and 8.
4685
4686 @item link
4687 Choose if the @code{average} level between all channels of side-chain stream
4688 or the louder(@code{maximum}) channel of side-chain stream affects the
4689 reduction. Default is @code{average}.
4690
4691 @item detection
4692 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4693 of @code{rms}. Default is @code{rms} which is mainly smoother.
4694
4695 @item level_sc
4696 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4697
4698 @item mix
4699 How much to use compressed signal in output. Default is 1.
4700 Range is between 0 and 1.
4701 @end table
4702
4703 @subsection Commands
4704
4705 This filter supports the all above options as @ref{commands}.
4706
4707 @subsection Examples
4708
4709 @itemize
4710 @item
4711 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4712 depending on the signal of 2nd input and later compressed signal to be
4713 merged with 2nd input:
4714 @example
4715 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4716 @end example
4717 @end itemize
4718
4719 @section sidechaingate
4720
4721 A sidechain gate acts like a normal (wideband) gate but has the ability to
4722 filter the detected signal before sending it to the gain reduction stage.
4723 Normally a gate uses the full range signal to detect a level above the
4724 threshold.
4725 For example: If you cut all lower frequencies from your sidechain signal
4726 the gate will decrease the volume of your track only if not enough highs
4727 appear. With this technique you are able to reduce the resonation of a
4728 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4729 guitar.
4730 It needs two input streams and returns one output stream.
4731 First input stream will be processed depending on second stream signal.
4732
4733 The filter accepts the following options:
4734
4735 @table @option
4736 @item level_in
4737 Set input level before filtering.
4738 Default is 1. Allowed range is from 0.015625 to 64.
4739
4740 @item mode
4741 Set the mode of operation. Can be @code{upward} or @code{downward}.
4742 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4743 will be amplified, expanding dynamic range in upward direction.
4744 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4745
4746 @item range
4747 Set the level of gain reduction when the signal is below the threshold.
4748 Default is 0.06125. Allowed range is from 0 to 1.
4749 Setting this to 0 disables reduction and then filter behaves like expander.
4750
4751 @item threshold
4752 If a signal rises above this level the gain reduction is released.
4753 Default is 0.125. Allowed range is from 0 to 1.
4754
4755 @item ratio
4756 Set a ratio about which the signal is reduced.
4757 Default is 2. Allowed range is from 1 to 9000.
4758
4759 @item attack
4760 Amount of milliseconds the signal has to rise above the threshold before gain
4761 reduction stops.
4762 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4763
4764 @item release
4765 Amount of milliseconds the signal has to fall below the threshold before the
4766 reduction is increased again. Default is 250 milliseconds.
4767 Allowed range is from 0.01 to 9000.
4768
4769 @item makeup
4770 Set amount of amplification of signal after processing.
4771 Default is 1. Allowed range is from 1 to 64.
4772
4773 @item knee
4774 Curve the sharp knee around the threshold to enter gain reduction more softly.
4775 Default is 2.828427125. Allowed range is from 1 to 8.
4776
4777 @item detection
4778 Choose if exact signal should be taken for detection or an RMS like one.
4779 Default is rms. Can be peak or rms.
4780
4781 @item link
4782 Choose if the average level between all channels or the louder channel affects
4783 the reduction.
4784 Default is average. Can be average or maximum.
4785
4786 @item level_sc
4787 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4788 @end table
4789
4790 @section silencedetect
4791
4792 Detect silence in an audio stream.
4793
4794 This filter logs a message when it detects that the input audio volume is less
4795 or equal to a noise tolerance value for a duration greater or equal to the
4796 minimum detected noise duration.
4797
4798 The printed times and duration are expressed in seconds. The
4799 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
4800 is set on the first frame whose timestamp equals or exceeds the detection
4801 duration and it contains the timestamp of the first frame of the silence.
4802
4803 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
4804 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
4805 keys are set on the first frame after the silence. If @option{mono} is
4806 enabled, and each channel is evaluated separately, the @code{.X}
4807 suffixed keys are used, and @code{X} corresponds to the channel number.
4808
4809 The filter accepts the following options:
4810
4811 @table @option
4812 @item noise, n
4813 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4814 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4815
4816 @item duration, d
4817 Set silence duration until notification (default is 2 seconds). See
4818 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4819 for the accepted syntax.
4820
4821 @item mono, m
4822 Process each channel separately, instead of combined. By default is disabled.
4823 @end table
4824
4825 @subsection Examples
4826
4827 @itemize
4828 @item
4829 Detect 5 seconds of silence with -50dB noise tolerance:
4830 @example
4831 silencedetect=n=-50dB:d=5
4832 @end example
4833
4834 @item
4835 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4836 tolerance in @file{silence.mp3}:
4837 @example
4838 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4839 @end example
4840 @end itemize
4841
4842 @section silenceremove
4843
4844 Remove silence from the beginning, middle or end of the audio.
4845
4846 The filter accepts the following options:
4847
4848 @table @option
4849 @item start_periods
4850 This value is used to indicate if audio should be trimmed at beginning of
4851 the audio. A value of zero indicates no silence should be trimmed from the
4852 beginning. When specifying a non-zero value, it trims audio up until it
4853 finds non-silence. Normally, when trimming silence from beginning of audio
4854 the @var{start_periods} will be @code{1} but it can be increased to higher
4855 values to trim all audio up to specific count of non-silence periods.
4856 Default value is @code{0}.
4857
4858 @item start_duration
4859 Specify the amount of time that non-silence must be detected before it stops
4860 trimming audio. By increasing the duration, bursts of noises can be treated
4861 as silence and trimmed off. Default value is @code{0}.
4862
4863 @item start_threshold
4864 This indicates what sample value should be treated as silence. For digital
4865 audio, a value of @code{0} may be fine but for audio recorded from analog,
4866 you may wish to increase the value to account for background noise.
4867 Can be specified in dB (in case "dB" is appended to the specified value)
4868 or amplitude ratio. Default value is @code{0}.
4869
4870 @item start_silence
4871 Specify max duration of silence at beginning that will be kept after
4872 trimming. Default is 0, which is equal to trimming all samples detected
4873 as silence.
4874
4875 @item start_mode
4876 Specify mode of detection of silence end in start of multi-channel audio.
4877 Can be @var{any} or @var{all}. Default is @var{any}.
4878 With @var{any}, any sample that is detected as non-silence will cause
4879 stopped trimming of silence.
4880 With @var{all}, only if all channels are detected as non-silence will cause
4881 stopped trimming of silence.
4882
4883 @item stop_periods
4884 Set the count for trimming silence from the end of audio.
4885 To remove silence from the middle of a file, specify a @var{stop_periods}
4886 that is negative. This value is then treated as a positive value and is
4887 used to indicate the effect should restart processing as specified by
4888 @var{start_periods}, making it suitable for removing periods of silence
4889 in the middle of the audio.
4890 Default value is @code{0}.
4891
4892 @item stop_duration
4893 Specify a duration of silence that must exist before audio is not copied any
4894 more. By specifying a higher duration, silence that is wanted can be left in
4895 the audio.
4896 Default value is @code{0}.
4897
4898 @item stop_threshold
4899 This is the same as @option{start_threshold} but for trimming silence from
4900 the end of audio.
4901 Can be specified in dB (in case "dB" is appended to the specified value)
4902 or amplitude ratio. Default value is @code{0}.
4903
4904 @item stop_silence
4905 Specify max duration of silence at end that will be kept after
4906 trimming. Default is 0, which is equal to trimming all samples detected
4907 as silence.
4908
4909 @item stop_mode
4910 Specify mode of detection of silence start in end of multi-channel audio.
4911 Can be @var{any} or @var{all}. Default is @var{any}.
4912 With @var{any}, any sample that is detected as non-silence will cause
4913 stopped trimming of silence.
4914 With @var{all}, only if all channels are detected as non-silence will cause
4915 stopped trimming of silence.
4916
4917 @item detection
4918 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4919 and works better with digital silence which is exactly 0.
4920 Default value is @code{rms}.
4921
4922 @item window
4923 Set duration in number of seconds used to calculate size of window in number
4924 of samples for detecting silence.
4925 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4926 @end table
4927
4928 @subsection Examples
4929
4930 @itemize
4931 @item
4932 The following example shows how this filter can be used to start a recording
4933 that does not contain the delay at the start which usually occurs between
4934 pressing the record button and the start of the performance:
4935 @example
4936 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4937 @end example
4938
4939 @item
4940 Trim all silence encountered from beginning to end where there is more than 1
4941 second of silence in audio:
4942 @example
4943 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4944 @end example
4945
4946 @item
4947 Trim all digital silence samples, using peak detection, from beginning to end
4948 where there is more than 0 samples of digital silence in audio and digital
4949 silence is detected in all channels at same positions in stream:
4950 @example
4951 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
4952 @end example
4953 @end itemize
4954
4955 @section sofalizer
4956
4957 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4958 loudspeakers around the user for binaural listening via headphones (audio
4959 formats up to 9 channels supported).
4960 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4961 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4962 Austrian Academy of Sciences.
4963
4964 To enable compilation of this filter you need to configure FFmpeg with
4965 @code{--enable-libmysofa}.
4966
4967 The filter accepts the following options:
4968
4969 @table @option
4970 @item sofa
4971 Set the SOFA file used for rendering.
4972
4973 @item gain
4974 Set gain applied to audio. Value is in dB. Default is 0.
4975
4976 @item rotation
4977 Set rotation of virtual loudspeakers in deg. Default is 0.
4978
4979 @item elevation
4980 Set elevation of virtual speakers in deg. Default is 0.
4981
4982 @item radius
4983 Set distance in meters between loudspeakers and the listener with near-field
4984 HRTFs. Default is 1.
4985
4986 @item type
4987 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4988 processing audio in time domain which is slow.
4989 @var{freq} is processing audio in frequency domain which is fast.
4990 Default is @var{freq}.
4991
4992 @item speakers
4993 Set custom positions of virtual loudspeakers. Syntax for this option is:
4994 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4995 Each virtual loudspeaker is described with short channel name following with
4996 azimuth and elevation in degrees.
4997 Each virtual loudspeaker description is separated by '|'.
4998 For example to override front left and front right channel positions use:
4999 'speakers=FL 45 15|FR 345 15'.
5000 Descriptions with unrecognised channel names are ignored.
5001
5002 @item lfegain
5003 Set custom gain for LFE channels. Value is in dB. Default is 0.
5004
5005 @item framesize
5006 Set custom frame size in number of samples. Default is 1024.
5007 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5008 is set to @var{freq}.
5009
5010 @item normalize
5011 Should all IRs be normalized upon importing SOFA file.
5012 By default is enabled.
5013
5014 @item interpolate
5015 Should nearest IRs be interpolated with neighbor IRs if exact position
5016 does not match. By default is disabled.
5017
5018 @item minphase
5019 Minphase all IRs upon loading of SOFA file. By default is disabled.
5020
5021 @item anglestep
5022 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5023
5024 @item radstep
5025 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5026 @end table
5027
5028 @subsection Examples
5029
5030 @itemize
5031 @item
5032 Using ClubFritz6 sofa file:
5033 @example
5034 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5035 @end example
5036
5037 @item
5038 Using ClubFritz12 sofa file and bigger radius with small rotation:
5039 @example
5040 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5041 @end example
5042
5043 @item
5044 Similar as above but with custom speaker positions for front left, front right, back left and back right
5045 and also with custom gain:
5046 @example
5047 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5048 @end example
5049 @end itemize
5050
5051 @section stereotools
5052
5053 This filter has some handy utilities to manage stereo signals, for converting
5054 M/S stereo recordings to L/R signal while having control over the parameters
5055 or spreading the stereo image of master track.
5056
5057 The filter accepts the following options:
5058
5059 @table @option
5060 @item level_in
5061 Set input level before filtering for both channels. Defaults is 1.
5062 Allowed range is from 0.015625 to 64.
5063
5064 @item level_out
5065 Set output level after filtering for both channels. Defaults is 1.
5066 Allowed range is from 0.015625 to 64.
5067
5068 @item balance_in
5069 Set input balance between both channels. Default is 0.
5070 Allowed range is from -1 to 1.
5071
5072 @item balance_out
5073 Set output balance between both channels. Default is 0.
5074 Allowed range is from -1 to 1.
5075
5076 @item softclip
5077 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5078 clipping. Disabled by default.
5079
5080 @item mutel
5081 Mute the left channel. Disabled by default.
5082
5083 @item muter
5084 Mute the right channel. Disabled by default.
5085
5086 @item phasel
5087 Change the phase of the left channel. Disabled by default.
5088
5089 @item phaser
5090 Change the phase of the right channel. Disabled by default.
5091
5092 @item mode
5093 Set stereo mode. Available values are:
5094
5095 @table @samp
5096 @item lr>lr
5097 Left/Right to Left/Right, this is default.
5098
5099 @item lr>ms
5100 Left/Right to Mid/Side.
5101
5102 @item ms>lr
5103 Mid/Side to Left/Right.
5104
5105 @item lr>ll
5106 Left/Right to Left/Left.
5107
5108 @item lr>rr
5109 Left/Right to Right/Right.
5110
5111 @item lr>l+r
5112 Left/Right to Left + Right.
5113
5114 @item lr>rl
5115 Left/Right to Right/Left.
5116
5117 @item ms>ll
5118 Mid/Side to Left/Left.
5119
5120 @item ms>rr
5121 Mid/Side to Right/Right.
5122 @end table
5123
5124 @item slev
5125 Set level of side signal. Default is 1.
5126 Allowed range is from 0.015625 to 64.
5127
5128 @item sbal
5129 Set balance of side signal. Default is 0.
5130 Allowed range is from -1 to 1.
5131
5132 @item mlev
5133 Set level of the middle signal. Default is 1.
5134 Allowed range is from 0.015625 to 64.
5135
5136 @item mpan
5137 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5138
5139 @item base
5140 Set stereo base between mono and inversed channels. Default is 0.
5141 Allowed range is from -1 to 1.
5142
5143 @item delay
5144 Set delay in milliseconds how much to delay left from right channel and
5145 vice versa. Default is 0. Allowed range is from -20 to 20.
5146
5147 @item sclevel
5148 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5149
5150 @item phase
5151 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5152
5153 @item bmode_in, bmode_out
5154 Set balance mode for balance_in/balance_out option.
5155
5156 Can be one of the following:
5157
5158 @table @samp
5159 @item balance
5160 Classic balance mode. Attenuate one channel at time.
5161 Gain is raised up to 1.
5162
5163 @item amplitude
5164 Similar as classic mode above but gain is raised up to 2.
5165
5166 @item power
5167 Equal power distribution, from -6dB to +6dB range.
5168 @end table
5169 @end table
5170
5171 @subsection Examples
5172
5173 @itemize
5174 @item
5175 Apply karaoke like effect:
5176 @example
5177 stereotools=mlev=0.015625
5178 @end example
5179
5180 @item
5181 Convert M/S signal to L/R:
5182 @example
5183 "stereotools=mode=ms>lr"
5184 @end example
5185 @end itemize
5186
5187 @section stereowiden
5188
5189 This filter enhance the stereo effect by suppressing signal common to both
5190 channels and by delaying the signal of left into right and vice versa,
5191 thereby widening the stereo effect.
5192
5193 The filter accepts the following options:
5194
5195 @table @option
5196 @item delay
5197 Time in milliseconds of the delay of left signal into right and vice versa.
5198 Default is 20 milliseconds.
5199
5200 @item feedback
5201 Amount of gain in delayed signal into right and vice versa. Gives a delay
5202 effect of left signal in right output and vice versa which gives widening
5203 effect. Default is 0.3.
5204
5205 @item crossfeed
5206 Cross feed of left into right with inverted phase. This helps in suppressing
5207 the mono. If the value is 1 it will cancel all the signal common to both
5208 channels. Default is 0.3.
5209
5210 @item drymix
5211 Set level of input signal of original channel. Default is 0.8.
5212 @end table
5213
5214 @subsection Commands
5215
5216 This filter supports the all above options except @code{delay} as @ref{commands}.
5217
5218 @section superequalizer
5219 Apply 18 band equalizer.
5220
5221 The filter accepts the following options:
5222 @table @option
5223 @item 1b
5224 Set 65Hz band gain.
5225 @item 2b
5226 Set 92Hz band gain.
5227 @item 3b
5228 Set 131Hz band gain.
5229 @item 4b
5230 Set 185Hz band gain.
5231 @item 5b
5232 Set 262Hz band gain.
5233 @item 6b
5234 Set 370Hz band gain.
5235 @item 7b
5236 Set 523Hz band gain.
5237 @item 8b
5238 Set 740Hz band gain.
5239 @item 9b
5240 Set 1047Hz band gain.
5241 @item 10b
5242 Set 1480Hz band gain.
5243 @item 11b
5244 Set 2093Hz band gain.
5245 @item 12b
5246 Set 2960Hz band gain.
5247 @item 13b
5248 Set 4186Hz band gain.
5249 @item 14b
5250 Set 5920Hz band gain.
5251 @item 15b
5252 Set 8372Hz band gain.
5253 @item 16b
5254 Set 11840Hz band gain.
5255 @item 17b
5256 Set 16744Hz band gain.
5257 @item 18b
5258 Set 20000Hz band gain.
5259 @end table
5260
5261 @section surround
5262 Apply audio surround upmix filter.
5263
5264 This filter allows to produce multichannel output from audio stream.
5265
5266 The filter accepts the following options:
5267
5268 @table @option
5269 @item chl_out
5270 Set output channel layout. By default, this is @var{5.1}.
5271
5272 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5273 for the required syntax.
5274
5275 @item chl_in
5276 Set input channel layout. By default, this is @var{stereo}.
5277
5278 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5279 for the required syntax.
5280
5281 @item level_in
5282 Set input volume level. By default, this is @var{1}.
5283
5284 @item level_out
5285 Set output volume level. By default, this is @var{1}.
5286
5287 @item lfe
5288 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5289
5290 @item lfe_low
5291 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5292
5293 @item lfe_high
5294 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5295
5296 @item lfe_mode
5297 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5298 In @var{add} mode, LFE channel is created from input audio and added to output.
5299 In @var{sub} mode, LFE channel is created from input audio and added to output but
5300 also all non-LFE output channels are subtracted with output LFE channel.
5301
5302 @item angle
5303 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5304 Default is @var{90}.
5305
5306 @item fc_in
5307 Set front center input volume. By default, this is @var{1}.
5308
5309 @item fc_out
5310 Set front center output volume. By default, this is @var{1}.
5311
5312 @item fl_in
5313 Set front left input volume. By default, this is @var{1}.
5314
5315 @item fl_out
5316 Set front left output volume. By default, this is @var{1}.
5317
5318 @item fr_in
5319 Set front right input volume. By default, this is @var{1}.
5320
5321 @item fr_out
5322 Set front right output volume. By default, this is @var{1}.
5323
5324 @item sl_in
5325 Set side left input volume. By default, this is @var{1}.
5326
5327 @item sl_out
5328 Set side left output volume. By default, this is @var{1}.
5329
5330 @item sr_in
5331 Set side right input volume. By default, this is @var{1}.
5332
5333 @item sr_out
5334 Set side right output volume. By default, this is @var{1}.
5335
5336 @item bl_in
5337 Set back left input volume. By default, this is @var{1}.
5338
5339 @item bl_out
5340 Set back left output volume. By default, this is @var{1}.
5341
5342 @item br_in
5343 Set back right input volume. By default, this is @var{1}.
5344
5345 @item br_out
5346 Set back right output volume. By default, this is @var{1}.
5347
5348 @item bc_in
5349 Set back center input volume. By default, this is @var{1}.
5350
5351 @item bc_out
5352 Set back center output volume. By default, this is @var{1}.
5353
5354 @item lfe_in
5355 Set LFE input volume. By default, this is @var{1}.
5356
5357 @item lfe_out
5358 Set LFE output volume. By default, this is @var{1}.
5359
5360 @item allx
5361 Set spread usage of stereo image across X axis for all channels.
5362
5363 @item ally
5364 Set spread usage of stereo image across Y axis for all channels.
5365
5366 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5367 Set spread usage of stereo image across X axis for each channel.
5368
5369 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5370 Set spread usage of stereo image across Y axis for each channel.
5371
5372 @item win_size
5373 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5374
5375 @item win_func
5376 Set window function.
5377
5378 It accepts the following values:
5379 @table @samp
5380 @item rect
5381 @item bartlett
5382 @item hann, hanning
5383 @item hamming
5384 @item blackman
5385 @item welch
5386 @item flattop
5387 @item bharris
5388 @item bnuttall
5389 @item bhann
5390 @item sine
5391 @item nuttall
5392 @item lanczos
5393 @item gauss
5394 @item tukey
5395 @item dolph
5396 @item cauchy
5397 @item parzen
5398 @item poisson
5399 @item bohman
5400 @end table
5401 Default is @code{hann}.
5402
5403 @item overlap
5404 Set window overlap. If set to 1, the recommended overlap for selected
5405 window function will be picked. Default is @code{0.5}.
5406 @end table
5407
5408 @section treble, highshelf
5409
5410 Boost or cut treble (upper) frequencies of the audio using a two-pole
5411 shelving filter with a response similar to that of a standard
5412 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5413
5414 The filter accepts the following options:
5415
5416 @table @option
5417 @item gain, g
5418 Give the gain at whichever is the lower of ~22 kHz and the
5419 Nyquist frequency. Its useful range is about -20 (for a large cut)
5420 to +20 (for a large boost). Beware of clipping when using a positive gain.
5421
5422 @item frequency, f
5423 Set the filter's central frequency and so can be used
5424 to extend or reduce the frequency range to be boosted or cut.
5425 The default value is @code{3000} Hz.
5426
5427 @item width_type, t
5428 Set method to specify band-width of filter.
5429 @table @option
5430 @item h
5431 Hz
5432 @item q
5433 Q-Factor
5434 @item o
5435 octave
5436 @item s
5437 slope
5438 @item k
5439 kHz
5440 @end table
5441
5442 @item width, w
5443 Determine how steep is the filter's shelf transition.
5444
5445 @item mix, m
5446 How much to use filtered signal in output. Default is 1.
5447 Range is between 0 and 1.
5448
5449 @item channels, c
5450 Specify which channels to filter, by default all available are filtered.
5451
5452 @item normalize, n
5453 Normalize biquad coefficients, by default is disabled.
5454 Enabling it will normalize magnitude response at DC to 0dB.
5455 @end table
5456
5457 @subsection Commands
5458
5459 This filter supports the following commands:
5460 @table @option
5461 @item frequency, f
5462 Change treble frequency.
5463 Syntax for the command is : "@var{frequency}"
5464
5465 @item width_type, t
5466 Change treble width_type.
5467 Syntax for the command is : "@var{width_type}"
5468
5469 @item width, w
5470 Change treble width.
5471 Syntax for the command is : "@var{width}"
5472
5473 @item gain, g
5474 Change treble gain.
5475 Syntax for the command is : "@var{gain}"
5476
5477 @item mix, m
5478 Change treble mix.
5479 Syntax for the command is : "@var{mix}"
5480 @end table
5481
5482 @section tremolo
5483
5484 Sinusoidal amplitude modulation.
5485
5486 The filter accepts the following options:
5487
5488 @table @option
5489 @item f
5490 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5491 (20 Hz or lower) will result in a tremolo effect.
5492 This filter may also be used as a ring modulator by specifying
5493 a modulation frequency higher than 20 Hz.
5494 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5495
5496 @item d
5497 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5498 Default value is 0.5.
5499 @end table
5500
5501 @section vibrato
5502
5503 Sinusoidal phase modulation.
5504
5505 The filter accepts the following options:
5506
5507 @table @option
5508 @item f
5509 Modulation frequency in Hertz.
5510 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5511
5512 @item d
5513 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5514 Default value is 0.5.
5515 @end table
5516
5517 @section volume
5518
5519 Adjust the input audio volume.
5520
5521 It accepts the following parameters:
5522 @table @option
5523
5524 @item volume
5525 Set audio volume expression.
5526
5527 Output values are clipped to the maximum value.
5528
5529 The output audio volume is given by the relation:
5530 @example
5531 @var{output_volume} = @var{volume} * @var{input_volume}
5532 @end example
5533
5534 The default value for @var{volume} is "1.0".
5535
5536 @item precision
5537 This parameter represents the mathematical precision.
5538
5539 It determines which input sample formats will be allowed, which affects the
5540 precision of the volume scaling.
5541
5542 @table @option
5543 @item fixed
5544 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5545 @item float
5546 32-bit floating-point; this limits input sample format to FLT. (default)
5547 @item double
5548 64-bit floating-point; this limits input sample format to DBL.
5549 @end table
5550
5551 @item replaygain
5552 Choose the behaviour on encountering ReplayGain side data in input frames.
5553
5554 @table @option
5555 @item drop
5556 Remove ReplayGain side data, ignoring its contents (the default).
5557
5558 @item ignore
5559 Ignore ReplayGain side data, but leave it in the frame.
5560
5561 @item track
5562 Prefer the track gain, if present.
5563
5564 @item album
5565 Prefer the album gain, if present.
5566 @end table
5567
5568 @item replaygain_preamp
5569 Pre-amplification gain in dB to apply to the selected replaygain gain.
5570
5571 Default value for @var{replaygain_preamp} is 0.0.
5572
5573 @item replaygain_noclip
5574 Prevent clipping by limiting the gain applied.
5575
5576 Default value for @var{replaygain_noclip} is 1.
5577
5578 @item eval
5579 Set when the volume expression is evaluated.
5580
5581 It accepts the following values:
5582 @table @samp
5583 @item once
5584 only evaluate expression once during the filter initialization, or
5585 when the @samp{volume} command is sent
5586
5587 @item frame
5588 evaluate expression for each incoming frame
5589 @end table
5590
5591 Default value is @samp{once}.
5592 @end table
5593
5594 The volume expression can contain the following parameters.
5595
5596 @table @option
5597 @item n
5598 frame number (starting at zero)
5599 @item nb_channels
5600 number of channels
5601 @item nb_consumed_samples
5602 number of samples consumed by the filter
5603 @item nb_samples
5604 number of samples in the current frame
5605 @item pos
5606 original frame position in the file
5607 @item pts
5608 frame PTS
5609 @item sample_rate
5610 sample rate
5611 @item startpts
5612 PTS at start of stream
5613 @item startt
5614 time at start of stream
5615 @item t
5616 frame time
5617 @item tb
5618 timestamp timebase
5619 @item volume
5620 last set volume value
5621 @end table
5622
5623 Note that when @option{eval} is set to @samp{once} only the
5624 @var{sample_rate} and @var{tb} variables are available, all other
5625 variables will evaluate to NAN.
5626
5627 @subsection Commands
5628
5629 This filter supports the following commands:
5630 @table @option
5631 @item volume
5632 Modify the volume expression.
5633 The command accepts the same syntax of the corresponding option.
5634
5635 If the specified expression is not valid, it is kept at its current
5636 value.
5637 @end table
5638
5639 @subsection Examples
5640
5641 @itemize
5642 @item
5643 Halve the input audio volume:
5644 @example
5645 volume=volume=0.5
5646 volume=volume=1/2
5647 volume=volume=-6.0206dB
5648 @end example
5649
5650 In all the above example the named key for @option{volume} can be
5651 omitted, for example like in:
5652 @example
5653 volume=0.5
5654 @end example
5655
5656 @item
5657 Increase input audio power by 6 decibels using fixed-point precision:
5658 @example
5659 volume=volume=6dB:precision=fixed
5660 @end example
5661
5662 @item
5663 Fade volume after time 10 with an annihilation period of 5 seconds:
5664 @example
5665 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5666 @end example
5667 @end itemize
5668
5669 @section volumedetect
5670
5671 Detect the volume of the input video.
5672
5673 The filter has no parameters. The input is not modified. Statistics about
5674 the volume will be printed in the log when the input stream end is reached.
5675
5676 In particular it will show the mean volume (root mean square), maximum
5677 volume (on a per-sample basis), and the beginning of a histogram of the
5678 registered volume values (from the maximum value to a cumulated 1/1000 of
5679 the samples).
5680
5681 All volumes are in decibels relative to the maximum PCM value.
5682
5683 @subsection Examples
5684
5685 Here is an excerpt of the output:
5686 @example
5687 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5688 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5689 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5690 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5691 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5692 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5693 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5694 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5695 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5696 @end example
5697
5698 It means that:
5699 @itemize
5700 @item
5701 The mean square energy is approximately -27 dB, or 10^-2.7.
5702 @item
5703 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5704 @item
5705 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5706 @end itemize
5707
5708 In other words, raising the volume by +4 dB does not cause any clipping,
5709 raising it by +5 dB causes clipping for 6 samples, etc.
5710
5711 @c man end AUDIO FILTERS
5712
5713 @chapter Audio Sources
5714 @c man begin AUDIO SOURCES
5715
5716 Below is a description of the currently available audio sources.
5717
5718 @section abuffer
5719
5720 Buffer audio frames, and make them available to the filter chain.
5721
5722 This source is mainly intended for a programmatic use, in particular
5723 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5724
5725 It accepts the following parameters:
5726 @table @option
5727
5728 @item time_base
5729 The timebase which will be used for timestamps of submitted frames. It must be
5730 either a floating-point number or in @var{numerator}/@var{denominator} form.
5731
5732 @item sample_rate
5733 The sample rate of the incoming audio buffers.
5734
5735 @item sample_fmt
5736 The sample format of the incoming audio buffers.
5737 Either a sample format name or its corresponding integer representation from
5738 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5739
5740 @item channel_layout
5741 The channel layout of the incoming audio buffers.
5742 Either a channel layout name from channel_layout_map in
5743 @file{libavutil/channel_layout.c} or its corresponding integer representation
5744 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5745
5746 @item channels
5747 The number of channels of the incoming audio buffers.
5748 If both @var{channels} and @var{channel_layout} are specified, then they
5749 must be consistent.
5750
5751 @end table
5752
5753 @subsection Examples
5754
5755 @example
5756 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5757 @end example
5758
5759 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5760 Since the sample format with name "s16p" corresponds to the number
5761 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5762 equivalent to:
5763 @example
5764 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5765 @end example
5766
5767 @section aevalsrc
5768
5769 Generate an audio signal specified by an expression.
5770
5771 This source accepts in input one or more expressions (one for each
5772 channel), which are evaluated and used to generate a corresponding
5773 audio signal.
5774
5775 This source accepts the following options:
5776
5777 @table @option
5778 @item exprs
5779 Set the '|'-separated expressions list for each separate channel. In case the
5780 @option{channel_layout} option is not specified, the selected channel layout
5781 depends on the number of provided expressions. Otherwise the last
5782 specified expression is applied to the remaining output channels.
5783
5784 @item channel_layout, c
5785 Set the channel layout. The number of channels in the specified layout
5786 must be equal to the number of specified expressions.
5787
5788 @item duration, d
5789 Set the minimum duration of the sourced audio. See
5790 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5791 for the accepted syntax.
5792 Note that the resulting duration may be greater than the specified
5793 duration, as the generated audio is always cut at the end of a
5794 complete frame.
5795
5796 If not specified, or the expressed duration is negative, the audio is
5797 supposed to be generated forever.
5798
5799 @item nb_samples, n
5800 Set the number of samples per channel per each output frame,
5801 default to 1024.
5802
5803 @item sample_rate, s
5804 Specify the sample rate, default to 44100.
5805 @end table
5806
5807 Each expression in @var{exprs} can contain the following constants:
5808
5809 @table @option
5810 @item n
5811 number of the evaluated sample, starting from 0
5812
5813 @item t
5814 time of the evaluated sample expressed in seconds, starting from 0
5815
5816 @item s
5817 sample rate
5818
5819 @end table
5820
5821 @subsection Examples
5822
5823 @itemize
5824 @item
5825 Generate silence:
5826 @example
5827 aevalsrc=0
5828 @end example
5829
5830 @item
5831 Generate a sin signal with frequency of 440 Hz, set sample rate to
5832 8000 Hz:
5833 @example
5834 aevalsrc="sin(440*2*PI*t):s=8000"
5835 @end example
5836
5837 @item
5838 Generate a two channels signal, specify the channel layout (Front
5839 Center + Back Center) explicitly:
5840 @example
5841 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5842 @end example
5843
5844 @item
5845 Generate white noise:
5846 @example
5847 aevalsrc="-2+random(0)"
5848 @end example
5849
5850 @item
5851 Generate an amplitude modulated signal:
5852 @example
5853 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5854 @end example
5855
5856 @item
5857 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5858 @example
5859 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5860 @end example
5861
5862 @end itemize
5863
5864 @section afirsrc
5865
5866 Generate a FIR coefficients using frequency sampling method.
5867
5868 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
5869
5870 The filter accepts the following options:
5871
5872 @table @option
5873 @item taps, t
5874 Set number of filter coefficents in output audio stream.
5875 Default value is 1025.
5876
5877 @item frequency, f
5878 Set frequency points from where magnitude and phase are set.
5879 This must be in non decreasing order, and first element must be 0, while last element
5880 must be 1. Elements are separated by white spaces.
5881
5882 @item magnitude, m
5883 Set magnitude value for every frequency point set by @option{frequency}.
5884 Number of values must be same as number of frequency points.
5885 Values are separated by white spaces.
5886
5887 @item phase, p
5888 Set phase value for every frequency point set by @option{frequency}.
5889 Number of values must be same as number of frequency points.
5890 Values are separated by white spaces.
5891
5892 @item sample_rate, r
5893 Set sample rate, default is 44100.
5894
5895 @item nb_samples, n
5896 Set number of samples per each frame. Default is 1024.
5897
5898 @item win_func, w
5899 Set window function. Default is blackman.
5900 @end table
5901
5902 @section anullsrc
5903
5904 The null audio source, return unprocessed audio frames. It is mainly useful
5905 as a template and to be employed in analysis / debugging tools, or as
5906 the source for filters which ignore the input data (for example the sox
5907 synth filter).
5908
5909 This source accepts the following options:
5910
5911 @table @option
5912
5913 @item channel_layout, cl
5914
5915 Specifies the channel layout, and can be either an integer or a string
5916 representing a channel layout. The default value of @var{channel_layout}
5917 is "stereo".
5918
5919 Check the channel_layout_map definition in
5920 @file{libavutil/channel_layout.c} for the mapping between strings and
5921 channel layout values.
5922
5923 @item sample_rate, r
5924 Specifies the sample rate, and defaults to 44100.
5925
5926 @item nb_samples, n
5927 Set the number of samples per requested frames.
5928
5929 @end table
5930
5931 @subsection Examples
5932
5933 @itemize
5934 @item
5935 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5936 @example
5937 anullsrc=r=48000:cl=4
5938 @end example
5939
5940 @item
5941 Do the same operation with a more obvious syntax:
5942 @example
5943 anullsrc=r=48000:cl=mono
5944 @end example
5945 @end itemize
5946
5947 All the parameters need to be explicitly defined.
5948
5949 @section flite
5950
5951 Synthesize a voice utterance using the libflite library.
5952
5953 To enable compilation of this filter you need to configure FFmpeg with
5954 @code{--enable-libflite}.
5955
5956 Note that versions of the flite library prior to 2.0 are not thread-safe.
5957
5958 The filter accepts the following options:
5959
5960 @table @option
5961
5962 @item list_voices
5963 If set to 1, list the names of the available voices and exit
5964 immediately. Default value is 0.
5965
5966 @item nb_samples, n
5967 Set the maximum number of samples per frame. Default value is 512.
5968
5969 @item textfile
5970 Set the filename containing the text to speak.
5971
5972 @item text
5973 Set the text to speak.
5974
5975 @item voice, v
5976 Set the voice to use for the speech synthesis. Default value is
5977 @code{kal}. See also the @var{list_voices} option.
5978 @end table
5979
5980 @subsection Examples
5981
5982 @itemize
5983 @item
5984 Read from file @file{speech.txt}, and synthesize the text using the
5985 standard flite voice:
5986 @example
5987 flite=textfile=speech.txt
5988 @end example
5989
5990 @item
5991 Read the specified text selecting the @code{slt} voice:
5992 @example
5993 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5994 @end example
5995
5996 @item
5997 Input text to ffmpeg:
5998 @example
5999 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6000 @end example
6001
6002 @item
6003 Make @file{ffplay} speak the specified text, using @code{flite} and
6004 the @code{lavfi} device:
6005 @example
6006 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6007 @end example
6008 @end itemize
6009
6010 For more information about libflite, check:
6011 @url{http://www.festvox.org/flite/}
6012
6013 @section anoisesrc
6014
6015 Generate a noise audio signal.
6016
6017 The filter accepts the following options:
6018
6019 @table @option
6020 @item sample_rate, r
6021 Specify the sample rate. Default value is 48000 Hz.
6022
6023 @item amplitude, a
6024 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6025 is 1.0.
6026
6027 @item duration, d
6028 Specify the duration of the generated audio stream. Not specifying this option
6029 results in noise with an infinite length.
6030
6031 @item color, colour, c
6032 Specify the color of noise. Available noise colors are white, pink, brown,
6033 blue, violet and velvet. Default color is white.
6034
6035 @item seed, s
6036 Specify a value used to seed the PRNG.
6037
6038 @item nb_samples, n
6039 Set the number of samples per each output frame, default is 1024.
6040 @end table
6041
6042 @subsection Examples
6043
6044 @itemize
6045
6046 @item
6047 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6048 @example
6049 anoisesrc=d=60:c=pink:r=44100:a=0.5
6050 @end example
6051 @end itemize
6052
6053 @section hilbert
6054
6055 Generate odd-tap Hilbert transform FIR coefficients.
6056
6057 The resulting stream can be used with @ref{afir} filter for phase-shifting
6058 the signal by 90 degrees.
6059
6060 This is used in many matrix coding schemes and for analytic signal generation.
6061 The process is often written as a multiplication by i (or j), the imaginary unit.
6062
6063 The filter accepts the following options:
6064
6065 @table @option
6066
6067 @item sample_rate, s
6068 Set sample rate, default is 44100.
6069
6070 @item taps, t
6071 Set length of FIR filter, default is 22051.
6072
6073 @item nb_samples, n
6074 Set number of samples per each frame.
6075
6076 @item win_func, w
6077 Set window function to be used when generating FIR coefficients.
6078 @end table
6079
6080 @section sinc
6081
6082 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6083
6084 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6085
6086 The filter accepts the following options:
6087
6088 @table @option
6089 @item sample_rate, r
6090 Set sample rate, default is 44100.
6091
6092 @item nb_samples, n
6093 Set number of samples per each frame. Default is 1024.
6094
6095 @item hp
6096 Set high-pass frequency. Default is 0.
6097
6098 @item lp
6099 Set low-pass frequency. Default is 0.
6100 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6101 is higher than 0 then filter will create band-pass filter coefficients,
6102 otherwise band-reject filter coefficients.
6103
6104 @item phase
6105 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6106
6107 @item beta
6108 Set Kaiser window beta.
6109
6110 @item att
6111 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6112
6113 @item round
6114 Enable rounding, by default is disabled.
6115
6116 @item hptaps
6117 Set number of taps for high-pass filter.
6118
6119 @item lptaps
6120 Set number of taps for low-pass filter.
6121 @end table
6122
6123 @section sine
6124
6125 Generate an audio signal made of a sine wave with amplitude 1/8.
6126
6127 The audio signal is bit-exact.
6128
6129 The filter accepts the following options:
6130
6131 @table @option
6132
6133 @item frequency, f
6134 Set the carrier frequency. Default is 440 Hz.
6135
6136 @item beep_factor, b
6137 Enable a periodic beep every second with frequency @var{beep_factor} times
6138 the carrier frequency. Default is 0, meaning the beep is disabled.
6139
6140 @item sample_rate, r
6141 Specify the sample rate, default is 44100.
6142
6143 @item duration, d
6144 Specify the duration of the generated audio stream.
6145
6146 @item samples_per_frame
6147 Set the number of samples per output frame.
6148
6149 The expression can contain the following constants:
6150
6151 @table @option
6152 @item n
6153 The (sequential) number of the output audio frame, starting from 0.
6154
6155 @item pts
6156 The PTS (Presentation TimeStamp) of the output audio frame,
6157 expressed in @var{TB} units.
6158
6159 @item t
6160 The PTS of the output audio frame, expressed in seconds.
6161
6162 @item TB
6163 The timebase of the output audio frames.
6164 @end table
6165
6166 Default is @code{1024}.
6167 @end table
6168
6169 @subsection Examples
6170
6171 @itemize
6172
6173 @item
6174 Generate a simple 440 Hz sine wave:
6175 @example
6176 sine
6177 @end example
6178
6179 @item
6180 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6181 @example
6182 sine=220:4:d=5
6183 sine=f=220:b=4:d=5
6184 sine=frequency=220:beep_factor=4:duration=5
6185 @end example
6186
6187 @item
6188 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6189 pattern:
6190 @example
6191 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6192 @end example
6193 @end itemize
6194
6195 @c man end AUDIO SOURCES
6196
6197 @chapter Audio Sinks
6198 @c man begin AUDIO SINKS
6199
6200 Below is a description of the currently available audio sinks.
6201
6202 @section abuffersink
6203
6204 Buffer audio frames, and make them available to the end of filter chain.
6205
6206 This sink is mainly intended for programmatic use, in particular
6207 through the interface defined in @file{libavfilter/buffersink.h}
6208 or the options system.
6209
6210 It accepts a pointer to an AVABufferSinkContext structure, which
6211 defines the incoming buffers' formats, to be passed as the opaque
6212 parameter to @code{avfilter_init_filter} for initialization.
6213 @section anullsink
6214
6215 Null audio sink; do absolutely nothing with the input audio. It is
6216 mainly useful as a template and for use in analysis / debugging
6217 tools.
6218
6219 @c man end AUDIO SINKS
6220
6221 @chapter Video Filters
6222 @c man begin VIDEO FILTERS
6223
6224 When you configure your FFmpeg build, you can disable any of the
6225 existing filters using @code{--disable-filters}.
6226 The configure output will show the video filters included in your
6227 build.
6228
6229 Below is a description of the currently available video filters.
6230
6231 @section addroi
6232
6233 Mark a region of interest in a video frame.
6234
6235 The frame data is passed through unchanged, but metadata is attached
6236 to the frame indicating regions of interest which can affect the
6237 behaviour of later encoding.  Multiple regions can be marked by
6238 applying the filter multiple times.
6239
6240 @table @option
6241 @item x
6242 Region distance in pixels from the left edge of the frame.
6243 @item y
6244 Region distance in pixels from the top edge of the frame.
6245 @item w
6246 Region width in pixels.
6247 @item h
6248 Region height in pixels.
6249
6250 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6251 and may contain the following variables:
6252 @table @option
6253 @item iw
6254 Width of the input frame.
6255 @item ih
6256 Height of the input frame.
6257 @end table
6258
6259 @item qoffset
6260 Quantisation offset to apply within the region.
6261
6262 This must be a real value in the range -1 to +1.  A value of zero
6263 indicates no quality change.  A negative value asks for better quality
6264 (less quantisation), while a positive value asks for worse quality
6265 (greater quantisation).
6266
6267 The range is calibrated so that the extreme values indicate the
6268 largest possible offset - if the rest of the frame is encoded with the
6269 worst possible quality, an offset of -1 indicates that this region
6270 should be encoded with the best possible quality anyway.  Intermediate
6271 values are then interpolated in some codec-dependent way.
6272
6273 For example, in 10-bit H.264 the quantisation parameter varies between
6274 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6275 this region should be encoded with a QP around one-tenth of the full
6276 range better than the rest of the frame.  So, if most of the frame
6277 were to be encoded with a QP of around 30, this region would get a QP
6278 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6279 An extreme value of -1 would indicate that this region should be
6280 encoded with the best possible quality regardless of the treatment of
6281 the rest of the frame - that is, should be encoded at a QP of -12.
6282 @item clear
6283 If set to true, remove any existing regions of interest marked on the
6284 frame before adding the new one.
6285 @end table
6286
6287 @subsection Examples
6288
6289 @itemize
6290 @item
6291 Mark the centre quarter of the frame as interesting.
6292 @example
6293 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6294 @end example
6295 @item
6296 Mark the 100-pixel-wide region on the left edge of the frame as very
6297 uninteresting (to be encoded at much lower quality than the rest of
6298 the frame).
6299 @example
6300 addroi=0:0:100:ih:+1/5
6301 @end example
6302 @end itemize
6303
6304 @section alphaextract
6305
6306 Extract the alpha component from the input as a grayscale video. This
6307 is especially useful with the @var{alphamerge} filter.
6308
6309 @section alphamerge
6310
6311 Add or replace the alpha component of the primary input with the
6312 grayscale value of a second input. This is intended for use with
6313 @var{alphaextract} to allow the transmission or storage of frame
6314 sequences that have alpha in a format that doesn't support an alpha
6315 channel.
6316
6317 For example, to reconstruct full frames from a normal YUV-encoded video
6318 and a separate video created with @var{alphaextract}, you might use:
6319 @example
6320 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6321 @end example
6322
6323 Since this filter is designed for reconstruction, it operates on frame
6324 sequences without considering timestamps, and terminates when either
6325 input reaches end of stream. This will cause problems if your encoding
6326 pipeline drops frames. If you're trying to apply an image as an
6327 overlay to a video stream, consider the @var{overlay} filter instead.
6328
6329 @section amplify
6330
6331 Amplify differences between current pixel and pixels of adjacent frames in
6332 same pixel location.
6333
6334 This filter accepts the following options:
6335
6336 @table @option
6337 @item radius
6338 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6339 For example radius of 3 will instruct filter to calculate average of 7 frames.
6340
6341 @item factor
6342 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6343
6344 @item threshold
6345 Set threshold for difference amplification. Any difference greater or equal to
6346 this value will not alter source pixel. Default is 10.
6347 Allowed range is from 0 to 65535.
6348
6349 @item tolerance
6350 Set tolerance for difference amplification. Any difference lower to
6351 this value will not alter source pixel. Default is 0.
6352 Allowed range is from 0 to 65535.
6353
6354 @item low
6355 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6356 This option controls maximum possible value that will decrease source pixel value.
6357
6358 @item high
6359 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6360 This option controls maximum possible value that will increase source pixel value.
6361
6362 @item planes
6363 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6364 @end table
6365
6366 @subsection Commands
6367
6368 This filter supports the following @ref{commands} that corresponds to option of same name:
6369 @table @option
6370 @item factor
6371 @item threshold
6372 @item tolerance
6373 @item low
6374 @item high
6375 @item planes
6376 @end table
6377
6378 @section ass
6379
6380 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6381 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6382 Substation Alpha) subtitles files.
6383
6384 This filter accepts the following option in addition to the common options from
6385 the @ref{subtitles} filter:
6386
6387 @table @option
6388 @item shaping
6389 Set the shaping engine
6390
6391 Available values are:
6392 @table @samp
6393 @item auto
6394 The default libass shaping engine, which is the best available.
6395 @item simple
6396 Fast, font-agnostic shaper that can do only substitutions
6397 @item complex
6398 Slower shaper using OpenType for substitutions and positioning
6399 @end table
6400
6401 The default is @code{auto}.
6402 @end table
6403
6404 @section atadenoise
6405 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6406
6407 The filter accepts the following options:
6408
6409 @table @option
6410 @item 0a
6411 Set threshold A for 1st plane. Default is 0.02.
6412 Valid range is 0 to 0.3.
6413
6414 @item 0b
6415 Set threshold B for 1st plane. Default is 0.04.
6416 Valid range is 0 to 5.
6417
6418 @item 1a
6419 Set threshold A for 2nd plane. Default is 0.02.
6420 Valid range is 0 to 0.3.
6421
6422 @item 1b
6423 Set threshold B for 2nd plane. Default is 0.04.
6424 Valid range is 0 to 5.
6425
6426 @item 2a
6427 Set threshold A for 3rd plane. Default is 0.02.
6428 Valid range is 0 to 0.3.
6429
6430 @item 2b
6431 Set threshold B for 3rd plane. Default is 0.04.
6432 Valid range is 0 to 5.
6433
6434 Threshold A is designed to react on abrupt changes in the input signal and
6435 threshold B is designed to react on continuous changes in the input signal.
6436
6437 @item s
6438 Set number of frames filter will use for averaging. Default is 9. Must be odd
6439 number in range [5, 129].
6440
6441 @item p
6442 Set what planes of frame filter will use for averaging. Default is all.
6443
6444 @item a
6445 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
6446 Alternatively can be set to @code{s} serial.
6447
6448 Parallel can be faster then serial, while other way around is never true.
6449 Parallel will abort early on first change being greater then thresholds, while serial
6450 will continue processing other side of frames if they are equal or bellow thresholds.
6451 @end table
6452
6453 @subsection Commands
6454 This filter supports same @ref{commands} as options except option @code{s}.
6455 The command accepts the same syntax of the corresponding option.
6456
6457 @section avgblur
6458
6459 Apply average blur filter.
6460
6461 The filter accepts the following options:
6462
6463 @table @option
6464 @item sizeX
6465 Set horizontal radius size.
6466
6467 @item planes
6468 Set which planes to filter. By default all planes are filtered.
6469
6470 @item sizeY
6471 Set vertical radius size, if zero it will be same as @code{sizeX}.
6472 Default is @code{0}.
6473 @end table
6474
6475 @subsection Commands
6476 This filter supports same commands as options.
6477 The command accepts the same syntax of the corresponding option.
6478
6479 If the specified expression is not valid, it is kept at its current
6480 value.
6481
6482 @section bbox
6483
6484 Compute the bounding box for the non-black pixels in the input frame
6485 luminance plane.
6486
6487 This filter computes the bounding box containing all the pixels with a
6488 luminance value greater than the minimum allowed value.
6489 The parameters describing the bounding box are printed on the filter
6490 log.
6491
6492 The filter accepts the following option:
6493
6494 @table @option
6495 @item min_val
6496 Set the minimal luminance value. Default is @code{16}.
6497 @end table
6498
6499 @section bilateral
6500 Apply bilateral filter, spatial smoothing while preserving edges.
6501
6502 The filter accepts the following options:
6503 @table @option
6504 @item sigmaS
6505 Set sigma of gaussian function to calculate spatial weight.
6506 Allowed range is 0 to 10. Default is 0.1.
6507
6508 @item sigmaR
6509 Set sigma of gaussian function to calculate range weight.
6510 Allowed range is 0 to 1. Default is 0.1.
6511
6512 @item planes
6513 Set planes to filter. Default is first only.
6514 @end table
6515
6516 @section bitplanenoise
6517
6518 Show and measure bit plane noise.
6519
6520 The filter accepts the following options:
6521
6522 @table @option
6523 @item bitplane
6524 Set which plane to analyze. Default is @code{1}.
6525
6526 @item filter
6527 Filter out noisy pixels from @code{bitplane} set above.
6528 Default is disabled.
6529 @end table
6530
6531 @section blackdetect
6532
6533 Detect video intervals that are (almost) completely black. Can be
6534 useful to detect chapter transitions, commercials, or invalid
6535 recordings. Output lines contains the time for the start, end and
6536 duration of the detected black interval expressed in seconds.
6537
6538 In order to display the output lines, you need to set the loglevel at
6539 least to the AV_LOG_INFO value.
6540
6541 The filter accepts the following options:
6542
6543 @table @option
6544 @item black_min_duration, d
6545 Set the minimum detected black duration expressed in seconds. It must
6546 be a non-negative floating point number.
6547
6548 Default value is 2.0.
6549
6550 @item picture_black_ratio_th, pic_th
6551 Set the threshold for considering a picture "black".
6552 Express the minimum value for the ratio:
6553 @example
6554 @var{nb_black_pixels} / @var{nb_pixels}
6555 @end example
6556
6557 for which a picture is considered black.
6558 Default value is 0.98.
6559
6560 @item pixel_black_th, pix_th
6561 Set the threshold for considering a pixel "black".
6562
6563 The threshold expresses the maximum pixel luminance value for which a
6564 pixel is considered "black". The provided value is scaled according to
6565 the following equation:
6566 @example
6567 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6568 @end example
6569
6570 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6571 the input video format, the range is [0-255] for YUV full-range
6572 formats and [16-235] for YUV non full-range formats.
6573
6574 Default value is 0.10.
6575 @end table
6576
6577 The following example sets the maximum pixel threshold to the minimum
6578 value, and detects only black intervals of 2 or more seconds:
6579 @example
6580 blackdetect=d=2:pix_th=0.00
6581 @end example
6582
6583 @section blackframe
6584
6585 Detect frames that are (almost) completely black. Can be useful to
6586 detect chapter transitions or commercials. Output lines consist of
6587 the frame number of the detected frame, the percentage of blackness,
6588 the position in the file if known or -1 and the timestamp in seconds.
6589
6590 In order to display the output lines, you need to set the loglevel at
6591 least to the AV_LOG_INFO value.
6592
6593 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6594 The value represents the percentage of pixels in the picture that
6595 are below the threshold value.
6596
6597 It accepts the following parameters:
6598
6599 @table @option
6600
6601 @item amount
6602 The percentage of the pixels that have to be below the threshold; it defaults to
6603 @code{98}.
6604
6605 @item threshold, thresh
6606 The threshold below which a pixel value is considered black; it defaults to
6607 @code{32}.
6608
6609 @end table
6610
6611 @anchor{blend}
6612 @section blend
6613
6614 Blend two video frames into each other.
6615
6616 The @code{blend} filter takes two input streams and outputs one
6617 stream, the first input is the "top" layer and second input is
6618 "bottom" layer.  By default, the output terminates when the longest input terminates.
6619
6620 The @code{tblend} (time blend) filter takes two consecutive frames
6621 from one single stream, and outputs the result obtained by blending
6622 the new frame on top of the old frame.
6623
6624 A description of the accepted options follows.
6625
6626 @table @option
6627 @item c0_mode
6628 @item c1_mode
6629 @item c2_mode
6630 @item c3_mode
6631 @item all_mode
6632 Set blend mode for specific pixel component or all pixel components in case
6633 of @var{all_mode}. Default value is @code{normal}.
6634
6635 Available values for component modes are:
6636 @table @samp
6637 @item addition
6638 @item grainmerge
6639 @item and
6640 @item average
6641 @item burn
6642 @item darken
6643 @item difference
6644 @item grainextract
6645 @item divide
6646 @item dodge
6647 @item freeze
6648 @item exclusion
6649 @item extremity
6650 @item glow
6651 @item hardlight
6652 @item hardmix
6653 @item heat
6654 @item lighten
6655 @item linearlight
6656 @item multiply
6657 @item multiply128
6658 @item negation
6659 @item normal
6660 @item or
6661 @item overlay
6662 @item phoenix
6663 @item pinlight
6664 @item reflect
6665 @item screen
6666 @item softlight
6667 @item subtract
6668 @item vividlight
6669 @item xor
6670 @end table
6671
6672 @item c0_opacity
6673 @item c1_opacity
6674 @item c2_opacity
6675 @item c3_opacity
6676 @item all_opacity
6677 Set blend opacity for specific pixel component or all pixel components in case
6678 of @var{all_opacity}. Only used in combination with pixel component blend modes.
6679
6680 @item c0_expr
6681 @item c1_expr
6682 @item c2_expr
6683 @item c3_expr
6684 @item all_expr
6685 Set blend expression for specific pixel component or all pixel components in case
6686 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6687
6688 The expressions can use the following variables:
6689
6690 @table @option
6691 @item N
6692 The sequential number of the filtered frame, starting from @code{0}.
6693
6694 @item X
6695 @item Y
6696 the coordinates of the current sample
6697
6698 @item W
6699 @item H
6700 the width and height of currently filtered plane
6701
6702 @item SW
6703 @item SH
6704 Width and height scale for the plane being filtered. It is the
6705 ratio between the dimensions of the current plane to the luma plane,
6706 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6707 the luma plane and @code{0.5,0.5} for the chroma planes.
6708
6709 @item T
6710 Time of the current frame, expressed in seconds.
6711
6712 @item TOP, A
6713 Value of pixel component at current location for first video frame (top layer).
6714
6715 @item BOTTOM, B
6716 Value of pixel component at current location for second video frame (bottom layer).
6717 @end table
6718 @end table
6719
6720 The @code{blend} filter also supports the @ref{framesync} options.
6721
6722 @subsection Examples
6723
6724 @itemize
6725 @item
6726 Apply transition from bottom layer to top layer in first 10 seconds:
6727 @example
6728 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6729 @end example
6730
6731 @item
6732 Apply linear horizontal transition from top layer to bottom layer:
6733 @example
6734 blend=all_expr='A*(X/W)+B*(1-X/W)'
6735 @end example
6736
6737 @item
6738 Apply 1x1 checkerboard effect:
6739 @example
6740 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6741 @end example
6742
6743 @item
6744 Apply uncover left effect:
6745 @example
6746 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6747 @end example
6748
6749 @item
6750 Apply uncover down effect:
6751 @example
6752 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6753 @end example
6754
6755 @item
6756 Apply uncover up-left effect:
6757 @example
6758 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6759 @end example
6760
6761 @item
6762 Split diagonally video and shows top and bottom layer on each side:
6763 @example
6764 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6765 @end example
6766
6767 @item
6768 Display differences between the current and the previous frame:
6769 @example
6770 tblend=all_mode=grainextract
6771 @end example
6772 @end itemize
6773
6774 @section bm3d
6775
6776 Denoise frames using Block-Matching 3D algorithm.
6777
6778 The filter accepts the following options.
6779
6780 @table @option
6781 @item sigma
6782 Set denoising strength. Default value is 1.
6783 Allowed range is from 0 to 999.9.
6784 The denoising algorithm is very sensitive to sigma, so adjust it
6785 according to the source.
6786
6787 @item block
6788 Set local patch size. This sets dimensions in 2D.
6789
6790 @item bstep
6791 Set sliding step for processing blocks. Default value is 4.
6792 Allowed range is from 1 to 64.
6793 Smaller values allows processing more reference blocks and is slower.
6794
6795 @item group
6796 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6797 When set to 1, no block matching is done. Larger values allows more blocks
6798 in single group.
6799 Allowed range is from 1 to 256.
6800
6801 @item range
6802 Set radius for search block matching. Default is 9.
6803 Allowed range is from 1 to INT32_MAX.
6804
6805 @item mstep
6806 Set step between two search locations for block matching. Default is 1.
6807 Allowed range is from 1 to 64. Smaller is slower.
6808
6809 @item thmse
6810 Set threshold of mean square error for block matching. Valid range is 0 to
6811 INT32_MAX.
6812
6813 @item hdthr
6814 Set thresholding parameter for hard thresholding in 3D transformed domain.
6815 Larger values results in stronger hard-thresholding filtering in frequency
6816 domain.
6817
6818 @item estim
6819 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6820 Default is @code{basic}.
6821
6822 @item ref
6823 If enabled, filter will use 2nd stream for block matching.
6824 Default is disabled for @code{basic} value of @var{estim} option,
6825 and always enabled if value of @var{estim} is @code{final}.
6826
6827 @item planes
6828 Set planes to filter. Default is all available except alpha.
6829 @end table
6830
6831 @subsection Examples
6832
6833 @itemize
6834 @item
6835 Basic filtering with bm3d:
6836 @example
6837 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6838 @end example
6839
6840 @item
6841 Same as above, but filtering only luma:
6842 @example
6843 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6844 @end example
6845
6846 @item
6847 Same as above, but with both estimation modes:
6848 @example
6849 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
6850 @end example
6851
6852 @item
6853 Same as above, but prefilter with @ref{nlmeans} filter instead:
6854 @example
6855 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
6856 @end example
6857 @end itemize
6858
6859 @section boxblur
6860
6861 Apply a boxblur algorithm to the input video.
6862
6863 It accepts the following parameters:
6864
6865 @table @option
6866
6867 @item luma_radius, lr
6868 @item luma_power, lp
6869 @item chroma_radius, cr
6870 @item chroma_power, cp
6871 @item alpha_radius, ar
6872 @item alpha_power, ap
6873
6874 @end table
6875
6876 A description of the accepted options follows.
6877
6878 @table @option
6879 @item luma_radius, lr
6880 @item chroma_radius, cr
6881 @item alpha_radius, ar
6882 Set an expression for the box radius in pixels used for blurring the
6883 corresponding input plane.
6884
6885 The radius value must be a non-negative number, and must not be
6886 greater than the value of the expression @code{min(w,h)/2} for the
6887 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6888 planes.
6889
6890 Default value for @option{luma_radius} is "2". If not specified,
6891 @option{chroma_radius} and @option{alpha_radius} default to the
6892 corresponding value set for @option{luma_radius}.
6893
6894 The expressions can contain the following constants:
6895 @table @option
6896 @item w
6897 @item h
6898 The input width and height in pixels.
6899
6900 @item cw
6901 @item ch
6902 The input chroma image width and height in pixels.
6903
6904 @item hsub
6905 @item vsub
6906 The horizontal and vertical chroma subsample values. For example, for the
6907 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6908 @end table
6909
6910 @item luma_power, lp
6911 @item chroma_power, cp
6912 @item alpha_power, ap
6913 Specify how many times the boxblur filter is applied to the
6914 corresponding plane.
6915
6916 Default value for @option{luma_power} is 2. If not specified,
6917 @option{chroma_power} and @option{alpha_power} default to the
6918 corresponding value set for @option{luma_power}.
6919
6920 A value of 0 will disable the effect.
6921 @end table
6922
6923 @subsection Examples
6924
6925 @itemize
6926 @item
6927 Apply a boxblur filter with the luma, chroma, and alpha radii
6928 set to 2:
6929 @example
6930 boxblur=luma_radius=2:luma_power=1
6931 boxblur=2:1
6932 @end example
6933
6934 @item
6935 Set the luma radius to 2, and alpha and chroma radius to 0:
6936 @example
6937 boxblur=2:1:cr=0:ar=0
6938 @end example
6939
6940 @item
6941 Set the luma and chroma radii to a fraction of the video dimension:
6942 @example
6943 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6944 @end example
6945 @end itemize
6946
6947 @section bwdif
6948
6949 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6950 Deinterlacing Filter").
6951
6952 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6953 interpolation algorithms.
6954 It accepts the following parameters:
6955
6956 @table @option
6957 @item mode
6958 The interlacing mode to adopt. It accepts one of the following values:
6959
6960 @table @option
6961 @item 0, send_frame
6962 Output one frame for each frame.
6963 @item 1, send_field
6964 Output one frame for each field.
6965 @end table
6966
6967 The default value is @code{send_field}.
6968
6969 @item parity
6970 The picture field parity assumed for the input interlaced video. It accepts one
6971 of the following values:
6972
6973 @table @option
6974 @item 0, tff
6975 Assume the top field is first.
6976 @item 1, bff
6977 Assume the bottom field is first.
6978 @item -1, auto
6979 Enable automatic detection of field parity.
6980 @end table
6981
6982 The default value is @code{auto}.
6983 If the interlacing is unknown or the decoder does not export this information,
6984 top field first will be assumed.
6985
6986 @item deint
6987 Specify which frames to deinterlace. Accepts one of the following
6988 values:
6989
6990 @table @option
6991 @item 0, all
6992 Deinterlace all frames.
6993 @item 1, interlaced
6994 Only deinterlace frames marked as interlaced.
6995 @end table
6996
6997 The default value is @code{all}.
6998 @end table
6999
7000 @section cas
7001
7002 Apply Contrast Adaptive Sharpen filter to video stream.
7003
7004 The filter accepts the following options:
7005
7006 @table @option
7007 @item strength
7008 Set the sharpening strength. Default value is 0.
7009
7010 @item planes
7011 Set planes to filter. Default value is to filter all
7012 planes except alpha plane.
7013 @end table
7014
7015 @section chromahold
7016 Remove all color information for all colors except for certain one.
7017
7018 The filter accepts the following options:
7019
7020 @table @option
7021 @item color
7022 The color which will not be replaced with neutral chroma.
7023
7024 @item similarity
7025 Similarity percentage with the above color.
7026 0.01 matches only the exact key color, while 1.0 matches everything.
7027
7028 @item blend
7029 Blend percentage.
7030 0.0 makes pixels either fully gray, or not gray at all.
7031 Higher values result in more preserved color.
7032
7033 @item yuv
7034 Signals that the color passed is already in YUV instead of RGB.
7035
7036 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7037 This can be used to pass exact YUV values as hexadecimal numbers.
7038 @end table
7039
7040 @subsection Commands
7041 This filter supports same @ref{commands} as options.
7042 The command accepts the same syntax of the corresponding option.
7043
7044 If the specified expression is not valid, it is kept at its current
7045 value.
7046
7047 @section chromakey
7048 YUV colorspace color/chroma keying.
7049
7050 The filter accepts the following options:
7051
7052 @table @option
7053 @item color
7054 The color which will be replaced with transparency.
7055
7056 @item similarity
7057 Similarity percentage with the key color.
7058
7059 0.01 matches only the exact key color, while 1.0 matches everything.
7060
7061 @item blend
7062 Blend percentage.
7063
7064 0.0 makes pixels either fully transparent, or not transparent at all.
7065
7066 Higher values result in semi-transparent pixels, with a higher transparency
7067 the more similar the pixels color is to the key color.
7068
7069 @item yuv
7070 Signals that the color passed is already in YUV instead of RGB.
7071
7072 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7073 This can be used to pass exact YUV values as hexadecimal numbers.
7074 @end table
7075
7076 @subsection Commands
7077 This filter supports same @ref{commands} as options.
7078 The command accepts the same syntax of the corresponding option.
7079
7080 If the specified expression is not valid, it is kept at its current
7081 value.
7082
7083 @subsection Examples
7084
7085 @itemize
7086 @item
7087 Make every green pixel in the input image transparent:
7088 @example
7089 ffmpeg -i input.png -vf chromakey=green out.png
7090 @end example
7091
7092 @item
7093 Overlay a greenscreen-video on top of a static black background.
7094 @example
7095 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
7096 @end example
7097 @end itemize
7098
7099 @section chromashift
7100 Shift chroma pixels horizontally and/or vertically.
7101
7102 The filter accepts the following options:
7103 @table @option
7104 @item cbh
7105 Set amount to shift chroma-blue horizontally.
7106 @item cbv
7107 Set amount to shift chroma-blue vertically.
7108 @item crh
7109 Set amount to shift chroma-red horizontally.
7110 @item crv
7111 Set amount to shift chroma-red vertically.
7112 @item edge
7113 Set edge mode, can be @var{smear}, default, or @var{warp}.
7114 @end table
7115
7116 @subsection Commands
7117
7118 This filter supports the all above options as @ref{commands}.
7119
7120 @section ciescope
7121
7122 Display CIE color diagram with pixels overlaid onto it.
7123
7124 The filter accepts the following options:
7125
7126 @table @option
7127 @item system
7128 Set color system.
7129
7130 @table @samp
7131 @item ntsc, 470m
7132 @item ebu, 470bg
7133 @item smpte
7134 @item 240m
7135 @item apple
7136 @item widergb
7137 @item cie1931
7138 @item rec709, hdtv
7139 @item uhdtv, rec2020
7140 @item dcip3
7141 @end table
7142
7143 @item cie
7144 Set CIE system.
7145
7146 @table @samp
7147 @item xyy
7148 @item ucs
7149 @item luv
7150 @end table
7151
7152 @item gamuts
7153 Set what gamuts to draw.
7154
7155 See @code{system} option for available values.
7156
7157 @item size, s
7158 Set ciescope size, by default set to 512.
7159
7160 @item intensity, i
7161 Set intensity used to map input pixel values to CIE diagram.
7162
7163 @item contrast
7164 Set contrast used to draw tongue colors that are out of active color system gamut.
7165
7166 @item corrgamma
7167 Correct gamma displayed on scope, by default enabled.
7168
7169 @item showwhite
7170 Show white point on CIE diagram, by default disabled.
7171
7172 @item gamma
7173 Set input gamma. Used only with XYZ input color space.
7174 @end table
7175
7176 @section codecview
7177
7178 Visualize information exported by some codecs.
7179
7180 Some codecs can export information through frames using side-data or other
7181 means. For example, some MPEG based codecs export motion vectors through the
7182 @var{export_mvs} flag in the codec @option{flags2} option.
7183
7184 The filter accepts the following option:
7185
7186 @table @option
7187 @item mv
7188 Set motion vectors to visualize.
7189
7190 Available flags for @var{mv} are:
7191
7192 @table @samp
7193 @item pf
7194 forward predicted MVs of P-frames
7195 @item bf
7196 forward predicted MVs of B-frames
7197 @item bb
7198 backward predicted MVs of B-frames
7199 @end table
7200
7201 @item qp
7202 Display quantization parameters using the chroma planes.
7203
7204 @item mv_type, mvt
7205 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7206
7207 Available flags for @var{mv_type} are:
7208
7209 @table @samp
7210 @item fp
7211 forward predicted MVs
7212 @item bp
7213 backward predicted MVs
7214 @end table
7215
7216 @item frame_type, ft
7217 Set frame type to visualize motion vectors of.
7218
7219 Available flags for @var{frame_type} are:
7220
7221 @table @samp
7222 @item if
7223 intra-coded frames (I-frames)
7224 @item pf
7225 predicted frames (P-frames)
7226 @item bf
7227 bi-directionally predicted frames (B-frames)
7228 @end table
7229 @end table
7230
7231 @subsection Examples
7232
7233 @itemize
7234 @item
7235 Visualize forward predicted MVs of all frames using @command{ffplay}:
7236 @example
7237 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7238 @end example
7239
7240 @item
7241 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7242 @example
7243 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7244 @end example
7245 @end itemize
7246
7247 @section colorbalance
7248 Modify intensity of primary colors (red, green and blue) of input frames.
7249
7250 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7251 regions for the red-cyan, green-magenta or blue-yellow balance.
7252
7253 A positive adjustment value shifts the balance towards the primary color, a negative
7254 value towards the complementary color.
7255
7256 The filter accepts the following options:
7257
7258 @table @option
7259 @item rs
7260 @item gs
7261 @item bs
7262 Adjust red, green and blue shadows (darkest pixels).
7263
7264 @item rm
7265 @item gm
7266 @item bm
7267 Adjust red, green and blue midtones (medium pixels).
7268
7269 @item rh
7270 @item gh
7271 @item bh
7272 Adjust red, green and blue highlights (brightest pixels).
7273
7274 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7275
7276 @item pl
7277 Preserve lightness when changing color balance. Default is disabled.
7278 @end table
7279
7280 @subsection Examples
7281
7282 @itemize
7283 @item
7284 Add red color cast to shadows:
7285 @example
7286 colorbalance=rs=.3
7287 @end example
7288 @end itemize
7289
7290 @subsection Commands
7291
7292 This filter supports the all above options as @ref{commands}.
7293
7294 @section colorchannelmixer
7295
7296 Adjust video input frames by re-mixing color channels.
7297
7298 This filter modifies a color channel by adding the values associated to
7299 the other channels of the same pixels. For example if the value to
7300 modify is red, the output value will be:
7301 @example
7302 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
7303 @end example
7304
7305 The filter accepts the following options:
7306
7307 @table @option
7308 @item rr
7309 @item rg
7310 @item rb
7311 @item ra
7312 Adjust contribution of input red, green, blue and alpha channels for output red channel.
7313 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
7314
7315 @item gr
7316 @item gg
7317 @item gb
7318 @item ga
7319 Adjust contribution of input red, green, blue and alpha channels for output green channel.
7320 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
7321
7322 @item br
7323 @item bg
7324 @item bb
7325 @item ba
7326 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
7327 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
7328
7329 @item ar
7330 @item ag
7331 @item ab
7332 @item aa
7333 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
7334 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
7335
7336 Allowed ranges for options are @code{[-2.0, 2.0]}.
7337 @end table
7338
7339 @subsection Examples
7340
7341 @itemize
7342 @item
7343 Convert source to grayscale:
7344 @example
7345 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
7346 @end example
7347 @item
7348 Simulate sepia tones:
7349 @example
7350 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
7351 @end example
7352 @end itemize
7353
7354 @subsection Commands
7355
7356 This filter supports the all above options as @ref{commands}.
7357
7358 @section colorkey
7359 RGB colorspace color keying.
7360
7361 The filter accepts the following options:
7362
7363 @table @option
7364 @item color
7365 The color which will be replaced with transparency.
7366
7367 @item similarity
7368 Similarity percentage with the key color.
7369
7370 0.01 matches only the exact key color, while 1.0 matches everything.
7371
7372 @item blend
7373 Blend percentage.
7374
7375 0.0 makes pixels either fully transparent, or not transparent at all.
7376
7377 Higher values result in semi-transparent pixels, with a higher transparency
7378 the more similar the pixels color is to the key color.
7379 @end table
7380
7381 @subsection Examples
7382
7383 @itemize
7384 @item
7385 Make every green pixel in the input image transparent:
7386 @example
7387 ffmpeg -i input.png -vf colorkey=green out.png
7388 @end example
7389
7390 @item
7391 Overlay a greenscreen-video on top of a static background image.
7392 @example
7393 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
7394 @end example
7395 @end itemize
7396
7397 @subsection Commands
7398 This filter supports same @ref{commands} as options.
7399 The command accepts the same syntax of the corresponding option.
7400
7401 If the specified expression is not valid, it is kept at its current
7402 value.
7403
7404 @section colorhold
7405 Remove all color information for all RGB colors except for certain one.
7406
7407 The filter accepts the following options:
7408
7409 @table @option
7410 @item color
7411 The color which will not be replaced with neutral gray.
7412
7413 @item similarity
7414 Similarity percentage with the above color.
7415 0.01 matches only the exact key color, while 1.0 matches everything.
7416
7417 @item blend
7418 Blend percentage. 0.0 makes pixels fully gray.
7419 Higher values result in more preserved color.
7420 @end table
7421
7422 @subsection Commands
7423 This filter supports same @ref{commands} as options.
7424 The command accepts the same syntax of the corresponding option.
7425
7426 If the specified expression is not valid, it is kept at its current
7427 value.
7428
7429 @section colorlevels
7430
7431 Adjust video input frames using levels.
7432
7433 The filter accepts the following options:
7434
7435 @table @option
7436 @item rimin
7437 @item gimin
7438 @item bimin
7439 @item aimin
7440 Adjust red, green, blue and alpha input black point.
7441 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7442
7443 @item rimax
7444 @item gimax
7445 @item bimax
7446 @item aimax
7447 Adjust red, green, blue and alpha input white point.
7448 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
7449
7450 Input levels are used to lighten highlights (bright tones), darken shadows
7451 (dark tones), change the balance of bright and dark tones.
7452
7453 @item romin
7454 @item gomin
7455 @item bomin
7456 @item aomin
7457 Adjust red, green, blue and alpha output black point.
7458 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
7459
7460 @item romax
7461 @item gomax
7462 @item bomax
7463 @item aomax
7464 Adjust red, green, blue and alpha output white point.
7465 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
7466
7467 Output levels allows manual selection of a constrained output level range.
7468 @end table
7469
7470 @subsection Examples
7471
7472 @itemize
7473 @item
7474 Make video output darker:
7475 @example
7476 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
7477 @end example
7478
7479 @item
7480 Increase contrast:
7481 @example
7482 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
7483 @end example
7484
7485 @item
7486 Make video output lighter:
7487 @example
7488 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
7489 @end example
7490
7491 @item
7492 Increase brightness:
7493 @example
7494 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
7495 @end example
7496 @end itemize
7497
7498 @subsection Commands
7499
7500 This filter supports the all above options as @ref{commands}.
7501
7502 @section colormatrix
7503
7504 Convert color matrix.
7505
7506 The filter accepts the following options:
7507
7508 @table @option
7509 @item src
7510 @item dst
7511 Specify the source and destination color matrix. Both values must be
7512 specified.
7513
7514 The accepted values are:
7515 @table @samp
7516 @item bt709
7517 BT.709
7518
7519 @item fcc
7520 FCC
7521
7522 @item bt601
7523 BT.601
7524
7525 @item bt470
7526 BT.470
7527
7528 @item bt470bg
7529 BT.470BG
7530
7531 @item smpte170m
7532 SMPTE-170M
7533
7534 @item smpte240m
7535 SMPTE-240M
7536
7537 @item bt2020
7538 BT.2020
7539 @end table
7540 @end table
7541
7542 For example to convert from BT.601 to SMPTE-240M, use the command:
7543 @example
7544 colormatrix=bt601:smpte240m
7545 @end example
7546
7547 @section colorspace
7548
7549 Convert colorspace, transfer characteristics or color primaries.
7550 Input video needs to have an even size.
7551
7552 The filter accepts the following options:
7553
7554 @table @option
7555 @anchor{all}
7556 @item all
7557 Specify all color properties at once.
7558
7559 The accepted values are:
7560 @table @samp
7561 @item bt470m
7562 BT.470M
7563
7564 @item bt470bg
7565 BT.470BG
7566
7567 @item bt601-6-525
7568 BT.601-6 525
7569
7570 @item bt601-6-625
7571 BT.601-6 625
7572
7573 @item bt709
7574 BT.709
7575
7576 @item smpte170m
7577 SMPTE-170M
7578
7579 @item smpte240m
7580 SMPTE-240M
7581
7582 @item bt2020
7583 BT.2020
7584
7585 @end table
7586
7587 @anchor{space}
7588 @item space
7589 Specify output colorspace.
7590
7591 The accepted values are:
7592 @table @samp
7593 @item bt709
7594 BT.709
7595
7596 @item fcc
7597 FCC
7598
7599 @item bt470bg
7600 BT.470BG or BT.601-6 625
7601
7602 @item smpte170m
7603 SMPTE-170M or BT.601-6 525
7604
7605 @item smpte240m
7606 SMPTE-240M
7607
7608 @item ycgco
7609 YCgCo
7610
7611 @item bt2020ncl
7612 BT.2020 with non-constant luminance
7613
7614 @end table
7615
7616 @anchor{trc}
7617 @item trc
7618 Specify output transfer characteristics.
7619
7620 The accepted values are:
7621 @table @samp
7622 @item bt709
7623 BT.709
7624
7625 @item bt470m
7626 BT.470M
7627
7628 @item bt470bg
7629 BT.470BG
7630
7631 @item gamma22
7632 Constant gamma of 2.2
7633
7634 @item gamma28
7635 Constant gamma of 2.8
7636
7637 @item smpte170m
7638 SMPTE-170M, BT.601-6 625 or BT.601-6 525
7639
7640 @item smpte240m
7641 SMPTE-240M
7642
7643 @item srgb
7644 SRGB
7645
7646 @item iec61966-2-1
7647 iec61966-2-1
7648
7649 @item iec61966-2-4
7650 iec61966-2-4
7651
7652 @item xvycc
7653 xvycc
7654
7655 @item bt2020-10
7656 BT.2020 for 10-bits content
7657
7658 @item bt2020-12
7659 BT.2020 for 12-bits content
7660
7661 @end table
7662
7663 @anchor{primaries}
7664 @item primaries
7665 Specify output color primaries.
7666
7667 The accepted values are:
7668 @table @samp
7669 @item bt709
7670 BT.709
7671
7672 @item bt470m
7673 BT.470M
7674
7675 @item bt470bg
7676 BT.470BG or BT.601-6 625
7677
7678 @item smpte170m
7679 SMPTE-170M or BT.601-6 525
7680
7681 @item smpte240m
7682 SMPTE-240M
7683
7684 @item film
7685 film
7686
7687 @item smpte431
7688 SMPTE-431
7689
7690 @item smpte432
7691 SMPTE-432
7692
7693 @item bt2020
7694 BT.2020
7695
7696 @item jedec-p22
7697 JEDEC P22 phosphors
7698
7699 @end table
7700
7701 @anchor{range}
7702 @item range
7703 Specify output color range.
7704
7705 The accepted values are:
7706 @table @samp
7707 @item tv
7708 TV (restricted) range
7709
7710 @item mpeg
7711 MPEG (restricted) range
7712
7713 @item pc
7714 PC (full) range
7715
7716 @item jpeg
7717 JPEG (full) range
7718
7719 @end table
7720
7721 @item format
7722 Specify output color format.
7723
7724 The accepted values are:
7725 @table @samp
7726 @item yuv420p
7727 YUV 4:2:0 planar 8-bits
7728
7729 @item yuv420p10
7730 YUV 4:2:0 planar 10-bits
7731
7732 @item yuv420p12
7733 YUV 4:2:0 planar 12-bits
7734
7735 @item yuv422p
7736 YUV 4:2:2 planar 8-bits
7737
7738 @item yuv422p10
7739 YUV 4:2:2 planar 10-bits
7740
7741 @item yuv422p12
7742 YUV 4:2:2 planar 12-bits
7743
7744 @item yuv444p
7745 YUV 4:4:4 planar 8-bits
7746
7747 @item yuv444p10
7748 YUV 4:4:4 planar 10-bits
7749
7750 @item yuv444p12
7751 YUV 4:4:4 planar 12-bits
7752
7753 @end table
7754
7755 @item fast
7756 Do a fast conversion, which skips gamma/primary correction. This will take
7757 significantly less CPU, but will be mathematically incorrect. To get output
7758 compatible with that produced by the colormatrix filter, use fast=1.
7759
7760 @item dither
7761 Specify dithering mode.
7762
7763 The accepted values are:
7764 @table @samp
7765 @item none
7766 No dithering
7767
7768 @item fsb
7769 Floyd-Steinberg dithering
7770 @end table
7771
7772 @item wpadapt
7773 Whitepoint adaptation mode.
7774
7775 The accepted values are:
7776 @table @samp
7777 @item bradford
7778 Bradford whitepoint adaptation
7779
7780 @item vonkries
7781 von Kries whitepoint adaptation
7782
7783 @item identity
7784 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7785 @end table
7786
7787 @item iall
7788 Override all input properties at once. Same accepted values as @ref{all}.
7789
7790 @item ispace
7791 Override input colorspace. Same accepted values as @ref{space}.
7792
7793 @item iprimaries
7794 Override input color primaries. Same accepted values as @ref{primaries}.
7795
7796 @item itrc
7797 Override input transfer characteristics. Same accepted values as @ref{trc}.
7798
7799 @item irange
7800 Override input color range. Same accepted values as @ref{range}.
7801
7802 @end table
7803
7804 The filter converts the transfer characteristics, color space and color
7805 primaries to the specified user values. The output value, if not specified,
7806 is set to a default value based on the "all" property. If that property is
7807 also not specified, the filter will log an error. The output color range and
7808 format default to the same value as the input color range and format. The
7809 input transfer characteristics, color space, color primaries and color range
7810 should be set on the input data. If any of these are missing, the filter will
7811 log an error and no conversion will take place.
7812
7813 For example to convert the input to SMPTE-240M, use the command:
7814 @example
7815 colorspace=smpte240m
7816 @end example
7817
7818 @section convolution
7819
7820 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7821
7822 The filter accepts the following options:
7823
7824 @table @option
7825 @item 0m
7826 @item 1m
7827 @item 2m
7828 @item 3m
7829 Set matrix for each plane.
7830 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7831 and from 1 to 49 odd number of signed integers in @var{row} mode.
7832
7833 @item 0rdiv
7834 @item 1rdiv
7835 @item 2rdiv
7836 @item 3rdiv
7837 Set multiplier for calculated value for each plane.
7838 If unset or 0, it will be sum of all matrix elements.
7839
7840 @item 0bias
7841 @item 1bias
7842 @item 2bias
7843 @item 3bias
7844 Set bias for each plane. This value is added to the result of the multiplication.
7845 Useful for making the overall image brighter or darker. Default is 0.0.
7846
7847 @item 0mode
7848 @item 1mode
7849 @item 2mode
7850 @item 3mode
7851 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7852 Default is @var{square}.
7853 @end table
7854
7855 @subsection Examples
7856
7857 @itemize
7858 @item
7859 Apply sharpen:
7860 @example
7861 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"
7862 @end example
7863
7864 @item
7865 Apply blur:
7866 @example
7867 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"
7868 @end example
7869
7870 @item
7871 Apply edge enhance:
7872 @example
7873 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"
7874 @end example
7875
7876 @item
7877 Apply edge detect:
7878 @example
7879 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"
7880 @end example
7881
7882 @item
7883 Apply laplacian edge detector which includes diagonals:
7884 @example
7885 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"
7886 @end example
7887
7888 @item
7889 Apply emboss:
7890 @example
7891 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"
7892 @end example
7893 @end itemize
7894
7895 @section convolve
7896
7897 Apply 2D convolution of video stream in frequency domain using second stream
7898 as impulse.
7899
7900 The filter accepts the following options:
7901
7902 @table @option
7903 @item planes
7904 Set which planes to process.
7905
7906 @item impulse
7907 Set which impulse video frames will be processed, can be @var{first}
7908 or @var{all}. Default is @var{all}.
7909 @end table
7910
7911 The @code{convolve} filter also supports the @ref{framesync} options.
7912
7913 @section copy
7914
7915 Copy the input video source unchanged to the output. This is mainly useful for
7916 testing purposes.
7917
7918 @anchor{coreimage}
7919 @section coreimage
7920 Video filtering on GPU using Apple's CoreImage API on OSX.
7921
7922 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7923 processed by video hardware. However, software-based OpenGL implementations
7924 exist which means there is no guarantee for hardware processing. It depends on
7925 the respective OSX.
7926
7927 There are many filters and image generators provided by Apple that come with a
7928 large variety of options. The filter has to be referenced by its name along
7929 with its options.
7930
7931 The coreimage filter accepts the following options:
7932 @table @option
7933 @item list_filters
7934 List all available filters and generators along with all their respective
7935 options as well as possible minimum and maximum values along with the default
7936 values.
7937 @example
7938 list_filters=true
7939 @end example
7940
7941 @item filter
7942 Specify all filters by their respective name and options.
7943 Use @var{list_filters} to determine all valid filter names and options.
7944 Numerical options are specified by a float value and are automatically clamped
7945 to their respective value range.  Vector and color options have to be specified
7946 by a list of space separated float values. Character escaping has to be done.
7947 A special option name @code{default} is available to use default options for a
7948 filter.
7949
7950 It is required to specify either @code{default} or at least one of the filter options.
7951 All omitted options are used with their default values.
7952 The syntax of the filter string is as follows:
7953 @example
7954 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7955 @end example
7956
7957 @item output_rect
7958 Specify a rectangle where the output of the filter chain is copied into the
7959 input image. It is given by a list of space separated float values:
7960 @example
7961 output_rect=x\ y\ width\ height
7962 @end example
7963 If not given, the output rectangle equals the dimensions of the input image.
7964 The output rectangle is automatically cropped at the borders of the input
7965 image. Negative values are valid for each component.
7966 @example
7967 output_rect=25\ 25\ 100\ 100
7968 @end example
7969 @end table
7970
7971 Several filters can be chained for successive processing without GPU-HOST
7972 transfers allowing for fast processing of complex filter chains.
7973 Currently, only filters with zero (generators) or exactly one (filters) input
7974 image and one output image are supported. Also, transition filters are not yet
7975 usable as intended.
7976
7977 Some filters generate output images with additional padding depending on the
7978 respective filter kernel. The padding is automatically removed to ensure the
7979 filter output has the same size as the input image.
7980
7981 For image generators, the size of the output image is determined by the
7982 previous output image of the filter chain or the input image of the whole
7983 filterchain, respectively. The generators do not use the pixel information of
7984 this image to generate their output. However, the generated output is
7985 blended onto this image, resulting in partial or complete coverage of the
7986 output image.
7987
7988 The @ref{coreimagesrc} video source can be used for generating input images
7989 which are directly fed into the filter chain. By using it, providing input
7990 images by another video source or an input video is not required.
7991
7992 @subsection Examples
7993
7994 @itemize
7995
7996 @item
7997 List all filters available:
7998 @example
7999 coreimage=list_filters=true
8000 @end example
8001
8002 @item
8003 Use the CIBoxBlur filter with default options to blur an image:
8004 @example
8005 coreimage=filter=CIBoxBlur@@default
8006 @end example
8007
8008 @item
8009 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8010 its center at 100x100 and a radius of 50 pixels:
8011 @example
8012 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8013 @end example
8014
8015 @item
8016 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8017 given as complete and escaped command-line for Apple's standard bash shell:
8018 @example
8019 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8020 @end example
8021 @end itemize
8022
8023 @section cover_rect
8024
8025 Cover a rectangular object
8026
8027 It accepts the following options:
8028
8029 @table @option
8030 @item cover
8031 Filepath of the optional cover image, needs to be in yuv420.
8032
8033 @item mode
8034 Set covering mode.
8035
8036 It accepts the following values:
8037 @table @samp
8038 @item cover
8039 cover it by the supplied image
8040 @item blur
8041 cover it by interpolating the surrounding pixels
8042 @end table
8043
8044 Default value is @var{blur}.
8045 @end table
8046
8047 @subsection Examples
8048
8049 @itemize
8050 @item
8051 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8052 @example
8053 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8054 @end example
8055 @end itemize
8056
8057 @section crop
8058
8059 Crop the input video to given dimensions.
8060
8061 It accepts the following parameters:
8062
8063 @table @option
8064 @item w, out_w
8065 The width of the output video. It defaults to @code{iw}.
8066 This expression is evaluated only once during the filter
8067 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8068
8069 @item h, out_h
8070 The height of the output video. It defaults to @code{ih}.
8071 This expression is evaluated only once during the filter
8072 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8073
8074 @item x
8075 The horizontal position, in the input video, of the left edge of the output
8076 video. It defaults to @code{(in_w-out_w)/2}.
8077 This expression is evaluated per-frame.
8078
8079 @item y
8080 The vertical position, in the input video, of the top edge of the output video.
8081 It defaults to @code{(in_h-out_h)/2}.
8082 This expression is evaluated per-frame.
8083
8084 @item keep_aspect
8085 If set to 1 will force the output display aspect ratio
8086 to be the same of the input, by changing the output sample aspect
8087 ratio. It defaults to 0.
8088
8089 @item exact
8090 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8091 width/height/x/y as specified and will not be rounded to nearest smaller value.
8092 It defaults to 0.
8093 @end table
8094
8095 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8096 expressions containing the following constants:
8097
8098 @table @option
8099 @item x
8100 @item y
8101 The computed values for @var{x} and @var{y}. They are evaluated for
8102 each new frame.
8103
8104 @item in_w
8105 @item in_h
8106 The input width and height.
8107
8108 @item iw
8109 @item ih
8110 These are the same as @var{in_w} and @var{in_h}.
8111
8112 @item out_w
8113 @item out_h
8114 The output (cropped) width and height.
8115
8116 @item ow
8117 @item oh
8118 These are the same as @var{out_w} and @var{out_h}.
8119
8120 @item a
8121 same as @var{iw} / @var{ih}
8122
8123 @item sar
8124 input sample aspect ratio
8125
8126 @item dar
8127 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8128
8129 @item hsub
8130 @item vsub
8131 horizontal and vertical chroma subsample values. For example for the
8132 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8133
8134 @item n
8135 The number of the input frame, starting from 0.
8136
8137 @item pos
8138 the position in the file of the input frame, NAN if unknown
8139
8140 @item t
8141 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8142
8143 @end table
8144
8145 The expression for @var{out_w} may depend on the value of @var{out_h},
8146 and the expression for @var{out_h} may depend on @var{out_w}, but they
8147 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8148 evaluated after @var{out_w} and @var{out_h}.
8149
8150 The @var{x} and @var{y} parameters specify the expressions for the
8151 position of the top-left corner of the output (non-cropped) area. They
8152 are evaluated for each frame. If the evaluated value is not valid, it
8153 is approximated to the nearest valid value.
8154
8155 The expression for @var{x} may depend on @var{y}, and the expression
8156 for @var{y} may depend on @var{x}.
8157
8158 @subsection Examples
8159
8160 @itemize
8161 @item
8162 Crop area with size 100x100 at position (12,34).
8163 @example
8164 crop=100:100:12:34
8165 @end example
8166
8167 Using named options, the example above becomes:
8168 @example
8169 crop=w=100:h=100:x=12:y=34
8170 @end example
8171
8172 @item
8173 Crop the central input area with size 100x100:
8174 @example
8175 crop=100:100
8176 @end example
8177
8178 @item
8179 Crop the central input area with size 2/3 of the input video:
8180 @example
8181 crop=2/3*in_w:2/3*in_h
8182 @end example
8183
8184 @item
8185 Crop the input video central square:
8186 @example
8187 crop=out_w=in_h
8188 crop=in_h
8189 @end example
8190
8191 @item
8192 Delimit the rectangle with the top-left corner placed at position
8193 100:100 and the right-bottom corner corresponding to the right-bottom
8194 corner of the input image.
8195 @example
8196 crop=in_w-100:in_h-100:100:100
8197 @end example
8198
8199 @item
8200 Crop 10 pixels from the left and right borders, and 20 pixels from
8201 the top and bottom borders
8202 @example
8203 crop=in_w-2*10:in_h-2*20
8204 @end example
8205
8206 @item
8207 Keep only the bottom right quarter of the input image:
8208 @example
8209 crop=in_w/2:in_h/2:in_w/2:in_h/2
8210 @end example
8211
8212 @item
8213 Crop height for getting Greek harmony:
8214 @example
8215 crop=in_w:1/PHI*in_w
8216 @end example
8217
8218 @item
8219 Apply trembling effect:
8220 @example
8221 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)
8222 @end example
8223
8224 @item
8225 Apply erratic camera effect depending on timestamp:
8226 @example
8227 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)"
8228 @end example
8229
8230 @item
8231 Set x depending on the value of y:
8232 @example
8233 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8234 @end example
8235 @end itemize
8236
8237 @subsection Commands
8238
8239 This filter supports the following commands:
8240 @table @option
8241 @item w, out_w
8242 @item h, out_h
8243 @item x
8244 @item y
8245 Set width/height of the output video and the horizontal/vertical position
8246 in the input video.
8247 The command accepts the same syntax of the corresponding option.
8248
8249 If the specified expression is not valid, it is kept at its current
8250 value.
8251 @end table
8252
8253 @section cropdetect
8254
8255 Auto-detect the crop size.
8256
8257 It calculates the necessary cropping parameters and prints the
8258 recommended parameters via the logging system. The detected dimensions
8259 correspond to the non-black area of the input video.
8260
8261 It accepts the following parameters:
8262
8263 @table @option
8264
8265 @item limit
8266 Set higher black value threshold, which can be optionally specified
8267 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8268 value greater to the set value is considered non-black. It defaults to 24.
8269 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8270 on the bitdepth of the pixel format.
8271
8272 @item round
8273 The value which the width/height should be divisible by. It defaults to
8274 16. The offset is automatically adjusted to center the video. Use 2 to
8275 get only even dimensions (needed for 4:2:2 video). 16 is best when
8276 encoding to most video codecs.
8277
8278 @item reset_count, reset
8279 Set the counter that determines after how many frames cropdetect will
8280 reset the previously detected largest video area and start over to
8281 detect the current optimal crop area. Default value is 0.
8282
8283 This can be useful when channel logos distort the video area. 0
8284 indicates 'never reset', and returns the largest area encountered during
8285 playback.
8286 @end table
8287
8288 @anchor{cue}
8289 @section cue
8290
8291 Delay video filtering until a given wallclock timestamp. The filter first
8292 passes on @option{preroll} amount of frames, then it buffers at most
8293 @option{buffer} amount of frames and waits for the cue. After reaching the cue
8294 it forwards the buffered frames and also any subsequent frames coming in its
8295 input.
8296
8297 The filter can be used synchronize the output of multiple ffmpeg processes for
8298 realtime output devices like decklink. By putting the delay in the filtering
8299 chain and pre-buffering frames the process can pass on data to output almost
8300 immediately after the target wallclock timestamp is reached.
8301
8302 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
8303 some use cases.
8304
8305 @table @option
8306
8307 @item cue
8308 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
8309
8310 @item preroll
8311 The duration of content to pass on as preroll expressed in seconds. Default is 0.
8312
8313 @item buffer
8314 The maximum duration of content to buffer before waiting for the cue expressed
8315 in seconds. Default is 0.
8316
8317 @end table
8318
8319 @anchor{curves}
8320 @section curves
8321
8322 Apply color adjustments using curves.
8323
8324 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
8325 component (red, green and blue) has its values defined by @var{N} key points
8326 tied from each other using a smooth curve. The x-axis represents the pixel
8327 values from the input frame, and the y-axis the new pixel values to be set for
8328 the output frame.
8329
8330 By default, a component curve is defined by the two points @var{(0;0)} and
8331 @var{(1;1)}. This creates a straight line where each original pixel value is
8332 "adjusted" to its own value, which means no change to the image.
8333
8334 The filter allows you to redefine these two points and add some more. A new
8335 curve (using a natural cubic spline interpolation) will be define to pass
8336 smoothly through all these new coordinates. The new defined points needs to be
8337 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
8338 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
8339 the vector spaces, the values will be clipped accordingly.
8340
8341 The filter accepts the following options:
8342
8343 @table @option
8344 @item preset
8345 Select one of the available color presets. This option can be used in addition
8346 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
8347 options takes priority on the preset values.
8348 Available presets are:
8349 @table @samp
8350 @item none
8351 @item color_negative
8352 @item cross_process
8353 @item darker
8354 @item increase_contrast
8355 @item lighter
8356 @item linear_contrast
8357 @item medium_contrast
8358 @item negative
8359 @item strong_contrast
8360 @item vintage
8361 @end table
8362 Default is @code{none}.
8363 @item master, m
8364 Set the master key points. These points will define a second pass mapping. It
8365 is sometimes called a "luminance" or "value" mapping. It can be used with
8366 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
8367 post-processing LUT.
8368 @item red, r
8369 Set the key points for the red component.
8370 @item green, g
8371 Set the key points for the green component.
8372 @item blue, b
8373 Set the key points for the blue component.
8374 @item all
8375 Set the key points for all components (not including master).
8376 Can be used in addition to the other key points component
8377 options. In this case, the unset component(s) will fallback on this
8378 @option{all} setting.
8379 @item psfile
8380 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
8381 @item plot
8382 Save Gnuplot script of the curves in specified file.
8383 @end table
8384
8385 To avoid some filtergraph syntax conflicts, each key points list need to be
8386 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
8387
8388 @subsection Examples
8389
8390 @itemize
8391 @item
8392 Increase slightly the middle level of blue:
8393 @example
8394 curves=blue='0/0 0.5/0.58 1/1'
8395 @end example
8396
8397 @item
8398 Vintage effect:
8399 @example
8400 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'
8401 @end example
8402 Here we obtain the following coordinates for each components:
8403 @table @var
8404 @item red
8405 @code{(0;0.11) (0.42;0.51) (1;0.95)}
8406 @item green
8407 @code{(0;0) (0.50;0.48) (1;1)}
8408 @item blue
8409 @code{(0;0.22) (0.49;0.44) (1;0.80)}
8410 @end table
8411
8412 @item
8413 The previous example can also be achieved with the associated built-in preset:
8414 @example
8415 curves=preset=vintage
8416 @end example
8417
8418 @item
8419 Or simply:
8420 @example
8421 curves=vintage
8422 @end example
8423
8424 @item
8425 Use a Photoshop preset and redefine the points of the green component:
8426 @example
8427 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
8428 @end example
8429
8430 @item
8431 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
8432 and @command{gnuplot}:
8433 @example
8434 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
8435 gnuplot -p /tmp/curves.plt
8436 @end example
8437 @end itemize
8438
8439 @section datascope
8440
8441 Video data analysis filter.
8442
8443 This filter shows hexadecimal pixel values of part of video.
8444
8445 The filter accepts the following options:
8446
8447 @table @option
8448 @item size, s
8449 Set output video size.
8450
8451 @item x
8452 Set x offset from where to pick pixels.
8453
8454 @item y
8455 Set y offset from where to pick pixels.
8456
8457 @item mode
8458 Set scope mode, can be one of the following:
8459 @table @samp
8460 @item mono
8461 Draw hexadecimal pixel values with white color on black background.
8462
8463 @item color
8464 Draw hexadecimal pixel values with input video pixel color on black
8465 background.
8466
8467 @item color2
8468 Draw hexadecimal pixel values on color background picked from input video,
8469 the text color is picked in such way so its always visible.
8470 @end table
8471
8472 @item axis
8473 Draw rows and columns numbers on left and top of video.
8474
8475 @item opacity
8476 Set background opacity.
8477
8478 @item format
8479 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
8480 @end table
8481
8482 @section dctdnoiz
8483
8484 Denoise frames using 2D DCT (frequency domain filtering).
8485
8486 This filter is not designed for real time.
8487
8488 The filter accepts the following options:
8489
8490 @table @option
8491 @item sigma, s
8492 Set the noise sigma constant.
8493
8494 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
8495 coefficient (absolute value) below this threshold with be dropped.
8496
8497 If you need a more advanced filtering, see @option{expr}.
8498
8499 Default is @code{0}.
8500
8501 @item overlap
8502 Set number overlapping pixels for each block. Since the filter can be slow, you
8503 may want to reduce this value, at the cost of a less effective filter and the
8504 risk of various artefacts.
8505
8506 If the overlapping value doesn't permit processing the whole input width or
8507 height, a warning will be displayed and according borders won't be denoised.
8508
8509 Default value is @var{blocksize}-1, which is the best possible setting.
8510
8511 @item expr, e
8512 Set the coefficient factor expression.
8513
8514 For each coefficient of a DCT block, this expression will be evaluated as a
8515 multiplier value for the coefficient.
8516
8517 If this is option is set, the @option{sigma} option will be ignored.
8518
8519 The absolute value of the coefficient can be accessed through the @var{c}
8520 variable.
8521
8522 @item n
8523 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8524 @var{blocksize}, which is the width and height of the processed blocks.
8525
8526 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8527 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8528 on the speed processing. Also, a larger block size does not necessarily means a
8529 better de-noising.
8530 @end table
8531
8532 @subsection Examples
8533
8534 Apply a denoise with a @option{sigma} of @code{4.5}:
8535 @example
8536 dctdnoiz=4.5
8537 @end example
8538
8539 The same operation can be achieved using the expression system:
8540 @example
8541 dctdnoiz=e='gte(c, 4.5*3)'
8542 @end example
8543
8544 Violent denoise using a block size of @code{16x16}:
8545 @example
8546 dctdnoiz=15:n=4
8547 @end example
8548
8549 @section deband
8550
8551 Remove banding artifacts from input video.
8552 It works by replacing banded pixels with average value of referenced pixels.
8553
8554 The filter accepts the following options:
8555
8556 @table @option
8557 @item 1thr
8558 @item 2thr
8559 @item 3thr
8560 @item 4thr
8561 Set banding detection threshold for each plane. Default is 0.02.
8562 Valid range is 0.00003 to 0.5.
8563 If difference between current pixel and reference pixel is less than threshold,
8564 it will be considered as banded.
8565
8566 @item range, r
8567 Banding detection range in pixels. Default is 16. If positive, random number
8568 in range 0 to set value will be used. If negative, exact absolute value
8569 will be used.
8570 The range defines square of four pixels around current pixel.
8571
8572 @item direction, d
8573 Set direction in radians from which four pixel will be compared. If positive,
8574 random direction from 0 to set direction will be picked. If negative, exact of
8575 absolute value will be picked. For example direction 0, -PI or -2*PI radians
8576 will pick only pixels on same row and -PI/2 will pick only pixels on same
8577 column.
8578
8579 @item blur, b
8580 If enabled, current pixel is compared with average value of all four
8581 surrounding pixels. The default is enabled. If disabled current pixel is
8582 compared with all four surrounding pixels. The pixel is considered banded
8583 if only all four differences with surrounding pixels are less than threshold.
8584
8585 @item coupling, c
8586 If enabled, current pixel is changed if and only if all pixel components are banded,
8587 e.g. banding detection threshold is triggered for all color components.
8588 The default is disabled.
8589 @end table
8590
8591 @section deblock
8592
8593 Remove blocking artifacts from input video.
8594
8595 The filter accepts the following options:
8596
8597 @table @option
8598 @item filter
8599 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
8600 This controls what kind of deblocking is applied.
8601
8602 @item block
8603 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
8604
8605 @item alpha
8606 @item beta
8607 @item gamma
8608 @item delta
8609 Set blocking detection thresholds. Allowed range is 0 to 1.
8610 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
8611 Using higher threshold gives more deblocking strength.
8612 Setting @var{alpha} controls threshold detection at exact edge of block.
8613 Remaining options controls threshold detection near the edge. Each one for
8614 below/above or left/right. Setting any of those to @var{0} disables
8615 deblocking.
8616
8617 @item planes
8618 Set planes to filter. Default is to filter all available planes.
8619 @end table
8620
8621 @subsection Examples
8622
8623 @itemize
8624 @item
8625 Deblock using weak filter and block size of 4 pixels.
8626 @example
8627 deblock=filter=weak:block=4
8628 @end example
8629
8630 @item
8631 Deblock using strong filter, block size of 4 pixels and custom thresholds for
8632 deblocking more edges.
8633 @example
8634 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
8635 @end example
8636
8637 @item
8638 Similar as above, but filter only first plane.
8639 @example
8640 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
8641 @end example
8642
8643 @item
8644 Similar as above, but filter only second and third plane.
8645 @example
8646 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
8647 @end example
8648 @end itemize
8649
8650 @anchor{decimate}
8651 @section decimate
8652
8653 Drop duplicated frames at regular intervals.
8654
8655 The filter accepts the following options:
8656
8657 @table @option
8658 @item cycle
8659 Set the number of frames from which one will be dropped. Setting this to
8660 @var{N} means one frame in every batch of @var{N} frames will be dropped.
8661 Default is @code{5}.
8662
8663 @item dupthresh
8664 Set the threshold for duplicate detection. If the difference metric for a frame
8665 is less than or equal to this value, then it is declared as duplicate. Default
8666 is @code{1.1}
8667
8668 @item scthresh
8669 Set scene change threshold. Default is @code{15}.
8670
8671 @item blockx
8672 @item blocky
8673 Set the size of the x and y-axis blocks used during metric calculations.
8674 Larger blocks give better noise suppression, but also give worse detection of
8675 small movements. Must be a power of two. Default is @code{32}.
8676
8677 @item ppsrc
8678 Mark main input as a pre-processed input and activate clean source input
8679 stream. This allows the input to be pre-processed with various filters to help
8680 the metrics calculation while keeping the frame selection lossless. When set to
8681 @code{1}, the first stream is for the pre-processed input, and the second
8682 stream is the clean source from where the kept frames are chosen. Default is
8683 @code{0}.
8684
8685 @item chroma
8686 Set whether or not chroma is considered in the metric calculations. Default is
8687 @code{1}.
8688 @end table
8689
8690 @section deconvolve
8691
8692 Apply 2D deconvolution of video stream in frequency domain using second stream
8693 as impulse.
8694
8695 The filter accepts the following options:
8696
8697 @table @option
8698 @item planes
8699 Set which planes to process.
8700
8701 @item impulse
8702 Set which impulse video frames will be processed, can be @var{first}
8703 or @var{all}. Default is @var{all}.
8704
8705 @item noise
8706 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
8707 and height are not same and not power of 2 or if stream prior to convolving
8708 had noise.
8709 @end table
8710
8711 The @code{deconvolve} filter also supports the @ref{framesync} options.
8712
8713 @section dedot
8714
8715 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
8716
8717 It accepts the following options:
8718
8719 @table @option
8720 @item m
8721 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
8722 @var{rainbows} for cross-color reduction.
8723
8724 @item lt
8725 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
8726
8727 @item tl
8728 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
8729
8730 @item tc
8731 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
8732
8733 @item ct
8734 Set temporal chroma threshold. Lower values increases reduction of cross-color.
8735 @end table
8736
8737 @section deflate
8738
8739 Apply deflate effect to the video.
8740
8741 This filter replaces the pixel by the local(3x3) average by taking into account
8742 only values lower than the pixel.
8743
8744 It accepts the following options:
8745
8746 @table @option
8747 @item threshold0
8748 @item threshold1
8749 @item threshold2
8750 @item threshold3
8751 Limit the maximum change for each plane, default is 65535.
8752 If 0, plane will remain unchanged.
8753 @end table
8754
8755 @subsection Commands
8756
8757 This filter supports the all above options as @ref{commands}.
8758
8759 @section deflicker
8760
8761 Remove temporal frame luminance variations.
8762
8763 It accepts the following options:
8764
8765 @table @option
8766 @item size, s
8767 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
8768
8769 @item mode, m
8770 Set averaging mode to smooth temporal luminance variations.
8771
8772 Available values are:
8773 @table @samp
8774 @item am
8775 Arithmetic mean
8776
8777 @item gm
8778 Geometric mean
8779
8780 @item hm
8781 Harmonic mean
8782
8783 @item qm
8784 Quadratic mean
8785
8786 @item cm
8787 Cubic mean
8788
8789 @item pm
8790 Power mean
8791
8792 @item median
8793 Median
8794 @end table
8795
8796 @item bypass
8797 Do not actually modify frame. Useful when one only wants metadata.
8798 @end table
8799
8800 @section dejudder
8801
8802 Remove judder produced by partially interlaced telecined content.
8803
8804 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
8805 source was partially telecined content then the output of @code{pullup,dejudder}
8806 will have a variable frame rate. May change the recorded frame rate of the
8807 container. Aside from that change, this filter will not affect constant frame
8808 rate video.
8809
8810 The option available in this filter is:
8811 @table @option
8812
8813 @item cycle
8814 Specify the length of the window over which the judder repeats.
8815
8816 Accepts any integer greater than 1. Useful values are:
8817 @table @samp
8818
8819 @item 4
8820 If the original was telecined from 24 to 30 fps (Film to NTSC).
8821
8822 @item 5
8823 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8824
8825 @item 20
8826 If a mixture of the two.
8827 @end table
8828
8829 The default is @samp{4}.
8830 @end table
8831
8832 @section delogo
8833
8834 Suppress a TV station logo by a simple interpolation of the surrounding
8835 pixels. Just set a rectangle covering the logo and watch it disappear
8836 (and sometimes something even uglier appear - your mileage may vary).
8837
8838 It accepts the following parameters:
8839 @table @option
8840
8841 @item x
8842 @item y
8843 Specify the top left corner coordinates of the logo. They must be
8844 specified.
8845
8846 @item w
8847 @item h
8848 Specify the width and height of the logo to clear. They must be
8849 specified.
8850
8851 @item band, t
8852 Specify the thickness of the fuzzy edge of the rectangle (added to
8853 @var{w} and @var{h}). The default value is 1. This option is
8854 deprecated, setting higher values should no longer be necessary and
8855 is not recommended.
8856
8857 @item show
8858 When set to 1, a green rectangle is drawn on the screen to simplify
8859 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8860 The default value is 0.
8861
8862 The rectangle is drawn on the outermost pixels which will be (partly)
8863 replaced with interpolated values. The values of the next pixels
8864 immediately outside this rectangle in each direction will be used to
8865 compute the interpolated pixel values inside the rectangle.
8866
8867 @end table
8868
8869 @subsection Examples
8870
8871 @itemize
8872 @item
8873 Set a rectangle covering the area with top left corner coordinates 0,0
8874 and size 100x77, and a band of size 10:
8875 @example
8876 delogo=x=0:y=0:w=100:h=77:band=10
8877 @end example
8878
8879 @end itemize
8880
8881 @section derain
8882
8883 Remove the rain in the input image/video by applying the derain methods based on
8884 convolutional neural networks. Supported models:
8885
8886 @itemize
8887 @item
8888 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
8889 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
8890 @end itemize
8891
8892 Training as well as model generation scripts are provided in
8893 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
8894
8895 Native model files (.model) can be generated from TensorFlow model
8896 files (.pb) by using tools/python/convert.py
8897
8898 The filter accepts the following options:
8899
8900 @table @option
8901 @item filter_type
8902 Specify which filter to use. This option accepts the following values:
8903
8904 @table @samp
8905 @item derain
8906 Derain filter. To conduct derain filter, you need to use a derain model.
8907
8908 @item dehaze
8909 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
8910 @end table
8911 Default value is @samp{derain}.
8912
8913 @item dnn_backend
8914 Specify which DNN backend to use for model loading and execution. This option accepts
8915 the following values:
8916
8917 @table @samp
8918 @item native
8919 Native implementation of DNN loading and execution.
8920
8921 @item tensorflow
8922 TensorFlow backend. To enable this backend you
8923 need to install the TensorFlow for C library (see
8924 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
8925 @code{--enable-libtensorflow}
8926 @end table
8927 Default value is @samp{native}.
8928
8929 @item model
8930 Set path to model file specifying network architecture and its parameters.
8931 Note that different backends use different file formats. TensorFlow and native
8932 backend can load files for only its format.
8933 @end table
8934
8935 @section deshake
8936
8937 Attempt to fix small changes in horizontal and/or vertical shift. This
8938 filter helps remove camera shake from hand-holding a camera, bumping a
8939 tripod, moving on a vehicle, etc.
8940
8941 The filter accepts the following options:
8942
8943 @table @option
8944
8945 @item x
8946 @item y
8947 @item w
8948 @item h
8949 Specify a rectangular area where to limit the search for motion
8950 vectors.
8951 If desired the search for motion vectors can be limited to a
8952 rectangular area of the frame defined by its top left corner, width
8953 and height. These parameters have the same meaning as the drawbox
8954 filter which can be used to visualise the position of the bounding
8955 box.
8956
8957 This is useful when simultaneous movement of subjects within the frame
8958 might be confused for camera motion by the motion vector search.
8959
8960 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8961 then the full frame is used. This allows later options to be set
8962 without specifying the bounding box for the motion vector search.
8963
8964 Default - search the whole frame.
8965
8966 @item rx
8967 @item ry
8968 Specify the maximum extent of movement in x and y directions in the
8969 range 0-64 pixels. Default 16.
8970
8971 @item edge
8972 Specify how to generate pixels to fill blanks at the edge of the
8973 frame. Available values are:
8974 @table @samp
8975 @item blank, 0
8976 Fill zeroes at blank locations
8977 @item original, 1
8978 Original image at blank locations
8979 @item clamp, 2
8980 Extruded edge value at blank locations
8981 @item mirror, 3
8982 Mirrored edge at blank locations
8983 @end table
8984 Default value is @samp{mirror}.
8985
8986 @item blocksize
8987 Specify the blocksize to use for motion search. Range 4-128 pixels,
8988 default 8.
8989
8990 @item contrast
8991 Specify the contrast threshold for blocks. Only blocks with more than
8992 the specified contrast (difference between darkest and lightest
8993 pixels) will be considered. Range 1-255, default 125.
8994
8995 @item search
8996 Specify the search strategy. Available values are:
8997 @table @samp
8998 @item exhaustive, 0
8999 Set exhaustive search
9000 @item less, 1
9001 Set less exhaustive search.
9002 @end table
9003 Default value is @samp{exhaustive}.
9004
9005 @item filename
9006 If set then a detailed log of the motion search is written to the
9007 specified file.
9008
9009 @end table
9010
9011 @section despill
9012
9013 Remove unwanted contamination of foreground colors, caused by reflected color of
9014 greenscreen or bluescreen.
9015
9016 This filter accepts the following options:
9017
9018 @table @option
9019 @item type
9020 Set what type of despill to use.
9021
9022 @item mix
9023 Set how spillmap will be generated.
9024
9025 @item expand
9026 Set how much to get rid of still remaining spill.
9027
9028 @item red
9029 Controls amount of red in spill area.
9030
9031 @item green
9032 Controls amount of green in spill area.
9033 Should be -1 for greenscreen.
9034
9035 @item blue
9036 Controls amount of blue in spill area.
9037 Should be -1 for bluescreen.
9038
9039 @item brightness
9040 Controls brightness of spill area, preserving colors.
9041
9042 @item alpha
9043 Modify alpha from generated spillmap.
9044 @end table
9045
9046 @section detelecine
9047
9048 Apply an exact inverse of the telecine operation. It requires a predefined
9049 pattern specified using the pattern option which must be the same as that passed
9050 to the telecine filter.
9051
9052 This filter accepts the following options:
9053
9054 @table @option
9055 @item first_field
9056 @table @samp
9057 @item top, t
9058 top field first
9059 @item bottom, b
9060 bottom field first
9061 The default value is @code{top}.
9062 @end table
9063
9064 @item pattern
9065 A string of numbers representing the pulldown pattern you wish to apply.
9066 The default value is @code{23}.
9067
9068 @item start_frame
9069 A number representing position of the first frame with respect to the telecine
9070 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9071 @end table
9072
9073 @section dilation
9074
9075 Apply dilation effect to the video.
9076
9077 This filter replaces the pixel by the local(3x3) maximum.
9078
9079 It accepts the following options:
9080
9081 @table @option
9082 @item threshold0
9083 @item threshold1
9084 @item threshold2
9085 @item threshold3
9086 Limit the maximum change for each plane, default is 65535.
9087 If 0, plane will remain unchanged.
9088
9089 @item coordinates
9090 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9091 pixels are used.
9092
9093 Flags to local 3x3 coordinates maps like this:
9094
9095     1 2 3
9096     4   5
9097     6 7 8
9098 @end table
9099
9100 @subsection Commands
9101
9102 This filter supports the all above options as @ref{commands}.
9103
9104 @section displace
9105
9106 Displace pixels as indicated by second and third input stream.
9107
9108 It takes three input streams and outputs one stream, the first input is the
9109 source, and second and third input are displacement maps.
9110
9111 The second input specifies how much to displace pixels along the
9112 x-axis, while the third input specifies how much to displace pixels
9113 along the y-axis.
9114 If one of displacement map streams terminates, last frame from that
9115 displacement map will be used.
9116
9117 Note that once generated, displacements maps can be reused over and over again.
9118
9119 A description of the accepted options follows.
9120
9121 @table @option
9122 @item edge
9123 Set displace behavior for pixels that are out of range.
9124
9125 Available values are:
9126 @table @samp
9127 @item blank
9128 Missing pixels are replaced by black pixels.
9129
9130 @item smear
9131 Adjacent pixels will spread out to replace missing pixels.
9132
9133 @item wrap
9134 Out of range pixels are wrapped so they point to pixels of other side.
9135
9136 @item mirror
9137 Out of range pixels will be replaced with mirrored pixels.
9138 @end table
9139 Default is @samp{smear}.
9140
9141 @end table
9142
9143 @subsection Examples
9144
9145 @itemize
9146 @item
9147 Add ripple effect to rgb input of video size hd720:
9148 @example
9149 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
9150 @end example
9151
9152 @item
9153 Add wave effect to rgb input of video size hd720:
9154 @example
9155 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
9156 @end example
9157 @end itemize
9158
9159 @anchor{dnn_processing}
9160 @section dnn_processing
9161
9162 Do image processing with deep neural networks. It works together with another filter
9163 which converts the pixel format of the Frame to what the dnn network requires.
9164
9165 The filter accepts the following options:
9166
9167 @table @option
9168 @item dnn_backend
9169 Specify which DNN backend to use for model loading and execution. This option accepts
9170 the following values:
9171
9172 @table @samp
9173 @item native
9174 Native implementation of DNN loading and execution.
9175
9176 @item tensorflow
9177 TensorFlow backend. To enable this backend you
9178 need to install the TensorFlow for C library (see
9179 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9180 @code{--enable-libtensorflow}
9181 @end table
9182
9183 Default value is @samp{native}.
9184
9185 @item model
9186 Set path to model file specifying network architecture and its parameters.
9187 Note that different backends use different file formats. TensorFlow and native
9188 backend can load files for only its format.
9189
9190 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9191
9192 @item input
9193 Set the input name of the dnn network.
9194
9195 @item output
9196 Set the output name of the dnn network.
9197
9198 @end table
9199
9200 @subsection Examples
9201
9202 @itemize
9203 @item
9204 Halve the red channle of the frame with format rgb24:
9205 @example
9206 ffmpeg -i input.jpg -vf format=rgb24,dnn_processing=model=halve_first_channel.model:input=dnn_in:output=dnn_out:dnn_backend=native out.native.png
9207 @end example
9208
9209 @item
9210 Halve the pixel value of the frame with format gray32f:
9211 @example
9212 ffmpeg -i input.jpg -vf format=grayf32,dnn_processing=model=halve_gray_float.model:input=dnn_in:output=dnn_out:dnn_backend=native -y out.native.png
9213 @end example
9214
9215 @item
9216 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
9217 @example
9218 ./ffmpeg -i 480p.jpg -vf format=yuv420p,scale=w=iw*2:h=ih*2,dnn_processing=dnn_backend=tensorflow:model=srcnn.pb:input=x:output=y -y srcnn.jpg
9219 @end example
9220
9221 @item
9222 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
9223 @example
9224 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
9225 @end example
9226
9227 @end itemize
9228
9229 @section drawbox
9230
9231 Draw a colored box on the input image.
9232
9233 It accepts the following parameters:
9234
9235 @table @option
9236 @item x
9237 @item y
9238 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
9239
9240 @item width, w
9241 @item height, h
9242 The expressions which specify the width and height of the box; if 0 they are interpreted as
9243 the input width and height. It defaults to 0.
9244
9245 @item color, c
9246 Specify the color of the box to write. For the general syntax of this option,
9247 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9248 value @code{invert} is used, the box edge color is the same as the
9249 video with inverted luma.
9250
9251 @item thickness, t
9252 The expression which sets the thickness of the box edge.
9253 A value of @code{fill} will create a filled box. Default value is @code{3}.
9254
9255 See below for the list of accepted constants.
9256
9257 @item replace
9258 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
9259 will overwrite the video's color and alpha pixels.
9260 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
9261 @end table
9262
9263 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9264 following constants:
9265
9266 @table @option
9267 @item dar
9268 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9269
9270 @item hsub
9271 @item vsub
9272 horizontal and vertical chroma subsample values. For example for the
9273 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9274
9275 @item in_h, ih
9276 @item in_w, iw
9277 The input width and height.
9278
9279 @item sar
9280 The input sample aspect ratio.
9281
9282 @item x
9283 @item y
9284 The x and y offset coordinates where the box is drawn.
9285
9286 @item w
9287 @item h
9288 The width and height of the drawn box.
9289
9290 @item t
9291 The thickness of the drawn box.
9292
9293 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9294 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9295
9296 @end table
9297
9298 @subsection Examples
9299
9300 @itemize
9301 @item
9302 Draw a black box around the edge of the input image:
9303 @example
9304 drawbox
9305 @end example
9306
9307 @item
9308 Draw a box with color red and an opacity of 50%:
9309 @example
9310 drawbox=10:20:200:60:red@@0.5
9311 @end example
9312
9313 The previous example can be specified as:
9314 @example
9315 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
9316 @end example
9317
9318 @item
9319 Fill the box with pink color:
9320 @example
9321 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
9322 @end example
9323
9324 @item
9325 Draw a 2-pixel red 2.40:1 mask:
9326 @example
9327 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
9328 @end example
9329 @end itemize
9330
9331 @subsection Commands
9332 This filter supports same commands as options.
9333 The command accepts the same syntax of the corresponding option.
9334
9335 If the specified expression is not valid, it is kept at its current
9336 value.
9337
9338 @anchor{drawgraph}
9339 @section drawgraph
9340 Draw a graph using input video metadata.
9341
9342 It accepts the following parameters:
9343
9344 @table @option
9345 @item m1
9346 Set 1st frame metadata key from which metadata values will be used to draw a graph.
9347
9348 @item fg1
9349 Set 1st foreground color expression.
9350
9351 @item m2
9352 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
9353
9354 @item fg2
9355 Set 2nd foreground color expression.
9356
9357 @item m3
9358 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
9359
9360 @item fg3
9361 Set 3rd foreground color expression.
9362
9363 @item m4
9364 Set 4th frame metadata key from which metadata values will be used to draw a graph.
9365
9366 @item fg4
9367 Set 4th foreground color expression.
9368
9369 @item min
9370 Set minimal value of metadata value.
9371
9372 @item max
9373 Set maximal value of metadata value.
9374
9375 @item bg
9376 Set graph background color. Default is white.
9377
9378 @item mode
9379 Set graph mode.
9380
9381 Available values for mode is:
9382 @table @samp
9383 @item bar
9384 @item dot
9385 @item line
9386 @end table
9387
9388 Default is @code{line}.
9389
9390 @item slide
9391 Set slide mode.
9392
9393 Available values for slide is:
9394 @table @samp
9395 @item frame
9396 Draw new frame when right border is reached.
9397
9398 @item replace
9399 Replace old columns with new ones.
9400
9401 @item scroll
9402 Scroll from right to left.
9403
9404 @item rscroll
9405 Scroll from left to right.
9406
9407 @item picture
9408 Draw single picture.
9409 @end table
9410
9411 Default is @code{frame}.
9412
9413 @item size
9414 Set size of graph video. For the syntax of this option, check the
9415 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9416 The default value is @code{900x256}.
9417
9418 @item rate, r
9419 Set the output frame rate. Default value is @code{25}.
9420
9421 The foreground color expressions can use the following variables:
9422 @table @option
9423 @item MIN
9424 Minimal value of metadata value.
9425
9426 @item MAX
9427 Maximal value of metadata value.
9428
9429 @item VAL
9430 Current metadata key value.
9431 @end table
9432
9433 The color is defined as 0xAABBGGRR.
9434 @end table
9435
9436 Example using metadata from @ref{signalstats} filter:
9437 @example
9438 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
9439 @end example
9440
9441 Example using metadata from @ref{ebur128} filter:
9442 @example
9443 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
9444 @end example
9445
9446 @section drawgrid
9447
9448 Draw a grid on the input image.
9449
9450 It accepts the following parameters:
9451
9452 @table @option
9453 @item x
9454 @item y
9455 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
9456
9457 @item width, w
9458 @item height, h
9459 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
9460 input width and height, respectively, minus @code{thickness}, so image gets
9461 framed. Default to 0.
9462
9463 @item color, c
9464 Specify the color of the grid. For the general syntax of this option,
9465 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9466 value @code{invert} is used, the grid color is the same as the
9467 video with inverted luma.
9468
9469 @item thickness, t
9470 The expression which sets the thickness of the grid line. Default value is @code{1}.
9471
9472 See below for the list of accepted constants.
9473
9474 @item replace
9475 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
9476 will overwrite the video's color and alpha pixels.
9477 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
9478 @end table
9479
9480 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9481 following constants:
9482
9483 @table @option
9484 @item dar
9485 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9486
9487 @item hsub
9488 @item vsub
9489 horizontal and vertical chroma subsample values. For example for the
9490 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9491
9492 @item in_h, ih
9493 @item in_w, iw
9494 The input grid cell width and height.
9495
9496 @item sar
9497 The input sample aspect ratio.
9498
9499 @item x
9500 @item y
9501 The x and y coordinates of some point of grid intersection (meant to configure offset).
9502
9503 @item w
9504 @item h
9505 The width and height of the drawn cell.
9506
9507 @item t
9508 The thickness of the drawn cell.
9509
9510 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9511 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9512
9513 @end table
9514
9515 @subsection Examples
9516
9517 @itemize
9518 @item
9519 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
9520 @example
9521 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
9522 @end example
9523
9524 @item
9525 Draw a white 3x3 grid with an opacity of 50%:
9526 @example
9527 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
9528 @end example
9529 @end itemize
9530
9531 @subsection Commands
9532 This filter supports same commands as options.
9533 The command accepts the same syntax of the corresponding option.
9534
9535 If the specified expression is not valid, it is kept at its current
9536 value.
9537
9538 @anchor{drawtext}
9539 @section drawtext
9540
9541 Draw a text string or text from a specified file on top of a video, using the
9542 libfreetype library.
9543
9544 To enable compilation of this filter, you need to configure FFmpeg with
9545 @code{--enable-libfreetype}.
9546 To enable default font fallback and the @var{font} option you need to
9547 configure FFmpeg with @code{--enable-libfontconfig}.
9548 To enable the @var{text_shaping} option, you need to configure FFmpeg with
9549 @code{--enable-libfribidi}.
9550
9551 @subsection Syntax
9552
9553 It accepts the following parameters:
9554
9555 @table @option
9556
9557 @item box
9558 Used to draw a box around text using the background color.
9559 The value must be either 1 (enable) or 0 (disable).
9560 The default value of @var{box} is 0.
9561
9562 @item boxborderw
9563 Set the width of the border to be drawn around the box using @var{boxcolor}.
9564 The default value of @var{boxborderw} is 0.
9565
9566 @item boxcolor
9567 The color to be used for drawing box around text. For the syntax of this
9568 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9569
9570 The default value of @var{boxcolor} is "white".
9571
9572 @item line_spacing
9573 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
9574 The default value of @var{line_spacing} is 0.
9575
9576 @item borderw
9577 Set the width of the border to be drawn around the text using @var{bordercolor}.
9578 The default value of @var{borderw} is 0.
9579
9580 @item bordercolor
9581 Set the color to be used for drawing border around text. For the syntax of this
9582 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9583
9584 The default value of @var{bordercolor} is "black".
9585
9586 @item expansion
9587 Select how the @var{text} is expanded. Can be either @code{none},
9588 @code{strftime} (deprecated) or
9589 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
9590 below for details.
9591
9592 @item basetime
9593 Set a start time for the count. Value is in microseconds. Only applied
9594 in the deprecated strftime expansion mode. To emulate in normal expansion
9595 mode use the @code{pts} function, supplying the start time (in seconds)
9596 as the second argument.
9597
9598 @item fix_bounds
9599 If true, check and fix text coords to avoid clipping.
9600
9601 @item fontcolor
9602 The color to be used for drawing fonts. For the syntax of this option, check
9603 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9604
9605 The default value of @var{fontcolor} is "black".
9606
9607 @item fontcolor_expr
9608 String which is expanded the same way as @var{text} to obtain dynamic
9609 @var{fontcolor} value. By default this option has empty value and is not
9610 processed. When this option is set, it overrides @var{fontcolor} option.
9611
9612 @item font
9613 The font family to be used for drawing text. By default Sans.
9614
9615 @item fontfile
9616 The font file to be used for drawing text. The path must be included.
9617 This parameter is mandatory if the fontconfig support is disabled.
9618
9619 @item alpha
9620 Draw the text applying alpha blending. The value can
9621 be a number between 0.0 and 1.0.
9622 The expression accepts the same variables @var{x, y} as well.
9623 The default value is 1.
9624 Please see @var{fontcolor_expr}.
9625
9626 @item fontsize
9627 The font size to be used for drawing text.
9628 The default value of @var{fontsize} is 16.
9629
9630 @item text_shaping
9631 If set to 1, attempt to shape the text (for example, reverse the order of
9632 right-to-left text and join Arabic characters) before drawing it.
9633 Otherwise, just draw the text exactly as given.
9634 By default 1 (if supported).
9635
9636 @item ft_load_flags
9637 The flags to be used for loading the fonts.
9638
9639 The flags map the corresponding flags supported by libfreetype, and are
9640 a combination of the following values:
9641 @table @var
9642 @item default
9643 @item no_scale
9644 @item no_hinting
9645 @item render
9646 @item no_bitmap
9647 @item vertical_layout
9648 @item force_autohint
9649 @item crop_bitmap
9650 @item pedantic
9651 @item ignore_global_advance_width
9652 @item no_recurse
9653 @item ignore_transform
9654 @item monochrome
9655 @item linear_design
9656 @item no_autohint
9657 @end table
9658
9659 Default value is "default".
9660
9661 For more information consult the documentation for the FT_LOAD_*
9662 libfreetype flags.
9663
9664 @item shadowcolor
9665 The color to be used for drawing a shadow behind the drawn text. For the
9666 syntax of this option, check the @ref{color syntax,,"Color" section in the
9667 ffmpeg-utils manual,ffmpeg-utils}.
9668
9669 The default value of @var{shadowcolor} is "black".
9670
9671 @item shadowx
9672 @item shadowy
9673 The x and y offsets for the text shadow position with respect to the
9674 position of the text. They can be either positive or negative
9675 values. The default value for both is "0".
9676
9677 @item start_number
9678 The starting frame number for the n/frame_num variable. The default value
9679 is "0".
9680
9681 @item tabsize
9682 The size in number of spaces to use for rendering the tab.
9683 Default value is 4.
9684
9685 @item timecode
9686 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
9687 format. It can be used with or without text parameter. @var{timecode_rate}
9688 option must be specified.
9689
9690 @item timecode_rate, rate, r
9691 Set the timecode frame rate (timecode only). Value will be rounded to nearest
9692 integer. Minimum value is "1".
9693 Drop-frame timecode is supported for frame rates 30 & 60.
9694
9695 @item tc24hmax
9696 If set to 1, the output of the timecode option will wrap around at 24 hours.
9697 Default is 0 (disabled).
9698
9699 @item text
9700 The text string to be drawn. The text must be a sequence of UTF-8
9701 encoded characters.
9702 This parameter is mandatory if no file is specified with the parameter
9703 @var{textfile}.
9704
9705 @item textfile
9706 A text file containing text to be drawn. The text must be a sequence
9707 of UTF-8 encoded characters.
9708
9709 This parameter is mandatory if no text string is specified with the
9710 parameter @var{text}.
9711
9712 If both @var{text} and @var{textfile} are specified, an error is thrown.
9713
9714 @item reload
9715 If set to 1, the @var{textfile} will be reloaded before each frame.
9716 Be sure to update it atomically, or it may be read partially, or even fail.
9717
9718 @item x
9719 @item y
9720 The expressions which specify the offsets where text will be drawn
9721 within the video frame. They are relative to the top/left border of the
9722 output image.
9723
9724 The default value of @var{x} and @var{y} is "0".
9725
9726 See below for the list of accepted constants and functions.
9727 @end table
9728
9729 The parameters for @var{x} and @var{y} are expressions containing the
9730 following constants and functions:
9731
9732 @table @option
9733 @item dar
9734 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
9735
9736 @item hsub
9737 @item vsub
9738 horizontal and vertical chroma subsample values. For example for the
9739 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9740
9741 @item line_h, lh
9742 the height of each text line
9743
9744 @item main_h, h, H
9745 the input height
9746
9747 @item main_w, w, W
9748 the input width
9749
9750 @item max_glyph_a, ascent
9751 the maximum distance from the baseline to the highest/upper grid
9752 coordinate used to place a glyph outline point, for all the rendered
9753 glyphs.
9754 It is a positive value, due to the grid's orientation with the Y axis
9755 upwards.
9756
9757 @item max_glyph_d, descent
9758 the maximum distance from the baseline to the lowest grid coordinate
9759 used to place a glyph outline point, for all the rendered glyphs.
9760 This is a negative value, due to the grid's orientation, with the Y axis
9761 upwards.
9762
9763 @item max_glyph_h
9764 maximum glyph height, that is the maximum height for all the glyphs
9765 contained in the rendered text, it is equivalent to @var{ascent} -
9766 @var{descent}.
9767
9768 @item max_glyph_w
9769 maximum glyph width, that is the maximum width for all the glyphs
9770 contained in the rendered text
9771
9772 @item n
9773 the number of input frame, starting from 0
9774
9775 @item rand(min, max)
9776 return a random number included between @var{min} and @var{max}
9777
9778 @item sar
9779 The input sample aspect ratio.
9780
9781 @item t
9782 timestamp expressed in seconds, NAN if the input timestamp is unknown
9783
9784 @item text_h, th
9785 the height of the rendered text
9786
9787 @item text_w, tw
9788 the width of the rendered text
9789
9790 @item x
9791 @item y
9792 the x and y offset coordinates where the text is drawn.
9793
9794 These parameters allow the @var{x} and @var{y} expressions to refer
9795 to each other, so you can for example specify @code{y=x/dar}.
9796
9797 @item pict_type
9798 A one character description of the current frame's picture type.
9799
9800 @item pkt_pos
9801 The current packet's position in the input file or stream
9802 (in bytes, from the start of the input). A value of -1 indicates
9803 this info is not available.
9804
9805 @item pkt_duration
9806 The current packet's duration, in seconds.
9807
9808 @item pkt_size
9809 The current packet's size (in bytes).
9810 @end table
9811
9812 @anchor{drawtext_expansion}
9813 @subsection Text expansion
9814
9815 If @option{expansion} is set to @code{strftime},
9816 the filter recognizes strftime() sequences in the provided text and
9817 expands them accordingly. Check the documentation of strftime(). This
9818 feature is deprecated.
9819
9820 If @option{expansion} is set to @code{none}, the text is printed verbatim.
9821
9822 If @option{expansion} is set to @code{normal} (which is the default),
9823 the following expansion mechanism is used.
9824
9825 The backslash character @samp{\}, followed by any character, always expands to
9826 the second character.
9827
9828 Sequences of the form @code{%@{...@}} are expanded. The text between the
9829 braces is a function name, possibly followed by arguments separated by ':'.
9830 If the arguments contain special characters or delimiters (':' or '@}'),
9831 they should be escaped.
9832
9833 Note that they probably must also be escaped as the value for the
9834 @option{text} option in the filter argument string and as the filter
9835 argument in the filtergraph description, and possibly also for the shell,
9836 that makes up to four levels of escaping; using a text file avoids these
9837 problems.
9838
9839 The following functions are available:
9840
9841 @table @command
9842
9843 @item expr, e
9844 The expression evaluation result.
9845
9846 It must take one argument specifying the expression to be evaluated,
9847 which accepts the same constants and functions as the @var{x} and
9848 @var{y} values. Note that not all constants should be used, for
9849 example the text size is not known when evaluating the expression, so
9850 the constants @var{text_w} and @var{text_h} will have an undefined
9851 value.
9852
9853 @item expr_int_format, eif
9854 Evaluate the expression's value and output as formatted integer.
9855
9856 The first argument is the expression to be evaluated, just as for the @var{expr} function.
9857 The second argument specifies the output format. Allowed values are @samp{x},
9858 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
9859 @code{printf} function.
9860 The third parameter is optional and sets the number of positions taken by the output.
9861 It can be used to add padding with zeros from the left.
9862
9863 @item gmtime
9864 The time at which the filter is running, expressed in UTC.
9865 It can accept an argument: a strftime() format string.
9866
9867 @item localtime
9868 The time at which the filter is running, expressed in the local time zone.
9869 It can accept an argument: a strftime() format string.
9870
9871 @item metadata
9872 Frame metadata. Takes one or two arguments.
9873
9874 The first argument is mandatory and specifies the metadata key.
9875
9876 The second argument is optional and specifies a default value, used when the
9877 metadata key is not found or empty.
9878
9879 Available metadata can be identified by inspecting entries
9880 starting with TAG included within each frame section
9881 printed by running @code{ffprobe -show_frames}.
9882
9883 String metadata generated in filters leading to
9884 the drawtext filter are also available.
9885
9886 @item n, frame_num
9887 The frame number, starting from 0.
9888
9889 @item pict_type
9890 A one character description of the current picture type.
9891
9892 @item pts
9893 The timestamp of the current frame.
9894 It can take up to three arguments.
9895
9896 The first argument is the format of the timestamp; it defaults to @code{flt}
9897 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
9898 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
9899 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
9900 @code{localtime} stands for the timestamp of the frame formatted as
9901 local time zone time.
9902
9903 The second argument is an offset added to the timestamp.
9904
9905 If the format is set to @code{hms}, a third argument @code{24HH} may be
9906 supplied to present the hour part of the formatted timestamp in 24h format
9907 (00-23).
9908
9909 If the format is set to @code{localtime} or @code{gmtime},
9910 a third argument may be supplied: a strftime() format string.
9911 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
9912 @end table
9913
9914 @subsection Commands
9915
9916 This filter supports altering parameters via commands:
9917 @table @option
9918 @item reinit
9919 Alter existing filter parameters.
9920
9921 Syntax for the argument is the same as for filter invocation, e.g.
9922
9923 @example
9924 fontsize=56:fontcolor=green:text='Hello World'
9925 @end example
9926
9927 Full filter invocation with sendcmd would look like this:
9928
9929 @example
9930 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
9931 @end example
9932 @end table
9933
9934 If the entire argument can't be parsed or applied as valid values then the filter will
9935 continue with its existing parameters.
9936
9937 @subsection Examples
9938
9939 @itemize
9940 @item
9941 Draw "Test Text" with font FreeSerif, using the default values for the
9942 optional parameters.
9943
9944 @example
9945 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
9946 @end example
9947
9948 @item
9949 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
9950 and y=50 (counting from the top-left corner of the screen), text is
9951 yellow with a red box around it. Both the text and the box have an
9952 opacity of 20%.
9953
9954 @example
9955 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
9956           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
9957 @end example
9958
9959 Note that the double quotes are not necessary if spaces are not used
9960 within the parameter list.
9961
9962 @item
9963 Show the text at the center of the video frame:
9964 @example
9965 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
9966 @end example
9967
9968 @item
9969 Show the text at a random position, switching to a new position every 30 seconds:
9970 @example
9971 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)"
9972 @end example
9973
9974 @item
9975 Show a text line sliding from right to left in the last row of the video
9976 frame. The file @file{LONG_LINE} is assumed to contain a single line
9977 with no newlines.
9978 @example
9979 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
9980 @end example
9981
9982 @item
9983 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
9984 @example
9985 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
9986 @end example
9987
9988 @item
9989 Draw a single green letter "g", at the center of the input video.
9990 The glyph baseline is placed at half screen height.
9991 @example
9992 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
9993 @end example
9994
9995 @item
9996 Show text for 1 second every 3 seconds:
9997 @example
9998 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
9999 @end example
10000
10001 @item
10002 Use fontconfig to set the font. Note that the colons need to be escaped.
10003 @example
10004 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10005 @end example
10006
10007 @item
10008 Print the date of a real-time encoding (see strftime(3)):
10009 @example
10010 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10011 @end example
10012
10013 @item
10014 Show text fading in and out (appearing/disappearing):
10015 @example
10016 #!/bin/sh
10017 DS=1.0 # display start
10018 DE=10.0 # display end
10019 FID=1.5 # fade in duration
10020 FOD=5 # fade out duration
10021 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 @}"
10022 @end example
10023
10024 @item
10025 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10026 and the @option{fontsize} value are included in the @option{y} offset.
10027 @example
10028 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10029 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10030 @end example
10031
10032 @item
10033 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10034 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10035 must have option @option{-export_path_metadata 1} for the special metadata fields
10036 to be available for filters.
10037 @example
10038 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10039 @end example
10040
10041 @end itemize
10042
10043 For more information about libfreetype, check:
10044 @url{http://www.freetype.org/}.
10045
10046 For more information about fontconfig, check:
10047 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10048
10049 For more information about libfribidi, check:
10050 @url{http://fribidi.org/}.
10051
10052 @section edgedetect
10053
10054 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10055
10056 The filter accepts the following options:
10057
10058 @table @option
10059 @item low
10060 @item high
10061 Set low and high threshold values used by the Canny thresholding
10062 algorithm.
10063
10064 The high threshold selects the "strong" edge pixels, which are then
10065 connected through 8-connectivity with the "weak" edge pixels selected
10066 by the low threshold.
10067
10068 @var{low} and @var{high} threshold values must be chosen in the range
10069 [0,1], and @var{low} should be lesser or equal to @var{high}.
10070
10071 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10072 is @code{50/255}.
10073
10074 @item mode
10075 Define the drawing mode.
10076
10077 @table @samp
10078 @item wires
10079 Draw white/gray wires on black background.
10080
10081 @item colormix
10082 Mix the colors to create a paint/cartoon effect.
10083
10084 @item canny
10085 Apply Canny edge detector on all selected planes.
10086 @end table
10087 Default value is @var{wires}.
10088
10089 @item planes
10090 Select planes for filtering. By default all available planes are filtered.
10091 @end table
10092
10093 @subsection Examples
10094
10095 @itemize
10096 @item
10097 Standard edge detection with custom values for the hysteresis thresholding:
10098 @example
10099 edgedetect=low=0.1:high=0.4
10100 @end example
10101
10102 @item
10103 Painting effect without thresholding:
10104 @example
10105 edgedetect=mode=colormix:high=0
10106 @end example
10107 @end itemize
10108
10109 @section elbg
10110
10111 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10112
10113 For each input image, the filter will compute the optimal mapping from
10114 the input to the output given the codebook length, that is the number
10115 of distinct output colors.
10116
10117 This filter accepts the following options.
10118
10119 @table @option
10120 @item codebook_length, l
10121 Set codebook length. The value must be a positive integer, and
10122 represents the number of distinct output colors. Default value is 256.
10123
10124 @item nb_steps, n
10125 Set the maximum number of iterations to apply for computing the optimal
10126 mapping. The higher the value the better the result and the higher the
10127 computation time. Default value is 1.
10128
10129 @item seed, s
10130 Set a random seed, must be an integer included between 0 and
10131 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10132 will try to use a good random seed on a best effort basis.
10133
10134 @item pal8
10135 Set pal8 output pixel format. This option does not work with codebook
10136 length greater than 256.
10137 @end table
10138
10139 @section entropy
10140
10141 Measure graylevel entropy in histogram of color channels of video frames.
10142
10143 It accepts the following parameters:
10144
10145 @table @option
10146 @item mode
10147 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10148
10149 @var{diff} mode measures entropy of histogram delta values, absolute differences
10150 between neighbour histogram values.
10151 @end table
10152
10153 @section eq
10154 Set brightness, contrast, saturation and approximate gamma adjustment.
10155
10156 The filter accepts the following options:
10157
10158 @table @option
10159 @item contrast
10160 Set the contrast expression. The value must be a float value in range
10161 @code{-1000.0} to @code{1000.0}. The default value is "1".
10162
10163 @item brightness
10164 Set the brightness expression. The value must be a float value in
10165 range @code{-1.0} to @code{1.0}. The default value is "0".
10166
10167 @item saturation
10168 Set the saturation expression. The value must be a float in
10169 range @code{0.0} to @code{3.0}. The default value is "1".
10170
10171 @item gamma
10172 Set the gamma expression. The value must be a float in range
10173 @code{0.1} to @code{10.0}.  The default value is "1".
10174
10175 @item gamma_r
10176 Set the gamma expression for red. The value must be a float in
10177 range @code{0.1} to @code{10.0}. The default value is "1".
10178
10179 @item gamma_g
10180 Set the gamma expression for green. The value must be a float in range
10181 @code{0.1} to @code{10.0}. The default value is "1".
10182
10183 @item gamma_b
10184 Set the gamma expression for blue. The value must be a float in range
10185 @code{0.1} to @code{10.0}. The default value is "1".
10186
10187 @item gamma_weight
10188 Set the gamma weight expression. It can be used to reduce the effect
10189 of a high gamma value on bright image areas, e.g. keep them from
10190 getting overamplified and just plain white. The value must be a float
10191 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10192 gamma correction all the way down while @code{1.0} leaves it at its
10193 full strength. Default is "1".
10194
10195 @item eval
10196 Set when the expressions for brightness, contrast, saturation and
10197 gamma expressions are evaluated.
10198
10199 It accepts the following values:
10200 @table @samp
10201 @item init
10202 only evaluate expressions once during the filter initialization or
10203 when a command is processed
10204
10205 @item frame
10206 evaluate expressions for each incoming frame
10207 @end table
10208
10209 Default value is @samp{init}.
10210 @end table
10211
10212 The expressions accept the following parameters:
10213 @table @option
10214 @item n
10215 frame count of the input frame starting from 0
10216
10217 @item pos
10218 byte position of the corresponding packet in the input file, NAN if
10219 unspecified
10220
10221 @item r
10222 frame rate of the input video, NAN if the input frame rate is unknown
10223
10224 @item t
10225 timestamp expressed in seconds, NAN if the input timestamp is unknown
10226 @end table
10227
10228 @subsection Commands
10229 The filter supports the following commands:
10230
10231 @table @option
10232 @item contrast
10233 Set the contrast expression.
10234
10235 @item brightness
10236 Set the brightness expression.
10237
10238 @item saturation
10239 Set the saturation expression.
10240
10241 @item gamma
10242 Set the gamma expression.
10243
10244 @item gamma_r
10245 Set the gamma_r expression.
10246
10247 @item gamma_g
10248 Set gamma_g expression.
10249
10250 @item gamma_b
10251 Set gamma_b expression.
10252
10253 @item gamma_weight
10254 Set gamma_weight expression.
10255
10256 The command accepts the same syntax of the corresponding option.
10257
10258 If the specified expression is not valid, it is kept at its current
10259 value.
10260
10261 @end table
10262
10263 @section erosion
10264
10265 Apply erosion effect to the video.
10266
10267 This filter replaces the pixel by the local(3x3) minimum.
10268
10269 It accepts the following options:
10270
10271 @table @option
10272 @item threshold0
10273 @item threshold1
10274 @item threshold2
10275 @item threshold3
10276 Limit the maximum change for each plane, default is 65535.
10277 If 0, plane will remain unchanged.
10278
10279 @item coordinates
10280 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
10281 pixels are used.
10282
10283 Flags to local 3x3 coordinates maps like this:
10284
10285     1 2 3
10286     4   5
10287     6 7 8
10288 @end table
10289
10290 @subsection Commands
10291
10292 This filter supports the all above options as @ref{commands}.
10293
10294 @section extractplanes
10295
10296 Extract color channel components from input video stream into
10297 separate grayscale video streams.
10298
10299 The filter accepts the following option:
10300
10301 @table @option
10302 @item planes
10303 Set plane(s) to extract.
10304
10305 Available values for planes are:
10306 @table @samp
10307 @item y
10308 @item u
10309 @item v
10310 @item a
10311 @item r
10312 @item g
10313 @item b
10314 @end table
10315
10316 Choosing planes not available in the input will result in an error.
10317 That means you cannot select @code{r}, @code{g}, @code{b} planes
10318 with @code{y}, @code{u}, @code{v} planes at same time.
10319 @end table
10320
10321 @subsection Examples
10322
10323 @itemize
10324 @item
10325 Extract luma, u and v color channel component from input video frame
10326 into 3 grayscale outputs:
10327 @example
10328 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
10329 @end example
10330 @end itemize
10331
10332 @section fade
10333
10334 Apply a fade-in/out effect to the input video.
10335
10336 It accepts the following parameters:
10337
10338 @table @option
10339 @item type, t
10340 The effect type can be either "in" for a fade-in, or "out" for a fade-out
10341 effect.
10342 Default is @code{in}.
10343
10344 @item start_frame, s
10345 Specify the number of the frame to start applying the fade
10346 effect at. Default is 0.
10347
10348 @item nb_frames, n
10349 The number of frames that the fade effect lasts. At the end of the
10350 fade-in effect, the output video will have the same intensity as the input video.
10351 At the end of the fade-out transition, the output video will be filled with the
10352 selected @option{color}.
10353 Default is 25.
10354
10355 @item alpha
10356 If set to 1, fade only alpha channel, if one exists on the input.
10357 Default value is 0.
10358
10359 @item start_time, st
10360 Specify the timestamp (in seconds) of the frame to start to apply the fade
10361 effect. If both start_frame and start_time are specified, the fade will start at
10362 whichever comes last.  Default is 0.
10363
10364 @item duration, d
10365 The number of seconds for which the fade effect has to last. At the end of the
10366 fade-in effect the output video will have the same intensity as the input video,
10367 at the end of the fade-out transition the output video will be filled with the
10368 selected @option{color}.
10369 If both duration and nb_frames are specified, duration is used. Default is 0
10370 (nb_frames is used by default).
10371
10372 @item color, c
10373 Specify the color of the fade. Default is "black".
10374 @end table
10375
10376 @subsection Examples
10377
10378 @itemize
10379 @item
10380 Fade in the first 30 frames of video:
10381 @example
10382 fade=in:0:30
10383 @end example
10384
10385 The command above is equivalent to:
10386 @example
10387 fade=t=in:s=0:n=30
10388 @end example
10389
10390 @item
10391 Fade out the last 45 frames of a 200-frame video:
10392 @example
10393 fade=out:155:45
10394 fade=type=out:start_frame=155:nb_frames=45
10395 @end example
10396
10397 @item
10398 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
10399 @example
10400 fade=in:0:25, fade=out:975:25
10401 @end example
10402
10403 @item
10404 Make the first 5 frames yellow, then fade in from frame 5-24:
10405 @example
10406 fade=in:5:20:color=yellow
10407 @end example
10408
10409 @item
10410 Fade in alpha over first 25 frames of video:
10411 @example
10412 fade=in:0:25:alpha=1
10413 @end example
10414
10415 @item
10416 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
10417 @example
10418 fade=t=in:st=5.5:d=0.5
10419 @end example
10420
10421 @end itemize
10422
10423 @section fftdnoiz
10424 Denoise frames using 3D FFT (frequency domain filtering).
10425
10426 The filter accepts the following options:
10427
10428 @table @option
10429 @item sigma
10430 Set the noise sigma constant. This sets denoising strength.
10431 Default value is 1. Allowed range is from 0 to 30.
10432 Using very high sigma with low overlap may give blocking artifacts.
10433
10434 @item amount
10435 Set amount of denoising. By default all detected noise is reduced.
10436 Default value is 1. Allowed range is from 0 to 1.
10437
10438 @item block
10439 Set size of block, Default is 4, can be 3, 4, 5 or 6.
10440 Actual size of block in pixels is 2 to power of @var{block}, so by default
10441 block size in pixels is 2^4 which is 16.
10442
10443 @item overlap
10444 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
10445
10446 @item prev
10447 Set number of previous frames to use for denoising. By default is set to 0.
10448
10449 @item next
10450 Set number of next frames to to use for denoising. By default is set to 0.
10451
10452 @item planes
10453 Set planes which will be filtered, by default are all available filtered
10454 except alpha.
10455 @end table
10456
10457 @section fftfilt
10458 Apply arbitrary expressions to samples in frequency domain
10459
10460 @table @option
10461 @item dc_Y
10462 Adjust the dc value (gain) of the luma plane of the image. The filter
10463 accepts an integer value in range @code{0} to @code{1000}. The default
10464 value is set to @code{0}.
10465
10466 @item dc_U
10467 Adjust the dc value (gain) of the 1st chroma plane of the image. The
10468 filter accepts an integer value in range @code{0} to @code{1000}. The
10469 default value is set to @code{0}.
10470
10471 @item dc_V
10472 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
10473 filter accepts an integer value in range @code{0} to @code{1000}. The
10474 default value is set to @code{0}.
10475
10476 @item weight_Y
10477 Set the frequency domain weight expression for the luma plane.
10478
10479 @item weight_U
10480 Set the frequency domain weight expression for the 1st chroma plane.
10481
10482 @item weight_V
10483 Set the frequency domain weight expression for the 2nd chroma plane.
10484
10485 @item eval
10486 Set when the expressions are evaluated.
10487
10488 It accepts the following values:
10489 @table @samp
10490 @item init
10491 Only evaluate expressions once during the filter initialization.
10492
10493 @item frame
10494 Evaluate expressions for each incoming frame.
10495 @end table
10496
10497 Default value is @samp{init}.
10498
10499 The filter accepts the following variables:
10500 @item X
10501 @item Y
10502 The coordinates of the current sample.
10503
10504 @item W
10505 @item H
10506 The width and height of the image.
10507
10508 @item N
10509 The number of input frame, starting from 0.
10510 @end table
10511
10512 @subsection Examples
10513
10514 @itemize
10515 @item
10516 High-pass:
10517 @example
10518 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
10519 @end example
10520
10521 @item
10522 Low-pass:
10523 @example
10524 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
10525 @end example
10526
10527 @item
10528 Sharpen:
10529 @example
10530 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
10531 @end example
10532
10533 @item
10534 Blur:
10535 @example
10536 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
10537 @end example
10538
10539 @end itemize
10540
10541 @section field
10542
10543 Extract a single field from an interlaced image using stride
10544 arithmetic to avoid wasting CPU time. The output frames are marked as
10545 non-interlaced.
10546
10547 The filter accepts the following options:
10548
10549 @table @option
10550 @item type
10551 Specify whether to extract the top (if the value is @code{0} or
10552 @code{top}) or the bottom field (if the value is @code{1} or
10553 @code{bottom}).
10554 @end table
10555
10556 @section fieldhint
10557
10558 Create new frames by copying the top and bottom fields from surrounding frames
10559 supplied as numbers by the hint file.
10560
10561 @table @option
10562 @item hint
10563 Set file containing hints: absolute/relative frame numbers.
10564
10565 There must be one line for each frame in a clip. Each line must contain two
10566 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
10567 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
10568 is current frame number for @code{absolute} mode or out of [-1, 1] range
10569 for @code{relative} mode. First number tells from which frame to pick up top
10570 field and second number tells from which frame to pick up bottom field.
10571
10572 If optionally followed by @code{+} output frame will be marked as interlaced,
10573 else if followed by @code{-} output frame will be marked as progressive, else
10574 it will be marked same as input frame.
10575 If optionally followed by @code{t} output frame will use only top field, or in
10576 case of @code{b} it will use only bottom field.
10577 If line starts with @code{#} or @code{;} that line is skipped.
10578
10579 @item mode
10580 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
10581 @end table
10582
10583 Example of first several lines of @code{hint} file for @code{relative} mode:
10584 @example
10585 0,0 - # first frame
10586 1,0 - # second frame, use third's frame top field and second's frame bottom field
10587 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
10588 1,0 -
10589 0,0 -
10590 0,0 -
10591 1,0 -
10592 1,0 -
10593 1,0 -
10594 0,0 -
10595 0,0 -
10596 1,0 -
10597 1,0 -
10598 1,0 -
10599 0,0 -
10600 @end example
10601
10602 @section fieldmatch
10603
10604 Field matching filter for inverse telecine. It is meant to reconstruct the
10605 progressive frames from a telecined stream. The filter does not drop duplicated
10606 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
10607 followed by a decimation filter such as @ref{decimate} in the filtergraph.
10608
10609 The separation of the field matching and the decimation is notably motivated by
10610 the possibility of inserting a de-interlacing filter fallback between the two.
10611 If the source has mixed telecined and real interlaced content,
10612 @code{fieldmatch} will not be able to match fields for the interlaced parts.
10613 But these remaining combed frames will be marked as interlaced, and thus can be
10614 de-interlaced by a later filter such as @ref{yadif} before decimation.
10615
10616 In addition to the various configuration options, @code{fieldmatch} can take an
10617 optional second stream, activated through the @option{ppsrc} option. If
10618 enabled, the frames reconstruction will be based on the fields and frames from
10619 this second stream. This allows the first input to be pre-processed in order to
10620 help the various algorithms of the filter, while keeping the output lossless
10621 (assuming the fields are matched properly). Typically, a field-aware denoiser,
10622 or brightness/contrast adjustments can help.
10623
10624 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
10625 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
10626 which @code{fieldmatch} is based on. While the semantic and usage are very
10627 close, some behaviour and options names can differ.
10628
10629 The @ref{decimate} filter currently only works for constant frame rate input.
10630 If your input has mixed telecined (30fps) and progressive content with a lower
10631 framerate like 24fps use the following filterchain to produce the necessary cfr
10632 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
10633
10634 The filter accepts the following options:
10635
10636 @table @option
10637 @item order
10638 Specify the assumed field order of the input stream. Available values are:
10639
10640 @table @samp
10641 @item auto
10642 Auto detect parity (use FFmpeg's internal parity value).
10643 @item bff
10644 Assume bottom field first.
10645 @item tff
10646 Assume top field first.
10647 @end table
10648
10649 Note that it is sometimes recommended not to trust the parity announced by the
10650 stream.
10651
10652 Default value is @var{auto}.
10653
10654 @item mode
10655 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
10656 sense that it won't risk creating jerkiness due to duplicate frames when
10657 possible, but if there are bad edits or blended fields it will end up
10658 outputting combed frames when a good match might actually exist. On the other
10659 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
10660 but will almost always find a good frame if there is one. The other values are
10661 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
10662 jerkiness and creating duplicate frames versus finding good matches in sections
10663 with bad edits, orphaned fields, blended fields, etc.
10664
10665 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
10666
10667 Available values are:
10668
10669 @table @samp
10670 @item pc
10671 2-way matching (p/c)
10672 @item pc_n
10673 2-way matching, and trying 3rd match if still combed (p/c + n)
10674 @item pc_u
10675 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
10676 @item pc_n_ub
10677 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
10678 still combed (p/c + n + u/b)
10679 @item pcn
10680 3-way matching (p/c/n)
10681 @item pcn_ub
10682 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
10683 detected as combed (p/c/n + u/b)
10684 @end table
10685
10686 The parenthesis at the end indicate the matches that would be used for that
10687 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
10688 @var{top}).
10689
10690 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
10691 the slowest.
10692
10693 Default value is @var{pc_n}.
10694
10695 @item ppsrc
10696 Mark the main input stream as a pre-processed input, and enable the secondary
10697 input stream as the clean source to pick the fields from. See the filter
10698 introduction for more details. It is similar to the @option{clip2} feature from
10699 VFM/TFM.
10700
10701 Default value is @code{0} (disabled).
10702
10703 @item field
10704 Set the field to match from. It is recommended to set this to the same value as
10705 @option{order} unless you experience matching failures with that setting. In
10706 certain circumstances changing the field that is used to match from can have a
10707 large impact on matching performance. Available values are:
10708
10709 @table @samp
10710 @item auto
10711 Automatic (same value as @option{order}).
10712 @item bottom
10713 Match from the bottom field.
10714 @item top
10715 Match from the top field.
10716 @end table
10717
10718 Default value is @var{auto}.
10719
10720 @item mchroma
10721 Set whether or not chroma is included during the match comparisons. In most
10722 cases it is recommended to leave this enabled. You should set this to @code{0}
10723 only if your clip has bad chroma problems such as heavy rainbowing or other
10724 artifacts. Setting this to @code{0} could also be used to speed things up at
10725 the cost of some accuracy.
10726
10727 Default value is @code{1}.
10728
10729 @item y0
10730 @item y1
10731 These define an exclusion band which excludes the lines between @option{y0} and
10732 @option{y1} from being included in the field matching decision. An exclusion
10733 band can be used to ignore subtitles, a logo, or other things that may
10734 interfere with the matching. @option{y0} sets the starting scan line and
10735 @option{y1} sets the ending line; all lines in between @option{y0} and
10736 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
10737 @option{y0} and @option{y1} to the same value will disable the feature.
10738 @option{y0} and @option{y1} defaults to @code{0}.
10739
10740 @item scthresh
10741 Set the scene change detection threshold as a percentage of maximum change on
10742 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
10743 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
10744 @option{scthresh} is @code{[0.0, 100.0]}.
10745
10746 Default value is @code{12.0}.
10747
10748 @item combmatch
10749 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
10750 account the combed scores of matches when deciding what match to use as the
10751 final match. Available values are:
10752
10753 @table @samp
10754 @item none
10755 No final matching based on combed scores.
10756 @item sc
10757 Combed scores are only used when a scene change is detected.
10758 @item full
10759 Use combed scores all the time.
10760 @end table
10761
10762 Default is @var{sc}.
10763
10764 @item combdbg
10765 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
10766 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
10767 Available values are:
10768
10769 @table @samp
10770 @item none
10771 No forced calculation.
10772 @item pcn
10773 Force p/c/n calculations.
10774 @item pcnub
10775 Force p/c/n/u/b calculations.
10776 @end table
10777
10778 Default value is @var{none}.
10779
10780 @item cthresh
10781 This is the area combing threshold used for combed frame detection. This
10782 essentially controls how "strong" or "visible" combing must be to be detected.
10783 Larger values mean combing must be more visible and smaller values mean combing
10784 can be less visible or strong and still be detected. Valid settings are from
10785 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
10786 be detected as combed). This is basically a pixel difference value. A good
10787 range is @code{[8, 12]}.
10788
10789 Default value is @code{9}.
10790
10791 @item chroma
10792 Sets whether or not chroma is considered in the combed frame decision.  Only
10793 disable this if your source has chroma problems (rainbowing, etc.) that are
10794 causing problems for the combed frame detection with chroma enabled. Actually,
10795 using @option{chroma}=@var{0} is usually more reliable, except for the case
10796 where there is chroma only combing in the source.
10797
10798 Default value is @code{0}.
10799
10800 @item blockx
10801 @item blocky
10802 Respectively set the x-axis and y-axis size of the window used during combed
10803 frame detection. This has to do with the size of the area in which
10804 @option{combpel} pixels are required to be detected as combed for a frame to be
10805 declared combed. See the @option{combpel} parameter description for more info.
10806 Possible values are any number that is a power of 2 starting at 4 and going up
10807 to 512.
10808
10809 Default value is @code{16}.
10810
10811 @item combpel
10812 The number of combed pixels inside any of the @option{blocky} by
10813 @option{blockx} size blocks on the frame for the frame to be detected as
10814 combed. While @option{cthresh} controls how "visible" the combing must be, this
10815 setting controls "how much" combing there must be in any localized area (a
10816 window defined by the @option{blockx} and @option{blocky} settings) on the
10817 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
10818 which point no frames will ever be detected as combed). This setting is known
10819 as @option{MI} in TFM/VFM vocabulary.
10820
10821 Default value is @code{80}.
10822 @end table
10823
10824 @anchor{p/c/n/u/b meaning}
10825 @subsection p/c/n/u/b meaning
10826
10827 @subsubsection p/c/n
10828
10829 We assume the following telecined stream:
10830
10831 @example
10832 Top fields:     1 2 2 3 4
10833 Bottom fields:  1 2 3 4 4
10834 @end example
10835
10836 The numbers correspond to the progressive frame the fields relate to. Here, the
10837 first two frames are progressive, the 3rd and 4th are combed, and so on.
10838
10839 When @code{fieldmatch} is configured to run a matching from bottom
10840 (@option{field}=@var{bottom}) this is how this input stream get transformed:
10841
10842 @example
10843 Input stream:
10844                 T     1 2 2 3 4
10845                 B     1 2 3 4 4   <-- matching reference
10846
10847 Matches:              c c n n c
10848
10849 Output stream:
10850                 T     1 2 3 4 4
10851                 B     1 2 3 4 4
10852 @end example
10853
10854 As a result of the field matching, we can see that some frames get duplicated.
10855 To perform a complete inverse telecine, you need to rely on a decimation filter
10856 after this operation. See for instance the @ref{decimate} filter.
10857
10858 The same operation now matching from top fields (@option{field}=@var{top})
10859 looks like this:
10860
10861 @example
10862 Input stream:
10863                 T     1 2 2 3 4   <-- matching reference
10864                 B     1 2 3 4 4
10865
10866 Matches:              c c p p c
10867
10868 Output stream:
10869                 T     1 2 2 3 4
10870                 B     1 2 2 3 4
10871 @end example
10872
10873 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
10874 basically, they refer to the frame and field of the opposite parity:
10875
10876 @itemize
10877 @item @var{p} matches the field of the opposite parity in the previous frame
10878 @item @var{c} matches the field of the opposite parity in the current frame
10879 @item @var{n} matches the field of the opposite parity in the next frame
10880 @end itemize
10881
10882 @subsubsection u/b
10883
10884 The @var{u} and @var{b} matching are a bit special in the sense that they match
10885 from the opposite parity flag. In the following examples, we assume that we are
10886 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
10887 'x' is placed above and below each matched fields.
10888
10889 With bottom matching (@option{field}=@var{bottom}):
10890 @example
10891 Match:           c         p           n          b          u
10892
10893                  x       x               x        x          x
10894   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10895   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10896                  x         x           x        x              x
10897
10898 Output frames:
10899                  2          1          2          2          2
10900                  2          2          2          1          3
10901 @end example
10902
10903 With top matching (@option{field}=@var{top}):
10904 @example
10905 Match:           c         p           n          b          u
10906
10907                  x         x           x        x              x
10908   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10909   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10910                  x       x               x        x          x
10911
10912 Output frames:
10913                  2          2          2          1          2
10914                  2          1          3          2          2
10915 @end example
10916
10917 @subsection Examples
10918
10919 Simple IVTC of a top field first telecined stream:
10920 @example
10921 fieldmatch=order=tff:combmatch=none, decimate
10922 @end example
10923
10924 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
10925 @example
10926 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
10927 @end example
10928
10929 @section fieldorder
10930
10931 Transform the field order of the input video.
10932
10933 It accepts the following parameters:
10934
10935 @table @option
10936
10937 @item order
10938 The output field order. Valid values are @var{tff} for top field first or @var{bff}
10939 for bottom field first.
10940 @end table
10941
10942 The default value is @samp{tff}.
10943
10944 The transformation is done by shifting the picture content up or down
10945 by one line, and filling the remaining line with appropriate picture content.
10946 This method is consistent with most broadcast field order converters.
10947
10948 If the input video is not flagged as being interlaced, or it is already
10949 flagged as being of the required output field order, then this filter does
10950 not alter the incoming video.
10951
10952 It is very useful when converting to or from PAL DV material,
10953 which is bottom field first.
10954
10955 For example:
10956 @example
10957 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
10958 @end example
10959
10960 @section fifo, afifo
10961
10962 Buffer input images and send them when they are requested.
10963
10964 It is mainly useful when auto-inserted by the libavfilter
10965 framework.
10966
10967 It does not take parameters.
10968
10969 @section fillborders
10970
10971 Fill borders of the input video, without changing video stream dimensions.
10972 Sometimes video can have garbage at the four edges and you may not want to
10973 crop video input to keep size multiple of some number.
10974
10975 This filter accepts the following options:
10976
10977 @table @option
10978 @item left
10979 Number of pixels to fill from left border.
10980
10981 @item right
10982 Number of pixels to fill from right border.
10983
10984 @item top
10985 Number of pixels to fill from top border.
10986
10987 @item bottom
10988 Number of pixels to fill from bottom border.
10989
10990 @item mode
10991 Set fill mode.
10992
10993 It accepts the following values:
10994 @table @samp
10995 @item smear
10996 fill pixels using outermost pixels
10997
10998 @item mirror
10999 fill pixels using mirroring
11000
11001 @item fixed
11002 fill pixels with constant value
11003 @end table
11004
11005 Default is @var{smear}.
11006
11007 @item color
11008 Set color for pixels in fixed mode. Default is @var{black}.
11009 @end table
11010
11011 @subsection Commands
11012 This filter supports same @ref{commands} as options.
11013 The command accepts the same syntax of the corresponding option.
11014
11015 If the specified expression is not valid, it is kept at its current
11016 value.
11017
11018 @section find_rect
11019
11020 Find a rectangular object
11021
11022 It accepts the following options:
11023
11024 @table @option
11025 @item object
11026 Filepath of the object image, needs to be in gray8.
11027
11028 @item threshold
11029 Detection threshold, default is 0.5.
11030
11031 @item mipmaps
11032 Number of mipmaps, default is 3.
11033
11034 @item xmin, ymin, xmax, ymax
11035 Specifies the rectangle in which to search.
11036 @end table
11037
11038 @subsection Examples
11039
11040 @itemize
11041 @item
11042 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11043 @example
11044 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11045 @end example
11046 @end itemize
11047
11048 @section floodfill
11049
11050 Flood area with values of same pixel components with another values.
11051
11052 It accepts the following options:
11053 @table @option
11054 @item x
11055 Set pixel x coordinate.
11056
11057 @item y
11058 Set pixel y coordinate.
11059
11060 @item s0
11061 Set source #0 component value.
11062
11063 @item s1
11064 Set source #1 component value.
11065
11066 @item s2
11067 Set source #2 component value.
11068
11069 @item s3
11070 Set source #3 component value.
11071
11072 @item d0
11073 Set destination #0 component value.
11074
11075 @item d1
11076 Set destination #1 component value.
11077
11078 @item d2
11079 Set destination #2 component value.
11080
11081 @item d3
11082 Set destination #3 component value.
11083 @end table
11084
11085 @anchor{format}
11086 @section format
11087
11088 Convert the input video to one of the specified pixel formats.
11089 Libavfilter will try to pick one that is suitable as input to
11090 the next filter.
11091
11092 It accepts the following parameters:
11093 @table @option
11094
11095 @item pix_fmts
11096 A '|'-separated list of pixel format names, such as
11097 "pix_fmts=yuv420p|monow|rgb24".
11098
11099 @end table
11100
11101 @subsection Examples
11102
11103 @itemize
11104 @item
11105 Convert the input video to the @var{yuv420p} format
11106 @example
11107 format=pix_fmts=yuv420p
11108 @end example
11109
11110 Convert the input video to any of the formats in the list
11111 @example
11112 format=pix_fmts=yuv420p|yuv444p|yuv410p
11113 @end example
11114 @end itemize
11115
11116 @anchor{fps}
11117 @section fps
11118
11119 Convert the video to specified constant frame rate by duplicating or dropping
11120 frames as necessary.
11121
11122 It accepts the following parameters:
11123 @table @option
11124
11125 @item fps
11126 The desired output frame rate. The default is @code{25}.
11127
11128 @item start_time
11129 Assume the first PTS should be the given value, in seconds. This allows for
11130 padding/trimming at the start of stream. By default, no assumption is made
11131 about the first frame's expected PTS, so no padding or trimming is done.
11132 For example, this could be set to 0 to pad the beginning with duplicates of
11133 the first frame if a video stream starts after the audio stream or to trim any
11134 frames with a negative PTS.
11135
11136 @item round
11137 Timestamp (PTS) rounding method.
11138
11139 Possible values are:
11140 @table @option
11141 @item zero
11142 round towards 0
11143 @item inf
11144 round away from 0
11145 @item down
11146 round towards -infinity
11147 @item up
11148 round towards +infinity
11149 @item near
11150 round to nearest
11151 @end table
11152 The default is @code{near}.
11153
11154 @item eof_action
11155 Action performed when reading the last frame.
11156
11157 Possible values are:
11158 @table @option
11159 @item round
11160 Use same timestamp rounding method as used for other frames.
11161 @item pass
11162 Pass through last frame if input duration has not been reached yet.
11163 @end table
11164 The default is @code{round}.
11165
11166 @end table
11167
11168 Alternatively, the options can be specified as a flat string:
11169 @var{fps}[:@var{start_time}[:@var{round}]].
11170
11171 See also the @ref{setpts} filter.
11172
11173 @subsection Examples
11174
11175 @itemize
11176 @item
11177 A typical usage in order to set the fps to 25:
11178 @example
11179 fps=fps=25
11180 @end example
11181
11182 @item
11183 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
11184 @example
11185 fps=fps=film:round=near
11186 @end example
11187 @end itemize
11188
11189 @section framepack
11190
11191 Pack two different video streams into a stereoscopic video, setting proper
11192 metadata on supported codecs. The two views should have the same size and
11193 framerate and processing will stop when the shorter video ends. Please note
11194 that you may conveniently adjust view properties with the @ref{scale} and
11195 @ref{fps} filters.
11196
11197 It accepts the following parameters:
11198 @table @option
11199
11200 @item format
11201 The desired packing format. Supported values are:
11202
11203 @table @option
11204
11205 @item sbs
11206 The views are next to each other (default).
11207
11208 @item tab
11209 The views are on top of each other.
11210
11211 @item lines
11212 The views are packed by line.
11213
11214 @item columns
11215 The views are packed by column.
11216
11217 @item frameseq
11218 The views are temporally interleaved.
11219
11220 @end table
11221
11222 @end table
11223
11224 Some examples:
11225
11226 @example
11227 # Convert left and right views into a frame-sequential video
11228 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
11229
11230 # Convert views into a side-by-side video with the same output resolution as the input
11231 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
11232 @end example
11233
11234 @section framerate
11235
11236 Change the frame rate by interpolating new video output frames from the source
11237 frames.
11238
11239 This filter is not designed to function correctly with interlaced media. If
11240 you wish to change the frame rate of interlaced media then you are required
11241 to deinterlace before this filter and re-interlace after this filter.
11242
11243 A description of the accepted options follows.
11244
11245 @table @option
11246 @item fps
11247 Specify the output frames per second. This option can also be specified
11248 as a value alone. The default is @code{50}.
11249
11250 @item interp_start
11251 Specify the start of a range where the output frame will be created as a
11252 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11253 the default is @code{15}.
11254
11255 @item interp_end
11256 Specify the end of a range where the output frame will be created as a
11257 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11258 the default is @code{240}.
11259
11260 @item scene
11261 Specify the level at which a scene change is detected as a value between
11262 0 and 100 to indicate a new scene; a low value reflects a low
11263 probability for the current frame to introduce a new scene, while a higher
11264 value means the current frame is more likely to be one.
11265 The default is @code{8.2}.
11266
11267 @item flags
11268 Specify flags influencing the filter process.
11269
11270 Available value for @var{flags} is:
11271
11272 @table @option
11273 @item scene_change_detect, scd
11274 Enable scene change detection using the value of the option @var{scene}.
11275 This flag is enabled by default.
11276 @end table
11277 @end table
11278
11279 @section framestep
11280
11281 Select one frame every N-th frame.
11282
11283 This filter accepts the following option:
11284 @table @option
11285 @item step
11286 Select frame after every @code{step} frames.
11287 Allowed values are positive integers higher than 0. Default value is @code{1}.
11288 @end table
11289
11290 @section freezedetect
11291
11292 Detect frozen video.
11293
11294 This filter logs a message and sets frame metadata when it detects that the
11295 input video has no significant change in content during a specified duration.
11296 Video freeze detection calculates the mean average absolute difference of all
11297 the components of video frames and compares it to a noise floor.
11298
11299 The printed times and duration are expressed in seconds. The
11300 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
11301 whose timestamp equals or exceeds the detection duration and it contains the
11302 timestamp of the first frame of the freeze. The
11303 @code{lavfi.freezedetect.freeze_duration} and
11304 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
11305 after the freeze.
11306
11307 The filter accepts the following options:
11308
11309 @table @option
11310 @item noise, n
11311 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
11312 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
11313 0.001.
11314
11315 @item duration, d
11316 Set freeze duration until notification (default is 2 seconds).
11317 @end table
11318
11319 @section freezeframes
11320
11321 Freeze video frames.
11322
11323 This filter freezes video frames using frame from 2nd input.
11324
11325 The filter accepts the following options:
11326
11327 @table @option
11328 @item first
11329 Set number of first frame from which to start freeze.
11330
11331 @item last
11332 Set number of last frame from which to end freeze.
11333
11334 @item replace
11335 Set number of frame from 2nd input which will be used instead of replaced frames.
11336 @end table
11337
11338 @anchor{frei0r}
11339 @section frei0r
11340
11341 Apply a frei0r effect to the input video.
11342
11343 To enable the compilation of this filter, you need to install the frei0r
11344 header and configure FFmpeg with @code{--enable-frei0r}.
11345
11346 It accepts the following parameters:
11347
11348 @table @option
11349
11350 @item filter_name
11351 The name of the frei0r effect to load. If the environment variable
11352 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
11353 directories specified by the colon-separated list in @env{FREI0R_PATH}.
11354 Otherwise, the standard frei0r paths are searched, in this order:
11355 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
11356 @file{/usr/lib/frei0r-1/}.
11357
11358 @item filter_params
11359 A '|'-separated list of parameters to pass to the frei0r effect.
11360
11361 @end table
11362
11363 A frei0r effect parameter can be a boolean (its value is either
11364 "y" or "n"), a double, a color (specified as
11365 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
11366 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
11367 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
11368 a position (specified as @var{X}/@var{Y}, where
11369 @var{X} and @var{Y} are floating point numbers) and/or a string.
11370
11371 The number and types of parameters depend on the loaded effect. If an
11372 effect parameter is not specified, the default value is set.
11373
11374 @subsection Examples
11375
11376 @itemize
11377 @item
11378 Apply the distort0r effect, setting the first two double parameters:
11379 @example
11380 frei0r=filter_name=distort0r:filter_params=0.5|0.01
11381 @end example
11382
11383 @item
11384 Apply the colordistance effect, taking a color as the first parameter:
11385 @example
11386 frei0r=colordistance:0.2/0.3/0.4
11387 frei0r=colordistance:violet
11388 frei0r=colordistance:0x112233
11389 @end example
11390
11391 @item
11392 Apply the perspective effect, specifying the top left and top right image
11393 positions:
11394 @example
11395 frei0r=perspective:0.2/0.2|0.8/0.2
11396 @end example
11397 @end itemize
11398
11399 For more information, see
11400 @url{http://frei0r.dyne.org}
11401
11402 @section fspp
11403
11404 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
11405
11406 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
11407 processing filter, one of them is performed once per block, not per pixel.
11408 This allows for much higher speed.
11409
11410 The filter accepts the following options:
11411
11412 @table @option
11413 @item quality
11414 Set quality. This option defines the number of levels for averaging. It accepts
11415 an integer in the range 4-5. Default value is @code{4}.
11416
11417 @item qp
11418 Force a constant quantization parameter. It accepts an integer in range 0-63.
11419 If not set, the filter will use the QP from the video stream (if available).
11420
11421 @item strength
11422 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
11423 more details but also more artifacts, while higher values make the image smoother
11424 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
11425
11426 @item use_bframe_qp
11427 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
11428 option may cause flicker since the B-Frames have often larger QP. Default is
11429 @code{0} (not enabled).
11430
11431 @end table
11432
11433 @section gblur
11434
11435 Apply Gaussian blur filter.
11436
11437 The filter accepts the following options:
11438
11439 @table @option
11440 @item sigma
11441 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
11442
11443 @item steps
11444 Set number of steps for Gaussian approximation. Default is @code{1}.
11445
11446 @item planes
11447 Set which planes to filter. By default all planes are filtered.
11448
11449 @item sigmaV
11450 Set vertical sigma, if negative it will be same as @code{sigma}.
11451 Default is @code{-1}.
11452 @end table
11453
11454 @subsection Commands
11455 This filter supports same commands as options.
11456 The command accepts the same syntax of the corresponding option.
11457
11458 If the specified expression is not valid, it is kept at its current
11459 value.
11460
11461 @section geq
11462
11463 Apply generic equation to each pixel.
11464
11465 The filter accepts the following options:
11466
11467 @table @option
11468 @item lum_expr, lum
11469 Set the luminance expression.
11470 @item cb_expr, cb
11471 Set the chrominance blue expression.
11472 @item cr_expr, cr
11473 Set the chrominance red expression.
11474 @item alpha_expr, a
11475 Set the alpha expression.
11476 @item red_expr, r
11477 Set the red expression.
11478 @item green_expr, g
11479 Set the green expression.
11480 @item blue_expr, b
11481 Set the blue expression.
11482 @end table
11483
11484 The colorspace is selected according to the specified options. If one
11485 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
11486 options is specified, the filter will automatically select a YCbCr
11487 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
11488 @option{blue_expr} options is specified, it will select an RGB
11489 colorspace.
11490
11491 If one of the chrominance expression is not defined, it falls back on the other
11492 one. If no alpha expression is specified it will evaluate to opaque value.
11493 If none of chrominance expressions are specified, they will evaluate
11494 to the luminance expression.
11495
11496 The expressions can use the following variables and functions:
11497
11498 @table @option
11499 @item N
11500 The sequential number of the filtered frame, starting from @code{0}.
11501
11502 @item X
11503 @item Y
11504 The coordinates of the current sample.
11505
11506 @item W
11507 @item H
11508 The width and height of the image.
11509
11510 @item SW
11511 @item SH
11512 Width and height scale depending on the currently filtered plane. It is the
11513 ratio between the corresponding luma plane number of pixels and the current
11514 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
11515 @code{0.5,0.5} for chroma planes.
11516
11517 @item T
11518 Time of the current frame, expressed in seconds.
11519
11520 @item p(x, y)
11521 Return the value of the pixel at location (@var{x},@var{y}) of the current
11522 plane.
11523
11524 @item lum(x, y)
11525 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
11526 plane.
11527
11528 @item cb(x, y)
11529 Return the value of the pixel at location (@var{x},@var{y}) of the
11530 blue-difference chroma plane. Return 0 if there is no such plane.
11531
11532 @item cr(x, y)
11533 Return the value of the pixel at location (@var{x},@var{y}) of the
11534 red-difference chroma plane. Return 0 if there is no such plane.
11535
11536 @item r(x, y)
11537 @item g(x, y)
11538 @item b(x, y)
11539 Return the value of the pixel at location (@var{x},@var{y}) of the
11540 red/green/blue component. Return 0 if there is no such component.
11541
11542 @item alpha(x, y)
11543 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
11544 plane. Return 0 if there is no such plane.
11545
11546 @item psum(x,y), lumsum(x, y), cbsum(x,y), crsum(x,y), rsum(x,y), gsum(x,y), bsum(x,y), alphasum(x,y)
11547 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
11548 sums of samples within a rectangle. See the functions without the sum postfix.
11549
11550 @item interpolation
11551 Set one of interpolation methods:
11552 @table @option
11553 @item nearest, n
11554 @item bilinear, b
11555 @end table
11556 Default is bilinear.
11557 @end table
11558
11559 For functions, if @var{x} and @var{y} are outside the area, the value will be
11560 automatically clipped to the closer edge.
11561
11562 Please note that this filter can use multiple threads in which case each slice
11563 will have its own expression state. If you want to use only a single expression
11564 state because your expressions depend on previous state then you should limit
11565 the number of filter threads to 1.
11566
11567 @subsection Examples
11568
11569 @itemize
11570 @item
11571 Flip the image horizontally:
11572 @example
11573 geq=p(W-X\,Y)
11574 @end example
11575
11576 @item
11577 Generate a bidimensional sine wave, with angle @code{PI/3} and a
11578 wavelength of 100 pixels:
11579 @example
11580 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
11581 @end example
11582
11583 @item
11584 Generate a fancy enigmatic moving light:
11585 @example
11586 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
11587 @end example
11588
11589 @item
11590 Generate a quick emboss effect:
11591 @example
11592 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
11593 @end example
11594
11595 @item
11596 Modify RGB components depending on pixel position:
11597 @example
11598 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
11599 @end example
11600
11601 @item
11602 Create a radial gradient that is the same size as the input (also see
11603 the @ref{vignette} filter):
11604 @example
11605 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
11606 @end example
11607 @end itemize
11608
11609 @section gradfun
11610
11611 Fix the banding artifacts that are sometimes introduced into nearly flat
11612 regions by truncation to 8-bit color depth.
11613 Interpolate the gradients that should go where the bands are, and
11614 dither them.
11615
11616 It is designed for playback only.  Do not use it prior to
11617 lossy compression, because compression tends to lose the dither and
11618 bring back the bands.
11619
11620 It accepts the following parameters:
11621
11622 @table @option
11623
11624 @item strength
11625 The maximum amount by which the filter will change any one pixel. This is also
11626 the threshold for detecting nearly flat regions. Acceptable values range from
11627 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
11628 valid range.
11629
11630 @item radius
11631 The neighborhood to fit the gradient to. A larger radius makes for smoother
11632 gradients, but also prevents the filter from modifying the pixels near detailed
11633 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
11634 values will be clipped to the valid range.
11635
11636 @end table
11637
11638 Alternatively, the options can be specified as a flat string:
11639 @var{strength}[:@var{radius}]
11640
11641 @subsection Examples
11642
11643 @itemize
11644 @item
11645 Apply the filter with a @code{3.5} strength and radius of @code{8}:
11646 @example
11647 gradfun=3.5:8
11648 @end example
11649
11650 @item
11651 Specify radius, omitting the strength (which will fall-back to the default
11652 value):
11653 @example
11654 gradfun=radius=8
11655 @end example
11656
11657 @end itemize
11658
11659 @anchor{graphmonitor}
11660 @section graphmonitor
11661 Show various filtergraph stats.
11662
11663 With this filter one can debug complete filtergraph.
11664 Especially issues with links filling with queued frames.
11665
11666 The filter accepts the following options:
11667
11668 @table @option
11669 @item size, s
11670 Set video output size. Default is @var{hd720}.
11671
11672 @item opacity, o
11673 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
11674
11675 @item mode, m
11676 Set output mode, can be @var{fulll} or @var{compact}.
11677 In @var{compact} mode only filters with some queued frames have displayed stats.
11678
11679 @item flags, f
11680 Set flags which enable which stats are shown in video.
11681
11682 Available values for flags are:
11683 @table @samp
11684 @item queue
11685 Display number of queued frames in each link.
11686
11687 @item frame_count_in
11688 Display number of frames taken from filter.
11689
11690 @item frame_count_out
11691 Display number of frames given out from filter.
11692
11693 @item pts
11694 Display current filtered frame pts.
11695
11696 @item time
11697 Display current filtered frame time.
11698
11699 @item timebase
11700 Display time base for filter link.
11701
11702 @item format
11703 Display used format for filter link.
11704
11705 @item size
11706 Display video size or number of audio channels in case of audio used by filter link.
11707
11708 @item rate
11709 Display video frame rate or sample rate in case of audio used by filter link.
11710 @end table
11711
11712 @item rate, r
11713 Set upper limit for video rate of output stream, Default value is @var{25}.
11714 This guarantee that output video frame rate will not be higher than this value.
11715 @end table
11716
11717 @section greyedge
11718 A color constancy variation filter which estimates scene illumination via grey edge algorithm
11719 and corrects the scene colors accordingly.
11720
11721 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
11722
11723 The filter accepts the following options:
11724
11725 @table @option
11726 @item difford
11727 The order of differentiation to be applied on the scene. Must be chosen in the range
11728 [0,2] and default value is 1.
11729
11730 @item minknorm
11731 The Minkowski parameter to be used for calculating the Minkowski distance. Must
11732 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
11733 max value instead of calculating Minkowski distance.
11734
11735 @item sigma
11736 The standard deviation of Gaussian blur to be applied on the scene. Must be
11737 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
11738 can't be equal to 0 if @var{difford} is greater than 0.
11739 @end table
11740
11741 @subsection Examples
11742 @itemize
11743
11744 @item
11745 Grey Edge:
11746 @example
11747 greyedge=difford=1:minknorm=5:sigma=2
11748 @end example
11749
11750 @item
11751 Max Edge:
11752 @example
11753 greyedge=difford=1:minknorm=0:sigma=2
11754 @end example
11755
11756 @end itemize
11757
11758 @anchor{haldclut}
11759 @section haldclut
11760
11761 Apply a Hald CLUT to a video stream.
11762
11763 First input is the video stream to process, and second one is the Hald CLUT.
11764 The Hald CLUT input can be a simple picture or a complete video stream.
11765
11766 The filter accepts the following options:
11767
11768 @table @option
11769 @item shortest
11770 Force termination when the shortest input terminates. Default is @code{0}.
11771 @item repeatlast
11772 Continue applying the last CLUT after the end of the stream. A value of
11773 @code{0} disable the filter after the last frame of the CLUT is reached.
11774 Default is @code{1}.
11775 @end table
11776
11777 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
11778 filters share the same internals).
11779
11780 This filter also supports the @ref{framesync} options.
11781
11782 More information about the Hald CLUT can be found on Eskil Steenberg's website
11783 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
11784
11785 @subsection Workflow examples
11786
11787 @subsubsection Hald CLUT video stream
11788
11789 Generate an identity Hald CLUT stream altered with various effects:
11790 @example
11791 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
11792 @end example
11793
11794 Note: make sure you use a lossless codec.
11795
11796 Then use it with @code{haldclut} to apply it on some random stream:
11797 @example
11798 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
11799 @end example
11800
11801 The Hald CLUT will be applied to the 10 first seconds (duration of
11802 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
11803 to the remaining frames of the @code{mandelbrot} stream.
11804
11805 @subsubsection Hald CLUT with preview
11806
11807 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
11808 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
11809 biggest possible square starting at the top left of the picture. The remaining
11810 padding pixels (bottom or right) will be ignored. This area can be used to add
11811 a preview of the Hald CLUT.
11812
11813 Typically, the following generated Hald CLUT will be supported by the
11814 @code{haldclut} filter:
11815
11816 @example
11817 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
11818    pad=iw+320 [padded_clut];
11819    smptebars=s=320x256, split [a][b];
11820    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
11821    [main][b] overlay=W-320" -frames:v 1 clut.png
11822 @end example
11823
11824 It contains the original and a preview of the effect of the CLUT: SMPTE color
11825 bars are displayed on the right-top, and below the same color bars processed by
11826 the color changes.
11827
11828 Then, the effect of this Hald CLUT can be visualized with:
11829 @example
11830 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
11831 @end example
11832
11833 @section hflip
11834
11835 Flip the input video horizontally.
11836
11837 For example, to horizontally flip the input video with @command{ffmpeg}:
11838 @example
11839 ffmpeg -i in.avi -vf "hflip" out.avi
11840 @end example
11841
11842 @section histeq
11843 This filter applies a global color histogram equalization on a
11844 per-frame basis.
11845
11846 It can be used to correct video that has a compressed range of pixel
11847 intensities.  The filter redistributes the pixel intensities to
11848 equalize their distribution across the intensity range. It may be
11849 viewed as an "automatically adjusting contrast filter". This filter is
11850 useful only for correcting degraded or poorly captured source
11851 video.
11852
11853 The filter accepts the following options:
11854
11855 @table @option
11856 @item strength
11857 Determine the amount of equalization to be applied.  As the strength
11858 is reduced, the distribution of pixel intensities more-and-more
11859 approaches that of the input frame. The value must be a float number
11860 in the range [0,1] and defaults to 0.200.
11861
11862 @item intensity
11863 Set the maximum intensity that can generated and scale the output
11864 values appropriately.  The strength should be set as desired and then
11865 the intensity can be limited if needed to avoid washing-out. The value
11866 must be a float number in the range [0,1] and defaults to 0.210.
11867
11868 @item antibanding
11869 Set the antibanding level. If enabled the filter will randomly vary
11870 the luminance of output pixels by a small amount to avoid banding of
11871 the histogram. Possible values are @code{none}, @code{weak} or
11872 @code{strong}. It defaults to @code{none}.
11873 @end table
11874
11875 @anchor{histogram}
11876 @section histogram
11877
11878 Compute and draw a color distribution histogram for the input video.
11879
11880 The computed histogram is a representation of the color component
11881 distribution in an image.
11882
11883 Standard histogram displays the color components distribution in an image.
11884 Displays color graph for each color component. Shows distribution of
11885 the Y, U, V, A or R, G, B components, depending on input format, in the
11886 current frame. Below each graph a color component scale meter is shown.
11887
11888 The filter accepts the following options:
11889
11890 @table @option
11891 @item level_height
11892 Set height of level. Default value is @code{200}.
11893 Allowed range is [50, 2048].
11894
11895 @item scale_height
11896 Set height of color scale. Default value is @code{12}.
11897 Allowed range is [0, 40].
11898
11899 @item display_mode
11900 Set display mode.
11901 It accepts the following values:
11902 @table @samp
11903 @item stack
11904 Per color component graphs are placed below each other.
11905
11906 @item parade
11907 Per color component graphs are placed side by side.
11908
11909 @item overlay
11910 Presents information identical to that in the @code{parade}, except
11911 that the graphs representing color components are superimposed directly
11912 over one another.
11913 @end table
11914 Default is @code{stack}.
11915
11916 @item levels_mode
11917 Set mode. Can be either @code{linear}, or @code{logarithmic}.
11918 Default is @code{linear}.
11919
11920 @item components
11921 Set what color components to display.
11922 Default is @code{7}.
11923
11924 @item fgopacity
11925 Set foreground opacity. Default is @code{0.7}.
11926
11927 @item bgopacity
11928 Set background opacity. Default is @code{0.5}.
11929 @end table
11930
11931 @subsection Examples
11932
11933 @itemize
11934
11935 @item
11936 Calculate and draw histogram:
11937 @example
11938 ffplay -i input -vf histogram
11939 @end example
11940
11941 @end itemize
11942
11943 @anchor{hqdn3d}
11944 @section hqdn3d
11945
11946 This is a high precision/quality 3d denoise filter. It aims to reduce
11947 image noise, producing smooth images and making still images really
11948 still. It should enhance compressibility.
11949
11950 It accepts the following optional parameters:
11951
11952 @table @option
11953 @item luma_spatial
11954 A non-negative floating point number which specifies spatial luma strength.
11955 It defaults to 4.0.
11956
11957 @item chroma_spatial
11958 A non-negative floating point number which specifies spatial chroma strength.
11959 It defaults to 3.0*@var{luma_spatial}/4.0.
11960
11961 @item luma_tmp
11962 A floating point number which specifies luma temporal strength. It defaults to
11963 6.0*@var{luma_spatial}/4.0.
11964
11965 @item chroma_tmp
11966 A floating point number which specifies chroma temporal strength. It defaults to
11967 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
11968 @end table
11969
11970 @subsection Commands
11971 This filter supports same @ref{commands} as options.
11972 The command accepts the same syntax of the corresponding option.
11973
11974 If the specified expression is not valid, it is kept at its current
11975 value.
11976
11977 @anchor{hwdownload}
11978 @section hwdownload
11979
11980 Download hardware frames to system memory.
11981
11982 The input must be in hardware frames, and the output a non-hardware format.
11983 Not all formats will be supported on the output - it may be necessary to insert
11984 an additional @option{format} filter immediately following in the graph to get
11985 the output in a supported format.
11986
11987 @section hwmap
11988
11989 Map hardware frames to system memory or to another device.
11990
11991 This filter has several different modes of operation; which one is used depends
11992 on the input and output formats:
11993 @itemize
11994 @item
11995 Hardware frame input, normal frame output
11996
11997 Map the input frames to system memory and pass them to the output.  If the
11998 original hardware frame is later required (for example, after overlaying
11999 something else on part of it), the @option{hwmap} filter can be used again
12000 in the next mode to retrieve it.
12001 @item
12002 Normal frame input, hardware frame output
12003
12004 If the input is actually a software-mapped hardware frame, then unmap it -
12005 that is, return the original hardware frame.
12006
12007 Otherwise, a device must be provided.  Create new hardware surfaces on that
12008 device for the output, then map them back to the software format at the input
12009 and give those frames to the preceding filter.  This will then act like the
12010 @option{hwupload} filter, but may be able to avoid an additional copy when
12011 the input is already in a compatible format.
12012 @item
12013 Hardware frame input and output
12014
12015 A device must be supplied for the output, either directly or with the
12016 @option{derive_device} option.  The input and output devices must be of
12017 different types and compatible - the exact meaning of this is
12018 system-dependent, but typically it means that they must refer to the same
12019 underlying hardware context (for example, refer to the same graphics card).
12020
12021 If the input frames were originally created on the output device, then unmap
12022 to retrieve the original frames.
12023
12024 Otherwise, map the frames to the output device - create new hardware frames
12025 on the output corresponding to the frames on the input.
12026 @end itemize
12027
12028 The following additional parameters are accepted:
12029
12030 @table @option
12031 @item mode
12032 Set the frame mapping mode.  Some combination of:
12033 @table @var
12034 @item read
12035 The mapped frame should be readable.
12036 @item write
12037 The mapped frame should be writeable.
12038 @item overwrite
12039 The mapping will always overwrite the entire frame.
12040
12041 This may improve performance in some cases, as the original contents of the
12042 frame need not be loaded.
12043 @item direct
12044 The mapping must not involve any copying.
12045
12046 Indirect mappings to copies of frames are created in some cases where either
12047 direct mapping is not possible or it would have unexpected properties.
12048 Setting this flag ensures that the mapping is direct and will fail if that is
12049 not possible.
12050 @end table
12051 Defaults to @var{read+write} if not specified.
12052
12053 @item derive_device @var{type}
12054 Rather than using the device supplied at initialisation, instead derive a new
12055 device of type @var{type} from the device the input frames exist on.
12056
12057 @item reverse
12058 In a hardware to hardware mapping, map in reverse - create frames in the sink
12059 and map them back to the source.  This may be necessary in some cases where
12060 a mapping in one direction is required but only the opposite direction is
12061 supported by the devices being used.
12062
12063 This option is dangerous - it may break the preceding filter in undefined
12064 ways if there are any additional constraints on that filter's output.
12065 Do not use it without fully understanding the implications of its use.
12066 @end table
12067
12068 @anchor{hwupload}
12069 @section hwupload
12070
12071 Upload system memory frames to hardware surfaces.
12072
12073 The device to upload to must be supplied when the filter is initialised.  If
12074 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12075 option or with the @option{derive_device} option.  The input and output devices
12076 must be of different types and compatible - the exact meaning of this is
12077 system-dependent, but typically it means that they must refer to the same
12078 underlying hardware context (for example, refer to the same graphics card).
12079
12080 The following additional parameters are accepted:
12081
12082 @table @option
12083 @item derive_device @var{type}
12084 Rather than using the device supplied at initialisation, instead derive a new
12085 device of type @var{type} from the device the input frames exist on.
12086 @end table
12087
12088 @anchor{hwupload_cuda}
12089 @section hwupload_cuda
12090
12091 Upload system memory frames to a CUDA device.
12092
12093 It accepts the following optional parameters:
12094
12095 @table @option
12096 @item device
12097 The number of the CUDA device to use
12098 @end table
12099
12100 @section hqx
12101
12102 Apply a high-quality magnification filter designed for pixel art. This filter
12103 was originally created by Maxim Stepin.
12104
12105 It accepts the following option:
12106
12107 @table @option
12108 @item n
12109 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
12110 @code{hq3x} and @code{4} for @code{hq4x}.
12111 Default is @code{3}.
12112 @end table
12113
12114 @section hstack
12115 Stack input videos horizontally.
12116
12117 All streams must be of same pixel format and of same height.
12118
12119 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12120 to create same output.
12121
12122 The filter accepts the following option:
12123
12124 @table @option
12125 @item inputs
12126 Set number of input streams. Default is 2.
12127
12128 @item shortest
12129 If set to 1, force the output to terminate when the shortest input
12130 terminates. Default value is 0.
12131 @end table
12132
12133 @section hue
12134
12135 Modify the hue and/or the saturation of the input.
12136
12137 It accepts the following parameters:
12138
12139 @table @option
12140 @item h
12141 Specify the hue angle as a number of degrees. It accepts an expression,
12142 and defaults to "0".
12143
12144 @item s
12145 Specify the saturation in the [-10,10] range. It accepts an expression and
12146 defaults to "1".
12147
12148 @item H
12149 Specify the hue angle as a number of radians. It accepts an
12150 expression, and defaults to "0".
12151
12152 @item b
12153 Specify the brightness in the [-10,10] range. It accepts an expression and
12154 defaults to "0".
12155 @end table
12156
12157 @option{h} and @option{H} are mutually exclusive, and can't be
12158 specified at the same time.
12159
12160 The @option{b}, @option{h}, @option{H} and @option{s} option values are
12161 expressions containing the following constants:
12162
12163 @table @option
12164 @item n
12165 frame count of the input frame starting from 0
12166
12167 @item pts
12168 presentation timestamp of the input frame expressed in time base units
12169
12170 @item r
12171 frame rate of the input video, NAN if the input frame rate is unknown
12172
12173 @item t
12174 timestamp expressed in seconds, NAN if the input timestamp is unknown
12175
12176 @item tb
12177 time base of the input video
12178 @end table
12179
12180 @subsection Examples
12181
12182 @itemize
12183 @item
12184 Set the hue to 90 degrees and the saturation to 1.0:
12185 @example
12186 hue=h=90:s=1
12187 @end example
12188
12189 @item
12190 Same command but expressing the hue in radians:
12191 @example
12192 hue=H=PI/2:s=1
12193 @end example
12194
12195 @item
12196 Rotate hue and make the saturation swing between 0
12197 and 2 over a period of 1 second:
12198 @example
12199 hue="H=2*PI*t: s=sin(2*PI*t)+1"
12200 @end example
12201
12202 @item
12203 Apply a 3 seconds saturation fade-in effect starting at 0:
12204 @example
12205 hue="s=min(t/3\,1)"
12206 @end example
12207
12208 The general fade-in expression can be written as:
12209 @example
12210 hue="s=min(0\, max((t-START)/DURATION\, 1))"
12211 @end example
12212
12213 @item
12214 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
12215 @example
12216 hue="s=max(0\, min(1\, (8-t)/3))"
12217 @end example
12218
12219 The general fade-out expression can be written as:
12220 @example
12221 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
12222 @end example
12223
12224 @end itemize
12225
12226 @subsection Commands
12227
12228 This filter supports the following commands:
12229 @table @option
12230 @item b
12231 @item s
12232 @item h
12233 @item H
12234 Modify the hue and/or the saturation and/or brightness of the input video.
12235 The command accepts the same syntax of the corresponding option.
12236
12237 If the specified expression is not valid, it is kept at its current
12238 value.
12239 @end table
12240
12241 @section hysteresis
12242
12243 Grow first stream into second stream by connecting components.
12244 This makes it possible to build more robust edge masks.
12245
12246 This filter accepts the following options:
12247
12248 @table @option
12249 @item planes
12250 Set which planes will be processed as bitmap, unprocessed planes will be
12251 copied from first stream.
12252 By default value 0xf, all planes will be processed.
12253
12254 @item threshold
12255 Set threshold which is used in filtering. If pixel component value is higher than
12256 this value filter algorithm for connecting components is activated.
12257 By default value is 0.
12258 @end table
12259
12260 The @code{hysteresis} filter also supports the @ref{framesync} options.
12261
12262 @section idet
12263
12264 Detect video interlacing type.
12265
12266 This filter tries to detect if the input frames are interlaced, progressive,
12267 top or bottom field first. It will also try to detect fields that are
12268 repeated between adjacent frames (a sign of telecine).
12269
12270 Single frame detection considers only immediately adjacent frames when classifying each frame.
12271 Multiple frame detection incorporates the classification history of previous frames.
12272
12273 The filter will log these metadata values:
12274
12275 @table @option
12276 @item single.current_frame
12277 Detected type of current frame using single-frame detection. One of:
12278 ``tff'' (top field first), ``bff'' (bottom field first),
12279 ``progressive'', or ``undetermined''
12280
12281 @item single.tff
12282 Cumulative number of frames detected as top field first using single-frame detection.
12283
12284 @item multiple.tff
12285 Cumulative number of frames detected as top field first using multiple-frame detection.
12286
12287 @item single.bff
12288 Cumulative number of frames detected as bottom field first using single-frame detection.
12289
12290 @item multiple.current_frame
12291 Detected type of current frame using multiple-frame detection. One of:
12292 ``tff'' (top field first), ``bff'' (bottom field first),
12293 ``progressive'', or ``undetermined''
12294
12295 @item multiple.bff
12296 Cumulative number of frames detected as bottom field first using multiple-frame detection.
12297
12298 @item single.progressive
12299 Cumulative number of frames detected as progressive using single-frame detection.
12300
12301 @item multiple.progressive
12302 Cumulative number of frames detected as progressive using multiple-frame detection.
12303
12304 @item single.undetermined
12305 Cumulative number of frames that could not be classified using single-frame detection.
12306
12307 @item multiple.undetermined
12308 Cumulative number of frames that could not be classified using multiple-frame detection.
12309
12310 @item repeated.current_frame
12311 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
12312
12313 @item repeated.neither
12314 Cumulative number of frames with no repeated field.
12315
12316 @item repeated.top
12317 Cumulative number of frames with the top field repeated from the previous frame's top field.
12318
12319 @item repeated.bottom
12320 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
12321 @end table
12322
12323 The filter accepts the following options:
12324
12325 @table @option
12326 @item intl_thres
12327 Set interlacing threshold.
12328 @item prog_thres
12329 Set progressive threshold.
12330 @item rep_thres
12331 Threshold for repeated field detection.
12332 @item half_life
12333 Number of frames after which a given frame's contribution to the
12334 statistics is halved (i.e., it contributes only 0.5 to its
12335 classification). The default of 0 means that all frames seen are given
12336 full weight of 1.0 forever.
12337 @item analyze_interlaced_flag
12338 When this is not 0 then idet will use the specified number of frames to determine
12339 if the interlaced flag is accurate, it will not count undetermined frames.
12340 If the flag is found to be accurate it will be used without any further
12341 computations, if it is found to be inaccurate it will be cleared without any
12342 further computations. This allows inserting the idet filter as a low computational
12343 method to clean up the interlaced flag
12344 @end table
12345
12346 @section il
12347
12348 Deinterleave or interleave fields.
12349
12350 This filter allows one to process interlaced images fields without
12351 deinterlacing them. Deinterleaving splits the input frame into 2
12352 fields (so called half pictures). Odd lines are moved to the top
12353 half of the output image, even lines to the bottom half.
12354 You can process (filter) them independently and then re-interleave them.
12355
12356 The filter accepts the following options:
12357
12358 @table @option
12359 @item luma_mode, l
12360 @item chroma_mode, c
12361 @item alpha_mode, a
12362 Available values for @var{luma_mode}, @var{chroma_mode} and
12363 @var{alpha_mode} are:
12364
12365 @table @samp
12366 @item none
12367 Do nothing.
12368
12369 @item deinterleave, d
12370 Deinterleave fields, placing one above the other.
12371
12372 @item interleave, i
12373 Interleave fields. Reverse the effect of deinterleaving.
12374 @end table
12375 Default value is @code{none}.
12376
12377 @item luma_swap, ls
12378 @item chroma_swap, cs
12379 @item alpha_swap, as
12380 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
12381 @end table
12382
12383 @subsection Commands
12384
12385 This filter supports the all above options as @ref{commands}.
12386
12387 @section inflate
12388
12389 Apply inflate effect to the video.
12390
12391 This filter replaces the pixel by the local(3x3) average by taking into account
12392 only values higher than the pixel.
12393
12394 It accepts the following options:
12395
12396 @table @option
12397 @item threshold0
12398 @item threshold1
12399 @item threshold2
12400 @item threshold3
12401 Limit the maximum change for each plane, default is 65535.
12402 If 0, plane will remain unchanged.
12403 @end table
12404
12405 @subsection Commands
12406
12407 This filter supports the all above options as @ref{commands}.
12408
12409 @section interlace
12410
12411 Simple interlacing filter from progressive contents. This interleaves upper (or
12412 lower) lines from odd frames with lower (or upper) lines from even frames,
12413 halving the frame rate and preserving image height.
12414
12415 @example
12416    Original        Original             New Frame
12417    Frame 'j'      Frame 'j+1'             (tff)
12418   ==========      ===========       ==================
12419     Line 0  -------------------->    Frame 'j' Line 0
12420     Line 1          Line 1  ---->   Frame 'j+1' Line 1
12421     Line 2 --------------------->    Frame 'j' Line 2
12422     Line 3          Line 3  ---->   Frame 'j+1' Line 3
12423      ...             ...                   ...
12424 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
12425 @end example
12426
12427 It accepts the following optional parameters:
12428
12429 @table @option
12430 @item scan
12431 This determines whether the interlaced frame is taken from the even
12432 (tff - default) or odd (bff) lines of the progressive frame.
12433
12434 @item lowpass
12435 Vertical lowpass filter to avoid twitter interlacing and
12436 reduce moire patterns.
12437
12438 @table @samp
12439 @item 0, off
12440 Disable vertical lowpass filter
12441
12442 @item 1, linear
12443 Enable linear filter (default)
12444
12445 @item 2, complex
12446 Enable complex filter. This will slightly less reduce twitter and moire
12447 but better retain detail and subjective sharpness impression.
12448
12449 @end table
12450 @end table
12451
12452 @section kerndeint
12453
12454 Deinterlace input video by applying Donald Graft's adaptive kernel
12455 deinterling. Work on interlaced parts of a video to produce
12456 progressive frames.
12457
12458 The description of the accepted parameters follows.
12459
12460 @table @option
12461 @item thresh
12462 Set the threshold which affects the filter's tolerance when
12463 determining if a pixel line must be processed. It must be an integer
12464 in the range [0,255] and defaults to 10. A value of 0 will result in
12465 applying the process on every pixels.
12466
12467 @item map
12468 Paint pixels exceeding the threshold value to white if set to 1.
12469 Default is 0.
12470
12471 @item order
12472 Set the fields order. Swap fields if set to 1, leave fields alone if
12473 0. Default is 0.
12474
12475 @item sharp
12476 Enable additional sharpening if set to 1. Default is 0.
12477
12478 @item twoway
12479 Enable twoway sharpening if set to 1. Default is 0.
12480 @end table
12481
12482 @subsection Examples
12483
12484 @itemize
12485 @item
12486 Apply default values:
12487 @example
12488 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
12489 @end example
12490
12491 @item
12492 Enable additional sharpening:
12493 @example
12494 kerndeint=sharp=1
12495 @end example
12496
12497 @item
12498 Paint processed pixels in white:
12499 @example
12500 kerndeint=map=1
12501 @end example
12502 @end itemize
12503
12504 @section lagfun
12505
12506 Slowly update darker pixels.
12507
12508 This filter makes short flashes of light appear longer.
12509 This filter accepts the following options:
12510
12511 @table @option
12512 @item decay
12513 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
12514
12515 @item planes
12516 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
12517 @end table
12518
12519 @section lenscorrection
12520
12521 Correct radial lens distortion
12522
12523 This filter can be used to correct for radial distortion as can result from the use
12524 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
12525 one can use tools available for example as part of opencv or simply trial-and-error.
12526 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
12527 and extract the k1 and k2 coefficients from the resulting matrix.
12528
12529 Note that effectively the same filter is available in the open-source tools Krita and
12530 Digikam from the KDE project.
12531
12532 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
12533 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
12534 brightness distribution, so you may want to use both filters together in certain
12535 cases, though you will have to take care of ordering, i.e. whether vignetting should
12536 be applied before or after lens correction.
12537
12538 @subsection Options
12539
12540 The filter accepts the following options:
12541
12542 @table @option
12543 @item cx
12544 Relative x-coordinate of the focal point of the image, and thereby the center of the
12545 distortion. This value has a range [0,1] and is expressed as fractions of the image
12546 width. Default is 0.5.
12547 @item cy
12548 Relative y-coordinate of the focal point of the image, and thereby the center of the
12549 distortion. This value has a range [0,1] and is expressed as fractions of the image
12550 height. Default is 0.5.
12551 @item k1
12552 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
12553 no correction. Default is 0.
12554 @item k2
12555 Coefficient of the double quadratic correction term. This value has a range [-1,1].
12556 0 means no correction. Default is 0.
12557 @end table
12558
12559 The formula that generates the correction is:
12560
12561 @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)
12562
12563 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
12564 distances from the focal point in the source and target images, respectively.
12565
12566 @section lensfun
12567
12568 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
12569
12570 The @code{lensfun} filter requires the camera make, camera model, and lens model
12571 to apply the lens correction. The filter will load the lensfun database and
12572 query it to find the corresponding camera and lens entries in the database. As
12573 long as these entries can be found with the given options, the filter can
12574 perform corrections on frames. Note that incomplete strings will result in the
12575 filter choosing the best match with the given options, and the filter will
12576 output the chosen camera and lens models (logged with level "info"). You must
12577 provide the make, camera model, and lens model as they are required.
12578
12579 The filter accepts the following options:
12580
12581 @table @option
12582 @item make
12583 The make of the camera (for example, "Canon"). This option is required.
12584
12585 @item model
12586 The model of the camera (for example, "Canon EOS 100D"). This option is
12587 required.
12588
12589 @item lens_model
12590 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
12591 option is required.
12592
12593 @item mode
12594 The type of correction to apply. The following values are valid options:
12595
12596 @table @samp
12597 @item vignetting
12598 Enables fixing lens vignetting.
12599
12600 @item geometry
12601 Enables fixing lens geometry. This is the default.
12602
12603 @item subpixel
12604 Enables fixing chromatic aberrations.
12605
12606 @item vig_geo
12607 Enables fixing lens vignetting and lens geometry.
12608
12609 @item vig_subpixel
12610 Enables fixing lens vignetting and chromatic aberrations.
12611
12612 @item distortion
12613 Enables fixing both lens geometry and chromatic aberrations.
12614
12615 @item all
12616 Enables all possible corrections.
12617
12618 @end table
12619 @item focal_length
12620 The focal length of the image/video (zoom; expected constant for video). For
12621 example, a 18--55mm lens has focal length range of [18--55], so a value in that
12622 range should be chosen when using that lens. Default 18.
12623
12624 @item aperture
12625 The aperture of the image/video (expected constant for video). Note that
12626 aperture is only used for vignetting correction. Default 3.5.
12627
12628 @item focus_distance
12629 The focus distance of the image/video (expected constant for video). Note that
12630 focus distance is only used for vignetting and only slightly affects the
12631 vignetting correction process. If unknown, leave it at the default value (which
12632 is 1000).
12633
12634 @item scale
12635 The scale factor which is applied after transformation. After correction the
12636 video is no longer necessarily rectangular. This parameter controls how much of
12637 the resulting image is visible. The value 0 means that a value will be chosen
12638 automatically such that there is little or no unmapped area in the output
12639 image. 1.0 means that no additional scaling is done. Lower values may result
12640 in more of the corrected image being visible, while higher values may avoid
12641 unmapped areas in the output.
12642
12643 @item target_geometry
12644 The target geometry of the output image/video. The following values are valid
12645 options:
12646
12647 @table @samp
12648 @item rectilinear (default)
12649 @item fisheye
12650 @item panoramic
12651 @item equirectangular
12652 @item fisheye_orthographic
12653 @item fisheye_stereographic
12654 @item fisheye_equisolid
12655 @item fisheye_thoby
12656 @end table
12657 @item reverse
12658 Apply the reverse of image correction (instead of correcting distortion, apply
12659 it).
12660
12661 @item interpolation
12662 The type of interpolation used when correcting distortion. The following values
12663 are valid options:
12664
12665 @table @samp
12666 @item nearest
12667 @item linear (default)
12668 @item lanczos
12669 @end table
12670 @end table
12671
12672 @subsection Examples
12673
12674 @itemize
12675 @item
12676 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
12677 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
12678 aperture of "8.0".
12679
12680 @example
12681 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
12682 @end example
12683
12684 @item
12685 Apply the same as before, but only for the first 5 seconds of video.
12686
12687 @example
12688 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
12689 @end example
12690
12691 @end itemize
12692
12693 @section libvmaf
12694
12695 Obtain the VMAF (Video Multi-Method Assessment Fusion)
12696 score between two input videos.
12697
12698 The obtained VMAF score is printed through the logging system.
12699
12700 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
12701 After installing the library it can be enabled using:
12702 @code{./configure --enable-libvmaf --enable-version3}.
12703 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
12704
12705 The filter has following options:
12706
12707 @table @option
12708 @item model_path
12709 Set the model path which is to be used for SVM.
12710 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
12711
12712 @item log_path
12713 Set the file path to be used to store logs.
12714
12715 @item log_fmt
12716 Set the format of the log file (xml or json).
12717
12718 @item enable_transform
12719 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
12720 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
12721 Default value: @code{false}
12722
12723 @item phone_model
12724 Invokes the phone model which will generate VMAF scores higher than in the
12725 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
12726 Default value: @code{false}
12727
12728 @item psnr
12729 Enables computing psnr along with vmaf.
12730 Default value: @code{false}
12731
12732 @item ssim
12733 Enables computing ssim along with vmaf.
12734 Default value: @code{false}
12735
12736 @item ms_ssim
12737 Enables computing ms_ssim along with vmaf.
12738 Default value: @code{false}
12739
12740 @item pool
12741 Set the pool method to be used for computing vmaf.
12742 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
12743
12744 @item n_threads
12745 Set number of threads to be used when computing vmaf.
12746 Default value: @code{0}, which makes use of all available logical processors.
12747
12748 @item n_subsample
12749 Set interval for frame subsampling used when computing vmaf.
12750 Default value: @code{1}
12751
12752 @item enable_conf_interval
12753 Enables confidence interval.
12754 Default value: @code{false}
12755 @end table
12756
12757 This filter also supports the @ref{framesync} options.
12758
12759 @subsection Examples
12760 @itemize
12761 @item
12762 On the below examples the input file @file{main.mpg} being processed is
12763 compared with the reference file @file{ref.mpg}.
12764
12765 @example
12766 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
12767 @end example
12768
12769 @item
12770 Example with options:
12771 @example
12772 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
12773 @end example
12774
12775 @item
12776 Example with options and different containers:
12777 @example
12778 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 -
12779 @end example
12780 @end itemize
12781
12782 @section limiter
12783
12784 Limits the pixel components values to the specified range [min, max].
12785
12786 The filter accepts the following options:
12787
12788 @table @option
12789 @item min
12790 Lower bound. Defaults to the lowest allowed value for the input.
12791
12792 @item max
12793 Upper bound. Defaults to the highest allowed value for the input.
12794
12795 @item planes
12796 Specify which planes will be processed. Defaults to all available.
12797 @end table
12798
12799 @section loop
12800
12801 Loop video frames.
12802
12803 The filter accepts the following options:
12804
12805 @table @option
12806 @item loop
12807 Set the number of loops. Setting this value to -1 will result in infinite loops.
12808 Default is 0.
12809
12810 @item size
12811 Set maximal size in number of frames. Default is 0.
12812
12813 @item start
12814 Set first frame of loop. Default is 0.
12815 @end table
12816
12817 @subsection Examples
12818
12819 @itemize
12820 @item
12821 Loop single first frame infinitely:
12822 @example
12823 loop=loop=-1:size=1:start=0
12824 @end example
12825
12826 @item
12827 Loop single first frame 10 times:
12828 @example
12829 loop=loop=10:size=1:start=0
12830 @end example
12831
12832 @item
12833 Loop 10 first frames 5 times:
12834 @example
12835 loop=loop=5:size=10:start=0
12836 @end example
12837 @end itemize
12838
12839 @section lut1d
12840
12841 Apply a 1D LUT to an input video.
12842
12843 The filter accepts the following options:
12844
12845 @table @option
12846 @item file
12847 Set the 1D LUT file name.
12848
12849 Currently supported formats:
12850 @table @samp
12851 @item cube
12852 Iridas
12853 @item csp
12854 cineSpace
12855 @end table
12856
12857 @item interp
12858 Select interpolation mode.
12859
12860 Available values are:
12861
12862 @table @samp
12863 @item nearest
12864 Use values from the nearest defined point.
12865 @item linear
12866 Interpolate values using the linear interpolation.
12867 @item cosine
12868 Interpolate values using the cosine interpolation.
12869 @item cubic
12870 Interpolate values using the cubic interpolation.
12871 @item spline
12872 Interpolate values using the spline interpolation.
12873 @end table
12874 @end table
12875
12876 @anchor{lut3d}
12877 @section lut3d
12878
12879 Apply a 3D LUT to an input video.
12880
12881 The filter accepts the following options:
12882
12883 @table @option
12884 @item file
12885 Set the 3D LUT file name.
12886
12887 Currently supported formats:
12888 @table @samp
12889 @item 3dl
12890 AfterEffects
12891 @item cube
12892 Iridas
12893 @item dat
12894 DaVinci
12895 @item m3d
12896 Pandora
12897 @item csp
12898 cineSpace
12899 @end table
12900 @item interp
12901 Select interpolation mode.
12902
12903 Available values are:
12904
12905 @table @samp
12906 @item nearest
12907 Use values from the nearest defined point.
12908 @item trilinear
12909 Interpolate values using the 8 points defining a cube.
12910 @item tetrahedral
12911 Interpolate values using a tetrahedron.
12912 @end table
12913 @end table
12914
12915 @section lumakey
12916
12917 Turn certain luma values into transparency.
12918
12919 The filter accepts the following options:
12920
12921 @table @option
12922 @item threshold
12923 Set the luma which will be used as base for transparency.
12924 Default value is @code{0}.
12925
12926 @item tolerance
12927 Set the range of luma values to be keyed out.
12928 Default value is @code{0.01}.
12929
12930 @item softness
12931 Set the range of softness. Default value is @code{0}.
12932 Use this to control gradual transition from zero to full transparency.
12933 @end table
12934
12935 @subsection Commands
12936 This filter supports same @ref{commands} as options.
12937 The command accepts the same syntax of the corresponding option.
12938
12939 If the specified expression is not valid, it is kept at its current
12940 value.
12941
12942 @section lut, lutrgb, lutyuv
12943
12944 Compute a look-up table for binding each pixel component input value
12945 to an output value, and apply it to the input video.
12946
12947 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
12948 to an RGB input video.
12949
12950 These filters accept the following parameters:
12951 @table @option
12952 @item c0
12953 set first pixel component expression
12954 @item c1
12955 set second pixel component expression
12956 @item c2
12957 set third pixel component expression
12958 @item c3
12959 set fourth pixel component expression, corresponds to the alpha component
12960
12961 @item r
12962 set red component expression
12963 @item g
12964 set green component expression
12965 @item b
12966 set blue component expression
12967 @item a
12968 alpha component expression
12969
12970 @item y
12971 set Y/luminance component expression
12972 @item u
12973 set U/Cb component expression
12974 @item v
12975 set V/Cr component expression
12976 @end table
12977
12978 Each of them specifies the expression to use for computing the lookup table for
12979 the corresponding pixel component values.
12980
12981 The exact component associated to each of the @var{c*} options depends on the
12982 format in input.
12983
12984 The @var{lut} filter requires either YUV or RGB pixel formats in input,
12985 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
12986
12987 The expressions can contain the following constants and functions:
12988
12989 @table @option
12990 @item w
12991 @item h
12992 The input width and height.
12993
12994 @item val
12995 The input value for the pixel component.
12996
12997 @item clipval
12998 The input value, clipped to the @var{minval}-@var{maxval} range.
12999
13000 @item maxval
13001 The maximum value for the pixel component.
13002
13003 @item minval
13004 The minimum value for the pixel component.
13005
13006 @item negval
13007 The negated value for the pixel component value, clipped to the
13008 @var{minval}-@var{maxval} range; it corresponds to the expression
13009 "maxval-clipval+minval".
13010
13011 @item clip(val)
13012 The computed value in @var{val}, clipped to the
13013 @var{minval}-@var{maxval} range.
13014
13015 @item gammaval(gamma)
13016 The computed gamma correction value of the pixel component value,
13017 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13018 expression
13019 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13020
13021 @end table
13022
13023 All expressions default to "val".
13024
13025 @subsection Examples
13026
13027 @itemize
13028 @item
13029 Negate input video:
13030 @example
13031 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13032 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13033 @end example
13034
13035 The above is the same as:
13036 @example
13037 lutrgb="r=negval:g=negval:b=negval"
13038 lutyuv="y=negval:u=negval:v=negval"
13039 @end example
13040
13041 @item
13042 Negate luminance:
13043 @example
13044 lutyuv=y=negval
13045 @end example
13046
13047 @item
13048 Remove chroma components, turning the video into a graytone image:
13049 @example
13050 lutyuv="u=128:v=128"
13051 @end example
13052
13053 @item
13054 Apply a luma burning effect:
13055 @example
13056 lutyuv="y=2*val"
13057 @end example
13058
13059 @item
13060 Remove green and blue components:
13061 @example
13062 lutrgb="g=0:b=0"
13063 @end example
13064
13065 @item
13066 Set a constant alpha channel value on input:
13067 @example
13068 format=rgba,lutrgb=a="maxval-minval/2"
13069 @end example
13070
13071 @item
13072 Correct luminance gamma by a factor of 0.5:
13073 @example
13074 lutyuv=y=gammaval(0.5)
13075 @end example
13076
13077 @item
13078 Discard least significant bits of luma:
13079 @example
13080 lutyuv=y='bitand(val, 128+64+32)'
13081 @end example
13082
13083 @item
13084 Technicolor like effect:
13085 @example
13086 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
13087 @end example
13088 @end itemize
13089
13090 @section lut2, tlut2
13091
13092 The @code{lut2} filter takes two input streams and outputs one
13093 stream.
13094
13095 The @code{tlut2} (time lut2) filter takes two consecutive frames
13096 from one single stream.
13097
13098 This filter accepts the following parameters:
13099 @table @option
13100 @item c0
13101 set first pixel component expression
13102 @item c1
13103 set second pixel component expression
13104 @item c2
13105 set third pixel component expression
13106 @item c3
13107 set fourth pixel component expression, corresponds to the alpha component
13108
13109 @item d
13110 set output bit depth, only available for @code{lut2} filter. By default is 0,
13111 which means bit depth is automatically picked from first input format.
13112 @end table
13113
13114 The @code{lut2} filter also supports the @ref{framesync} options.
13115
13116 Each of them specifies the expression to use for computing the lookup table for
13117 the corresponding pixel component values.
13118
13119 The exact component associated to each of the @var{c*} options depends on the
13120 format in inputs.
13121
13122 The expressions can contain the following constants:
13123
13124 @table @option
13125 @item w
13126 @item h
13127 The input width and height.
13128
13129 @item x
13130 The first input value for the pixel component.
13131
13132 @item y
13133 The second input value for the pixel component.
13134
13135 @item bdx
13136 The first input video bit depth.
13137
13138 @item bdy
13139 The second input video bit depth.
13140 @end table
13141
13142 All expressions default to "x".
13143
13144 @subsection Examples
13145
13146 @itemize
13147 @item
13148 Highlight differences between two RGB video streams:
13149 @example
13150 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)'
13151 @end example
13152
13153 @item
13154 Highlight differences between two YUV video streams:
13155 @example
13156 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)'
13157 @end example
13158
13159 @item
13160 Show max difference between two video streams:
13161 @example
13162 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)))'
13163 @end example
13164 @end itemize
13165
13166 @section maskedclamp
13167
13168 Clamp the first input stream with the second input and third input stream.
13169
13170 Returns the value of first stream to be between second input
13171 stream - @code{undershoot} and third input stream + @code{overshoot}.
13172
13173 This filter accepts the following options:
13174 @table @option
13175 @item undershoot
13176 Default value is @code{0}.
13177
13178 @item overshoot
13179 Default value is @code{0}.
13180
13181 @item planes
13182 Set which planes will be processed as bitmap, unprocessed planes will be
13183 copied from first stream.
13184 By default value 0xf, all planes will be processed.
13185 @end table
13186
13187 @section maskedmax
13188
13189 Merge the second and third input stream into output stream using absolute differences
13190 between second input stream and first input stream and absolute difference between
13191 third input stream and first input stream. The picked value will be from second input
13192 stream if second absolute difference is greater than first one or from third input stream
13193 otherwise.
13194
13195 This filter accepts the following options:
13196 @table @option
13197 @item planes
13198 Set which planes will be processed as bitmap, unprocessed planes will be
13199 copied from first stream.
13200 By default value 0xf, all planes will be processed.
13201 @end table
13202
13203 @section maskedmerge
13204
13205 Merge the first input stream with the second input stream using per pixel
13206 weights in the third input stream.
13207
13208 A value of 0 in the third stream pixel component means that pixel component
13209 from first stream is returned unchanged, while maximum value (eg. 255 for
13210 8-bit videos) means that pixel component from second stream is returned
13211 unchanged. Intermediate values define the amount of merging between both
13212 input stream's pixel components.
13213
13214 This filter accepts the following options:
13215 @table @option
13216 @item planes
13217 Set which planes will be processed as bitmap, unprocessed planes will be
13218 copied from first stream.
13219 By default value 0xf, all planes will be processed.
13220 @end table
13221
13222 @section maskedmin
13223
13224 Merge the second and third input stream into output stream using absolute differences
13225 between second input stream and first input stream and absolute difference between
13226 third input stream and first input stream. The picked value will be from second input
13227 stream if second absolute difference is less than first one or from third input stream
13228 otherwise.
13229
13230 This filter accepts the following options:
13231 @table @option
13232 @item planes
13233 Set which planes will be processed as bitmap, unprocessed planes will be
13234 copied from first stream.
13235 By default value 0xf, all planes will be processed.
13236 @end table
13237
13238 @section maskfun
13239 Create mask from input video.
13240
13241 For example it is useful to create motion masks after @code{tblend} filter.
13242
13243 This filter accepts the following options:
13244
13245 @table @option
13246 @item low
13247 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
13248
13249 @item high
13250 Set high threshold. Any pixel component higher than this value will be set to max value
13251 allowed for current pixel format.
13252
13253 @item planes
13254 Set planes to filter, by default all available planes are filtered.
13255
13256 @item fill
13257 Fill all frame pixels with this value.
13258
13259 @item sum
13260 Set max average pixel value for frame. If sum of all pixel components is higher that this
13261 average, output frame will be completely filled with value set by @var{fill} option.
13262 Typically useful for scene changes when used in combination with @code{tblend} filter.
13263 @end table
13264
13265 @section mcdeint
13266
13267 Apply motion-compensation deinterlacing.
13268
13269 It needs one field per frame as input and must thus be used together
13270 with yadif=1/3 or equivalent.
13271
13272 This filter accepts the following options:
13273 @table @option
13274 @item mode
13275 Set the deinterlacing mode.
13276
13277 It accepts one of the following values:
13278 @table @samp
13279 @item fast
13280 @item medium
13281 @item slow
13282 use iterative motion estimation
13283 @item extra_slow
13284 like @samp{slow}, but use multiple reference frames.
13285 @end table
13286 Default value is @samp{fast}.
13287
13288 @item parity
13289 Set the picture field parity assumed for the input video. It must be
13290 one of the following values:
13291
13292 @table @samp
13293 @item 0, tff
13294 assume top field first
13295 @item 1, bff
13296 assume bottom field first
13297 @end table
13298
13299 Default value is @samp{bff}.
13300
13301 @item qp
13302 Set per-block quantization parameter (QP) used by the internal
13303 encoder.
13304
13305 Higher values should result in a smoother motion vector field but less
13306 optimal individual vectors. Default value is 1.
13307 @end table
13308
13309 @section median
13310
13311 Pick median pixel from certain rectangle defined by radius.
13312
13313 This filter accepts the following options:
13314
13315 @table @option
13316 @item radius
13317 Set horizontal radius size. Default value is @code{1}.
13318 Allowed range is integer from 1 to 127.
13319
13320 @item planes
13321 Set which planes to process. Default is @code{15}, which is all available planes.
13322
13323 @item radiusV
13324 Set vertical radius size. Default value is @code{0}.
13325 Allowed range is integer from 0 to 127.
13326 If it is 0, value will be picked from horizontal @code{radius} option.
13327
13328 @item percentile
13329 Set median percentile. Default value is @code{0.5}.
13330 Default value of @code{0.5} will pick always median values, while @code{0} will pick
13331 minimum values, and @code{1} maximum values.
13332 @end table
13333
13334 @subsection Commands
13335 This filter supports same @ref{commands} as options.
13336 The command accepts the same syntax of the corresponding option.
13337
13338 If the specified expression is not valid, it is kept at its current
13339 value.
13340
13341 @section mergeplanes
13342
13343 Merge color channel components from several video streams.
13344
13345 The filter accepts up to 4 input streams, and merge selected input
13346 planes to the output video.
13347
13348 This filter accepts the following options:
13349 @table @option
13350 @item mapping
13351 Set input to output plane mapping. Default is @code{0}.
13352
13353 The mappings is specified as a bitmap. It should be specified as a
13354 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
13355 mapping for the first plane of the output stream. 'A' sets the number of
13356 the input stream to use (from 0 to 3), and 'a' the plane number of the
13357 corresponding input to use (from 0 to 3). The rest of the mappings is
13358 similar, 'Bb' describes the mapping for the output stream second
13359 plane, 'Cc' describes the mapping for the output stream third plane and
13360 'Dd' describes the mapping for the output stream fourth plane.
13361
13362 @item format
13363 Set output pixel format. Default is @code{yuva444p}.
13364 @end table
13365
13366 @subsection Examples
13367
13368 @itemize
13369 @item
13370 Merge three gray video streams of same width and height into single video stream:
13371 @example
13372 [a0][a1][a2]mergeplanes=0x001020:yuv444p
13373 @end example
13374
13375 @item
13376 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
13377 @example
13378 [a0][a1]mergeplanes=0x00010210:yuva444p
13379 @end example
13380
13381 @item
13382 Swap Y and A plane in yuva444p stream:
13383 @example
13384 format=yuva444p,mergeplanes=0x03010200:yuva444p
13385 @end example
13386
13387 @item
13388 Swap U and V plane in yuv420p stream:
13389 @example
13390 format=yuv420p,mergeplanes=0x000201:yuv420p
13391 @end example
13392
13393 @item
13394 Cast a rgb24 clip to yuv444p:
13395 @example
13396 format=rgb24,mergeplanes=0x000102:yuv444p
13397 @end example
13398 @end itemize
13399
13400 @section mestimate
13401
13402 Estimate and export motion vectors using block matching algorithms.
13403 Motion vectors are stored in frame side data to be used by other filters.
13404
13405 This filter accepts the following options:
13406 @table @option
13407 @item method
13408 Specify the motion estimation method. Accepts one of the following values:
13409
13410 @table @samp
13411 @item esa
13412 Exhaustive search algorithm.
13413 @item tss
13414 Three step search algorithm.
13415 @item tdls
13416 Two dimensional logarithmic search algorithm.
13417 @item ntss
13418 New three step search algorithm.
13419 @item fss
13420 Four step search algorithm.
13421 @item ds
13422 Diamond search algorithm.
13423 @item hexbs
13424 Hexagon-based search algorithm.
13425 @item epzs
13426 Enhanced predictive zonal search algorithm.
13427 @item umh
13428 Uneven multi-hexagon search algorithm.
13429 @end table
13430 Default value is @samp{esa}.
13431
13432 @item mb_size
13433 Macroblock size. Default @code{16}.
13434
13435 @item search_param
13436 Search parameter. Default @code{7}.
13437 @end table
13438
13439 @section midequalizer
13440
13441 Apply Midway Image Equalization effect using two video streams.
13442
13443 Midway Image Equalization adjusts a pair of images to have the same
13444 histogram, while maintaining their dynamics as much as possible. It's
13445 useful for e.g. matching exposures from a pair of stereo cameras.
13446
13447 This filter has two inputs and one output, which must be of same pixel format, but
13448 may be of different sizes. The output of filter is first input adjusted with
13449 midway histogram of both inputs.
13450
13451 This filter accepts the following option:
13452
13453 @table @option
13454 @item planes
13455 Set which planes to process. Default is @code{15}, which is all available planes.
13456 @end table
13457
13458 @section minterpolate
13459
13460 Convert the video to specified frame rate using motion interpolation.
13461
13462 This filter accepts the following options:
13463 @table @option
13464 @item fps
13465 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}.
13466
13467 @item mi_mode
13468 Motion interpolation mode. Following values are accepted:
13469 @table @samp
13470 @item dup
13471 Duplicate previous or next frame for interpolating new ones.
13472 @item blend
13473 Blend source frames. Interpolated frame is mean of previous and next frames.
13474 @item mci
13475 Motion compensated interpolation. Following options are effective when this mode is selected:
13476
13477 @table @samp
13478 @item mc_mode
13479 Motion compensation mode. Following values are accepted:
13480 @table @samp
13481 @item obmc
13482 Overlapped block motion compensation.
13483 @item aobmc
13484 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
13485 @end table
13486 Default mode is @samp{obmc}.
13487
13488 @item me_mode
13489 Motion estimation mode. Following values are accepted:
13490 @table @samp
13491 @item bidir
13492 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
13493 @item bilat
13494 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
13495 @end table
13496 Default mode is @samp{bilat}.
13497
13498 @item me
13499 The algorithm to be used for motion estimation. Following values are accepted:
13500 @table @samp
13501 @item esa
13502 Exhaustive search algorithm.
13503 @item tss
13504 Three step search algorithm.
13505 @item tdls
13506 Two dimensional logarithmic search algorithm.
13507 @item ntss
13508 New three step search algorithm.
13509 @item fss
13510 Four step search algorithm.
13511 @item ds
13512 Diamond search algorithm.
13513 @item hexbs
13514 Hexagon-based search algorithm.
13515 @item epzs
13516 Enhanced predictive zonal search algorithm.
13517 @item umh
13518 Uneven multi-hexagon search algorithm.
13519 @end table
13520 Default algorithm is @samp{epzs}.
13521
13522 @item mb_size
13523 Macroblock size. Default @code{16}.
13524
13525 @item search_param
13526 Motion estimation search parameter. Default @code{32}.
13527
13528 @item vsbmc
13529 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).
13530 @end table
13531 @end table
13532
13533 @item scd
13534 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:
13535 @table @samp
13536 @item none
13537 Disable scene change detection.
13538 @item fdiff
13539 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
13540 @end table
13541 Default method is @samp{fdiff}.
13542
13543 @item scd_threshold
13544 Scene change detection threshold. Default is @code{5.0}.
13545 @end table
13546
13547 @section mix
13548
13549 Mix several video input streams into one video stream.
13550
13551 A description of the accepted options follows.
13552
13553 @table @option
13554 @item nb_inputs
13555 The number of inputs. If unspecified, it defaults to 2.
13556
13557 @item weights
13558 Specify weight of each input video stream as sequence.
13559 Each weight is separated by space. If number of weights
13560 is smaller than number of @var{frames} last specified
13561 weight will be used for all remaining unset weights.
13562
13563 @item scale
13564 Specify scale, if it is set it will be multiplied with sum
13565 of each weight multiplied with pixel values to give final destination
13566 pixel value. By default @var{scale} is auto scaled to sum of weights.
13567
13568 @item duration
13569 Specify how end of stream is determined.
13570 @table @samp
13571 @item longest
13572 The duration of the longest input. (default)
13573
13574 @item shortest
13575 The duration of the shortest input.
13576
13577 @item first
13578 The duration of the first input.
13579 @end table
13580 @end table
13581
13582 @section mpdecimate
13583
13584 Drop frames that do not differ greatly from the previous frame in
13585 order to reduce frame rate.
13586
13587 The main use of this filter is for very-low-bitrate encoding
13588 (e.g. streaming over dialup modem), but it could in theory be used for
13589 fixing movies that were inverse-telecined incorrectly.
13590
13591 A description of the accepted options follows.
13592
13593 @table @option
13594 @item max
13595 Set the maximum number of consecutive frames which can be dropped (if
13596 positive), or the minimum interval between dropped frames (if
13597 negative). If the value is 0, the frame is dropped disregarding the
13598 number of previous sequentially dropped frames.
13599
13600 Default value is 0.
13601
13602 @item hi
13603 @item lo
13604 @item frac
13605 Set the dropping threshold values.
13606
13607 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
13608 represent actual pixel value differences, so a threshold of 64
13609 corresponds to 1 unit of difference for each pixel, or the same spread
13610 out differently over the block.
13611
13612 A frame is a candidate for dropping if no 8x8 blocks differ by more
13613 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
13614 meaning the whole image) differ by more than a threshold of @option{lo}.
13615
13616 Default value for @option{hi} is 64*12, default value for @option{lo} is
13617 64*5, and default value for @option{frac} is 0.33.
13618 @end table
13619
13620
13621 @section negate
13622
13623 Negate (invert) the input video.
13624
13625 It accepts the following option:
13626
13627 @table @option
13628
13629 @item negate_alpha
13630 With value 1, it negates the alpha component, if present. Default value is 0.
13631 @end table
13632
13633 @anchor{nlmeans}
13634 @section nlmeans
13635
13636 Denoise frames using Non-Local Means algorithm.
13637
13638 Each pixel is adjusted by looking for other pixels with similar contexts. This
13639 context similarity is defined by comparing their surrounding patches of size
13640 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
13641 around the pixel.
13642
13643 Note that the research area defines centers for patches, which means some
13644 patches will be made of pixels outside that research area.
13645
13646 The filter accepts the following options.
13647
13648 @table @option
13649 @item s
13650 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
13651
13652 @item p
13653 Set patch size. Default is 7. Must be odd number in range [0, 99].
13654
13655 @item pc
13656 Same as @option{p} but for chroma planes.
13657
13658 The default value is @var{0} and means automatic.
13659
13660 @item r
13661 Set research size. Default is 15. Must be odd number in range [0, 99].
13662
13663 @item rc
13664 Same as @option{r} but for chroma planes.
13665
13666 The default value is @var{0} and means automatic.
13667 @end table
13668
13669 @section nnedi
13670
13671 Deinterlace video using neural network edge directed interpolation.
13672
13673 This filter accepts the following options:
13674
13675 @table @option
13676 @item weights
13677 Mandatory option, without binary file filter can not work.
13678 Currently file can be found here:
13679 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
13680
13681 @item deint
13682 Set which frames to deinterlace, by default it is @code{all}.
13683 Can be @code{all} or @code{interlaced}.
13684
13685 @item field
13686 Set mode of operation.
13687
13688 Can be one of the following:
13689
13690 @table @samp
13691 @item af
13692 Use frame flags, both fields.
13693 @item a
13694 Use frame flags, single field.
13695 @item t
13696 Use top field only.
13697 @item b
13698 Use bottom field only.
13699 @item tf
13700 Use both fields, top first.
13701 @item bf
13702 Use both fields, bottom first.
13703 @end table
13704
13705 @item planes
13706 Set which planes to process, by default filter process all frames.
13707
13708 @item nsize
13709 Set size of local neighborhood around each pixel, used by the predictor neural
13710 network.
13711
13712 Can be one of the following:
13713
13714 @table @samp
13715 @item s8x6
13716 @item s16x6
13717 @item s32x6
13718 @item s48x6
13719 @item s8x4
13720 @item s16x4
13721 @item s32x4
13722 @end table
13723
13724 @item nns
13725 Set the number of neurons in predictor neural network.
13726 Can be one of the following:
13727
13728 @table @samp
13729 @item n16
13730 @item n32
13731 @item n64
13732 @item n128
13733 @item n256
13734 @end table
13735
13736 @item qual
13737 Controls the number of different neural network predictions that are blended
13738 together to compute the final output value. Can be @code{fast}, default or
13739 @code{slow}.
13740
13741 @item etype
13742 Set which set of weights to use in the predictor.
13743 Can be one of the following:
13744
13745 @table @samp
13746 @item a
13747 weights trained to minimize absolute error
13748 @item s
13749 weights trained to minimize squared error
13750 @end table
13751
13752 @item pscrn
13753 Controls whether or not the prescreener neural network is used to decide
13754 which pixels should be processed by the predictor neural network and which
13755 can be handled by simple cubic interpolation.
13756 The prescreener is trained to know whether cubic interpolation will be
13757 sufficient for a pixel or whether it should be predicted by the predictor nn.
13758 The computational complexity of the prescreener nn is much less than that of
13759 the predictor nn. Since most pixels can be handled by cubic interpolation,
13760 using the prescreener generally results in much faster processing.
13761 The prescreener is pretty accurate, so the difference between using it and not
13762 using it is almost always unnoticeable.
13763
13764 Can be one of the following:
13765
13766 @table @samp
13767 @item none
13768 @item original
13769 @item new
13770 @end table
13771
13772 Default is @code{new}.
13773
13774 @item fapprox
13775 Set various debugging flags.
13776 @end table
13777
13778 @section noformat
13779
13780 Force libavfilter not to use any of the specified pixel formats for the
13781 input to the next filter.
13782
13783 It accepts the following parameters:
13784 @table @option
13785
13786 @item pix_fmts
13787 A '|'-separated list of pixel format names, such as
13788 pix_fmts=yuv420p|monow|rgb24".
13789
13790 @end table
13791
13792 @subsection Examples
13793
13794 @itemize
13795 @item
13796 Force libavfilter to use a format different from @var{yuv420p} for the
13797 input to the vflip filter:
13798 @example
13799 noformat=pix_fmts=yuv420p,vflip
13800 @end example
13801
13802 @item
13803 Convert the input video to any of the formats not contained in the list:
13804 @example
13805 noformat=yuv420p|yuv444p|yuv410p
13806 @end example
13807 @end itemize
13808
13809 @section noise
13810
13811 Add noise on video input frame.
13812
13813 The filter accepts the following options:
13814
13815 @table @option
13816 @item all_seed
13817 @item c0_seed
13818 @item c1_seed
13819 @item c2_seed
13820 @item c3_seed
13821 Set noise seed for specific pixel component or all pixel components in case
13822 of @var{all_seed}. Default value is @code{123457}.
13823
13824 @item all_strength, alls
13825 @item c0_strength, c0s
13826 @item c1_strength, c1s
13827 @item c2_strength, c2s
13828 @item c3_strength, c3s
13829 Set noise strength for specific pixel component or all pixel components in case
13830 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
13831
13832 @item all_flags, allf
13833 @item c0_flags, c0f
13834 @item c1_flags, c1f
13835 @item c2_flags, c2f
13836 @item c3_flags, c3f
13837 Set pixel component flags or set flags for all components if @var{all_flags}.
13838 Available values for component flags are:
13839 @table @samp
13840 @item a
13841 averaged temporal noise (smoother)
13842 @item p
13843 mix random noise with a (semi)regular pattern
13844 @item t
13845 temporal noise (noise pattern changes between frames)
13846 @item u
13847 uniform noise (gaussian otherwise)
13848 @end table
13849 @end table
13850
13851 @subsection Examples
13852
13853 Add temporal and uniform noise to input video:
13854 @example
13855 noise=alls=20:allf=t+u
13856 @end example
13857
13858 @section normalize
13859
13860 Normalize RGB video (aka histogram stretching, contrast stretching).
13861 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
13862
13863 For each channel of each frame, the filter computes the input range and maps
13864 it linearly to the user-specified output range. The output range defaults
13865 to the full dynamic range from pure black to pure white.
13866
13867 Temporal smoothing can be used on the input range to reduce flickering (rapid
13868 changes in brightness) caused when small dark or bright objects enter or leave
13869 the scene. This is similar to the auto-exposure (automatic gain control) on a
13870 video camera, and, like a video camera, it may cause a period of over- or
13871 under-exposure of the video.
13872
13873 The R,G,B channels can be normalized independently, which may cause some
13874 color shifting, or linked together as a single channel, which prevents
13875 color shifting. Linked normalization preserves hue. Independent normalization
13876 does not, so it can be used to remove some color casts. Independent and linked
13877 normalization can be combined in any ratio.
13878
13879 The normalize filter accepts the following options:
13880
13881 @table @option
13882 @item blackpt
13883 @item whitept
13884 Colors which define the output range. The minimum input value is mapped to
13885 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
13886 The defaults are black and white respectively. Specifying white for
13887 @var{blackpt} and black for @var{whitept} will give color-inverted,
13888 normalized video. Shades of grey can be used to reduce the dynamic range
13889 (contrast). Specifying saturated colors here can create some interesting
13890 effects.
13891
13892 @item smoothing
13893 The number of previous frames to use for temporal smoothing. The input range
13894 of each channel is smoothed using a rolling average over the current frame
13895 and the @var{smoothing} previous frames. The default is 0 (no temporal
13896 smoothing).
13897
13898 @item independence
13899 Controls the ratio of independent (color shifting) channel normalization to
13900 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
13901 independent. Defaults to 1.0 (fully independent).
13902
13903 @item strength
13904 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
13905 expensive no-op. Defaults to 1.0 (full strength).
13906
13907 @end table
13908
13909 @subsection Commands
13910 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
13911 The command accepts the same syntax of the corresponding option.
13912
13913 If the specified expression is not valid, it is kept at its current
13914 value.
13915
13916 @subsection Examples
13917
13918 Stretch video contrast to use the full dynamic range, with no temporal
13919 smoothing; may flicker depending on the source content:
13920 @example
13921 normalize=blackpt=black:whitept=white:smoothing=0
13922 @end example
13923
13924 As above, but with 50 frames of temporal smoothing; flicker should be
13925 reduced, depending on the source content:
13926 @example
13927 normalize=blackpt=black:whitept=white:smoothing=50
13928 @end example
13929
13930 As above, but with hue-preserving linked channel normalization:
13931 @example
13932 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
13933 @end example
13934
13935 As above, but with half strength:
13936 @example
13937 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
13938 @end example
13939
13940 Map the darkest input color to red, the brightest input color to cyan:
13941 @example
13942 normalize=blackpt=red:whitept=cyan
13943 @end example
13944
13945 @section null
13946
13947 Pass the video source unchanged to the output.
13948
13949 @section ocr
13950 Optical Character Recognition
13951
13952 This filter uses Tesseract for optical character recognition. To enable
13953 compilation of this filter, you need to configure FFmpeg with
13954 @code{--enable-libtesseract}.
13955
13956 It accepts the following options:
13957
13958 @table @option
13959 @item datapath
13960 Set datapath to tesseract data. Default is to use whatever was
13961 set at installation.
13962
13963 @item language
13964 Set language, default is "eng".
13965
13966 @item whitelist
13967 Set character whitelist.
13968
13969 @item blacklist
13970 Set character blacklist.
13971 @end table
13972
13973 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
13974 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
13975
13976 @section ocv
13977
13978 Apply a video transform using libopencv.
13979
13980 To enable this filter, install the libopencv library and headers and
13981 configure FFmpeg with @code{--enable-libopencv}.
13982
13983 It accepts the following parameters:
13984
13985 @table @option
13986
13987 @item filter_name
13988 The name of the libopencv filter to apply.
13989
13990 @item filter_params
13991 The parameters to pass to the libopencv filter. If not specified, the default
13992 values are assumed.
13993
13994 @end table
13995
13996 Refer to the official libopencv documentation for more precise
13997 information:
13998 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
13999
14000 Several libopencv filters are supported; see the following subsections.
14001
14002 @anchor{dilate}
14003 @subsection dilate
14004
14005 Dilate an image by using a specific structuring element.
14006 It corresponds to the libopencv function @code{cvDilate}.
14007
14008 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
14009
14010 @var{struct_el} represents a structuring element, and has the syntax:
14011 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
14012
14013 @var{cols} and @var{rows} represent the number of columns and rows of
14014 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
14015 point, and @var{shape} the shape for the structuring element. @var{shape}
14016 must be "rect", "cross", "ellipse", or "custom".
14017
14018 If the value for @var{shape} is "custom", it must be followed by a
14019 string of the form "=@var{filename}". The file with name
14020 @var{filename} is assumed to represent a binary image, with each
14021 printable character corresponding to a bright pixel. When a custom
14022 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
14023 or columns and rows of the read file are assumed instead.
14024
14025 The default value for @var{struct_el} is "3x3+0x0/rect".
14026
14027 @var{nb_iterations} specifies the number of times the transform is
14028 applied to the image, and defaults to 1.
14029
14030 Some examples:
14031 @example
14032 # Use the default values
14033 ocv=dilate
14034
14035 # Dilate using a structuring element with a 5x5 cross, iterating two times
14036 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
14037
14038 # Read the shape from the file diamond.shape, iterating two times.
14039 # The file diamond.shape may contain a pattern of characters like this
14040 #   *
14041 #  ***
14042 # *****
14043 #  ***
14044 #   *
14045 # The specified columns and rows are ignored
14046 # but the anchor point coordinates are not
14047 ocv=dilate:0x0+2x2/custom=diamond.shape|2
14048 @end example
14049
14050 @subsection erode
14051
14052 Erode an image by using a specific structuring element.
14053 It corresponds to the libopencv function @code{cvErode}.
14054
14055 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
14056 with the same syntax and semantics as the @ref{dilate} filter.
14057
14058 @subsection smooth
14059
14060 Smooth the input video.
14061
14062 The filter takes the following parameters:
14063 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
14064
14065 @var{type} is the type of smooth filter to apply, and must be one of
14066 the following values: "blur", "blur_no_scale", "median", "gaussian",
14067 or "bilateral". The default value is "gaussian".
14068
14069 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
14070 depends on the smooth type. @var{param1} and
14071 @var{param2} accept integer positive values or 0. @var{param3} and
14072 @var{param4} accept floating point values.
14073
14074 The default value for @var{param1} is 3. The default value for the
14075 other parameters is 0.
14076
14077 These parameters correspond to the parameters assigned to the
14078 libopencv function @code{cvSmooth}.
14079
14080 @section oscilloscope
14081
14082 2D Video Oscilloscope.
14083
14084 Useful to measure spatial impulse, step responses, chroma delays, etc.
14085
14086 It accepts the following parameters:
14087
14088 @table @option
14089 @item x
14090 Set scope center x position.
14091
14092 @item y
14093 Set scope center y position.
14094
14095 @item s
14096 Set scope size, relative to frame diagonal.
14097
14098 @item t
14099 Set scope tilt/rotation.
14100
14101 @item o
14102 Set trace opacity.
14103
14104 @item tx
14105 Set trace center x position.
14106
14107 @item ty
14108 Set trace center y position.
14109
14110 @item tw
14111 Set trace width, relative to width of frame.
14112
14113 @item th
14114 Set trace height, relative to height of frame.
14115
14116 @item c
14117 Set which components to trace. By default it traces first three components.
14118
14119 @item g
14120 Draw trace grid. By default is enabled.
14121
14122 @item st
14123 Draw some statistics. By default is enabled.
14124
14125 @item sc
14126 Draw scope. By default is enabled.
14127 @end table
14128
14129 @subsection Commands
14130 This filter supports same @ref{commands} as options.
14131 The command accepts the same syntax of the corresponding option.
14132
14133 If the specified expression is not valid, it is kept at its current
14134 value.
14135
14136 @subsection Examples
14137
14138 @itemize
14139 @item
14140 Inspect full first row of video frame.
14141 @example
14142 oscilloscope=x=0.5:y=0:s=1
14143 @end example
14144
14145 @item
14146 Inspect full last row of video frame.
14147 @example
14148 oscilloscope=x=0.5:y=1:s=1
14149 @end example
14150
14151 @item
14152 Inspect full 5th line of video frame of height 1080.
14153 @example
14154 oscilloscope=x=0.5:y=5/1080:s=1
14155 @end example
14156
14157 @item
14158 Inspect full last column of video frame.
14159 @example
14160 oscilloscope=x=1:y=0.5:s=1:t=1
14161 @end example
14162
14163 @end itemize
14164
14165 @anchor{overlay}
14166 @section overlay
14167
14168 Overlay one video on top of another.
14169
14170 It takes two inputs and has one output. The first input is the "main"
14171 video on which the second input is overlaid.
14172
14173 It accepts the following parameters:
14174
14175 A description of the accepted options follows.
14176
14177 @table @option
14178 @item x
14179 @item y
14180 Set the expression for the x and y coordinates of the overlaid video
14181 on the main video. Default value is "0" for both expressions. In case
14182 the expression is invalid, it is set to a huge value (meaning that the
14183 overlay will not be displayed within the output visible area).
14184
14185 @item eof_action
14186 See @ref{framesync}.
14187
14188 @item eval
14189 Set when the expressions for @option{x}, and @option{y} are evaluated.
14190
14191 It accepts the following values:
14192 @table @samp
14193 @item init
14194 only evaluate expressions once during the filter initialization or
14195 when a command is processed
14196
14197 @item frame
14198 evaluate expressions for each incoming frame
14199 @end table
14200
14201 Default value is @samp{frame}.
14202
14203 @item shortest
14204 See @ref{framesync}.
14205
14206 @item format
14207 Set the format for the output video.
14208
14209 It accepts the following values:
14210 @table @samp
14211 @item yuv420
14212 force YUV420 output
14213
14214 @item yuv422
14215 force YUV422 output
14216
14217 @item yuv444
14218 force YUV444 output
14219
14220 @item rgb
14221 force packed RGB output
14222
14223 @item gbrp
14224 force planar RGB output
14225
14226 @item auto
14227 automatically pick format
14228 @end table
14229
14230 Default value is @samp{yuv420}.
14231
14232 @item repeatlast
14233 See @ref{framesync}.
14234
14235 @item alpha
14236 Set format of alpha of the overlaid video, it can be @var{straight} or
14237 @var{premultiplied}. Default is @var{straight}.
14238 @end table
14239
14240 The @option{x}, and @option{y} expressions can contain the following
14241 parameters.
14242
14243 @table @option
14244 @item main_w, W
14245 @item main_h, H
14246 The main input width and height.
14247
14248 @item overlay_w, w
14249 @item overlay_h, h
14250 The overlay input width and height.
14251
14252 @item x
14253 @item y
14254 The computed values for @var{x} and @var{y}. They are evaluated for
14255 each new frame.
14256
14257 @item hsub
14258 @item vsub
14259 horizontal and vertical chroma subsample values of the output
14260 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
14261 @var{vsub} is 1.
14262
14263 @item n
14264 the number of input frame, starting from 0
14265
14266 @item pos
14267 the position in the file of the input frame, NAN if unknown
14268
14269 @item t
14270 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
14271
14272 @end table
14273
14274 This filter also supports the @ref{framesync} options.
14275
14276 Note that the @var{n}, @var{pos}, @var{t} variables are available only
14277 when evaluation is done @emph{per frame}, and will evaluate to NAN
14278 when @option{eval} is set to @samp{init}.
14279
14280 Be aware that frames are taken from each input video in timestamp
14281 order, hence, if their initial timestamps differ, it is a good idea
14282 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
14283 have them begin in the same zero timestamp, as the example for
14284 the @var{movie} filter does.
14285
14286 You can chain together more overlays but you should test the
14287 efficiency of such approach.
14288
14289 @subsection Commands
14290
14291 This filter supports the following commands:
14292 @table @option
14293 @item x
14294 @item y
14295 Modify the x and y of the overlay input.
14296 The command accepts the same syntax of the corresponding option.
14297
14298 If the specified expression is not valid, it is kept at its current
14299 value.
14300 @end table
14301
14302 @subsection Examples
14303
14304 @itemize
14305 @item
14306 Draw the overlay at 10 pixels from the bottom right corner of the main
14307 video:
14308 @example
14309 overlay=main_w-overlay_w-10:main_h-overlay_h-10
14310 @end example
14311
14312 Using named options the example above becomes:
14313 @example
14314 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
14315 @end example
14316
14317 @item
14318 Insert a transparent PNG logo in the bottom left corner of the input,
14319 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
14320 @example
14321 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
14322 @end example
14323
14324 @item
14325 Insert 2 different transparent PNG logos (second logo on bottom
14326 right corner) using the @command{ffmpeg} tool:
14327 @example
14328 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
14329 @end example
14330
14331 @item
14332 Add a transparent color layer on top of the main video; @code{WxH}
14333 must specify the size of the main input to the overlay filter:
14334 @example
14335 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
14336 @end example
14337
14338 @item
14339 Play an original video and a filtered version (here with the deshake
14340 filter) side by side using the @command{ffplay} tool:
14341 @example
14342 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
14343 @end example
14344
14345 The above command is the same as:
14346 @example
14347 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
14348 @end example
14349
14350 @item
14351 Make a sliding overlay appearing from the left to the right top part of the
14352 screen starting since time 2:
14353 @example
14354 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
14355 @end example
14356
14357 @item
14358 Compose output by putting two input videos side to side:
14359 @example
14360 ffmpeg -i left.avi -i right.avi -filter_complex "
14361 nullsrc=size=200x100 [background];
14362 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
14363 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
14364 [background][left]       overlay=shortest=1       [background+left];
14365 [background+left][right] overlay=shortest=1:x=100 [left+right]
14366 "
14367 @end example
14368
14369 @item
14370 Mask 10-20 seconds of a video by applying the delogo filter to a section
14371 @example
14372 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
14373 -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]'
14374 masked.avi
14375 @end example
14376
14377 @item
14378 Chain several overlays in cascade:
14379 @example
14380 nullsrc=s=200x200 [bg];
14381 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
14382 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
14383 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
14384 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
14385 [in3] null,       [mid2] overlay=100:100 [out0]
14386 @end example
14387
14388 @end itemize
14389
14390 @section owdenoise
14391
14392 Apply Overcomplete Wavelet denoiser.
14393
14394 The filter accepts the following options:
14395
14396 @table @option
14397 @item depth
14398 Set depth.
14399
14400 Larger depth values will denoise lower frequency components more, but
14401 slow down filtering.
14402
14403 Must be an int in the range 8-16, default is @code{8}.
14404
14405 @item luma_strength, ls
14406 Set luma strength.
14407
14408 Must be a double value in the range 0-1000, default is @code{1.0}.
14409
14410 @item chroma_strength, cs
14411 Set chroma strength.
14412
14413 Must be a double value in the range 0-1000, default is @code{1.0}.
14414 @end table
14415
14416 @anchor{pad}
14417 @section pad
14418
14419 Add paddings to the input image, and place the original input at the
14420 provided @var{x}, @var{y} coordinates.
14421
14422 It accepts the following parameters:
14423
14424 @table @option
14425 @item width, w
14426 @item height, h
14427 Specify an expression for the size of the output image with the
14428 paddings added. If the value for @var{width} or @var{height} is 0, the
14429 corresponding input size is used for the output.
14430
14431 The @var{width} expression can reference the value set by the
14432 @var{height} expression, and vice versa.
14433
14434 The default value of @var{width} and @var{height} is 0.
14435
14436 @item x
14437 @item y
14438 Specify the offsets to place the input image at within the padded area,
14439 with respect to the top/left border of the output image.
14440
14441 The @var{x} expression can reference the value set by the @var{y}
14442 expression, and vice versa.
14443
14444 The default value of @var{x} and @var{y} is 0.
14445
14446 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
14447 so the input image is centered on the padded area.
14448
14449 @item color
14450 Specify the color of the padded area. For the syntax of this option,
14451 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
14452 manual,ffmpeg-utils}.
14453
14454 The default value of @var{color} is "black".
14455
14456 @item eval
14457 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
14458
14459 It accepts the following values:
14460
14461 @table @samp
14462 @item init
14463 Only evaluate expressions once during the filter initialization or when
14464 a command is processed.
14465
14466 @item frame
14467 Evaluate expressions for each incoming frame.
14468
14469 @end table
14470
14471 Default value is @samp{init}.
14472
14473 @item aspect
14474 Pad to aspect instead to a resolution.
14475
14476 @end table
14477
14478 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
14479 options are expressions containing the following constants:
14480
14481 @table @option
14482 @item in_w
14483 @item in_h
14484 The input video width and height.
14485
14486 @item iw
14487 @item ih
14488 These are the same as @var{in_w} and @var{in_h}.
14489
14490 @item out_w
14491 @item out_h
14492 The output width and height (the size of the padded area), as
14493 specified by the @var{width} and @var{height} expressions.
14494
14495 @item ow
14496 @item oh
14497 These are the same as @var{out_w} and @var{out_h}.
14498
14499 @item x
14500 @item y
14501 The x and y offsets as specified by the @var{x} and @var{y}
14502 expressions, or NAN if not yet specified.
14503
14504 @item a
14505 same as @var{iw} / @var{ih}
14506
14507 @item sar
14508 input sample aspect ratio
14509
14510 @item dar
14511 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
14512
14513 @item hsub
14514 @item vsub
14515 The horizontal and vertical chroma subsample values. For example for the
14516 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14517 @end table
14518
14519 @subsection Examples
14520
14521 @itemize
14522 @item
14523 Add paddings with the color "violet" to the input video. The output video
14524 size is 640x480, and the top-left corner of the input video is placed at
14525 column 0, row 40
14526 @example
14527 pad=640:480:0:40:violet
14528 @end example
14529
14530 The example above is equivalent to the following command:
14531 @example
14532 pad=width=640:height=480:x=0:y=40:color=violet
14533 @end example
14534
14535 @item
14536 Pad the input to get an output with dimensions increased by 3/2,
14537 and put the input video at the center of the padded area:
14538 @example
14539 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
14540 @end example
14541
14542 @item
14543 Pad the input to get a squared output with size equal to the maximum
14544 value between the input width and height, and put the input video at
14545 the center of the padded area:
14546 @example
14547 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
14548 @end example
14549
14550 @item
14551 Pad the input to get a final w/h ratio of 16:9:
14552 @example
14553 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
14554 @end example
14555
14556 @item
14557 In case of anamorphic video, in order to set the output display aspect
14558 correctly, it is necessary to use @var{sar} in the expression,
14559 according to the relation:
14560 @example
14561 (ih * X / ih) * sar = output_dar
14562 X = output_dar / sar
14563 @end example
14564
14565 Thus the previous example needs to be modified to:
14566 @example
14567 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
14568 @end example
14569
14570 @item
14571 Double the output size and put the input video in the bottom-right
14572 corner of the output padded area:
14573 @example
14574 pad="2*iw:2*ih:ow-iw:oh-ih"
14575 @end example
14576 @end itemize
14577
14578 @anchor{palettegen}
14579 @section palettegen
14580
14581 Generate one palette for a whole video stream.
14582
14583 It accepts the following options:
14584
14585 @table @option
14586 @item max_colors
14587 Set the maximum number of colors to quantize in the palette.
14588 Note: the palette will still contain 256 colors; the unused palette entries
14589 will be black.
14590
14591 @item reserve_transparent
14592 Create a palette of 255 colors maximum and reserve the last one for
14593 transparency. Reserving the transparency color is useful for GIF optimization.
14594 If not set, the maximum of colors in the palette will be 256. You probably want
14595 to disable this option for a standalone image.
14596 Set by default.
14597
14598 @item transparency_color
14599 Set the color that will be used as background for transparency.
14600
14601 @item stats_mode
14602 Set statistics mode.
14603
14604 It accepts the following values:
14605 @table @samp
14606 @item full
14607 Compute full frame histograms.
14608 @item diff
14609 Compute histograms only for the part that differs from previous frame. This
14610 might be relevant to give more importance to the moving part of your input if
14611 the background is static.
14612 @item single
14613 Compute new histogram for each frame.
14614 @end table
14615
14616 Default value is @var{full}.
14617 @end table
14618
14619 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
14620 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
14621 color quantization of the palette. This information is also visible at
14622 @var{info} logging level.
14623
14624 @subsection Examples
14625
14626 @itemize
14627 @item
14628 Generate a representative palette of a given video using @command{ffmpeg}:
14629 @example
14630 ffmpeg -i input.mkv -vf palettegen palette.png
14631 @end example
14632 @end itemize
14633
14634 @section paletteuse
14635
14636 Use a palette to downsample an input video stream.
14637
14638 The filter takes two inputs: one video stream and a palette. The palette must
14639 be a 256 pixels image.
14640
14641 It accepts the following options:
14642
14643 @table @option
14644 @item dither
14645 Select dithering mode. Available algorithms are:
14646 @table @samp
14647 @item bayer
14648 Ordered 8x8 bayer dithering (deterministic)
14649 @item heckbert
14650 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
14651 Note: this dithering is sometimes considered "wrong" and is included as a
14652 reference.
14653 @item floyd_steinberg
14654 Floyd and Steingberg dithering (error diffusion)
14655 @item sierra2
14656 Frankie Sierra dithering v2 (error diffusion)
14657 @item sierra2_4a
14658 Frankie Sierra dithering v2 "Lite" (error diffusion)
14659 @end table
14660
14661 Default is @var{sierra2_4a}.
14662
14663 @item bayer_scale
14664 When @var{bayer} dithering is selected, this option defines the scale of the
14665 pattern (how much the crosshatch pattern is visible). A low value means more
14666 visible pattern for less banding, and higher value means less visible pattern
14667 at the cost of more banding.
14668
14669 The option must be an integer value in the range [0,5]. Default is @var{2}.
14670
14671 @item diff_mode
14672 If set, define the zone to process
14673
14674 @table @samp
14675 @item rectangle
14676 Only the changing rectangle will be reprocessed. This is similar to GIF
14677 cropping/offsetting compression mechanism. This option can be useful for speed
14678 if only a part of the image is changing, and has use cases such as limiting the
14679 scope of the error diffusal @option{dither} to the rectangle that bounds the
14680 moving scene (it leads to more deterministic output if the scene doesn't change
14681 much, and as a result less moving noise and better GIF compression).
14682 @end table
14683
14684 Default is @var{none}.
14685
14686 @item new
14687 Take new palette for each output frame.
14688
14689 @item alpha_threshold
14690 Sets the alpha threshold for transparency. Alpha values above this threshold
14691 will be treated as completely opaque, and values below this threshold will be
14692 treated as completely transparent.
14693
14694 The option must be an integer value in the range [0,255]. Default is @var{128}.
14695 @end table
14696
14697 @subsection Examples
14698
14699 @itemize
14700 @item
14701 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
14702 using @command{ffmpeg}:
14703 @example
14704 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
14705 @end example
14706 @end itemize
14707
14708 @section perspective
14709
14710 Correct perspective of video not recorded perpendicular to the screen.
14711
14712 A description of the accepted parameters follows.
14713
14714 @table @option
14715 @item x0
14716 @item y0
14717 @item x1
14718 @item y1
14719 @item x2
14720 @item y2
14721 @item x3
14722 @item y3
14723 Set coordinates expression for top left, top right, bottom left and bottom right corners.
14724 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
14725 If the @code{sense} option is set to @code{source}, then the specified points will be sent
14726 to the corners of the destination. If the @code{sense} option is set to @code{destination},
14727 then the corners of the source will be sent to the specified coordinates.
14728
14729 The expressions can use the following variables:
14730
14731 @table @option
14732 @item W
14733 @item H
14734 the width and height of video frame.
14735 @item in
14736 Input frame count.
14737 @item on
14738 Output frame count.
14739 @end table
14740
14741 @item interpolation
14742 Set interpolation for perspective correction.
14743
14744 It accepts the following values:
14745 @table @samp
14746 @item linear
14747 @item cubic
14748 @end table
14749
14750 Default value is @samp{linear}.
14751
14752 @item sense
14753 Set interpretation of coordinate options.
14754
14755 It accepts the following values:
14756 @table @samp
14757 @item 0, source
14758
14759 Send point in the source specified by the given coordinates to
14760 the corners of the destination.
14761
14762 @item 1, destination
14763
14764 Send the corners of the source to the point in the destination specified
14765 by the given coordinates.
14766
14767 Default value is @samp{source}.
14768 @end table
14769
14770 @item eval
14771 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
14772
14773 It accepts the following values:
14774 @table @samp
14775 @item init
14776 only evaluate expressions once during the filter initialization or
14777 when a command is processed
14778
14779 @item frame
14780 evaluate expressions for each incoming frame
14781 @end table
14782
14783 Default value is @samp{init}.
14784 @end table
14785
14786 @section phase
14787
14788 Delay interlaced video by one field time so that the field order changes.
14789
14790 The intended use is to fix PAL movies that have been captured with the
14791 opposite field order to the film-to-video transfer.
14792
14793 A description of the accepted parameters follows.
14794
14795 @table @option
14796 @item mode
14797 Set phase mode.
14798
14799 It accepts the following values:
14800 @table @samp
14801 @item t
14802 Capture field order top-first, transfer bottom-first.
14803 Filter will delay the bottom field.
14804
14805 @item b
14806 Capture field order bottom-first, transfer top-first.
14807 Filter will delay the top field.
14808
14809 @item p
14810 Capture and transfer with the same field order. This mode only exists
14811 for the documentation of the other options to refer to, but if you
14812 actually select it, the filter will faithfully do nothing.
14813
14814 @item a
14815 Capture field order determined automatically by field flags, transfer
14816 opposite.
14817 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
14818 basis using field flags. If no field information is available,
14819 then this works just like @samp{u}.
14820
14821 @item u
14822 Capture unknown or varying, transfer opposite.
14823 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
14824 analyzing the images and selecting the alternative that produces best
14825 match between the fields.
14826
14827 @item T
14828 Capture top-first, transfer unknown or varying.
14829 Filter selects among @samp{t} and @samp{p} using image analysis.
14830
14831 @item B
14832 Capture bottom-first, transfer unknown or varying.
14833 Filter selects among @samp{b} and @samp{p} using image analysis.
14834
14835 @item A
14836 Capture determined by field flags, transfer unknown or varying.
14837 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
14838 image analysis. If no field information is available, then this works just
14839 like @samp{U}. This is the default mode.
14840
14841 @item U
14842 Both capture and transfer unknown or varying.
14843 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
14844 @end table
14845 @end table
14846
14847 @section photosensitivity
14848 Reduce various flashes in video, so to help users with epilepsy.
14849
14850 It accepts the following options:
14851 @table @option
14852 @item frames, f
14853 Set how many frames to use when filtering. Default is 30.
14854
14855 @item threshold, t
14856 Set detection threshold factor. Default is 1.
14857 Lower is stricter.
14858
14859 @item skip
14860 Set how many pixels to skip when sampling frames. Default is 1.
14861 Allowed range is from 1 to 1024.
14862
14863 @item bypass
14864 Leave frames unchanged. Default is disabled.
14865 @end table
14866
14867 @section pixdesctest
14868
14869 Pixel format descriptor test filter, mainly useful for internal
14870 testing. The output video should be equal to the input video.
14871
14872 For example:
14873 @example
14874 format=monow, pixdesctest
14875 @end example
14876
14877 can be used to test the monowhite pixel format descriptor definition.
14878
14879 @section pixscope
14880
14881 Display sample values of color channels. Mainly useful for checking color
14882 and levels. Minimum supported resolution is 640x480.
14883
14884 The filters accept the following options:
14885
14886 @table @option
14887 @item x
14888 Set scope X position, relative offset on X axis.
14889
14890 @item y
14891 Set scope Y position, relative offset on Y axis.
14892
14893 @item w
14894 Set scope width.
14895
14896 @item h
14897 Set scope height.
14898
14899 @item o
14900 Set window opacity. This window also holds statistics about pixel area.
14901
14902 @item wx
14903 Set window X position, relative offset on X axis.
14904
14905 @item wy
14906 Set window Y position, relative offset on Y axis.
14907 @end table
14908
14909 @section pp
14910
14911 Enable the specified chain of postprocessing subfilters using libpostproc. This
14912 library should be automatically selected with a GPL build (@code{--enable-gpl}).
14913 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
14914 Each subfilter and some options have a short and a long name that can be used
14915 interchangeably, i.e. dr/dering are the same.
14916
14917 The filters accept the following options:
14918
14919 @table @option
14920 @item subfilters
14921 Set postprocessing subfilters string.
14922 @end table
14923
14924 All subfilters share common options to determine their scope:
14925
14926 @table @option
14927 @item a/autoq
14928 Honor the quality commands for this subfilter.
14929
14930 @item c/chrom
14931 Do chrominance filtering, too (default).
14932
14933 @item y/nochrom
14934 Do luminance filtering only (no chrominance).
14935
14936 @item n/noluma
14937 Do chrominance filtering only (no luminance).
14938 @end table
14939
14940 These options can be appended after the subfilter name, separated by a '|'.
14941
14942 Available subfilters are:
14943
14944 @table @option
14945 @item hb/hdeblock[|difference[|flatness]]
14946 Horizontal deblocking filter
14947 @table @option
14948 @item difference
14949 Difference factor where higher values mean more deblocking (default: @code{32}).
14950 @item flatness
14951 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14952 @end table
14953
14954 @item vb/vdeblock[|difference[|flatness]]
14955 Vertical deblocking filter
14956 @table @option
14957 @item difference
14958 Difference factor where higher values mean more deblocking (default: @code{32}).
14959 @item flatness
14960 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14961 @end table
14962
14963 @item ha/hadeblock[|difference[|flatness]]
14964 Accurate horizontal deblocking filter
14965 @table @option
14966 @item difference
14967 Difference factor where higher values mean more deblocking (default: @code{32}).
14968 @item flatness
14969 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14970 @end table
14971
14972 @item va/vadeblock[|difference[|flatness]]
14973 Accurate vertical deblocking filter
14974 @table @option
14975 @item difference
14976 Difference factor where higher values mean more deblocking (default: @code{32}).
14977 @item flatness
14978 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14979 @end table
14980 @end table
14981
14982 The horizontal and vertical deblocking filters share the difference and
14983 flatness values so you cannot set different horizontal and vertical
14984 thresholds.
14985
14986 @table @option
14987 @item h1/x1hdeblock
14988 Experimental horizontal deblocking filter
14989
14990 @item v1/x1vdeblock
14991 Experimental vertical deblocking filter
14992
14993 @item dr/dering
14994 Deringing filter
14995
14996 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
14997 @table @option
14998 @item threshold1
14999 larger -> stronger filtering
15000 @item threshold2
15001 larger -> stronger filtering
15002 @item threshold3
15003 larger -> stronger filtering
15004 @end table
15005
15006 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15007 @table @option
15008 @item f/fullyrange
15009 Stretch luminance to @code{0-255}.
15010 @end table
15011
15012 @item lb/linblenddeint
15013 Linear blend deinterlacing filter that deinterlaces the given block by
15014 filtering all lines with a @code{(1 2 1)} filter.
15015
15016 @item li/linipoldeint
15017 Linear interpolating deinterlacing filter that deinterlaces the given block by
15018 linearly interpolating every second line.
15019
15020 @item ci/cubicipoldeint
15021 Cubic interpolating deinterlacing filter deinterlaces the given block by
15022 cubically interpolating every second line.
15023
15024 @item md/mediandeint
15025 Median deinterlacing filter that deinterlaces the given block by applying a
15026 median filter to every second line.
15027
15028 @item fd/ffmpegdeint
15029 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
15030 second line with a @code{(-1 4 2 4 -1)} filter.
15031
15032 @item l5/lowpass5
15033 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
15034 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
15035
15036 @item fq/forceQuant[|quantizer]
15037 Overrides the quantizer table from the input with the constant quantizer you
15038 specify.
15039 @table @option
15040 @item quantizer
15041 Quantizer to use
15042 @end table
15043
15044 @item de/default
15045 Default pp filter combination (@code{hb|a,vb|a,dr|a})
15046
15047 @item fa/fast
15048 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
15049
15050 @item ac
15051 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
15052 @end table
15053
15054 @subsection Examples
15055
15056 @itemize
15057 @item
15058 Apply horizontal and vertical deblocking, deringing and automatic
15059 brightness/contrast:
15060 @example
15061 pp=hb/vb/dr/al
15062 @end example
15063
15064 @item
15065 Apply default filters without brightness/contrast correction:
15066 @example
15067 pp=de/-al
15068 @end example
15069
15070 @item
15071 Apply default filters and temporal denoiser:
15072 @example
15073 pp=default/tmpnoise|1|2|3
15074 @end example
15075
15076 @item
15077 Apply deblocking on luminance only, and switch vertical deblocking on or off
15078 automatically depending on available CPU time:
15079 @example
15080 pp=hb|y/vb|a
15081 @end example
15082 @end itemize
15083
15084 @section pp7
15085 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
15086 similar to spp = 6 with 7 point DCT, where only the center sample is
15087 used after IDCT.
15088
15089 The filter accepts the following options:
15090
15091 @table @option
15092 @item qp
15093 Force a constant quantization parameter. It accepts an integer in range
15094 0 to 63. If not set, the filter will use the QP from the video stream
15095 (if available).
15096
15097 @item mode
15098 Set thresholding mode. Available modes are:
15099
15100 @table @samp
15101 @item hard
15102 Set hard thresholding.
15103 @item soft
15104 Set soft thresholding (better de-ringing effect, but likely blurrier).
15105 @item medium
15106 Set medium thresholding (good results, default).
15107 @end table
15108 @end table
15109
15110 @section premultiply
15111 Apply alpha premultiply effect to input video stream using first plane
15112 of second stream as alpha.
15113
15114 Both streams must have same dimensions and same pixel format.
15115
15116 The filter accepts the following option:
15117
15118 @table @option
15119 @item planes
15120 Set which planes will be processed, unprocessed planes will be copied.
15121 By default value 0xf, all planes will be processed.
15122
15123 @item inplace
15124 Do not require 2nd input for processing, instead use alpha plane from input stream.
15125 @end table
15126
15127 @section prewitt
15128 Apply prewitt operator to input video stream.
15129
15130 The filter accepts the following option:
15131
15132 @table @option
15133 @item planes
15134 Set which planes will be processed, unprocessed planes will be copied.
15135 By default value 0xf, all planes will be processed.
15136
15137 @item scale
15138 Set value which will be multiplied with filtered result.
15139
15140 @item delta
15141 Set value which will be added to filtered result.
15142 @end table
15143
15144 @section pseudocolor
15145
15146 Alter frame colors in video with pseudocolors.
15147
15148 This filter accepts the following options:
15149
15150 @table @option
15151 @item c0
15152 set pixel first component expression
15153
15154 @item c1
15155 set pixel second component expression
15156
15157 @item c2
15158 set pixel third component expression
15159
15160 @item c3
15161 set pixel fourth component expression, corresponds to the alpha component
15162
15163 @item i
15164 set component to use as base for altering colors
15165 @end table
15166
15167 Each of them specifies the expression to use for computing the lookup table for
15168 the corresponding pixel component values.
15169
15170 The expressions can contain the following constants and functions:
15171
15172 @table @option
15173 @item w
15174 @item h
15175 The input width and height.
15176
15177 @item val
15178 The input value for the pixel component.
15179
15180 @item ymin, umin, vmin, amin
15181 The minimum allowed component value.
15182
15183 @item ymax, umax, vmax, amax
15184 The maximum allowed component value.
15185 @end table
15186
15187 All expressions default to "val".
15188
15189 @subsection Examples
15190
15191 @itemize
15192 @item
15193 Change too high luma values to gradient:
15194 @example
15195 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'"
15196 @end example
15197 @end itemize
15198
15199 @section psnr
15200
15201 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
15202 Ratio) between two input videos.
15203
15204 This filter takes in input two input videos, the first input is
15205 considered the "main" source and is passed unchanged to the
15206 output. The second input is used as a "reference" video for computing
15207 the PSNR.
15208
15209 Both video inputs must have the same resolution and pixel format for
15210 this filter to work correctly. Also it assumes that both inputs
15211 have the same number of frames, which are compared one by one.
15212
15213 The obtained average PSNR is printed through the logging system.
15214
15215 The filter stores the accumulated MSE (mean squared error) of each
15216 frame, and at the end of the processing it is averaged across all frames
15217 equally, and the following formula is applied to obtain the PSNR:
15218
15219 @example
15220 PSNR = 10*log10(MAX^2/MSE)
15221 @end example
15222
15223 Where MAX is the average of the maximum values of each component of the
15224 image.
15225
15226 The description of the accepted parameters follows.
15227
15228 @table @option
15229 @item stats_file, f
15230 If specified the filter will use the named file to save the PSNR of
15231 each individual frame. When filename equals "-" the data is sent to
15232 standard output.
15233
15234 @item stats_version
15235 Specifies which version of the stats file format to use. Details of
15236 each format are written below.
15237 Default value is 1.
15238
15239 @item stats_add_max
15240 Determines whether the max value is output to the stats log.
15241 Default value is 0.
15242 Requires stats_version >= 2. If this is set and stats_version < 2,
15243 the filter will return an error.
15244 @end table
15245
15246 This filter also supports the @ref{framesync} options.
15247
15248 The file printed if @var{stats_file} is selected, contains a sequence of
15249 key/value pairs of the form @var{key}:@var{value} for each compared
15250 couple of frames.
15251
15252 If a @var{stats_version} greater than 1 is specified, a header line precedes
15253 the list of per-frame-pair stats, with key value pairs following the frame
15254 format with the following parameters:
15255
15256 @table @option
15257 @item psnr_log_version
15258 The version of the log file format. Will match @var{stats_version}.
15259
15260 @item fields
15261 A comma separated list of the per-frame-pair parameters included in
15262 the log.
15263 @end table
15264
15265 A description of each shown per-frame-pair parameter follows:
15266
15267 @table @option
15268 @item n
15269 sequential number of the input frame, starting from 1
15270
15271 @item mse_avg
15272 Mean Square Error pixel-by-pixel average difference of the compared
15273 frames, averaged over all the image components.
15274
15275 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
15276 Mean Square Error pixel-by-pixel average difference of the compared
15277 frames for the component specified by the suffix.
15278
15279 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
15280 Peak Signal to Noise ratio of the compared frames for the component
15281 specified by the suffix.
15282
15283 @item max_avg, max_y, max_u, max_v
15284 Maximum allowed value for each channel, and average over all
15285 channels.
15286 @end table
15287
15288 @subsection Examples
15289 @itemize
15290 @item
15291 For example:
15292 @example
15293 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
15294 [main][ref] psnr="stats_file=stats.log" [out]
15295 @end example
15296
15297 On this example the input file being processed is compared with the
15298 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
15299 is stored in @file{stats.log}.
15300
15301 @item
15302 Another example with different containers:
15303 @example
15304 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 -
15305 @end example
15306 @end itemize
15307
15308 @anchor{pullup}
15309 @section pullup
15310
15311 Pulldown reversal (inverse telecine) filter, capable of handling mixed
15312 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
15313 content.
15314
15315 The pullup filter is designed to take advantage of future context in making
15316 its decisions. This filter is stateless in the sense that it does not lock
15317 onto a pattern to follow, but it instead looks forward to the following
15318 fields in order to identify matches and rebuild progressive frames.
15319
15320 To produce content with an even framerate, insert the fps filter after
15321 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
15322 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
15323
15324 The filter accepts the following options:
15325
15326 @table @option
15327 @item jl
15328 @item jr
15329 @item jt
15330 @item jb
15331 These options set the amount of "junk" to ignore at the left, right, top, and
15332 bottom of the image, respectively. Left and right are in units of 8 pixels,
15333 while top and bottom are in units of 2 lines.
15334 The default is 8 pixels on each side.
15335
15336 @item sb
15337 Set the strict breaks. Setting this option to 1 will reduce the chances of
15338 filter generating an occasional mismatched frame, but it may also cause an
15339 excessive number of frames to be dropped during high motion sequences.
15340 Conversely, setting it to -1 will make filter match fields more easily.
15341 This may help processing of video where there is slight blurring between
15342 the fields, but may also cause there to be interlaced frames in the output.
15343 Default value is @code{0}.
15344
15345 @item mp
15346 Set the metric plane to use. It accepts the following values:
15347 @table @samp
15348 @item l
15349 Use luma plane.
15350
15351 @item u
15352 Use chroma blue plane.
15353
15354 @item v
15355 Use chroma red plane.
15356 @end table
15357
15358 This option may be set to use chroma plane instead of the default luma plane
15359 for doing filter's computations. This may improve accuracy on very clean
15360 source material, but more likely will decrease accuracy, especially if there
15361 is chroma noise (rainbow effect) or any grayscale video.
15362 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
15363 load and make pullup usable in realtime on slow machines.
15364 @end table
15365
15366 For best results (without duplicated frames in the output file) it is
15367 necessary to change the output frame rate. For example, to inverse
15368 telecine NTSC input:
15369 @example
15370 ffmpeg -i input -vf pullup -r 24000/1001 ...
15371 @end example
15372
15373 @section qp
15374
15375 Change video quantization parameters (QP).
15376
15377 The filter accepts the following option:
15378
15379 @table @option
15380 @item qp
15381 Set expression for quantization parameter.
15382 @end table
15383
15384 The expression is evaluated through the eval API and can contain, among others,
15385 the following constants:
15386
15387 @table @var
15388 @item known
15389 1 if index is not 129, 0 otherwise.
15390
15391 @item qp
15392 Sequential index starting from -129 to 128.
15393 @end table
15394
15395 @subsection Examples
15396
15397 @itemize
15398 @item
15399 Some equation like:
15400 @example
15401 qp=2+2*sin(PI*qp)
15402 @end example
15403 @end itemize
15404
15405 @section random
15406
15407 Flush video frames from internal cache of frames into a random order.
15408 No frame is discarded.
15409 Inspired by @ref{frei0r} nervous filter.
15410
15411 @table @option
15412 @item frames
15413 Set size in number of frames of internal cache, in range from @code{2} to
15414 @code{512}. Default is @code{30}.
15415
15416 @item seed
15417 Set seed for random number generator, must be an integer included between
15418 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15419 less than @code{0}, the filter will try to use a good random seed on a
15420 best effort basis.
15421 @end table
15422
15423 @section readeia608
15424
15425 Read closed captioning (EIA-608) information from the top lines of a video frame.
15426
15427 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
15428 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
15429 with EIA-608 data (starting from 0). A description of each metadata value follows:
15430
15431 @table @option
15432 @item lavfi.readeia608.X.cc
15433 The two bytes stored as EIA-608 data (printed in hexadecimal).
15434
15435 @item lavfi.readeia608.X.line
15436 The number of the line on which the EIA-608 data was identified and read.
15437 @end table
15438
15439 This filter accepts the following options:
15440
15441 @table @option
15442 @item scan_min
15443 Set the line to start scanning for EIA-608 data. Default is @code{0}.
15444
15445 @item scan_max
15446 Set the line to end scanning for EIA-608 data. Default is @code{29}.
15447
15448 @item spw
15449 Set the ratio of width reserved for sync code detection.
15450 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
15451
15452 @item chp
15453 Enable checking the parity bit. In the event of a parity error, the filter will output
15454 @code{0x00} for that character. Default is false.
15455
15456 @item lp
15457 Lowpass lines prior to further processing. Default is enabled.
15458 @end table
15459
15460 @subsection Examples
15461
15462 @itemize
15463 @item
15464 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
15465 @example
15466 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
15467 @end example
15468 @end itemize
15469
15470 @section readvitc
15471
15472 Read vertical interval timecode (VITC) information from the top lines of a
15473 video frame.
15474
15475 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
15476 timecode value, if a valid timecode has been detected. Further metadata key
15477 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
15478 timecode data has been found or not.
15479
15480 This filter accepts the following options:
15481
15482 @table @option
15483 @item scan_max
15484 Set the maximum number of lines to scan for VITC data. If the value is set to
15485 @code{-1} the full video frame is scanned. Default is @code{45}.
15486
15487 @item thr_b
15488 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
15489 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
15490
15491 @item thr_w
15492 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
15493 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
15494 @end table
15495
15496 @subsection Examples
15497
15498 @itemize
15499 @item
15500 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
15501 draw @code{--:--:--:--} as a placeholder:
15502 @example
15503 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
15504 @end example
15505 @end itemize
15506
15507 @section remap
15508
15509 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
15510
15511 Destination pixel at position (X, Y) will be picked from source (x, y) position
15512 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
15513 value for pixel will be used for destination pixel.
15514
15515 Xmap and Ymap input video streams must be of same dimensions. Output video stream
15516 will have Xmap/Ymap video stream dimensions.
15517 Xmap and Ymap input video streams are 16bit depth, single channel.
15518
15519 @table @option
15520 @item format
15521 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
15522 Default is @code{color}.
15523
15524 @item fill
15525 Specify the color of the unmapped pixels. For the syntax of this option,
15526 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15527 manual,ffmpeg-utils}. Default color is @code{black}.
15528 @end table
15529
15530 @section removegrain
15531
15532 The removegrain filter is a spatial denoiser for progressive video.
15533
15534 @table @option
15535 @item m0
15536 Set mode for the first plane.
15537
15538 @item m1
15539 Set mode for the second plane.
15540
15541 @item m2
15542 Set mode for the third plane.
15543
15544 @item m3
15545 Set mode for the fourth plane.
15546 @end table
15547
15548 Range of mode is from 0 to 24. Description of each mode follows:
15549
15550 @table @var
15551 @item 0
15552 Leave input plane unchanged. Default.
15553
15554 @item 1
15555 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
15556
15557 @item 2
15558 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
15559
15560 @item 3
15561 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
15562
15563 @item 4
15564 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
15565 This is equivalent to a median filter.
15566
15567 @item 5
15568 Line-sensitive clipping giving the minimal change.
15569
15570 @item 6
15571 Line-sensitive clipping, intermediate.
15572
15573 @item 7
15574 Line-sensitive clipping, intermediate.
15575
15576 @item 8
15577 Line-sensitive clipping, intermediate.
15578
15579 @item 9
15580 Line-sensitive clipping on a line where the neighbours pixels are the closest.
15581
15582 @item 10
15583 Replaces the target pixel with the closest neighbour.
15584
15585 @item 11
15586 [1 2 1] horizontal and vertical kernel blur.
15587
15588 @item 12
15589 Same as mode 11.
15590
15591 @item 13
15592 Bob mode, interpolates top field from the line where the neighbours
15593 pixels are the closest.
15594
15595 @item 14
15596 Bob mode, interpolates bottom field from the line where the neighbours
15597 pixels are the closest.
15598
15599 @item 15
15600 Bob mode, interpolates top field. Same as 13 but with a more complicated
15601 interpolation formula.
15602
15603 @item 16
15604 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
15605 interpolation formula.
15606
15607 @item 17
15608 Clips the pixel with the minimum and maximum of respectively the maximum and
15609 minimum of each pair of opposite neighbour pixels.
15610
15611 @item 18
15612 Line-sensitive clipping using opposite neighbours whose greatest distance from
15613 the current pixel is minimal.
15614
15615 @item 19
15616 Replaces the pixel with the average of its 8 neighbours.
15617
15618 @item 20
15619 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
15620
15621 @item 21
15622 Clips pixels using the averages of opposite neighbour.
15623
15624 @item 22
15625 Same as mode 21 but simpler and faster.
15626
15627 @item 23
15628 Small edge and halo removal, but reputed useless.
15629
15630 @item 24
15631 Similar as 23.
15632 @end table
15633
15634 @section removelogo
15635
15636 Suppress a TV station logo, using an image file to determine which
15637 pixels comprise the logo. It works by filling in the pixels that
15638 comprise the logo with neighboring pixels.
15639
15640 The filter accepts the following options:
15641
15642 @table @option
15643 @item filename, f
15644 Set the filter bitmap file, which can be any image format supported by
15645 libavformat. The width and height of the image file must match those of the
15646 video stream being processed.
15647 @end table
15648
15649 Pixels in the provided bitmap image with a value of zero are not
15650 considered part of the logo, non-zero pixels are considered part of
15651 the logo. If you use white (255) for the logo and black (0) for the
15652 rest, you will be safe. For making the filter bitmap, it is
15653 recommended to take a screen capture of a black frame with the logo
15654 visible, and then using a threshold filter followed by the erode
15655 filter once or twice.
15656
15657 If needed, little splotches can be fixed manually. Remember that if
15658 logo pixels are not covered, the filter quality will be much
15659 reduced. Marking too many pixels as part of the logo does not hurt as
15660 much, but it will increase the amount of blurring needed to cover over
15661 the image and will destroy more information than necessary, and extra
15662 pixels will slow things down on a large logo.
15663
15664 @section repeatfields
15665
15666 This filter uses the repeat_field flag from the Video ES headers and hard repeats
15667 fields based on its value.
15668
15669 @section reverse
15670
15671 Reverse a video clip.
15672
15673 Warning: This filter requires memory to buffer the entire clip, so trimming
15674 is suggested.
15675
15676 @subsection Examples
15677
15678 @itemize
15679 @item
15680 Take the first 5 seconds of a clip, and reverse it.
15681 @example
15682 trim=end=5,reverse
15683 @end example
15684 @end itemize
15685
15686 @section rgbashift
15687 Shift R/G/B/A pixels horizontally and/or vertically.
15688
15689 The filter accepts the following options:
15690 @table @option
15691 @item rh
15692 Set amount to shift red horizontally.
15693 @item rv
15694 Set amount to shift red vertically.
15695 @item gh
15696 Set amount to shift green horizontally.
15697 @item gv
15698 Set amount to shift green vertically.
15699 @item bh
15700 Set amount to shift blue horizontally.
15701 @item bv
15702 Set amount to shift blue vertically.
15703 @item ah
15704 Set amount to shift alpha horizontally.
15705 @item av
15706 Set amount to shift alpha vertically.
15707 @item edge
15708 Set edge mode, can be @var{smear}, default, or @var{warp}.
15709 @end table
15710
15711 @subsection Commands
15712
15713 This filter supports the all above options as @ref{commands}.
15714
15715 @section roberts
15716 Apply roberts cross operator to input video stream.
15717
15718 The filter accepts the following option:
15719
15720 @table @option
15721 @item planes
15722 Set which planes will be processed, unprocessed planes will be copied.
15723 By default value 0xf, all planes will be processed.
15724
15725 @item scale
15726 Set value which will be multiplied with filtered result.
15727
15728 @item delta
15729 Set value which will be added to filtered result.
15730 @end table
15731
15732 @section rotate
15733
15734 Rotate video by an arbitrary angle expressed in radians.
15735
15736 The filter accepts the following options:
15737
15738 A description of the optional parameters follows.
15739 @table @option
15740 @item angle, a
15741 Set an expression for the angle by which to rotate the input video
15742 clockwise, expressed as a number of radians. A negative value will
15743 result in a counter-clockwise rotation. By default it is set to "0".
15744
15745 This expression is evaluated for each frame.
15746
15747 @item out_w, ow
15748 Set the output width expression, default value is "iw".
15749 This expression is evaluated just once during configuration.
15750
15751 @item out_h, oh
15752 Set the output height expression, default value is "ih".
15753 This expression is evaluated just once during configuration.
15754
15755 @item bilinear
15756 Enable bilinear interpolation if set to 1, a value of 0 disables
15757 it. Default value is 1.
15758
15759 @item fillcolor, c
15760 Set the color used to fill the output area not covered by the rotated
15761 image. For the general syntax of this option, check the
15762 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15763 If the special value "none" is selected then no
15764 background is printed (useful for example if the background is never shown).
15765
15766 Default value is "black".
15767 @end table
15768
15769 The expressions for the angle and the output size can contain the
15770 following constants and functions:
15771
15772 @table @option
15773 @item n
15774 sequential number of the input frame, starting from 0. It is always NAN
15775 before the first frame is filtered.
15776
15777 @item t
15778 time in seconds of the input frame, it is set to 0 when the filter is
15779 configured. It is always NAN before the first frame is filtered.
15780
15781 @item hsub
15782 @item vsub
15783 horizontal and vertical chroma subsample values. For example for the
15784 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15785
15786 @item in_w, iw
15787 @item in_h, ih
15788 the input video width and height
15789
15790 @item out_w, ow
15791 @item out_h, oh
15792 the output width and height, that is the size of the padded area as
15793 specified by the @var{width} and @var{height} expressions
15794
15795 @item rotw(a)
15796 @item roth(a)
15797 the minimal width/height required for completely containing the input
15798 video rotated by @var{a} radians.
15799
15800 These are only available when computing the @option{out_w} and
15801 @option{out_h} expressions.
15802 @end table
15803
15804 @subsection Examples
15805
15806 @itemize
15807 @item
15808 Rotate the input by PI/6 radians clockwise:
15809 @example
15810 rotate=PI/6
15811 @end example
15812
15813 @item
15814 Rotate the input by PI/6 radians counter-clockwise:
15815 @example
15816 rotate=-PI/6
15817 @end example
15818
15819 @item
15820 Rotate the input by 45 degrees clockwise:
15821 @example
15822 rotate=45*PI/180
15823 @end example
15824
15825 @item
15826 Apply a constant rotation with period T, starting from an angle of PI/3:
15827 @example
15828 rotate=PI/3+2*PI*t/T
15829 @end example
15830
15831 @item
15832 Make the input video rotation oscillating with a period of T
15833 seconds and an amplitude of A radians:
15834 @example
15835 rotate=A*sin(2*PI/T*t)
15836 @end example
15837
15838 @item
15839 Rotate the video, output size is chosen so that the whole rotating
15840 input video is always completely contained in the output:
15841 @example
15842 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
15843 @end example
15844
15845 @item
15846 Rotate the video, reduce the output size so that no background is ever
15847 shown:
15848 @example
15849 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
15850 @end example
15851 @end itemize
15852
15853 @subsection Commands
15854
15855 The filter supports the following commands:
15856
15857 @table @option
15858 @item a, angle
15859 Set the angle expression.
15860 The command accepts the same syntax of the corresponding option.
15861
15862 If the specified expression is not valid, it is kept at its current
15863 value.
15864 @end table
15865
15866 @section sab
15867
15868 Apply Shape Adaptive Blur.
15869
15870 The filter accepts the following options:
15871
15872 @table @option
15873 @item luma_radius, lr
15874 Set luma blur filter strength, must be a value in range 0.1-4.0, default
15875 value is 1.0. A greater value will result in a more blurred image, and
15876 in slower processing.
15877
15878 @item luma_pre_filter_radius, lpfr
15879 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
15880 value is 1.0.
15881
15882 @item luma_strength, ls
15883 Set luma maximum difference between pixels to still be considered, must
15884 be a value in the 0.1-100.0 range, default value is 1.0.
15885
15886 @item chroma_radius, cr
15887 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
15888 greater value will result in a more blurred image, and in slower
15889 processing.
15890
15891 @item chroma_pre_filter_radius, cpfr
15892 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
15893
15894 @item chroma_strength, cs
15895 Set chroma maximum difference between pixels to still be considered,
15896 must be a value in the -0.9-100.0 range.
15897 @end table
15898
15899 Each chroma option value, if not explicitly specified, is set to the
15900 corresponding luma option value.
15901
15902 @anchor{scale}
15903 @section scale
15904
15905 Scale (resize) the input video, using the libswscale library.
15906
15907 The scale filter forces the output display aspect ratio to be the same
15908 of the input, by changing the output sample aspect ratio.
15909
15910 If the input image format is different from the format requested by
15911 the next filter, the scale filter will convert the input to the
15912 requested format.
15913
15914 @subsection Options
15915 The filter accepts the following options, or any of the options
15916 supported by the libswscale scaler.
15917
15918 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
15919 the complete list of scaler options.
15920
15921 @table @option
15922 @item width, w
15923 @item height, h
15924 Set the output video dimension expression. Default value is the input
15925 dimension.
15926
15927 If the @var{width} or @var{w} value is 0, the input width is used for
15928 the output. If the @var{height} or @var{h} value is 0, the input height
15929 is used for the output.
15930
15931 If one and only one of the values is -n with n >= 1, the scale filter
15932 will use a value that maintains the aspect ratio of the input image,
15933 calculated from the other specified dimension. After that it will,
15934 however, make sure that the calculated dimension is divisible by n and
15935 adjust the value if necessary.
15936
15937 If both values are -n with n >= 1, the behavior will be identical to
15938 both values being set to 0 as previously detailed.
15939
15940 See below for the list of accepted constants for use in the dimension
15941 expression.
15942
15943 @item eval
15944 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
15945
15946 @table @samp
15947 @item init
15948 Only evaluate expressions once during the filter initialization or when a command is processed.
15949
15950 @item frame
15951 Evaluate expressions for each incoming frame.
15952
15953 @end table
15954
15955 Default value is @samp{init}.
15956
15957
15958 @item interl
15959 Set the interlacing mode. It accepts the following values:
15960
15961 @table @samp
15962 @item 1
15963 Force interlaced aware scaling.
15964
15965 @item 0
15966 Do not apply interlaced scaling.
15967
15968 @item -1
15969 Select interlaced aware scaling depending on whether the source frames
15970 are flagged as interlaced or not.
15971 @end table
15972
15973 Default value is @samp{0}.
15974
15975 @item flags
15976 Set libswscale scaling flags. See
15977 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15978 complete list of values. If not explicitly specified the filter applies
15979 the default flags.
15980
15981
15982 @item param0, param1
15983 Set libswscale input parameters for scaling algorithms that need them. See
15984 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15985 complete documentation. If not explicitly specified the filter applies
15986 empty parameters.
15987
15988
15989
15990 @item size, s
15991 Set the video size. For the syntax of this option, check the
15992 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15993
15994 @item in_color_matrix
15995 @item out_color_matrix
15996 Set in/output YCbCr color space type.
15997
15998 This allows the autodetected value to be overridden as well as allows forcing
15999 a specific value used for the output and encoder.
16000
16001 If not specified, the color space type depends on the pixel format.
16002
16003 Possible values:
16004
16005 @table @samp
16006 @item auto
16007 Choose automatically.
16008
16009 @item bt709
16010 Format conforming to International Telecommunication Union (ITU)
16011 Recommendation BT.709.
16012
16013 @item fcc
16014 Set color space conforming to the United States Federal Communications
16015 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16016
16017 @item bt601
16018 @item bt470
16019 @item smpte170m
16020 Set color space conforming to:
16021
16022 @itemize
16023 @item
16024 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16025
16026 @item
16027 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16028
16029 @item
16030 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16031
16032 @end itemize
16033
16034 @item smpte240m
16035 Set color space conforming to SMPTE ST 240:1999.
16036
16037 @item bt2020
16038 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16039 @end table
16040
16041 @item in_range
16042 @item out_range
16043 Set in/output YCbCr sample range.
16044
16045 This allows the autodetected value to be overridden as well as allows forcing
16046 a specific value used for the output and encoder. If not specified, the
16047 range depends on the pixel format. Possible values:
16048
16049 @table @samp
16050 @item auto/unknown
16051 Choose automatically.
16052
16053 @item jpeg/full/pc
16054 Set full range (0-255 in case of 8-bit luma).
16055
16056 @item mpeg/limited/tv
16057 Set "MPEG" range (16-235 in case of 8-bit luma).
16058 @end table
16059
16060 @item force_original_aspect_ratio
16061 Enable decreasing or increasing output video width or height if necessary to
16062 keep the original aspect ratio. Possible values:
16063
16064 @table @samp
16065 @item disable
16066 Scale the video as specified and disable this feature.
16067
16068 @item decrease
16069 The output video dimensions will automatically be decreased if needed.
16070
16071 @item increase
16072 The output video dimensions will automatically be increased if needed.
16073
16074 @end table
16075
16076 One useful instance of this option is that when you know a specific device's
16077 maximum allowed resolution, you can use this to limit the output video to
16078 that, while retaining the aspect ratio. For example, device A allows
16079 1280x720 playback, and your video is 1920x800. Using this option (set it to
16080 decrease) and specifying 1280x720 to the command line makes the output
16081 1280x533.
16082
16083 Please note that this is a different thing than specifying -1 for @option{w}
16084 or @option{h}, you still need to specify the output resolution for this option
16085 to work.
16086
16087 @item force_divisible_by
16088 Ensures that both the output dimensions, width and height, are divisible by the
16089 given integer when used together with @option{force_original_aspect_ratio}. This
16090 works similar to using @code{-n} in the @option{w} and @option{h} options.
16091
16092 This option respects the value set for @option{force_original_aspect_ratio},
16093 increasing or decreasing the resolution accordingly. The video's aspect ratio
16094 may be slightly modified.
16095
16096 This option can be handy if you need to have a video fit within or exceed
16097 a defined resolution using @option{force_original_aspect_ratio} but also have
16098 encoder restrictions on width or height divisibility.
16099
16100 @end table
16101
16102 The values of the @option{w} and @option{h} options are expressions
16103 containing the following constants:
16104
16105 @table @var
16106 @item in_w
16107 @item in_h
16108 The input width and height
16109
16110 @item iw
16111 @item ih
16112 These are the same as @var{in_w} and @var{in_h}.
16113
16114 @item out_w
16115 @item out_h
16116 The output (scaled) width and height
16117
16118 @item ow
16119 @item oh
16120 These are the same as @var{out_w} and @var{out_h}
16121
16122 @item a
16123 The same as @var{iw} / @var{ih}
16124
16125 @item sar
16126 input sample aspect ratio
16127
16128 @item dar
16129 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16130
16131 @item hsub
16132 @item vsub
16133 horizontal and vertical input chroma subsample values. For example for the
16134 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16135
16136 @item ohsub
16137 @item ovsub
16138 horizontal and vertical output chroma subsample values. For example for the
16139 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16140
16141 @item n
16142 The (sequential) number of the input frame, starting from 0.
16143 Only available with @code{eval=frame}.
16144
16145 @item t
16146 The presentation timestamp of the input frame, expressed as a number of
16147 seconds. Only available with @code{eval=frame}.
16148
16149 @item pos
16150 The position (byte offset) of the frame in the input stream, or NaN if
16151 this information is unavailable and/or meaningless (for example in case of synthetic video).
16152 Only available with @code{eval=frame}.
16153 @end table
16154
16155 @subsection Examples
16156
16157 @itemize
16158 @item
16159 Scale the input video to a size of 200x100
16160 @example
16161 scale=w=200:h=100
16162 @end example
16163
16164 This is equivalent to:
16165 @example
16166 scale=200:100
16167 @end example
16168
16169 or:
16170 @example
16171 scale=200x100
16172 @end example
16173
16174 @item
16175 Specify a size abbreviation for the output size:
16176 @example
16177 scale=qcif
16178 @end example
16179
16180 which can also be written as:
16181 @example
16182 scale=size=qcif
16183 @end example
16184
16185 @item
16186 Scale the input to 2x:
16187 @example
16188 scale=w=2*iw:h=2*ih
16189 @end example
16190
16191 @item
16192 The above is the same as:
16193 @example
16194 scale=2*in_w:2*in_h
16195 @end example
16196
16197 @item
16198 Scale the input to 2x with forced interlaced scaling:
16199 @example
16200 scale=2*iw:2*ih:interl=1
16201 @end example
16202
16203 @item
16204 Scale the input to half size:
16205 @example
16206 scale=w=iw/2:h=ih/2
16207 @end example
16208
16209 @item
16210 Increase the width, and set the height to the same size:
16211 @example
16212 scale=3/2*iw:ow
16213 @end example
16214
16215 @item
16216 Seek Greek harmony:
16217 @example
16218 scale=iw:1/PHI*iw
16219 scale=ih*PHI:ih
16220 @end example
16221
16222 @item
16223 Increase the height, and set the width to 3/2 of the height:
16224 @example
16225 scale=w=3/2*oh:h=3/5*ih
16226 @end example
16227
16228 @item
16229 Increase the size, making the size a multiple of the chroma
16230 subsample values:
16231 @example
16232 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
16233 @end example
16234
16235 @item
16236 Increase the width to a maximum of 500 pixels,
16237 keeping the same aspect ratio as the input:
16238 @example
16239 scale=w='min(500\, iw*3/2):h=-1'
16240 @end example
16241
16242 @item
16243 Make pixels square by combining scale and setsar:
16244 @example
16245 scale='trunc(ih*dar):ih',setsar=1/1
16246 @end example
16247
16248 @item
16249 Make pixels square by combining scale and setsar,
16250 making sure the resulting resolution is even (required by some codecs):
16251 @example
16252 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
16253 @end example
16254 @end itemize
16255
16256 @subsection Commands
16257
16258 This filter supports the following commands:
16259 @table @option
16260 @item width, w
16261 @item height, h
16262 Set the output video dimension expression.
16263 The command accepts the same syntax of the corresponding option.
16264
16265 If the specified expression is not valid, it is kept at its current
16266 value.
16267 @end table
16268
16269 @section scale_npp
16270
16271 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
16272 format conversion on CUDA video frames. Setting the output width and height
16273 works in the same way as for the @var{scale} filter.
16274
16275 The following additional options are accepted:
16276 @table @option
16277 @item format
16278 The pixel format of the output CUDA frames. If set to the string "same" (the
16279 default), the input format will be kept. Note that automatic format negotiation
16280 and conversion is not yet supported for hardware frames
16281
16282 @item interp_algo
16283 The interpolation algorithm used for resizing. One of the following:
16284 @table @option
16285 @item nn
16286 Nearest neighbour.
16287
16288 @item linear
16289 @item cubic
16290 @item cubic2p_bspline
16291 2-parameter cubic (B=1, C=0)
16292
16293 @item cubic2p_catmullrom
16294 2-parameter cubic (B=0, C=1/2)
16295
16296 @item cubic2p_b05c03
16297 2-parameter cubic (B=1/2, C=3/10)
16298
16299 @item super
16300 Supersampling
16301
16302 @item lanczos
16303 @end table
16304
16305 @item force_original_aspect_ratio
16306 Enable decreasing or increasing output video width or height if necessary to
16307 keep the original aspect ratio. Possible values:
16308
16309 @table @samp
16310 @item disable
16311 Scale the video as specified and disable this feature.
16312
16313 @item decrease
16314 The output video dimensions will automatically be decreased if needed.
16315
16316 @item increase
16317 The output video dimensions will automatically be increased if needed.
16318
16319 @end table
16320
16321 One useful instance of this option is that when you know a specific device's
16322 maximum allowed resolution, you can use this to limit the output video to
16323 that, while retaining the aspect ratio. For example, device A allows
16324 1280x720 playback, and your video is 1920x800. Using this option (set it to
16325 decrease) and specifying 1280x720 to the command line makes the output
16326 1280x533.
16327
16328 Please note that this is a different thing than specifying -1 for @option{w}
16329 or @option{h}, you still need to specify the output resolution for this option
16330 to work.
16331
16332 @item force_divisible_by
16333 Ensures that both the output dimensions, width and height, are divisible by the
16334 given integer when used together with @option{force_original_aspect_ratio}. This
16335 works similar to using @code{-n} in the @option{w} and @option{h} options.
16336
16337 This option respects the value set for @option{force_original_aspect_ratio},
16338 increasing or decreasing the resolution accordingly. The video's aspect ratio
16339 may be slightly modified.
16340
16341 This option can be handy if you need to have a video fit within or exceed
16342 a defined resolution using @option{force_original_aspect_ratio} but also have
16343 encoder restrictions on width or height divisibility.
16344
16345 @end table
16346
16347 @section scale2ref
16348
16349 Scale (resize) the input video, based on a reference video.
16350
16351 See the scale filter for available options, scale2ref supports the same but
16352 uses the reference video instead of the main input as basis. scale2ref also
16353 supports the following additional constants for the @option{w} and
16354 @option{h} options:
16355
16356 @table @var
16357 @item main_w
16358 @item main_h
16359 The main input video's width and height
16360
16361 @item main_a
16362 The same as @var{main_w} / @var{main_h}
16363
16364 @item main_sar
16365 The main input video's sample aspect ratio
16366
16367 @item main_dar, mdar
16368 The main input video's display aspect ratio. Calculated from
16369 @code{(main_w / main_h) * main_sar}.
16370
16371 @item main_hsub
16372 @item main_vsub
16373 The main input video's horizontal and vertical chroma subsample values.
16374 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
16375 is 1.
16376
16377 @item main_n
16378 The (sequential) number of the main input frame, starting from 0.
16379 Only available with @code{eval=frame}.
16380
16381 @item main_t
16382 The presentation timestamp of the main input frame, expressed as a number of
16383 seconds. Only available with @code{eval=frame}.
16384
16385 @item main_pos
16386 The position (byte offset) of the frame in the main input stream, or NaN if
16387 this information is unavailable and/or meaningless (for example in case of synthetic video).
16388 Only available with @code{eval=frame}.
16389 @end table
16390
16391 @subsection Examples
16392
16393 @itemize
16394 @item
16395 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
16396 @example
16397 'scale2ref[b][a];[a][b]overlay'
16398 @end example
16399
16400 @item
16401 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
16402 @example
16403 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
16404 @end example
16405 @end itemize
16406
16407 @subsection Commands
16408
16409 This filter supports the following commands:
16410 @table @option
16411 @item width, w
16412 @item height, h
16413 Set the output video dimension expression.
16414 The command accepts the same syntax of the corresponding option.
16415
16416 If the specified expression is not valid, it is kept at its current
16417 value.
16418 @end table
16419
16420 @section scroll
16421 Scroll input video horizontally and/or vertically by constant speed.
16422
16423 The filter accepts the following options:
16424 @table @option
16425 @item horizontal, h
16426 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
16427 Negative values changes scrolling direction.
16428
16429 @item vertical, v
16430 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
16431 Negative values changes scrolling direction.
16432
16433 @item hpos
16434 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
16435
16436 @item vpos
16437 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
16438 @end table
16439
16440 @subsection Commands
16441
16442 This filter supports the following @ref{commands}:
16443 @table @option
16444 @item horizontal, h
16445 Set the horizontal scrolling speed.
16446 @item vertical, v
16447 Set the vertical scrolling speed.
16448 @end table
16449
16450 @anchor{selectivecolor}
16451 @section selectivecolor
16452
16453 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
16454 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
16455 by the "purity" of the color (that is, how saturated it already is).
16456
16457 This filter is similar to the Adobe Photoshop Selective Color tool.
16458
16459 The filter accepts the following options:
16460
16461 @table @option
16462 @item correction_method
16463 Select color correction method.
16464
16465 Available values are:
16466 @table @samp
16467 @item absolute
16468 Specified adjustments are applied "as-is" (added/subtracted to original pixel
16469 component value).
16470 @item relative
16471 Specified adjustments are relative to the original component value.
16472 @end table
16473 Default is @code{absolute}.
16474 @item reds
16475 Adjustments for red pixels (pixels where the red component is the maximum)
16476 @item yellows
16477 Adjustments for yellow pixels (pixels where the blue component is the minimum)
16478 @item greens
16479 Adjustments for green pixels (pixels where the green component is the maximum)
16480 @item cyans
16481 Adjustments for cyan pixels (pixels where the red component is the minimum)
16482 @item blues
16483 Adjustments for blue pixels (pixels where the blue component is the maximum)
16484 @item magentas
16485 Adjustments for magenta pixels (pixels where the green component is the minimum)
16486 @item whites
16487 Adjustments for white pixels (pixels where all components are greater than 128)
16488 @item neutrals
16489 Adjustments for all pixels except pure black and pure white
16490 @item blacks
16491 Adjustments for black pixels (pixels where all components are lesser than 128)
16492 @item psfile
16493 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
16494 @end table
16495
16496 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
16497 4 space separated floating point adjustment values in the [-1,1] range,
16498 respectively to adjust the amount of cyan, magenta, yellow and black for the
16499 pixels of its range.
16500
16501 @subsection Examples
16502
16503 @itemize
16504 @item
16505 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
16506 increase magenta by 27% in blue areas:
16507 @example
16508 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
16509 @end example
16510
16511 @item
16512 Use a Photoshop selective color preset:
16513 @example
16514 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
16515 @end example
16516 @end itemize
16517
16518 @anchor{separatefields}
16519 @section separatefields
16520
16521 The @code{separatefields} takes a frame-based video input and splits
16522 each frame into its components fields, producing a new half height clip
16523 with twice the frame rate and twice the frame count.
16524
16525 This filter use field-dominance information in frame to decide which
16526 of each pair of fields to place first in the output.
16527 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
16528
16529 @section setdar, setsar
16530
16531 The @code{setdar} filter sets the Display Aspect Ratio for the filter
16532 output video.
16533
16534 This is done by changing the specified Sample (aka Pixel) Aspect
16535 Ratio, according to the following equation:
16536 @example
16537 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
16538 @end example
16539
16540 Keep in mind that the @code{setdar} filter does not modify the pixel
16541 dimensions of the video frame. Also, the display aspect ratio set by
16542 this filter may be changed by later filters in the filterchain,
16543 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
16544 applied.
16545
16546 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
16547 the filter output video.
16548
16549 Note that as a consequence of the application of this filter, the
16550 output display aspect ratio will change according to the equation
16551 above.
16552
16553 Keep in mind that the sample aspect ratio set by the @code{setsar}
16554 filter may be changed by later filters in the filterchain, e.g. if
16555 another "setsar" or a "setdar" filter is applied.
16556
16557 It accepts the following parameters:
16558
16559 @table @option
16560 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
16561 Set the aspect ratio used by the filter.
16562
16563 The parameter can be a floating point number string, an expression, or
16564 a string of the form @var{num}:@var{den}, where @var{num} and
16565 @var{den} are the numerator and denominator of the aspect ratio. If
16566 the parameter is not specified, it is assumed the value "0".
16567 In case the form "@var{num}:@var{den}" is used, the @code{:} character
16568 should be escaped.
16569
16570 @item max
16571 Set the maximum integer value to use for expressing numerator and
16572 denominator when reducing the expressed aspect ratio to a rational.
16573 Default value is @code{100}.
16574
16575 @end table
16576
16577 The parameter @var{sar} is an expression containing
16578 the following constants:
16579
16580 @table @option
16581 @item E, PI, PHI
16582 These are approximated values for the mathematical constants e
16583 (Euler's number), pi (Greek pi), and phi (the golden ratio).
16584
16585 @item w, h
16586 The input width and height.
16587
16588 @item a
16589 These are the same as @var{w} / @var{h}.
16590
16591 @item sar
16592 The input sample aspect ratio.
16593
16594 @item dar
16595 The input display aspect ratio. It is the same as
16596 (@var{w} / @var{h}) * @var{sar}.
16597
16598 @item hsub, vsub
16599 Horizontal and vertical chroma subsample values. For example, for the
16600 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16601 @end table
16602
16603 @subsection Examples
16604
16605 @itemize
16606
16607 @item
16608 To change the display aspect ratio to 16:9, specify one of the following:
16609 @example
16610 setdar=dar=1.77777
16611 setdar=dar=16/9
16612 @end example
16613
16614 @item
16615 To change the sample aspect ratio to 10:11, specify:
16616 @example
16617 setsar=sar=10/11
16618 @end example
16619
16620 @item
16621 To set a display aspect ratio of 16:9, and specify a maximum integer value of
16622 1000 in the aspect ratio reduction, use the command:
16623 @example
16624 setdar=ratio=16/9:max=1000
16625 @end example
16626
16627 @end itemize
16628
16629 @anchor{setfield}
16630 @section setfield
16631
16632 Force field for the output video frame.
16633
16634 The @code{setfield} filter marks the interlace type field for the
16635 output frames. It does not change the input frame, but only sets the
16636 corresponding property, which affects how the frame is treated by
16637 following filters (e.g. @code{fieldorder} or @code{yadif}).
16638
16639 The filter accepts the following options:
16640
16641 @table @option
16642
16643 @item mode
16644 Available values are:
16645
16646 @table @samp
16647 @item auto
16648 Keep the same field property.
16649
16650 @item bff
16651 Mark the frame as bottom-field-first.
16652
16653 @item tff
16654 Mark the frame as top-field-first.
16655
16656 @item prog
16657 Mark the frame as progressive.
16658 @end table
16659 @end table
16660
16661 @anchor{setparams}
16662 @section setparams
16663
16664 Force frame parameter for the output video frame.
16665
16666 The @code{setparams} filter marks interlace and color range for the
16667 output frames. It does not change the input frame, but only sets the
16668 corresponding property, which affects how the frame is treated by
16669 filters/encoders.
16670
16671 @table @option
16672 @item field_mode
16673 Available values are:
16674
16675 @table @samp
16676 @item auto
16677 Keep the same field property (default).
16678
16679 @item bff
16680 Mark the frame as bottom-field-first.
16681
16682 @item tff
16683 Mark the frame as top-field-first.
16684
16685 @item prog
16686 Mark the frame as progressive.
16687 @end table
16688
16689 @item range
16690 Available values are:
16691
16692 @table @samp
16693 @item auto
16694 Keep the same color range property (default).
16695
16696 @item unspecified, unknown
16697 Mark the frame as unspecified color range.
16698
16699 @item limited, tv, mpeg
16700 Mark the frame as limited range.
16701
16702 @item full, pc, jpeg
16703 Mark the frame as full range.
16704 @end table
16705
16706 @item color_primaries
16707 Set the color primaries.
16708 Available values are:
16709
16710 @table @samp
16711 @item auto
16712 Keep the same color primaries property (default).
16713
16714 @item bt709
16715 @item unknown
16716 @item bt470m
16717 @item bt470bg
16718 @item smpte170m
16719 @item smpte240m
16720 @item film
16721 @item bt2020
16722 @item smpte428
16723 @item smpte431
16724 @item smpte432
16725 @item jedec-p22
16726 @end table
16727
16728 @item color_trc
16729 Set the color transfer.
16730 Available values are:
16731
16732 @table @samp
16733 @item auto
16734 Keep the same color trc property (default).
16735
16736 @item bt709
16737 @item unknown
16738 @item bt470m
16739 @item bt470bg
16740 @item smpte170m
16741 @item smpte240m
16742 @item linear
16743 @item log100
16744 @item log316
16745 @item iec61966-2-4
16746 @item bt1361e
16747 @item iec61966-2-1
16748 @item bt2020-10
16749 @item bt2020-12
16750 @item smpte2084
16751 @item smpte428
16752 @item arib-std-b67
16753 @end table
16754
16755 @item colorspace
16756 Set the colorspace.
16757 Available values are:
16758
16759 @table @samp
16760 @item auto
16761 Keep the same colorspace property (default).
16762
16763 @item gbr
16764 @item bt709
16765 @item unknown
16766 @item fcc
16767 @item bt470bg
16768 @item smpte170m
16769 @item smpte240m
16770 @item ycgco
16771 @item bt2020nc
16772 @item bt2020c
16773 @item smpte2085
16774 @item chroma-derived-nc
16775 @item chroma-derived-c
16776 @item ictcp
16777 @end table
16778 @end table
16779
16780 @section showinfo
16781
16782 Show a line containing various information for each input video frame.
16783 The input video is not modified.
16784
16785 This filter supports the following options:
16786
16787 @table @option
16788 @item checksum
16789 Calculate checksums of each plane. By default enabled.
16790 @end table
16791
16792 The shown line contains a sequence of key/value pairs of the form
16793 @var{key}:@var{value}.
16794
16795 The following values are shown in the output:
16796
16797 @table @option
16798 @item n
16799 The (sequential) number of the input frame, starting from 0.
16800
16801 @item pts
16802 The Presentation TimeStamp of the input frame, expressed as a number of
16803 time base units. The time base unit depends on the filter input pad.
16804
16805 @item pts_time
16806 The Presentation TimeStamp of the input frame, expressed as a number of
16807 seconds.
16808
16809 @item pos
16810 The position of the frame in the input stream, or -1 if this information is
16811 unavailable and/or meaningless (for example in case of synthetic video).
16812
16813 @item fmt
16814 The pixel format name.
16815
16816 @item sar
16817 The sample aspect ratio of the input frame, expressed in the form
16818 @var{num}/@var{den}.
16819
16820 @item s
16821 The size of the input frame. For the syntax of this option, check the
16822 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16823
16824 @item i
16825 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
16826 for bottom field first).
16827
16828 @item iskey
16829 This is 1 if the frame is a key frame, 0 otherwise.
16830
16831 @item type
16832 The picture type of the input frame ("I" for an I-frame, "P" for a
16833 P-frame, "B" for a B-frame, or "?" for an unknown type).
16834 Also refer to the documentation of the @code{AVPictureType} enum and of
16835 the @code{av_get_picture_type_char} function defined in
16836 @file{libavutil/avutil.h}.
16837
16838 @item checksum
16839 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
16840
16841 @item plane_checksum
16842 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
16843 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
16844
16845 @item mean
16846 The mean value of pixels in each plane of the input frame, expressed in the form
16847 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
16848
16849 @item stdev
16850 The standard deviation of pixel values in each plane of the input frame, expressed
16851 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
16852
16853 @end table
16854
16855 @section showpalette
16856
16857 Displays the 256 colors palette of each frame. This filter is only relevant for
16858 @var{pal8} pixel format frames.
16859
16860 It accepts the following option:
16861
16862 @table @option
16863 @item s
16864 Set the size of the box used to represent one palette color entry. Default is
16865 @code{30} (for a @code{30x30} pixel box).
16866 @end table
16867
16868 @section shuffleframes
16869
16870 Reorder and/or duplicate and/or drop video frames.
16871
16872 It accepts the following parameters:
16873
16874 @table @option
16875 @item mapping
16876 Set the destination indexes of input frames.
16877 This is space or '|' separated list of indexes that maps input frames to output
16878 frames. Number of indexes also sets maximal value that each index may have.
16879 '-1' index have special meaning and that is to drop frame.
16880 @end table
16881
16882 The first frame has the index 0. The default is to keep the input unchanged.
16883
16884 @subsection Examples
16885
16886 @itemize
16887 @item
16888 Swap second and third frame of every three frames of the input:
16889 @example
16890 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
16891 @end example
16892
16893 @item
16894 Swap 10th and 1st frame of every ten frames of the input:
16895 @example
16896 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
16897 @end example
16898 @end itemize
16899
16900 @section shuffleplanes
16901
16902 Reorder and/or duplicate video planes.
16903
16904 It accepts the following parameters:
16905
16906 @table @option
16907
16908 @item map0
16909 The index of the input plane to be used as the first output plane.
16910
16911 @item map1
16912 The index of the input plane to be used as the second output plane.
16913
16914 @item map2
16915 The index of the input plane to be used as the third output plane.
16916
16917 @item map3
16918 The index of the input plane to be used as the fourth output plane.
16919
16920 @end table
16921
16922 The first plane has the index 0. The default is to keep the input unchanged.
16923
16924 @subsection Examples
16925
16926 @itemize
16927 @item
16928 Swap the second and third planes of the input:
16929 @example
16930 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
16931 @end example
16932 @end itemize
16933
16934 @anchor{signalstats}
16935 @section signalstats
16936 Evaluate various visual metrics that assist in determining issues associated
16937 with the digitization of analog video media.
16938
16939 By default the filter will log these metadata values:
16940
16941 @table @option
16942 @item YMIN
16943 Display the minimal Y value contained within the input frame. Expressed in
16944 range of [0-255].
16945
16946 @item YLOW
16947 Display the Y value at the 10% percentile within the input frame. Expressed in
16948 range of [0-255].
16949
16950 @item YAVG
16951 Display the average Y value within the input frame. Expressed in range of
16952 [0-255].
16953
16954 @item YHIGH
16955 Display the Y value at the 90% percentile within the input frame. Expressed in
16956 range of [0-255].
16957
16958 @item YMAX
16959 Display the maximum Y value contained within the input frame. Expressed in
16960 range of [0-255].
16961
16962 @item UMIN
16963 Display the minimal U value contained within the input frame. Expressed in
16964 range of [0-255].
16965
16966 @item ULOW
16967 Display the U value at the 10% percentile within the input frame. Expressed in
16968 range of [0-255].
16969
16970 @item UAVG
16971 Display the average U value within the input frame. Expressed in range of
16972 [0-255].
16973
16974 @item UHIGH
16975 Display the U value at the 90% percentile within the input frame. Expressed in
16976 range of [0-255].
16977
16978 @item UMAX
16979 Display the maximum U value contained within the input frame. Expressed in
16980 range of [0-255].
16981
16982 @item VMIN
16983 Display the minimal V value contained within the input frame. Expressed in
16984 range of [0-255].
16985
16986 @item VLOW
16987 Display the V value at the 10% percentile within the input frame. Expressed in
16988 range of [0-255].
16989
16990 @item VAVG
16991 Display the average V value within the input frame. Expressed in range of
16992 [0-255].
16993
16994 @item VHIGH
16995 Display the V value at the 90% percentile within the input frame. Expressed in
16996 range of [0-255].
16997
16998 @item VMAX
16999 Display the maximum V value contained within the input frame. Expressed in
17000 range of [0-255].
17001
17002 @item SATMIN
17003 Display the minimal saturation value contained within the input frame.
17004 Expressed in range of [0-~181.02].
17005
17006 @item SATLOW
17007 Display the saturation value at the 10% percentile within the input frame.
17008 Expressed in range of [0-~181.02].
17009
17010 @item SATAVG
17011 Display the average saturation value within the input frame. Expressed in range
17012 of [0-~181.02].
17013
17014 @item SATHIGH
17015 Display the saturation value at the 90% percentile within the input frame.
17016 Expressed in range of [0-~181.02].
17017
17018 @item SATMAX
17019 Display the maximum saturation value contained within the input frame.
17020 Expressed in range of [0-~181.02].
17021
17022 @item HUEMED
17023 Display the median value for hue within the input frame. Expressed in range of
17024 [0-360].
17025
17026 @item HUEAVG
17027 Display the average value for hue within the input frame. Expressed in range of
17028 [0-360].
17029
17030 @item YDIF
17031 Display the average of sample value difference between all values of the Y
17032 plane in the current frame and corresponding values of the previous input frame.
17033 Expressed in range of [0-255].
17034
17035 @item UDIF
17036 Display the average of sample value difference between all values of the U
17037 plane in the current frame and corresponding values of the previous input frame.
17038 Expressed in range of [0-255].
17039
17040 @item VDIF
17041 Display the average of sample value difference between all values of the V
17042 plane in the current frame and corresponding values of the previous input frame.
17043 Expressed in range of [0-255].
17044
17045 @item YBITDEPTH
17046 Display bit depth of Y plane in current frame.
17047 Expressed in range of [0-16].
17048
17049 @item UBITDEPTH
17050 Display bit depth of U plane in current frame.
17051 Expressed in range of [0-16].
17052
17053 @item VBITDEPTH
17054 Display bit depth of V plane in current frame.
17055 Expressed in range of [0-16].
17056 @end table
17057
17058 The filter accepts the following options:
17059
17060 @table @option
17061 @item stat
17062 @item out
17063
17064 @option{stat} specify an additional form of image analysis.
17065 @option{out} output video with the specified type of pixel highlighted.
17066
17067 Both options accept the following values:
17068
17069 @table @samp
17070 @item tout
17071 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
17072 unlike the neighboring pixels of the same field. Examples of temporal outliers
17073 include the results of video dropouts, head clogs, or tape tracking issues.
17074
17075 @item vrep
17076 Identify @var{vertical line repetition}. Vertical line repetition includes
17077 similar rows of pixels within a frame. In born-digital video vertical line
17078 repetition is common, but this pattern is uncommon in video digitized from an
17079 analog source. When it occurs in video that results from the digitization of an
17080 analog source it can indicate concealment from a dropout compensator.
17081
17082 @item brng
17083 Identify pixels that fall outside of legal broadcast range.
17084 @end table
17085
17086 @item color, c
17087 Set the highlight color for the @option{out} option. The default color is
17088 yellow.
17089 @end table
17090
17091 @subsection Examples
17092
17093 @itemize
17094 @item
17095 Output data of various video metrics:
17096 @example
17097 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
17098 @end example
17099
17100 @item
17101 Output specific data about the minimum and maximum values of the Y plane per frame:
17102 @example
17103 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
17104 @end example
17105
17106 @item
17107 Playback video while highlighting pixels that are outside of broadcast range in red.
17108 @example
17109 ffplay example.mov -vf signalstats="out=brng:color=red"
17110 @end example
17111
17112 @item
17113 Playback video with signalstats metadata drawn over the frame.
17114 @example
17115 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
17116 @end example
17117
17118 The contents of signalstat_drawtext.txt used in the command are:
17119 @example
17120 time %@{pts:hms@}
17121 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
17122 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
17123 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
17124 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
17125
17126 @end example
17127 @end itemize
17128
17129 @anchor{signature}
17130 @section signature
17131
17132 Calculates the MPEG-7 Video Signature. The filter can handle more than one
17133 input. In this case the matching between the inputs can be calculated additionally.
17134 The filter always passes through the first input. The signature of each stream can
17135 be written into a file.
17136
17137 It accepts the following options:
17138
17139 @table @option
17140 @item detectmode
17141 Enable or disable the matching process.
17142
17143 Available values are:
17144
17145 @table @samp
17146 @item off
17147 Disable the calculation of a matching (default).
17148 @item full
17149 Calculate the matching for the whole video and output whether the whole video
17150 matches or only parts.
17151 @item fast
17152 Calculate only until a matching is found or the video ends. Should be faster in
17153 some cases.
17154 @end table
17155
17156 @item nb_inputs
17157 Set the number of inputs. The option value must be a non negative integer.
17158 Default value is 1.
17159
17160 @item filename
17161 Set the path to which the output is written. If there is more than one input,
17162 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
17163 integer), that will be replaced with the input number. If no filename is
17164 specified, no output will be written. This is the default.
17165
17166 @item format
17167 Choose the output format.
17168
17169 Available values are:
17170
17171 @table @samp
17172 @item binary
17173 Use the specified binary representation (default).
17174 @item xml
17175 Use the specified xml representation.
17176 @end table
17177
17178 @item th_d
17179 Set threshold to detect one word as similar. The option value must be an integer
17180 greater than zero. The default value is 9000.
17181
17182 @item th_dc
17183 Set threshold to detect all words as similar. The option value must be an integer
17184 greater than zero. The default value is 60000.
17185
17186 @item th_xh
17187 Set threshold to detect frames as similar. The option value must be an integer
17188 greater than zero. The default value is 116.
17189
17190 @item th_di
17191 Set the minimum length of a sequence in frames to recognize it as matching
17192 sequence. The option value must be a non negative integer value.
17193 The default value is 0.
17194
17195 @item th_it
17196 Set the minimum relation, that matching frames to all frames must have.
17197 The option value must be a double value between 0 and 1. The default value is 0.5.
17198 @end table
17199
17200 @subsection Examples
17201
17202 @itemize
17203 @item
17204 To calculate the signature of an input video and store it in signature.bin:
17205 @example
17206 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
17207 @end example
17208
17209 @item
17210 To detect whether two videos match and store the signatures in XML format in
17211 signature0.xml and signature1.xml:
17212 @example
17213 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 -
17214 @end example
17215
17216 @end itemize
17217
17218 @anchor{smartblur}
17219 @section smartblur
17220
17221 Blur the input video without impacting the outlines.
17222
17223 It accepts the following options:
17224
17225 @table @option
17226 @item luma_radius, lr
17227 Set the luma radius. The option value must be a float number in
17228 the range [0.1,5.0] that specifies the variance of the gaussian filter
17229 used to blur the image (slower if larger). Default value is 1.0.
17230
17231 @item luma_strength, ls
17232 Set the luma strength. The option value must be a float number
17233 in the range [-1.0,1.0] that configures the blurring. A value included
17234 in [0.0,1.0] will blur the image whereas a value included in
17235 [-1.0,0.0] will sharpen the image. Default value is 1.0.
17236
17237 @item luma_threshold, lt
17238 Set the luma threshold used as a coefficient to determine
17239 whether a pixel should be blurred or not. The option value must be an
17240 integer in the range [-30,30]. A value of 0 will filter all the image,
17241 a value included in [0,30] will filter flat areas and a value included
17242 in [-30,0] will filter edges. Default value is 0.
17243
17244 @item chroma_radius, cr
17245 Set the chroma radius. The option value must be a float number in
17246 the range [0.1,5.0] that specifies the variance of the gaussian filter
17247 used to blur the image (slower if larger). Default value is @option{luma_radius}.
17248
17249 @item chroma_strength, cs
17250 Set the chroma strength. The option value must be a float number
17251 in the range [-1.0,1.0] that configures the blurring. A value included
17252 in [0.0,1.0] will blur the image whereas a value included in
17253 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
17254
17255 @item chroma_threshold, ct
17256 Set the chroma threshold used as a coefficient to determine
17257 whether a pixel should be blurred or not. The option value must be an
17258 integer in the range [-30,30]. A value of 0 will filter all the image,
17259 a value included in [0,30] will filter flat areas and a value included
17260 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
17261 @end table
17262
17263 If a chroma option is not explicitly set, the corresponding luma value
17264 is set.
17265
17266 @section sobel
17267 Apply sobel operator to input video stream.
17268
17269 The filter accepts the following option:
17270
17271 @table @option
17272 @item planes
17273 Set which planes will be processed, unprocessed planes will be copied.
17274 By default value 0xf, all planes will be processed.
17275
17276 @item scale
17277 Set value which will be multiplied with filtered result.
17278
17279 @item delta
17280 Set value which will be added to filtered result.
17281 @end table
17282
17283 @anchor{spp}
17284 @section spp
17285
17286 Apply a simple postprocessing filter that compresses and decompresses the image
17287 at several (or - in the case of @option{quality} level @code{6} - all) shifts
17288 and average the results.
17289
17290 The filter accepts the following options:
17291
17292 @table @option
17293 @item quality
17294 Set quality. This option defines the number of levels for averaging. It accepts
17295 an integer in the range 0-6. If set to @code{0}, the filter will have no
17296 effect. A value of @code{6} means the higher quality. For each increment of
17297 that value the speed drops by a factor of approximately 2.  Default value is
17298 @code{3}.
17299
17300 @item qp
17301 Force a constant quantization parameter. If not set, the filter will use the QP
17302 from the video stream (if available).
17303
17304 @item mode
17305 Set thresholding mode. Available modes are:
17306
17307 @table @samp
17308 @item hard
17309 Set hard thresholding (default).
17310 @item soft
17311 Set soft thresholding (better de-ringing effect, but likely blurrier).
17312 @end table
17313
17314 @item use_bframe_qp
17315 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
17316 option may cause flicker since the B-Frames have often larger QP. Default is
17317 @code{0} (not enabled).
17318 @end table
17319
17320 @subsection Commands
17321
17322 This filter supports the following commands:
17323 @table @option
17324 @item quality, level
17325 Set quality level. The value @code{max} can be used to set the maximum level,
17326 currently @code{6}.
17327 @end table
17328
17329 @anchor{sr}
17330 @section sr
17331
17332 Scale the input by applying one of the super-resolution methods based on
17333 convolutional neural networks. Supported models:
17334
17335 @itemize
17336 @item
17337 Super-Resolution Convolutional Neural Network model (SRCNN).
17338 See @url{https://arxiv.org/abs/1501.00092}.
17339
17340 @item
17341 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
17342 See @url{https://arxiv.org/abs/1609.05158}.
17343 @end itemize
17344
17345 Training scripts as well as scripts for model file (.pb) saving can be found at
17346 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
17347 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
17348
17349 Native model files (.model) can be generated from TensorFlow model
17350 files (.pb) by using tools/python/convert.py
17351
17352 The filter accepts the following options:
17353
17354 @table @option
17355 @item dnn_backend
17356 Specify which DNN backend to use for model loading and execution. This option accepts
17357 the following values:
17358
17359 @table @samp
17360 @item native
17361 Native implementation of DNN loading and execution.
17362
17363 @item tensorflow
17364 TensorFlow backend. To enable this backend you
17365 need to install the TensorFlow for C library (see
17366 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
17367 @code{--enable-libtensorflow}
17368 @end table
17369
17370 Default value is @samp{native}.
17371
17372 @item model
17373 Set path to model file specifying network architecture and its parameters.
17374 Note that different backends use different file formats. TensorFlow backend
17375 can load files for both formats, while native backend can load files for only
17376 its format.
17377
17378 @item scale_factor
17379 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
17380 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
17381 input upscaled using bicubic upscaling with proper scale factor.
17382 @end table
17383
17384 This feature can also be finished with @ref{dnn_processing} filter.
17385
17386 @section ssim
17387
17388 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
17389
17390 This filter takes in input two input videos, the first input is
17391 considered the "main" source and is passed unchanged to the
17392 output. The second input is used as a "reference" video for computing
17393 the SSIM.
17394
17395 Both video inputs must have the same resolution and pixel format for
17396 this filter to work correctly. Also it assumes that both inputs
17397 have the same number of frames, which are compared one by one.
17398
17399 The filter stores the calculated SSIM of each frame.
17400
17401 The description of the accepted parameters follows.
17402
17403 @table @option
17404 @item stats_file, f
17405 If specified the filter will use the named file to save the SSIM of
17406 each individual frame. When filename equals "-" the data is sent to
17407 standard output.
17408 @end table
17409
17410 The file printed if @var{stats_file} is selected, contains a sequence of
17411 key/value pairs of the form @var{key}:@var{value} for each compared
17412 couple of frames.
17413
17414 A description of each shown parameter follows:
17415
17416 @table @option
17417 @item n
17418 sequential number of the input frame, starting from 1
17419
17420 @item Y, U, V, R, G, B
17421 SSIM of the compared frames for the component specified by the suffix.
17422
17423 @item All
17424 SSIM of the compared frames for the whole frame.
17425
17426 @item dB
17427 Same as above but in dB representation.
17428 @end table
17429
17430 This filter also supports the @ref{framesync} options.
17431
17432 @subsection Examples
17433 @itemize
17434 @item
17435 For example:
17436 @example
17437 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
17438 [main][ref] ssim="stats_file=stats.log" [out]
17439 @end example
17440
17441 On this example the input file being processed is compared with the
17442 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
17443 is stored in @file{stats.log}.
17444
17445 @item
17446 Another example with both psnr and ssim at same time:
17447 @example
17448 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
17449 @end example
17450
17451 @item
17452 Another example with different containers:
17453 @example
17454 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 -
17455 @end example
17456 @end itemize
17457
17458 @section stereo3d
17459
17460 Convert between different stereoscopic image formats.
17461
17462 The filters accept the following options:
17463
17464 @table @option
17465 @item in
17466 Set stereoscopic image format of input.
17467
17468 Available values for input image formats are:
17469 @table @samp
17470 @item sbsl
17471 side by side parallel (left eye left, right eye right)
17472
17473 @item sbsr
17474 side by side crosseye (right eye left, left eye right)
17475
17476 @item sbs2l
17477 side by side parallel with half width resolution
17478 (left eye left, right eye right)
17479
17480 @item sbs2r
17481 side by side crosseye with half width resolution
17482 (right eye left, left eye right)
17483
17484 @item abl
17485 @item tbl
17486 above-below (left eye above, right eye below)
17487
17488 @item abr
17489 @item tbr
17490 above-below (right eye above, left eye below)
17491
17492 @item ab2l
17493 @item tb2l
17494 above-below with half height resolution
17495 (left eye above, right eye below)
17496
17497 @item ab2r
17498 @item tb2r
17499 above-below with half height resolution
17500 (right eye above, left eye below)
17501
17502 @item al
17503 alternating frames (left eye first, right eye second)
17504
17505 @item ar
17506 alternating frames (right eye first, left eye second)
17507
17508 @item irl
17509 interleaved rows (left eye has top row, right eye starts on next row)
17510
17511 @item irr
17512 interleaved rows (right eye has top row, left eye starts on next row)
17513
17514 @item icl
17515 interleaved columns, left eye first
17516
17517 @item icr
17518 interleaved columns, right eye first
17519
17520 Default value is @samp{sbsl}.
17521 @end table
17522
17523 @item out
17524 Set stereoscopic image format of output.
17525
17526 @table @samp
17527 @item sbsl
17528 side by side parallel (left eye left, right eye right)
17529
17530 @item sbsr
17531 side by side crosseye (right eye left, left eye right)
17532
17533 @item sbs2l
17534 side by side parallel with half width resolution
17535 (left eye left, right eye right)
17536
17537 @item sbs2r
17538 side by side crosseye with half width resolution
17539 (right eye left, left eye right)
17540
17541 @item abl
17542 @item tbl
17543 above-below (left eye above, right eye below)
17544
17545 @item abr
17546 @item tbr
17547 above-below (right eye above, left eye below)
17548
17549 @item ab2l
17550 @item tb2l
17551 above-below with half height resolution
17552 (left eye above, right eye below)
17553
17554 @item ab2r
17555 @item tb2r
17556 above-below with half height resolution
17557 (right eye above, left eye below)
17558
17559 @item al
17560 alternating frames (left eye first, right eye second)
17561
17562 @item ar
17563 alternating frames (right eye first, left eye second)
17564
17565 @item irl
17566 interleaved rows (left eye has top row, right eye starts on next row)
17567
17568 @item irr
17569 interleaved rows (right eye has top row, left eye starts on next row)
17570
17571 @item arbg
17572 anaglyph red/blue gray
17573 (red filter on left eye, blue filter on right eye)
17574
17575 @item argg
17576 anaglyph red/green gray
17577 (red filter on left eye, green filter on right eye)
17578
17579 @item arcg
17580 anaglyph red/cyan gray
17581 (red filter on left eye, cyan filter on right eye)
17582
17583 @item arch
17584 anaglyph red/cyan half colored
17585 (red filter on left eye, cyan filter on right eye)
17586
17587 @item arcc
17588 anaglyph red/cyan color
17589 (red filter on left eye, cyan filter on right eye)
17590
17591 @item arcd
17592 anaglyph red/cyan color optimized with the least squares projection of dubois
17593 (red filter on left eye, cyan filter on right eye)
17594
17595 @item agmg
17596 anaglyph green/magenta gray
17597 (green filter on left eye, magenta filter on right eye)
17598
17599 @item agmh
17600 anaglyph green/magenta half colored
17601 (green filter on left eye, magenta filter on right eye)
17602
17603 @item agmc
17604 anaglyph green/magenta colored
17605 (green filter on left eye, magenta filter on right eye)
17606
17607 @item agmd
17608 anaglyph green/magenta color optimized with the least squares projection of dubois
17609 (green filter on left eye, magenta filter on right eye)
17610
17611 @item aybg
17612 anaglyph yellow/blue gray
17613 (yellow filter on left eye, blue filter on right eye)
17614
17615 @item aybh
17616 anaglyph yellow/blue half colored
17617 (yellow filter on left eye, blue filter on right eye)
17618
17619 @item aybc
17620 anaglyph yellow/blue colored
17621 (yellow filter on left eye, blue filter on right eye)
17622
17623 @item aybd
17624 anaglyph yellow/blue color optimized with the least squares projection of dubois
17625 (yellow filter on left eye, blue filter on right eye)
17626
17627 @item ml
17628 mono output (left eye only)
17629
17630 @item mr
17631 mono output (right eye only)
17632
17633 @item chl
17634 checkerboard, left eye first
17635
17636 @item chr
17637 checkerboard, right eye first
17638
17639 @item icl
17640 interleaved columns, left eye first
17641
17642 @item icr
17643 interleaved columns, right eye first
17644
17645 @item hdmi
17646 HDMI frame pack
17647 @end table
17648
17649 Default value is @samp{arcd}.
17650 @end table
17651
17652 @subsection Examples
17653
17654 @itemize
17655 @item
17656 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
17657 @example
17658 stereo3d=sbsl:aybd
17659 @end example
17660
17661 @item
17662 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
17663 @example
17664 stereo3d=abl:sbsr
17665 @end example
17666 @end itemize
17667
17668 @section streamselect, astreamselect
17669 Select video or audio streams.
17670
17671 The filter accepts the following options:
17672
17673 @table @option
17674 @item inputs
17675 Set number of inputs. Default is 2.
17676
17677 @item map
17678 Set input indexes to remap to outputs.
17679 @end table
17680
17681 @subsection Commands
17682
17683 The @code{streamselect} and @code{astreamselect} filter supports the following
17684 commands:
17685
17686 @table @option
17687 @item map
17688 Set input indexes to remap to outputs.
17689 @end table
17690
17691 @subsection Examples
17692
17693 @itemize
17694 @item
17695 Select first 5 seconds 1st stream and rest of time 2nd stream:
17696 @example
17697 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
17698 @end example
17699
17700 @item
17701 Same as above, but for audio:
17702 @example
17703 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
17704 @end example
17705 @end itemize
17706
17707 @anchor{subtitles}
17708 @section subtitles
17709
17710 Draw subtitles on top of input video using the libass library.
17711
17712 To enable compilation of this filter you need to configure FFmpeg with
17713 @code{--enable-libass}. This filter also requires a build with libavcodec and
17714 libavformat to convert the passed subtitles file to ASS (Advanced Substation
17715 Alpha) subtitles format.
17716
17717 The filter accepts the following options:
17718
17719 @table @option
17720 @item filename, f
17721 Set the filename of the subtitle file to read. It must be specified.
17722
17723 @item original_size
17724 Specify the size of the original video, the video for which the ASS file
17725 was composed. For the syntax of this option, check the
17726 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17727 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
17728 correctly scale the fonts if the aspect ratio has been changed.
17729
17730 @item fontsdir
17731 Set a directory path containing fonts that can be used by the filter.
17732 These fonts will be used in addition to whatever the font provider uses.
17733
17734 @item alpha
17735 Process alpha channel, by default alpha channel is untouched.
17736
17737 @item charenc
17738 Set subtitles input character encoding. @code{subtitles} filter only. Only
17739 useful if not UTF-8.
17740
17741 @item stream_index, si
17742 Set subtitles stream index. @code{subtitles} filter only.
17743
17744 @item force_style
17745 Override default style or script info parameters of the subtitles. It accepts a
17746 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
17747 @end table
17748
17749 If the first key is not specified, it is assumed that the first value
17750 specifies the @option{filename}.
17751
17752 For example, to render the file @file{sub.srt} on top of the input
17753 video, use the command:
17754 @example
17755 subtitles=sub.srt
17756 @end example
17757
17758 which is equivalent to:
17759 @example
17760 subtitles=filename=sub.srt
17761 @end example
17762
17763 To render the default subtitles stream from file @file{video.mkv}, use:
17764 @example
17765 subtitles=video.mkv
17766 @end example
17767
17768 To render the second subtitles stream from that file, use:
17769 @example
17770 subtitles=video.mkv:si=1
17771 @end example
17772
17773 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
17774 @code{DejaVu Serif}, use:
17775 @example
17776 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
17777 @end example
17778
17779 @section super2xsai
17780
17781 Scale the input by 2x and smooth using the Super2xSaI (Scale and
17782 Interpolate) pixel art scaling algorithm.
17783
17784 Useful for enlarging pixel art images without reducing sharpness.
17785
17786 @section swaprect
17787
17788 Swap two rectangular objects in video.
17789
17790 This filter accepts the following options:
17791
17792 @table @option
17793 @item w
17794 Set object width.
17795
17796 @item h
17797 Set object height.
17798
17799 @item x1
17800 Set 1st rect x coordinate.
17801
17802 @item y1
17803 Set 1st rect y coordinate.
17804
17805 @item x2
17806 Set 2nd rect x coordinate.
17807
17808 @item y2
17809 Set 2nd rect y coordinate.
17810
17811 All expressions are evaluated once for each frame.
17812 @end table
17813
17814 The all options are expressions containing the following constants:
17815
17816 @table @option
17817 @item w
17818 @item h
17819 The input width and height.
17820
17821 @item a
17822 same as @var{w} / @var{h}
17823
17824 @item sar
17825 input sample aspect ratio
17826
17827 @item dar
17828 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
17829
17830 @item n
17831 The number of the input frame, starting from 0.
17832
17833 @item t
17834 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
17835
17836 @item pos
17837 the position in the file of the input frame, NAN if unknown
17838 @end table
17839
17840 @section swapuv
17841 Swap U & V plane.
17842
17843 @section tblend
17844 Blend successive video frames.
17845
17846 See @ref{blend}
17847
17848 @section telecine
17849
17850 Apply telecine process to the video.
17851
17852 This filter accepts the following options:
17853
17854 @table @option
17855 @item first_field
17856 @table @samp
17857 @item top, t
17858 top field first
17859 @item bottom, b
17860 bottom field first
17861 The default value is @code{top}.
17862 @end table
17863
17864 @item pattern
17865 A string of numbers representing the pulldown pattern you wish to apply.
17866 The default value is @code{23}.
17867 @end table
17868
17869 @example
17870 Some typical patterns:
17871
17872 NTSC output (30i):
17873 27.5p: 32222
17874 24p: 23 (classic)
17875 24p: 2332 (preferred)
17876 20p: 33
17877 18p: 334
17878 16p: 3444
17879
17880 PAL output (25i):
17881 27.5p: 12222
17882 24p: 222222222223 ("Euro pulldown")
17883 16.67p: 33
17884 16p: 33333334
17885 @end example
17886
17887 @section thistogram
17888
17889 Compute and draw a color distribution histogram for the input video across time.
17890
17891 Unlike @ref{histogram} video filter which only shows histogram of single input frame
17892 at certain time, this filter shows also past histograms of number of frames defined
17893 by @code{width} option.
17894
17895 The computed histogram is a representation of the color component
17896 distribution in an image.
17897
17898 The filter accepts the following options:
17899
17900 @table @option
17901 @item width, w
17902 Set width of single color component output. Default value is @code{0}.
17903 Value of @code{0} means width will be picked from input video.
17904 This also set number of passed histograms to keep.
17905 Allowed range is [0, 8192].
17906
17907 @item display_mode, d
17908 Set display mode.
17909 It accepts the following values:
17910 @table @samp
17911 @item stack
17912 Per color component graphs are placed below each other.
17913
17914 @item parade
17915 Per color component graphs are placed side by side.
17916
17917 @item overlay
17918 Presents information identical to that in the @code{parade}, except
17919 that the graphs representing color components are superimposed directly
17920 over one another.
17921 @end table
17922 Default is @code{stack}.
17923
17924 @item levels_mode, m
17925 Set mode. Can be either @code{linear}, or @code{logarithmic}.
17926 Default is @code{linear}.
17927
17928 @item components, c
17929 Set what color components to display.
17930 Default is @code{7}.
17931
17932 @item bgopacity, b
17933 Set background opacity. Default is @code{0.9}.
17934
17935 @item envelope, e
17936 Show envelope. Default is disabled.
17937
17938 @item ecolor, ec
17939 Set envelope color. Default is @code{gold}.
17940 @end table
17941
17942 @section threshold
17943
17944 Apply threshold effect to video stream.
17945
17946 This filter needs four video streams to perform thresholding.
17947 First stream is stream we are filtering.
17948 Second stream is holding threshold values, third stream is holding min values,
17949 and last, fourth stream is holding max values.
17950
17951 The filter accepts the following option:
17952
17953 @table @option
17954 @item planes
17955 Set which planes will be processed, unprocessed planes will be copied.
17956 By default value 0xf, all planes will be processed.
17957 @end table
17958
17959 For example if first stream pixel's component value is less then threshold value
17960 of pixel component from 2nd threshold stream, third stream value will picked,
17961 otherwise fourth stream pixel component value will be picked.
17962
17963 Using color source filter one can perform various types of thresholding:
17964
17965 @subsection Examples
17966
17967 @itemize
17968 @item
17969 Binary threshold, using gray color as threshold:
17970 @example
17971 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
17972 @end example
17973
17974 @item
17975 Inverted binary threshold, using gray color as threshold:
17976 @example
17977 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
17978 @end example
17979
17980 @item
17981 Truncate binary threshold, using gray color as threshold:
17982 @example
17983 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
17984 @end example
17985
17986 @item
17987 Threshold to zero, using gray color as threshold:
17988 @example
17989 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
17990 @end example
17991
17992 @item
17993 Inverted threshold to zero, using gray color as threshold:
17994 @example
17995 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
17996 @end example
17997 @end itemize
17998
17999 @section thumbnail
18000 Select the most representative frame in a given sequence of consecutive frames.
18001
18002 The filter accepts the following options:
18003
18004 @table @option
18005 @item n
18006 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
18007 will pick one of them, and then handle the next batch of @var{n} frames until
18008 the end. Default is @code{100}.
18009 @end table
18010
18011 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
18012 value will result in a higher memory usage, so a high value is not recommended.
18013
18014 @subsection Examples
18015
18016 @itemize
18017 @item
18018 Extract one picture each 50 frames:
18019 @example
18020 thumbnail=50
18021 @end example
18022
18023 @item
18024 Complete example of a thumbnail creation with @command{ffmpeg}:
18025 @example
18026 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
18027 @end example
18028 @end itemize
18029
18030 @section tile
18031
18032 Tile several successive frames together.
18033
18034 The filter accepts the following options:
18035
18036 @table @option
18037
18038 @item layout
18039 Set the grid size (i.e. the number of lines and columns). For the syntax of
18040 this option, check the
18041 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18042
18043 @item nb_frames
18044 Set the maximum number of frames to render in the given area. It must be less
18045 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
18046 the area will be used.
18047
18048 @item margin
18049 Set the outer border margin in pixels.
18050
18051 @item padding
18052 Set the inner border thickness (i.e. the number of pixels between frames). For
18053 more advanced padding options (such as having different values for the edges),
18054 refer to the pad video filter.
18055
18056 @item color
18057 Specify the color of the unused area. For the syntax of this option, check the
18058 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18059 The default value of @var{color} is "black".
18060
18061 @item overlap
18062 Set the number of frames to overlap when tiling several successive frames together.
18063 The value must be between @code{0} and @var{nb_frames - 1}.
18064
18065 @item init_padding
18066 Set the number of frames to initially be empty before displaying first output frame.
18067 This controls how soon will one get first output frame.
18068 The value must be between @code{0} and @var{nb_frames - 1}.
18069 @end table
18070
18071 @subsection Examples
18072
18073 @itemize
18074 @item
18075 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
18076 @example
18077 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
18078 @end example
18079 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
18080 duplicating each output frame to accommodate the originally detected frame
18081 rate.
18082
18083 @item
18084 Display @code{5} pictures in an area of @code{3x2} frames,
18085 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
18086 mixed flat and named options:
18087 @example
18088 tile=3x2:nb_frames=5:padding=7:margin=2
18089 @end example
18090 @end itemize
18091
18092 @section tinterlace
18093
18094 Perform various types of temporal field interlacing.
18095
18096 Frames are counted starting from 1, so the first input frame is
18097 considered odd.
18098
18099 The filter accepts the following options:
18100
18101 @table @option
18102
18103 @item mode
18104 Specify the mode of the interlacing. This option can also be specified
18105 as a value alone. See below for a list of values for this option.
18106
18107 Available values are:
18108
18109 @table @samp
18110 @item merge, 0
18111 Move odd frames into the upper field, even into the lower field,
18112 generating a double height frame at half frame rate.
18113 @example
18114  ------> time
18115 Input:
18116 Frame 1         Frame 2         Frame 3         Frame 4
18117
18118 11111           22222           33333           44444
18119 11111           22222           33333           44444
18120 11111           22222           33333           44444
18121 11111           22222           33333           44444
18122
18123 Output:
18124 11111                           33333
18125 22222                           44444
18126 11111                           33333
18127 22222                           44444
18128 11111                           33333
18129 22222                           44444
18130 11111                           33333
18131 22222                           44444
18132 @end example
18133
18134 @item drop_even, 1
18135 Only output odd frames, even frames are dropped, generating a frame with
18136 unchanged height at half frame rate.
18137
18138 @example
18139  ------> time
18140 Input:
18141 Frame 1         Frame 2         Frame 3         Frame 4
18142
18143 11111           22222           33333           44444
18144 11111           22222           33333           44444
18145 11111           22222           33333           44444
18146 11111           22222           33333           44444
18147
18148 Output:
18149 11111                           33333
18150 11111                           33333
18151 11111                           33333
18152 11111                           33333
18153 @end example
18154
18155 @item drop_odd, 2
18156 Only output even frames, odd frames are dropped, generating a frame with
18157 unchanged height at half frame rate.
18158
18159 @example
18160  ------> time
18161 Input:
18162 Frame 1         Frame 2         Frame 3         Frame 4
18163
18164 11111           22222           33333           44444
18165 11111           22222           33333           44444
18166 11111           22222           33333           44444
18167 11111           22222           33333           44444
18168
18169 Output:
18170                 22222                           44444
18171                 22222                           44444
18172                 22222                           44444
18173                 22222                           44444
18174 @end example
18175
18176 @item pad, 3
18177 Expand each frame to full height, but pad alternate lines with black,
18178 generating a frame with double height at the same input frame rate.
18179
18180 @example
18181  ------> time
18182 Input:
18183 Frame 1         Frame 2         Frame 3         Frame 4
18184
18185 11111           22222           33333           44444
18186 11111           22222           33333           44444
18187 11111           22222           33333           44444
18188 11111           22222           33333           44444
18189
18190 Output:
18191 11111           .....           33333           .....
18192 .....           22222           .....           44444
18193 11111           .....           33333           .....
18194 .....           22222           .....           44444
18195 11111           .....           33333           .....
18196 .....           22222           .....           44444
18197 11111           .....           33333           .....
18198 .....           22222           .....           44444
18199 @end example
18200
18201
18202 @item interleave_top, 4
18203 Interleave the upper field from odd frames with the lower field from
18204 even frames, generating a frame with unchanged height at half frame rate.
18205
18206 @example
18207  ------> time
18208 Input:
18209 Frame 1         Frame 2         Frame 3         Frame 4
18210
18211 11111<-         22222           33333<-         44444
18212 11111           22222<-         33333           44444<-
18213 11111<-         22222           33333<-         44444
18214 11111           22222<-         33333           44444<-
18215
18216 Output:
18217 11111                           33333
18218 22222                           44444
18219 11111                           33333
18220 22222                           44444
18221 @end example
18222
18223
18224 @item interleave_bottom, 5
18225 Interleave the lower field from odd frames with the upper field from
18226 even frames, generating a frame with unchanged height at half frame rate.
18227
18228 @example
18229  ------> time
18230 Input:
18231 Frame 1         Frame 2         Frame 3         Frame 4
18232
18233 11111           22222<-         33333           44444<-
18234 11111<-         22222           33333<-         44444
18235 11111           22222<-         33333           44444<-
18236 11111<-         22222           33333<-         44444
18237
18238 Output:
18239 22222                           44444
18240 11111                           33333
18241 22222                           44444
18242 11111                           33333
18243 @end example
18244
18245
18246 @item interlacex2, 6
18247 Double frame rate with unchanged height. Frames are inserted each
18248 containing the second temporal field from the previous input frame and
18249 the first temporal field from the next input frame. This mode relies on
18250 the top_field_first flag. Useful for interlaced video displays with no
18251 field synchronisation.
18252
18253 @example
18254  ------> time
18255 Input:
18256 Frame 1         Frame 2         Frame 3         Frame 4
18257
18258 11111           22222           33333           44444
18259  11111           22222           33333           44444
18260 11111           22222           33333           44444
18261  11111           22222           33333           44444
18262
18263 Output:
18264 11111   22222   22222   33333   33333   44444   44444
18265  11111   11111   22222   22222   33333   33333   44444
18266 11111   22222   22222   33333   33333   44444   44444
18267  11111   11111   22222   22222   33333   33333   44444
18268 @end example
18269
18270
18271 @item mergex2, 7
18272 Move odd frames into the upper field, even into the lower field,
18273 generating a double height frame at same frame rate.
18274
18275 @example
18276  ------> time
18277 Input:
18278 Frame 1         Frame 2         Frame 3         Frame 4
18279
18280 11111           22222           33333           44444
18281 11111           22222           33333           44444
18282 11111           22222           33333           44444
18283 11111           22222           33333           44444
18284
18285 Output:
18286 11111           33333           33333           55555
18287 22222           22222           44444           44444
18288 11111           33333           33333           55555
18289 22222           22222           44444           44444
18290 11111           33333           33333           55555
18291 22222           22222           44444           44444
18292 11111           33333           33333           55555
18293 22222           22222           44444           44444
18294 @end example
18295
18296 @end table
18297
18298 Numeric values are deprecated but are accepted for backward
18299 compatibility reasons.
18300
18301 Default mode is @code{merge}.
18302
18303 @item flags
18304 Specify flags influencing the filter process.
18305
18306 Available value for @var{flags} is:
18307
18308 @table @option
18309 @item low_pass_filter, vlpf
18310 Enable linear vertical low-pass filtering in the filter.
18311 Vertical low-pass filtering is required when creating an interlaced
18312 destination from a progressive source which contains high-frequency
18313 vertical detail. Filtering will reduce interlace 'twitter' and Moire
18314 patterning.
18315
18316 @item complex_filter, cvlpf
18317 Enable complex vertical low-pass filtering.
18318 This will slightly less reduce interlace 'twitter' and Moire
18319 patterning but better retain detail and subjective sharpness impression.
18320
18321 @item bypass_il
18322 Bypass already interlaced frames, only adjust the frame rate.
18323 @end table
18324
18325 Vertical low-pass filtering and bypassing already interlaced frames can only be
18326 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
18327
18328 @end table
18329
18330 @section tmix
18331
18332 Mix successive video frames.
18333
18334 A description of the accepted options follows.
18335
18336 @table @option
18337 @item frames
18338 The number of successive frames to mix. If unspecified, it defaults to 3.
18339
18340 @item weights
18341 Specify weight of each input video frame.
18342 Each weight is separated by space. If number of weights is smaller than
18343 number of @var{frames} last specified weight will be used for all remaining
18344 unset weights.
18345
18346 @item scale
18347 Specify scale, if it is set it will be multiplied with sum
18348 of each weight multiplied with pixel values to give final destination
18349 pixel value. By default @var{scale} is auto scaled to sum of weights.
18350 @end table
18351
18352 @subsection Examples
18353
18354 @itemize
18355 @item
18356 Average 7 successive frames:
18357 @example
18358 tmix=frames=7:weights="1 1 1 1 1 1 1"
18359 @end example
18360
18361 @item
18362 Apply simple temporal convolution:
18363 @example
18364 tmix=frames=3:weights="-1 3 -1"
18365 @end example
18366
18367 @item
18368 Similar as above but only showing temporal differences:
18369 @example
18370 tmix=frames=3:weights="-1 2 -1":scale=1
18371 @end example
18372 @end itemize
18373
18374 @anchor{tonemap}
18375 @section tonemap
18376 Tone map colors from different dynamic ranges.
18377
18378 This filter expects data in single precision floating point, as it needs to
18379 operate on (and can output) out-of-range values. Another filter, such as
18380 @ref{zscale}, is needed to convert the resulting frame to a usable format.
18381
18382 The tonemapping algorithms implemented only work on linear light, so input
18383 data should be linearized beforehand (and possibly correctly tagged).
18384
18385 @example
18386 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
18387 @end example
18388
18389 @subsection Options
18390 The filter accepts the following options.
18391
18392 @table @option
18393 @item tonemap
18394 Set the tone map algorithm to use.
18395
18396 Possible values are:
18397 @table @var
18398 @item none
18399 Do not apply any tone map, only desaturate overbright pixels.
18400
18401 @item clip
18402 Hard-clip any out-of-range values. Use it for perfect color accuracy for
18403 in-range values, while distorting out-of-range values.
18404
18405 @item linear
18406 Stretch the entire reference gamut to a linear multiple of the display.
18407
18408 @item gamma
18409 Fit a logarithmic transfer between the tone curves.
18410
18411 @item reinhard
18412 Preserve overall image brightness with a simple curve, using nonlinear
18413 contrast, which results in flattening details and degrading color accuracy.
18414
18415 @item hable
18416 Preserve both dark and bright details better than @var{reinhard}, at the cost
18417 of slightly darkening everything. Use it when detail preservation is more
18418 important than color and brightness accuracy.
18419
18420 @item mobius
18421 Smoothly map out-of-range values, while retaining contrast and colors for
18422 in-range material as much as possible. Use it when color accuracy is more
18423 important than detail preservation.
18424 @end table
18425
18426 Default is none.
18427
18428 @item param
18429 Tune the tone mapping algorithm.
18430
18431 This affects the following algorithms:
18432 @table @var
18433 @item none
18434 Ignored.
18435
18436 @item linear
18437 Specifies the scale factor to use while stretching.
18438 Default to 1.0.
18439
18440 @item gamma
18441 Specifies the exponent of the function.
18442 Default to 1.8.
18443
18444 @item clip
18445 Specify an extra linear coefficient to multiply into the signal before clipping.
18446 Default to 1.0.
18447
18448 @item reinhard
18449 Specify the local contrast coefficient at the display peak.
18450 Default to 0.5, which means that in-gamut values will be about half as bright
18451 as when clipping.
18452
18453 @item hable
18454 Ignored.
18455
18456 @item mobius
18457 Specify the transition point from linear to mobius transform. Every value
18458 below this point is guaranteed to be mapped 1:1. The higher the value, the
18459 more accurate the result will be, at the cost of losing bright details.
18460 Default to 0.3, which due to the steep initial slope still preserves in-range
18461 colors fairly accurately.
18462 @end table
18463
18464 @item desat
18465 Apply desaturation for highlights that exceed this level of brightness. The
18466 higher the parameter, the more color information will be preserved. This
18467 setting helps prevent unnaturally blown-out colors for super-highlights, by
18468 (smoothly) turning into white instead. This makes images feel more natural,
18469 at the cost of reducing information about out-of-range colors.
18470
18471 The default of 2.0 is somewhat conservative and will mostly just apply to
18472 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
18473
18474 This option works only if the input frame has a supported color tag.
18475
18476 @item peak
18477 Override signal/nominal/reference peak with this value. Useful when the
18478 embedded peak information in display metadata is not reliable or when tone
18479 mapping from a lower range to a higher range.
18480 @end table
18481
18482 @section tpad
18483
18484 Temporarily pad video frames.
18485
18486 The filter accepts the following options:
18487
18488 @table @option
18489 @item start
18490 Specify number of delay frames before input video stream.
18491
18492 @item stop
18493 Specify number of padding frames after input video stream.
18494 Set to -1 to pad indefinitely.
18495
18496 @item start_mode
18497 Set kind of frames added to beginning of stream.
18498 Can be either @var{add} or @var{clone}.
18499 With @var{add} frames of solid-color are added.
18500 With @var{clone} frames are clones of first frame.
18501
18502 @item stop_mode
18503 Set kind of frames added to end of stream.
18504 Can be either @var{add} or @var{clone}.
18505 With @var{add} frames of solid-color are added.
18506 With @var{clone} frames are clones of last frame.
18507
18508 @item start_duration, stop_duration
18509 Specify the duration of the start/stop delay. See
18510 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18511 for the accepted syntax.
18512 These options override @var{start} and @var{stop}.
18513
18514 @item color
18515 Specify the color of the padded area. For the syntax of this option,
18516 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
18517 manual,ffmpeg-utils}.
18518
18519 The default value of @var{color} is "black".
18520 @end table
18521
18522 @anchor{transpose}
18523 @section transpose
18524
18525 Transpose rows with columns in the input video and optionally flip it.
18526
18527 It accepts the following parameters:
18528
18529 @table @option
18530
18531 @item dir
18532 Specify the transposition direction.
18533
18534 Can assume the following values:
18535 @table @samp
18536 @item 0, 4, cclock_flip
18537 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
18538 @example
18539 L.R     L.l
18540 . . ->  . .
18541 l.r     R.r
18542 @end example
18543
18544 @item 1, 5, clock
18545 Rotate by 90 degrees clockwise, that is:
18546 @example
18547 L.R     l.L
18548 . . ->  . .
18549 l.r     r.R
18550 @end example
18551
18552 @item 2, 6, cclock
18553 Rotate by 90 degrees counterclockwise, that is:
18554 @example
18555 L.R     R.r
18556 . . ->  . .
18557 l.r     L.l
18558 @end example
18559
18560 @item 3, 7, clock_flip
18561 Rotate by 90 degrees clockwise and vertically flip, that is:
18562 @example
18563 L.R     r.R
18564 . . ->  . .
18565 l.r     l.L
18566 @end example
18567 @end table
18568
18569 For values between 4-7, the transposition is only done if the input
18570 video geometry is portrait and not landscape. These values are
18571 deprecated, the @code{passthrough} option should be used instead.
18572
18573 Numerical values are deprecated, and should be dropped in favor of
18574 symbolic constants.
18575
18576 @item passthrough
18577 Do not apply the transposition if the input geometry matches the one
18578 specified by the specified value. It accepts the following values:
18579 @table @samp
18580 @item none
18581 Always apply transposition.
18582 @item portrait
18583 Preserve portrait geometry (when @var{height} >= @var{width}).
18584 @item landscape
18585 Preserve landscape geometry (when @var{width} >= @var{height}).
18586 @end table
18587
18588 Default value is @code{none}.
18589 @end table
18590
18591 For example to rotate by 90 degrees clockwise and preserve portrait
18592 layout:
18593 @example
18594 transpose=dir=1:passthrough=portrait
18595 @end example
18596
18597 The command above can also be specified as:
18598 @example
18599 transpose=1:portrait
18600 @end example
18601
18602 @section transpose_npp
18603
18604 Transpose rows with columns in the input video and optionally flip it.
18605 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
18606
18607 It accepts the following parameters:
18608
18609 @table @option
18610
18611 @item dir
18612 Specify the transposition direction.
18613
18614 Can assume the following values:
18615 @table @samp
18616 @item cclock_flip
18617 Rotate by 90 degrees counterclockwise and vertically flip. (default)
18618
18619 @item clock
18620 Rotate by 90 degrees clockwise.
18621
18622 @item cclock
18623 Rotate by 90 degrees counterclockwise.
18624
18625 @item clock_flip
18626 Rotate by 90 degrees clockwise and vertically flip.
18627 @end table
18628
18629 @item passthrough
18630 Do not apply the transposition if the input geometry matches the one
18631 specified by the specified value. It accepts the following values:
18632 @table @samp
18633 @item none
18634 Always apply transposition. (default)
18635 @item portrait
18636 Preserve portrait geometry (when @var{height} >= @var{width}).
18637 @item landscape
18638 Preserve landscape geometry (when @var{width} >= @var{height}).
18639 @end table
18640
18641 @end table
18642
18643 @section trim
18644 Trim the input so that the output contains one continuous subpart of the input.
18645
18646 It accepts the following parameters:
18647 @table @option
18648 @item start
18649 Specify the time of the start of the kept section, i.e. the frame with the
18650 timestamp @var{start} will be the first frame in the output.
18651
18652 @item end
18653 Specify the time of the first frame that will be dropped, i.e. the frame
18654 immediately preceding the one with the timestamp @var{end} will be the last
18655 frame in the output.
18656
18657 @item start_pts
18658 This is the same as @var{start}, except this option sets the start timestamp
18659 in timebase units instead of seconds.
18660
18661 @item end_pts
18662 This is the same as @var{end}, except this option sets the end timestamp
18663 in timebase units instead of seconds.
18664
18665 @item duration
18666 The maximum duration of the output in seconds.
18667
18668 @item start_frame
18669 The number of the first frame that should be passed to the output.
18670
18671 @item end_frame
18672 The number of the first frame that should be dropped.
18673 @end table
18674
18675 @option{start}, @option{end}, and @option{duration} are expressed as time
18676 duration specifications; see
18677 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18678 for the accepted syntax.
18679
18680 Note that the first two sets of the start/end options and the @option{duration}
18681 option look at the frame timestamp, while the _frame variants simply count the
18682 frames that pass through the filter. Also note that this filter does not modify
18683 the timestamps. If you wish for the output timestamps to start at zero, insert a
18684 setpts filter after the trim filter.
18685
18686 If multiple start or end options are set, this filter tries to be greedy and
18687 keep all the frames that match at least one of the specified constraints. To keep
18688 only the part that matches all the constraints at once, chain multiple trim
18689 filters.
18690
18691 The defaults are such that all the input is kept. So it is possible to set e.g.
18692 just the end values to keep everything before the specified time.
18693
18694 Examples:
18695 @itemize
18696 @item
18697 Drop everything except the second minute of input:
18698 @example
18699 ffmpeg -i INPUT -vf trim=60:120
18700 @end example
18701
18702 @item
18703 Keep only the first second:
18704 @example
18705 ffmpeg -i INPUT -vf trim=duration=1
18706 @end example
18707
18708 @end itemize
18709
18710 @section unpremultiply
18711 Apply alpha unpremultiply effect to input video stream using first plane
18712 of second stream as alpha.
18713
18714 Both streams must have same dimensions and same pixel format.
18715
18716 The filter accepts the following option:
18717
18718 @table @option
18719 @item planes
18720 Set which planes will be processed, unprocessed planes will be copied.
18721 By default value 0xf, all planes will be processed.
18722
18723 If the format has 1 or 2 components, then luma is bit 0.
18724 If the format has 3 or 4 components:
18725 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
18726 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
18727 If present, the alpha channel is always the last bit.
18728
18729 @item inplace
18730 Do not require 2nd input for processing, instead use alpha plane from input stream.
18731 @end table
18732
18733 @anchor{unsharp}
18734 @section unsharp
18735
18736 Sharpen or blur the input video.
18737
18738 It accepts the following parameters:
18739
18740 @table @option
18741 @item luma_msize_x, lx
18742 Set the luma matrix horizontal size. It must be an odd integer between
18743 3 and 23. The default value is 5.
18744
18745 @item luma_msize_y, ly
18746 Set the luma matrix vertical size. It must be an odd integer between 3
18747 and 23. The default value is 5.
18748
18749 @item luma_amount, la
18750 Set the luma effect strength. It must be a floating point number, reasonable
18751 values lay between -1.5 and 1.5.
18752
18753 Negative values will blur the input video, while positive values will
18754 sharpen it, a value of zero will disable the effect.
18755
18756 Default value is 1.0.
18757
18758 @item chroma_msize_x, cx
18759 Set the chroma matrix horizontal size. It must be an odd integer
18760 between 3 and 23. The default value is 5.
18761
18762 @item chroma_msize_y, cy
18763 Set the chroma matrix vertical size. It must be an odd integer
18764 between 3 and 23. The default value is 5.
18765
18766 @item chroma_amount, ca
18767 Set the chroma effect strength. It must be a floating point number, reasonable
18768 values lay between -1.5 and 1.5.
18769
18770 Negative values will blur the input video, while positive values will
18771 sharpen it, a value of zero will disable the effect.
18772
18773 Default value is 0.0.
18774
18775 @end table
18776
18777 All parameters are optional and default to the equivalent of the
18778 string '5:5:1.0:5:5:0.0'.
18779
18780 @subsection Examples
18781
18782 @itemize
18783 @item
18784 Apply strong luma sharpen effect:
18785 @example
18786 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
18787 @end example
18788
18789 @item
18790 Apply a strong blur of both luma and chroma parameters:
18791 @example
18792 unsharp=7:7:-2:7:7:-2
18793 @end example
18794 @end itemize
18795
18796 @section uspp
18797
18798 Apply ultra slow/simple postprocessing filter that compresses and decompresses
18799 the image at several (or - in the case of @option{quality} level @code{8} - all)
18800 shifts and average the results.
18801
18802 The way this differs from the behavior of spp is that uspp actually encodes &
18803 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
18804 DCT similar to MJPEG.
18805
18806 The filter accepts the following options:
18807
18808 @table @option
18809 @item quality
18810 Set quality. This option defines the number of levels for averaging. It accepts
18811 an integer in the range 0-8. If set to @code{0}, the filter will have no
18812 effect. A value of @code{8} means the higher quality. For each increment of
18813 that value the speed drops by a factor of approximately 2.  Default value is
18814 @code{3}.
18815
18816 @item qp
18817 Force a constant quantization parameter. If not set, the filter will use the QP
18818 from the video stream (if available).
18819 @end table
18820
18821 @section v360
18822
18823 Convert 360 videos between various formats.
18824
18825 The filter accepts the following options:
18826
18827 @table @option
18828
18829 @item input
18830 @item output
18831 Set format of the input/output video.
18832
18833 Available formats:
18834
18835 @table @samp
18836
18837 @item e
18838 @item equirect
18839 Equirectangular projection.
18840
18841 @item c3x2
18842 @item c6x1
18843 @item c1x6
18844 Cubemap with 3x2/6x1/1x6 layout.
18845
18846 Format specific options:
18847
18848 @table @option
18849 @item in_pad
18850 @item out_pad
18851 Set padding proportion for the input/output cubemap. Values in decimals.
18852
18853 Example values:
18854 @table @samp
18855 @item 0
18856 No padding.
18857 @item 0.01
18858 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)
18859 @end table
18860
18861 Default value is @b{@samp{0}}.
18862
18863 @item fin_pad
18864 @item fout_pad
18865 Set fixed padding for the input/output cubemap. Values in pixels.
18866
18867 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
18868
18869 @item in_forder
18870 @item out_forder
18871 Set order of faces for the input/output cubemap. Choose one direction for each position.
18872
18873 Designation of directions:
18874 @table @samp
18875 @item r
18876 right
18877 @item l
18878 left
18879 @item u
18880 up
18881 @item d
18882 down
18883 @item f
18884 forward
18885 @item b
18886 back
18887 @end table
18888
18889 Default value is @b{@samp{rludfb}}.
18890
18891 @item in_frot
18892 @item out_frot
18893 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
18894
18895 Designation of angles:
18896 @table @samp
18897 @item 0
18898 0 degrees clockwise
18899 @item 1
18900 90 degrees clockwise
18901 @item 2
18902 180 degrees clockwise
18903 @item 3
18904 270 degrees clockwise
18905 @end table
18906
18907 Default value is @b{@samp{000000}}.
18908 @end table
18909
18910 @item eac
18911 Equi-Angular Cubemap.
18912
18913 @item flat
18914 @item gnomonic
18915 @item rectilinear
18916 Regular video.
18917
18918 Format specific options:
18919 @table @option
18920 @item h_fov
18921 @item v_fov
18922 @item d_fov
18923 Set output horizontal/vertical/diagonal field of view. Values in degrees.
18924
18925 If diagonal field of view is set it overrides horizontal and vertical field of view.
18926
18927 @item ih_fov
18928 @item iv_fov
18929 @item id_fov
18930 Set input horizontal/vertical/diagonal field of view. Values in degrees.
18931
18932 If diagonal field of view is set it overrides horizontal and vertical field of view.
18933 @end table
18934
18935 @item dfisheye
18936 Dual fisheye.
18937
18938 Format specific options:
18939 @table @option
18940 @item in_pad
18941 @item out_pad
18942 Set padding proportion. Values in decimals.
18943
18944 Example values:
18945 @table @samp
18946 @item 0
18947 No padding.
18948 @item 0.01
18949 1% padding.
18950 @end table
18951
18952 Default value is @b{@samp{0}}.
18953 @end table
18954
18955 @item barrel
18956 @item fb
18957 @item barrelsplit
18958 Facebook's 360 formats.
18959
18960 @item sg
18961 Stereographic format.
18962
18963 Format specific options:
18964 @table @option
18965 @item h_fov
18966 @item v_fov
18967 @item d_fov
18968 Set output horizontal/vertical/diagonal field of view. Values in degrees.
18969
18970 If diagonal field of view is set it overrides horizontal and vertical field of view.
18971
18972 @item ih_fov
18973 @item iv_fov
18974 @item id_fov
18975 Set input horizontal/vertical/diagonal field of view. Values in degrees.
18976
18977 If diagonal field of view is set it overrides horizontal and vertical field of view.
18978 @end table
18979
18980 @item mercator
18981 Mercator format.
18982
18983 @item ball
18984 Ball format, gives significant distortion toward the back.
18985
18986 @item hammer
18987 Hammer-Aitoff map projection format.
18988
18989 @item sinusoidal
18990 Sinusoidal map projection format.
18991
18992 @item fisheye
18993 Fisheye projection.
18994
18995 Format specific options:
18996 @table @option
18997 @item h_fov
18998 @item v_fov
18999 @item d_fov
19000 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19001
19002 If diagonal field of view is set it overrides horizontal and vertical field of view.
19003
19004 @item ih_fov
19005 @item iv_fov
19006 @item id_fov
19007 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19008
19009 If diagonal field of view is set it overrides horizontal and vertical field of view.
19010 @end table
19011
19012 @item pannini
19013 Pannini projection. @i{(output only)}
19014
19015 Format specific options:
19016 @table @option
19017 @item h_fov
19018 Set pannini parameter.
19019 @end table
19020
19021 @item cylindrical
19022 Cylindrical projection.
19023
19024 Format specific options:
19025 @table @option
19026 @item h_fov
19027 @item v_fov
19028 @item d_fov
19029 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19030
19031 If diagonal field of view is set it overrides horizontal and vertical field of view.
19032
19033 @item ih_fov
19034 @item iv_fov
19035 @item id_fov
19036 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19037
19038 If diagonal field of view is set it overrides horizontal and vertical field of view.
19039 @end table
19040
19041 @item perspective
19042 Perspective projection. @i{(output only)}
19043
19044 Format specific options:
19045 @table @option
19046 @item v_fov
19047 Set perspective parameter.
19048 @end table
19049
19050 @item tetrahedron
19051 Tetrahedron projection.
19052
19053 @item tsp
19054 Truncated square pyramid projection.
19055
19056 @item he
19057 @item hequirect
19058 Half equirectangular projection.
19059 @end table
19060
19061 @item interp
19062 Set interpolation method.@*
19063 @i{Note: more complex interpolation methods require much more memory to run.}
19064
19065 Available methods:
19066
19067 @table @samp
19068 @item near
19069 @item nearest
19070 Nearest neighbour.
19071 @item line
19072 @item linear
19073 Bilinear interpolation.
19074 @item cube
19075 @item cubic
19076 Bicubic interpolation.
19077 @item lanc
19078 @item lanczos
19079 Lanczos interpolation.
19080 @item sp16
19081 @item spline16
19082 Spline16 interpolation.
19083 @item gauss
19084 @item gaussian
19085 Gaussian interpolation.
19086 @end table
19087
19088 Default value is @b{@samp{line}}.
19089
19090 @item w
19091 @item h
19092 Set the output video resolution.
19093
19094 Default resolution depends on formats.
19095
19096 @item in_stereo
19097 @item out_stereo
19098 Set the input/output stereo format.
19099
19100 @table @samp
19101 @item 2d
19102 2D mono
19103 @item sbs
19104 Side by side
19105 @item tb
19106 Top bottom
19107 @end table
19108
19109 Default value is @b{@samp{2d}} for input and output format.
19110
19111 @item yaw
19112 @item pitch
19113 @item roll
19114 Set rotation for the output video. Values in degrees.
19115
19116 @item rorder
19117 Set rotation order for the output video. Choose one item for each position.
19118
19119 @table @samp
19120 @item y, Y
19121 yaw
19122 @item p, P
19123 pitch
19124 @item r, R
19125 roll
19126 @end table
19127
19128 Default value is @b{@samp{ypr}}.
19129
19130 @item h_flip
19131 @item v_flip
19132 @item d_flip
19133 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
19134
19135 @item ih_flip
19136 @item iv_flip
19137 Set if input video is flipped horizontally/vertically. Boolean values.
19138
19139 @item in_trans
19140 Set if input video is transposed. Boolean value, by default disabled.
19141
19142 @item out_trans
19143 Set if output video needs to be transposed. Boolean value, by default disabled.
19144
19145 @item alpha_mask
19146 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
19147 @end table
19148
19149 @subsection Examples
19150
19151 @itemize
19152 @item
19153 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
19154 @example
19155 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
19156 @end example
19157 @item
19158 Extract back view of Equi-Angular Cubemap:
19159 @example
19160 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
19161 @end example
19162 @item
19163 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
19164 @example
19165 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
19166 @end example
19167 @end itemize
19168
19169 @subsection Commands
19170
19171 This filter supports subset of above options as @ref{commands}.
19172
19173 @section vaguedenoiser
19174
19175 Apply a wavelet based denoiser.
19176
19177 It transforms each frame from the video input into the wavelet domain,
19178 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
19179 the obtained coefficients. It does an inverse wavelet transform after.
19180 Due to wavelet properties, it should give a nice smoothed result, and
19181 reduced noise, without blurring picture features.
19182
19183 This filter accepts the following options:
19184
19185 @table @option
19186 @item threshold
19187 The filtering strength. The higher, the more filtered the video will be.
19188 Hard thresholding can use a higher threshold than soft thresholding
19189 before the video looks overfiltered. Default value is 2.
19190
19191 @item method
19192 The filtering method the filter will use.
19193
19194 It accepts the following values:
19195 @table @samp
19196 @item hard
19197 All values under the threshold will be zeroed.
19198
19199 @item soft
19200 All values under the threshold will be zeroed. All values above will be
19201 reduced by the threshold.
19202
19203 @item garrote
19204 Scales or nullifies coefficients - intermediary between (more) soft and
19205 (less) hard thresholding.
19206 @end table
19207
19208 Default is garrote.
19209
19210 @item nsteps
19211 Number of times, the wavelet will decompose the picture. Picture can't
19212 be decomposed beyond a particular point (typically, 8 for a 640x480
19213 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
19214
19215 @item percent
19216 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
19217
19218 @item planes
19219 A list of the planes to process. By default all planes are processed.
19220 @end table
19221
19222 @section vectorscope
19223
19224 Display 2 color component values in the two dimensional graph (which is called
19225 a vectorscope).
19226
19227 This filter accepts the following options:
19228
19229 @table @option
19230 @item mode, m
19231 Set vectorscope mode.
19232
19233 It accepts the following values:
19234 @table @samp
19235 @item gray
19236 @item tint
19237 Gray values are displayed on graph, higher brightness means more pixels have
19238 same component color value on location in graph. This is the default mode.
19239
19240 @item color
19241 Gray values are displayed on graph. Surrounding pixels values which are not
19242 present in video frame are drawn in gradient of 2 color components which are
19243 set by option @code{x} and @code{y}. The 3rd color component is static.
19244
19245 @item color2
19246 Actual color components values present in video frame are displayed on graph.
19247
19248 @item color3
19249 Similar as color2 but higher frequency of same values @code{x} and @code{y}
19250 on graph increases value of another color component, which is luminance by
19251 default values of @code{x} and @code{y}.
19252
19253 @item color4
19254 Actual colors present in video frame are displayed on graph. If two different
19255 colors map to same position on graph then color with higher value of component
19256 not present in graph is picked.
19257
19258 @item color5
19259 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
19260 component picked from radial gradient.
19261 @end table
19262
19263 @item x
19264 Set which color component will be represented on X-axis. Default is @code{1}.
19265
19266 @item y
19267 Set which color component will be represented on Y-axis. Default is @code{2}.
19268
19269 @item intensity, i
19270 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
19271 of color component which represents frequency of (X, Y) location in graph.
19272
19273 @item envelope, e
19274 @table @samp
19275 @item none
19276 No envelope, this is default.
19277
19278 @item instant
19279 Instant envelope, even darkest single pixel will be clearly highlighted.
19280
19281 @item peak
19282 Hold maximum and minimum values presented in graph over time. This way you
19283 can still spot out of range values without constantly looking at vectorscope.
19284
19285 @item peak+instant
19286 Peak and instant envelope combined together.
19287 @end table
19288
19289 @item graticule, g
19290 Set what kind of graticule to draw.
19291 @table @samp
19292 @item none
19293 @item green
19294 @item color
19295 @item invert
19296 @end table
19297
19298 @item opacity, o
19299 Set graticule opacity.
19300
19301 @item flags, f
19302 Set graticule flags.
19303
19304 @table @samp
19305 @item white
19306 Draw graticule for white point.
19307
19308 @item black
19309 Draw graticule for black point.
19310
19311 @item name
19312 Draw color points short names.
19313 @end table
19314
19315 @item bgopacity, b
19316 Set background opacity.
19317
19318 @item lthreshold, l
19319 Set low threshold for color component not represented on X or Y axis.
19320 Values lower than this value will be ignored. Default is 0.
19321 Note this value is multiplied with actual max possible value one pixel component
19322 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
19323 is 0.1 * 255 = 25.
19324
19325 @item hthreshold, h
19326 Set high threshold for color component not represented on X or Y axis.
19327 Values higher than this value will be ignored. Default is 1.
19328 Note this value is multiplied with actual max possible value one pixel component
19329 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
19330 is 0.9 * 255 = 230.
19331
19332 @item colorspace, c
19333 Set what kind of colorspace to use when drawing graticule.
19334 @table @samp
19335 @item auto
19336 @item 601
19337 @item 709
19338 @end table
19339 Default is auto.
19340
19341 @item tint0, t0
19342 @item tint1, t1
19343 Set color tint for gray/tint vectorscope mode. By default both options are zero.
19344 This means no tint, and output will remain gray.
19345 @end table
19346
19347 @anchor{vidstabdetect}
19348 @section vidstabdetect
19349
19350 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
19351 @ref{vidstabtransform} for pass 2.
19352
19353 This filter generates a file with relative translation and rotation
19354 transform information about subsequent frames, which is then used by
19355 the @ref{vidstabtransform} filter.
19356
19357 To enable compilation of this filter you need to configure FFmpeg with
19358 @code{--enable-libvidstab}.
19359
19360 This filter accepts the following options:
19361
19362 @table @option
19363 @item result
19364 Set the path to the file used to write the transforms information.
19365 Default value is @file{transforms.trf}.
19366
19367 @item shakiness
19368 Set how shaky the video is and how quick the camera is. It accepts an
19369 integer in the range 1-10, a value of 1 means little shakiness, a
19370 value of 10 means strong shakiness. Default value is 5.
19371
19372 @item accuracy
19373 Set the accuracy of the detection process. It must be a value in the
19374 range 1-15. A value of 1 means low accuracy, a value of 15 means high
19375 accuracy. Default value is 15.
19376
19377 @item stepsize
19378 Set stepsize of the search process. The region around minimum is
19379 scanned with 1 pixel resolution. Default value is 6.
19380
19381 @item mincontrast
19382 Set minimum contrast. Below this value a local measurement field is
19383 discarded. Must be a floating point value in the range 0-1. Default
19384 value is 0.3.
19385
19386 @item tripod
19387 Set reference frame number for tripod mode.
19388
19389 If enabled, the motion of the frames is compared to a reference frame
19390 in the filtered stream, identified by the specified number. The idea
19391 is to compensate all movements in a more-or-less static scene and keep
19392 the camera view absolutely still.
19393
19394 If set to 0, it is disabled. The frames are counted starting from 1.
19395
19396 @item show
19397 Show fields and transforms in the resulting frames. It accepts an
19398 integer in the range 0-2. Default value is 0, which disables any
19399 visualization.
19400 @end table
19401
19402 @subsection Examples
19403
19404 @itemize
19405 @item
19406 Use default values:
19407 @example
19408 vidstabdetect
19409 @end example
19410
19411 @item
19412 Analyze strongly shaky movie and put the results in file
19413 @file{mytransforms.trf}:
19414 @example
19415 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
19416 @end example
19417
19418 @item
19419 Visualize the result of internal transformations in the resulting
19420 video:
19421 @example
19422 vidstabdetect=show=1
19423 @end example
19424
19425 @item
19426 Analyze a video with medium shakiness using @command{ffmpeg}:
19427 @example
19428 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
19429 @end example
19430 @end itemize
19431
19432 @anchor{vidstabtransform}
19433 @section vidstabtransform
19434
19435 Video stabilization/deshaking: pass 2 of 2,
19436 see @ref{vidstabdetect} for pass 1.
19437
19438 Read a file with transform information for each frame and
19439 apply/compensate them. Together with the @ref{vidstabdetect}
19440 filter this can be used to deshake videos. See also
19441 @url{http://public.hronopik.de/vid.stab}. It is important to also use
19442 the @ref{unsharp} filter, see below.
19443
19444 To enable compilation of this filter you need to configure FFmpeg with
19445 @code{--enable-libvidstab}.
19446
19447 @subsection Options
19448
19449 @table @option
19450 @item input
19451 Set path to the file used to read the transforms. Default value is
19452 @file{transforms.trf}.
19453
19454 @item smoothing
19455 Set the number of frames (value*2 + 1) used for lowpass filtering the
19456 camera movements. Default value is 10.
19457
19458 For example a number of 10 means that 21 frames are used (10 in the
19459 past and 10 in the future) to smoothen the motion in the video. A
19460 larger value leads to a smoother video, but limits the acceleration of
19461 the camera (pan/tilt movements). 0 is a special case where a static
19462 camera is simulated.
19463
19464 @item optalgo
19465 Set the camera path optimization algorithm.
19466
19467 Accepted values are:
19468 @table @samp
19469 @item gauss
19470 gaussian kernel low-pass filter on camera motion (default)
19471 @item avg
19472 averaging on transformations
19473 @end table
19474
19475 @item maxshift
19476 Set maximal number of pixels to translate frames. Default value is -1,
19477 meaning no limit.
19478
19479 @item maxangle
19480 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
19481 value is -1, meaning no limit.
19482
19483 @item crop
19484 Specify how to deal with borders that may be visible due to movement
19485 compensation.
19486
19487 Available values are:
19488 @table @samp
19489 @item keep
19490 keep image information from previous frame (default)
19491 @item black
19492 fill the border black
19493 @end table
19494
19495 @item invert
19496 Invert transforms if set to 1. Default value is 0.
19497
19498 @item relative
19499 Consider transforms as relative to previous frame if set to 1,
19500 absolute if set to 0. Default value is 0.
19501
19502 @item zoom
19503 Set percentage to zoom. A positive value will result in a zoom-in
19504 effect, a negative value in a zoom-out effect. Default value is 0 (no
19505 zoom).
19506
19507 @item optzoom
19508 Set optimal zooming to avoid borders.
19509
19510 Accepted values are:
19511 @table @samp
19512 @item 0
19513 disabled
19514 @item 1
19515 optimal static zoom value is determined (only very strong movements
19516 will lead to visible borders) (default)
19517 @item 2
19518 optimal adaptive zoom value is determined (no borders will be
19519 visible), see @option{zoomspeed}
19520 @end table
19521
19522 Note that the value given at zoom is added to the one calculated here.
19523
19524 @item zoomspeed
19525 Set percent to zoom maximally each frame (enabled when
19526 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
19527 0.25.
19528
19529 @item interpol
19530 Specify type of interpolation.
19531
19532 Available values are:
19533 @table @samp
19534 @item no
19535 no interpolation
19536 @item linear
19537 linear only horizontal
19538 @item bilinear
19539 linear in both directions (default)
19540 @item bicubic
19541 cubic in both directions (slow)
19542 @end table
19543
19544 @item tripod
19545 Enable virtual tripod mode if set to 1, which is equivalent to
19546 @code{relative=0:smoothing=0}. Default value is 0.
19547
19548 Use also @code{tripod} option of @ref{vidstabdetect}.
19549
19550 @item debug
19551 Increase log verbosity if set to 1. Also the detected global motions
19552 are written to the temporary file @file{global_motions.trf}. Default
19553 value is 0.
19554 @end table
19555
19556 @subsection Examples
19557
19558 @itemize
19559 @item
19560 Use @command{ffmpeg} for a typical stabilization with default values:
19561 @example
19562 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
19563 @end example
19564
19565 Note the use of the @ref{unsharp} filter which is always recommended.
19566
19567 @item
19568 Zoom in a bit more and load transform data from a given file:
19569 @example
19570 vidstabtransform=zoom=5:input="mytransforms.trf"
19571 @end example
19572
19573 @item
19574 Smoothen the video even more:
19575 @example
19576 vidstabtransform=smoothing=30
19577 @end example
19578 @end itemize
19579
19580 @section vflip
19581
19582 Flip the input video vertically.
19583
19584 For example, to vertically flip a video with @command{ffmpeg}:
19585 @example
19586 ffmpeg -i in.avi -vf "vflip" out.avi
19587 @end example
19588
19589 @section vfrdet
19590
19591 Detect variable frame rate video.
19592
19593 This filter tries to detect if the input is variable or constant frame rate.
19594
19595 At end it will output number of frames detected as having variable delta pts,
19596 and ones with constant delta pts.
19597 If there was frames with variable delta, than it will also show min, max and
19598 average delta encountered.
19599
19600 @section vibrance
19601
19602 Boost or alter saturation.
19603
19604 The filter accepts the following options:
19605 @table @option
19606 @item intensity
19607 Set strength of boost if positive value or strength of alter if negative value.
19608 Default is 0. Allowed range is from -2 to 2.
19609
19610 @item rbal
19611 Set the red balance. Default is 1. Allowed range is from -10 to 10.
19612
19613 @item gbal
19614 Set the green balance. Default is 1. Allowed range is from -10 to 10.
19615
19616 @item bbal
19617 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
19618
19619 @item rlum
19620 Set the red luma coefficient.
19621
19622 @item glum
19623 Set the green luma coefficient.
19624
19625 @item blum
19626 Set the blue luma coefficient.
19627
19628 @item alternate
19629 If @code{intensity} is negative and this is set to 1, colors will change,
19630 otherwise colors will be less saturated, more towards gray.
19631 @end table
19632
19633 @subsection Commands
19634
19635 This filter supports the all above options as @ref{commands}.
19636
19637 @anchor{vignette}
19638 @section vignette
19639
19640 Make or reverse a natural vignetting effect.
19641
19642 The filter accepts the following options:
19643
19644 @table @option
19645 @item angle, a
19646 Set lens angle expression as a number of radians.
19647
19648 The value is clipped in the @code{[0,PI/2]} range.
19649
19650 Default value: @code{"PI/5"}
19651
19652 @item x0
19653 @item y0
19654 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
19655 by default.
19656
19657 @item mode
19658 Set forward/backward mode.
19659
19660 Available modes are:
19661 @table @samp
19662 @item forward
19663 The larger the distance from the central point, the darker the image becomes.
19664
19665 @item backward
19666 The larger the distance from the central point, the brighter the image becomes.
19667 This can be used to reverse a vignette effect, though there is no automatic
19668 detection to extract the lens @option{angle} and other settings (yet). It can
19669 also be used to create a burning effect.
19670 @end table
19671
19672 Default value is @samp{forward}.
19673
19674 @item eval
19675 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
19676
19677 It accepts the following values:
19678 @table @samp
19679 @item init
19680 Evaluate expressions only once during the filter initialization.
19681
19682 @item frame
19683 Evaluate expressions for each incoming frame. This is way slower than the
19684 @samp{init} mode since it requires all the scalers to be re-computed, but it
19685 allows advanced dynamic expressions.
19686 @end table
19687
19688 Default value is @samp{init}.
19689
19690 @item dither
19691 Set dithering to reduce the circular banding effects. Default is @code{1}
19692 (enabled).
19693
19694 @item aspect
19695 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
19696 Setting this value to the SAR of the input will make a rectangular vignetting
19697 following the dimensions of the video.
19698
19699 Default is @code{1/1}.
19700 @end table
19701
19702 @subsection Expressions
19703
19704 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
19705 following parameters.
19706
19707 @table @option
19708 @item w
19709 @item h
19710 input width and height
19711
19712 @item n
19713 the number of input frame, starting from 0
19714
19715 @item pts
19716 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
19717 @var{TB} units, NAN if undefined
19718
19719 @item r
19720 frame rate of the input video, NAN if the input frame rate is unknown
19721
19722 @item t
19723 the PTS (Presentation TimeStamp) of the filtered video frame,
19724 expressed in seconds, NAN if undefined
19725
19726 @item tb
19727 time base of the input video
19728 @end table
19729
19730
19731 @subsection Examples
19732
19733 @itemize
19734 @item
19735 Apply simple strong vignetting effect:
19736 @example
19737 vignette=PI/4
19738 @end example
19739
19740 @item
19741 Make a flickering vignetting:
19742 @example
19743 vignette='PI/4+random(1)*PI/50':eval=frame
19744 @end example
19745
19746 @end itemize
19747
19748 @section vmafmotion
19749
19750 Obtain the average VMAF motion score of a video.
19751 It is one of the component metrics of VMAF.
19752
19753 The obtained average motion score is printed through the logging system.
19754
19755 The filter accepts the following options:
19756
19757 @table @option
19758 @item stats_file
19759 If specified, the filter will use the named file to save the motion score of
19760 each frame with respect to the previous frame.
19761 When filename equals "-" the data is sent to standard output.
19762 @end table
19763
19764 Example:
19765 @example
19766 ffmpeg -i ref.mpg -vf vmafmotion -f null -
19767 @end example
19768
19769 @section vstack
19770 Stack input videos vertically.
19771
19772 All streams must be of same pixel format and of same width.
19773
19774 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
19775 to create same output.
19776
19777 The filter accepts the following options:
19778
19779 @table @option
19780 @item inputs
19781 Set number of input streams. Default is 2.
19782
19783 @item shortest
19784 If set to 1, force the output to terminate when the shortest input
19785 terminates. Default value is 0.
19786 @end table
19787
19788 @section w3fdif
19789
19790 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
19791 Deinterlacing Filter").
19792
19793 Based on the process described by Martin Weston for BBC R&D, and
19794 implemented based on the de-interlace algorithm written by Jim
19795 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
19796 uses filter coefficients calculated by BBC R&D.
19797
19798 This filter uses field-dominance information in frame to decide which
19799 of each pair of fields to place first in the output.
19800 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
19801
19802 There are two sets of filter coefficients, so called "simple"
19803 and "complex". Which set of filter coefficients is used can
19804 be set by passing an optional parameter:
19805
19806 @table @option
19807 @item filter
19808 Set the interlacing filter coefficients. Accepts one of the following values:
19809
19810 @table @samp
19811 @item simple
19812 Simple filter coefficient set.
19813 @item complex
19814 More-complex filter coefficient set.
19815 @end table
19816 Default value is @samp{complex}.
19817
19818 @item deint
19819 Specify which frames to deinterlace. Accepts one of the following values:
19820
19821 @table @samp
19822 @item all
19823 Deinterlace all frames,
19824 @item interlaced
19825 Only deinterlace frames marked as interlaced.
19826 @end table
19827
19828 Default value is @samp{all}.
19829 @end table
19830
19831 @section waveform
19832 Video waveform monitor.
19833
19834 The waveform monitor plots color component intensity. By default luminance
19835 only. Each column of the waveform corresponds to a column of pixels in the
19836 source video.
19837
19838 It accepts the following options:
19839
19840 @table @option
19841 @item mode, m
19842 Can be either @code{row}, or @code{column}. Default is @code{column}.
19843 In row mode, the graph on the left side represents color component value 0 and
19844 the right side represents value = 255. In column mode, the top side represents
19845 color component value = 0 and bottom side represents value = 255.
19846
19847 @item intensity, i
19848 Set intensity. Smaller values are useful to find out how many values of the same
19849 luminance are distributed across input rows/columns.
19850 Default value is @code{0.04}. Allowed range is [0, 1].
19851
19852 @item mirror, r
19853 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
19854 In mirrored mode, higher values will be represented on the left
19855 side for @code{row} mode and at the top for @code{column} mode. Default is
19856 @code{1} (mirrored).
19857
19858 @item display, d
19859 Set display mode.
19860 It accepts the following values:
19861 @table @samp
19862 @item overlay
19863 Presents information identical to that in the @code{parade}, except
19864 that the graphs representing color components are superimposed directly
19865 over one another.
19866
19867 This display mode makes it easier to spot relative differences or similarities
19868 in overlapping areas of the color components that are supposed to be identical,
19869 such as neutral whites, grays, or blacks.
19870
19871 @item stack
19872 Display separate graph for the color components side by side in
19873 @code{row} mode or one below the other in @code{column} mode.
19874
19875 @item parade
19876 Display separate graph for the color components side by side in
19877 @code{column} mode or one below the other in @code{row} mode.
19878
19879 Using this display mode makes it easy to spot color casts in the highlights
19880 and shadows of an image, by comparing the contours of the top and the bottom
19881 graphs of each waveform. Since whites, grays, and blacks are characterized
19882 by exactly equal amounts of red, green, and blue, neutral areas of the picture
19883 should display three waveforms of roughly equal width/height. If not, the
19884 correction is easy to perform by making level adjustments the three waveforms.
19885 @end table
19886 Default is @code{stack}.
19887
19888 @item components, c
19889 Set which color components to display. Default is 1, which means only luminance
19890 or red color component if input is in RGB colorspace. If is set for example to
19891 7 it will display all 3 (if) available color components.
19892
19893 @item envelope, e
19894 @table @samp
19895 @item none
19896 No envelope, this is default.
19897
19898 @item instant
19899 Instant envelope, minimum and maximum values presented in graph will be easily
19900 visible even with small @code{step} value.
19901
19902 @item peak
19903 Hold minimum and maximum values presented in graph across time. This way you
19904 can still spot out of range values without constantly looking at waveforms.
19905
19906 @item peak+instant
19907 Peak and instant envelope combined together.
19908 @end table
19909
19910 @item filter, f
19911 @table @samp
19912 @item lowpass
19913 No filtering, this is default.
19914
19915 @item flat
19916 Luma and chroma combined together.
19917
19918 @item aflat
19919 Similar as above, but shows difference between blue and red chroma.
19920
19921 @item xflat
19922 Similar as above, but use different colors.
19923
19924 @item yflat
19925 Similar as above, but again with different colors.
19926
19927 @item chroma
19928 Displays only chroma.
19929
19930 @item color
19931 Displays actual color value on waveform.
19932
19933 @item acolor
19934 Similar as above, but with luma showing frequency of chroma values.
19935 @end table
19936
19937 @item graticule, g
19938 Set which graticule to display.
19939
19940 @table @samp
19941 @item none
19942 Do not display graticule.
19943
19944 @item green
19945 Display green graticule showing legal broadcast ranges.
19946
19947 @item orange
19948 Display orange graticule showing legal broadcast ranges.
19949
19950 @item invert
19951 Display invert graticule showing legal broadcast ranges.
19952 @end table
19953
19954 @item opacity, o
19955 Set graticule opacity.
19956
19957 @item flags, fl
19958 Set graticule flags.
19959
19960 @table @samp
19961 @item numbers
19962 Draw numbers above lines. By default enabled.
19963
19964 @item dots
19965 Draw dots instead of lines.
19966 @end table
19967
19968 @item scale, s
19969 Set scale used for displaying graticule.
19970
19971 @table @samp
19972 @item digital
19973 @item millivolts
19974 @item ire
19975 @end table
19976 Default is digital.
19977
19978 @item bgopacity, b
19979 Set background opacity.
19980
19981 @item tint0, t0
19982 @item tint1, t1
19983 Set tint for output.
19984 Only used with lowpass filter and when display is not overlay and input
19985 pixel formats are not RGB.
19986 @end table
19987
19988 @section weave, doubleweave
19989
19990 The @code{weave} takes a field-based video input and join
19991 each two sequential fields into single frame, producing a new double
19992 height clip with half the frame rate and half the frame count.
19993
19994 The @code{doubleweave} works same as @code{weave} but without
19995 halving frame rate and frame count.
19996
19997 It accepts the following option:
19998
19999 @table @option
20000 @item first_field
20001 Set first field. Available values are:
20002
20003 @table @samp
20004 @item top, t
20005 Set the frame as top-field-first.
20006
20007 @item bottom, b
20008 Set the frame as bottom-field-first.
20009 @end table
20010 @end table
20011
20012 @subsection Examples
20013
20014 @itemize
20015 @item
20016 Interlace video using @ref{select} and @ref{separatefields} filter:
20017 @example
20018 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
20019 @end example
20020 @end itemize
20021
20022 @section xbr
20023 Apply the xBR high-quality magnification filter which is designed for pixel
20024 art. It follows a set of edge-detection rules, see
20025 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
20026
20027 It accepts the following option:
20028
20029 @table @option
20030 @item n
20031 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
20032 @code{3xBR} and @code{4} for @code{4xBR}.
20033 Default is @code{3}.
20034 @end table
20035
20036 @section xfade
20037
20038 Apply cross fade from one input video stream to another input video stream.
20039 The cross fade is applied for specified duration.
20040
20041 The filter accepts the following options:
20042
20043 @table @option
20044 @item transition
20045 Set one of available transition effects:
20046
20047 @table @samp
20048 @item custom
20049 @item fade
20050 @item wipeleft
20051 @item wiperight
20052 @item wipeup
20053 @item wipedown
20054 @item slideleft
20055 @item slideright
20056 @item slideup
20057 @item slidedown
20058 @item circlecrop
20059 @item rectcrop
20060 @item distance
20061 @item fadeblack
20062 @item fadewhite
20063 @item radial
20064 @item smoothleft
20065 @item smoothright
20066 @item smoothup
20067 @item smoothdown
20068 @item circleopen
20069 @item circleclose
20070 @item vertopen
20071 @item vertclose
20072 @item horzopen
20073 @item horzclose
20074 @item dissolve
20075 @item pixelize
20076 @item diagtl
20077 @item diagtr
20078 @item diagbl
20079 @item diagbr
20080 @end table
20081 Default transition effect is fade.
20082
20083 @item duration
20084 Set cross fade duration in seconds.
20085 Default duration is 1 second.
20086
20087 @item offset
20088 Set cross fade start relative to first input stream in seconds.
20089 Default offset is 0.
20090
20091 @item expr
20092 Set expression for custom transition effect.
20093
20094 The expressions can use the following variables and functions:
20095
20096 @table @option
20097 @item X
20098 @item Y
20099 The coordinates of the current sample.
20100
20101 @item W
20102 @item H
20103 The width and height of the image.
20104
20105 @item P
20106 Progress of transition effect.
20107
20108 @item PLANE
20109 Currently processed plane.
20110
20111 @item A
20112 Return value of first input at current location and plane.
20113
20114 @item B
20115 Return value of second input at current location and plane.
20116
20117 @item a0(x, y)
20118 @item a1(x, y)
20119 @item a2(x, y)
20120 @item a3(x, y)
20121 Return the value of the pixel at location (@var{x},@var{y}) of the
20122 first/second/third/fourth component of first input.
20123
20124 @item b0(x, y)
20125 @item b1(x, y)
20126 @item b2(x, y)
20127 @item b3(x, y)
20128 Return the value of the pixel at location (@var{x},@var{y}) of the
20129 first/second/third/fourth component of second input.
20130 @end table
20131 @end table
20132
20133 @subsection Examples
20134
20135 @itemize
20136 @item
20137 Cross fade from one input video to another input video, with fade transition and duration of transition
20138 of 2 seconds starting at offset of 5 seconds:
20139 @example
20140 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
20141 @end example
20142 @end itemize
20143
20144 @section xmedian
20145 Pick median pixels from several input videos.
20146
20147 The filter accepts the following options:
20148
20149 @table @option
20150 @item inputs
20151 Set number of inputs.
20152 Default is 3. Allowed range is from 3 to 255.
20153 If number of inputs is even number, than result will be mean value between two median values.
20154
20155 @item planes
20156 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
20157
20158 @item percentile
20159 Set median percentile. Default value is @code{0.5}.
20160 Default value of @code{0.5} will pick always median values, while @code{0} will pick
20161 minimum values, and @code{1} maximum values.
20162 @end table
20163
20164 @section xstack
20165 Stack video inputs into custom layout.
20166
20167 All streams must be of same pixel format.
20168
20169 The filter accepts the following options:
20170
20171 @table @option
20172 @item inputs
20173 Set number of input streams. Default is 2.
20174
20175 @item layout
20176 Specify layout of inputs.
20177 This option requires the desired layout configuration to be explicitly set by the user.
20178 This sets position of each video input in output. Each input
20179 is separated by '|'.
20180 The first number represents the column, and the second number represents the row.
20181 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
20182 where X is video input from which to take width or height.
20183 Multiple values can be used when separated by '+'. In such
20184 case values are summed together.
20185
20186 Note that if inputs are of different sizes gaps may appear, as not all of
20187 the output video frame will be filled. Similarly, videos can overlap each
20188 other if their position doesn't leave enough space for the full frame of
20189 adjoining videos.
20190
20191 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
20192 a layout must be set by the user.
20193
20194 @item shortest
20195 If set to 1, force the output to terminate when the shortest input
20196 terminates. Default value is 0.
20197
20198 @item fill
20199 If set to valid color, all unused pixels will be filled with that color.
20200 By default fill is set to none, so it is disabled.
20201 @end table
20202
20203 @subsection Examples
20204
20205 @itemize
20206 @item
20207 Display 4 inputs into 2x2 grid.
20208
20209 Layout:
20210 @example
20211 input1(0, 0)  | input3(w0, 0)
20212 input2(0, h0) | input4(w0, h0)
20213 @end example
20214
20215 @example
20216 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
20217 @end example
20218
20219 Note that if inputs are of different sizes, gaps or overlaps may occur.
20220
20221 @item
20222 Display 4 inputs into 1x4 grid.
20223
20224 Layout:
20225 @example
20226 input1(0, 0)
20227 input2(0, h0)
20228 input3(0, h0+h1)
20229 input4(0, h0+h1+h2)
20230 @end example
20231
20232 @example
20233 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
20234 @end example
20235
20236 Note that if inputs are of different widths, unused space will appear.
20237
20238 @item
20239 Display 9 inputs into 3x3 grid.
20240
20241 Layout:
20242 @example
20243 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
20244 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
20245 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
20246 @end example
20247
20248 @example
20249 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
20250 @end example
20251
20252 Note that if inputs are of different sizes, gaps or overlaps may occur.
20253
20254 @item
20255 Display 16 inputs into 4x4 grid.
20256
20257 Layout:
20258 @example
20259 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
20260 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
20261 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
20262 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
20263 @end example
20264
20265 @example
20266 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|
20267 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
20268 @end example
20269
20270 Note that if inputs are of different sizes, gaps or overlaps may occur.
20271
20272 @end itemize
20273
20274 @anchor{yadif}
20275 @section yadif
20276
20277 Deinterlace the input video ("yadif" means "yet another deinterlacing
20278 filter").
20279
20280 It accepts the following parameters:
20281
20282
20283 @table @option
20284
20285 @item mode
20286 The interlacing mode to adopt. It accepts one of the following values:
20287
20288 @table @option
20289 @item 0, send_frame
20290 Output one frame for each frame.
20291 @item 1, send_field
20292 Output one frame for each field.
20293 @item 2, send_frame_nospatial
20294 Like @code{send_frame}, but it skips the spatial interlacing check.
20295 @item 3, send_field_nospatial
20296 Like @code{send_field}, but it skips the spatial interlacing check.
20297 @end table
20298
20299 The default value is @code{send_frame}.
20300
20301 @item parity
20302 The picture field parity assumed for the input interlaced video. It accepts one
20303 of the following values:
20304
20305 @table @option
20306 @item 0, tff
20307 Assume the top field is first.
20308 @item 1, bff
20309 Assume the bottom field is first.
20310 @item -1, auto
20311 Enable automatic detection of field parity.
20312 @end table
20313
20314 The default value is @code{auto}.
20315 If the interlacing is unknown or the decoder does not export this information,
20316 top field first will be assumed.
20317
20318 @item deint
20319 Specify which frames to deinterlace. Accepts one of the following
20320 values:
20321
20322 @table @option
20323 @item 0, all
20324 Deinterlace all frames.
20325 @item 1, interlaced
20326 Only deinterlace frames marked as interlaced.
20327 @end table
20328
20329 The default value is @code{all}.
20330 @end table
20331
20332 @section yadif_cuda
20333
20334 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
20335 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
20336 and/or nvenc.
20337
20338 It accepts the following parameters:
20339
20340
20341 @table @option
20342
20343 @item mode
20344 The interlacing mode to adopt. It accepts one of the following values:
20345
20346 @table @option
20347 @item 0, send_frame
20348 Output one frame for each frame.
20349 @item 1, send_field
20350 Output one frame for each field.
20351 @item 2, send_frame_nospatial
20352 Like @code{send_frame}, but it skips the spatial interlacing check.
20353 @item 3, send_field_nospatial
20354 Like @code{send_field}, but it skips the spatial interlacing check.
20355 @end table
20356
20357 The default value is @code{send_frame}.
20358
20359 @item parity
20360 The picture field parity assumed for the input interlaced video. It accepts one
20361 of the following values:
20362
20363 @table @option
20364 @item 0, tff
20365 Assume the top field is first.
20366 @item 1, bff
20367 Assume the bottom field is first.
20368 @item -1, auto
20369 Enable automatic detection of field parity.
20370 @end table
20371
20372 The default value is @code{auto}.
20373 If the interlacing is unknown or the decoder does not export this information,
20374 top field first will be assumed.
20375
20376 @item deint
20377 Specify which frames to deinterlace. Accepts one of the following
20378 values:
20379
20380 @table @option
20381 @item 0, all
20382 Deinterlace all frames.
20383 @item 1, interlaced
20384 Only deinterlace frames marked as interlaced.
20385 @end table
20386
20387 The default value is @code{all}.
20388 @end table
20389
20390 @section yaepblur
20391
20392 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
20393 The algorithm is described in
20394 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
20395
20396 It accepts the following parameters:
20397
20398 @table @option
20399 @item radius, r
20400 Set the window radius. Default value is 3.
20401
20402 @item planes, p
20403 Set which planes to filter. Default is only the first plane.
20404
20405 @item sigma, s
20406 Set blur strength. Default value is 128.
20407 @end table
20408
20409 @subsection Commands
20410 This filter supports same @ref{commands} as options.
20411
20412 @section zoompan
20413
20414 Apply Zoom & Pan effect.
20415
20416 This filter accepts the following options:
20417
20418 @table @option
20419 @item zoom, z
20420 Set the zoom expression. Range is 1-10. Default is 1.
20421
20422 @item x
20423 @item y
20424 Set the x and y expression. Default is 0.
20425
20426 @item d
20427 Set the duration expression in number of frames.
20428 This sets for how many number of frames effect will last for
20429 single input image.
20430
20431 @item s
20432 Set the output image size, default is 'hd720'.
20433
20434 @item fps
20435 Set the output frame rate, default is '25'.
20436 @end table
20437
20438 Each expression can contain the following constants:
20439
20440 @table @option
20441 @item in_w, iw
20442 Input width.
20443
20444 @item in_h, ih
20445 Input height.
20446
20447 @item out_w, ow
20448 Output width.
20449
20450 @item out_h, oh
20451 Output height.
20452
20453 @item in
20454 Input frame count.
20455
20456 @item on
20457 Output frame count.
20458
20459 @item x
20460 @item y
20461 Last calculated 'x' and 'y' position from 'x' and 'y' expression
20462 for current input frame.
20463
20464 @item px
20465 @item py
20466 'x' and 'y' of last output frame of previous input frame or 0 when there was
20467 not yet such frame (first input frame).
20468
20469 @item zoom
20470 Last calculated zoom from 'z' expression for current input frame.
20471
20472 @item pzoom
20473 Last calculated zoom of last output frame of previous input frame.
20474
20475 @item duration
20476 Number of output frames for current input frame. Calculated from 'd' expression
20477 for each input frame.
20478
20479 @item pduration
20480 number of output frames created for previous input frame
20481
20482 @item a
20483 Rational number: input width / input height
20484
20485 @item sar
20486 sample aspect ratio
20487
20488 @item dar
20489 display aspect ratio
20490
20491 @end table
20492
20493 @subsection Examples
20494
20495 @itemize
20496 @item
20497 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
20498 @example
20499 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
20500 @end example
20501
20502 @item
20503 Zoom-in up to 1.5 and pan always at center of picture:
20504 @example
20505 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20506 @end example
20507
20508 @item
20509 Same as above but without pausing:
20510 @example
20511 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20512 @end example
20513 @end itemize
20514
20515 @anchor{zscale}
20516 @section zscale
20517 Scale (resize) the input video, using the z.lib library:
20518 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
20519 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
20520
20521 The zscale filter forces the output display aspect ratio to be the same
20522 as the input, by changing the output sample aspect ratio.
20523
20524 If the input image format is different from the format requested by
20525 the next filter, the zscale filter will convert the input to the
20526 requested format.
20527
20528 @subsection Options
20529 The filter accepts the following options.
20530
20531 @table @option
20532 @item width, w
20533 @item height, h
20534 Set the output video dimension expression. Default value is the input
20535 dimension.
20536
20537 If the @var{width} or @var{w} value is 0, the input width is used for
20538 the output. If the @var{height} or @var{h} value is 0, the input height
20539 is used for the output.
20540
20541 If one and only one of the values is -n with n >= 1, the zscale filter
20542 will use a value that maintains the aspect ratio of the input image,
20543 calculated from the other specified dimension. After that it will,
20544 however, make sure that the calculated dimension is divisible by n and
20545 adjust the value if necessary.
20546
20547 If both values are -n with n >= 1, the behavior will be identical to
20548 both values being set to 0 as previously detailed.
20549
20550 See below for the list of accepted constants for use in the dimension
20551 expression.
20552
20553 @item size, s
20554 Set the video size. For the syntax of this option, check the
20555 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20556
20557 @item dither, d
20558 Set the dither type.
20559
20560 Possible values are:
20561 @table @var
20562 @item none
20563 @item ordered
20564 @item random
20565 @item error_diffusion
20566 @end table
20567
20568 Default is none.
20569
20570 @item filter, f
20571 Set the resize filter type.
20572
20573 Possible values are:
20574 @table @var
20575 @item point
20576 @item bilinear
20577 @item bicubic
20578 @item spline16
20579 @item spline36
20580 @item lanczos
20581 @end table
20582
20583 Default is bilinear.
20584
20585 @item range, r
20586 Set the color range.
20587
20588 Possible values are:
20589 @table @var
20590 @item input
20591 @item limited
20592 @item full
20593 @end table
20594
20595 Default is same as input.
20596
20597 @item primaries, p
20598 Set the color primaries.
20599
20600 Possible values are:
20601 @table @var
20602 @item input
20603 @item 709
20604 @item unspecified
20605 @item 170m
20606 @item 240m
20607 @item 2020
20608 @end table
20609
20610 Default is same as input.
20611
20612 @item transfer, t
20613 Set the transfer characteristics.
20614
20615 Possible values are:
20616 @table @var
20617 @item input
20618 @item 709
20619 @item unspecified
20620 @item 601
20621 @item linear
20622 @item 2020_10
20623 @item 2020_12
20624 @item smpte2084
20625 @item iec61966-2-1
20626 @item arib-std-b67
20627 @end table
20628
20629 Default is same as input.
20630
20631 @item matrix, m
20632 Set the colorspace matrix.
20633
20634 Possible value are:
20635 @table @var
20636 @item input
20637 @item 709
20638 @item unspecified
20639 @item 470bg
20640 @item 170m
20641 @item 2020_ncl
20642 @item 2020_cl
20643 @end table
20644
20645 Default is same as input.
20646
20647 @item rangein, rin
20648 Set the input color range.
20649
20650 Possible values are:
20651 @table @var
20652 @item input
20653 @item limited
20654 @item full
20655 @end table
20656
20657 Default is same as input.
20658
20659 @item primariesin, pin
20660 Set the input color primaries.
20661
20662 Possible values are:
20663 @table @var
20664 @item input
20665 @item 709
20666 @item unspecified
20667 @item 170m
20668 @item 240m
20669 @item 2020
20670 @end table
20671
20672 Default is same as input.
20673
20674 @item transferin, tin
20675 Set the input transfer characteristics.
20676
20677 Possible values are:
20678 @table @var
20679 @item input
20680 @item 709
20681 @item unspecified
20682 @item 601
20683 @item linear
20684 @item 2020_10
20685 @item 2020_12
20686 @end table
20687
20688 Default is same as input.
20689
20690 @item matrixin, min
20691 Set the input colorspace matrix.
20692
20693 Possible value are:
20694 @table @var
20695 @item input
20696 @item 709
20697 @item unspecified
20698 @item 470bg
20699 @item 170m
20700 @item 2020_ncl
20701 @item 2020_cl
20702 @end table
20703
20704 @item chromal, c
20705 Set the output chroma location.
20706
20707 Possible values are:
20708 @table @var
20709 @item input
20710 @item left
20711 @item center
20712 @item topleft
20713 @item top
20714 @item bottomleft
20715 @item bottom
20716 @end table
20717
20718 @item chromalin, cin
20719 Set the input chroma location.
20720
20721 Possible values are:
20722 @table @var
20723 @item input
20724 @item left
20725 @item center
20726 @item topleft
20727 @item top
20728 @item bottomleft
20729 @item bottom
20730 @end table
20731
20732 @item npl
20733 Set the nominal peak luminance.
20734 @end table
20735
20736 The values of the @option{w} and @option{h} options are expressions
20737 containing the following constants:
20738
20739 @table @var
20740 @item in_w
20741 @item in_h
20742 The input width and height
20743
20744 @item iw
20745 @item ih
20746 These are the same as @var{in_w} and @var{in_h}.
20747
20748 @item out_w
20749 @item out_h
20750 The output (scaled) width and height
20751
20752 @item ow
20753 @item oh
20754 These are the same as @var{out_w} and @var{out_h}
20755
20756 @item a
20757 The same as @var{iw} / @var{ih}
20758
20759 @item sar
20760 input sample aspect ratio
20761
20762 @item dar
20763 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
20764
20765 @item hsub
20766 @item vsub
20767 horizontal and vertical input chroma subsample values. For example for the
20768 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20769
20770 @item ohsub
20771 @item ovsub
20772 horizontal and vertical output chroma subsample values. For example for the
20773 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20774 @end table
20775
20776 @subsection Commands
20777
20778 This filter supports the following commands:
20779 @table @option
20780 @item width, w
20781 @item height, h
20782 Set the output video dimension expression.
20783 The command accepts the same syntax of the corresponding option.
20784
20785 If the specified expression is not valid, it is kept at its current
20786 value.
20787 @end table
20788
20789 @c man end VIDEO FILTERS
20790
20791 @chapter OpenCL Video Filters
20792 @c man begin OPENCL VIDEO FILTERS
20793
20794 Below is a description of the currently available OpenCL video filters.
20795
20796 To enable compilation of these filters you need to configure FFmpeg with
20797 @code{--enable-opencl}.
20798
20799 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
20800 @table @option
20801
20802 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
20803 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
20804 given device parameters.
20805
20806 @item -filter_hw_device @var{name}
20807 Pass the hardware device called @var{name} to all filters in any filter graph.
20808
20809 @end table
20810
20811 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
20812
20813 @itemize
20814 @item
20815 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
20816 @example
20817 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
20818 @end example
20819 @end itemize
20820
20821 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.
20822
20823 @section avgblur_opencl
20824
20825 Apply average blur filter.
20826
20827 The filter accepts the following options:
20828
20829 @table @option
20830 @item sizeX
20831 Set horizontal radius size.
20832 Range is @code{[1, 1024]} and default value is @code{1}.
20833
20834 @item planes
20835 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20836
20837 @item sizeY
20838 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
20839 @end table
20840
20841 @subsection Example
20842
20843 @itemize
20844 @item
20845 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.
20846 @example
20847 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
20848 @end example
20849 @end itemize
20850
20851 @section boxblur_opencl
20852
20853 Apply a boxblur algorithm to the input video.
20854
20855 It accepts the following parameters:
20856
20857 @table @option
20858
20859 @item luma_radius, lr
20860 @item luma_power, lp
20861 @item chroma_radius, cr
20862 @item chroma_power, cp
20863 @item alpha_radius, ar
20864 @item alpha_power, ap
20865
20866 @end table
20867
20868 A description of the accepted options follows.
20869
20870 @table @option
20871 @item luma_radius, lr
20872 @item chroma_radius, cr
20873 @item alpha_radius, ar
20874 Set an expression for the box radius in pixels used for blurring the
20875 corresponding input plane.
20876
20877 The radius value must be a non-negative number, and must not be
20878 greater than the value of the expression @code{min(w,h)/2} for the
20879 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
20880 planes.
20881
20882 Default value for @option{luma_radius} is "2". If not specified,
20883 @option{chroma_radius} and @option{alpha_radius} default to the
20884 corresponding value set for @option{luma_radius}.
20885
20886 The expressions can contain the following constants:
20887 @table @option
20888 @item w
20889 @item h
20890 The input width and height in pixels.
20891
20892 @item cw
20893 @item ch
20894 The input chroma image width and height in pixels.
20895
20896 @item hsub
20897 @item vsub
20898 The horizontal and vertical chroma subsample values. For example, for the
20899 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
20900 @end table
20901
20902 @item luma_power, lp
20903 @item chroma_power, cp
20904 @item alpha_power, ap
20905 Specify how many times the boxblur filter is applied to the
20906 corresponding plane.
20907
20908 Default value for @option{luma_power} is 2. If not specified,
20909 @option{chroma_power} and @option{alpha_power} default to the
20910 corresponding value set for @option{luma_power}.
20911
20912 A value of 0 will disable the effect.
20913 @end table
20914
20915 @subsection Examples
20916
20917 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.
20918
20919 @itemize
20920 @item
20921 Apply a boxblur filter with the luma, chroma, and alpha radius
20922 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.
20923 @example
20924 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
20925 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
20926 @end example
20927
20928 @item
20929 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.
20930
20931 For the luma plane, a 2x2 box radius will be run once.
20932
20933 For the chroma plane, a 4x4 box radius will be run 5 times.
20934
20935 For the alpha plane, a 3x3 box radius will be run 7 times.
20936 @example
20937 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
20938 @end example
20939 @end itemize
20940
20941 @section colorkey_opencl
20942 RGB colorspace color keying.
20943
20944 The filter accepts the following options:
20945
20946 @table @option
20947 @item color
20948 The color which will be replaced with transparency.
20949
20950 @item similarity
20951 Similarity percentage with the key color.
20952
20953 0.01 matches only the exact key color, while 1.0 matches everything.
20954
20955 @item blend
20956 Blend percentage.
20957
20958 0.0 makes pixels either fully transparent, or not transparent at all.
20959
20960 Higher values result in semi-transparent pixels, with a higher transparency
20961 the more similar the pixels color is to the key color.
20962 @end table
20963
20964 @subsection Examples
20965
20966 @itemize
20967 @item
20968 Make every semi-green pixel in the input transparent with some slight blending:
20969 @example
20970 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
20971 @end example
20972 @end itemize
20973
20974 @section convolution_opencl
20975
20976 Apply convolution of 3x3, 5x5, 7x7 matrix.
20977
20978 The filter accepts the following options:
20979
20980 @table @option
20981 @item 0m
20982 @item 1m
20983 @item 2m
20984 @item 3m
20985 Set matrix for each plane.
20986 Matrix is sequence of 9, 25 or 49 signed numbers.
20987 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
20988
20989 @item 0rdiv
20990 @item 1rdiv
20991 @item 2rdiv
20992 @item 3rdiv
20993 Set multiplier for calculated value for each plane.
20994 If unset or 0, it will be sum of all matrix elements.
20995 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
20996
20997 @item 0bias
20998 @item 1bias
20999 @item 2bias
21000 @item 3bias
21001 Set bias for each plane. This value is added to the result of the multiplication.
21002 Useful for making the overall image brighter or darker.
21003 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
21004
21005 @end table
21006
21007 @subsection Examples
21008
21009 @itemize
21010 @item
21011 Apply sharpen:
21012 @example
21013 -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
21014 @end example
21015
21016 @item
21017 Apply blur:
21018 @example
21019 -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
21020 @end example
21021
21022 @item
21023 Apply edge enhance:
21024 @example
21025 -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
21026 @end example
21027
21028 @item
21029 Apply edge detect:
21030 @example
21031 -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
21032 @end example
21033
21034 @item
21035 Apply laplacian edge detector which includes diagonals:
21036 @example
21037 -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
21038 @end example
21039
21040 @item
21041 Apply emboss:
21042 @example
21043 -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
21044 @end example
21045 @end itemize
21046
21047 @section erosion_opencl
21048
21049 Apply erosion effect to the video.
21050
21051 This filter replaces the pixel by the local(3x3) minimum.
21052
21053 It accepts the following options:
21054
21055 @table @option
21056 @item threshold0
21057 @item threshold1
21058 @item threshold2
21059 @item threshold3
21060 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21061 If @code{0}, plane will remain unchanged.
21062
21063 @item coordinates
21064 Flag which specifies the pixel to refer to.
21065 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21066
21067 Flags to local 3x3 coordinates region centered on @code{x}:
21068
21069     1 2 3
21070
21071     4 x 5
21072
21073     6 7 8
21074 @end table
21075
21076 @subsection Example
21077
21078 @itemize
21079 @item
21080 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.
21081 @example
21082 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21083 @end example
21084 @end itemize
21085
21086 @section deshake_opencl
21087 Feature-point based video stabilization filter.
21088
21089 The filter accepts the following options:
21090
21091 @table @option
21092 @item tripod
21093 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
21094
21095 @item debug
21096 Whether or not additional debug info should be displayed, both in the processed output and in the console.
21097
21098 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
21099
21100 Viewing point matches in the output video is only supported for RGB input.
21101
21102 Defaults to @code{0}.
21103
21104 @item adaptive_crop
21105 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
21106
21107 Defaults to @code{1}.
21108
21109 @item refine_features
21110 Whether or not feature points should be refined at a sub-pixel level.
21111
21112 This can be turned off for a slight performance gain at the cost of precision.
21113
21114 Defaults to @code{1}.
21115
21116 @item smooth_strength
21117 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
21118
21119 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
21120
21121 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
21122
21123 Defaults to @code{0.0}.
21124
21125 @item smooth_window_multiplier
21126 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
21127
21128 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
21129
21130 Acceptable values range from @code{0.1} to @code{10.0}.
21131
21132 Larger values increase the amount of motion data available for determining how to smooth the camera path,
21133 potentially improving smoothness, but also increase latency and memory usage.
21134
21135 Defaults to @code{2.0}.
21136
21137 @end table
21138
21139 @subsection Examples
21140
21141 @itemize
21142 @item
21143 Stabilize a video with a fixed, medium smoothing strength:
21144 @example
21145 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
21146 @end example
21147
21148 @item
21149 Stabilize a video with debugging (both in console and in rendered video):
21150 @example
21151 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
21152 @end example
21153 @end itemize
21154
21155 @section dilation_opencl
21156
21157 Apply dilation effect to the video.
21158
21159 This filter replaces the pixel by the local(3x3) maximum.
21160
21161 It accepts the following options:
21162
21163 @table @option
21164 @item threshold0
21165 @item threshold1
21166 @item threshold2
21167 @item threshold3
21168 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21169 If @code{0}, plane will remain unchanged.
21170
21171 @item coordinates
21172 Flag which specifies the pixel to refer to.
21173 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21174
21175 Flags to local 3x3 coordinates region centered on @code{x}:
21176
21177     1 2 3
21178
21179     4 x 5
21180
21181     6 7 8
21182 @end table
21183
21184 @subsection Example
21185
21186 @itemize
21187 @item
21188 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.
21189 @example
21190 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21191 @end example
21192 @end itemize
21193
21194 @section nlmeans_opencl
21195
21196 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
21197
21198 @section overlay_opencl
21199
21200 Overlay one video on top of another.
21201
21202 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
21203 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
21204
21205 The filter accepts the following options:
21206
21207 @table @option
21208
21209 @item x
21210 Set the x coordinate of the overlaid video on the main video.
21211 Default value is @code{0}.
21212
21213 @item y
21214 Set the y coordinate of the overlaid video on the main video.
21215 Default value is @code{0}.
21216
21217 @end table
21218
21219 @subsection Examples
21220
21221 @itemize
21222 @item
21223 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
21224 @example
21225 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21226 @end example
21227 @item
21228 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
21229 @example
21230 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21231 @end example
21232
21233 @end itemize
21234
21235 @section pad_opencl
21236
21237 Add paddings to the input image, and place the original input at the
21238 provided @var{x}, @var{y} coordinates.
21239
21240 It accepts the following options:
21241
21242 @table @option
21243 @item width, w
21244 @item height, h
21245 Specify an expression for the size of the output image with the
21246 paddings added. If the value for @var{width} or @var{height} is 0, the
21247 corresponding input size is used for the output.
21248
21249 The @var{width} expression can reference the value set by the
21250 @var{height} expression, and vice versa.
21251
21252 The default value of @var{width} and @var{height} is 0.
21253
21254 @item x
21255 @item y
21256 Specify the offsets to place the input image at within the padded area,
21257 with respect to the top/left border of the output image.
21258
21259 The @var{x} expression can reference the value set by the @var{y}
21260 expression, and vice versa.
21261
21262 The default value of @var{x} and @var{y} is 0.
21263
21264 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
21265 so the input image is centered on the padded area.
21266
21267 @item color
21268 Specify the color of the padded area. For the syntax of this option,
21269 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
21270 manual,ffmpeg-utils}.
21271
21272 @item aspect
21273 Pad to an aspect instead to a resolution.
21274 @end table
21275
21276 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
21277 options are expressions containing the following constants:
21278
21279 @table @option
21280 @item in_w
21281 @item in_h
21282 The input video width and height.
21283
21284 @item iw
21285 @item ih
21286 These are the same as @var{in_w} and @var{in_h}.
21287
21288 @item out_w
21289 @item out_h
21290 The output width and height (the size of the padded area), as
21291 specified by the @var{width} and @var{height} expressions.
21292
21293 @item ow
21294 @item oh
21295 These are the same as @var{out_w} and @var{out_h}.
21296
21297 @item x
21298 @item y
21299 The x and y offsets as specified by the @var{x} and @var{y}
21300 expressions, or NAN if not yet specified.
21301
21302 @item a
21303 same as @var{iw} / @var{ih}
21304
21305 @item sar
21306 input sample aspect ratio
21307
21308 @item dar
21309 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
21310 @end table
21311
21312 @section prewitt_opencl
21313
21314 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
21315
21316 The filter accepts the following option:
21317
21318 @table @option
21319 @item planes
21320 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21321
21322 @item scale
21323 Set value which will be multiplied with filtered result.
21324 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21325
21326 @item delta
21327 Set value which will be added to filtered result.
21328 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21329 @end table
21330
21331 @subsection Example
21332
21333 @itemize
21334 @item
21335 Apply the Prewitt operator with scale set to 2 and delta set to 10.
21336 @example
21337 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
21338 @end example
21339 @end itemize
21340
21341 @anchor{program_opencl}
21342 @section program_opencl
21343
21344 Filter video using an OpenCL program.
21345
21346 @table @option
21347
21348 @item source
21349 OpenCL program source file.
21350
21351 @item kernel
21352 Kernel name in program.
21353
21354 @item inputs
21355 Number of inputs to the filter.  Defaults to 1.
21356
21357 @item size, s
21358 Size of output frames.  Defaults to the same as the first input.
21359
21360 @end table
21361
21362 The @code{program_opencl} filter also supports the @ref{framesync} options.
21363
21364 The program source file must contain a kernel function with the given name,
21365 which will be run once for each plane of the output.  Each run on a plane
21366 gets enqueued as a separate 2D global NDRange with one work-item for each
21367 pixel to be generated.  The global ID offset for each work-item is therefore
21368 the coordinates of a pixel in the destination image.
21369
21370 The kernel function needs to take the following arguments:
21371 @itemize
21372 @item
21373 Destination image, @var{__write_only image2d_t}.
21374
21375 This image will become the output; the kernel should write all of it.
21376 @item
21377 Frame index, @var{unsigned int}.
21378
21379 This is a counter starting from zero and increasing by one for each frame.
21380 @item
21381 Source images, @var{__read_only image2d_t}.
21382
21383 These are the most recent images on each input.  The kernel may read from
21384 them to generate the output, but they can't be written to.
21385 @end itemize
21386
21387 Example programs:
21388
21389 @itemize
21390 @item
21391 Copy the input to the output (output must be the same size as the input).
21392 @verbatim
21393 __kernel void copy(__write_only image2d_t destination,
21394                    unsigned int index,
21395                    __read_only  image2d_t source)
21396 {
21397     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
21398
21399     int2 location = (int2)(get_global_id(0), get_global_id(1));
21400
21401     float4 value = read_imagef(source, sampler, location);
21402
21403     write_imagef(destination, location, value);
21404 }
21405 @end verbatim
21406
21407 @item
21408 Apply a simple transformation, rotating the input by an amount increasing
21409 with the index counter.  Pixel values are linearly interpolated by the
21410 sampler, and the output need not have the same dimensions as the input.
21411 @verbatim
21412 __kernel void rotate_image(__write_only image2d_t dst,
21413                            unsigned int index,
21414                            __read_only  image2d_t src)
21415 {
21416     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21417                                CLK_FILTER_LINEAR);
21418
21419     float angle = (float)index / 100.0f;
21420
21421     float2 dst_dim = convert_float2(get_image_dim(dst));
21422     float2 src_dim = convert_float2(get_image_dim(src));
21423
21424     float2 dst_cen = dst_dim / 2.0f;
21425     float2 src_cen = src_dim / 2.0f;
21426
21427     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
21428
21429     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
21430     float2 src_pos = {
21431         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
21432         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
21433     };
21434     src_pos = src_pos * src_dim / dst_dim;
21435
21436     float2 src_loc = src_pos + src_cen;
21437
21438     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
21439         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
21440         write_imagef(dst, dst_loc, 0.5f);
21441     else
21442         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
21443 }
21444 @end verbatim
21445
21446 @item
21447 Blend two inputs together, with the amount of each input used varying
21448 with the index counter.
21449 @verbatim
21450 __kernel void blend_images(__write_only image2d_t dst,
21451                            unsigned int index,
21452                            __read_only  image2d_t src1,
21453                            __read_only  image2d_t src2)
21454 {
21455     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21456                                CLK_FILTER_LINEAR);
21457
21458     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
21459
21460     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
21461     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
21462     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
21463
21464     float4 val1 = read_imagef(src1, sampler, src1_loc);
21465     float4 val2 = read_imagef(src2, sampler, src2_loc);
21466
21467     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
21468 }
21469 @end verbatim
21470
21471 @end itemize
21472
21473 @section roberts_opencl
21474 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
21475
21476 The filter accepts the following option:
21477
21478 @table @option
21479 @item planes
21480 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21481
21482 @item scale
21483 Set value which will be multiplied with filtered result.
21484 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21485
21486 @item delta
21487 Set value which will be added to filtered result.
21488 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21489 @end table
21490
21491 @subsection Example
21492
21493 @itemize
21494 @item
21495 Apply the Roberts cross operator with scale set to 2 and delta set to 10
21496 @example
21497 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
21498 @end example
21499 @end itemize
21500
21501 @section sobel_opencl
21502
21503 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
21504
21505 The filter accepts the following option:
21506
21507 @table @option
21508 @item planes
21509 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21510
21511 @item scale
21512 Set value which will be multiplied with filtered result.
21513 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21514
21515 @item delta
21516 Set value which will be added to filtered result.
21517 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21518 @end table
21519
21520 @subsection Example
21521
21522 @itemize
21523 @item
21524 Apply sobel operator with scale set to 2 and delta set to 10
21525 @example
21526 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
21527 @end example
21528 @end itemize
21529
21530 @section tonemap_opencl
21531
21532 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
21533
21534 It accepts the following parameters:
21535
21536 @table @option
21537 @item tonemap
21538 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
21539
21540 @item param
21541 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
21542
21543 @item desat
21544 Apply desaturation for highlights that exceed this level of brightness. The
21545 higher the parameter, the more color information will be preserved. This
21546 setting helps prevent unnaturally blown-out colors for super-highlights, by
21547 (smoothly) turning into white instead. This makes images feel more natural,
21548 at the cost of reducing information about out-of-range colors.
21549
21550 The default value is 0.5, and the algorithm here is a little different from
21551 the cpu version tonemap currently. A setting of 0.0 disables this option.
21552
21553 @item threshold
21554 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
21555 is used to detect whether the scene has changed or not. If the distance between
21556 the current frame average brightness and the current running average exceeds
21557 a threshold value, we would re-calculate scene average and peak brightness.
21558 The default value is 0.2.
21559
21560 @item format
21561 Specify the output pixel format.
21562
21563 Currently supported formats are:
21564 @table @var
21565 @item p010
21566 @item nv12
21567 @end table
21568
21569 @item range, r
21570 Set the output color range.
21571
21572 Possible values are:
21573 @table @var
21574 @item tv/mpeg
21575 @item pc/jpeg
21576 @end table
21577
21578 Default is same as input.
21579
21580 @item primaries, p
21581 Set the output color primaries.
21582
21583 Possible values are:
21584 @table @var
21585 @item bt709
21586 @item bt2020
21587 @end table
21588
21589 Default is same as input.
21590
21591 @item transfer, t
21592 Set the output transfer characteristics.
21593
21594 Possible values are:
21595 @table @var
21596 @item bt709
21597 @item bt2020
21598 @end table
21599
21600 Default is bt709.
21601
21602 @item matrix, m
21603 Set the output colorspace matrix.
21604
21605 Possible value are:
21606 @table @var
21607 @item bt709
21608 @item bt2020
21609 @end table
21610
21611 Default is same as input.
21612
21613 @end table
21614
21615 @subsection Example
21616
21617 @itemize
21618 @item
21619 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
21620 @example
21621 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
21622 @end example
21623 @end itemize
21624
21625 @section unsharp_opencl
21626
21627 Sharpen or blur the input video.
21628
21629 It accepts the following parameters:
21630
21631 @table @option
21632 @item luma_msize_x, lx
21633 Set the luma matrix horizontal size.
21634 Range is @code{[1, 23]} and default value is @code{5}.
21635
21636 @item luma_msize_y, ly
21637 Set the luma matrix vertical size.
21638 Range is @code{[1, 23]} and default value is @code{5}.
21639
21640 @item luma_amount, la
21641 Set the luma effect strength.
21642 Range is @code{[-10, 10]} and default value is @code{1.0}.
21643
21644 Negative values will blur the input video, while positive values will
21645 sharpen it, a value of zero will disable the effect.
21646
21647 @item chroma_msize_x, cx
21648 Set the chroma matrix horizontal size.
21649 Range is @code{[1, 23]} and default value is @code{5}.
21650
21651 @item chroma_msize_y, cy
21652 Set the chroma matrix vertical size.
21653 Range is @code{[1, 23]} and default value is @code{5}.
21654
21655 @item chroma_amount, ca
21656 Set the chroma effect strength.
21657 Range is @code{[-10, 10]} and default value is @code{0.0}.
21658
21659 Negative values will blur the input video, while positive values will
21660 sharpen it, a value of zero will disable the effect.
21661
21662 @end table
21663
21664 All parameters are optional and default to the equivalent of the
21665 string '5:5:1.0:5:5:0.0'.
21666
21667 @subsection Examples
21668
21669 @itemize
21670 @item
21671 Apply strong luma sharpen effect:
21672 @example
21673 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
21674 @end example
21675
21676 @item
21677 Apply a strong blur of both luma and chroma parameters:
21678 @example
21679 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
21680 @end example
21681 @end itemize
21682
21683 @section xfade_opencl
21684
21685 Cross fade two videos with custom transition effect by using OpenCL.
21686
21687 It accepts the following options:
21688
21689 @table @option
21690 @item transition
21691 Set one of possible transition effects.
21692
21693 @table @option
21694 @item custom
21695 Select custom transition effect, the actual transition description
21696 will be picked from source and kernel options.
21697
21698 @item fade
21699 @item wipeleft
21700 @item wiperight
21701 @item wipeup
21702 @item wipedown
21703 @item slideleft
21704 @item slideright
21705 @item slideup
21706 @item slidedown
21707
21708 Default transition is fade.
21709 @end table
21710
21711 @item source
21712 OpenCL program source file for custom transition.
21713
21714 @item kernel
21715 Set name of kernel to use for custom transition from program source file.
21716
21717 @item duration
21718 Set duration of video transition.
21719
21720 @item offset
21721 Set time of start of transition relative to first video.
21722 @end table
21723
21724 The program source file must contain a kernel function with the given name,
21725 which will be run once for each plane of the output.  Each run on a plane
21726 gets enqueued as a separate 2D global NDRange with one work-item for each
21727 pixel to be generated.  The global ID offset for each work-item is therefore
21728 the coordinates of a pixel in the destination image.
21729
21730 The kernel function needs to take the following arguments:
21731 @itemize
21732 @item
21733 Destination image, @var{__write_only image2d_t}.
21734
21735 This image will become the output; the kernel should write all of it.
21736
21737 @item
21738 First Source image, @var{__read_only image2d_t}.
21739 Second Source image, @var{__read_only image2d_t}.
21740
21741 These are the most recent images on each input.  The kernel may read from
21742 them to generate the output, but they can't be written to.
21743
21744 @item
21745 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
21746 @end itemize
21747
21748 Example programs:
21749
21750 @itemize
21751 @item
21752 Apply dots curtain transition effect:
21753 @verbatim
21754 __kernel void blend_images(__write_only image2d_t dst,
21755                            __read_only  image2d_t src1,
21756                            __read_only  image2d_t src2,
21757                            float progress)
21758 {
21759     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21760                                CLK_FILTER_LINEAR);
21761     int2  p = (int2)(get_global_id(0), get_global_id(1));
21762     float2 rp = (float2)(get_global_id(0), get_global_id(1));
21763     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
21764     rp = rp / dim;
21765
21766     float2 dots = (float2)(20.0, 20.0);
21767     float2 center = (float2)(0,0);
21768     float2 unused;
21769
21770     float4 val1 = read_imagef(src1, sampler, p);
21771     float4 val2 = read_imagef(src2, sampler, p);
21772     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
21773
21774     write_imagef(dst, p, next ? val1 : val2);
21775 }
21776 @end verbatim
21777
21778 @end itemize
21779
21780 @c man end OPENCL VIDEO FILTERS
21781
21782 @chapter VAAPI Video Filters
21783 @c man begin VAAPI VIDEO FILTERS
21784
21785 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
21786
21787 To enable compilation of these filters you need to configure FFmpeg with
21788 @code{--enable-vaapi}.
21789
21790 To use vaapi filters, you need to setup the vaapi device correctly. For more information, please read @url{https://trac.ffmpeg.org/wiki/Hardware/VAAPI}
21791
21792 @section tonemap_vaapi
21793
21794 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
21795 It maps the dynamic range of HDR10 content to the SDR content.
21796 It currently only accepts HDR10 as input.
21797
21798 It accepts the following parameters:
21799
21800 @table @option
21801 @item format
21802 Specify the output pixel format.
21803
21804 Currently supported formats are:
21805 @table @var
21806 @item p010
21807 @item nv12
21808 @end table
21809
21810 Default is nv12.
21811
21812 @item primaries, p
21813 Set the output color primaries.
21814
21815 Default is same as input.
21816
21817 @item transfer, t
21818 Set the output transfer characteristics.
21819
21820 Default is bt709.
21821
21822 @item matrix, m
21823 Set the output colorspace matrix.
21824
21825 Default is same as input.
21826
21827 @end table
21828
21829 @subsection Example
21830
21831 @itemize
21832 @item
21833 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
21834 @example
21835 tonemap_vaapi=format=p010:t=bt2020-10
21836 @end example
21837 @end itemize
21838
21839 @c man end VAAPI VIDEO FILTERS
21840
21841 @chapter Video Sources
21842 @c man begin VIDEO SOURCES
21843
21844 Below is a description of the currently available video sources.
21845
21846 @section buffer
21847
21848 Buffer video frames, and make them available to the filter chain.
21849
21850 This source is mainly intended for a programmatic use, in particular
21851 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
21852
21853 It accepts the following parameters:
21854
21855 @table @option
21856
21857 @item video_size
21858 Specify the size (width and height) of the buffered video frames. For the
21859 syntax of this option, check the
21860 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21861
21862 @item width
21863 The input video width.
21864
21865 @item height
21866 The input video height.
21867
21868 @item pix_fmt
21869 A string representing the pixel format of the buffered video frames.
21870 It may be a number corresponding to a pixel format, or a pixel format
21871 name.
21872
21873 @item time_base
21874 Specify the timebase assumed by the timestamps of the buffered frames.
21875
21876 @item frame_rate
21877 Specify the frame rate expected for the video stream.
21878
21879 @item pixel_aspect, sar
21880 The sample (pixel) aspect ratio of the input video.
21881
21882 @item sws_param
21883 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
21884 to the filtergraph description to specify swscale flags for automatically
21885 inserted scalers. See @ref{Filtergraph syntax}.
21886
21887 @item hw_frames_ctx
21888 When using a hardware pixel format, this should be a reference to an
21889 AVHWFramesContext describing input frames.
21890 @end table
21891
21892 For example:
21893 @example
21894 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
21895 @end example
21896
21897 will instruct the source to accept video frames with size 320x240 and
21898 with format "yuv410p", assuming 1/24 as the timestamps timebase and
21899 square pixels (1:1 sample aspect ratio).
21900 Since the pixel format with name "yuv410p" corresponds to the number 6
21901 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
21902 this example corresponds to:
21903 @example
21904 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
21905 @end example
21906
21907 Alternatively, the options can be specified as a flat string, but this
21908 syntax is deprecated:
21909
21910 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
21911
21912 @section cellauto
21913
21914 Create a pattern generated by an elementary cellular automaton.
21915
21916 The initial state of the cellular automaton can be defined through the
21917 @option{filename} and @option{pattern} options. If such options are
21918 not specified an initial state is created randomly.
21919
21920 At each new frame a new row in the video is filled with the result of
21921 the cellular automaton next generation. The behavior when the whole
21922 frame is filled is defined by the @option{scroll} option.
21923
21924 This source accepts the following options:
21925
21926 @table @option
21927 @item filename, f
21928 Read the initial cellular automaton state, i.e. the starting row, from
21929 the specified file.
21930 In the file, each non-whitespace character is considered an alive
21931 cell, a newline will terminate the row, and further characters in the
21932 file will be ignored.
21933
21934 @item pattern, p
21935 Read the initial cellular automaton state, i.e. the starting row, from
21936 the specified string.
21937
21938 Each non-whitespace character in the string is considered an alive
21939 cell, a newline will terminate the row, and further characters in the
21940 string will be ignored.
21941
21942 @item rate, r
21943 Set the video rate, that is the number of frames generated per second.
21944 Default is 25.
21945
21946 @item random_fill_ratio, ratio
21947 Set the random fill ratio for the initial cellular automaton row. It
21948 is a floating point number value ranging from 0 to 1, defaults to
21949 1/PHI.
21950
21951 This option is ignored when a file or a pattern is specified.
21952
21953 @item random_seed, seed
21954 Set the seed for filling randomly the initial row, must be an integer
21955 included between 0 and UINT32_MAX. If not specified, or if explicitly
21956 set to -1, the filter will try to use a good random seed on a best
21957 effort basis.
21958
21959 @item rule
21960 Set the cellular automaton rule, it is a number ranging from 0 to 255.
21961 Default value is 110.
21962
21963 @item size, s
21964 Set the size of the output video. For the syntax of this option, check the
21965 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21966
21967 If @option{filename} or @option{pattern} is specified, the size is set
21968 by default to the width of the specified initial state row, and the
21969 height is set to @var{width} * PHI.
21970
21971 If @option{size} is set, it must contain the width of the specified
21972 pattern string, and the specified pattern will be centered in the
21973 larger row.
21974
21975 If a filename or a pattern string is not specified, the size value
21976 defaults to "320x518" (used for a randomly generated initial state).
21977
21978 @item scroll
21979 If set to 1, scroll the output upward when all the rows in the output
21980 have been already filled. If set to 0, the new generated row will be
21981 written over the top row just after the bottom row is filled.
21982 Defaults to 1.
21983
21984 @item start_full, full
21985 If set to 1, completely fill the output with generated rows before
21986 outputting the first frame.
21987 This is the default behavior, for disabling set the value to 0.
21988
21989 @item stitch
21990 If set to 1, stitch the left and right row edges together.
21991 This is the default behavior, for disabling set the value to 0.
21992 @end table
21993
21994 @subsection Examples
21995
21996 @itemize
21997 @item
21998 Read the initial state from @file{pattern}, and specify an output of
21999 size 200x400.
22000 @example
22001 cellauto=f=pattern:s=200x400
22002 @end example
22003
22004 @item
22005 Generate a random initial row with a width of 200 cells, with a fill
22006 ratio of 2/3:
22007 @example
22008 cellauto=ratio=2/3:s=200x200
22009 @end example
22010
22011 @item
22012 Create a pattern generated by rule 18 starting by a single alive cell
22013 centered on an initial row with width 100:
22014 @example
22015 cellauto=p=@@:s=100x400:full=0:rule=18
22016 @end example
22017
22018 @item
22019 Specify a more elaborated initial pattern:
22020 @example
22021 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
22022 @end example
22023
22024 @end itemize
22025
22026 @anchor{coreimagesrc}
22027 @section coreimagesrc
22028 Video source generated on GPU using Apple's CoreImage API on OSX.
22029
22030 This video source is a specialized version of the @ref{coreimage} video filter.
22031 Use a core image generator at the beginning of the applied filterchain to
22032 generate the content.
22033
22034 The coreimagesrc video source accepts the following options:
22035 @table @option
22036 @item list_generators
22037 List all available generators along with all their respective options as well as
22038 possible minimum and maximum values along with the default values.
22039 @example
22040 list_generators=true
22041 @end example
22042
22043 @item size, s
22044 Specify the size of the sourced video. For the syntax of this option, check the
22045 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22046 The default value is @code{320x240}.
22047
22048 @item rate, r
22049 Specify the frame rate of the sourced video, as the number of frames
22050 generated per second. It has to be a string in the format
22051 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22052 number or a valid video frame rate abbreviation. The default value is
22053 "25".
22054
22055 @item sar
22056 Set the sample aspect ratio of the sourced video.
22057
22058 @item duration, d
22059 Set the duration of the sourced video. See
22060 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22061 for the accepted syntax.
22062
22063 If not specified, or the expressed duration is negative, the video is
22064 supposed to be generated forever.
22065 @end table
22066
22067 Additionally, all options of the @ref{coreimage} video filter are accepted.
22068 A complete filterchain can be used for further processing of the
22069 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
22070 and examples for details.
22071
22072 @subsection Examples
22073
22074 @itemize
22075
22076 @item
22077 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
22078 given as complete and escaped command-line for Apple's standard bash shell:
22079 @example
22080 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
22081 @end example
22082 This example is equivalent to the QRCode example of @ref{coreimage} without the
22083 need for a nullsrc video source.
22084 @end itemize
22085
22086
22087 @section mandelbrot
22088
22089 Generate a Mandelbrot set fractal, and progressively zoom towards the
22090 point specified with @var{start_x} and @var{start_y}.
22091
22092 This source accepts the following options:
22093
22094 @table @option
22095
22096 @item end_pts
22097 Set the terminal pts value. Default value is 400.
22098
22099 @item end_scale
22100 Set the terminal scale value.
22101 Must be a floating point value. Default value is 0.3.
22102
22103 @item inner
22104 Set the inner coloring mode, that is the algorithm used to draw the
22105 Mandelbrot fractal internal region.
22106
22107 It shall assume one of the following values:
22108 @table @option
22109 @item black
22110 Set black mode.
22111 @item convergence
22112 Show time until convergence.
22113 @item mincol
22114 Set color based on point closest to the origin of the iterations.
22115 @item period
22116 Set period mode.
22117 @end table
22118
22119 Default value is @var{mincol}.
22120
22121 @item bailout
22122 Set the bailout value. Default value is 10.0.
22123
22124 @item maxiter
22125 Set the maximum of iterations performed by the rendering
22126 algorithm. Default value is 7189.
22127
22128 @item outer
22129 Set outer coloring mode.
22130 It shall assume one of following values:
22131 @table @option
22132 @item iteration_count
22133 Set iteration count mode.
22134 @item normalized_iteration_count
22135 set normalized iteration count mode.
22136 @end table
22137 Default value is @var{normalized_iteration_count}.
22138
22139 @item rate, r
22140 Set frame rate, expressed as number of frames per second. Default
22141 value is "25".
22142
22143 @item size, s
22144 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22145 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22146
22147 @item start_scale
22148 Set the initial scale value. Default value is 3.0.
22149
22150 @item start_x
22151 Set the initial x position. Must be a floating point value between
22152 -100 and 100. Default value is -0.743643887037158704752191506114774.
22153
22154 @item start_y
22155 Set the initial y position. Must be a floating point value between
22156 -100 and 100. Default value is -0.131825904205311970493132056385139.
22157 @end table
22158
22159 @section mptestsrc
22160
22161 Generate various test patterns, as generated by the MPlayer test filter.
22162
22163 The size of the generated video is fixed, and is 256x256.
22164 This source is useful in particular for testing encoding features.
22165
22166 This source accepts the following options:
22167
22168 @table @option
22169
22170 @item rate, r
22171 Specify the frame rate of the sourced video, as the number of frames
22172 generated per second. It has to be a string in the format
22173 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22174 number or a valid video frame rate abbreviation. The default value is
22175 "25".
22176
22177 @item duration, d
22178 Set the duration of the sourced video. See
22179 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22180 for the accepted syntax.
22181
22182 If not specified, or the expressed duration is negative, the video is
22183 supposed to be generated forever.
22184
22185 @item test, t
22186
22187 Set the number or the name of the test to perform. Supported tests are:
22188 @table @option
22189 @item dc_luma
22190 @item dc_chroma
22191 @item freq_luma
22192 @item freq_chroma
22193 @item amp_luma
22194 @item amp_chroma
22195 @item cbp
22196 @item mv
22197 @item ring1
22198 @item ring2
22199 @item all
22200
22201 @item max_frames, m
22202 Set the maximum number of frames generated for each test, default value is 30.
22203
22204 @end table
22205
22206 Default value is "all", which will cycle through the list of all tests.
22207 @end table
22208
22209 Some examples:
22210 @example
22211 mptestsrc=t=dc_luma
22212 @end example
22213
22214 will generate a "dc_luma" test pattern.
22215
22216 @section frei0r_src
22217
22218 Provide a frei0r source.
22219
22220 To enable compilation of this filter you need to install the frei0r
22221 header and configure FFmpeg with @code{--enable-frei0r}.
22222
22223 This source accepts the following parameters:
22224
22225 @table @option
22226
22227 @item size
22228 The size of the video to generate. For the syntax of this option, check the
22229 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22230
22231 @item framerate
22232 The framerate of the generated video. It may be a string of the form
22233 @var{num}/@var{den} or a frame rate abbreviation.
22234
22235 @item filter_name
22236 The name to the frei0r source to load. For more information regarding frei0r and
22237 how to set the parameters, read the @ref{frei0r} section in the video filters
22238 documentation.
22239
22240 @item filter_params
22241 A '|'-separated list of parameters to pass to the frei0r source.
22242
22243 @end table
22244
22245 For example, to generate a frei0r partik0l source with size 200x200
22246 and frame rate 10 which is overlaid on the overlay filter main input:
22247 @example
22248 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
22249 @end example
22250
22251 @section life
22252
22253 Generate a life pattern.
22254
22255 This source is based on a generalization of John Conway's life game.
22256
22257 The sourced input represents a life grid, each pixel represents a cell
22258 which can be in one of two possible states, alive or dead. Every cell
22259 interacts with its eight neighbours, which are the cells that are
22260 horizontally, vertically, or diagonally adjacent.
22261
22262 At each interaction the grid evolves according to the adopted rule,
22263 which specifies the number of neighbor alive cells which will make a
22264 cell stay alive or born. The @option{rule} option allows one to specify
22265 the rule to adopt.
22266
22267 This source accepts the following options:
22268
22269 @table @option
22270 @item filename, f
22271 Set the file from which to read the initial grid state. In the file,
22272 each non-whitespace character is considered an alive cell, and newline
22273 is used to delimit the end of each row.
22274
22275 If this option is not specified, the initial grid is generated
22276 randomly.
22277
22278 @item rate, r
22279 Set the video rate, that is the number of frames generated per second.
22280 Default is 25.
22281
22282 @item random_fill_ratio, ratio
22283 Set the random fill ratio for the initial random grid. It is a
22284 floating point number value ranging from 0 to 1, defaults to 1/PHI.
22285 It is ignored when a file is specified.
22286
22287 @item random_seed, seed
22288 Set the seed for filling the initial random grid, must be an integer
22289 included between 0 and UINT32_MAX. If not specified, or if explicitly
22290 set to -1, the filter will try to use a good random seed on a best
22291 effort basis.
22292
22293 @item rule
22294 Set the life rule.
22295
22296 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
22297 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
22298 @var{NS} specifies the number of alive neighbor cells which make a
22299 live cell stay alive, and @var{NB} the number of alive neighbor cells
22300 which make a dead cell to become alive (i.e. to "born").
22301 "s" and "b" can be used in place of "S" and "B", respectively.
22302
22303 Alternatively a rule can be specified by an 18-bits integer. The 9
22304 high order bits are used to encode the next cell state if it is alive
22305 for each number of neighbor alive cells, the low order bits specify
22306 the rule for "borning" new cells. Higher order bits encode for an
22307 higher number of neighbor cells.
22308 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
22309 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
22310
22311 Default value is "S23/B3", which is the original Conway's game of life
22312 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
22313 cells, and will born a new cell if there are three alive cells around
22314 a dead cell.
22315
22316 @item size, s
22317 Set the size of the output video. For the syntax of this option, check the
22318 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22319
22320 If @option{filename} is specified, the size is set by default to the
22321 same size of the input file. If @option{size} is set, it must contain
22322 the size specified in the input file, and the initial grid defined in
22323 that file is centered in the larger resulting area.
22324
22325 If a filename is not specified, the size value defaults to "320x240"
22326 (used for a randomly generated initial grid).
22327
22328 @item stitch
22329 If set to 1, stitch the left and right grid edges together, and the
22330 top and bottom edges also. Defaults to 1.
22331
22332 @item mold
22333 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
22334 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
22335 value from 0 to 255.
22336
22337 @item life_color
22338 Set the color of living (or new born) cells.
22339
22340 @item death_color
22341 Set the color of dead cells. If @option{mold} is set, this is the first color
22342 used to represent a dead cell.
22343
22344 @item mold_color
22345 Set mold color, for definitely dead and moldy cells.
22346
22347 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
22348 ffmpeg-utils manual,ffmpeg-utils}.
22349 @end table
22350
22351 @subsection Examples
22352
22353 @itemize
22354 @item
22355 Read a grid from @file{pattern}, and center it on a grid of size
22356 300x300 pixels:
22357 @example
22358 life=f=pattern:s=300x300
22359 @end example
22360
22361 @item
22362 Generate a random grid of size 200x200, with a fill ratio of 2/3:
22363 @example
22364 life=ratio=2/3:s=200x200
22365 @end example
22366
22367 @item
22368 Specify a custom rule for evolving a randomly generated grid:
22369 @example
22370 life=rule=S14/B34
22371 @end example
22372
22373 @item
22374 Full example with slow death effect (mold) using @command{ffplay}:
22375 @example
22376 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
22377 @end example
22378 @end itemize
22379
22380 @anchor{allrgb}
22381 @anchor{allyuv}
22382 @anchor{color}
22383 @anchor{haldclutsrc}
22384 @anchor{nullsrc}
22385 @anchor{pal75bars}
22386 @anchor{pal100bars}
22387 @anchor{rgbtestsrc}
22388 @anchor{smptebars}
22389 @anchor{smptehdbars}
22390 @anchor{testsrc}
22391 @anchor{testsrc2}
22392 @anchor{yuvtestsrc}
22393 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
22394
22395 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
22396
22397 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
22398
22399 The @code{color} source provides an uniformly colored input.
22400
22401 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
22402 @ref{haldclut} filter.
22403
22404 The @code{nullsrc} source returns unprocessed video frames. It is
22405 mainly useful to be employed in analysis / debugging tools, or as the
22406 source for filters which ignore the input data.
22407
22408 The @code{pal75bars} source generates a color bars pattern, based on
22409 EBU PAL recommendations with 75% color levels.
22410
22411 The @code{pal100bars} source generates a color bars pattern, based on
22412 EBU PAL recommendations with 100% color levels.
22413
22414 The @code{rgbtestsrc} source generates an RGB test pattern useful for
22415 detecting RGB vs BGR issues. You should see a red, green and blue
22416 stripe from top to bottom.
22417
22418 The @code{smptebars} source generates a color bars pattern, based on
22419 the SMPTE Engineering Guideline EG 1-1990.
22420
22421 The @code{smptehdbars} source generates a color bars pattern, based on
22422 the SMPTE RP 219-2002.
22423
22424 The @code{testsrc} source generates a test video pattern, showing a
22425 color pattern, a scrolling gradient and a timestamp. This is mainly
22426 intended for testing purposes.
22427
22428 The @code{testsrc2} source is similar to testsrc, but supports more
22429 pixel formats instead of just @code{rgb24}. This allows using it as an
22430 input for other tests without requiring a format conversion.
22431
22432 The @code{yuvtestsrc} source generates an YUV test pattern. You should
22433 see a y, cb and cr stripe from top to bottom.
22434
22435 The sources accept the following parameters:
22436
22437 @table @option
22438
22439 @item level
22440 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
22441 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
22442 pixels to be used as identity matrix for 3D lookup tables. Each component is
22443 coded on a @code{1/(N*N)} scale.
22444
22445 @item color, c
22446 Specify the color of the source, only available in the @code{color}
22447 source. For the syntax of this option, check the
22448 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
22449
22450 @item size, s
22451 Specify the size of the sourced video. For the syntax of this option, check the
22452 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22453 The default value is @code{320x240}.
22454
22455 This option is not available with the @code{allrgb}, @code{allyuv}, and
22456 @code{haldclutsrc} filters.
22457
22458 @item rate, r
22459 Specify the frame rate of the sourced video, as the number of frames
22460 generated per second. It has to be a string in the format
22461 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22462 number or a valid video frame rate abbreviation. The default value is
22463 "25".
22464
22465 @item duration, d
22466 Set the duration of the sourced video. See
22467 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22468 for the accepted syntax.
22469
22470 If not specified, or the expressed duration is negative, the video is
22471 supposed to be generated forever.
22472
22473 @item sar
22474 Set the sample aspect ratio of the sourced video.
22475
22476 @item alpha
22477 Specify the alpha (opacity) of the background, only available in the
22478 @code{testsrc2} source. The value must be between 0 (fully transparent) and
22479 255 (fully opaque, the default).
22480
22481 @item decimals, n
22482 Set the number of decimals to show in the timestamp, only available in the
22483 @code{testsrc} source.
22484
22485 The displayed timestamp value will correspond to the original
22486 timestamp value multiplied by the power of 10 of the specified
22487 value. Default value is 0.
22488 @end table
22489
22490 @subsection Examples
22491
22492 @itemize
22493 @item
22494 Generate a video with a duration of 5.3 seconds, with size
22495 176x144 and a frame rate of 10 frames per second:
22496 @example
22497 testsrc=duration=5.3:size=qcif:rate=10
22498 @end example
22499
22500 @item
22501 The following graph description will generate a red source
22502 with an opacity of 0.2, with size "qcif" and a frame rate of 10
22503 frames per second:
22504 @example
22505 color=c=red@@0.2:s=qcif:r=10
22506 @end example
22507
22508 @item
22509 If the input content is to be ignored, @code{nullsrc} can be used. The
22510 following command generates noise in the luminance plane by employing
22511 the @code{geq} filter:
22512 @example
22513 nullsrc=s=256x256, geq=random(1)*255:128:128
22514 @end example
22515 @end itemize
22516
22517 @subsection Commands
22518
22519 The @code{color} source supports the following commands:
22520
22521 @table @option
22522 @item c, color
22523 Set the color of the created image. Accepts the same syntax of the
22524 corresponding @option{color} option.
22525 @end table
22526
22527 @section openclsrc
22528
22529 Generate video using an OpenCL program.
22530
22531 @table @option
22532
22533 @item source
22534 OpenCL program source file.
22535
22536 @item kernel
22537 Kernel name in program.
22538
22539 @item size, s
22540 Size of frames to generate.  This must be set.
22541
22542 @item format
22543 Pixel format to use for the generated frames.  This must be set.
22544
22545 @item rate, r
22546 Number of frames generated every second.  Default value is '25'.
22547
22548 @end table
22549
22550 For details of how the program loading works, see the @ref{program_opencl}
22551 filter.
22552
22553 Example programs:
22554
22555 @itemize
22556 @item
22557 Generate a colour ramp by setting pixel values from the position of the pixel
22558 in the output image.  (Note that this will work with all pixel formats, but
22559 the generated output will not be the same.)
22560 @verbatim
22561 __kernel void ramp(__write_only image2d_t dst,
22562                    unsigned int index)
22563 {
22564     int2 loc = (int2)(get_global_id(0), get_global_id(1));
22565
22566     float4 val;
22567     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
22568
22569     write_imagef(dst, loc, val);
22570 }
22571 @end verbatim
22572
22573 @item
22574 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
22575 @verbatim
22576 __kernel void sierpinski_carpet(__write_only image2d_t dst,
22577                                 unsigned int index)
22578 {
22579     int2 loc = (int2)(get_global_id(0), get_global_id(1));
22580
22581     float4 value = 0.0f;
22582     int x = loc.x + index;
22583     int y = loc.y + index;
22584     while (x > 0 || y > 0) {
22585         if (x % 3 == 1 && y % 3 == 1) {
22586             value = 1.0f;
22587             break;
22588         }
22589         x /= 3;
22590         y /= 3;
22591     }
22592
22593     write_imagef(dst, loc, value);
22594 }
22595 @end verbatim
22596
22597 @end itemize
22598
22599 @section sierpinski
22600
22601 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
22602
22603 This source accepts the following options:
22604
22605 @table @option
22606 @item size, s
22607 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22608 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22609
22610 @item rate, r
22611 Set frame rate, expressed as number of frames per second. Default
22612 value is "25".
22613
22614 @item seed
22615 Set seed which is used for random panning.
22616
22617 @item jump
22618 Set max jump for single pan destination. Allowed range is from 1 to 10000.
22619
22620 @item type
22621 Set fractal type, can be default @code{carpet} or @code{triangle}.
22622 @end table
22623
22624 @c man end VIDEO SOURCES
22625
22626 @chapter Video Sinks
22627 @c man begin VIDEO SINKS
22628
22629 Below is a description of the currently available video sinks.
22630
22631 @section buffersink
22632
22633 Buffer video frames, and make them available to the end of the filter
22634 graph.
22635
22636 This sink is mainly intended for programmatic use, in particular
22637 through the interface defined in @file{libavfilter/buffersink.h}
22638 or the options system.
22639
22640 It accepts a pointer to an AVBufferSinkContext structure, which
22641 defines the incoming buffers' formats, to be passed as the opaque
22642 parameter to @code{avfilter_init_filter} for initialization.
22643
22644 @section nullsink
22645
22646 Null video sink: do absolutely nothing with the input video. It is
22647 mainly useful as a template and for use in analysis / debugging
22648 tools.
22649
22650 @c man end VIDEO SINKS
22651
22652 @chapter Multimedia Filters
22653 @c man begin MULTIMEDIA FILTERS
22654
22655 Below is a description of the currently available multimedia filters.
22656
22657 @section abitscope
22658
22659 Convert input audio to a video output, displaying the audio bit scope.
22660
22661 The filter accepts the following options:
22662
22663 @table @option
22664 @item rate, r
22665 Set frame rate, expressed as number of frames per second. Default
22666 value is "25".
22667
22668 @item size, s
22669 Specify the video size for the output. For the syntax of this option, check the
22670 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22671 Default value is @code{1024x256}.
22672
22673 @item colors
22674 Specify list of colors separated by space or by '|' which will be used to
22675 draw channels. Unrecognized or missing colors will be replaced
22676 by white color.
22677 @end table
22678
22679 @section adrawgraph
22680 Draw a graph using input audio metadata.
22681
22682 See @ref{drawgraph}
22683
22684 @section agraphmonitor
22685
22686 See @ref{graphmonitor}.
22687
22688 @section ahistogram
22689
22690 Convert input audio to a video output, displaying the volume histogram.
22691
22692 The filter accepts the following options:
22693
22694 @table @option
22695 @item dmode
22696 Specify how histogram is calculated.
22697
22698 It accepts the following values:
22699 @table @samp
22700 @item single
22701 Use single histogram for all channels.
22702 @item separate
22703 Use separate histogram for each channel.
22704 @end table
22705 Default is @code{single}.
22706
22707 @item rate, r
22708 Set frame rate, expressed as number of frames per second. Default
22709 value is "25".
22710
22711 @item size, s
22712 Specify the video size for the output. For the syntax of this option, check the
22713 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22714 Default value is @code{hd720}.
22715
22716 @item scale
22717 Set display scale.
22718
22719 It accepts the following values:
22720 @table @samp
22721 @item log
22722 logarithmic
22723 @item sqrt
22724 square root
22725 @item cbrt
22726 cubic root
22727 @item lin
22728 linear
22729 @item rlog
22730 reverse logarithmic
22731 @end table
22732 Default is @code{log}.
22733
22734 @item ascale
22735 Set amplitude scale.
22736
22737 It accepts the following values:
22738 @table @samp
22739 @item log
22740 logarithmic
22741 @item lin
22742 linear
22743 @end table
22744 Default is @code{log}.
22745
22746 @item acount
22747 Set how much frames to accumulate in histogram.
22748 Default is 1. Setting this to -1 accumulates all frames.
22749
22750 @item rheight
22751 Set histogram ratio of window height.
22752
22753 @item slide
22754 Set sonogram sliding.
22755
22756 It accepts the following values:
22757 @table @samp
22758 @item replace
22759 replace old rows with new ones.
22760 @item scroll
22761 scroll from top to bottom.
22762 @end table
22763 Default is @code{replace}.
22764 @end table
22765
22766 @section aphasemeter
22767
22768 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
22769 representing mean phase of current audio frame. A video output can also be produced and is
22770 enabled by default. The audio is passed through as first output.
22771
22772 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
22773 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
22774 and @code{1} means channels are in phase.
22775
22776 The filter accepts the following options, all related to its video output:
22777
22778 @table @option
22779 @item rate, r
22780 Set the output frame rate. Default value is @code{25}.
22781
22782 @item size, s
22783 Set the video size for the output. For the syntax of this option, check the
22784 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22785 Default value is @code{800x400}.
22786
22787 @item rc
22788 @item gc
22789 @item bc
22790 Specify the red, green, blue contrast. Default values are @code{2},
22791 @code{7} and @code{1}.
22792 Allowed range is @code{[0, 255]}.
22793
22794 @item mpc
22795 Set color which will be used for drawing median phase. If color is
22796 @code{none} which is default, no median phase value will be drawn.
22797
22798 @item video
22799 Enable video output. Default is enabled.
22800 @end table
22801
22802 @section avectorscope
22803
22804 Convert input audio to a video output, representing the audio vector
22805 scope.
22806
22807 The filter is used to measure the difference between channels of stereo
22808 audio stream. A monaural signal, consisting of identical left and right
22809 signal, results in straight vertical line. Any stereo separation is visible
22810 as a deviation from this line, creating a Lissajous figure.
22811 If the straight (or deviation from it) but horizontal line appears this
22812 indicates that the left and right channels are out of phase.
22813
22814 The filter accepts the following options:
22815
22816 @table @option
22817 @item mode, m
22818 Set the vectorscope mode.
22819
22820 Available values are:
22821 @table @samp
22822 @item lissajous
22823 Lissajous rotated by 45 degrees.
22824
22825 @item lissajous_xy
22826 Same as above but not rotated.
22827
22828 @item polar
22829 Shape resembling half of circle.
22830 @end table
22831
22832 Default value is @samp{lissajous}.
22833
22834 @item size, s
22835 Set the video size for the output. For the syntax of this option, check the
22836 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22837 Default value is @code{400x400}.
22838
22839 @item rate, r
22840 Set the output frame rate. Default value is @code{25}.
22841
22842 @item rc
22843 @item gc
22844 @item bc
22845 @item ac
22846 Specify the red, green, blue and alpha contrast. Default values are @code{40},
22847 @code{160}, @code{80} and @code{255}.
22848 Allowed range is @code{[0, 255]}.
22849
22850 @item rf
22851 @item gf
22852 @item bf
22853 @item af
22854 Specify the red, green, blue and alpha fade. Default values are @code{15},
22855 @code{10}, @code{5} and @code{5}.
22856 Allowed range is @code{[0, 255]}.
22857
22858 @item zoom
22859 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
22860 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
22861
22862 @item draw
22863 Set the vectorscope drawing mode.
22864
22865 Available values are:
22866 @table @samp
22867 @item dot
22868 Draw dot for each sample.
22869
22870 @item line
22871 Draw line between previous and current sample.
22872 @end table
22873
22874 Default value is @samp{dot}.
22875
22876 @item scale
22877 Specify amplitude scale of audio samples.
22878
22879 Available values are:
22880 @table @samp
22881 @item lin
22882 Linear.
22883
22884 @item sqrt
22885 Square root.
22886
22887 @item cbrt
22888 Cubic root.
22889
22890 @item log
22891 Logarithmic.
22892 @end table
22893
22894 @item swap
22895 Swap left channel axis with right channel axis.
22896
22897 @item mirror
22898 Mirror axis.
22899
22900 @table @samp
22901 @item none
22902 No mirror.
22903
22904 @item x
22905 Mirror only x axis.
22906
22907 @item y
22908 Mirror only y axis.
22909
22910 @item xy
22911 Mirror both axis.
22912 @end table
22913
22914 @end table
22915
22916 @subsection Examples
22917
22918 @itemize
22919 @item
22920 Complete example using @command{ffplay}:
22921 @example
22922 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
22923              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
22924 @end example
22925 @end itemize
22926
22927 @section bench, abench
22928
22929 Benchmark part of a filtergraph.
22930
22931 The filter accepts the following options:
22932
22933 @table @option
22934 @item action
22935 Start or stop a timer.
22936
22937 Available values are:
22938 @table @samp
22939 @item start
22940 Get the current time, set it as frame metadata (using the key
22941 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
22942
22943 @item stop
22944 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
22945 the input frame metadata to get the time difference. Time difference, average,
22946 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
22947 @code{min}) are then printed. The timestamps are expressed in seconds.
22948 @end table
22949 @end table
22950
22951 @subsection Examples
22952
22953 @itemize
22954 @item
22955 Benchmark @ref{selectivecolor} filter:
22956 @example
22957 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
22958 @end example
22959 @end itemize
22960
22961 @section concat
22962
22963 Concatenate audio and video streams, joining them together one after the
22964 other.
22965
22966 The filter works on segments of synchronized video and audio streams. All
22967 segments must have the same number of streams of each type, and that will
22968 also be the number of streams at output.
22969
22970 The filter accepts the following options:
22971
22972 @table @option
22973
22974 @item n
22975 Set the number of segments. Default is 2.
22976
22977 @item v
22978 Set the number of output video streams, that is also the number of video
22979 streams in each segment. Default is 1.
22980
22981 @item a
22982 Set the number of output audio streams, that is also the number of audio
22983 streams in each segment. Default is 0.
22984
22985 @item unsafe
22986 Activate unsafe mode: do not fail if segments have a different format.
22987
22988 @end table
22989
22990 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
22991 @var{a} audio outputs.
22992
22993 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
22994 segment, in the same order as the outputs, then the inputs for the second
22995 segment, etc.
22996
22997 Related streams do not always have exactly the same duration, for various
22998 reasons including codec frame size or sloppy authoring. For that reason,
22999 related synchronized streams (e.g. a video and its audio track) should be
23000 concatenated at once. The concat filter will use the duration of the longest
23001 stream in each segment (except the last one), and if necessary pad shorter
23002 audio streams with silence.
23003
23004 For this filter to work correctly, all segments must start at timestamp 0.
23005
23006 All corresponding streams must have the same parameters in all segments; the
23007 filtering system will automatically select a common pixel format for video
23008 streams, and a common sample format, sample rate and channel layout for
23009 audio streams, but other settings, such as resolution, must be converted
23010 explicitly by the user.
23011
23012 Different frame rates are acceptable but will result in variable frame rate
23013 at output; be sure to configure the output file to handle it.
23014
23015 @subsection Examples
23016
23017 @itemize
23018 @item
23019 Concatenate an opening, an episode and an ending, all in bilingual version
23020 (video in stream 0, audio in streams 1 and 2):
23021 @example
23022 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
23023   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
23024    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
23025   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
23026 @end example
23027
23028 @item
23029 Concatenate two parts, handling audio and video separately, using the
23030 (a)movie sources, and adjusting the resolution:
23031 @example
23032 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
23033 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
23034 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
23035 @end example
23036 Note that a desync will happen at the stitch if the audio and video streams
23037 do not have exactly the same duration in the first file.
23038
23039 @end itemize
23040
23041 @subsection Commands
23042
23043 This filter supports the following commands:
23044 @table @option
23045 @item next
23046 Close the current segment and step to the next one
23047 @end table
23048
23049 @anchor{ebur128}
23050 @section ebur128
23051
23052 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
23053 level. By default, it logs a message at a frequency of 10Hz with the
23054 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
23055 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
23056
23057 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
23058 sample format is double-precision floating point. The input stream will be converted to
23059 this specification, if needed. Users may need to insert aformat and/or aresample filters
23060 after this filter to obtain the original parameters.
23061
23062 The filter also has a video output (see the @var{video} option) with a real
23063 time graph to observe the loudness evolution. The graphic contains the logged
23064 message mentioned above, so it is not printed anymore when this option is set,
23065 unless the verbose logging is set. The main graphing area contains the
23066 short-term loudness (3 seconds of analysis), and the gauge on the right is for
23067 the momentary loudness (400 milliseconds), but can optionally be configured
23068 to instead display short-term loudness (see @var{gauge}).
23069
23070 The green area marks a  +/- 1LU target range around the target loudness
23071 (-23LUFS by default, unless modified through @var{target}).
23072
23073 More information about the Loudness Recommendation EBU R128 on
23074 @url{http://tech.ebu.ch/loudness}.
23075
23076 The filter accepts the following options:
23077
23078 @table @option
23079
23080 @item video
23081 Activate the video output. The audio stream is passed unchanged whether this
23082 option is set or no. The video stream will be the first output stream if
23083 activated. Default is @code{0}.
23084
23085 @item size
23086 Set the video size. This option is for video only. For the syntax of this
23087 option, check the
23088 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23089 Default and minimum resolution is @code{640x480}.
23090
23091 @item meter
23092 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
23093 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
23094 other integer value between this range is allowed.
23095
23096 @item metadata
23097 Set metadata injection. If set to @code{1}, the audio input will be segmented
23098 into 100ms output frames, each of them containing various loudness information
23099 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
23100
23101 Default is @code{0}.
23102
23103 @item framelog
23104 Force the frame logging level.
23105
23106 Available values are:
23107 @table @samp
23108 @item info
23109 information logging level
23110 @item verbose
23111 verbose logging level
23112 @end table
23113
23114 By default, the logging level is set to @var{info}. If the @option{video} or
23115 the @option{metadata} options are set, it switches to @var{verbose}.
23116
23117 @item peak
23118 Set peak mode(s).
23119
23120 Available modes can be cumulated (the option is a @code{flag} type). Possible
23121 values are:
23122 @table @samp
23123 @item none
23124 Disable any peak mode (default).
23125 @item sample
23126 Enable sample-peak mode.
23127
23128 Simple peak mode looking for the higher sample value. It logs a message
23129 for sample-peak (identified by @code{SPK}).
23130 @item true
23131 Enable true-peak mode.
23132
23133 If enabled, the peak lookup is done on an over-sampled version of the input
23134 stream for better peak accuracy. It logs a message for true-peak.
23135 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
23136 This mode requires a build with @code{libswresample}.
23137 @end table
23138
23139 @item dualmono
23140 Treat mono input files as "dual mono". If a mono file is intended for playback
23141 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
23142 If set to @code{true}, this option will compensate for this effect.
23143 Multi-channel input files are not affected by this option.
23144
23145 @item panlaw
23146 Set a specific pan law to be used for the measurement of dual mono files.
23147 This parameter is optional, and has a default value of -3.01dB.
23148
23149 @item target
23150 Set a specific target level (in LUFS) used as relative zero in the visualization.
23151 This parameter is optional and has a default value of -23LUFS as specified
23152 by EBU R128. However, material published online may prefer a level of -16LUFS
23153 (e.g. for use with podcasts or video platforms).
23154
23155 @item gauge
23156 Set the value displayed by the gauge. Valid values are @code{momentary} and s
23157 @code{shortterm}. By default the momentary value will be used, but in certain
23158 scenarios it may be more useful to observe the short term value instead (e.g.
23159 live mixing).
23160
23161 @item scale
23162 Sets the display scale for the loudness. Valid parameters are @code{absolute}
23163 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
23164 video output, not the summary or continuous log output.
23165 @end table
23166
23167 @subsection Examples
23168
23169 @itemize
23170 @item
23171 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
23172 @example
23173 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
23174 @end example
23175
23176 @item
23177 Run an analysis with @command{ffmpeg}:
23178 @example
23179 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
23180 @end example
23181 @end itemize
23182
23183 @section interleave, ainterleave
23184
23185 Temporally interleave frames from several inputs.
23186
23187 @code{interleave} works with video inputs, @code{ainterleave} with audio.
23188
23189 These filters read frames from several inputs and send the oldest
23190 queued frame to the output.
23191
23192 Input streams must have well defined, monotonically increasing frame
23193 timestamp values.
23194
23195 In order to submit one frame to output, these filters need to enqueue
23196 at least one frame for each input, so they cannot work in case one
23197 input is not yet terminated and will not receive incoming frames.
23198
23199 For example consider the case when one input is a @code{select} filter
23200 which always drops input frames. The @code{interleave} filter will keep
23201 reading from that input, but it will never be able to send new frames
23202 to output until the input sends an end-of-stream signal.
23203
23204 Also, depending on inputs synchronization, the filters will drop
23205 frames in case one input receives more frames than the other ones, and
23206 the queue is already filled.
23207
23208 These filters accept the following options:
23209
23210 @table @option
23211 @item nb_inputs, n
23212 Set the number of different inputs, it is 2 by default.
23213 @end table
23214
23215 @subsection Examples
23216
23217 @itemize
23218 @item
23219 Interleave frames belonging to different streams using @command{ffmpeg}:
23220 @example
23221 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
23222 @end example
23223
23224 @item
23225 Add flickering blur effect:
23226 @example
23227 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
23228 @end example
23229 @end itemize
23230
23231 @section metadata, ametadata
23232
23233 Manipulate frame metadata.
23234
23235 This filter accepts the following options:
23236
23237 @table @option
23238 @item mode
23239 Set mode of operation of the filter.
23240
23241 Can be one of the following:
23242
23243 @table @samp
23244 @item select
23245 If both @code{value} and @code{key} is set, select frames
23246 which have such metadata. If only @code{key} is set, select
23247 every frame that has such key in metadata.
23248
23249 @item add
23250 Add new metadata @code{key} and @code{value}. If key is already available
23251 do nothing.
23252
23253 @item modify
23254 Modify value of already present key.
23255
23256 @item delete
23257 If @code{value} is set, delete only keys that have such value.
23258 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
23259 the frame.
23260
23261 @item print
23262 Print key and its value if metadata was found. If @code{key} is not set print all
23263 metadata values available in frame.
23264 @end table
23265
23266 @item key
23267 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
23268
23269 @item value
23270 Set metadata value which will be used. This option is mandatory for
23271 @code{modify} and @code{add} mode.
23272
23273 @item function
23274 Which function to use when comparing metadata value and @code{value}.
23275
23276 Can be one of following:
23277
23278 @table @samp
23279 @item same_str
23280 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
23281
23282 @item starts_with
23283 Values are interpreted as strings, returns true if metadata value starts with
23284 the @code{value} option string.
23285
23286 @item less
23287 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
23288
23289 @item equal
23290 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
23291
23292 @item greater
23293 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
23294
23295 @item expr
23296 Values are interpreted as floats, returns true if expression from option @code{expr}
23297 evaluates to true.
23298
23299 @item ends_with
23300 Values are interpreted as strings, returns true if metadata value ends with
23301 the @code{value} option string.
23302 @end table
23303
23304 @item expr
23305 Set expression which is used when @code{function} is set to @code{expr}.
23306 The expression is evaluated through the eval API and can contain the following
23307 constants:
23308
23309 @table @option
23310 @item VALUE1
23311 Float representation of @code{value} from metadata key.
23312
23313 @item VALUE2
23314 Float representation of @code{value} as supplied by user in @code{value} option.
23315 @end table
23316
23317 @item file
23318 If specified in @code{print} mode, output is written to the named file. Instead of
23319 plain filename any writable url can be specified. Filename ``-'' is a shorthand
23320 for standard output. If @code{file} option is not set, output is written to the log
23321 with AV_LOG_INFO loglevel.
23322
23323 @item direct
23324 Reduces buffering in print mode when output is written to a URL set using @var{file}.
23325
23326 @end table
23327
23328 @subsection Examples
23329
23330 @itemize
23331 @item
23332 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
23333 between 0 and 1.
23334 @example
23335 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
23336 @end example
23337 @item
23338 Print silencedetect output to file @file{metadata.txt}.
23339 @example
23340 silencedetect,ametadata=mode=print:file=metadata.txt
23341 @end example
23342 @item
23343 Direct all metadata to a pipe with file descriptor 4.
23344 @example
23345 metadata=mode=print:file='pipe\:4'
23346 @end example
23347 @end itemize
23348
23349 @section perms, aperms
23350
23351 Set read/write permissions for the output frames.
23352
23353 These filters are mainly aimed at developers to test direct path in the
23354 following filter in the filtergraph.
23355
23356 The filters accept the following options:
23357
23358 @table @option
23359 @item mode
23360 Select the permissions mode.
23361
23362 It accepts the following values:
23363 @table @samp
23364 @item none
23365 Do nothing. This is the default.
23366 @item ro
23367 Set all the output frames read-only.
23368 @item rw
23369 Set all the output frames directly writable.
23370 @item toggle
23371 Make the frame read-only if writable, and writable if read-only.
23372 @item random
23373 Set each output frame read-only or writable randomly.
23374 @end table
23375
23376 @item seed
23377 Set the seed for the @var{random} mode, must be an integer included between
23378 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
23379 @code{-1}, the filter will try to use a good random seed on a best effort
23380 basis.
23381 @end table
23382
23383 Note: in case of auto-inserted filter between the permission filter and the
23384 following one, the permission might not be received as expected in that
23385 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
23386 perms/aperms filter can avoid this problem.
23387
23388 @section realtime, arealtime
23389
23390 Slow down filtering to match real time approximately.
23391
23392 These filters will pause the filtering for a variable amount of time to
23393 match the output rate with the input timestamps.
23394 They are similar to the @option{re} option to @code{ffmpeg}.
23395
23396 They accept the following options:
23397
23398 @table @option
23399 @item limit
23400 Time limit for the pauses. Any pause longer than that will be considered
23401 a timestamp discontinuity and reset the timer. Default is 2 seconds.
23402 @item speed
23403 Speed factor for processing. The value must be a float larger than zero.
23404 Values larger than 1.0 will result in faster than realtime processing,
23405 smaller will slow processing down. The @var{limit} is automatically adapted
23406 accordingly. Default is 1.0.
23407
23408 A processing speed faster than what is possible without these filters cannot
23409 be achieved.
23410 @end table
23411
23412 @anchor{select}
23413 @section select, aselect
23414
23415 Select frames to pass in output.
23416
23417 This filter accepts the following options:
23418
23419 @table @option
23420
23421 @item expr, e
23422 Set expression, which is evaluated for each input frame.
23423
23424 If the expression is evaluated to zero, the frame is discarded.
23425
23426 If the evaluation result is negative or NaN, the frame is sent to the
23427 first output; otherwise it is sent to the output with index
23428 @code{ceil(val)-1}, assuming that the input index starts from 0.
23429
23430 For example a value of @code{1.2} corresponds to the output with index
23431 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
23432
23433 @item outputs, n
23434 Set the number of outputs. The output to which to send the selected
23435 frame is based on the result of the evaluation. Default value is 1.
23436 @end table
23437
23438 The expression can contain the following constants:
23439
23440 @table @option
23441 @item n
23442 The (sequential) number of the filtered frame, starting from 0.
23443
23444 @item selected_n
23445 The (sequential) number of the selected frame, starting from 0.
23446
23447 @item prev_selected_n
23448 The sequential number of the last selected frame. It's NAN if undefined.
23449
23450 @item TB
23451 The timebase of the input timestamps.
23452
23453 @item pts
23454 The PTS (Presentation TimeStamp) of the filtered video frame,
23455 expressed in @var{TB} units. It's NAN if undefined.
23456
23457 @item t
23458 The PTS of the filtered video frame,
23459 expressed in seconds. It's NAN if undefined.
23460
23461 @item prev_pts
23462 The PTS of the previously filtered video frame. It's NAN if undefined.
23463
23464 @item prev_selected_pts
23465 The PTS of the last previously filtered video frame. It's NAN if undefined.
23466
23467 @item prev_selected_t
23468 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
23469
23470 @item start_pts
23471 The PTS of the first video frame in the video. It's NAN if undefined.
23472
23473 @item start_t
23474 The time of the first video frame in the video. It's NAN if undefined.
23475
23476 @item pict_type @emph{(video only)}
23477 The type of the filtered frame. It can assume one of the following
23478 values:
23479 @table @option
23480 @item I
23481 @item P
23482 @item B
23483 @item S
23484 @item SI
23485 @item SP
23486 @item BI
23487 @end table
23488
23489 @item interlace_type @emph{(video only)}
23490 The frame interlace type. It can assume one of the following values:
23491 @table @option
23492 @item PROGRESSIVE
23493 The frame is progressive (not interlaced).
23494 @item TOPFIRST
23495 The frame is top-field-first.
23496 @item BOTTOMFIRST
23497 The frame is bottom-field-first.
23498 @end table
23499
23500 @item consumed_sample_n @emph{(audio only)}
23501 the number of selected samples before the current frame
23502
23503 @item samples_n @emph{(audio only)}
23504 the number of samples in the current frame
23505
23506 @item sample_rate @emph{(audio only)}
23507 the input sample rate
23508
23509 @item key
23510 This is 1 if the filtered frame is a key-frame, 0 otherwise.
23511
23512 @item pos
23513 the position in the file of the filtered frame, -1 if the information
23514 is not available (e.g. for synthetic video)
23515
23516 @item scene @emph{(video only)}
23517 value between 0 and 1 to indicate a new scene; a low value reflects a low
23518 probability for the current frame to introduce a new scene, while a higher
23519 value means the current frame is more likely to be one (see the example below)
23520
23521 @item concatdec_select
23522 The concat demuxer can select only part of a concat input file by setting an
23523 inpoint and an outpoint, but the output packets may not be entirely contained
23524 in the selected interval. By using this variable, it is possible to skip frames
23525 generated by the concat demuxer which are not exactly contained in the selected
23526 interval.
23527
23528 This works by comparing the frame pts against the @var{lavf.concat.start_time}
23529 and the @var{lavf.concat.duration} packet metadata values which are also
23530 present in the decoded frames.
23531
23532 The @var{concatdec_select} variable is -1 if the frame pts is at least
23533 start_time and either the duration metadata is missing or the frame pts is less
23534 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
23535 missing.
23536
23537 That basically means that an input frame is selected if its pts is within the
23538 interval set by the concat demuxer.
23539
23540 @end table
23541
23542 The default value of the select expression is "1".
23543
23544 @subsection Examples
23545
23546 @itemize
23547 @item
23548 Select all frames in input:
23549 @example
23550 select
23551 @end example
23552
23553 The example above is the same as:
23554 @example
23555 select=1
23556 @end example
23557
23558 @item
23559 Skip all frames:
23560 @example
23561 select=0
23562 @end example
23563
23564 @item
23565 Select only I-frames:
23566 @example
23567 select='eq(pict_type\,I)'
23568 @end example
23569
23570 @item
23571 Select one frame every 100:
23572 @example
23573 select='not(mod(n\,100))'
23574 @end example
23575
23576 @item
23577 Select only frames contained in the 10-20 time interval:
23578 @example
23579 select=between(t\,10\,20)
23580 @end example
23581
23582 @item
23583 Select only I-frames contained in the 10-20 time interval:
23584 @example
23585 select=between(t\,10\,20)*eq(pict_type\,I)
23586 @end example
23587
23588 @item
23589 Select frames with a minimum distance of 10 seconds:
23590 @example
23591 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
23592 @end example
23593
23594 @item
23595 Use aselect to select only audio frames with samples number > 100:
23596 @example
23597 aselect='gt(samples_n\,100)'
23598 @end example
23599
23600 @item
23601 Create a mosaic of the first scenes:
23602 @example
23603 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
23604 @end example
23605
23606 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
23607 choice.
23608
23609 @item
23610 Send even and odd frames to separate outputs, and compose them:
23611 @example
23612 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
23613 @end example
23614
23615 @item
23616 Select useful frames from an ffconcat file which is using inpoints and
23617 outpoints but where the source files are not intra frame only.
23618 @example
23619 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
23620 @end example
23621 @end itemize
23622
23623 @section sendcmd, asendcmd
23624
23625 Send commands to filters in the filtergraph.
23626
23627 These filters read commands to be sent to other filters in the
23628 filtergraph.
23629
23630 @code{sendcmd} must be inserted between two video filters,
23631 @code{asendcmd} must be inserted between two audio filters, but apart
23632 from that they act the same way.
23633
23634 The specification of commands can be provided in the filter arguments
23635 with the @var{commands} option, or in a file specified by the
23636 @var{filename} option.
23637
23638 These filters accept the following options:
23639 @table @option
23640 @item commands, c
23641 Set the commands to be read and sent to the other filters.
23642 @item filename, f
23643 Set the filename of the commands to be read and sent to the other
23644 filters.
23645 @end table
23646
23647 @subsection Commands syntax
23648
23649 A commands description consists of a sequence of interval
23650 specifications, comprising a list of commands to be executed when a
23651 particular event related to that interval occurs. The occurring event
23652 is typically the current frame time entering or leaving a given time
23653 interval.
23654
23655 An interval is specified by the following syntax:
23656 @example
23657 @var{START}[-@var{END}] @var{COMMANDS};
23658 @end example
23659
23660 The time interval is specified by the @var{START} and @var{END} times.
23661 @var{END} is optional and defaults to the maximum time.
23662
23663 The current frame time is considered within the specified interval if
23664 it is included in the interval [@var{START}, @var{END}), that is when
23665 the time is greater or equal to @var{START} and is lesser than
23666 @var{END}.
23667
23668 @var{COMMANDS} consists of a sequence of one or more command
23669 specifications, separated by ",", relating to that interval.  The
23670 syntax of a command specification is given by:
23671 @example
23672 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
23673 @end example
23674
23675 @var{FLAGS} is optional and specifies the type of events relating to
23676 the time interval which enable sending the specified command, and must
23677 be a non-null sequence of identifier flags separated by "+" or "|" and
23678 enclosed between "[" and "]".
23679
23680 The following flags are recognized:
23681 @table @option
23682 @item enter
23683 The command is sent when the current frame timestamp enters the
23684 specified interval. In other words, the command is sent when the
23685 previous frame timestamp was not in the given interval, and the
23686 current is.
23687
23688 @item leave
23689 The command is sent when the current frame timestamp leaves the
23690 specified interval. In other words, the command is sent when the
23691 previous frame timestamp was in the given interval, and the
23692 current is not.
23693
23694 @item expr
23695 The command @var{ARG} is interpreted as expression and result of
23696 expression is passed as @var{ARG}.
23697
23698 The expression is evaluated through the eval API and can contain the following
23699 constants:
23700
23701 @table @option
23702 @item POS
23703 Original position in the file of the frame, or undefined if undefined
23704 for the current frame.
23705
23706 @item PTS
23707 The presentation timestamp in input.
23708
23709 @item N
23710 The count of the input frame for video or audio, starting from 0.
23711
23712 @item T
23713 The time in seconds of the current frame.
23714 @end table
23715
23716 @end table
23717
23718 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
23719 assumed.
23720
23721 @var{TARGET} specifies the target of the command, usually the name of
23722 the filter class or a specific filter instance name.
23723
23724 @var{COMMAND} specifies the name of the command for the target filter.
23725
23726 @var{ARG} is optional and specifies the optional list of argument for
23727 the given @var{COMMAND}.
23728
23729 Between one interval specification and another, whitespaces, or
23730 sequences of characters starting with @code{#} until the end of line,
23731 are ignored and can be used to annotate comments.
23732
23733 A simplified BNF description of the commands specification syntax
23734 follows:
23735 @example
23736 @var{COMMAND_FLAG}  ::= "enter" | "leave"
23737 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
23738 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
23739 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
23740 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
23741 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
23742 @end example
23743
23744 @subsection Examples
23745
23746 @itemize
23747 @item
23748 Specify audio tempo change at second 4:
23749 @example
23750 asendcmd=c='4.0 atempo tempo 1.5',atempo
23751 @end example
23752
23753 @item
23754 Target a specific filter instance:
23755 @example
23756 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
23757 @end example
23758
23759 @item
23760 Specify a list of drawtext and hue commands in a file.
23761 @example
23762 # show text in the interval 5-10
23763 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
23764          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
23765
23766 # desaturate the image in the interval 15-20
23767 15.0-20.0 [enter] hue s 0,
23768           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
23769           [leave] hue s 1,
23770           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
23771
23772 # apply an exponential saturation fade-out effect, starting from time 25
23773 25 [enter] hue s exp(25-t)
23774 @end example
23775
23776 A filtergraph allowing to read and process the above command list
23777 stored in a file @file{test.cmd}, can be specified with:
23778 @example
23779 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
23780 @end example
23781 @end itemize
23782
23783 @anchor{setpts}
23784 @section setpts, asetpts
23785
23786 Change the PTS (presentation timestamp) of the input frames.
23787
23788 @code{setpts} works on video frames, @code{asetpts} on audio frames.
23789
23790 This filter accepts the following options:
23791
23792 @table @option
23793
23794 @item expr
23795 The expression which is evaluated for each frame to construct its timestamp.
23796
23797 @end table
23798
23799 The expression is evaluated through the eval API and can contain the following
23800 constants:
23801
23802 @table @option
23803 @item FRAME_RATE, FR
23804 frame rate, only defined for constant frame-rate video
23805
23806 @item PTS
23807 The presentation timestamp in input
23808
23809 @item N
23810 The count of the input frame for video or the number of consumed samples,
23811 not including the current frame for audio, starting from 0.
23812
23813 @item NB_CONSUMED_SAMPLES
23814 The number of consumed samples, not including the current frame (only
23815 audio)
23816
23817 @item NB_SAMPLES, S
23818 The number of samples in the current frame (only audio)
23819
23820 @item SAMPLE_RATE, SR
23821 The audio sample rate.
23822
23823 @item STARTPTS
23824 The PTS of the first frame.
23825
23826 @item STARTT
23827 the time in seconds of the first frame
23828
23829 @item INTERLACED
23830 State whether the current frame is interlaced.
23831
23832 @item T
23833 the time in seconds of the current frame
23834
23835 @item POS
23836 original position in the file of the frame, or undefined if undefined
23837 for the current frame
23838
23839 @item PREV_INPTS
23840 The previous input PTS.
23841
23842 @item PREV_INT
23843 previous input time in seconds
23844
23845 @item PREV_OUTPTS
23846 The previous output PTS.
23847
23848 @item PREV_OUTT
23849 previous output time in seconds
23850
23851 @item RTCTIME
23852 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
23853 instead.
23854
23855 @item RTCSTART
23856 The wallclock (RTC) time at the start of the movie in microseconds.
23857
23858 @item TB
23859 The timebase of the input timestamps.
23860
23861 @end table
23862
23863 @subsection Examples
23864
23865 @itemize
23866 @item
23867 Start counting PTS from zero
23868 @example
23869 setpts=PTS-STARTPTS
23870 @end example
23871
23872 @item
23873 Apply fast motion effect:
23874 @example
23875 setpts=0.5*PTS
23876 @end example
23877
23878 @item
23879 Apply slow motion effect:
23880 @example
23881 setpts=2.0*PTS
23882 @end example
23883
23884 @item
23885 Set fixed rate of 25 frames per second:
23886 @example
23887 setpts=N/(25*TB)
23888 @end example
23889
23890 @item
23891 Set fixed rate 25 fps with some jitter:
23892 @example
23893 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
23894 @end example
23895
23896 @item
23897 Apply an offset of 10 seconds to the input PTS:
23898 @example
23899 setpts=PTS+10/TB
23900 @end example
23901
23902 @item
23903 Generate timestamps from a "live source" and rebase onto the current timebase:
23904 @example
23905 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
23906 @end example
23907
23908 @item
23909 Generate timestamps by counting samples:
23910 @example
23911 asetpts=N/SR/TB
23912 @end example
23913
23914 @end itemize
23915
23916 @section setrange
23917
23918 Force color range for the output video frame.
23919
23920 The @code{setrange} filter marks the color range property for the
23921 output frames. It does not change the input frame, but only sets the
23922 corresponding property, which affects how the frame is treated by
23923 following filters.
23924
23925 The filter accepts the following options:
23926
23927 @table @option
23928
23929 @item range
23930 Available values are:
23931
23932 @table @samp
23933 @item auto
23934 Keep the same color range property.
23935
23936 @item unspecified, unknown
23937 Set the color range as unspecified.
23938
23939 @item limited, tv, mpeg
23940 Set the color range as limited.
23941
23942 @item full, pc, jpeg
23943 Set the color range as full.
23944 @end table
23945 @end table
23946
23947 @section settb, asettb
23948
23949 Set the timebase to use for the output frames timestamps.
23950 It is mainly useful for testing timebase configuration.
23951
23952 It accepts the following parameters:
23953
23954 @table @option
23955
23956 @item expr, tb
23957 The expression which is evaluated into the output timebase.
23958
23959 @end table
23960
23961 The value for @option{tb} is an arithmetic expression representing a
23962 rational. The expression can contain the constants "AVTB" (the default
23963 timebase), "intb" (the input timebase) and "sr" (the sample rate,
23964 audio only). Default value is "intb".
23965
23966 @subsection Examples
23967
23968 @itemize
23969 @item
23970 Set the timebase to 1/25:
23971 @example
23972 settb=expr=1/25
23973 @end example
23974
23975 @item
23976 Set the timebase to 1/10:
23977 @example
23978 settb=expr=0.1
23979 @end example
23980
23981 @item
23982 Set the timebase to 1001/1000:
23983 @example
23984 settb=1+0.001
23985 @end example
23986
23987 @item
23988 Set the timebase to 2*intb:
23989 @example
23990 settb=2*intb
23991 @end example
23992
23993 @item
23994 Set the default timebase value:
23995 @example
23996 settb=AVTB
23997 @end example
23998 @end itemize
23999
24000 @section showcqt
24001 Convert input audio to a video output representing frequency spectrum
24002 logarithmically using Brown-Puckette constant Q transform algorithm with
24003 direct frequency domain coefficient calculation (but the transform itself
24004 is not really constant Q, instead the Q factor is actually variable/clamped),
24005 with musical tone scale, from E0 to D#10.
24006
24007 The filter accepts the following options:
24008
24009 @table @option
24010 @item size, s
24011 Specify the video size for the output. It must be even. For the syntax of this option,
24012 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24013 Default value is @code{1920x1080}.
24014
24015 @item fps, rate, r
24016 Set the output frame rate. Default value is @code{25}.
24017
24018 @item bar_h
24019 Set the bargraph height. It must be even. Default value is @code{-1} which
24020 computes the bargraph height automatically.
24021
24022 @item axis_h
24023 Set the axis height. It must be even. Default value is @code{-1} which computes
24024 the axis height automatically.
24025
24026 @item sono_h
24027 Set the sonogram height. It must be even. Default value is @code{-1} which
24028 computes the sonogram height automatically.
24029
24030 @item fullhd
24031 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
24032 instead. Default value is @code{1}.
24033
24034 @item sono_v, volume
24035 Specify the sonogram volume expression. It can contain variables:
24036 @table @option
24037 @item bar_v
24038 the @var{bar_v} evaluated expression
24039 @item frequency, freq, f
24040 the frequency where it is evaluated
24041 @item timeclamp, tc
24042 the value of @var{timeclamp} option
24043 @end table
24044 and functions:
24045 @table @option
24046 @item a_weighting(f)
24047 A-weighting of equal loudness
24048 @item b_weighting(f)
24049 B-weighting of equal loudness
24050 @item c_weighting(f)
24051 C-weighting of equal loudness.
24052 @end table
24053 Default value is @code{16}.
24054
24055 @item bar_v, volume2
24056 Specify the bargraph volume expression. It can contain variables:
24057 @table @option
24058 @item sono_v
24059 the @var{sono_v} evaluated expression
24060 @item frequency, freq, f
24061 the frequency where it is evaluated
24062 @item timeclamp, tc
24063 the value of @var{timeclamp} option
24064 @end table
24065 and functions:
24066 @table @option
24067 @item a_weighting(f)
24068 A-weighting of equal loudness
24069 @item b_weighting(f)
24070 B-weighting of equal loudness
24071 @item c_weighting(f)
24072 C-weighting of equal loudness.
24073 @end table
24074 Default value is @code{sono_v}.
24075
24076 @item sono_g, gamma
24077 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
24078 higher gamma makes the spectrum having more range. Default value is @code{3}.
24079 Acceptable range is @code{[1, 7]}.
24080
24081 @item bar_g, gamma2
24082 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
24083 @code{[1, 7]}.
24084
24085 @item bar_t
24086 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
24087 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
24088
24089 @item timeclamp, tc
24090 Specify the transform timeclamp. At low frequency, there is trade-off between
24091 accuracy in time domain and frequency domain. If timeclamp is lower,
24092 event in time domain is represented more accurately (such as fast bass drum),
24093 otherwise event in frequency domain is represented more accurately
24094 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
24095
24096 @item attack
24097 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
24098 limits future samples by applying asymmetric windowing in time domain, useful
24099 when low latency is required. Accepted range is @code{[0, 1]}.
24100
24101 @item basefreq
24102 Specify the transform base frequency. Default value is @code{20.01523126408007475},
24103 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
24104
24105 @item endfreq
24106 Specify the transform end frequency. Default value is @code{20495.59681441799654},
24107 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
24108
24109 @item coeffclamp
24110 This option is deprecated and ignored.
24111
24112 @item tlength
24113 Specify the transform length in time domain. Use this option to control accuracy
24114 trade-off between time domain and frequency domain at every frequency sample.
24115 It can contain variables:
24116 @table @option
24117 @item frequency, freq, f
24118 the frequency where it is evaluated
24119 @item timeclamp, tc
24120 the value of @var{timeclamp} option.
24121 @end table
24122 Default value is @code{384*tc/(384+tc*f)}.
24123
24124 @item count
24125 Specify the transform count for every video frame. Default value is @code{6}.
24126 Acceptable range is @code{[1, 30]}.
24127
24128 @item fcount
24129 Specify the transform count for every single pixel. Default value is @code{0},
24130 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
24131
24132 @item fontfile
24133 Specify font file for use with freetype to draw the axis. If not specified,
24134 use embedded font. Note that drawing with font file or embedded font is not
24135 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
24136 option instead.
24137
24138 @item font
24139 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
24140 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
24141 escaping.
24142
24143 @item fontcolor
24144 Specify font color expression. This is arithmetic expression that should return
24145 integer value 0xRRGGBB. It can contain variables:
24146 @table @option
24147 @item frequency, freq, f
24148 the frequency where it is evaluated
24149 @item timeclamp, tc
24150 the value of @var{timeclamp} option
24151 @end table
24152 and functions:
24153 @table @option
24154 @item midi(f)
24155 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
24156 @item r(x), g(x), b(x)
24157 red, green, and blue value of intensity x.
24158 @end table
24159 Default value is @code{st(0, (midi(f)-59.5)/12);
24160 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
24161 r(1-ld(1)) + b(ld(1))}.
24162
24163 @item axisfile
24164 Specify image file to draw the axis. This option override @var{fontfile} and
24165 @var{fontcolor} option.
24166
24167 @item axis, text
24168 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
24169 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
24170 Default value is @code{1}.
24171
24172 @item csp
24173 Set colorspace. The accepted values are:
24174 @table @samp
24175 @item unspecified
24176 Unspecified (default)
24177
24178 @item bt709
24179 BT.709
24180
24181 @item fcc
24182 FCC
24183
24184 @item bt470bg
24185 BT.470BG or BT.601-6 625
24186
24187 @item smpte170m
24188 SMPTE-170M or BT.601-6 525
24189
24190 @item smpte240m
24191 SMPTE-240M
24192
24193 @item bt2020ncl
24194 BT.2020 with non-constant luminance
24195
24196 @end table
24197
24198 @item cscheme
24199 Set spectrogram color scheme. This is list of floating point values with format
24200 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
24201 The default is @code{1|0.5|0|0|0.5|1}.
24202
24203 @end table
24204
24205 @subsection Examples
24206
24207 @itemize
24208 @item
24209 Playing audio while showing the spectrum:
24210 @example
24211 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
24212 @end example
24213
24214 @item
24215 Same as above, but with frame rate 30 fps:
24216 @example
24217 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
24218 @end example
24219
24220 @item
24221 Playing at 1280x720:
24222 @example
24223 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
24224 @end example
24225
24226 @item
24227 Disable sonogram display:
24228 @example
24229 sono_h=0
24230 @end example
24231
24232 @item
24233 A1 and its harmonics: A1, A2, (near)E3, A3:
24234 @example
24235 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),
24236                  asplit[a][out1]; [a] showcqt [out0]'
24237 @end example
24238
24239 @item
24240 Same as above, but with more accuracy in frequency domain:
24241 @example
24242 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),
24243                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
24244 @end example
24245
24246 @item
24247 Custom volume:
24248 @example
24249 bar_v=10:sono_v=bar_v*a_weighting(f)
24250 @end example
24251
24252 @item
24253 Custom gamma, now spectrum is linear to the amplitude.
24254 @example
24255 bar_g=2:sono_g=2
24256 @end example
24257
24258 @item
24259 Custom tlength equation:
24260 @example
24261 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)))'
24262 @end example
24263
24264 @item
24265 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
24266 @example
24267 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
24268 @end example
24269
24270 @item
24271 Custom font using fontconfig:
24272 @example
24273 font='Courier New,Monospace,mono|bold'
24274 @end example
24275
24276 @item
24277 Custom frequency range with custom axis using image file:
24278 @example
24279 axisfile=myaxis.png:basefreq=40:endfreq=10000
24280 @end example
24281 @end itemize
24282
24283 @section showfreqs
24284
24285 Convert input audio to video output representing the audio power spectrum.
24286 Audio amplitude is on Y-axis while frequency is on X-axis.
24287
24288 The filter accepts the following options:
24289
24290 @table @option
24291 @item size, s
24292 Specify size of video. For the syntax of this option, check the
24293 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24294 Default is @code{1024x512}.
24295
24296 @item mode
24297 Set display mode.
24298 This set how each frequency bin will be represented.
24299
24300 It accepts the following values:
24301 @table @samp
24302 @item line
24303 @item bar
24304 @item dot
24305 @end table
24306 Default is @code{bar}.
24307
24308 @item ascale
24309 Set amplitude scale.
24310
24311 It accepts the following values:
24312 @table @samp
24313 @item lin
24314 Linear scale.
24315
24316 @item sqrt
24317 Square root scale.
24318
24319 @item cbrt
24320 Cubic root scale.
24321
24322 @item log
24323 Logarithmic scale.
24324 @end table
24325 Default is @code{log}.
24326
24327 @item fscale
24328 Set frequency scale.
24329
24330 It accepts the following values:
24331 @table @samp
24332 @item lin
24333 Linear scale.
24334
24335 @item log
24336 Logarithmic scale.
24337
24338 @item rlog
24339 Reverse logarithmic scale.
24340 @end table
24341 Default is @code{lin}.
24342
24343 @item win_size
24344 Set window size. Allowed range is from 16 to 65536.
24345
24346 Default is @code{2048}
24347
24348 @item win_func
24349 Set windowing function.
24350
24351 It accepts the following values:
24352 @table @samp
24353 @item rect
24354 @item bartlett
24355 @item hanning
24356 @item hamming
24357 @item blackman
24358 @item welch
24359 @item flattop
24360 @item bharris
24361 @item bnuttall
24362 @item bhann
24363 @item sine
24364 @item nuttall
24365 @item lanczos
24366 @item gauss
24367 @item tukey
24368 @item dolph
24369 @item cauchy
24370 @item parzen
24371 @item poisson
24372 @item bohman
24373 @end table
24374 Default is @code{hanning}.
24375
24376 @item overlap
24377 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
24378 which means optimal overlap for selected window function will be picked.
24379
24380 @item averaging
24381 Set time averaging. Setting this to 0 will display current maximal peaks.
24382 Default is @code{1}, which means time averaging is disabled.
24383
24384 @item colors
24385 Specify list of colors separated by space or by '|' which will be used to
24386 draw channel frequencies. Unrecognized or missing colors will be replaced
24387 by white color.
24388
24389 @item cmode
24390 Set channel display mode.
24391
24392 It accepts the following values:
24393 @table @samp
24394 @item combined
24395 @item separate
24396 @end table
24397 Default is @code{combined}.
24398
24399 @item minamp
24400 Set minimum amplitude used in @code{log} amplitude scaler.
24401
24402 @end table
24403
24404 @section showspatial
24405
24406 Convert stereo input audio to a video output, representing the spatial relationship
24407 between two channels.
24408
24409 The filter accepts the following options:
24410
24411 @table @option
24412 @item size, s
24413 Specify the video size for the output. For the syntax of this option, check the
24414 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24415 Default value is @code{512x512}.
24416
24417 @item win_size
24418 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
24419
24420 @item win_func
24421 Set window function.
24422
24423 It accepts the following values:
24424 @table @samp
24425 @item rect
24426 @item bartlett
24427 @item hann
24428 @item hanning
24429 @item hamming
24430 @item blackman
24431 @item welch
24432 @item flattop
24433 @item bharris
24434 @item bnuttall
24435 @item bhann
24436 @item sine
24437 @item nuttall
24438 @item lanczos
24439 @item gauss
24440 @item tukey
24441 @item dolph
24442 @item cauchy
24443 @item parzen
24444 @item poisson
24445 @item bohman
24446 @end table
24447
24448 Default value is @code{hann}.
24449
24450 @item overlap
24451 Set ratio of overlap window. Default value is @code{0.5}.
24452 When value is @code{1} overlap is set to recommended size for specific
24453 window function currently used.
24454 @end table
24455
24456 @anchor{showspectrum}
24457 @section showspectrum
24458
24459 Convert input audio to a video output, representing the audio frequency
24460 spectrum.
24461
24462 The filter accepts the following options:
24463
24464 @table @option
24465 @item size, s
24466 Specify the video size for the output. For the syntax of this option, check the
24467 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24468 Default value is @code{640x512}.
24469
24470 @item slide
24471 Specify how the spectrum should slide along the window.
24472
24473 It accepts the following values:
24474 @table @samp
24475 @item replace
24476 the samples start again on the left when they reach the right
24477 @item scroll
24478 the samples scroll from right to left
24479 @item fullframe
24480 frames are only produced when the samples reach the right
24481 @item rscroll
24482 the samples scroll from left to right
24483 @end table
24484
24485 Default value is @code{replace}.
24486
24487 @item mode
24488 Specify display mode.
24489
24490 It accepts the following values:
24491 @table @samp
24492 @item combined
24493 all channels are displayed in the same row
24494 @item separate
24495 all channels are displayed in separate rows
24496 @end table
24497
24498 Default value is @samp{combined}.
24499
24500 @item color
24501 Specify display color mode.
24502
24503 It accepts the following values:
24504 @table @samp
24505 @item channel
24506 each channel is displayed in a separate color
24507 @item intensity
24508 each channel is displayed using the same color scheme
24509 @item rainbow
24510 each channel is displayed using the rainbow color scheme
24511 @item moreland
24512 each channel is displayed using the moreland color scheme
24513 @item nebulae
24514 each channel is displayed using the nebulae color scheme
24515 @item fire
24516 each channel is displayed using the fire color scheme
24517 @item fiery
24518 each channel is displayed using the fiery color scheme
24519 @item fruit
24520 each channel is displayed using the fruit color scheme
24521 @item cool
24522 each channel is displayed using the cool color scheme
24523 @item magma
24524 each channel is displayed using the magma color scheme
24525 @item green
24526 each channel is displayed using the green color scheme
24527 @item viridis
24528 each channel is displayed using the viridis color scheme
24529 @item plasma
24530 each channel is displayed using the plasma color scheme
24531 @item cividis
24532 each channel is displayed using the cividis color scheme
24533 @item terrain
24534 each channel is displayed using the terrain color scheme
24535 @end table
24536
24537 Default value is @samp{channel}.
24538
24539 @item scale
24540 Specify scale used for calculating intensity color values.
24541
24542 It accepts the following values:
24543 @table @samp
24544 @item lin
24545 linear
24546 @item sqrt
24547 square root, default
24548 @item cbrt
24549 cubic root
24550 @item log
24551 logarithmic
24552 @item 4thrt
24553 4th root
24554 @item 5thrt
24555 5th root
24556 @end table
24557
24558 Default value is @samp{sqrt}.
24559
24560 @item fscale
24561 Specify frequency scale.
24562
24563 It accepts the following values:
24564 @table @samp
24565 @item lin
24566 linear
24567 @item log
24568 logarithmic
24569 @end table
24570
24571 Default value is @samp{lin}.
24572
24573 @item saturation
24574 Set saturation modifier for displayed colors. Negative values provide
24575 alternative color scheme. @code{0} is no saturation at all.
24576 Saturation must be in [-10.0, 10.0] range.
24577 Default value is @code{1}.
24578
24579 @item win_func
24580 Set window function.
24581
24582 It accepts the following values:
24583 @table @samp
24584 @item rect
24585 @item bartlett
24586 @item hann
24587 @item hanning
24588 @item hamming
24589 @item blackman
24590 @item welch
24591 @item flattop
24592 @item bharris
24593 @item bnuttall
24594 @item bhann
24595 @item sine
24596 @item nuttall
24597 @item lanczos
24598 @item gauss
24599 @item tukey
24600 @item dolph
24601 @item cauchy
24602 @item parzen
24603 @item poisson
24604 @item bohman
24605 @end table
24606
24607 Default value is @code{hann}.
24608
24609 @item orientation
24610 Set orientation of time vs frequency axis. Can be @code{vertical} or
24611 @code{horizontal}. Default is @code{vertical}.
24612
24613 @item overlap
24614 Set ratio of overlap window. Default value is @code{0}.
24615 When value is @code{1} overlap is set to recommended size for specific
24616 window function currently used.
24617
24618 @item gain
24619 Set scale gain for calculating intensity color values.
24620 Default value is @code{1}.
24621
24622 @item data
24623 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
24624
24625 @item rotation
24626 Set color rotation, must be in [-1.0, 1.0] range.
24627 Default value is @code{0}.
24628
24629 @item start
24630 Set start frequency from which to display spectrogram. Default is @code{0}.
24631
24632 @item stop
24633 Set stop frequency to which to display spectrogram. Default is @code{0}.
24634
24635 @item fps
24636 Set upper frame rate limit. Default is @code{auto}, unlimited.
24637
24638 @item legend
24639 Draw time and frequency axes and legends. Default is disabled.
24640 @end table
24641
24642 The usage is very similar to the showwaves filter; see the examples in that
24643 section.
24644
24645 @subsection Examples
24646
24647 @itemize
24648 @item
24649 Large window with logarithmic color scaling:
24650 @example
24651 showspectrum=s=1280x480:scale=log
24652 @end example
24653
24654 @item
24655 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
24656 @example
24657 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24658              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
24659 @end example
24660 @end itemize
24661
24662 @section showspectrumpic
24663
24664 Convert input audio to a single video frame, representing the audio frequency
24665 spectrum.
24666
24667 The filter accepts the following options:
24668
24669 @table @option
24670 @item size, s
24671 Specify the video size for the output. For the syntax of this option, check the
24672 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24673 Default value is @code{4096x2048}.
24674
24675 @item mode
24676 Specify display mode.
24677
24678 It accepts the following values:
24679 @table @samp
24680 @item combined
24681 all channels are displayed in the same row
24682 @item separate
24683 all channels are displayed in separate rows
24684 @end table
24685 Default value is @samp{combined}.
24686
24687 @item color
24688 Specify display color mode.
24689
24690 It accepts the following values:
24691 @table @samp
24692 @item channel
24693 each channel is displayed in a separate color
24694 @item intensity
24695 each channel is displayed using the same color scheme
24696 @item rainbow
24697 each channel is displayed using the rainbow color scheme
24698 @item moreland
24699 each channel is displayed using the moreland color scheme
24700 @item nebulae
24701 each channel is displayed using the nebulae color scheme
24702 @item fire
24703 each channel is displayed using the fire color scheme
24704 @item fiery
24705 each channel is displayed using the fiery color scheme
24706 @item fruit
24707 each channel is displayed using the fruit color scheme
24708 @item cool
24709 each channel is displayed using the cool color scheme
24710 @item magma
24711 each channel is displayed using the magma color scheme
24712 @item green
24713 each channel is displayed using the green color scheme
24714 @item viridis
24715 each channel is displayed using the viridis color scheme
24716 @item plasma
24717 each channel is displayed using the plasma color scheme
24718 @item cividis
24719 each channel is displayed using the cividis color scheme
24720 @item terrain
24721 each channel is displayed using the terrain color scheme
24722 @end table
24723 Default value is @samp{intensity}.
24724
24725 @item scale
24726 Specify scale used for calculating intensity color values.
24727
24728 It accepts the following values:
24729 @table @samp
24730 @item lin
24731 linear
24732 @item sqrt
24733 square root, default
24734 @item cbrt
24735 cubic root
24736 @item log
24737 logarithmic
24738 @item 4thrt
24739 4th root
24740 @item 5thrt
24741 5th root
24742 @end table
24743 Default value is @samp{log}.
24744
24745 @item fscale
24746 Specify frequency scale.
24747
24748 It accepts the following values:
24749 @table @samp
24750 @item lin
24751 linear
24752 @item log
24753 logarithmic
24754 @end table
24755
24756 Default value is @samp{lin}.
24757
24758 @item saturation
24759 Set saturation modifier for displayed colors. Negative values provide
24760 alternative color scheme. @code{0} is no saturation at all.
24761 Saturation must be in [-10.0, 10.0] range.
24762 Default value is @code{1}.
24763
24764 @item win_func
24765 Set window function.
24766
24767 It accepts the following values:
24768 @table @samp
24769 @item rect
24770 @item bartlett
24771 @item hann
24772 @item hanning
24773 @item hamming
24774 @item blackman
24775 @item welch
24776 @item flattop
24777 @item bharris
24778 @item bnuttall
24779 @item bhann
24780 @item sine
24781 @item nuttall
24782 @item lanczos
24783 @item gauss
24784 @item tukey
24785 @item dolph
24786 @item cauchy
24787 @item parzen
24788 @item poisson
24789 @item bohman
24790 @end table
24791 Default value is @code{hann}.
24792
24793 @item orientation
24794 Set orientation of time vs frequency axis. Can be @code{vertical} or
24795 @code{horizontal}. Default is @code{vertical}.
24796
24797 @item gain
24798 Set scale gain for calculating intensity color values.
24799 Default value is @code{1}.
24800
24801 @item legend
24802 Draw time and frequency axes and legends. Default is enabled.
24803
24804 @item rotation
24805 Set color rotation, must be in [-1.0, 1.0] range.
24806 Default value is @code{0}.
24807
24808 @item start
24809 Set start frequency from which to display spectrogram. Default is @code{0}.
24810
24811 @item stop
24812 Set stop frequency to which to display spectrogram. Default is @code{0}.
24813 @end table
24814
24815 @subsection Examples
24816
24817 @itemize
24818 @item
24819 Extract an audio spectrogram of a whole audio track
24820 in a 1024x1024 picture using @command{ffmpeg}:
24821 @example
24822 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
24823 @end example
24824 @end itemize
24825
24826 @section showvolume
24827
24828 Convert input audio volume to a video output.
24829
24830 The filter accepts the following options:
24831
24832 @table @option
24833 @item rate, r
24834 Set video rate.
24835
24836 @item b
24837 Set border width, allowed range is [0, 5]. Default is 1.
24838
24839 @item w
24840 Set channel width, allowed range is [80, 8192]. Default is 400.
24841
24842 @item h
24843 Set channel height, allowed range is [1, 900]. Default is 20.
24844
24845 @item f
24846 Set fade, allowed range is [0, 1]. Default is 0.95.
24847
24848 @item c
24849 Set volume color expression.
24850
24851 The expression can use the following variables:
24852
24853 @table @option
24854 @item VOLUME
24855 Current max volume of channel in dB.
24856
24857 @item PEAK
24858 Current peak.
24859
24860 @item CHANNEL
24861 Current channel number, starting from 0.
24862 @end table
24863
24864 @item t
24865 If set, displays channel names. Default is enabled.
24866
24867 @item v
24868 If set, displays volume values. Default is enabled.
24869
24870 @item o
24871 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
24872 default is @code{h}.
24873
24874 @item s
24875 Set step size, allowed range is [0, 5]. Default is 0, which means
24876 step is disabled.
24877
24878 @item p
24879 Set background opacity, allowed range is [0, 1]. Default is 0.
24880
24881 @item m
24882 Set metering mode, can be peak: @code{p} or rms: @code{r},
24883 default is @code{p}.
24884
24885 @item ds
24886 Set display scale, can be linear: @code{lin} or log: @code{log},
24887 default is @code{lin}.
24888
24889 @item dm
24890 In second.
24891 If set to > 0., display a line for the max level
24892 in the previous seconds.
24893 default is disabled: @code{0.}
24894
24895 @item dmc
24896 The color of the max line. Use when @code{dm} option is set to > 0.
24897 default is: @code{orange}
24898 @end table
24899
24900 @section showwaves
24901
24902 Convert input audio to a video output, representing the samples waves.
24903
24904 The filter accepts the following options:
24905
24906 @table @option
24907 @item size, s
24908 Specify the video size for the output. For the syntax of this option, check the
24909 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24910 Default value is @code{600x240}.
24911
24912 @item mode
24913 Set display mode.
24914
24915 Available values are:
24916 @table @samp
24917 @item point
24918 Draw a point for each sample.
24919
24920 @item line
24921 Draw a vertical line for each sample.
24922
24923 @item p2p
24924 Draw a point for each sample and a line between them.
24925
24926 @item cline
24927 Draw a centered vertical line for each sample.
24928 @end table
24929
24930 Default value is @code{point}.
24931
24932 @item n
24933 Set the number of samples which are printed on the same column. A
24934 larger value will decrease the frame rate. Must be a positive
24935 integer. This option can be set only if the value for @var{rate}
24936 is not explicitly specified.
24937
24938 @item rate, r
24939 Set the (approximate) output frame rate. This is done by setting the
24940 option @var{n}. Default value is "25".
24941
24942 @item split_channels
24943 Set if channels should be drawn separately or overlap. Default value is 0.
24944
24945 @item colors
24946 Set colors separated by '|' which are going to be used for drawing of each channel.
24947
24948 @item scale
24949 Set amplitude scale.
24950
24951 Available values are:
24952 @table @samp
24953 @item lin
24954 Linear.
24955
24956 @item log
24957 Logarithmic.
24958
24959 @item sqrt
24960 Square root.
24961
24962 @item cbrt
24963 Cubic root.
24964 @end table
24965
24966 Default is linear.
24967
24968 @item draw
24969 Set the draw mode. This is mostly useful to set for high @var{n}.
24970
24971 Available values are:
24972 @table @samp
24973 @item scale
24974 Scale pixel values for each drawn sample.
24975
24976 @item full
24977 Draw every sample directly.
24978 @end table
24979
24980 Default value is @code{scale}.
24981 @end table
24982
24983 @subsection Examples
24984
24985 @itemize
24986 @item
24987 Output the input file audio and the corresponding video representation
24988 at the same time:
24989 @example
24990 amovie=a.mp3,asplit[out0],showwaves[out1]
24991 @end example
24992
24993 @item
24994 Create a synthetic signal and show it with showwaves, forcing a
24995 frame rate of 30 frames per second:
24996 @example
24997 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
24998 @end example
24999 @end itemize
25000
25001 @section showwavespic
25002
25003 Convert input audio to a single video frame, representing the samples waves.
25004
25005 The filter accepts the following options:
25006
25007 @table @option
25008 @item size, s
25009 Specify the video size for the output. For the syntax of this option, check the
25010 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25011 Default value is @code{600x240}.
25012
25013 @item split_channels
25014 Set if channels should be drawn separately or overlap. Default value is 0.
25015
25016 @item colors
25017 Set colors separated by '|' which are going to be used for drawing of each channel.
25018
25019 @item scale
25020 Set amplitude scale.
25021
25022 Available values are:
25023 @table @samp
25024 @item lin
25025 Linear.
25026
25027 @item log
25028 Logarithmic.
25029
25030 @item sqrt
25031 Square root.
25032
25033 @item cbrt
25034 Cubic root.
25035 @end table
25036
25037 Default is linear.
25038
25039 @item draw
25040 Set the draw mode.
25041
25042 Available values are:
25043 @table @samp
25044 @item scale
25045 Scale pixel values for each drawn sample.
25046
25047 @item full
25048 Draw every sample directly.
25049 @end table
25050
25051 Default value is @code{scale}.
25052 @end table
25053
25054 @subsection Examples
25055
25056 @itemize
25057 @item
25058 Extract a channel split representation of the wave form of a whole audio track
25059 in a 1024x800 picture using @command{ffmpeg}:
25060 @example
25061 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
25062 @end example
25063 @end itemize
25064
25065 @section sidedata, asidedata
25066
25067 Delete frame side data, or select frames based on it.
25068
25069 This filter accepts the following options:
25070
25071 @table @option
25072 @item mode
25073 Set mode of operation of the filter.
25074
25075 Can be one of the following:
25076
25077 @table @samp
25078 @item select
25079 Select every frame with side data of @code{type}.
25080
25081 @item delete
25082 Delete side data of @code{type}. If @code{type} is not set, delete all side
25083 data in the frame.
25084
25085 @end table
25086
25087 @item type
25088 Set side data type used with all modes. Must be set for @code{select} mode. For
25089 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
25090 in @file{libavutil/frame.h}. For example, to choose
25091 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
25092
25093 @end table
25094
25095 @section spectrumsynth
25096
25097 Synthesize audio from 2 input video spectrums, first input stream represents
25098 magnitude across time and second represents phase across time.
25099 The filter will transform from frequency domain as displayed in videos back
25100 to time domain as presented in audio output.
25101
25102 This filter is primarily created for reversing processed @ref{showspectrum}
25103 filter outputs, but can synthesize sound from other spectrograms too.
25104 But in such case results are going to be poor if the phase data is not
25105 available, because in such cases phase data need to be recreated, usually
25106 it's just recreated from random noise.
25107 For best results use gray only output (@code{channel} color mode in
25108 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
25109 @code{lin} scale for phase video. To produce phase, for 2nd video, use
25110 @code{data} option. Inputs videos should generally use @code{fullframe}
25111 slide mode as that saves resources needed for decoding video.
25112
25113 The filter accepts the following options:
25114
25115 @table @option
25116 @item sample_rate
25117 Specify sample rate of output audio, the sample rate of audio from which
25118 spectrum was generated may differ.
25119
25120 @item channels
25121 Set number of channels represented in input video spectrums.
25122
25123 @item scale
25124 Set scale which was used when generating magnitude input spectrum.
25125 Can be @code{lin} or @code{log}. Default is @code{log}.
25126
25127 @item slide
25128 Set slide which was used when generating inputs spectrums.
25129 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
25130 Default is @code{fullframe}.
25131
25132 @item win_func
25133 Set window function used for resynthesis.
25134
25135 @item overlap
25136 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25137 which means optimal overlap for selected window function will be picked.
25138
25139 @item orientation
25140 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
25141 Default is @code{vertical}.
25142 @end table
25143
25144 @subsection Examples
25145
25146 @itemize
25147 @item
25148 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
25149 then resynthesize videos back to audio with spectrumsynth:
25150 @example
25151 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
25152 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
25153 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
25154 @end example
25155 @end itemize
25156
25157 @section split, asplit
25158
25159 Split input into several identical outputs.
25160
25161 @code{asplit} works with audio input, @code{split} with video.
25162
25163 The filter accepts a single parameter which specifies the number of outputs. If
25164 unspecified, it defaults to 2.
25165
25166 @subsection Examples
25167
25168 @itemize
25169 @item
25170 Create two separate outputs from the same input:
25171 @example
25172 [in] split [out0][out1]
25173 @end example
25174
25175 @item
25176 To create 3 or more outputs, you need to specify the number of
25177 outputs, like in:
25178 @example
25179 [in] asplit=3 [out0][out1][out2]
25180 @end example
25181
25182 @item
25183 Create two separate outputs from the same input, one cropped and
25184 one padded:
25185 @example
25186 [in] split [splitout1][splitout2];
25187 [splitout1] crop=100:100:0:0    [cropout];
25188 [splitout2] pad=200:200:100:100 [padout];
25189 @end example
25190
25191 @item
25192 Create 5 copies of the input audio with @command{ffmpeg}:
25193 @example
25194 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
25195 @end example
25196 @end itemize
25197
25198 @section zmq, azmq
25199
25200 Receive commands sent through a libzmq client, and forward them to
25201 filters in the filtergraph.
25202
25203 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
25204 must be inserted between two video filters, @code{azmq} between two
25205 audio filters. Both are capable to send messages to any filter type.
25206
25207 To enable these filters you need to install the libzmq library and
25208 headers and configure FFmpeg with @code{--enable-libzmq}.
25209
25210 For more information about libzmq see:
25211 @url{http://www.zeromq.org/}
25212
25213 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
25214 receives messages sent through a network interface defined by the
25215 @option{bind_address} (or the abbreviation "@option{b}") option.
25216 Default value of this option is @file{tcp://localhost:5555}. You may
25217 want to alter this value to your needs, but do not forget to escape any
25218 ':' signs (see @ref{filtergraph escaping}).
25219
25220 The received message must be in the form:
25221 @example
25222 @var{TARGET} @var{COMMAND} [@var{ARG}]
25223 @end example
25224
25225 @var{TARGET} specifies the target of the command, usually the name of
25226 the filter class or a specific filter instance name. The default
25227 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
25228 but you can override this by using the @samp{filter_name@@id} syntax
25229 (see @ref{Filtergraph syntax}).
25230
25231 @var{COMMAND} specifies the name of the command for the target filter.
25232
25233 @var{ARG} is optional and specifies the optional argument list for the
25234 given @var{COMMAND}.
25235
25236 Upon reception, the message is processed and the corresponding command
25237 is injected into the filtergraph. Depending on the result, the filter
25238 will send a reply to the client, adopting the format:
25239 @example
25240 @var{ERROR_CODE} @var{ERROR_REASON}
25241 @var{MESSAGE}
25242 @end example
25243
25244 @var{MESSAGE} is optional.
25245
25246 @subsection Examples
25247
25248 Look at @file{tools/zmqsend} for an example of a zmq client which can
25249 be used to send commands processed by these filters.
25250
25251 Consider the following filtergraph generated by @command{ffplay}.
25252 In this example the last overlay filter has an instance name. All other
25253 filters will have default instance names.
25254
25255 @example
25256 ffplay -dumpgraph 1 -f lavfi "
25257 color=s=100x100:c=red  [l];
25258 color=s=100x100:c=blue [r];
25259 nullsrc=s=200x100, zmq [bg];
25260 [bg][l]   overlay     [bg+l];
25261 [bg+l][r] overlay@@my=x=100 "
25262 @end example
25263
25264 To change the color of the left side of the video, the following
25265 command can be used:
25266 @example
25267 echo Parsed_color_0 c yellow | tools/zmqsend
25268 @end example
25269
25270 To change the right side:
25271 @example
25272 echo Parsed_color_1 c pink | tools/zmqsend
25273 @end example
25274
25275 To change the position of the right side:
25276 @example
25277 echo overlay@@my x 150 | tools/zmqsend
25278 @end example
25279
25280
25281 @c man end MULTIMEDIA FILTERS
25282
25283 @chapter Multimedia Sources
25284 @c man begin MULTIMEDIA SOURCES
25285
25286 Below is a description of the currently available multimedia sources.
25287
25288 @section amovie
25289
25290 This is the same as @ref{movie} source, except it selects an audio
25291 stream by default.
25292
25293 @anchor{movie}
25294 @section movie
25295
25296 Read audio and/or video stream(s) from a movie container.
25297
25298 It accepts the following parameters:
25299
25300 @table @option
25301 @item filename
25302 The name of the resource to read (not necessarily a file; it can also be a
25303 device or a stream accessed through some protocol).
25304
25305 @item format_name, f
25306 Specifies the format assumed for the movie to read, and can be either
25307 the name of a container or an input device. If not specified, the
25308 format is guessed from @var{movie_name} or by probing.
25309
25310 @item seek_point, sp
25311 Specifies the seek point in seconds. The frames will be output
25312 starting from this seek point. The parameter is evaluated with
25313 @code{av_strtod}, so the numerical value may be suffixed by an IS
25314 postfix. The default value is "0".
25315
25316 @item streams, s
25317 Specifies the streams to read. Several streams can be specified,
25318 separated by "+". The source will then have as many outputs, in the
25319 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
25320 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
25321 respectively the default (best suited) video and audio stream. Default
25322 is "dv", or "da" if the filter is called as "amovie".
25323
25324 @item stream_index, si
25325 Specifies the index of the video stream to read. If the value is -1,
25326 the most suitable video stream will be automatically selected. The default
25327 value is "-1". Deprecated. If the filter is called "amovie", it will select
25328 audio instead of video.
25329
25330 @item loop
25331 Specifies how many times to read the stream in sequence.
25332 If the value is 0, the stream will be looped infinitely.
25333 Default value is "1".
25334
25335 Note that when the movie is looped the source timestamps are not
25336 changed, so it will generate non monotonically increasing timestamps.
25337
25338 @item discontinuity
25339 Specifies the time difference between frames above which the point is
25340 considered a timestamp discontinuity which is removed by adjusting the later
25341 timestamps.
25342 @end table
25343
25344 It allows overlaying a second video on top of the main input of
25345 a filtergraph, as shown in this graph:
25346 @example
25347 input -----------> deltapts0 --> overlay --> output
25348                                     ^
25349                                     |
25350 movie --> scale--> deltapts1 -------+
25351 @end example
25352 @subsection Examples
25353
25354 @itemize
25355 @item
25356 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
25357 on top of the input labelled "in":
25358 @example
25359 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
25360 [in] setpts=PTS-STARTPTS [main];
25361 [main][over] overlay=16:16 [out]
25362 @end example
25363
25364 @item
25365 Read from a video4linux2 device, and overlay it on top of the input
25366 labelled "in":
25367 @example
25368 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
25369 [in] setpts=PTS-STARTPTS [main];
25370 [main][over] overlay=16:16 [out]
25371 @end example
25372
25373 @item
25374 Read the first video stream and the audio stream with id 0x81 from
25375 dvd.vob; the video is connected to the pad named "video" and the audio is
25376 connected to the pad named "audio":
25377 @example
25378 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
25379 @end example
25380 @end itemize
25381
25382 @subsection Commands
25383
25384 Both movie and amovie support the following commands:
25385 @table @option
25386 @item seek
25387 Perform seek using "av_seek_frame".
25388 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
25389 @itemize
25390 @item
25391 @var{stream_index}: If stream_index is -1, a default
25392 stream is selected, and @var{timestamp} is automatically converted
25393 from AV_TIME_BASE units to the stream specific time_base.
25394 @item
25395 @var{timestamp}: Timestamp in AVStream.time_base units
25396 or, if no stream is specified, in AV_TIME_BASE units.
25397 @item
25398 @var{flags}: Flags which select direction and seeking mode.
25399 @end itemize
25400
25401 @item get_duration
25402 Get movie duration in AV_TIME_BASE units.
25403
25404 @end table
25405
25406 @c man end MULTIMEDIA SOURCES