]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
ffplay: flush correct stream after stats update
[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 @anchor{overlay_cuda}
14391 @section overlay_cuda
14392
14393 Overlay one video on top of another.
14394
14395 This is the CUDA cariant of the @ref{overlay} filter.
14396 It only accepts CUDA frames. The underlying input pixel formats have to match.
14397
14398 It takes two inputs and has one output. The first input is the "main"
14399 video on which the second input is overlaid.
14400
14401 It accepts the following parameters:
14402
14403 @table @option
14404 @item x
14405 @item y
14406 Set the x and y coordinates of the overlaid video on the main video.
14407 Default value is "0" for both expressions.
14408
14409 @item eof_action
14410 See @ref{framesync}.
14411
14412 @item shortest
14413 See @ref{framesync}.
14414
14415 @item repeatlast
14416 See @ref{framesync}.
14417
14418 @end table
14419
14420 This filter also supports the @ref{framesync} options.
14421
14422 @section owdenoise
14423
14424 Apply Overcomplete Wavelet denoiser.
14425
14426 The filter accepts the following options:
14427
14428 @table @option
14429 @item depth
14430 Set depth.
14431
14432 Larger depth values will denoise lower frequency components more, but
14433 slow down filtering.
14434
14435 Must be an int in the range 8-16, default is @code{8}.
14436
14437 @item luma_strength, ls
14438 Set luma strength.
14439
14440 Must be a double value in the range 0-1000, default is @code{1.0}.
14441
14442 @item chroma_strength, cs
14443 Set chroma strength.
14444
14445 Must be a double value in the range 0-1000, default is @code{1.0}.
14446 @end table
14447
14448 @anchor{pad}
14449 @section pad
14450
14451 Add paddings to the input image, and place the original input at the
14452 provided @var{x}, @var{y} coordinates.
14453
14454 It accepts the following parameters:
14455
14456 @table @option
14457 @item width, w
14458 @item height, h
14459 Specify an expression for the size of the output image with the
14460 paddings added. If the value for @var{width} or @var{height} is 0, the
14461 corresponding input size is used for the output.
14462
14463 The @var{width} expression can reference the value set by the
14464 @var{height} expression, and vice versa.
14465
14466 The default value of @var{width} and @var{height} is 0.
14467
14468 @item x
14469 @item y
14470 Specify the offsets to place the input image at within the padded area,
14471 with respect to the top/left border of the output image.
14472
14473 The @var{x} expression can reference the value set by the @var{y}
14474 expression, and vice versa.
14475
14476 The default value of @var{x} and @var{y} is 0.
14477
14478 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
14479 so the input image is centered on the padded area.
14480
14481 @item color
14482 Specify the color of the padded area. For the syntax of this option,
14483 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
14484 manual,ffmpeg-utils}.
14485
14486 The default value of @var{color} is "black".
14487
14488 @item eval
14489 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
14490
14491 It accepts the following values:
14492
14493 @table @samp
14494 @item init
14495 Only evaluate expressions once during the filter initialization or when
14496 a command is processed.
14497
14498 @item frame
14499 Evaluate expressions for each incoming frame.
14500
14501 @end table
14502
14503 Default value is @samp{init}.
14504
14505 @item aspect
14506 Pad to aspect instead to a resolution.
14507
14508 @end table
14509
14510 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
14511 options are expressions containing the following constants:
14512
14513 @table @option
14514 @item in_w
14515 @item in_h
14516 The input video width and height.
14517
14518 @item iw
14519 @item ih
14520 These are the same as @var{in_w} and @var{in_h}.
14521
14522 @item out_w
14523 @item out_h
14524 The output width and height (the size of the padded area), as
14525 specified by the @var{width} and @var{height} expressions.
14526
14527 @item ow
14528 @item oh
14529 These are the same as @var{out_w} and @var{out_h}.
14530
14531 @item x
14532 @item y
14533 The x and y offsets as specified by the @var{x} and @var{y}
14534 expressions, or NAN if not yet specified.
14535
14536 @item a
14537 same as @var{iw} / @var{ih}
14538
14539 @item sar
14540 input sample aspect ratio
14541
14542 @item dar
14543 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
14544
14545 @item hsub
14546 @item vsub
14547 The horizontal and vertical chroma subsample values. For example for the
14548 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14549 @end table
14550
14551 @subsection Examples
14552
14553 @itemize
14554 @item
14555 Add paddings with the color "violet" to the input video. The output video
14556 size is 640x480, and the top-left corner of the input video is placed at
14557 column 0, row 40
14558 @example
14559 pad=640:480:0:40:violet
14560 @end example
14561
14562 The example above is equivalent to the following command:
14563 @example
14564 pad=width=640:height=480:x=0:y=40:color=violet
14565 @end example
14566
14567 @item
14568 Pad the input to get an output with dimensions increased by 3/2,
14569 and put the input video at the center of the padded area:
14570 @example
14571 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
14572 @end example
14573
14574 @item
14575 Pad the input to get a squared output with size equal to the maximum
14576 value between the input width and height, and put the input video at
14577 the center of the padded area:
14578 @example
14579 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
14580 @end example
14581
14582 @item
14583 Pad the input to get a final w/h ratio of 16:9:
14584 @example
14585 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
14586 @end example
14587
14588 @item
14589 In case of anamorphic video, in order to set the output display aspect
14590 correctly, it is necessary to use @var{sar} in the expression,
14591 according to the relation:
14592 @example
14593 (ih * X / ih) * sar = output_dar
14594 X = output_dar / sar
14595 @end example
14596
14597 Thus the previous example needs to be modified to:
14598 @example
14599 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
14600 @end example
14601
14602 @item
14603 Double the output size and put the input video in the bottom-right
14604 corner of the output padded area:
14605 @example
14606 pad="2*iw:2*ih:ow-iw:oh-ih"
14607 @end example
14608 @end itemize
14609
14610 @anchor{palettegen}
14611 @section palettegen
14612
14613 Generate one palette for a whole video stream.
14614
14615 It accepts the following options:
14616
14617 @table @option
14618 @item max_colors
14619 Set the maximum number of colors to quantize in the palette.
14620 Note: the palette will still contain 256 colors; the unused palette entries
14621 will be black.
14622
14623 @item reserve_transparent
14624 Create a palette of 255 colors maximum and reserve the last one for
14625 transparency. Reserving the transparency color is useful for GIF optimization.
14626 If not set, the maximum of colors in the palette will be 256. You probably want
14627 to disable this option for a standalone image.
14628 Set by default.
14629
14630 @item transparency_color
14631 Set the color that will be used as background for transparency.
14632
14633 @item stats_mode
14634 Set statistics mode.
14635
14636 It accepts the following values:
14637 @table @samp
14638 @item full
14639 Compute full frame histograms.
14640 @item diff
14641 Compute histograms only for the part that differs from previous frame. This
14642 might be relevant to give more importance to the moving part of your input if
14643 the background is static.
14644 @item single
14645 Compute new histogram for each frame.
14646 @end table
14647
14648 Default value is @var{full}.
14649 @end table
14650
14651 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
14652 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
14653 color quantization of the palette. This information is also visible at
14654 @var{info} logging level.
14655
14656 @subsection Examples
14657
14658 @itemize
14659 @item
14660 Generate a representative palette of a given video using @command{ffmpeg}:
14661 @example
14662 ffmpeg -i input.mkv -vf palettegen palette.png
14663 @end example
14664 @end itemize
14665
14666 @section paletteuse
14667
14668 Use a palette to downsample an input video stream.
14669
14670 The filter takes two inputs: one video stream and a palette. The palette must
14671 be a 256 pixels image.
14672
14673 It accepts the following options:
14674
14675 @table @option
14676 @item dither
14677 Select dithering mode. Available algorithms are:
14678 @table @samp
14679 @item bayer
14680 Ordered 8x8 bayer dithering (deterministic)
14681 @item heckbert
14682 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
14683 Note: this dithering is sometimes considered "wrong" and is included as a
14684 reference.
14685 @item floyd_steinberg
14686 Floyd and Steingberg dithering (error diffusion)
14687 @item sierra2
14688 Frankie Sierra dithering v2 (error diffusion)
14689 @item sierra2_4a
14690 Frankie Sierra dithering v2 "Lite" (error diffusion)
14691 @end table
14692
14693 Default is @var{sierra2_4a}.
14694
14695 @item bayer_scale
14696 When @var{bayer} dithering is selected, this option defines the scale of the
14697 pattern (how much the crosshatch pattern is visible). A low value means more
14698 visible pattern for less banding, and higher value means less visible pattern
14699 at the cost of more banding.
14700
14701 The option must be an integer value in the range [0,5]. Default is @var{2}.
14702
14703 @item diff_mode
14704 If set, define the zone to process
14705
14706 @table @samp
14707 @item rectangle
14708 Only the changing rectangle will be reprocessed. This is similar to GIF
14709 cropping/offsetting compression mechanism. This option can be useful for speed
14710 if only a part of the image is changing, and has use cases such as limiting the
14711 scope of the error diffusal @option{dither} to the rectangle that bounds the
14712 moving scene (it leads to more deterministic output if the scene doesn't change
14713 much, and as a result less moving noise and better GIF compression).
14714 @end table
14715
14716 Default is @var{none}.
14717
14718 @item new
14719 Take new palette for each output frame.
14720
14721 @item alpha_threshold
14722 Sets the alpha threshold for transparency. Alpha values above this threshold
14723 will be treated as completely opaque, and values below this threshold will be
14724 treated as completely transparent.
14725
14726 The option must be an integer value in the range [0,255]. Default is @var{128}.
14727 @end table
14728
14729 @subsection Examples
14730
14731 @itemize
14732 @item
14733 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
14734 using @command{ffmpeg}:
14735 @example
14736 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
14737 @end example
14738 @end itemize
14739
14740 @section perspective
14741
14742 Correct perspective of video not recorded perpendicular to the screen.
14743
14744 A description of the accepted parameters follows.
14745
14746 @table @option
14747 @item x0
14748 @item y0
14749 @item x1
14750 @item y1
14751 @item x2
14752 @item y2
14753 @item x3
14754 @item y3
14755 Set coordinates expression for top left, top right, bottom left and bottom right corners.
14756 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
14757 If the @code{sense} option is set to @code{source}, then the specified points will be sent
14758 to the corners of the destination. If the @code{sense} option is set to @code{destination},
14759 then the corners of the source will be sent to the specified coordinates.
14760
14761 The expressions can use the following variables:
14762
14763 @table @option
14764 @item W
14765 @item H
14766 the width and height of video frame.
14767 @item in
14768 Input frame count.
14769 @item on
14770 Output frame count.
14771 @end table
14772
14773 @item interpolation
14774 Set interpolation for perspective correction.
14775
14776 It accepts the following values:
14777 @table @samp
14778 @item linear
14779 @item cubic
14780 @end table
14781
14782 Default value is @samp{linear}.
14783
14784 @item sense
14785 Set interpretation of coordinate options.
14786
14787 It accepts the following values:
14788 @table @samp
14789 @item 0, source
14790
14791 Send point in the source specified by the given coordinates to
14792 the corners of the destination.
14793
14794 @item 1, destination
14795
14796 Send the corners of the source to the point in the destination specified
14797 by the given coordinates.
14798
14799 Default value is @samp{source}.
14800 @end table
14801
14802 @item eval
14803 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
14804
14805 It accepts the following values:
14806 @table @samp
14807 @item init
14808 only evaluate expressions once during the filter initialization or
14809 when a command is processed
14810
14811 @item frame
14812 evaluate expressions for each incoming frame
14813 @end table
14814
14815 Default value is @samp{init}.
14816 @end table
14817
14818 @section phase
14819
14820 Delay interlaced video by one field time so that the field order changes.
14821
14822 The intended use is to fix PAL movies that have been captured with the
14823 opposite field order to the film-to-video transfer.
14824
14825 A description of the accepted parameters follows.
14826
14827 @table @option
14828 @item mode
14829 Set phase mode.
14830
14831 It accepts the following values:
14832 @table @samp
14833 @item t
14834 Capture field order top-first, transfer bottom-first.
14835 Filter will delay the bottom field.
14836
14837 @item b
14838 Capture field order bottom-first, transfer top-first.
14839 Filter will delay the top field.
14840
14841 @item p
14842 Capture and transfer with the same field order. This mode only exists
14843 for the documentation of the other options to refer to, but if you
14844 actually select it, the filter will faithfully do nothing.
14845
14846 @item a
14847 Capture field order determined automatically by field flags, transfer
14848 opposite.
14849 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
14850 basis using field flags. If no field information is available,
14851 then this works just like @samp{u}.
14852
14853 @item u
14854 Capture unknown or varying, transfer opposite.
14855 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
14856 analyzing the images and selecting the alternative that produces best
14857 match between the fields.
14858
14859 @item T
14860 Capture top-first, transfer unknown or varying.
14861 Filter selects among @samp{t} and @samp{p} using image analysis.
14862
14863 @item B
14864 Capture bottom-first, transfer unknown or varying.
14865 Filter selects among @samp{b} and @samp{p} using image analysis.
14866
14867 @item A
14868 Capture determined by field flags, transfer unknown or varying.
14869 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
14870 image analysis. If no field information is available, then this works just
14871 like @samp{U}. This is the default mode.
14872
14873 @item U
14874 Both capture and transfer unknown or varying.
14875 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
14876 @end table
14877 @end table
14878
14879 @section photosensitivity
14880 Reduce various flashes in video, so to help users with epilepsy.
14881
14882 It accepts the following options:
14883 @table @option
14884 @item frames, f
14885 Set how many frames to use when filtering. Default is 30.
14886
14887 @item threshold, t
14888 Set detection threshold factor. Default is 1.
14889 Lower is stricter.
14890
14891 @item skip
14892 Set how many pixels to skip when sampling frames. Default is 1.
14893 Allowed range is from 1 to 1024.
14894
14895 @item bypass
14896 Leave frames unchanged. Default is disabled.
14897 @end table
14898
14899 @section pixdesctest
14900
14901 Pixel format descriptor test filter, mainly useful for internal
14902 testing. The output video should be equal to the input video.
14903
14904 For example:
14905 @example
14906 format=monow, pixdesctest
14907 @end example
14908
14909 can be used to test the monowhite pixel format descriptor definition.
14910
14911 @section pixscope
14912
14913 Display sample values of color channels. Mainly useful for checking color
14914 and levels. Minimum supported resolution is 640x480.
14915
14916 The filters accept the following options:
14917
14918 @table @option
14919 @item x
14920 Set scope X position, relative offset on X axis.
14921
14922 @item y
14923 Set scope Y position, relative offset on Y axis.
14924
14925 @item w
14926 Set scope width.
14927
14928 @item h
14929 Set scope height.
14930
14931 @item o
14932 Set window opacity. This window also holds statistics about pixel area.
14933
14934 @item wx
14935 Set window X position, relative offset on X axis.
14936
14937 @item wy
14938 Set window Y position, relative offset on Y axis.
14939 @end table
14940
14941 @section pp
14942
14943 Enable the specified chain of postprocessing subfilters using libpostproc. This
14944 library should be automatically selected with a GPL build (@code{--enable-gpl}).
14945 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
14946 Each subfilter and some options have a short and a long name that can be used
14947 interchangeably, i.e. dr/dering are the same.
14948
14949 The filters accept the following options:
14950
14951 @table @option
14952 @item subfilters
14953 Set postprocessing subfilters string.
14954 @end table
14955
14956 All subfilters share common options to determine their scope:
14957
14958 @table @option
14959 @item a/autoq
14960 Honor the quality commands for this subfilter.
14961
14962 @item c/chrom
14963 Do chrominance filtering, too (default).
14964
14965 @item y/nochrom
14966 Do luminance filtering only (no chrominance).
14967
14968 @item n/noluma
14969 Do chrominance filtering only (no luminance).
14970 @end table
14971
14972 These options can be appended after the subfilter name, separated by a '|'.
14973
14974 Available subfilters are:
14975
14976 @table @option
14977 @item hb/hdeblock[|difference[|flatness]]
14978 Horizontal deblocking filter
14979 @table @option
14980 @item difference
14981 Difference factor where higher values mean more deblocking (default: @code{32}).
14982 @item flatness
14983 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14984 @end table
14985
14986 @item vb/vdeblock[|difference[|flatness]]
14987 Vertical deblocking filter
14988 @table @option
14989 @item difference
14990 Difference factor where higher values mean more deblocking (default: @code{32}).
14991 @item flatness
14992 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14993 @end table
14994
14995 @item ha/hadeblock[|difference[|flatness]]
14996 Accurate horizontal deblocking filter
14997 @table @option
14998 @item difference
14999 Difference factor where higher values mean more deblocking (default: @code{32}).
15000 @item flatness
15001 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15002 @end table
15003
15004 @item va/vadeblock[|difference[|flatness]]
15005 Accurate vertical deblocking filter
15006 @table @option
15007 @item difference
15008 Difference factor where higher values mean more deblocking (default: @code{32}).
15009 @item flatness
15010 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15011 @end table
15012 @end table
15013
15014 The horizontal and vertical deblocking filters share the difference and
15015 flatness values so you cannot set different horizontal and vertical
15016 thresholds.
15017
15018 @table @option
15019 @item h1/x1hdeblock
15020 Experimental horizontal deblocking filter
15021
15022 @item v1/x1vdeblock
15023 Experimental vertical deblocking filter
15024
15025 @item dr/dering
15026 Deringing filter
15027
15028 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
15029 @table @option
15030 @item threshold1
15031 larger -> stronger filtering
15032 @item threshold2
15033 larger -> stronger filtering
15034 @item threshold3
15035 larger -> stronger filtering
15036 @end table
15037
15038 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15039 @table @option
15040 @item f/fullyrange
15041 Stretch luminance to @code{0-255}.
15042 @end table
15043
15044 @item lb/linblenddeint
15045 Linear blend deinterlacing filter that deinterlaces the given block by
15046 filtering all lines with a @code{(1 2 1)} filter.
15047
15048 @item li/linipoldeint
15049 Linear interpolating deinterlacing filter that deinterlaces the given block by
15050 linearly interpolating every second line.
15051
15052 @item ci/cubicipoldeint
15053 Cubic interpolating deinterlacing filter deinterlaces the given block by
15054 cubically interpolating every second line.
15055
15056 @item md/mediandeint
15057 Median deinterlacing filter that deinterlaces the given block by applying a
15058 median filter to every second line.
15059
15060 @item fd/ffmpegdeint
15061 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
15062 second line with a @code{(-1 4 2 4 -1)} filter.
15063
15064 @item l5/lowpass5
15065 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
15066 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
15067
15068 @item fq/forceQuant[|quantizer]
15069 Overrides the quantizer table from the input with the constant quantizer you
15070 specify.
15071 @table @option
15072 @item quantizer
15073 Quantizer to use
15074 @end table
15075
15076 @item de/default
15077 Default pp filter combination (@code{hb|a,vb|a,dr|a})
15078
15079 @item fa/fast
15080 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
15081
15082 @item ac
15083 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
15084 @end table
15085
15086 @subsection Examples
15087
15088 @itemize
15089 @item
15090 Apply horizontal and vertical deblocking, deringing and automatic
15091 brightness/contrast:
15092 @example
15093 pp=hb/vb/dr/al
15094 @end example
15095
15096 @item
15097 Apply default filters without brightness/contrast correction:
15098 @example
15099 pp=de/-al
15100 @end example
15101
15102 @item
15103 Apply default filters and temporal denoiser:
15104 @example
15105 pp=default/tmpnoise|1|2|3
15106 @end example
15107
15108 @item
15109 Apply deblocking on luminance only, and switch vertical deblocking on or off
15110 automatically depending on available CPU time:
15111 @example
15112 pp=hb|y/vb|a
15113 @end example
15114 @end itemize
15115
15116 @section pp7
15117 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
15118 similar to spp = 6 with 7 point DCT, where only the center sample is
15119 used after IDCT.
15120
15121 The filter accepts the following options:
15122
15123 @table @option
15124 @item qp
15125 Force a constant quantization parameter. It accepts an integer in range
15126 0 to 63. If not set, the filter will use the QP from the video stream
15127 (if available).
15128
15129 @item mode
15130 Set thresholding mode. Available modes are:
15131
15132 @table @samp
15133 @item hard
15134 Set hard thresholding.
15135 @item soft
15136 Set soft thresholding (better de-ringing effect, but likely blurrier).
15137 @item medium
15138 Set medium thresholding (good results, default).
15139 @end table
15140 @end table
15141
15142 @section premultiply
15143 Apply alpha premultiply effect to input video stream using first plane
15144 of second stream as alpha.
15145
15146 Both streams must have same dimensions and same pixel format.
15147
15148 The filter accepts the following option:
15149
15150 @table @option
15151 @item planes
15152 Set which planes will be processed, unprocessed planes will be copied.
15153 By default value 0xf, all planes will be processed.
15154
15155 @item inplace
15156 Do not require 2nd input for processing, instead use alpha plane from input stream.
15157 @end table
15158
15159 @section prewitt
15160 Apply prewitt operator to input video stream.
15161
15162 The filter accepts the following option:
15163
15164 @table @option
15165 @item planes
15166 Set which planes will be processed, unprocessed planes will be copied.
15167 By default value 0xf, all planes will be processed.
15168
15169 @item scale
15170 Set value which will be multiplied with filtered result.
15171
15172 @item delta
15173 Set value which will be added to filtered result.
15174 @end table
15175
15176 @section pseudocolor
15177
15178 Alter frame colors in video with pseudocolors.
15179
15180 This filter accepts the following options:
15181
15182 @table @option
15183 @item c0
15184 set pixel first component expression
15185
15186 @item c1
15187 set pixel second component expression
15188
15189 @item c2
15190 set pixel third component expression
15191
15192 @item c3
15193 set pixel fourth component expression, corresponds to the alpha component
15194
15195 @item i
15196 set component to use as base for altering colors
15197 @end table
15198
15199 Each of them specifies the expression to use for computing the lookup table for
15200 the corresponding pixel component values.
15201
15202 The expressions can contain the following constants and functions:
15203
15204 @table @option
15205 @item w
15206 @item h
15207 The input width and height.
15208
15209 @item val
15210 The input value for the pixel component.
15211
15212 @item ymin, umin, vmin, amin
15213 The minimum allowed component value.
15214
15215 @item ymax, umax, vmax, amax
15216 The maximum allowed component value.
15217 @end table
15218
15219 All expressions default to "val".
15220
15221 @subsection Examples
15222
15223 @itemize
15224 @item
15225 Change too high luma values to gradient:
15226 @example
15227 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'"
15228 @end example
15229 @end itemize
15230
15231 @section psnr
15232
15233 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
15234 Ratio) between two input videos.
15235
15236 This filter takes in input two input videos, the first input is
15237 considered the "main" source and is passed unchanged to the
15238 output. The second input is used as a "reference" video for computing
15239 the PSNR.
15240
15241 Both video inputs must have the same resolution and pixel format for
15242 this filter to work correctly. Also it assumes that both inputs
15243 have the same number of frames, which are compared one by one.
15244
15245 The obtained average PSNR is printed through the logging system.
15246
15247 The filter stores the accumulated MSE (mean squared error) of each
15248 frame, and at the end of the processing it is averaged across all frames
15249 equally, and the following formula is applied to obtain the PSNR:
15250
15251 @example
15252 PSNR = 10*log10(MAX^2/MSE)
15253 @end example
15254
15255 Where MAX is the average of the maximum values of each component of the
15256 image.
15257
15258 The description of the accepted parameters follows.
15259
15260 @table @option
15261 @item stats_file, f
15262 If specified the filter will use the named file to save the PSNR of
15263 each individual frame. When filename equals "-" the data is sent to
15264 standard output.
15265
15266 @item stats_version
15267 Specifies which version of the stats file format to use. Details of
15268 each format are written below.
15269 Default value is 1.
15270
15271 @item stats_add_max
15272 Determines whether the max value is output to the stats log.
15273 Default value is 0.
15274 Requires stats_version >= 2. If this is set and stats_version < 2,
15275 the filter will return an error.
15276 @end table
15277
15278 This filter also supports the @ref{framesync} options.
15279
15280 The file printed if @var{stats_file} is selected, contains a sequence of
15281 key/value pairs of the form @var{key}:@var{value} for each compared
15282 couple of frames.
15283
15284 If a @var{stats_version} greater than 1 is specified, a header line precedes
15285 the list of per-frame-pair stats, with key value pairs following the frame
15286 format with the following parameters:
15287
15288 @table @option
15289 @item psnr_log_version
15290 The version of the log file format. Will match @var{stats_version}.
15291
15292 @item fields
15293 A comma separated list of the per-frame-pair parameters included in
15294 the log.
15295 @end table
15296
15297 A description of each shown per-frame-pair parameter follows:
15298
15299 @table @option
15300 @item n
15301 sequential number of the input frame, starting from 1
15302
15303 @item mse_avg
15304 Mean Square Error pixel-by-pixel average difference of the compared
15305 frames, averaged over all the image components.
15306
15307 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
15308 Mean Square Error pixel-by-pixel average difference of the compared
15309 frames for the component specified by the suffix.
15310
15311 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
15312 Peak Signal to Noise ratio of the compared frames for the component
15313 specified by the suffix.
15314
15315 @item max_avg, max_y, max_u, max_v
15316 Maximum allowed value for each channel, and average over all
15317 channels.
15318 @end table
15319
15320 @subsection Examples
15321 @itemize
15322 @item
15323 For example:
15324 @example
15325 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
15326 [main][ref] psnr="stats_file=stats.log" [out]
15327 @end example
15328
15329 On this example the input file being processed is compared with the
15330 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
15331 is stored in @file{stats.log}.
15332
15333 @item
15334 Another example with different containers:
15335 @example
15336 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 -
15337 @end example
15338 @end itemize
15339
15340 @anchor{pullup}
15341 @section pullup
15342
15343 Pulldown reversal (inverse telecine) filter, capable of handling mixed
15344 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
15345 content.
15346
15347 The pullup filter is designed to take advantage of future context in making
15348 its decisions. This filter is stateless in the sense that it does not lock
15349 onto a pattern to follow, but it instead looks forward to the following
15350 fields in order to identify matches and rebuild progressive frames.
15351
15352 To produce content with an even framerate, insert the fps filter after
15353 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
15354 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
15355
15356 The filter accepts the following options:
15357
15358 @table @option
15359 @item jl
15360 @item jr
15361 @item jt
15362 @item jb
15363 These options set the amount of "junk" to ignore at the left, right, top, and
15364 bottom of the image, respectively. Left and right are in units of 8 pixels,
15365 while top and bottom are in units of 2 lines.
15366 The default is 8 pixels on each side.
15367
15368 @item sb
15369 Set the strict breaks. Setting this option to 1 will reduce the chances of
15370 filter generating an occasional mismatched frame, but it may also cause an
15371 excessive number of frames to be dropped during high motion sequences.
15372 Conversely, setting it to -1 will make filter match fields more easily.
15373 This may help processing of video where there is slight blurring between
15374 the fields, but may also cause there to be interlaced frames in the output.
15375 Default value is @code{0}.
15376
15377 @item mp
15378 Set the metric plane to use. It accepts the following values:
15379 @table @samp
15380 @item l
15381 Use luma plane.
15382
15383 @item u
15384 Use chroma blue plane.
15385
15386 @item v
15387 Use chroma red plane.
15388 @end table
15389
15390 This option may be set to use chroma plane instead of the default luma plane
15391 for doing filter's computations. This may improve accuracy on very clean
15392 source material, but more likely will decrease accuracy, especially if there
15393 is chroma noise (rainbow effect) or any grayscale video.
15394 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
15395 load and make pullup usable in realtime on slow machines.
15396 @end table
15397
15398 For best results (without duplicated frames in the output file) it is
15399 necessary to change the output frame rate. For example, to inverse
15400 telecine NTSC input:
15401 @example
15402 ffmpeg -i input -vf pullup -r 24000/1001 ...
15403 @end example
15404
15405 @section qp
15406
15407 Change video quantization parameters (QP).
15408
15409 The filter accepts the following option:
15410
15411 @table @option
15412 @item qp
15413 Set expression for quantization parameter.
15414 @end table
15415
15416 The expression is evaluated through the eval API and can contain, among others,
15417 the following constants:
15418
15419 @table @var
15420 @item known
15421 1 if index is not 129, 0 otherwise.
15422
15423 @item qp
15424 Sequential index starting from -129 to 128.
15425 @end table
15426
15427 @subsection Examples
15428
15429 @itemize
15430 @item
15431 Some equation like:
15432 @example
15433 qp=2+2*sin(PI*qp)
15434 @end example
15435 @end itemize
15436
15437 @section random
15438
15439 Flush video frames from internal cache of frames into a random order.
15440 No frame is discarded.
15441 Inspired by @ref{frei0r} nervous filter.
15442
15443 @table @option
15444 @item frames
15445 Set size in number of frames of internal cache, in range from @code{2} to
15446 @code{512}. Default is @code{30}.
15447
15448 @item seed
15449 Set seed for random number generator, must be an integer included between
15450 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15451 less than @code{0}, the filter will try to use a good random seed on a
15452 best effort basis.
15453 @end table
15454
15455 @section readeia608
15456
15457 Read closed captioning (EIA-608) information from the top lines of a video frame.
15458
15459 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
15460 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
15461 with EIA-608 data (starting from 0). A description of each metadata value follows:
15462
15463 @table @option
15464 @item lavfi.readeia608.X.cc
15465 The two bytes stored as EIA-608 data (printed in hexadecimal).
15466
15467 @item lavfi.readeia608.X.line
15468 The number of the line on which the EIA-608 data was identified and read.
15469 @end table
15470
15471 This filter accepts the following options:
15472
15473 @table @option
15474 @item scan_min
15475 Set the line to start scanning for EIA-608 data. Default is @code{0}.
15476
15477 @item scan_max
15478 Set the line to end scanning for EIA-608 data. Default is @code{29}.
15479
15480 @item spw
15481 Set the ratio of width reserved for sync code detection.
15482 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
15483
15484 @item chp
15485 Enable checking the parity bit. In the event of a parity error, the filter will output
15486 @code{0x00} for that character. Default is false.
15487
15488 @item lp
15489 Lowpass lines prior to further processing. Default is enabled.
15490 @end table
15491
15492 @subsection Examples
15493
15494 @itemize
15495 @item
15496 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
15497 @example
15498 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
15499 @end example
15500 @end itemize
15501
15502 @section readvitc
15503
15504 Read vertical interval timecode (VITC) information from the top lines of a
15505 video frame.
15506
15507 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
15508 timecode value, if a valid timecode has been detected. Further metadata key
15509 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
15510 timecode data has been found or not.
15511
15512 This filter accepts the following options:
15513
15514 @table @option
15515 @item scan_max
15516 Set the maximum number of lines to scan for VITC data. If the value is set to
15517 @code{-1} the full video frame is scanned. Default is @code{45}.
15518
15519 @item thr_b
15520 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
15521 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
15522
15523 @item thr_w
15524 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
15525 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
15526 @end table
15527
15528 @subsection Examples
15529
15530 @itemize
15531 @item
15532 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
15533 draw @code{--:--:--:--} as a placeholder:
15534 @example
15535 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
15536 @end example
15537 @end itemize
15538
15539 @section remap
15540
15541 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
15542
15543 Destination pixel at position (X, Y) will be picked from source (x, y) position
15544 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
15545 value for pixel will be used for destination pixel.
15546
15547 Xmap and Ymap input video streams must be of same dimensions. Output video stream
15548 will have Xmap/Ymap video stream dimensions.
15549 Xmap and Ymap input video streams are 16bit depth, single channel.
15550
15551 @table @option
15552 @item format
15553 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
15554 Default is @code{color}.
15555
15556 @item fill
15557 Specify the color of the unmapped pixels. For the syntax of this option,
15558 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15559 manual,ffmpeg-utils}. Default color is @code{black}.
15560 @end table
15561
15562 @section removegrain
15563
15564 The removegrain filter is a spatial denoiser for progressive video.
15565
15566 @table @option
15567 @item m0
15568 Set mode for the first plane.
15569
15570 @item m1
15571 Set mode for the second plane.
15572
15573 @item m2
15574 Set mode for the third plane.
15575
15576 @item m3
15577 Set mode for the fourth plane.
15578 @end table
15579
15580 Range of mode is from 0 to 24. Description of each mode follows:
15581
15582 @table @var
15583 @item 0
15584 Leave input plane unchanged. Default.
15585
15586 @item 1
15587 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
15588
15589 @item 2
15590 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
15591
15592 @item 3
15593 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
15594
15595 @item 4
15596 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
15597 This is equivalent to a median filter.
15598
15599 @item 5
15600 Line-sensitive clipping giving the minimal change.
15601
15602 @item 6
15603 Line-sensitive clipping, intermediate.
15604
15605 @item 7
15606 Line-sensitive clipping, intermediate.
15607
15608 @item 8
15609 Line-sensitive clipping, intermediate.
15610
15611 @item 9
15612 Line-sensitive clipping on a line where the neighbours pixels are the closest.
15613
15614 @item 10
15615 Replaces the target pixel with the closest neighbour.
15616
15617 @item 11
15618 [1 2 1] horizontal and vertical kernel blur.
15619
15620 @item 12
15621 Same as mode 11.
15622
15623 @item 13
15624 Bob mode, interpolates top field from the line where the neighbours
15625 pixels are the closest.
15626
15627 @item 14
15628 Bob mode, interpolates bottom field from the line where the neighbours
15629 pixels are the closest.
15630
15631 @item 15
15632 Bob mode, interpolates top field. Same as 13 but with a more complicated
15633 interpolation formula.
15634
15635 @item 16
15636 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
15637 interpolation formula.
15638
15639 @item 17
15640 Clips the pixel with the minimum and maximum of respectively the maximum and
15641 minimum of each pair of opposite neighbour pixels.
15642
15643 @item 18
15644 Line-sensitive clipping using opposite neighbours whose greatest distance from
15645 the current pixel is minimal.
15646
15647 @item 19
15648 Replaces the pixel with the average of its 8 neighbours.
15649
15650 @item 20
15651 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
15652
15653 @item 21
15654 Clips pixels using the averages of opposite neighbour.
15655
15656 @item 22
15657 Same as mode 21 but simpler and faster.
15658
15659 @item 23
15660 Small edge and halo removal, but reputed useless.
15661
15662 @item 24
15663 Similar as 23.
15664 @end table
15665
15666 @section removelogo
15667
15668 Suppress a TV station logo, using an image file to determine which
15669 pixels comprise the logo. It works by filling in the pixels that
15670 comprise the logo with neighboring pixels.
15671
15672 The filter accepts the following options:
15673
15674 @table @option
15675 @item filename, f
15676 Set the filter bitmap file, which can be any image format supported by
15677 libavformat. The width and height of the image file must match those of the
15678 video stream being processed.
15679 @end table
15680
15681 Pixels in the provided bitmap image with a value of zero are not
15682 considered part of the logo, non-zero pixels are considered part of
15683 the logo. If you use white (255) for the logo and black (0) for the
15684 rest, you will be safe. For making the filter bitmap, it is
15685 recommended to take a screen capture of a black frame with the logo
15686 visible, and then using a threshold filter followed by the erode
15687 filter once or twice.
15688
15689 If needed, little splotches can be fixed manually. Remember that if
15690 logo pixels are not covered, the filter quality will be much
15691 reduced. Marking too many pixels as part of the logo does not hurt as
15692 much, but it will increase the amount of blurring needed to cover over
15693 the image and will destroy more information than necessary, and extra
15694 pixels will slow things down on a large logo.
15695
15696 @section repeatfields
15697
15698 This filter uses the repeat_field flag from the Video ES headers and hard repeats
15699 fields based on its value.
15700
15701 @section reverse
15702
15703 Reverse a video clip.
15704
15705 Warning: This filter requires memory to buffer the entire clip, so trimming
15706 is suggested.
15707
15708 @subsection Examples
15709
15710 @itemize
15711 @item
15712 Take the first 5 seconds of a clip, and reverse it.
15713 @example
15714 trim=end=5,reverse
15715 @end example
15716 @end itemize
15717
15718 @section rgbashift
15719 Shift R/G/B/A pixels horizontally and/or vertically.
15720
15721 The filter accepts the following options:
15722 @table @option
15723 @item rh
15724 Set amount to shift red horizontally.
15725 @item rv
15726 Set amount to shift red vertically.
15727 @item gh
15728 Set amount to shift green horizontally.
15729 @item gv
15730 Set amount to shift green vertically.
15731 @item bh
15732 Set amount to shift blue horizontally.
15733 @item bv
15734 Set amount to shift blue vertically.
15735 @item ah
15736 Set amount to shift alpha horizontally.
15737 @item av
15738 Set amount to shift alpha vertically.
15739 @item edge
15740 Set edge mode, can be @var{smear}, default, or @var{warp}.
15741 @end table
15742
15743 @subsection Commands
15744
15745 This filter supports the all above options as @ref{commands}.
15746
15747 @section roberts
15748 Apply roberts cross operator to input video stream.
15749
15750 The filter accepts the following option:
15751
15752 @table @option
15753 @item planes
15754 Set which planes will be processed, unprocessed planes will be copied.
15755 By default value 0xf, all planes will be processed.
15756
15757 @item scale
15758 Set value which will be multiplied with filtered result.
15759
15760 @item delta
15761 Set value which will be added to filtered result.
15762 @end table
15763
15764 @section rotate
15765
15766 Rotate video by an arbitrary angle expressed in radians.
15767
15768 The filter accepts the following options:
15769
15770 A description of the optional parameters follows.
15771 @table @option
15772 @item angle, a
15773 Set an expression for the angle by which to rotate the input video
15774 clockwise, expressed as a number of radians. A negative value will
15775 result in a counter-clockwise rotation. By default it is set to "0".
15776
15777 This expression is evaluated for each frame.
15778
15779 @item out_w, ow
15780 Set the output width expression, default value is "iw".
15781 This expression is evaluated just once during configuration.
15782
15783 @item out_h, oh
15784 Set the output height expression, default value is "ih".
15785 This expression is evaluated just once during configuration.
15786
15787 @item bilinear
15788 Enable bilinear interpolation if set to 1, a value of 0 disables
15789 it. Default value is 1.
15790
15791 @item fillcolor, c
15792 Set the color used to fill the output area not covered by the rotated
15793 image. For the general syntax of this option, check the
15794 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15795 If the special value "none" is selected then no
15796 background is printed (useful for example if the background is never shown).
15797
15798 Default value is "black".
15799 @end table
15800
15801 The expressions for the angle and the output size can contain the
15802 following constants and functions:
15803
15804 @table @option
15805 @item n
15806 sequential number of the input frame, starting from 0. It is always NAN
15807 before the first frame is filtered.
15808
15809 @item t
15810 time in seconds of the input frame, it is set to 0 when the filter is
15811 configured. It is always NAN before the first frame is filtered.
15812
15813 @item hsub
15814 @item vsub
15815 horizontal and vertical chroma subsample values. For example for the
15816 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15817
15818 @item in_w, iw
15819 @item in_h, ih
15820 the input video width and height
15821
15822 @item out_w, ow
15823 @item out_h, oh
15824 the output width and height, that is the size of the padded area as
15825 specified by the @var{width} and @var{height} expressions
15826
15827 @item rotw(a)
15828 @item roth(a)
15829 the minimal width/height required for completely containing the input
15830 video rotated by @var{a} radians.
15831
15832 These are only available when computing the @option{out_w} and
15833 @option{out_h} expressions.
15834 @end table
15835
15836 @subsection Examples
15837
15838 @itemize
15839 @item
15840 Rotate the input by PI/6 radians clockwise:
15841 @example
15842 rotate=PI/6
15843 @end example
15844
15845 @item
15846 Rotate the input by PI/6 radians counter-clockwise:
15847 @example
15848 rotate=-PI/6
15849 @end example
15850
15851 @item
15852 Rotate the input by 45 degrees clockwise:
15853 @example
15854 rotate=45*PI/180
15855 @end example
15856
15857 @item
15858 Apply a constant rotation with period T, starting from an angle of PI/3:
15859 @example
15860 rotate=PI/3+2*PI*t/T
15861 @end example
15862
15863 @item
15864 Make the input video rotation oscillating with a period of T
15865 seconds and an amplitude of A radians:
15866 @example
15867 rotate=A*sin(2*PI/T*t)
15868 @end example
15869
15870 @item
15871 Rotate the video, output size is chosen so that the whole rotating
15872 input video is always completely contained in the output:
15873 @example
15874 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
15875 @end example
15876
15877 @item
15878 Rotate the video, reduce the output size so that no background is ever
15879 shown:
15880 @example
15881 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
15882 @end example
15883 @end itemize
15884
15885 @subsection Commands
15886
15887 The filter supports the following commands:
15888
15889 @table @option
15890 @item a, angle
15891 Set the angle expression.
15892 The command accepts the same syntax of the corresponding option.
15893
15894 If the specified expression is not valid, it is kept at its current
15895 value.
15896 @end table
15897
15898 @section sab
15899
15900 Apply Shape Adaptive Blur.
15901
15902 The filter accepts the following options:
15903
15904 @table @option
15905 @item luma_radius, lr
15906 Set luma blur filter strength, must be a value in range 0.1-4.0, default
15907 value is 1.0. A greater value will result in a more blurred image, and
15908 in slower processing.
15909
15910 @item luma_pre_filter_radius, lpfr
15911 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
15912 value is 1.0.
15913
15914 @item luma_strength, ls
15915 Set luma maximum difference between pixels to still be considered, must
15916 be a value in the 0.1-100.0 range, default value is 1.0.
15917
15918 @item chroma_radius, cr
15919 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
15920 greater value will result in a more blurred image, and in slower
15921 processing.
15922
15923 @item chroma_pre_filter_radius, cpfr
15924 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
15925
15926 @item chroma_strength, cs
15927 Set chroma maximum difference between pixels to still be considered,
15928 must be a value in the -0.9-100.0 range.
15929 @end table
15930
15931 Each chroma option value, if not explicitly specified, is set to the
15932 corresponding luma option value.
15933
15934 @anchor{scale}
15935 @section scale
15936
15937 Scale (resize) the input video, using the libswscale library.
15938
15939 The scale filter forces the output display aspect ratio to be the same
15940 of the input, by changing the output sample aspect ratio.
15941
15942 If the input image format is different from the format requested by
15943 the next filter, the scale filter will convert the input to the
15944 requested format.
15945
15946 @subsection Options
15947 The filter accepts the following options, or any of the options
15948 supported by the libswscale scaler.
15949
15950 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
15951 the complete list of scaler options.
15952
15953 @table @option
15954 @item width, w
15955 @item height, h
15956 Set the output video dimension expression. Default value is the input
15957 dimension.
15958
15959 If the @var{width} or @var{w} value is 0, the input width is used for
15960 the output. If the @var{height} or @var{h} value is 0, the input height
15961 is used for the output.
15962
15963 If one and only one of the values is -n with n >= 1, the scale filter
15964 will use a value that maintains the aspect ratio of the input image,
15965 calculated from the other specified dimension. After that it will,
15966 however, make sure that the calculated dimension is divisible by n and
15967 adjust the value if necessary.
15968
15969 If both values are -n with n >= 1, the behavior will be identical to
15970 both values being set to 0 as previously detailed.
15971
15972 See below for the list of accepted constants for use in the dimension
15973 expression.
15974
15975 @item eval
15976 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
15977
15978 @table @samp
15979 @item init
15980 Only evaluate expressions once during the filter initialization or when a command is processed.
15981
15982 @item frame
15983 Evaluate expressions for each incoming frame.
15984
15985 @end table
15986
15987 Default value is @samp{init}.
15988
15989
15990 @item interl
15991 Set the interlacing mode. It accepts the following values:
15992
15993 @table @samp
15994 @item 1
15995 Force interlaced aware scaling.
15996
15997 @item 0
15998 Do not apply interlaced scaling.
15999
16000 @item -1
16001 Select interlaced aware scaling depending on whether the source frames
16002 are flagged as interlaced or not.
16003 @end table
16004
16005 Default value is @samp{0}.
16006
16007 @item flags
16008 Set libswscale scaling flags. See
16009 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16010 complete list of values. If not explicitly specified the filter applies
16011 the default flags.
16012
16013
16014 @item param0, param1
16015 Set libswscale input parameters for scaling algorithms that need them. See
16016 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16017 complete documentation. If not explicitly specified the filter applies
16018 empty parameters.
16019
16020
16021
16022 @item size, s
16023 Set the video size. For the syntax of this option, check the
16024 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16025
16026 @item in_color_matrix
16027 @item out_color_matrix
16028 Set in/output YCbCr color space type.
16029
16030 This allows the autodetected value to be overridden as well as allows forcing
16031 a specific value used for the output and encoder.
16032
16033 If not specified, the color space type depends on the pixel format.
16034
16035 Possible values:
16036
16037 @table @samp
16038 @item auto
16039 Choose automatically.
16040
16041 @item bt709
16042 Format conforming to International Telecommunication Union (ITU)
16043 Recommendation BT.709.
16044
16045 @item fcc
16046 Set color space conforming to the United States Federal Communications
16047 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16048
16049 @item bt601
16050 @item bt470
16051 @item smpte170m
16052 Set color space conforming to:
16053
16054 @itemize
16055 @item
16056 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16057
16058 @item
16059 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16060
16061 @item
16062 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16063
16064 @end itemize
16065
16066 @item smpte240m
16067 Set color space conforming to SMPTE ST 240:1999.
16068
16069 @item bt2020
16070 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16071 @end table
16072
16073 @item in_range
16074 @item out_range
16075 Set in/output YCbCr sample range.
16076
16077 This allows the autodetected value to be overridden as well as allows forcing
16078 a specific value used for the output and encoder. If not specified, the
16079 range depends on the pixel format. Possible values:
16080
16081 @table @samp
16082 @item auto/unknown
16083 Choose automatically.
16084
16085 @item jpeg/full/pc
16086 Set full range (0-255 in case of 8-bit luma).
16087
16088 @item mpeg/limited/tv
16089 Set "MPEG" range (16-235 in case of 8-bit luma).
16090 @end table
16091
16092 @item force_original_aspect_ratio
16093 Enable decreasing or increasing output video width or height if necessary to
16094 keep the original aspect ratio. Possible values:
16095
16096 @table @samp
16097 @item disable
16098 Scale the video as specified and disable this feature.
16099
16100 @item decrease
16101 The output video dimensions will automatically be decreased if needed.
16102
16103 @item increase
16104 The output video dimensions will automatically be increased if needed.
16105
16106 @end table
16107
16108 One useful instance of this option is that when you know a specific device's
16109 maximum allowed resolution, you can use this to limit the output video to
16110 that, while retaining the aspect ratio. For example, device A allows
16111 1280x720 playback, and your video is 1920x800. Using this option (set it to
16112 decrease) and specifying 1280x720 to the command line makes the output
16113 1280x533.
16114
16115 Please note that this is a different thing than specifying -1 for @option{w}
16116 or @option{h}, you still need to specify the output resolution for this option
16117 to work.
16118
16119 @item force_divisible_by
16120 Ensures that both the output dimensions, width and height, are divisible by the
16121 given integer when used together with @option{force_original_aspect_ratio}. This
16122 works similar to using @code{-n} in the @option{w} and @option{h} options.
16123
16124 This option respects the value set for @option{force_original_aspect_ratio},
16125 increasing or decreasing the resolution accordingly. The video's aspect ratio
16126 may be slightly modified.
16127
16128 This option can be handy if you need to have a video fit within or exceed
16129 a defined resolution using @option{force_original_aspect_ratio} but also have
16130 encoder restrictions on width or height divisibility.
16131
16132 @end table
16133
16134 The values of the @option{w} and @option{h} options are expressions
16135 containing the following constants:
16136
16137 @table @var
16138 @item in_w
16139 @item in_h
16140 The input width and height
16141
16142 @item iw
16143 @item ih
16144 These are the same as @var{in_w} and @var{in_h}.
16145
16146 @item out_w
16147 @item out_h
16148 The output (scaled) width and height
16149
16150 @item ow
16151 @item oh
16152 These are the same as @var{out_w} and @var{out_h}
16153
16154 @item a
16155 The same as @var{iw} / @var{ih}
16156
16157 @item sar
16158 input sample aspect ratio
16159
16160 @item dar
16161 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16162
16163 @item hsub
16164 @item vsub
16165 horizontal and vertical input chroma subsample values. For example for the
16166 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16167
16168 @item ohsub
16169 @item ovsub
16170 horizontal and vertical output chroma subsample values. For example for the
16171 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16172
16173 @item n
16174 The (sequential) number of the input frame, starting from 0.
16175 Only available with @code{eval=frame}.
16176
16177 @item t
16178 The presentation timestamp of the input frame, expressed as a number of
16179 seconds. Only available with @code{eval=frame}.
16180
16181 @item pos
16182 The position (byte offset) of the frame in the input stream, or NaN if
16183 this information is unavailable and/or meaningless (for example in case of synthetic video).
16184 Only available with @code{eval=frame}.
16185 @end table
16186
16187 @subsection Examples
16188
16189 @itemize
16190 @item
16191 Scale the input video to a size of 200x100
16192 @example
16193 scale=w=200:h=100
16194 @end example
16195
16196 This is equivalent to:
16197 @example
16198 scale=200:100
16199 @end example
16200
16201 or:
16202 @example
16203 scale=200x100
16204 @end example
16205
16206 @item
16207 Specify a size abbreviation for the output size:
16208 @example
16209 scale=qcif
16210 @end example
16211
16212 which can also be written as:
16213 @example
16214 scale=size=qcif
16215 @end example
16216
16217 @item
16218 Scale the input to 2x:
16219 @example
16220 scale=w=2*iw:h=2*ih
16221 @end example
16222
16223 @item
16224 The above is the same as:
16225 @example
16226 scale=2*in_w:2*in_h
16227 @end example
16228
16229 @item
16230 Scale the input to 2x with forced interlaced scaling:
16231 @example
16232 scale=2*iw:2*ih:interl=1
16233 @end example
16234
16235 @item
16236 Scale the input to half size:
16237 @example
16238 scale=w=iw/2:h=ih/2
16239 @end example
16240
16241 @item
16242 Increase the width, and set the height to the same size:
16243 @example
16244 scale=3/2*iw:ow
16245 @end example
16246
16247 @item
16248 Seek Greek harmony:
16249 @example
16250 scale=iw:1/PHI*iw
16251 scale=ih*PHI:ih
16252 @end example
16253
16254 @item
16255 Increase the height, and set the width to 3/2 of the height:
16256 @example
16257 scale=w=3/2*oh:h=3/5*ih
16258 @end example
16259
16260 @item
16261 Increase the size, making the size a multiple of the chroma
16262 subsample values:
16263 @example
16264 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
16265 @end example
16266
16267 @item
16268 Increase the width to a maximum of 500 pixels,
16269 keeping the same aspect ratio as the input:
16270 @example
16271 scale=w='min(500\, iw*3/2):h=-1'
16272 @end example
16273
16274 @item
16275 Make pixels square by combining scale and setsar:
16276 @example
16277 scale='trunc(ih*dar):ih',setsar=1/1
16278 @end example
16279
16280 @item
16281 Make pixels square by combining scale and setsar,
16282 making sure the resulting resolution is even (required by some codecs):
16283 @example
16284 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
16285 @end example
16286 @end itemize
16287
16288 @subsection Commands
16289
16290 This filter supports the following commands:
16291 @table @option
16292 @item width, w
16293 @item height, h
16294 Set the output video dimension expression.
16295 The command accepts the same syntax of the corresponding option.
16296
16297 If the specified expression is not valid, it is kept at its current
16298 value.
16299 @end table
16300
16301 @section scale_npp
16302
16303 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
16304 format conversion on CUDA video frames. Setting the output width and height
16305 works in the same way as for the @var{scale} filter.
16306
16307 The following additional options are accepted:
16308 @table @option
16309 @item format
16310 The pixel format of the output CUDA frames. If set to the string "same" (the
16311 default), the input format will be kept. Note that automatic format negotiation
16312 and conversion is not yet supported for hardware frames
16313
16314 @item interp_algo
16315 The interpolation algorithm used for resizing. One of the following:
16316 @table @option
16317 @item nn
16318 Nearest neighbour.
16319
16320 @item linear
16321 @item cubic
16322 @item cubic2p_bspline
16323 2-parameter cubic (B=1, C=0)
16324
16325 @item cubic2p_catmullrom
16326 2-parameter cubic (B=0, C=1/2)
16327
16328 @item cubic2p_b05c03
16329 2-parameter cubic (B=1/2, C=3/10)
16330
16331 @item super
16332 Supersampling
16333
16334 @item lanczos
16335 @end table
16336
16337 @item force_original_aspect_ratio
16338 Enable decreasing or increasing output video width or height if necessary to
16339 keep the original aspect ratio. Possible values:
16340
16341 @table @samp
16342 @item disable
16343 Scale the video as specified and disable this feature.
16344
16345 @item decrease
16346 The output video dimensions will automatically be decreased if needed.
16347
16348 @item increase
16349 The output video dimensions will automatically be increased if needed.
16350
16351 @end table
16352
16353 One useful instance of this option is that when you know a specific device's
16354 maximum allowed resolution, you can use this to limit the output video to
16355 that, while retaining the aspect ratio. For example, device A allows
16356 1280x720 playback, and your video is 1920x800. Using this option (set it to
16357 decrease) and specifying 1280x720 to the command line makes the output
16358 1280x533.
16359
16360 Please note that this is a different thing than specifying -1 for @option{w}
16361 or @option{h}, you still need to specify the output resolution for this option
16362 to work.
16363
16364 @item force_divisible_by
16365 Ensures that both the output dimensions, width and height, are divisible by the
16366 given integer when used together with @option{force_original_aspect_ratio}. This
16367 works similar to using @code{-n} in the @option{w} and @option{h} options.
16368
16369 This option respects the value set for @option{force_original_aspect_ratio},
16370 increasing or decreasing the resolution accordingly. The video's aspect ratio
16371 may be slightly modified.
16372
16373 This option can be handy if you need to have a video fit within or exceed
16374 a defined resolution using @option{force_original_aspect_ratio} but also have
16375 encoder restrictions on width or height divisibility.
16376
16377 @end table
16378
16379 @section scale2ref
16380
16381 Scale (resize) the input video, based on a reference video.
16382
16383 See the scale filter for available options, scale2ref supports the same but
16384 uses the reference video instead of the main input as basis. scale2ref also
16385 supports the following additional constants for the @option{w} and
16386 @option{h} options:
16387
16388 @table @var
16389 @item main_w
16390 @item main_h
16391 The main input video's width and height
16392
16393 @item main_a
16394 The same as @var{main_w} / @var{main_h}
16395
16396 @item main_sar
16397 The main input video's sample aspect ratio
16398
16399 @item main_dar, mdar
16400 The main input video's display aspect ratio. Calculated from
16401 @code{(main_w / main_h) * main_sar}.
16402
16403 @item main_hsub
16404 @item main_vsub
16405 The main input video's horizontal and vertical chroma subsample values.
16406 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
16407 is 1.
16408
16409 @item main_n
16410 The (sequential) number of the main input frame, starting from 0.
16411 Only available with @code{eval=frame}.
16412
16413 @item main_t
16414 The presentation timestamp of the main input frame, expressed as a number of
16415 seconds. Only available with @code{eval=frame}.
16416
16417 @item main_pos
16418 The position (byte offset) of the frame in the main input stream, or NaN if
16419 this information is unavailable and/or meaningless (for example in case of synthetic video).
16420 Only available with @code{eval=frame}.
16421 @end table
16422
16423 @subsection Examples
16424
16425 @itemize
16426 @item
16427 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
16428 @example
16429 'scale2ref[b][a];[a][b]overlay'
16430 @end example
16431
16432 @item
16433 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
16434 @example
16435 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
16436 @end example
16437 @end itemize
16438
16439 @subsection Commands
16440
16441 This filter supports the following commands:
16442 @table @option
16443 @item width, w
16444 @item height, h
16445 Set the output video dimension expression.
16446 The command accepts the same syntax of the corresponding option.
16447
16448 If the specified expression is not valid, it is kept at its current
16449 value.
16450 @end table
16451
16452 @section scroll
16453 Scroll input video horizontally and/or vertically by constant speed.
16454
16455 The filter accepts the following options:
16456 @table @option
16457 @item horizontal, h
16458 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
16459 Negative values changes scrolling direction.
16460
16461 @item vertical, v
16462 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
16463 Negative values changes scrolling direction.
16464
16465 @item hpos
16466 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
16467
16468 @item vpos
16469 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
16470 @end table
16471
16472 @subsection Commands
16473
16474 This filter supports the following @ref{commands}:
16475 @table @option
16476 @item horizontal, h
16477 Set the horizontal scrolling speed.
16478 @item vertical, v
16479 Set the vertical scrolling speed.
16480 @end table
16481
16482 @anchor{selectivecolor}
16483 @section selectivecolor
16484
16485 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
16486 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
16487 by the "purity" of the color (that is, how saturated it already is).
16488
16489 This filter is similar to the Adobe Photoshop Selective Color tool.
16490
16491 The filter accepts the following options:
16492
16493 @table @option
16494 @item correction_method
16495 Select color correction method.
16496
16497 Available values are:
16498 @table @samp
16499 @item absolute
16500 Specified adjustments are applied "as-is" (added/subtracted to original pixel
16501 component value).
16502 @item relative
16503 Specified adjustments are relative to the original component value.
16504 @end table
16505 Default is @code{absolute}.
16506 @item reds
16507 Adjustments for red pixels (pixels where the red component is the maximum)
16508 @item yellows
16509 Adjustments for yellow pixels (pixels where the blue component is the minimum)
16510 @item greens
16511 Adjustments for green pixels (pixels where the green component is the maximum)
16512 @item cyans
16513 Adjustments for cyan pixels (pixels where the red component is the minimum)
16514 @item blues
16515 Adjustments for blue pixels (pixels where the blue component is the maximum)
16516 @item magentas
16517 Adjustments for magenta pixels (pixels where the green component is the minimum)
16518 @item whites
16519 Adjustments for white pixels (pixels where all components are greater than 128)
16520 @item neutrals
16521 Adjustments for all pixels except pure black and pure white
16522 @item blacks
16523 Adjustments for black pixels (pixels where all components are lesser than 128)
16524 @item psfile
16525 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
16526 @end table
16527
16528 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
16529 4 space separated floating point adjustment values in the [-1,1] range,
16530 respectively to adjust the amount of cyan, magenta, yellow and black for the
16531 pixels of its range.
16532
16533 @subsection Examples
16534
16535 @itemize
16536 @item
16537 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
16538 increase magenta by 27% in blue areas:
16539 @example
16540 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
16541 @end example
16542
16543 @item
16544 Use a Photoshop selective color preset:
16545 @example
16546 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
16547 @end example
16548 @end itemize
16549
16550 @anchor{separatefields}
16551 @section separatefields
16552
16553 The @code{separatefields} takes a frame-based video input and splits
16554 each frame into its components fields, producing a new half height clip
16555 with twice the frame rate and twice the frame count.
16556
16557 This filter use field-dominance information in frame to decide which
16558 of each pair of fields to place first in the output.
16559 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
16560
16561 @section setdar, setsar
16562
16563 The @code{setdar} filter sets the Display Aspect Ratio for the filter
16564 output video.
16565
16566 This is done by changing the specified Sample (aka Pixel) Aspect
16567 Ratio, according to the following equation:
16568 @example
16569 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
16570 @end example
16571
16572 Keep in mind that the @code{setdar} filter does not modify the pixel
16573 dimensions of the video frame. Also, the display aspect ratio set by
16574 this filter may be changed by later filters in the filterchain,
16575 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
16576 applied.
16577
16578 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
16579 the filter output video.
16580
16581 Note that as a consequence of the application of this filter, the
16582 output display aspect ratio will change according to the equation
16583 above.
16584
16585 Keep in mind that the sample aspect ratio set by the @code{setsar}
16586 filter may be changed by later filters in the filterchain, e.g. if
16587 another "setsar" or a "setdar" filter is applied.
16588
16589 It accepts the following parameters:
16590
16591 @table @option
16592 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
16593 Set the aspect ratio used by the filter.
16594
16595 The parameter can be a floating point number string, an expression, or
16596 a string of the form @var{num}:@var{den}, where @var{num} and
16597 @var{den} are the numerator and denominator of the aspect ratio. If
16598 the parameter is not specified, it is assumed the value "0".
16599 In case the form "@var{num}:@var{den}" is used, the @code{:} character
16600 should be escaped.
16601
16602 @item max
16603 Set the maximum integer value to use for expressing numerator and
16604 denominator when reducing the expressed aspect ratio to a rational.
16605 Default value is @code{100}.
16606
16607 @end table
16608
16609 The parameter @var{sar} is an expression containing
16610 the following constants:
16611
16612 @table @option
16613 @item E, PI, PHI
16614 These are approximated values for the mathematical constants e
16615 (Euler's number), pi (Greek pi), and phi (the golden ratio).
16616
16617 @item w, h
16618 The input width and height.
16619
16620 @item a
16621 These are the same as @var{w} / @var{h}.
16622
16623 @item sar
16624 The input sample aspect ratio.
16625
16626 @item dar
16627 The input display aspect ratio. It is the same as
16628 (@var{w} / @var{h}) * @var{sar}.
16629
16630 @item hsub, vsub
16631 Horizontal and vertical chroma subsample values. For example, for the
16632 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16633 @end table
16634
16635 @subsection Examples
16636
16637 @itemize
16638
16639 @item
16640 To change the display aspect ratio to 16:9, specify one of the following:
16641 @example
16642 setdar=dar=1.77777
16643 setdar=dar=16/9
16644 @end example
16645
16646 @item
16647 To change the sample aspect ratio to 10:11, specify:
16648 @example
16649 setsar=sar=10/11
16650 @end example
16651
16652 @item
16653 To set a display aspect ratio of 16:9, and specify a maximum integer value of
16654 1000 in the aspect ratio reduction, use the command:
16655 @example
16656 setdar=ratio=16/9:max=1000
16657 @end example
16658
16659 @end itemize
16660
16661 @anchor{setfield}
16662 @section setfield
16663
16664 Force field for the output video frame.
16665
16666 The @code{setfield} filter marks the interlace type field 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 following filters (e.g. @code{fieldorder} or @code{yadif}).
16670
16671 The filter accepts the following options:
16672
16673 @table @option
16674
16675 @item mode
16676 Available values are:
16677
16678 @table @samp
16679 @item auto
16680 Keep the same field property.
16681
16682 @item bff
16683 Mark the frame as bottom-field-first.
16684
16685 @item tff
16686 Mark the frame as top-field-first.
16687
16688 @item prog
16689 Mark the frame as progressive.
16690 @end table
16691 @end table
16692
16693 @anchor{setparams}
16694 @section setparams
16695
16696 Force frame parameter for the output video frame.
16697
16698 The @code{setparams} filter marks interlace and color range for the
16699 output frames. It does not change the input frame, but only sets the
16700 corresponding property, which affects how the frame is treated by
16701 filters/encoders.
16702
16703 @table @option
16704 @item field_mode
16705 Available values are:
16706
16707 @table @samp
16708 @item auto
16709 Keep the same field property (default).
16710
16711 @item bff
16712 Mark the frame as bottom-field-first.
16713
16714 @item tff
16715 Mark the frame as top-field-first.
16716
16717 @item prog
16718 Mark the frame as progressive.
16719 @end table
16720
16721 @item range
16722 Available values are:
16723
16724 @table @samp
16725 @item auto
16726 Keep the same color range property (default).
16727
16728 @item unspecified, unknown
16729 Mark the frame as unspecified color range.
16730
16731 @item limited, tv, mpeg
16732 Mark the frame as limited range.
16733
16734 @item full, pc, jpeg
16735 Mark the frame as full range.
16736 @end table
16737
16738 @item color_primaries
16739 Set the color primaries.
16740 Available values are:
16741
16742 @table @samp
16743 @item auto
16744 Keep the same color primaries property (default).
16745
16746 @item bt709
16747 @item unknown
16748 @item bt470m
16749 @item bt470bg
16750 @item smpte170m
16751 @item smpte240m
16752 @item film
16753 @item bt2020
16754 @item smpte428
16755 @item smpte431
16756 @item smpte432
16757 @item jedec-p22
16758 @end table
16759
16760 @item color_trc
16761 Set the color transfer.
16762 Available values are:
16763
16764 @table @samp
16765 @item auto
16766 Keep the same color trc property (default).
16767
16768 @item bt709
16769 @item unknown
16770 @item bt470m
16771 @item bt470bg
16772 @item smpte170m
16773 @item smpte240m
16774 @item linear
16775 @item log100
16776 @item log316
16777 @item iec61966-2-4
16778 @item bt1361e
16779 @item iec61966-2-1
16780 @item bt2020-10
16781 @item bt2020-12
16782 @item smpte2084
16783 @item smpte428
16784 @item arib-std-b67
16785 @end table
16786
16787 @item colorspace
16788 Set the colorspace.
16789 Available values are:
16790
16791 @table @samp
16792 @item auto
16793 Keep the same colorspace property (default).
16794
16795 @item gbr
16796 @item bt709
16797 @item unknown
16798 @item fcc
16799 @item bt470bg
16800 @item smpte170m
16801 @item smpte240m
16802 @item ycgco
16803 @item bt2020nc
16804 @item bt2020c
16805 @item smpte2085
16806 @item chroma-derived-nc
16807 @item chroma-derived-c
16808 @item ictcp
16809 @end table
16810 @end table
16811
16812 @section showinfo
16813
16814 Show a line containing various information for each input video frame.
16815 The input video is not modified.
16816
16817 This filter supports the following options:
16818
16819 @table @option
16820 @item checksum
16821 Calculate checksums of each plane. By default enabled.
16822 @end table
16823
16824 The shown line contains a sequence of key/value pairs of the form
16825 @var{key}:@var{value}.
16826
16827 The following values are shown in the output:
16828
16829 @table @option
16830 @item n
16831 The (sequential) number of the input frame, starting from 0.
16832
16833 @item pts
16834 The Presentation TimeStamp of the input frame, expressed as a number of
16835 time base units. The time base unit depends on the filter input pad.
16836
16837 @item pts_time
16838 The Presentation TimeStamp of the input frame, expressed as a number of
16839 seconds.
16840
16841 @item pos
16842 The position of the frame in the input stream, or -1 if this information is
16843 unavailable and/or meaningless (for example in case of synthetic video).
16844
16845 @item fmt
16846 The pixel format name.
16847
16848 @item sar
16849 The sample aspect ratio of the input frame, expressed in the form
16850 @var{num}/@var{den}.
16851
16852 @item s
16853 The size of the input frame. For the syntax of this option, check the
16854 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16855
16856 @item i
16857 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
16858 for bottom field first).
16859
16860 @item iskey
16861 This is 1 if the frame is a key frame, 0 otherwise.
16862
16863 @item type
16864 The picture type of the input frame ("I" for an I-frame, "P" for a
16865 P-frame, "B" for a B-frame, or "?" for an unknown type).
16866 Also refer to the documentation of the @code{AVPictureType} enum and of
16867 the @code{av_get_picture_type_char} function defined in
16868 @file{libavutil/avutil.h}.
16869
16870 @item checksum
16871 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
16872
16873 @item plane_checksum
16874 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
16875 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
16876
16877 @item mean
16878 The mean value of pixels in each plane of the input frame, expressed in the form
16879 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
16880
16881 @item stdev
16882 The standard deviation of pixel values in each plane of the input frame, expressed
16883 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
16884
16885 @end table
16886
16887 @section showpalette
16888
16889 Displays the 256 colors palette of each frame. This filter is only relevant for
16890 @var{pal8} pixel format frames.
16891
16892 It accepts the following option:
16893
16894 @table @option
16895 @item s
16896 Set the size of the box used to represent one palette color entry. Default is
16897 @code{30} (for a @code{30x30} pixel box).
16898 @end table
16899
16900 @section shuffleframes
16901
16902 Reorder and/or duplicate and/or drop video frames.
16903
16904 It accepts the following parameters:
16905
16906 @table @option
16907 @item mapping
16908 Set the destination indexes of input frames.
16909 This is space or '|' separated list of indexes that maps input frames to output
16910 frames. Number of indexes also sets maximal value that each index may have.
16911 '-1' index have special meaning and that is to drop frame.
16912 @end table
16913
16914 The first frame has the index 0. The default is to keep the input unchanged.
16915
16916 @subsection Examples
16917
16918 @itemize
16919 @item
16920 Swap second and third frame of every three frames of the input:
16921 @example
16922 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
16923 @end example
16924
16925 @item
16926 Swap 10th and 1st frame of every ten frames of the input:
16927 @example
16928 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
16929 @end example
16930 @end itemize
16931
16932 @section shuffleplanes
16933
16934 Reorder and/or duplicate video planes.
16935
16936 It accepts the following parameters:
16937
16938 @table @option
16939
16940 @item map0
16941 The index of the input plane to be used as the first output plane.
16942
16943 @item map1
16944 The index of the input plane to be used as the second output plane.
16945
16946 @item map2
16947 The index of the input plane to be used as the third output plane.
16948
16949 @item map3
16950 The index of the input plane to be used as the fourth output plane.
16951
16952 @end table
16953
16954 The first plane has the index 0. The default is to keep the input unchanged.
16955
16956 @subsection Examples
16957
16958 @itemize
16959 @item
16960 Swap the second and third planes of the input:
16961 @example
16962 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
16963 @end example
16964 @end itemize
16965
16966 @anchor{signalstats}
16967 @section signalstats
16968 Evaluate various visual metrics that assist in determining issues associated
16969 with the digitization of analog video media.
16970
16971 By default the filter will log these metadata values:
16972
16973 @table @option
16974 @item YMIN
16975 Display the minimal Y value contained within the input frame. Expressed in
16976 range of [0-255].
16977
16978 @item YLOW
16979 Display the Y value at the 10% percentile within the input frame. Expressed in
16980 range of [0-255].
16981
16982 @item YAVG
16983 Display the average Y value within the input frame. Expressed in range of
16984 [0-255].
16985
16986 @item YHIGH
16987 Display the Y value at the 90% percentile within the input frame. Expressed in
16988 range of [0-255].
16989
16990 @item YMAX
16991 Display the maximum Y value contained within the input frame. Expressed in
16992 range of [0-255].
16993
16994 @item UMIN
16995 Display the minimal U value contained within the input frame. Expressed in
16996 range of [0-255].
16997
16998 @item ULOW
16999 Display the U value at the 10% percentile within the input frame. Expressed in
17000 range of [0-255].
17001
17002 @item UAVG
17003 Display the average U value within the input frame. Expressed in range of
17004 [0-255].
17005
17006 @item UHIGH
17007 Display the U value at the 90% percentile within the input frame. Expressed in
17008 range of [0-255].
17009
17010 @item UMAX
17011 Display the maximum U value contained within the input frame. Expressed in
17012 range of [0-255].
17013
17014 @item VMIN
17015 Display the minimal V value contained within the input frame. Expressed in
17016 range of [0-255].
17017
17018 @item VLOW
17019 Display the V value at the 10% percentile within the input frame. Expressed in
17020 range of [0-255].
17021
17022 @item VAVG
17023 Display the average V value within the input frame. Expressed in range of
17024 [0-255].
17025
17026 @item VHIGH
17027 Display the V value at the 90% percentile within the input frame. Expressed in
17028 range of [0-255].
17029
17030 @item VMAX
17031 Display the maximum V value contained within the input frame. Expressed in
17032 range of [0-255].
17033
17034 @item SATMIN
17035 Display the minimal saturation value contained within the input frame.
17036 Expressed in range of [0-~181.02].
17037
17038 @item SATLOW
17039 Display the saturation value at the 10% percentile within the input frame.
17040 Expressed in range of [0-~181.02].
17041
17042 @item SATAVG
17043 Display the average saturation value within the input frame. Expressed in range
17044 of [0-~181.02].
17045
17046 @item SATHIGH
17047 Display the saturation value at the 90% percentile within the input frame.
17048 Expressed in range of [0-~181.02].
17049
17050 @item SATMAX
17051 Display the maximum saturation value contained within the input frame.
17052 Expressed in range of [0-~181.02].
17053
17054 @item HUEMED
17055 Display the median value for hue within the input frame. Expressed in range of
17056 [0-360].
17057
17058 @item HUEAVG
17059 Display the average value for hue within the input frame. Expressed in range of
17060 [0-360].
17061
17062 @item YDIF
17063 Display the average of sample value difference between all values of the Y
17064 plane in the current frame and corresponding values of the previous input frame.
17065 Expressed in range of [0-255].
17066
17067 @item UDIF
17068 Display the average of sample value difference between all values of the U
17069 plane in the current frame and corresponding values of the previous input frame.
17070 Expressed in range of [0-255].
17071
17072 @item VDIF
17073 Display the average of sample value difference between all values of the V
17074 plane in the current frame and corresponding values of the previous input frame.
17075 Expressed in range of [0-255].
17076
17077 @item YBITDEPTH
17078 Display bit depth of Y plane in current frame.
17079 Expressed in range of [0-16].
17080
17081 @item UBITDEPTH
17082 Display bit depth of U plane in current frame.
17083 Expressed in range of [0-16].
17084
17085 @item VBITDEPTH
17086 Display bit depth of V plane in current frame.
17087 Expressed in range of [0-16].
17088 @end table
17089
17090 The filter accepts the following options:
17091
17092 @table @option
17093 @item stat
17094 @item out
17095
17096 @option{stat} specify an additional form of image analysis.
17097 @option{out} output video with the specified type of pixel highlighted.
17098
17099 Both options accept the following values:
17100
17101 @table @samp
17102 @item tout
17103 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
17104 unlike the neighboring pixels of the same field. Examples of temporal outliers
17105 include the results of video dropouts, head clogs, or tape tracking issues.
17106
17107 @item vrep
17108 Identify @var{vertical line repetition}. Vertical line repetition includes
17109 similar rows of pixels within a frame. In born-digital video vertical line
17110 repetition is common, but this pattern is uncommon in video digitized from an
17111 analog source. When it occurs in video that results from the digitization of an
17112 analog source it can indicate concealment from a dropout compensator.
17113
17114 @item brng
17115 Identify pixels that fall outside of legal broadcast range.
17116 @end table
17117
17118 @item color, c
17119 Set the highlight color for the @option{out} option. The default color is
17120 yellow.
17121 @end table
17122
17123 @subsection Examples
17124
17125 @itemize
17126 @item
17127 Output data of various video metrics:
17128 @example
17129 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
17130 @end example
17131
17132 @item
17133 Output specific data about the minimum and maximum values of the Y plane per frame:
17134 @example
17135 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
17136 @end example
17137
17138 @item
17139 Playback video while highlighting pixels that are outside of broadcast range in red.
17140 @example
17141 ffplay example.mov -vf signalstats="out=brng:color=red"
17142 @end example
17143
17144 @item
17145 Playback video with signalstats metadata drawn over the frame.
17146 @example
17147 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
17148 @end example
17149
17150 The contents of signalstat_drawtext.txt used in the command are:
17151 @example
17152 time %@{pts:hms@}
17153 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
17154 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
17155 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
17156 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
17157
17158 @end example
17159 @end itemize
17160
17161 @anchor{signature}
17162 @section signature
17163
17164 Calculates the MPEG-7 Video Signature. The filter can handle more than one
17165 input. In this case the matching between the inputs can be calculated additionally.
17166 The filter always passes through the first input. The signature of each stream can
17167 be written into a file.
17168
17169 It accepts the following options:
17170
17171 @table @option
17172 @item detectmode
17173 Enable or disable the matching process.
17174
17175 Available values are:
17176
17177 @table @samp
17178 @item off
17179 Disable the calculation of a matching (default).
17180 @item full
17181 Calculate the matching for the whole video and output whether the whole video
17182 matches or only parts.
17183 @item fast
17184 Calculate only until a matching is found or the video ends. Should be faster in
17185 some cases.
17186 @end table
17187
17188 @item nb_inputs
17189 Set the number of inputs. The option value must be a non negative integer.
17190 Default value is 1.
17191
17192 @item filename
17193 Set the path to which the output is written. If there is more than one input,
17194 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
17195 integer), that will be replaced with the input number. If no filename is
17196 specified, no output will be written. This is the default.
17197
17198 @item format
17199 Choose the output format.
17200
17201 Available values are:
17202
17203 @table @samp
17204 @item binary
17205 Use the specified binary representation (default).
17206 @item xml
17207 Use the specified xml representation.
17208 @end table
17209
17210 @item th_d
17211 Set threshold to detect one word as similar. The option value must be an integer
17212 greater than zero. The default value is 9000.
17213
17214 @item th_dc
17215 Set threshold to detect all words as similar. The option value must be an integer
17216 greater than zero. The default value is 60000.
17217
17218 @item th_xh
17219 Set threshold to detect frames as similar. The option value must be an integer
17220 greater than zero. The default value is 116.
17221
17222 @item th_di
17223 Set the minimum length of a sequence in frames to recognize it as matching
17224 sequence. The option value must be a non negative integer value.
17225 The default value is 0.
17226
17227 @item th_it
17228 Set the minimum relation, that matching frames to all frames must have.
17229 The option value must be a double value between 0 and 1. The default value is 0.5.
17230 @end table
17231
17232 @subsection Examples
17233
17234 @itemize
17235 @item
17236 To calculate the signature of an input video and store it in signature.bin:
17237 @example
17238 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
17239 @end example
17240
17241 @item
17242 To detect whether two videos match and store the signatures in XML format in
17243 signature0.xml and signature1.xml:
17244 @example
17245 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 -
17246 @end example
17247
17248 @end itemize
17249
17250 @anchor{smartblur}
17251 @section smartblur
17252
17253 Blur the input video without impacting the outlines.
17254
17255 It accepts the following options:
17256
17257 @table @option
17258 @item luma_radius, lr
17259 Set the luma radius. The option value must be a float number in
17260 the range [0.1,5.0] that specifies the variance of the gaussian filter
17261 used to blur the image (slower if larger). Default value is 1.0.
17262
17263 @item luma_strength, ls
17264 Set the luma strength. The option value must be a float number
17265 in the range [-1.0,1.0] that configures the blurring. A value included
17266 in [0.0,1.0] will blur the image whereas a value included in
17267 [-1.0,0.0] will sharpen the image. Default value is 1.0.
17268
17269 @item luma_threshold, lt
17270 Set the luma threshold used as a coefficient to determine
17271 whether a pixel should be blurred or not. The option value must be an
17272 integer in the range [-30,30]. A value of 0 will filter all the image,
17273 a value included in [0,30] will filter flat areas and a value included
17274 in [-30,0] will filter edges. Default value is 0.
17275
17276 @item chroma_radius, cr
17277 Set the chroma radius. The option value must be a float number in
17278 the range [0.1,5.0] that specifies the variance of the gaussian filter
17279 used to blur the image (slower if larger). Default value is @option{luma_radius}.
17280
17281 @item chroma_strength, cs
17282 Set the chroma strength. The option value must be a float number
17283 in the range [-1.0,1.0] that configures the blurring. A value included
17284 in [0.0,1.0] will blur the image whereas a value included in
17285 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
17286
17287 @item chroma_threshold, ct
17288 Set the chroma threshold used as a coefficient to determine
17289 whether a pixel should be blurred or not. The option value must be an
17290 integer in the range [-30,30]. A value of 0 will filter all the image,
17291 a value included in [0,30] will filter flat areas and a value included
17292 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
17293 @end table
17294
17295 If a chroma option is not explicitly set, the corresponding luma value
17296 is set.
17297
17298 @section sobel
17299 Apply sobel operator to input video stream.
17300
17301 The filter accepts the following option:
17302
17303 @table @option
17304 @item planes
17305 Set which planes will be processed, unprocessed planes will be copied.
17306 By default value 0xf, all planes will be processed.
17307
17308 @item scale
17309 Set value which will be multiplied with filtered result.
17310
17311 @item delta
17312 Set value which will be added to filtered result.
17313 @end table
17314
17315 @anchor{spp}
17316 @section spp
17317
17318 Apply a simple postprocessing filter that compresses and decompresses the image
17319 at several (or - in the case of @option{quality} level @code{6} - all) shifts
17320 and average the results.
17321
17322 The filter accepts the following options:
17323
17324 @table @option
17325 @item quality
17326 Set quality. This option defines the number of levels for averaging. It accepts
17327 an integer in the range 0-6. If set to @code{0}, the filter will have no
17328 effect. A value of @code{6} means the higher quality. For each increment of
17329 that value the speed drops by a factor of approximately 2.  Default value is
17330 @code{3}.
17331
17332 @item qp
17333 Force a constant quantization parameter. If not set, the filter will use the QP
17334 from the video stream (if available).
17335
17336 @item mode
17337 Set thresholding mode. Available modes are:
17338
17339 @table @samp
17340 @item hard
17341 Set hard thresholding (default).
17342 @item soft
17343 Set soft thresholding (better de-ringing effect, but likely blurrier).
17344 @end table
17345
17346 @item use_bframe_qp
17347 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
17348 option may cause flicker since the B-Frames have often larger QP. Default is
17349 @code{0} (not enabled).
17350 @end table
17351
17352 @subsection Commands
17353
17354 This filter supports the following commands:
17355 @table @option
17356 @item quality, level
17357 Set quality level. The value @code{max} can be used to set the maximum level,
17358 currently @code{6}.
17359 @end table
17360
17361 @anchor{sr}
17362 @section sr
17363
17364 Scale the input by applying one of the super-resolution methods based on
17365 convolutional neural networks. Supported models:
17366
17367 @itemize
17368 @item
17369 Super-Resolution Convolutional Neural Network model (SRCNN).
17370 See @url{https://arxiv.org/abs/1501.00092}.
17371
17372 @item
17373 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
17374 See @url{https://arxiv.org/abs/1609.05158}.
17375 @end itemize
17376
17377 Training scripts as well as scripts for model file (.pb) saving can be found at
17378 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
17379 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
17380
17381 Native model files (.model) can be generated from TensorFlow model
17382 files (.pb) by using tools/python/convert.py
17383
17384 The filter accepts the following options:
17385
17386 @table @option
17387 @item dnn_backend
17388 Specify which DNN backend to use for model loading and execution. This option accepts
17389 the following values:
17390
17391 @table @samp
17392 @item native
17393 Native implementation of DNN loading and execution.
17394
17395 @item tensorflow
17396 TensorFlow backend. To enable this backend you
17397 need to install the TensorFlow for C library (see
17398 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
17399 @code{--enable-libtensorflow}
17400 @end table
17401
17402 Default value is @samp{native}.
17403
17404 @item model
17405 Set path to model file specifying network architecture and its parameters.
17406 Note that different backends use different file formats. TensorFlow backend
17407 can load files for both formats, while native backend can load files for only
17408 its format.
17409
17410 @item scale_factor
17411 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
17412 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
17413 input upscaled using bicubic upscaling with proper scale factor.
17414 @end table
17415
17416 This feature can also be finished with @ref{dnn_processing} filter.
17417
17418 @section ssim
17419
17420 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
17421
17422 This filter takes in input two input videos, the first input is
17423 considered the "main" source and is passed unchanged to the
17424 output. The second input is used as a "reference" video for computing
17425 the SSIM.
17426
17427 Both video inputs must have the same resolution and pixel format for
17428 this filter to work correctly. Also it assumes that both inputs
17429 have the same number of frames, which are compared one by one.
17430
17431 The filter stores the calculated SSIM of each frame.
17432
17433 The description of the accepted parameters follows.
17434
17435 @table @option
17436 @item stats_file, f
17437 If specified the filter will use the named file to save the SSIM of
17438 each individual frame. When filename equals "-" the data is sent to
17439 standard output.
17440 @end table
17441
17442 The file printed if @var{stats_file} is selected, contains a sequence of
17443 key/value pairs of the form @var{key}:@var{value} for each compared
17444 couple of frames.
17445
17446 A description of each shown parameter follows:
17447
17448 @table @option
17449 @item n
17450 sequential number of the input frame, starting from 1
17451
17452 @item Y, U, V, R, G, B
17453 SSIM of the compared frames for the component specified by the suffix.
17454
17455 @item All
17456 SSIM of the compared frames for the whole frame.
17457
17458 @item dB
17459 Same as above but in dB representation.
17460 @end table
17461
17462 This filter also supports the @ref{framesync} options.
17463
17464 @subsection Examples
17465 @itemize
17466 @item
17467 For example:
17468 @example
17469 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
17470 [main][ref] ssim="stats_file=stats.log" [out]
17471 @end example
17472
17473 On this example the input file being processed is compared with the
17474 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
17475 is stored in @file{stats.log}.
17476
17477 @item
17478 Another example with both psnr and ssim at same time:
17479 @example
17480 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
17481 @end example
17482
17483 @item
17484 Another example with different containers:
17485 @example
17486 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 -
17487 @end example
17488 @end itemize
17489
17490 @section stereo3d
17491
17492 Convert between different stereoscopic image formats.
17493
17494 The filters accept the following options:
17495
17496 @table @option
17497 @item in
17498 Set stereoscopic image format of input.
17499
17500 Available values for input image formats are:
17501 @table @samp
17502 @item sbsl
17503 side by side parallel (left eye left, right eye right)
17504
17505 @item sbsr
17506 side by side crosseye (right eye left, left eye right)
17507
17508 @item sbs2l
17509 side by side parallel with half width resolution
17510 (left eye left, right eye right)
17511
17512 @item sbs2r
17513 side by side crosseye with half width resolution
17514 (right eye left, left eye right)
17515
17516 @item abl
17517 @item tbl
17518 above-below (left eye above, right eye below)
17519
17520 @item abr
17521 @item tbr
17522 above-below (right eye above, left eye below)
17523
17524 @item ab2l
17525 @item tb2l
17526 above-below with half height resolution
17527 (left eye above, right eye below)
17528
17529 @item ab2r
17530 @item tb2r
17531 above-below with half height resolution
17532 (right eye above, left eye below)
17533
17534 @item al
17535 alternating frames (left eye first, right eye second)
17536
17537 @item ar
17538 alternating frames (right eye first, left eye second)
17539
17540 @item irl
17541 interleaved rows (left eye has top row, right eye starts on next row)
17542
17543 @item irr
17544 interleaved rows (right eye has top row, left eye starts on next row)
17545
17546 @item icl
17547 interleaved columns, left eye first
17548
17549 @item icr
17550 interleaved columns, right eye first
17551
17552 Default value is @samp{sbsl}.
17553 @end table
17554
17555 @item out
17556 Set stereoscopic image format of output.
17557
17558 @table @samp
17559 @item sbsl
17560 side by side parallel (left eye left, right eye right)
17561
17562 @item sbsr
17563 side by side crosseye (right eye left, left eye right)
17564
17565 @item sbs2l
17566 side by side parallel with half width resolution
17567 (left eye left, right eye right)
17568
17569 @item sbs2r
17570 side by side crosseye with half width resolution
17571 (right eye left, left eye right)
17572
17573 @item abl
17574 @item tbl
17575 above-below (left eye above, right eye below)
17576
17577 @item abr
17578 @item tbr
17579 above-below (right eye above, left eye below)
17580
17581 @item ab2l
17582 @item tb2l
17583 above-below with half height resolution
17584 (left eye above, right eye below)
17585
17586 @item ab2r
17587 @item tb2r
17588 above-below with half height resolution
17589 (right eye above, left eye below)
17590
17591 @item al
17592 alternating frames (left eye first, right eye second)
17593
17594 @item ar
17595 alternating frames (right eye first, left eye second)
17596
17597 @item irl
17598 interleaved rows (left eye has top row, right eye starts on next row)
17599
17600 @item irr
17601 interleaved rows (right eye has top row, left eye starts on next row)
17602
17603 @item arbg
17604 anaglyph red/blue gray
17605 (red filter on left eye, blue filter on right eye)
17606
17607 @item argg
17608 anaglyph red/green gray
17609 (red filter on left eye, green filter on right eye)
17610
17611 @item arcg
17612 anaglyph red/cyan gray
17613 (red filter on left eye, cyan filter on right eye)
17614
17615 @item arch
17616 anaglyph red/cyan half colored
17617 (red filter on left eye, cyan filter on right eye)
17618
17619 @item arcc
17620 anaglyph red/cyan color
17621 (red filter on left eye, cyan filter on right eye)
17622
17623 @item arcd
17624 anaglyph red/cyan color optimized with the least squares projection of dubois
17625 (red filter on left eye, cyan filter on right eye)
17626
17627 @item agmg
17628 anaglyph green/magenta gray
17629 (green filter on left eye, magenta filter on right eye)
17630
17631 @item agmh
17632 anaglyph green/magenta half colored
17633 (green filter on left eye, magenta filter on right eye)
17634
17635 @item agmc
17636 anaglyph green/magenta colored
17637 (green filter on left eye, magenta filter on right eye)
17638
17639 @item agmd
17640 anaglyph green/magenta color optimized with the least squares projection of dubois
17641 (green filter on left eye, magenta filter on right eye)
17642
17643 @item aybg
17644 anaglyph yellow/blue gray
17645 (yellow filter on left eye, blue filter on right eye)
17646
17647 @item aybh
17648 anaglyph yellow/blue half colored
17649 (yellow filter on left eye, blue filter on right eye)
17650
17651 @item aybc
17652 anaglyph yellow/blue colored
17653 (yellow filter on left eye, blue filter on right eye)
17654
17655 @item aybd
17656 anaglyph yellow/blue color optimized with the least squares projection of dubois
17657 (yellow filter on left eye, blue filter on right eye)
17658
17659 @item ml
17660 mono output (left eye only)
17661
17662 @item mr
17663 mono output (right eye only)
17664
17665 @item chl
17666 checkerboard, left eye first
17667
17668 @item chr
17669 checkerboard, right eye first
17670
17671 @item icl
17672 interleaved columns, left eye first
17673
17674 @item icr
17675 interleaved columns, right eye first
17676
17677 @item hdmi
17678 HDMI frame pack
17679 @end table
17680
17681 Default value is @samp{arcd}.
17682 @end table
17683
17684 @subsection Examples
17685
17686 @itemize
17687 @item
17688 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
17689 @example
17690 stereo3d=sbsl:aybd
17691 @end example
17692
17693 @item
17694 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
17695 @example
17696 stereo3d=abl:sbsr
17697 @end example
17698 @end itemize
17699
17700 @section streamselect, astreamselect
17701 Select video or audio streams.
17702
17703 The filter accepts the following options:
17704
17705 @table @option
17706 @item inputs
17707 Set number of inputs. Default is 2.
17708
17709 @item map
17710 Set input indexes to remap to outputs.
17711 @end table
17712
17713 @subsection Commands
17714
17715 The @code{streamselect} and @code{astreamselect} filter supports the following
17716 commands:
17717
17718 @table @option
17719 @item map
17720 Set input indexes to remap to outputs.
17721 @end table
17722
17723 @subsection Examples
17724
17725 @itemize
17726 @item
17727 Select first 5 seconds 1st stream and rest of time 2nd stream:
17728 @example
17729 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
17730 @end example
17731
17732 @item
17733 Same as above, but for audio:
17734 @example
17735 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
17736 @end example
17737 @end itemize
17738
17739 @anchor{subtitles}
17740 @section subtitles
17741
17742 Draw subtitles on top of input video using the libass library.
17743
17744 To enable compilation of this filter you need to configure FFmpeg with
17745 @code{--enable-libass}. This filter also requires a build with libavcodec and
17746 libavformat to convert the passed subtitles file to ASS (Advanced Substation
17747 Alpha) subtitles format.
17748
17749 The filter accepts the following options:
17750
17751 @table @option
17752 @item filename, f
17753 Set the filename of the subtitle file to read. It must be specified.
17754
17755 @item original_size
17756 Specify the size of the original video, the video for which the ASS file
17757 was composed. For the syntax of this option, check the
17758 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17759 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
17760 correctly scale the fonts if the aspect ratio has been changed.
17761
17762 @item fontsdir
17763 Set a directory path containing fonts that can be used by the filter.
17764 These fonts will be used in addition to whatever the font provider uses.
17765
17766 @item alpha
17767 Process alpha channel, by default alpha channel is untouched.
17768
17769 @item charenc
17770 Set subtitles input character encoding. @code{subtitles} filter only. Only
17771 useful if not UTF-8.
17772
17773 @item stream_index, si
17774 Set subtitles stream index. @code{subtitles} filter only.
17775
17776 @item force_style
17777 Override default style or script info parameters of the subtitles. It accepts a
17778 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
17779 @end table
17780
17781 If the first key is not specified, it is assumed that the first value
17782 specifies the @option{filename}.
17783
17784 For example, to render the file @file{sub.srt} on top of the input
17785 video, use the command:
17786 @example
17787 subtitles=sub.srt
17788 @end example
17789
17790 which is equivalent to:
17791 @example
17792 subtitles=filename=sub.srt
17793 @end example
17794
17795 To render the default subtitles stream from file @file{video.mkv}, use:
17796 @example
17797 subtitles=video.mkv
17798 @end example
17799
17800 To render the second subtitles stream from that file, use:
17801 @example
17802 subtitles=video.mkv:si=1
17803 @end example
17804
17805 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
17806 @code{DejaVu Serif}, use:
17807 @example
17808 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
17809 @end example
17810
17811 @section super2xsai
17812
17813 Scale the input by 2x and smooth using the Super2xSaI (Scale and
17814 Interpolate) pixel art scaling algorithm.
17815
17816 Useful for enlarging pixel art images without reducing sharpness.
17817
17818 @section swaprect
17819
17820 Swap two rectangular objects in video.
17821
17822 This filter accepts the following options:
17823
17824 @table @option
17825 @item w
17826 Set object width.
17827
17828 @item h
17829 Set object height.
17830
17831 @item x1
17832 Set 1st rect x coordinate.
17833
17834 @item y1
17835 Set 1st rect y coordinate.
17836
17837 @item x2
17838 Set 2nd rect x coordinate.
17839
17840 @item y2
17841 Set 2nd rect y coordinate.
17842
17843 All expressions are evaluated once for each frame.
17844 @end table
17845
17846 The all options are expressions containing the following constants:
17847
17848 @table @option
17849 @item w
17850 @item h
17851 The input width and height.
17852
17853 @item a
17854 same as @var{w} / @var{h}
17855
17856 @item sar
17857 input sample aspect ratio
17858
17859 @item dar
17860 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
17861
17862 @item n
17863 The number of the input frame, starting from 0.
17864
17865 @item t
17866 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
17867
17868 @item pos
17869 the position in the file of the input frame, NAN if unknown
17870 @end table
17871
17872 @section swapuv
17873 Swap U & V plane.
17874
17875 @section tblend
17876 Blend successive video frames.
17877
17878 See @ref{blend}
17879
17880 @section telecine
17881
17882 Apply telecine process to the video.
17883
17884 This filter accepts the following options:
17885
17886 @table @option
17887 @item first_field
17888 @table @samp
17889 @item top, t
17890 top field first
17891 @item bottom, b
17892 bottom field first
17893 The default value is @code{top}.
17894 @end table
17895
17896 @item pattern
17897 A string of numbers representing the pulldown pattern you wish to apply.
17898 The default value is @code{23}.
17899 @end table
17900
17901 @example
17902 Some typical patterns:
17903
17904 NTSC output (30i):
17905 27.5p: 32222
17906 24p: 23 (classic)
17907 24p: 2332 (preferred)
17908 20p: 33
17909 18p: 334
17910 16p: 3444
17911
17912 PAL output (25i):
17913 27.5p: 12222
17914 24p: 222222222223 ("Euro pulldown")
17915 16.67p: 33
17916 16p: 33333334
17917 @end example
17918
17919 @section thistogram
17920
17921 Compute and draw a color distribution histogram for the input video across time.
17922
17923 Unlike @ref{histogram} video filter which only shows histogram of single input frame
17924 at certain time, this filter shows also past histograms of number of frames defined
17925 by @code{width} option.
17926
17927 The computed histogram is a representation of the color component
17928 distribution in an image.
17929
17930 The filter accepts the following options:
17931
17932 @table @option
17933 @item width, w
17934 Set width of single color component output. Default value is @code{0}.
17935 Value of @code{0} means width will be picked from input video.
17936 This also set number of passed histograms to keep.
17937 Allowed range is [0, 8192].
17938
17939 @item display_mode, d
17940 Set display mode.
17941 It accepts the following values:
17942 @table @samp
17943 @item stack
17944 Per color component graphs are placed below each other.
17945
17946 @item parade
17947 Per color component graphs are placed side by side.
17948
17949 @item overlay
17950 Presents information identical to that in the @code{parade}, except
17951 that the graphs representing color components are superimposed directly
17952 over one another.
17953 @end table
17954 Default is @code{stack}.
17955
17956 @item levels_mode, m
17957 Set mode. Can be either @code{linear}, or @code{logarithmic}.
17958 Default is @code{linear}.
17959
17960 @item components, c
17961 Set what color components to display.
17962 Default is @code{7}.
17963
17964 @item bgopacity, b
17965 Set background opacity. Default is @code{0.9}.
17966
17967 @item envelope, e
17968 Show envelope. Default is disabled.
17969
17970 @item ecolor, ec
17971 Set envelope color. Default is @code{gold}.
17972 @end table
17973
17974 @section threshold
17975
17976 Apply threshold effect to video stream.
17977
17978 This filter needs four video streams to perform thresholding.
17979 First stream is stream we are filtering.
17980 Second stream is holding threshold values, third stream is holding min values,
17981 and last, fourth stream is holding max values.
17982
17983 The filter accepts the following option:
17984
17985 @table @option
17986 @item planes
17987 Set which planes will be processed, unprocessed planes will be copied.
17988 By default value 0xf, all planes will be processed.
17989 @end table
17990
17991 For example if first stream pixel's component value is less then threshold value
17992 of pixel component from 2nd threshold stream, third stream value will picked,
17993 otherwise fourth stream pixel component value will be picked.
17994
17995 Using color source filter one can perform various types of thresholding:
17996
17997 @subsection Examples
17998
17999 @itemize
18000 @item
18001 Binary threshold, using gray color as threshold:
18002 @example
18003 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
18004 @end example
18005
18006 @item
18007 Inverted binary threshold, using gray color as threshold:
18008 @example
18009 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
18010 @end example
18011
18012 @item
18013 Truncate binary threshold, using gray color as threshold:
18014 @example
18015 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
18016 @end example
18017
18018 @item
18019 Threshold to zero, using gray color as threshold:
18020 @example
18021 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
18022 @end example
18023
18024 @item
18025 Inverted threshold to zero, using gray color as threshold:
18026 @example
18027 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
18028 @end example
18029 @end itemize
18030
18031 @section thumbnail
18032 Select the most representative frame in a given sequence of consecutive frames.
18033
18034 The filter accepts the following options:
18035
18036 @table @option
18037 @item n
18038 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
18039 will pick one of them, and then handle the next batch of @var{n} frames until
18040 the end. Default is @code{100}.
18041 @end table
18042
18043 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
18044 value will result in a higher memory usage, so a high value is not recommended.
18045
18046 @subsection Examples
18047
18048 @itemize
18049 @item
18050 Extract one picture each 50 frames:
18051 @example
18052 thumbnail=50
18053 @end example
18054
18055 @item
18056 Complete example of a thumbnail creation with @command{ffmpeg}:
18057 @example
18058 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
18059 @end example
18060 @end itemize
18061
18062 @section tile
18063
18064 Tile several successive frames together.
18065
18066 The filter accepts the following options:
18067
18068 @table @option
18069
18070 @item layout
18071 Set the grid size (i.e. the number of lines and columns). For the syntax of
18072 this option, check the
18073 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18074
18075 @item nb_frames
18076 Set the maximum number of frames to render in the given area. It must be less
18077 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
18078 the area will be used.
18079
18080 @item margin
18081 Set the outer border margin in pixels.
18082
18083 @item padding
18084 Set the inner border thickness (i.e. the number of pixels between frames). For
18085 more advanced padding options (such as having different values for the edges),
18086 refer to the pad video filter.
18087
18088 @item color
18089 Specify the color of the unused area. For the syntax of this option, check the
18090 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18091 The default value of @var{color} is "black".
18092
18093 @item overlap
18094 Set the number of frames to overlap when tiling several successive frames together.
18095 The value must be between @code{0} and @var{nb_frames - 1}.
18096
18097 @item init_padding
18098 Set the number of frames to initially be empty before displaying first output frame.
18099 This controls how soon will one get first output frame.
18100 The value must be between @code{0} and @var{nb_frames - 1}.
18101 @end table
18102
18103 @subsection Examples
18104
18105 @itemize
18106 @item
18107 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
18108 @example
18109 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
18110 @end example
18111 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
18112 duplicating each output frame to accommodate the originally detected frame
18113 rate.
18114
18115 @item
18116 Display @code{5} pictures in an area of @code{3x2} frames,
18117 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
18118 mixed flat and named options:
18119 @example
18120 tile=3x2:nb_frames=5:padding=7:margin=2
18121 @end example
18122 @end itemize
18123
18124 @section tinterlace
18125
18126 Perform various types of temporal field interlacing.
18127
18128 Frames are counted starting from 1, so the first input frame is
18129 considered odd.
18130
18131 The filter accepts the following options:
18132
18133 @table @option
18134
18135 @item mode
18136 Specify the mode of the interlacing. This option can also be specified
18137 as a value alone. See below for a list of values for this option.
18138
18139 Available values are:
18140
18141 @table @samp
18142 @item merge, 0
18143 Move odd frames into the upper field, even into the lower field,
18144 generating a double height frame at half frame rate.
18145 @example
18146  ------> time
18147 Input:
18148 Frame 1         Frame 2         Frame 3         Frame 4
18149
18150 11111           22222           33333           44444
18151 11111           22222           33333           44444
18152 11111           22222           33333           44444
18153 11111           22222           33333           44444
18154
18155 Output:
18156 11111                           33333
18157 22222                           44444
18158 11111                           33333
18159 22222                           44444
18160 11111                           33333
18161 22222                           44444
18162 11111                           33333
18163 22222                           44444
18164 @end example
18165
18166 @item drop_even, 1
18167 Only output odd frames, even frames are dropped, generating a frame with
18168 unchanged height at half frame rate.
18169
18170 @example
18171  ------> time
18172 Input:
18173 Frame 1         Frame 2         Frame 3         Frame 4
18174
18175 11111           22222           33333           44444
18176 11111           22222           33333           44444
18177 11111           22222           33333           44444
18178 11111           22222           33333           44444
18179
18180 Output:
18181 11111                           33333
18182 11111                           33333
18183 11111                           33333
18184 11111                           33333
18185 @end example
18186
18187 @item drop_odd, 2
18188 Only output even frames, odd frames are dropped, generating a frame with
18189 unchanged height at half frame rate.
18190
18191 @example
18192  ------> time
18193 Input:
18194 Frame 1         Frame 2         Frame 3         Frame 4
18195
18196 11111           22222           33333           44444
18197 11111           22222           33333           44444
18198 11111           22222           33333           44444
18199 11111           22222           33333           44444
18200
18201 Output:
18202                 22222                           44444
18203                 22222                           44444
18204                 22222                           44444
18205                 22222                           44444
18206 @end example
18207
18208 @item pad, 3
18209 Expand each frame to full height, but pad alternate lines with black,
18210 generating a frame with double height at the same input frame rate.
18211
18212 @example
18213  ------> time
18214 Input:
18215 Frame 1         Frame 2         Frame 3         Frame 4
18216
18217 11111           22222           33333           44444
18218 11111           22222           33333           44444
18219 11111           22222           33333           44444
18220 11111           22222           33333           44444
18221
18222 Output:
18223 11111           .....           33333           .....
18224 .....           22222           .....           44444
18225 11111           .....           33333           .....
18226 .....           22222           .....           44444
18227 11111           .....           33333           .....
18228 .....           22222           .....           44444
18229 11111           .....           33333           .....
18230 .....           22222           .....           44444
18231 @end example
18232
18233
18234 @item interleave_top, 4
18235 Interleave the upper field from odd frames with the lower field from
18236 even frames, generating a frame with unchanged height at half frame rate.
18237
18238 @example
18239  ------> time
18240 Input:
18241 Frame 1         Frame 2         Frame 3         Frame 4
18242
18243 11111<-         22222           33333<-         44444
18244 11111           22222<-         33333           44444<-
18245 11111<-         22222           33333<-         44444
18246 11111           22222<-         33333           44444<-
18247
18248 Output:
18249 11111                           33333
18250 22222                           44444
18251 11111                           33333
18252 22222                           44444
18253 @end example
18254
18255
18256 @item interleave_bottom, 5
18257 Interleave the lower field from odd frames with the upper field from
18258 even frames, generating a frame with unchanged height at half frame rate.
18259
18260 @example
18261  ------> time
18262 Input:
18263 Frame 1         Frame 2         Frame 3         Frame 4
18264
18265 11111           22222<-         33333           44444<-
18266 11111<-         22222           33333<-         44444
18267 11111           22222<-         33333           44444<-
18268 11111<-         22222           33333<-         44444
18269
18270 Output:
18271 22222                           44444
18272 11111                           33333
18273 22222                           44444
18274 11111                           33333
18275 @end example
18276
18277
18278 @item interlacex2, 6
18279 Double frame rate with unchanged height. Frames are inserted each
18280 containing the second temporal field from the previous input frame and
18281 the first temporal field from the next input frame. This mode relies on
18282 the top_field_first flag. Useful for interlaced video displays with no
18283 field synchronisation.
18284
18285 @example
18286  ------> time
18287 Input:
18288 Frame 1         Frame 2         Frame 3         Frame 4
18289
18290 11111           22222           33333           44444
18291  11111           22222           33333           44444
18292 11111           22222           33333           44444
18293  11111           22222           33333           44444
18294
18295 Output:
18296 11111   22222   22222   33333   33333   44444   44444
18297  11111   11111   22222   22222   33333   33333   44444
18298 11111   22222   22222   33333   33333   44444   44444
18299  11111   11111   22222   22222   33333   33333   44444
18300 @end example
18301
18302
18303 @item mergex2, 7
18304 Move odd frames into the upper field, even into the lower field,
18305 generating a double height frame at same frame rate.
18306
18307 @example
18308  ------> time
18309 Input:
18310 Frame 1         Frame 2         Frame 3         Frame 4
18311
18312 11111           22222           33333           44444
18313 11111           22222           33333           44444
18314 11111           22222           33333           44444
18315 11111           22222           33333           44444
18316
18317 Output:
18318 11111           33333           33333           55555
18319 22222           22222           44444           44444
18320 11111           33333           33333           55555
18321 22222           22222           44444           44444
18322 11111           33333           33333           55555
18323 22222           22222           44444           44444
18324 11111           33333           33333           55555
18325 22222           22222           44444           44444
18326 @end example
18327
18328 @end table
18329
18330 Numeric values are deprecated but are accepted for backward
18331 compatibility reasons.
18332
18333 Default mode is @code{merge}.
18334
18335 @item flags
18336 Specify flags influencing the filter process.
18337
18338 Available value for @var{flags} is:
18339
18340 @table @option
18341 @item low_pass_filter, vlpf
18342 Enable linear vertical low-pass filtering in the filter.
18343 Vertical low-pass filtering is required when creating an interlaced
18344 destination from a progressive source which contains high-frequency
18345 vertical detail. Filtering will reduce interlace 'twitter' and Moire
18346 patterning.
18347
18348 @item complex_filter, cvlpf
18349 Enable complex vertical low-pass filtering.
18350 This will slightly less reduce interlace 'twitter' and Moire
18351 patterning but better retain detail and subjective sharpness impression.
18352
18353 @item bypass_il
18354 Bypass already interlaced frames, only adjust the frame rate.
18355 @end table
18356
18357 Vertical low-pass filtering and bypassing already interlaced frames can only be
18358 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
18359
18360 @end table
18361
18362 @section tmix
18363
18364 Mix successive video frames.
18365
18366 A description of the accepted options follows.
18367
18368 @table @option
18369 @item frames
18370 The number of successive frames to mix. If unspecified, it defaults to 3.
18371
18372 @item weights
18373 Specify weight of each input video frame.
18374 Each weight is separated by space. If number of weights is smaller than
18375 number of @var{frames} last specified weight will be used for all remaining
18376 unset weights.
18377
18378 @item scale
18379 Specify scale, if it is set it will be multiplied with sum
18380 of each weight multiplied with pixel values to give final destination
18381 pixel value. By default @var{scale} is auto scaled to sum of weights.
18382 @end table
18383
18384 @subsection Examples
18385
18386 @itemize
18387 @item
18388 Average 7 successive frames:
18389 @example
18390 tmix=frames=7:weights="1 1 1 1 1 1 1"
18391 @end example
18392
18393 @item
18394 Apply simple temporal convolution:
18395 @example
18396 tmix=frames=3:weights="-1 3 -1"
18397 @end example
18398
18399 @item
18400 Similar as above but only showing temporal differences:
18401 @example
18402 tmix=frames=3:weights="-1 2 -1":scale=1
18403 @end example
18404 @end itemize
18405
18406 @anchor{tonemap}
18407 @section tonemap
18408 Tone map colors from different dynamic ranges.
18409
18410 This filter expects data in single precision floating point, as it needs to
18411 operate on (and can output) out-of-range values. Another filter, such as
18412 @ref{zscale}, is needed to convert the resulting frame to a usable format.
18413
18414 The tonemapping algorithms implemented only work on linear light, so input
18415 data should be linearized beforehand (and possibly correctly tagged).
18416
18417 @example
18418 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
18419 @end example
18420
18421 @subsection Options
18422 The filter accepts the following options.
18423
18424 @table @option
18425 @item tonemap
18426 Set the tone map algorithm to use.
18427
18428 Possible values are:
18429 @table @var
18430 @item none
18431 Do not apply any tone map, only desaturate overbright pixels.
18432
18433 @item clip
18434 Hard-clip any out-of-range values. Use it for perfect color accuracy for
18435 in-range values, while distorting out-of-range values.
18436
18437 @item linear
18438 Stretch the entire reference gamut to a linear multiple of the display.
18439
18440 @item gamma
18441 Fit a logarithmic transfer between the tone curves.
18442
18443 @item reinhard
18444 Preserve overall image brightness with a simple curve, using nonlinear
18445 contrast, which results in flattening details and degrading color accuracy.
18446
18447 @item hable
18448 Preserve both dark and bright details better than @var{reinhard}, at the cost
18449 of slightly darkening everything. Use it when detail preservation is more
18450 important than color and brightness accuracy.
18451
18452 @item mobius
18453 Smoothly map out-of-range values, while retaining contrast and colors for
18454 in-range material as much as possible. Use it when color accuracy is more
18455 important than detail preservation.
18456 @end table
18457
18458 Default is none.
18459
18460 @item param
18461 Tune the tone mapping algorithm.
18462
18463 This affects the following algorithms:
18464 @table @var
18465 @item none
18466 Ignored.
18467
18468 @item linear
18469 Specifies the scale factor to use while stretching.
18470 Default to 1.0.
18471
18472 @item gamma
18473 Specifies the exponent of the function.
18474 Default to 1.8.
18475
18476 @item clip
18477 Specify an extra linear coefficient to multiply into the signal before clipping.
18478 Default to 1.0.
18479
18480 @item reinhard
18481 Specify the local contrast coefficient at the display peak.
18482 Default to 0.5, which means that in-gamut values will be about half as bright
18483 as when clipping.
18484
18485 @item hable
18486 Ignored.
18487
18488 @item mobius
18489 Specify the transition point from linear to mobius transform. Every value
18490 below this point is guaranteed to be mapped 1:1. The higher the value, the
18491 more accurate the result will be, at the cost of losing bright details.
18492 Default to 0.3, which due to the steep initial slope still preserves in-range
18493 colors fairly accurately.
18494 @end table
18495
18496 @item desat
18497 Apply desaturation for highlights that exceed this level of brightness. The
18498 higher the parameter, the more color information will be preserved. This
18499 setting helps prevent unnaturally blown-out colors for super-highlights, by
18500 (smoothly) turning into white instead. This makes images feel more natural,
18501 at the cost of reducing information about out-of-range colors.
18502
18503 The default of 2.0 is somewhat conservative and will mostly just apply to
18504 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
18505
18506 This option works only if the input frame has a supported color tag.
18507
18508 @item peak
18509 Override signal/nominal/reference peak with this value. Useful when the
18510 embedded peak information in display metadata is not reliable or when tone
18511 mapping from a lower range to a higher range.
18512 @end table
18513
18514 @section tpad
18515
18516 Temporarily pad video frames.
18517
18518 The filter accepts the following options:
18519
18520 @table @option
18521 @item start
18522 Specify number of delay frames before input video stream. Default is 0.
18523
18524 @item stop
18525 Specify number of padding frames after input video stream.
18526 Set to -1 to pad indefinitely. Default is 0.
18527
18528 @item start_mode
18529 Set kind of frames added to beginning of stream.
18530 Can be either @var{add} or @var{clone}.
18531 With @var{add} frames of solid-color are added.
18532 With @var{clone} frames are clones of first frame.
18533 Default is @var{add}.
18534
18535 @item stop_mode
18536 Set kind of frames added to end of stream.
18537 Can be either @var{add} or @var{clone}.
18538 With @var{add} frames of solid-color are added.
18539 With @var{clone} frames are clones of last frame.
18540 Default is @var{add}.
18541
18542 @item start_duration, stop_duration
18543 Specify the duration of the start/stop delay. See
18544 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18545 for the accepted syntax.
18546 These options override @var{start} and @var{stop}. Default is 0.
18547
18548 @item color
18549 Specify the color of the padded area. For the syntax of this option,
18550 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
18551 manual,ffmpeg-utils}.
18552
18553 The default value of @var{color} is "black".
18554 @end table
18555
18556 @anchor{transpose}
18557 @section transpose
18558
18559 Transpose rows with columns in the input video and optionally flip it.
18560
18561 It accepts the following parameters:
18562
18563 @table @option
18564
18565 @item dir
18566 Specify the transposition direction.
18567
18568 Can assume the following values:
18569 @table @samp
18570 @item 0, 4, cclock_flip
18571 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
18572 @example
18573 L.R     L.l
18574 . . ->  . .
18575 l.r     R.r
18576 @end example
18577
18578 @item 1, 5, clock
18579 Rotate by 90 degrees clockwise, that is:
18580 @example
18581 L.R     l.L
18582 . . ->  . .
18583 l.r     r.R
18584 @end example
18585
18586 @item 2, 6, cclock
18587 Rotate by 90 degrees counterclockwise, that is:
18588 @example
18589 L.R     R.r
18590 . . ->  . .
18591 l.r     L.l
18592 @end example
18593
18594 @item 3, 7, clock_flip
18595 Rotate by 90 degrees clockwise and vertically flip, that is:
18596 @example
18597 L.R     r.R
18598 . . ->  . .
18599 l.r     l.L
18600 @end example
18601 @end table
18602
18603 For values between 4-7, the transposition is only done if the input
18604 video geometry is portrait and not landscape. These values are
18605 deprecated, the @code{passthrough} option should be used instead.
18606
18607 Numerical values are deprecated, and should be dropped in favor of
18608 symbolic constants.
18609
18610 @item passthrough
18611 Do not apply the transposition if the input geometry matches the one
18612 specified by the specified value. It accepts the following values:
18613 @table @samp
18614 @item none
18615 Always apply transposition.
18616 @item portrait
18617 Preserve portrait geometry (when @var{height} >= @var{width}).
18618 @item landscape
18619 Preserve landscape geometry (when @var{width} >= @var{height}).
18620 @end table
18621
18622 Default value is @code{none}.
18623 @end table
18624
18625 For example to rotate by 90 degrees clockwise and preserve portrait
18626 layout:
18627 @example
18628 transpose=dir=1:passthrough=portrait
18629 @end example
18630
18631 The command above can also be specified as:
18632 @example
18633 transpose=1:portrait
18634 @end example
18635
18636 @section transpose_npp
18637
18638 Transpose rows with columns in the input video and optionally flip it.
18639 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
18640
18641 It accepts the following parameters:
18642
18643 @table @option
18644
18645 @item dir
18646 Specify the transposition direction.
18647
18648 Can assume the following values:
18649 @table @samp
18650 @item cclock_flip
18651 Rotate by 90 degrees counterclockwise and vertically flip. (default)
18652
18653 @item clock
18654 Rotate by 90 degrees clockwise.
18655
18656 @item cclock
18657 Rotate by 90 degrees counterclockwise.
18658
18659 @item clock_flip
18660 Rotate by 90 degrees clockwise and vertically flip.
18661 @end table
18662
18663 @item passthrough
18664 Do not apply the transposition if the input geometry matches the one
18665 specified by the specified value. It accepts the following values:
18666 @table @samp
18667 @item none
18668 Always apply transposition. (default)
18669 @item portrait
18670 Preserve portrait geometry (when @var{height} >= @var{width}).
18671 @item landscape
18672 Preserve landscape geometry (when @var{width} >= @var{height}).
18673 @end table
18674
18675 @end table
18676
18677 @section trim
18678 Trim the input so that the output contains one continuous subpart of the input.
18679
18680 It accepts the following parameters:
18681 @table @option
18682 @item start
18683 Specify the time of the start of the kept section, i.e. the frame with the
18684 timestamp @var{start} will be the first frame in the output.
18685
18686 @item end
18687 Specify the time of the first frame that will be dropped, i.e. the frame
18688 immediately preceding the one with the timestamp @var{end} will be the last
18689 frame in the output.
18690
18691 @item start_pts
18692 This is the same as @var{start}, except this option sets the start timestamp
18693 in timebase units instead of seconds.
18694
18695 @item end_pts
18696 This is the same as @var{end}, except this option sets the end timestamp
18697 in timebase units instead of seconds.
18698
18699 @item duration
18700 The maximum duration of the output in seconds.
18701
18702 @item start_frame
18703 The number of the first frame that should be passed to the output.
18704
18705 @item end_frame
18706 The number of the first frame that should be dropped.
18707 @end table
18708
18709 @option{start}, @option{end}, and @option{duration} are expressed as time
18710 duration specifications; see
18711 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18712 for the accepted syntax.
18713
18714 Note that the first two sets of the start/end options and the @option{duration}
18715 option look at the frame timestamp, while the _frame variants simply count the
18716 frames that pass through the filter. Also note that this filter does not modify
18717 the timestamps. If you wish for the output timestamps to start at zero, insert a
18718 setpts filter after the trim filter.
18719
18720 If multiple start or end options are set, this filter tries to be greedy and
18721 keep all the frames that match at least one of the specified constraints. To keep
18722 only the part that matches all the constraints at once, chain multiple trim
18723 filters.
18724
18725 The defaults are such that all the input is kept. So it is possible to set e.g.
18726 just the end values to keep everything before the specified time.
18727
18728 Examples:
18729 @itemize
18730 @item
18731 Drop everything except the second minute of input:
18732 @example
18733 ffmpeg -i INPUT -vf trim=60:120
18734 @end example
18735
18736 @item
18737 Keep only the first second:
18738 @example
18739 ffmpeg -i INPUT -vf trim=duration=1
18740 @end example
18741
18742 @end itemize
18743
18744 @section unpremultiply
18745 Apply alpha unpremultiply effect to input video stream using first plane
18746 of second stream as alpha.
18747
18748 Both streams must have same dimensions and same pixel format.
18749
18750 The filter accepts the following option:
18751
18752 @table @option
18753 @item planes
18754 Set which planes will be processed, unprocessed planes will be copied.
18755 By default value 0xf, all planes will be processed.
18756
18757 If the format has 1 or 2 components, then luma is bit 0.
18758 If the format has 3 or 4 components:
18759 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
18760 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
18761 If present, the alpha channel is always the last bit.
18762
18763 @item inplace
18764 Do not require 2nd input for processing, instead use alpha plane from input stream.
18765 @end table
18766
18767 @anchor{unsharp}
18768 @section unsharp
18769
18770 Sharpen or blur the input video.
18771
18772 It accepts the following parameters:
18773
18774 @table @option
18775 @item luma_msize_x, lx
18776 Set the luma matrix horizontal size. It must be an odd integer between
18777 3 and 23. The default value is 5.
18778
18779 @item luma_msize_y, ly
18780 Set the luma matrix vertical size. It must be an odd integer between 3
18781 and 23. The default value is 5.
18782
18783 @item luma_amount, la
18784 Set the luma effect strength. It must be a floating point number, reasonable
18785 values lay between -1.5 and 1.5.
18786
18787 Negative values will blur the input video, while positive values will
18788 sharpen it, a value of zero will disable the effect.
18789
18790 Default value is 1.0.
18791
18792 @item chroma_msize_x, cx
18793 Set the chroma matrix horizontal size. It must be an odd integer
18794 between 3 and 23. The default value is 5.
18795
18796 @item chroma_msize_y, cy
18797 Set the chroma matrix vertical size. It must be an odd integer
18798 between 3 and 23. The default value is 5.
18799
18800 @item chroma_amount, ca
18801 Set the chroma effect strength. It must be a floating point number, reasonable
18802 values lay between -1.5 and 1.5.
18803
18804 Negative values will blur the input video, while positive values will
18805 sharpen it, a value of zero will disable the effect.
18806
18807 Default value is 0.0.
18808
18809 @end table
18810
18811 All parameters are optional and default to the equivalent of the
18812 string '5:5:1.0:5:5:0.0'.
18813
18814 @subsection Examples
18815
18816 @itemize
18817 @item
18818 Apply strong luma sharpen effect:
18819 @example
18820 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
18821 @end example
18822
18823 @item
18824 Apply a strong blur of both luma and chroma parameters:
18825 @example
18826 unsharp=7:7:-2:7:7:-2
18827 @end example
18828 @end itemize
18829
18830 @section uspp
18831
18832 Apply ultra slow/simple postprocessing filter that compresses and decompresses
18833 the image at several (or - in the case of @option{quality} level @code{8} - all)
18834 shifts and average the results.
18835
18836 The way this differs from the behavior of spp is that uspp actually encodes &
18837 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
18838 DCT similar to MJPEG.
18839
18840 The filter accepts the following options:
18841
18842 @table @option
18843 @item quality
18844 Set quality. This option defines the number of levels for averaging. It accepts
18845 an integer in the range 0-8. If set to @code{0}, the filter will have no
18846 effect. A value of @code{8} means the higher quality. For each increment of
18847 that value the speed drops by a factor of approximately 2.  Default value is
18848 @code{3}.
18849
18850 @item qp
18851 Force a constant quantization parameter. If not set, the filter will use the QP
18852 from the video stream (if available).
18853 @end table
18854
18855 @section v360
18856
18857 Convert 360 videos between various formats.
18858
18859 The filter accepts the following options:
18860
18861 @table @option
18862
18863 @item input
18864 @item output
18865 Set format of the input/output video.
18866
18867 Available formats:
18868
18869 @table @samp
18870
18871 @item e
18872 @item equirect
18873 Equirectangular projection.
18874
18875 @item c3x2
18876 @item c6x1
18877 @item c1x6
18878 Cubemap with 3x2/6x1/1x6 layout.
18879
18880 Format specific options:
18881
18882 @table @option
18883 @item in_pad
18884 @item out_pad
18885 Set padding proportion for the input/output cubemap. Values in decimals.
18886
18887 Example values:
18888 @table @samp
18889 @item 0
18890 No padding.
18891 @item 0.01
18892 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)
18893 @end table
18894
18895 Default value is @b{@samp{0}}.
18896
18897 @item fin_pad
18898 @item fout_pad
18899 Set fixed padding for the input/output cubemap. Values in pixels.
18900
18901 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
18902
18903 @item in_forder
18904 @item out_forder
18905 Set order of faces for the input/output cubemap. Choose one direction for each position.
18906
18907 Designation of directions:
18908 @table @samp
18909 @item r
18910 right
18911 @item l
18912 left
18913 @item u
18914 up
18915 @item d
18916 down
18917 @item f
18918 forward
18919 @item b
18920 back
18921 @end table
18922
18923 Default value is @b{@samp{rludfb}}.
18924
18925 @item in_frot
18926 @item out_frot
18927 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
18928
18929 Designation of angles:
18930 @table @samp
18931 @item 0
18932 0 degrees clockwise
18933 @item 1
18934 90 degrees clockwise
18935 @item 2
18936 180 degrees clockwise
18937 @item 3
18938 270 degrees clockwise
18939 @end table
18940
18941 Default value is @b{@samp{000000}}.
18942 @end table
18943
18944 @item eac
18945 Equi-Angular Cubemap.
18946
18947 @item flat
18948 @item gnomonic
18949 @item rectilinear
18950 Regular video.
18951
18952 Format specific options:
18953 @table @option
18954 @item h_fov
18955 @item v_fov
18956 @item d_fov
18957 Set output horizontal/vertical/diagonal field of view. Values in degrees.
18958
18959 If diagonal field of view is set it overrides horizontal and vertical field of view.
18960
18961 @item ih_fov
18962 @item iv_fov
18963 @item id_fov
18964 Set input horizontal/vertical/diagonal field of view. Values in degrees.
18965
18966 If diagonal field of view is set it overrides horizontal and vertical field of view.
18967 @end table
18968
18969 @item dfisheye
18970 Dual fisheye.
18971
18972 Format specific options:
18973 @table @option
18974 @item in_pad
18975 @item out_pad
18976 Set padding proportion. Values in decimals.
18977
18978 Example values:
18979 @table @samp
18980 @item 0
18981 No padding.
18982 @item 0.01
18983 1% padding.
18984 @end table
18985
18986 Default value is @b{@samp{0}}.
18987 @end table
18988
18989 @item barrel
18990 @item fb
18991 @item barrelsplit
18992 Facebook's 360 formats.
18993
18994 @item sg
18995 Stereographic format.
18996
18997 Format specific options:
18998 @table @option
18999 @item h_fov
19000 @item v_fov
19001 @item d_fov
19002 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19003
19004 If diagonal field of view is set it overrides horizontal and vertical field of view.
19005
19006 @item ih_fov
19007 @item iv_fov
19008 @item id_fov
19009 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19010
19011 If diagonal field of view is set it overrides horizontal and vertical field of view.
19012 @end table
19013
19014 @item mercator
19015 Mercator format.
19016
19017 @item ball
19018 Ball format, gives significant distortion toward the back.
19019
19020 @item hammer
19021 Hammer-Aitoff map projection format.
19022
19023 @item sinusoidal
19024 Sinusoidal map projection format.
19025
19026 @item fisheye
19027 Fisheye projection.
19028
19029 Format specific options:
19030 @table @option
19031 @item h_fov
19032 @item v_fov
19033 @item d_fov
19034 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19035
19036 If diagonal field of view is set it overrides horizontal and vertical field of view.
19037
19038 @item ih_fov
19039 @item iv_fov
19040 @item id_fov
19041 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19042
19043 If diagonal field of view is set it overrides horizontal and vertical field of view.
19044 @end table
19045
19046 @item pannini
19047 Pannini projection. @i{(output only)}
19048
19049 Format specific options:
19050 @table @option
19051 @item h_fov
19052 Set pannini parameter.
19053 @end table
19054
19055 @item cylindrical
19056 Cylindrical projection.
19057
19058 Format specific options:
19059 @table @option
19060 @item h_fov
19061 @item v_fov
19062 @item d_fov
19063 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19064
19065 If diagonal field of view is set it overrides horizontal and vertical field of view.
19066
19067 @item ih_fov
19068 @item iv_fov
19069 @item id_fov
19070 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19071
19072 If diagonal field of view is set it overrides horizontal and vertical field of view.
19073 @end table
19074
19075 @item perspective
19076 Perspective projection. @i{(output only)}
19077
19078 Format specific options:
19079 @table @option
19080 @item v_fov
19081 Set perspective parameter.
19082 @end table
19083
19084 @item tetrahedron
19085 Tetrahedron projection.
19086
19087 @item tsp
19088 Truncated square pyramid projection.
19089
19090 @item he
19091 @item hequirect
19092 Half equirectangular projection.
19093 @end table
19094
19095 @item interp
19096 Set interpolation method.@*
19097 @i{Note: more complex interpolation methods require much more memory to run.}
19098
19099 Available methods:
19100
19101 @table @samp
19102 @item near
19103 @item nearest
19104 Nearest neighbour.
19105 @item line
19106 @item linear
19107 Bilinear interpolation.
19108 @item lagrange9
19109 Lagrange9 interpolation.
19110 @item cube
19111 @item cubic
19112 Bicubic interpolation.
19113 @item lanc
19114 @item lanczos
19115 Lanczos interpolation.
19116 @item sp16
19117 @item spline16
19118 Spline16 interpolation.
19119 @item gauss
19120 @item gaussian
19121 Gaussian interpolation.
19122 @end table
19123
19124 Default value is @b{@samp{line}}.
19125
19126 @item w
19127 @item h
19128 Set the output video resolution.
19129
19130 Default resolution depends on formats.
19131
19132 @item in_stereo
19133 @item out_stereo
19134 Set the input/output stereo format.
19135
19136 @table @samp
19137 @item 2d
19138 2D mono
19139 @item sbs
19140 Side by side
19141 @item tb
19142 Top bottom
19143 @end table
19144
19145 Default value is @b{@samp{2d}} for input and output format.
19146
19147 @item yaw
19148 @item pitch
19149 @item roll
19150 Set rotation for the output video. Values in degrees.
19151
19152 @item rorder
19153 Set rotation order for the output video. Choose one item for each position.
19154
19155 @table @samp
19156 @item y, Y
19157 yaw
19158 @item p, P
19159 pitch
19160 @item r, R
19161 roll
19162 @end table
19163
19164 Default value is @b{@samp{ypr}}.
19165
19166 @item h_flip
19167 @item v_flip
19168 @item d_flip
19169 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
19170
19171 @item ih_flip
19172 @item iv_flip
19173 Set if input video is flipped horizontally/vertically. Boolean values.
19174
19175 @item in_trans
19176 Set if input video is transposed. Boolean value, by default disabled.
19177
19178 @item out_trans
19179 Set if output video needs to be transposed. Boolean value, by default disabled.
19180
19181 @item alpha_mask
19182 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
19183 @end table
19184
19185 @subsection Examples
19186
19187 @itemize
19188 @item
19189 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
19190 @example
19191 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
19192 @end example
19193 @item
19194 Extract back view of Equi-Angular Cubemap:
19195 @example
19196 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
19197 @end example
19198 @item
19199 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
19200 @example
19201 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
19202 @end example
19203 @end itemize
19204
19205 @subsection Commands
19206
19207 This filter supports subset of above options as @ref{commands}.
19208
19209 @section vaguedenoiser
19210
19211 Apply a wavelet based denoiser.
19212
19213 It transforms each frame from the video input into the wavelet domain,
19214 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
19215 the obtained coefficients. It does an inverse wavelet transform after.
19216 Due to wavelet properties, it should give a nice smoothed result, and
19217 reduced noise, without blurring picture features.
19218
19219 This filter accepts the following options:
19220
19221 @table @option
19222 @item threshold
19223 The filtering strength. The higher, the more filtered the video will be.
19224 Hard thresholding can use a higher threshold than soft thresholding
19225 before the video looks overfiltered. Default value is 2.
19226
19227 @item method
19228 The filtering method the filter will use.
19229
19230 It accepts the following values:
19231 @table @samp
19232 @item hard
19233 All values under the threshold will be zeroed.
19234
19235 @item soft
19236 All values under the threshold will be zeroed. All values above will be
19237 reduced by the threshold.
19238
19239 @item garrote
19240 Scales or nullifies coefficients - intermediary between (more) soft and
19241 (less) hard thresholding.
19242 @end table
19243
19244 Default is garrote.
19245
19246 @item nsteps
19247 Number of times, the wavelet will decompose the picture. Picture can't
19248 be decomposed beyond a particular point (typically, 8 for a 640x480
19249 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
19250
19251 @item percent
19252 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
19253
19254 @item planes
19255 A list of the planes to process. By default all planes are processed.
19256 @end table
19257
19258 @section vectorscope
19259
19260 Display 2 color component values in the two dimensional graph (which is called
19261 a vectorscope).
19262
19263 This filter accepts the following options:
19264
19265 @table @option
19266 @item mode, m
19267 Set vectorscope mode.
19268
19269 It accepts the following values:
19270 @table @samp
19271 @item gray
19272 @item tint
19273 Gray values are displayed on graph, higher brightness means more pixels have
19274 same component color value on location in graph. This is the default mode.
19275
19276 @item color
19277 Gray values are displayed on graph. Surrounding pixels values which are not
19278 present in video frame are drawn in gradient of 2 color components which are
19279 set by option @code{x} and @code{y}. The 3rd color component is static.
19280
19281 @item color2
19282 Actual color components values present in video frame are displayed on graph.
19283
19284 @item color3
19285 Similar as color2 but higher frequency of same values @code{x} and @code{y}
19286 on graph increases value of another color component, which is luminance by
19287 default values of @code{x} and @code{y}.
19288
19289 @item color4
19290 Actual colors present in video frame are displayed on graph. If two different
19291 colors map to same position on graph then color with higher value of component
19292 not present in graph is picked.
19293
19294 @item color5
19295 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
19296 component picked from radial gradient.
19297 @end table
19298
19299 @item x
19300 Set which color component will be represented on X-axis. Default is @code{1}.
19301
19302 @item y
19303 Set which color component will be represented on Y-axis. Default is @code{2}.
19304
19305 @item intensity, i
19306 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
19307 of color component which represents frequency of (X, Y) location in graph.
19308
19309 @item envelope, e
19310 @table @samp
19311 @item none
19312 No envelope, this is default.
19313
19314 @item instant
19315 Instant envelope, even darkest single pixel will be clearly highlighted.
19316
19317 @item peak
19318 Hold maximum and minimum values presented in graph over time. This way you
19319 can still spot out of range values without constantly looking at vectorscope.
19320
19321 @item peak+instant
19322 Peak and instant envelope combined together.
19323 @end table
19324
19325 @item graticule, g
19326 Set what kind of graticule to draw.
19327 @table @samp
19328 @item none
19329 @item green
19330 @item color
19331 @item invert
19332 @end table
19333
19334 @item opacity, o
19335 Set graticule opacity.
19336
19337 @item flags, f
19338 Set graticule flags.
19339
19340 @table @samp
19341 @item white
19342 Draw graticule for white point.
19343
19344 @item black
19345 Draw graticule for black point.
19346
19347 @item name
19348 Draw color points short names.
19349 @end table
19350
19351 @item bgopacity, b
19352 Set background opacity.
19353
19354 @item lthreshold, l
19355 Set low threshold for color component not represented on X or Y axis.
19356 Values lower than this value will be ignored. Default is 0.
19357 Note this value is multiplied with actual max possible value one pixel component
19358 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
19359 is 0.1 * 255 = 25.
19360
19361 @item hthreshold, h
19362 Set high threshold for color component not represented on X or Y axis.
19363 Values higher than this value will be ignored. Default is 1.
19364 Note this value is multiplied with actual max possible value one pixel component
19365 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
19366 is 0.9 * 255 = 230.
19367
19368 @item colorspace, c
19369 Set what kind of colorspace to use when drawing graticule.
19370 @table @samp
19371 @item auto
19372 @item 601
19373 @item 709
19374 @end table
19375 Default is auto.
19376
19377 @item tint0, t0
19378 @item tint1, t1
19379 Set color tint for gray/tint vectorscope mode. By default both options are zero.
19380 This means no tint, and output will remain gray.
19381 @end table
19382
19383 @anchor{vidstabdetect}
19384 @section vidstabdetect
19385
19386 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
19387 @ref{vidstabtransform} for pass 2.
19388
19389 This filter generates a file with relative translation and rotation
19390 transform information about subsequent frames, which is then used by
19391 the @ref{vidstabtransform} filter.
19392
19393 To enable compilation of this filter you need to configure FFmpeg with
19394 @code{--enable-libvidstab}.
19395
19396 This filter accepts the following options:
19397
19398 @table @option
19399 @item result
19400 Set the path to the file used to write the transforms information.
19401 Default value is @file{transforms.trf}.
19402
19403 @item shakiness
19404 Set how shaky the video is and how quick the camera is. It accepts an
19405 integer in the range 1-10, a value of 1 means little shakiness, a
19406 value of 10 means strong shakiness. Default value is 5.
19407
19408 @item accuracy
19409 Set the accuracy of the detection process. It must be a value in the
19410 range 1-15. A value of 1 means low accuracy, a value of 15 means high
19411 accuracy. Default value is 15.
19412
19413 @item stepsize
19414 Set stepsize of the search process. The region around minimum is
19415 scanned with 1 pixel resolution. Default value is 6.
19416
19417 @item mincontrast
19418 Set minimum contrast. Below this value a local measurement field is
19419 discarded. Must be a floating point value in the range 0-1. Default
19420 value is 0.3.
19421
19422 @item tripod
19423 Set reference frame number for tripod mode.
19424
19425 If enabled, the motion of the frames is compared to a reference frame
19426 in the filtered stream, identified by the specified number. The idea
19427 is to compensate all movements in a more-or-less static scene and keep
19428 the camera view absolutely still.
19429
19430 If set to 0, it is disabled. The frames are counted starting from 1.
19431
19432 @item show
19433 Show fields and transforms in the resulting frames. It accepts an
19434 integer in the range 0-2. Default value is 0, which disables any
19435 visualization.
19436 @end table
19437
19438 @subsection Examples
19439
19440 @itemize
19441 @item
19442 Use default values:
19443 @example
19444 vidstabdetect
19445 @end example
19446
19447 @item
19448 Analyze strongly shaky movie and put the results in file
19449 @file{mytransforms.trf}:
19450 @example
19451 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
19452 @end example
19453
19454 @item
19455 Visualize the result of internal transformations in the resulting
19456 video:
19457 @example
19458 vidstabdetect=show=1
19459 @end example
19460
19461 @item
19462 Analyze a video with medium shakiness using @command{ffmpeg}:
19463 @example
19464 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
19465 @end example
19466 @end itemize
19467
19468 @anchor{vidstabtransform}
19469 @section vidstabtransform
19470
19471 Video stabilization/deshaking: pass 2 of 2,
19472 see @ref{vidstabdetect} for pass 1.
19473
19474 Read a file with transform information for each frame and
19475 apply/compensate them. Together with the @ref{vidstabdetect}
19476 filter this can be used to deshake videos. See also
19477 @url{http://public.hronopik.de/vid.stab}. It is important to also use
19478 the @ref{unsharp} filter, see below.
19479
19480 To enable compilation of this filter you need to configure FFmpeg with
19481 @code{--enable-libvidstab}.
19482
19483 @subsection Options
19484
19485 @table @option
19486 @item input
19487 Set path to the file used to read the transforms. Default value is
19488 @file{transforms.trf}.
19489
19490 @item smoothing
19491 Set the number of frames (value*2 + 1) used for lowpass filtering the
19492 camera movements. Default value is 10.
19493
19494 For example a number of 10 means that 21 frames are used (10 in the
19495 past and 10 in the future) to smoothen the motion in the video. A
19496 larger value leads to a smoother video, but limits the acceleration of
19497 the camera (pan/tilt movements). 0 is a special case where a static
19498 camera is simulated.
19499
19500 @item optalgo
19501 Set the camera path optimization algorithm.
19502
19503 Accepted values are:
19504 @table @samp
19505 @item gauss
19506 gaussian kernel low-pass filter on camera motion (default)
19507 @item avg
19508 averaging on transformations
19509 @end table
19510
19511 @item maxshift
19512 Set maximal number of pixels to translate frames. Default value is -1,
19513 meaning no limit.
19514
19515 @item maxangle
19516 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
19517 value is -1, meaning no limit.
19518
19519 @item crop
19520 Specify how to deal with borders that may be visible due to movement
19521 compensation.
19522
19523 Available values are:
19524 @table @samp
19525 @item keep
19526 keep image information from previous frame (default)
19527 @item black
19528 fill the border black
19529 @end table
19530
19531 @item invert
19532 Invert transforms if set to 1. Default value is 0.
19533
19534 @item relative
19535 Consider transforms as relative to previous frame if set to 1,
19536 absolute if set to 0. Default value is 0.
19537
19538 @item zoom
19539 Set percentage to zoom. A positive value will result in a zoom-in
19540 effect, a negative value in a zoom-out effect. Default value is 0 (no
19541 zoom).
19542
19543 @item optzoom
19544 Set optimal zooming to avoid borders.
19545
19546 Accepted values are:
19547 @table @samp
19548 @item 0
19549 disabled
19550 @item 1
19551 optimal static zoom value is determined (only very strong movements
19552 will lead to visible borders) (default)
19553 @item 2
19554 optimal adaptive zoom value is determined (no borders will be
19555 visible), see @option{zoomspeed}
19556 @end table
19557
19558 Note that the value given at zoom is added to the one calculated here.
19559
19560 @item zoomspeed
19561 Set percent to zoom maximally each frame (enabled when
19562 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
19563 0.25.
19564
19565 @item interpol
19566 Specify type of interpolation.
19567
19568 Available values are:
19569 @table @samp
19570 @item no
19571 no interpolation
19572 @item linear
19573 linear only horizontal
19574 @item bilinear
19575 linear in both directions (default)
19576 @item bicubic
19577 cubic in both directions (slow)
19578 @end table
19579
19580 @item tripod
19581 Enable virtual tripod mode if set to 1, which is equivalent to
19582 @code{relative=0:smoothing=0}. Default value is 0.
19583
19584 Use also @code{tripod} option of @ref{vidstabdetect}.
19585
19586 @item debug
19587 Increase log verbosity if set to 1. Also the detected global motions
19588 are written to the temporary file @file{global_motions.trf}. Default
19589 value is 0.
19590 @end table
19591
19592 @subsection Examples
19593
19594 @itemize
19595 @item
19596 Use @command{ffmpeg} for a typical stabilization with default values:
19597 @example
19598 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
19599 @end example
19600
19601 Note the use of the @ref{unsharp} filter which is always recommended.
19602
19603 @item
19604 Zoom in a bit more and load transform data from a given file:
19605 @example
19606 vidstabtransform=zoom=5:input="mytransforms.trf"
19607 @end example
19608
19609 @item
19610 Smoothen the video even more:
19611 @example
19612 vidstabtransform=smoothing=30
19613 @end example
19614 @end itemize
19615
19616 @section vflip
19617
19618 Flip the input video vertically.
19619
19620 For example, to vertically flip a video with @command{ffmpeg}:
19621 @example
19622 ffmpeg -i in.avi -vf "vflip" out.avi
19623 @end example
19624
19625 @section vfrdet
19626
19627 Detect variable frame rate video.
19628
19629 This filter tries to detect if the input is variable or constant frame rate.
19630
19631 At end it will output number of frames detected as having variable delta pts,
19632 and ones with constant delta pts.
19633 If there was frames with variable delta, than it will also show min, max and
19634 average delta encountered.
19635
19636 @section vibrance
19637
19638 Boost or alter saturation.
19639
19640 The filter accepts the following options:
19641 @table @option
19642 @item intensity
19643 Set strength of boost if positive value or strength of alter if negative value.
19644 Default is 0. Allowed range is from -2 to 2.
19645
19646 @item rbal
19647 Set the red balance. Default is 1. Allowed range is from -10 to 10.
19648
19649 @item gbal
19650 Set the green balance. Default is 1. Allowed range is from -10 to 10.
19651
19652 @item bbal
19653 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
19654
19655 @item rlum
19656 Set the red luma coefficient.
19657
19658 @item glum
19659 Set the green luma coefficient.
19660
19661 @item blum
19662 Set the blue luma coefficient.
19663
19664 @item alternate
19665 If @code{intensity} is negative and this is set to 1, colors will change,
19666 otherwise colors will be less saturated, more towards gray.
19667 @end table
19668
19669 @subsection Commands
19670
19671 This filter supports the all above options as @ref{commands}.
19672
19673 @anchor{vignette}
19674 @section vignette
19675
19676 Make or reverse a natural vignetting effect.
19677
19678 The filter accepts the following options:
19679
19680 @table @option
19681 @item angle, a
19682 Set lens angle expression as a number of radians.
19683
19684 The value is clipped in the @code{[0,PI/2]} range.
19685
19686 Default value: @code{"PI/5"}
19687
19688 @item x0
19689 @item y0
19690 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
19691 by default.
19692
19693 @item mode
19694 Set forward/backward mode.
19695
19696 Available modes are:
19697 @table @samp
19698 @item forward
19699 The larger the distance from the central point, the darker the image becomes.
19700
19701 @item backward
19702 The larger the distance from the central point, the brighter the image becomes.
19703 This can be used to reverse a vignette effect, though there is no automatic
19704 detection to extract the lens @option{angle} and other settings (yet). It can
19705 also be used to create a burning effect.
19706 @end table
19707
19708 Default value is @samp{forward}.
19709
19710 @item eval
19711 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
19712
19713 It accepts the following values:
19714 @table @samp
19715 @item init
19716 Evaluate expressions only once during the filter initialization.
19717
19718 @item frame
19719 Evaluate expressions for each incoming frame. This is way slower than the
19720 @samp{init} mode since it requires all the scalers to be re-computed, but it
19721 allows advanced dynamic expressions.
19722 @end table
19723
19724 Default value is @samp{init}.
19725
19726 @item dither
19727 Set dithering to reduce the circular banding effects. Default is @code{1}
19728 (enabled).
19729
19730 @item aspect
19731 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
19732 Setting this value to the SAR of the input will make a rectangular vignetting
19733 following the dimensions of the video.
19734
19735 Default is @code{1/1}.
19736 @end table
19737
19738 @subsection Expressions
19739
19740 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
19741 following parameters.
19742
19743 @table @option
19744 @item w
19745 @item h
19746 input width and height
19747
19748 @item n
19749 the number of input frame, starting from 0
19750
19751 @item pts
19752 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
19753 @var{TB} units, NAN if undefined
19754
19755 @item r
19756 frame rate of the input video, NAN if the input frame rate is unknown
19757
19758 @item t
19759 the PTS (Presentation TimeStamp) of the filtered video frame,
19760 expressed in seconds, NAN if undefined
19761
19762 @item tb
19763 time base of the input video
19764 @end table
19765
19766
19767 @subsection Examples
19768
19769 @itemize
19770 @item
19771 Apply simple strong vignetting effect:
19772 @example
19773 vignette=PI/4
19774 @end example
19775
19776 @item
19777 Make a flickering vignetting:
19778 @example
19779 vignette='PI/4+random(1)*PI/50':eval=frame
19780 @end example
19781
19782 @end itemize
19783
19784 @section vmafmotion
19785
19786 Obtain the average VMAF motion score of a video.
19787 It is one of the component metrics of VMAF.
19788
19789 The obtained average motion score is printed through the logging system.
19790
19791 The filter accepts the following options:
19792
19793 @table @option
19794 @item stats_file
19795 If specified, the filter will use the named file to save the motion score of
19796 each frame with respect to the previous frame.
19797 When filename equals "-" the data is sent to standard output.
19798 @end table
19799
19800 Example:
19801 @example
19802 ffmpeg -i ref.mpg -vf vmafmotion -f null -
19803 @end example
19804
19805 @section vstack
19806 Stack input videos vertically.
19807
19808 All streams must be of same pixel format and of same width.
19809
19810 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
19811 to create same output.
19812
19813 The filter accepts the following options:
19814
19815 @table @option
19816 @item inputs
19817 Set number of input streams. Default is 2.
19818
19819 @item shortest
19820 If set to 1, force the output to terminate when the shortest input
19821 terminates. Default value is 0.
19822 @end table
19823
19824 @section w3fdif
19825
19826 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
19827 Deinterlacing Filter").
19828
19829 Based on the process described by Martin Weston for BBC R&D, and
19830 implemented based on the de-interlace algorithm written by Jim
19831 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
19832 uses filter coefficients calculated by BBC R&D.
19833
19834 This filter uses field-dominance information in frame to decide which
19835 of each pair of fields to place first in the output.
19836 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
19837
19838 There are two sets of filter coefficients, so called "simple"
19839 and "complex". Which set of filter coefficients is used can
19840 be set by passing an optional parameter:
19841
19842 @table @option
19843 @item filter
19844 Set the interlacing filter coefficients. Accepts one of the following values:
19845
19846 @table @samp
19847 @item simple
19848 Simple filter coefficient set.
19849 @item complex
19850 More-complex filter coefficient set.
19851 @end table
19852 Default value is @samp{complex}.
19853
19854 @item deint
19855 Specify which frames to deinterlace. Accepts one of the following values:
19856
19857 @table @samp
19858 @item all
19859 Deinterlace all frames,
19860 @item interlaced
19861 Only deinterlace frames marked as interlaced.
19862 @end table
19863
19864 Default value is @samp{all}.
19865 @end table
19866
19867 @section waveform
19868 Video waveform monitor.
19869
19870 The waveform monitor plots color component intensity. By default luminance
19871 only. Each column of the waveform corresponds to a column of pixels in the
19872 source video.
19873
19874 It accepts the following options:
19875
19876 @table @option
19877 @item mode, m
19878 Can be either @code{row}, or @code{column}. Default is @code{column}.
19879 In row mode, the graph on the left side represents color component value 0 and
19880 the right side represents value = 255. In column mode, the top side represents
19881 color component value = 0 and bottom side represents value = 255.
19882
19883 @item intensity, i
19884 Set intensity. Smaller values are useful to find out how many values of the same
19885 luminance are distributed across input rows/columns.
19886 Default value is @code{0.04}. Allowed range is [0, 1].
19887
19888 @item mirror, r
19889 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
19890 In mirrored mode, higher values will be represented on the left
19891 side for @code{row} mode and at the top for @code{column} mode. Default is
19892 @code{1} (mirrored).
19893
19894 @item display, d
19895 Set display mode.
19896 It accepts the following values:
19897 @table @samp
19898 @item overlay
19899 Presents information identical to that in the @code{parade}, except
19900 that the graphs representing color components are superimposed directly
19901 over one another.
19902
19903 This display mode makes it easier to spot relative differences or similarities
19904 in overlapping areas of the color components that are supposed to be identical,
19905 such as neutral whites, grays, or blacks.
19906
19907 @item stack
19908 Display separate graph for the color components side by side in
19909 @code{row} mode or one below the other in @code{column} mode.
19910
19911 @item parade
19912 Display separate graph for the color components side by side in
19913 @code{column} mode or one below the other in @code{row} mode.
19914
19915 Using this display mode makes it easy to spot color casts in the highlights
19916 and shadows of an image, by comparing the contours of the top and the bottom
19917 graphs of each waveform. Since whites, grays, and blacks are characterized
19918 by exactly equal amounts of red, green, and blue, neutral areas of the picture
19919 should display three waveforms of roughly equal width/height. If not, the
19920 correction is easy to perform by making level adjustments the three waveforms.
19921 @end table
19922 Default is @code{stack}.
19923
19924 @item components, c
19925 Set which color components to display. Default is 1, which means only luminance
19926 or red color component if input is in RGB colorspace. If is set for example to
19927 7 it will display all 3 (if) available color components.
19928
19929 @item envelope, e
19930 @table @samp
19931 @item none
19932 No envelope, this is default.
19933
19934 @item instant
19935 Instant envelope, minimum and maximum values presented in graph will be easily
19936 visible even with small @code{step} value.
19937
19938 @item peak
19939 Hold minimum and maximum values presented in graph across time. This way you
19940 can still spot out of range values without constantly looking at waveforms.
19941
19942 @item peak+instant
19943 Peak and instant envelope combined together.
19944 @end table
19945
19946 @item filter, f
19947 @table @samp
19948 @item lowpass
19949 No filtering, this is default.
19950
19951 @item flat
19952 Luma and chroma combined together.
19953
19954 @item aflat
19955 Similar as above, but shows difference between blue and red chroma.
19956
19957 @item xflat
19958 Similar as above, but use different colors.
19959
19960 @item yflat
19961 Similar as above, but again with different colors.
19962
19963 @item chroma
19964 Displays only chroma.
19965
19966 @item color
19967 Displays actual color value on waveform.
19968
19969 @item acolor
19970 Similar as above, but with luma showing frequency of chroma values.
19971 @end table
19972
19973 @item graticule, g
19974 Set which graticule to display.
19975
19976 @table @samp
19977 @item none
19978 Do not display graticule.
19979
19980 @item green
19981 Display green graticule showing legal broadcast ranges.
19982
19983 @item orange
19984 Display orange graticule showing legal broadcast ranges.
19985
19986 @item invert
19987 Display invert graticule showing legal broadcast ranges.
19988 @end table
19989
19990 @item opacity, o
19991 Set graticule opacity.
19992
19993 @item flags, fl
19994 Set graticule flags.
19995
19996 @table @samp
19997 @item numbers
19998 Draw numbers above lines. By default enabled.
19999
20000 @item dots
20001 Draw dots instead of lines.
20002 @end table
20003
20004 @item scale, s
20005 Set scale used for displaying graticule.
20006
20007 @table @samp
20008 @item digital
20009 @item millivolts
20010 @item ire
20011 @end table
20012 Default is digital.
20013
20014 @item bgopacity, b
20015 Set background opacity.
20016
20017 @item tint0, t0
20018 @item tint1, t1
20019 Set tint for output.
20020 Only used with lowpass filter and when display is not overlay and input
20021 pixel formats are not RGB.
20022 @end table
20023
20024 @section weave, doubleweave
20025
20026 The @code{weave} takes a field-based video input and join
20027 each two sequential fields into single frame, producing a new double
20028 height clip with half the frame rate and half the frame count.
20029
20030 The @code{doubleweave} works same as @code{weave} but without
20031 halving frame rate and frame count.
20032
20033 It accepts the following option:
20034
20035 @table @option
20036 @item first_field
20037 Set first field. Available values are:
20038
20039 @table @samp
20040 @item top, t
20041 Set the frame as top-field-first.
20042
20043 @item bottom, b
20044 Set the frame as bottom-field-first.
20045 @end table
20046 @end table
20047
20048 @subsection Examples
20049
20050 @itemize
20051 @item
20052 Interlace video using @ref{select} and @ref{separatefields} filter:
20053 @example
20054 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
20055 @end example
20056 @end itemize
20057
20058 @section xbr
20059 Apply the xBR high-quality magnification filter which is designed for pixel
20060 art. It follows a set of edge-detection rules, see
20061 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
20062
20063 It accepts the following option:
20064
20065 @table @option
20066 @item n
20067 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
20068 @code{3xBR} and @code{4} for @code{4xBR}.
20069 Default is @code{3}.
20070 @end table
20071
20072 @section xfade
20073
20074 Apply cross fade from one input video stream to another input video stream.
20075 The cross fade is applied for specified duration.
20076
20077 The filter accepts the following options:
20078
20079 @table @option
20080 @item transition
20081 Set one of available transition effects:
20082
20083 @table @samp
20084 @item custom
20085 @item fade
20086 @item wipeleft
20087 @item wiperight
20088 @item wipeup
20089 @item wipedown
20090 @item slideleft
20091 @item slideright
20092 @item slideup
20093 @item slidedown
20094 @item circlecrop
20095 @item rectcrop
20096 @item distance
20097 @item fadeblack
20098 @item fadewhite
20099 @item radial
20100 @item smoothleft
20101 @item smoothright
20102 @item smoothup
20103 @item smoothdown
20104 @item circleopen
20105 @item circleclose
20106 @item vertopen
20107 @item vertclose
20108 @item horzopen
20109 @item horzclose
20110 @item dissolve
20111 @item pixelize
20112 @item diagtl
20113 @item diagtr
20114 @item diagbl
20115 @item diagbr
20116 @end table
20117 Default transition effect is fade.
20118
20119 @item duration
20120 Set cross fade duration in seconds.
20121 Default duration is 1 second.
20122
20123 @item offset
20124 Set cross fade start relative to first input stream in seconds.
20125 Default offset is 0.
20126
20127 @item expr
20128 Set expression for custom transition effect.
20129
20130 The expressions can use the following variables and functions:
20131
20132 @table @option
20133 @item X
20134 @item Y
20135 The coordinates of the current sample.
20136
20137 @item W
20138 @item H
20139 The width and height of the image.
20140
20141 @item P
20142 Progress of transition effect.
20143
20144 @item PLANE
20145 Currently processed plane.
20146
20147 @item A
20148 Return value of first input at current location and plane.
20149
20150 @item B
20151 Return value of second input at current location and plane.
20152
20153 @item a0(x, y)
20154 @item a1(x, y)
20155 @item a2(x, y)
20156 @item a3(x, y)
20157 Return the value of the pixel at location (@var{x},@var{y}) of the
20158 first/second/third/fourth component of first input.
20159
20160 @item b0(x, y)
20161 @item b1(x, y)
20162 @item b2(x, y)
20163 @item b3(x, y)
20164 Return the value of the pixel at location (@var{x},@var{y}) of the
20165 first/second/third/fourth component of second input.
20166 @end table
20167 @end table
20168
20169 @subsection Examples
20170
20171 @itemize
20172 @item
20173 Cross fade from one input video to another input video, with fade transition and duration of transition
20174 of 2 seconds starting at offset of 5 seconds:
20175 @example
20176 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
20177 @end example
20178 @end itemize
20179
20180 @section xmedian
20181 Pick median pixels from several input videos.
20182
20183 The filter accepts the following options:
20184
20185 @table @option
20186 @item inputs
20187 Set number of inputs.
20188 Default is 3. Allowed range is from 3 to 255.
20189 If number of inputs is even number, than result will be mean value between two median values.
20190
20191 @item planes
20192 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
20193
20194 @item percentile
20195 Set median percentile. Default value is @code{0.5}.
20196 Default value of @code{0.5} will pick always median values, while @code{0} will pick
20197 minimum values, and @code{1} maximum values.
20198 @end table
20199
20200 @section xstack
20201 Stack video inputs into custom layout.
20202
20203 All streams must be of same pixel format.
20204
20205 The filter accepts the following options:
20206
20207 @table @option
20208 @item inputs
20209 Set number of input streams. Default is 2.
20210
20211 @item layout
20212 Specify layout of inputs.
20213 This option requires the desired layout configuration to be explicitly set by the user.
20214 This sets position of each video input in output. Each input
20215 is separated by '|'.
20216 The first number represents the column, and the second number represents the row.
20217 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
20218 where X is video input from which to take width or height.
20219 Multiple values can be used when separated by '+'. In such
20220 case values are summed together.
20221
20222 Note that if inputs are of different sizes gaps may appear, as not all of
20223 the output video frame will be filled. Similarly, videos can overlap each
20224 other if their position doesn't leave enough space for the full frame of
20225 adjoining videos.
20226
20227 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
20228 a layout must be set by the user.
20229
20230 @item shortest
20231 If set to 1, force the output to terminate when the shortest input
20232 terminates. Default value is 0.
20233
20234 @item fill
20235 If set to valid color, all unused pixels will be filled with that color.
20236 By default fill is set to none, so it is disabled.
20237 @end table
20238
20239 @subsection Examples
20240
20241 @itemize
20242 @item
20243 Display 4 inputs into 2x2 grid.
20244
20245 Layout:
20246 @example
20247 input1(0, 0)  | input3(w0, 0)
20248 input2(0, h0) | input4(w0, h0)
20249 @end example
20250
20251 @example
20252 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
20253 @end example
20254
20255 Note that if inputs are of different sizes, gaps or overlaps may occur.
20256
20257 @item
20258 Display 4 inputs into 1x4 grid.
20259
20260 Layout:
20261 @example
20262 input1(0, 0)
20263 input2(0, h0)
20264 input3(0, h0+h1)
20265 input4(0, h0+h1+h2)
20266 @end example
20267
20268 @example
20269 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
20270 @end example
20271
20272 Note that if inputs are of different widths, unused space will appear.
20273
20274 @item
20275 Display 9 inputs into 3x3 grid.
20276
20277 Layout:
20278 @example
20279 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
20280 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
20281 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
20282 @end example
20283
20284 @example
20285 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
20286 @end example
20287
20288 Note that if inputs are of different sizes, gaps or overlaps may occur.
20289
20290 @item
20291 Display 16 inputs into 4x4 grid.
20292
20293 Layout:
20294 @example
20295 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
20296 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
20297 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
20298 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
20299 @end example
20300
20301 @example
20302 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|
20303 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
20304 @end example
20305
20306 Note that if inputs are of different sizes, gaps or overlaps may occur.
20307
20308 @end itemize
20309
20310 @anchor{yadif}
20311 @section yadif
20312
20313 Deinterlace the input video ("yadif" means "yet another deinterlacing
20314 filter").
20315
20316 It accepts the following parameters:
20317
20318
20319 @table @option
20320
20321 @item mode
20322 The interlacing mode to adopt. It accepts one of the following values:
20323
20324 @table @option
20325 @item 0, send_frame
20326 Output one frame for each frame.
20327 @item 1, send_field
20328 Output one frame for each field.
20329 @item 2, send_frame_nospatial
20330 Like @code{send_frame}, but it skips the spatial interlacing check.
20331 @item 3, send_field_nospatial
20332 Like @code{send_field}, but it skips the spatial interlacing check.
20333 @end table
20334
20335 The default value is @code{send_frame}.
20336
20337 @item parity
20338 The picture field parity assumed for the input interlaced video. It accepts one
20339 of the following values:
20340
20341 @table @option
20342 @item 0, tff
20343 Assume the top field is first.
20344 @item 1, bff
20345 Assume the bottom field is first.
20346 @item -1, auto
20347 Enable automatic detection of field parity.
20348 @end table
20349
20350 The default value is @code{auto}.
20351 If the interlacing is unknown or the decoder does not export this information,
20352 top field first will be assumed.
20353
20354 @item deint
20355 Specify which frames to deinterlace. Accepts one of the following
20356 values:
20357
20358 @table @option
20359 @item 0, all
20360 Deinterlace all frames.
20361 @item 1, interlaced
20362 Only deinterlace frames marked as interlaced.
20363 @end table
20364
20365 The default value is @code{all}.
20366 @end table
20367
20368 @section yadif_cuda
20369
20370 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
20371 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
20372 and/or nvenc.
20373
20374 It accepts the following parameters:
20375
20376
20377 @table @option
20378
20379 @item mode
20380 The interlacing mode to adopt. It accepts one of the following values:
20381
20382 @table @option
20383 @item 0, send_frame
20384 Output one frame for each frame.
20385 @item 1, send_field
20386 Output one frame for each field.
20387 @item 2, send_frame_nospatial
20388 Like @code{send_frame}, but it skips the spatial interlacing check.
20389 @item 3, send_field_nospatial
20390 Like @code{send_field}, but it skips the spatial interlacing check.
20391 @end table
20392
20393 The default value is @code{send_frame}.
20394
20395 @item parity
20396 The picture field parity assumed for the input interlaced video. It accepts one
20397 of the following values:
20398
20399 @table @option
20400 @item 0, tff
20401 Assume the top field is first.
20402 @item 1, bff
20403 Assume the bottom field is first.
20404 @item -1, auto
20405 Enable automatic detection of field parity.
20406 @end table
20407
20408 The default value is @code{auto}.
20409 If the interlacing is unknown or the decoder does not export this information,
20410 top field first will be assumed.
20411
20412 @item deint
20413 Specify which frames to deinterlace. Accepts one of the following
20414 values:
20415
20416 @table @option
20417 @item 0, all
20418 Deinterlace all frames.
20419 @item 1, interlaced
20420 Only deinterlace frames marked as interlaced.
20421 @end table
20422
20423 The default value is @code{all}.
20424 @end table
20425
20426 @section yaepblur
20427
20428 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
20429 The algorithm is described in
20430 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
20431
20432 It accepts the following parameters:
20433
20434 @table @option
20435 @item radius, r
20436 Set the window radius. Default value is 3.
20437
20438 @item planes, p
20439 Set which planes to filter. Default is only the first plane.
20440
20441 @item sigma, s
20442 Set blur strength. Default value is 128.
20443 @end table
20444
20445 @subsection Commands
20446 This filter supports same @ref{commands} as options.
20447
20448 @section zoompan
20449
20450 Apply Zoom & Pan effect.
20451
20452 This filter accepts the following options:
20453
20454 @table @option
20455 @item zoom, z
20456 Set the zoom expression. Range is 1-10. Default is 1.
20457
20458 @item x
20459 @item y
20460 Set the x and y expression. Default is 0.
20461
20462 @item d
20463 Set the duration expression in number of frames.
20464 This sets for how many number of frames effect will last for
20465 single input image.
20466
20467 @item s
20468 Set the output image size, default is 'hd720'.
20469
20470 @item fps
20471 Set the output frame rate, default is '25'.
20472 @end table
20473
20474 Each expression can contain the following constants:
20475
20476 @table @option
20477 @item in_w, iw
20478 Input width.
20479
20480 @item in_h, ih
20481 Input height.
20482
20483 @item out_w, ow
20484 Output width.
20485
20486 @item out_h, oh
20487 Output height.
20488
20489 @item in
20490 Input frame count.
20491
20492 @item on
20493 Output frame count.
20494
20495 @item x
20496 @item y
20497 Last calculated 'x' and 'y' position from 'x' and 'y' expression
20498 for current input frame.
20499
20500 @item px
20501 @item py
20502 'x' and 'y' of last output frame of previous input frame or 0 when there was
20503 not yet such frame (first input frame).
20504
20505 @item zoom
20506 Last calculated zoom from 'z' expression for current input frame.
20507
20508 @item pzoom
20509 Last calculated zoom of last output frame of previous input frame.
20510
20511 @item duration
20512 Number of output frames for current input frame. Calculated from 'd' expression
20513 for each input frame.
20514
20515 @item pduration
20516 number of output frames created for previous input frame
20517
20518 @item a
20519 Rational number: input width / input height
20520
20521 @item sar
20522 sample aspect ratio
20523
20524 @item dar
20525 display aspect ratio
20526
20527 @end table
20528
20529 @subsection Examples
20530
20531 @itemize
20532 @item
20533 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
20534 @example
20535 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
20536 @end example
20537
20538 @item
20539 Zoom-in up to 1.5 and pan always at center of picture:
20540 @example
20541 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20542 @end example
20543
20544 @item
20545 Same as above but without pausing:
20546 @example
20547 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20548 @end example
20549 @end itemize
20550
20551 @anchor{zscale}
20552 @section zscale
20553 Scale (resize) the input video, using the z.lib library:
20554 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
20555 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
20556
20557 The zscale filter forces the output display aspect ratio to be the same
20558 as the input, by changing the output sample aspect ratio.
20559
20560 If the input image format is different from the format requested by
20561 the next filter, the zscale filter will convert the input to the
20562 requested format.
20563
20564 @subsection Options
20565 The filter accepts the following options.
20566
20567 @table @option
20568 @item width, w
20569 @item height, h
20570 Set the output video dimension expression. Default value is the input
20571 dimension.
20572
20573 If the @var{width} or @var{w} value is 0, the input width is used for
20574 the output. If the @var{height} or @var{h} value is 0, the input height
20575 is used for the output.
20576
20577 If one and only one of the values is -n with n >= 1, the zscale filter
20578 will use a value that maintains the aspect ratio of the input image,
20579 calculated from the other specified dimension. After that it will,
20580 however, make sure that the calculated dimension is divisible by n and
20581 adjust the value if necessary.
20582
20583 If both values are -n with n >= 1, the behavior will be identical to
20584 both values being set to 0 as previously detailed.
20585
20586 See below for the list of accepted constants for use in the dimension
20587 expression.
20588
20589 @item size, s
20590 Set the video size. For the syntax of this option, check the
20591 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20592
20593 @item dither, d
20594 Set the dither type.
20595
20596 Possible values are:
20597 @table @var
20598 @item none
20599 @item ordered
20600 @item random
20601 @item error_diffusion
20602 @end table
20603
20604 Default is none.
20605
20606 @item filter, f
20607 Set the resize filter type.
20608
20609 Possible values are:
20610 @table @var
20611 @item point
20612 @item bilinear
20613 @item bicubic
20614 @item spline16
20615 @item spline36
20616 @item lanczos
20617 @end table
20618
20619 Default is bilinear.
20620
20621 @item range, r
20622 Set the color range.
20623
20624 Possible values are:
20625 @table @var
20626 @item input
20627 @item limited
20628 @item full
20629 @end table
20630
20631 Default is same as input.
20632
20633 @item primaries, p
20634 Set the color primaries.
20635
20636 Possible values are:
20637 @table @var
20638 @item input
20639 @item 709
20640 @item unspecified
20641 @item 170m
20642 @item 240m
20643 @item 2020
20644 @end table
20645
20646 Default is same as input.
20647
20648 @item transfer, t
20649 Set the transfer characteristics.
20650
20651 Possible values are:
20652 @table @var
20653 @item input
20654 @item 709
20655 @item unspecified
20656 @item 601
20657 @item linear
20658 @item 2020_10
20659 @item 2020_12
20660 @item smpte2084
20661 @item iec61966-2-1
20662 @item arib-std-b67
20663 @end table
20664
20665 Default is same as input.
20666
20667 @item matrix, m
20668 Set the colorspace matrix.
20669
20670 Possible value are:
20671 @table @var
20672 @item input
20673 @item 709
20674 @item unspecified
20675 @item 470bg
20676 @item 170m
20677 @item 2020_ncl
20678 @item 2020_cl
20679 @end table
20680
20681 Default is same as input.
20682
20683 @item rangein, rin
20684 Set the input color range.
20685
20686 Possible values are:
20687 @table @var
20688 @item input
20689 @item limited
20690 @item full
20691 @end table
20692
20693 Default is same as input.
20694
20695 @item primariesin, pin
20696 Set the input color primaries.
20697
20698 Possible values are:
20699 @table @var
20700 @item input
20701 @item 709
20702 @item unspecified
20703 @item 170m
20704 @item 240m
20705 @item 2020
20706 @end table
20707
20708 Default is same as input.
20709
20710 @item transferin, tin
20711 Set the input transfer characteristics.
20712
20713 Possible values are:
20714 @table @var
20715 @item input
20716 @item 709
20717 @item unspecified
20718 @item 601
20719 @item linear
20720 @item 2020_10
20721 @item 2020_12
20722 @end table
20723
20724 Default is same as input.
20725
20726 @item matrixin, min
20727 Set the input colorspace matrix.
20728
20729 Possible value are:
20730 @table @var
20731 @item input
20732 @item 709
20733 @item unspecified
20734 @item 470bg
20735 @item 170m
20736 @item 2020_ncl
20737 @item 2020_cl
20738 @end table
20739
20740 @item chromal, c
20741 Set the output chroma location.
20742
20743 Possible values are:
20744 @table @var
20745 @item input
20746 @item left
20747 @item center
20748 @item topleft
20749 @item top
20750 @item bottomleft
20751 @item bottom
20752 @end table
20753
20754 @item chromalin, cin
20755 Set the input chroma location.
20756
20757 Possible values are:
20758 @table @var
20759 @item input
20760 @item left
20761 @item center
20762 @item topleft
20763 @item top
20764 @item bottomleft
20765 @item bottom
20766 @end table
20767
20768 @item npl
20769 Set the nominal peak luminance.
20770 @end table
20771
20772 The values of the @option{w} and @option{h} options are expressions
20773 containing the following constants:
20774
20775 @table @var
20776 @item in_w
20777 @item in_h
20778 The input width and height
20779
20780 @item iw
20781 @item ih
20782 These are the same as @var{in_w} and @var{in_h}.
20783
20784 @item out_w
20785 @item out_h
20786 The output (scaled) width and height
20787
20788 @item ow
20789 @item oh
20790 These are the same as @var{out_w} and @var{out_h}
20791
20792 @item a
20793 The same as @var{iw} / @var{ih}
20794
20795 @item sar
20796 input sample aspect ratio
20797
20798 @item dar
20799 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
20800
20801 @item hsub
20802 @item vsub
20803 horizontal and vertical input chroma subsample values. For example for the
20804 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20805
20806 @item ohsub
20807 @item ovsub
20808 horizontal and vertical output chroma subsample values. For example for the
20809 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20810 @end table
20811
20812 @subsection Commands
20813
20814 This filter supports the following commands:
20815 @table @option
20816 @item width, w
20817 @item height, h
20818 Set the output video dimension expression.
20819 The command accepts the same syntax of the corresponding option.
20820
20821 If the specified expression is not valid, it is kept at its current
20822 value.
20823 @end table
20824
20825 @c man end VIDEO FILTERS
20826
20827 @chapter OpenCL Video Filters
20828 @c man begin OPENCL VIDEO FILTERS
20829
20830 Below is a description of the currently available OpenCL video filters.
20831
20832 To enable compilation of these filters you need to configure FFmpeg with
20833 @code{--enable-opencl}.
20834
20835 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
20836 @table @option
20837
20838 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
20839 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
20840 given device parameters.
20841
20842 @item -filter_hw_device @var{name}
20843 Pass the hardware device called @var{name} to all filters in any filter graph.
20844
20845 @end table
20846
20847 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
20848
20849 @itemize
20850 @item
20851 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
20852 @example
20853 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
20854 @end example
20855 @end itemize
20856
20857 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.
20858
20859 @section avgblur_opencl
20860
20861 Apply average blur filter.
20862
20863 The filter accepts the following options:
20864
20865 @table @option
20866 @item sizeX
20867 Set horizontal radius size.
20868 Range is @code{[1, 1024]} and default value is @code{1}.
20869
20870 @item planes
20871 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20872
20873 @item sizeY
20874 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
20875 @end table
20876
20877 @subsection Example
20878
20879 @itemize
20880 @item
20881 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.
20882 @example
20883 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
20884 @end example
20885 @end itemize
20886
20887 @section boxblur_opencl
20888
20889 Apply a boxblur algorithm to the input video.
20890
20891 It accepts the following parameters:
20892
20893 @table @option
20894
20895 @item luma_radius, lr
20896 @item luma_power, lp
20897 @item chroma_radius, cr
20898 @item chroma_power, cp
20899 @item alpha_radius, ar
20900 @item alpha_power, ap
20901
20902 @end table
20903
20904 A description of the accepted options follows.
20905
20906 @table @option
20907 @item luma_radius, lr
20908 @item chroma_radius, cr
20909 @item alpha_radius, ar
20910 Set an expression for the box radius in pixels used for blurring the
20911 corresponding input plane.
20912
20913 The radius value must be a non-negative number, and must not be
20914 greater than the value of the expression @code{min(w,h)/2} for the
20915 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
20916 planes.
20917
20918 Default value for @option{luma_radius} is "2". If not specified,
20919 @option{chroma_radius} and @option{alpha_radius} default to the
20920 corresponding value set for @option{luma_radius}.
20921
20922 The expressions can contain the following constants:
20923 @table @option
20924 @item w
20925 @item h
20926 The input width and height in pixels.
20927
20928 @item cw
20929 @item ch
20930 The input chroma image width and height in pixels.
20931
20932 @item hsub
20933 @item vsub
20934 The horizontal and vertical chroma subsample values. For example, for the
20935 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
20936 @end table
20937
20938 @item luma_power, lp
20939 @item chroma_power, cp
20940 @item alpha_power, ap
20941 Specify how many times the boxblur filter is applied to the
20942 corresponding plane.
20943
20944 Default value for @option{luma_power} is 2. If not specified,
20945 @option{chroma_power} and @option{alpha_power} default to the
20946 corresponding value set for @option{luma_power}.
20947
20948 A value of 0 will disable the effect.
20949 @end table
20950
20951 @subsection Examples
20952
20953 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.
20954
20955 @itemize
20956 @item
20957 Apply a boxblur filter with the luma, chroma, and alpha radius
20958 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.
20959 @example
20960 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
20961 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
20962 @end example
20963
20964 @item
20965 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.
20966
20967 For the luma plane, a 2x2 box radius will be run once.
20968
20969 For the chroma plane, a 4x4 box radius will be run 5 times.
20970
20971 For the alpha plane, a 3x3 box radius will be run 7 times.
20972 @example
20973 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
20974 @end example
20975 @end itemize
20976
20977 @section colorkey_opencl
20978 RGB colorspace color keying.
20979
20980 The filter accepts the following options:
20981
20982 @table @option
20983 @item color
20984 The color which will be replaced with transparency.
20985
20986 @item similarity
20987 Similarity percentage with the key color.
20988
20989 0.01 matches only the exact key color, while 1.0 matches everything.
20990
20991 @item blend
20992 Blend percentage.
20993
20994 0.0 makes pixels either fully transparent, or not transparent at all.
20995
20996 Higher values result in semi-transparent pixels, with a higher transparency
20997 the more similar the pixels color is to the key color.
20998 @end table
20999
21000 @subsection Examples
21001
21002 @itemize
21003 @item
21004 Make every semi-green pixel in the input transparent with some slight blending:
21005 @example
21006 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
21007 @end example
21008 @end itemize
21009
21010 @section convolution_opencl
21011
21012 Apply convolution of 3x3, 5x5, 7x7 matrix.
21013
21014 The filter accepts the following options:
21015
21016 @table @option
21017 @item 0m
21018 @item 1m
21019 @item 2m
21020 @item 3m
21021 Set matrix for each plane.
21022 Matrix is sequence of 9, 25 or 49 signed numbers.
21023 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
21024
21025 @item 0rdiv
21026 @item 1rdiv
21027 @item 2rdiv
21028 @item 3rdiv
21029 Set multiplier for calculated value for each plane.
21030 If unset or 0, it will be sum of all matrix elements.
21031 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
21032
21033 @item 0bias
21034 @item 1bias
21035 @item 2bias
21036 @item 3bias
21037 Set bias for each plane. This value is added to the result of the multiplication.
21038 Useful for making the overall image brighter or darker.
21039 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
21040
21041 @end table
21042
21043 @subsection Examples
21044
21045 @itemize
21046 @item
21047 Apply sharpen:
21048 @example
21049 -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
21050 @end example
21051
21052 @item
21053 Apply blur:
21054 @example
21055 -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
21056 @end example
21057
21058 @item
21059 Apply edge enhance:
21060 @example
21061 -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
21062 @end example
21063
21064 @item
21065 Apply edge detect:
21066 @example
21067 -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
21068 @end example
21069
21070 @item
21071 Apply laplacian edge detector which includes diagonals:
21072 @example
21073 -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
21074 @end example
21075
21076 @item
21077 Apply emboss:
21078 @example
21079 -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
21080 @end example
21081 @end itemize
21082
21083 @section erosion_opencl
21084
21085 Apply erosion effect to the video.
21086
21087 This filter replaces the pixel by the local(3x3) minimum.
21088
21089 It accepts the following options:
21090
21091 @table @option
21092 @item threshold0
21093 @item threshold1
21094 @item threshold2
21095 @item threshold3
21096 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21097 If @code{0}, plane will remain unchanged.
21098
21099 @item coordinates
21100 Flag which specifies the pixel to refer to.
21101 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21102
21103 Flags to local 3x3 coordinates region centered on @code{x}:
21104
21105     1 2 3
21106
21107     4 x 5
21108
21109     6 7 8
21110 @end table
21111
21112 @subsection Example
21113
21114 @itemize
21115 @item
21116 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.
21117 @example
21118 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21119 @end example
21120 @end itemize
21121
21122 @section deshake_opencl
21123 Feature-point based video stabilization filter.
21124
21125 The filter accepts the following options:
21126
21127 @table @option
21128 @item tripod
21129 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
21130
21131 @item debug
21132 Whether or not additional debug info should be displayed, both in the processed output and in the console.
21133
21134 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
21135
21136 Viewing point matches in the output video is only supported for RGB input.
21137
21138 Defaults to @code{0}.
21139
21140 @item adaptive_crop
21141 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
21142
21143 Defaults to @code{1}.
21144
21145 @item refine_features
21146 Whether or not feature points should be refined at a sub-pixel level.
21147
21148 This can be turned off for a slight performance gain at the cost of precision.
21149
21150 Defaults to @code{1}.
21151
21152 @item smooth_strength
21153 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
21154
21155 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
21156
21157 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
21158
21159 Defaults to @code{0.0}.
21160
21161 @item smooth_window_multiplier
21162 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
21163
21164 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
21165
21166 Acceptable values range from @code{0.1} to @code{10.0}.
21167
21168 Larger values increase the amount of motion data available for determining how to smooth the camera path,
21169 potentially improving smoothness, but also increase latency and memory usage.
21170
21171 Defaults to @code{2.0}.
21172
21173 @end table
21174
21175 @subsection Examples
21176
21177 @itemize
21178 @item
21179 Stabilize a video with a fixed, medium smoothing strength:
21180 @example
21181 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
21182 @end example
21183
21184 @item
21185 Stabilize a video with debugging (both in console and in rendered video):
21186 @example
21187 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
21188 @end example
21189 @end itemize
21190
21191 @section dilation_opencl
21192
21193 Apply dilation effect to the video.
21194
21195 This filter replaces the pixel by the local(3x3) maximum.
21196
21197 It accepts the following options:
21198
21199 @table @option
21200 @item threshold0
21201 @item threshold1
21202 @item threshold2
21203 @item threshold3
21204 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21205 If @code{0}, plane will remain unchanged.
21206
21207 @item coordinates
21208 Flag which specifies the pixel to refer to.
21209 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21210
21211 Flags to local 3x3 coordinates region centered on @code{x}:
21212
21213     1 2 3
21214
21215     4 x 5
21216
21217     6 7 8
21218 @end table
21219
21220 @subsection Example
21221
21222 @itemize
21223 @item
21224 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.
21225 @example
21226 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21227 @end example
21228 @end itemize
21229
21230 @section nlmeans_opencl
21231
21232 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
21233
21234 @section overlay_opencl
21235
21236 Overlay one video on top of another.
21237
21238 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
21239 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
21240
21241 The filter accepts the following options:
21242
21243 @table @option
21244
21245 @item x
21246 Set the x coordinate of the overlaid video on the main video.
21247 Default value is @code{0}.
21248
21249 @item y
21250 Set the y coordinate of the overlaid video on the main video.
21251 Default value is @code{0}.
21252
21253 @end table
21254
21255 @subsection Examples
21256
21257 @itemize
21258 @item
21259 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
21260 @example
21261 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21262 @end example
21263 @item
21264 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
21265 @example
21266 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21267 @end example
21268
21269 @end itemize
21270
21271 @section pad_opencl
21272
21273 Add paddings to the input image, and place the original input at the
21274 provided @var{x}, @var{y} coordinates.
21275
21276 It accepts the following options:
21277
21278 @table @option
21279 @item width, w
21280 @item height, h
21281 Specify an expression for the size of the output image with the
21282 paddings added. If the value for @var{width} or @var{height} is 0, the
21283 corresponding input size is used for the output.
21284
21285 The @var{width} expression can reference the value set by the
21286 @var{height} expression, and vice versa.
21287
21288 The default value of @var{width} and @var{height} is 0.
21289
21290 @item x
21291 @item y
21292 Specify the offsets to place the input image at within the padded area,
21293 with respect to the top/left border of the output image.
21294
21295 The @var{x} expression can reference the value set by the @var{y}
21296 expression, and vice versa.
21297
21298 The default value of @var{x} and @var{y} is 0.
21299
21300 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
21301 so the input image is centered on the padded area.
21302
21303 @item color
21304 Specify the color of the padded area. For the syntax of this option,
21305 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
21306 manual,ffmpeg-utils}.
21307
21308 @item aspect
21309 Pad to an aspect instead to a resolution.
21310 @end table
21311
21312 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
21313 options are expressions containing the following constants:
21314
21315 @table @option
21316 @item in_w
21317 @item in_h
21318 The input video width and height.
21319
21320 @item iw
21321 @item ih
21322 These are the same as @var{in_w} and @var{in_h}.
21323
21324 @item out_w
21325 @item out_h
21326 The output width and height (the size of the padded area), as
21327 specified by the @var{width} and @var{height} expressions.
21328
21329 @item ow
21330 @item oh
21331 These are the same as @var{out_w} and @var{out_h}.
21332
21333 @item x
21334 @item y
21335 The x and y offsets as specified by the @var{x} and @var{y}
21336 expressions, or NAN if not yet specified.
21337
21338 @item a
21339 same as @var{iw} / @var{ih}
21340
21341 @item sar
21342 input sample aspect ratio
21343
21344 @item dar
21345 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
21346 @end table
21347
21348 @section prewitt_opencl
21349
21350 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
21351
21352 The filter accepts the following option:
21353
21354 @table @option
21355 @item planes
21356 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21357
21358 @item scale
21359 Set value which will be multiplied with filtered result.
21360 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21361
21362 @item delta
21363 Set value which will be added to filtered result.
21364 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21365 @end table
21366
21367 @subsection Example
21368
21369 @itemize
21370 @item
21371 Apply the Prewitt operator with scale set to 2 and delta set to 10.
21372 @example
21373 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
21374 @end example
21375 @end itemize
21376
21377 @anchor{program_opencl}
21378 @section program_opencl
21379
21380 Filter video using an OpenCL program.
21381
21382 @table @option
21383
21384 @item source
21385 OpenCL program source file.
21386
21387 @item kernel
21388 Kernel name in program.
21389
21390 @item inputs
21391 Number of inputs to the filter.  Defaults to 1.
21392
21393 @item size, s
21394 Size of output frames.  Defaults to the same as the first input.
21395
21396 @end table
21397
21398 The @code{program_opencl} filter also supports the @ref{framesync} options.
21399
21400 The program source file must contain a kernel function with the given name,
21401 which will be run once for each plane of the output.  Each run on a plane
21402 gets enqueued as a separate 2D global NDRange with one work-item for each
21403 pixel to be generated.  The global ID offset for each work-item is therefore
21404 the coordinates of a pixel in the destination image.
21405
21406 The kernel function needs to take the following arguments:
21407 @itemize
21408 @item
21409 Destination image, @var{__write_only image2d_t}.
21410
21411 This image will become the output; the kernel should write all of it.
21412 @item
21413 Frame index, @var{unsigned int}.
21414
21415 This is a counter starting from zero and increasing by one for each frame.
21416 @item
21417 Source images, @var{__read_only image2d_t}.
21418
21419 These are the most recent images on each input.  The kernel may read from
21420 them to generate the output, but they can't be written to.
21421 @end itemize
21422
21423 Example programs:
21424
21425 @itemize
21426 @item
21427 Copy the input to the output (output must be the same size as the input).
21428 @verbatim
21429 __kernel void copy(__write_only image2d_t destination,
21430                    unsigned int index,
21431                    __read_only  image2d_t source)
21432 {
21433     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
21434
21435     int2 location = (int2)(get_global_id(0), get_global_id(1));
21436
21437     float4 value = read_imagef(source, sampler, location);
21438
21439     write_imagef(destination, location, value);
21440 }
21441 @end verbatim
21442
21443 @item
21444 Apply a simple transformation, rotating the input by an amount increasing
21445 with the index counter.  Pixel values are linearly interpolated by the
21446 sampler, and the output need not have the same dimensions as the input.
21447 @verbatim
21448 __kernel void rotate_image(__write_only image2d_t dst,
21449                            unsigned int index,
21450                            __read_only  image2d_t src)
21451 {
21452     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21453                                CLK_FILTER_LINEAR);
21454
21455     float angle = (float)index / 100.0f;
21456
21457     float2 dst_dim = convert_float2(get_image_dim(dst));
21458     float2 src_dim = convert_float2(get_image_dim(src));
21459
21460     float2 dst_cen = dst_dim / 2.0f;
21461     float2 src_cen = src_dim / 2.0f;
21462
21463     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
21464
21465     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
21466     float2 src_pos = {
21467         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
21468         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
21469     };
21470     src_pos = src_pos * src_dim / dst_dim;
21471
21472     float2 src_loc = src_pos + src_cen;
21473
21474     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
21475         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
21476         write_imagef(dst, dst_loc, 0.5f);
21477     else
21478         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
21479 }
21480 @end verbatim
21481
21482 @item
21483 Blend two inputs together, with the amount of each input used varying
21484 with the index counter.
21485 @verbatim
21486 __kernel void blend_images(__write_only image2d_t dst,
21487                            unsigned int index,
21488                            __read_only  image2d_t src1,
21489                            __read_only  image2d_t src2)
21490 {
21491     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21492                                CLK_FILTER_LINEAR);
21493
21494     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
21495
21496     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
21497     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
21498     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
21499
21500     float4 val1 = read_imagef(src1, sampler, src1_loc);
21501     float4 val2 = read_imagef(src2, sampler, src2_loc);
21502
21503     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
21504 }
21505 @end verbatim
21506
21507 @end itemize
21508
21509 @section roberts_opencl
21510 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
21511
21512 The filter accepts the following option:
21513
21514 @table @option
21515 @item planes
21516 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21517
21518 @item scale
21519 Set value which will be multiplied with filtered result.
21520 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21521
21522 @item delta
21523 Set value which will be added to filtered result.
21524 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21525 @end table
21526
21527 @subsection Example
21528
21529 @itemize
21530 @item
21531 Apply the Roberts cross operator with scale set to 2 and delta set to 10
21532 @example
21533 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
21534 @end example
21535 @end itemize
21536
21537 @section sobel_opencl
21538
21539 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
21540
21541 The filter accepts the following option:
21542
21543 @table @option
21544 @item planes
21545 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21546
21547 @item scale
21548 Set value which will be multiplied with filtered result.
21549 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21550
21551 @item delta
21552 Set value which will be added to filtered result.
21553 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21554 @end table
21555
21556 @subsection Example
21557
21558 @itemize
21559 @item
21560 Apply sobel operator with scale set to 2 and delta set to 10
21561 @example
21562 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
21563 @end example
21564 @end itemize
21565
21566 @section tonemap_opencl
21567
21568 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
21569
21570 It accepts the following parameters:
21571
21572 @table @option
21573 @item tonemap
21574 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
21575
21576 @item param
21577 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
21578
21579 @item desat
21580 Apply desaturation for highlights that exceed this level of brightness. The
21581 higher the parameter, the more color information will be preserved. This
21582 setting helps prevent unnaturally blown-out colors for super-highlights, by
21583 (smoothly) turning into white instead. This makes images feel more natural,
21584 at the cost of reducing information about out-of-range colors.
21585
21586 The default value is 0.5, and the algorithm here is a little different from
21587 the cpu version tonemap currently. A setting of 0.0 disables this option.
21588
21589 @item threshold
21590 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
21591 is used to detect whether the scene has changed or not. If the distance between
21592 the current frame average brightness and the current running average exceeds
21593 a threshold value, we would re-calculate scene average and peak brightness.
21594 The default value is 0.2.
21595
21596 @item format
21597 Specify the output pixel format.
21598
21599 Currently supported formats are:
21600 @table @var
21601 @item p010
21602 @item nv12
21603 @end table
21604
21605 @item range, r
21606 Set the output color range.
21607
21608 Possible values are:
21609 @table @var
21610 @item tv/mpeg
21611 @item pc/jpeg
21612 @end table
21613
21614 Default is same as input.
21615
21616 @item primaries, p
21617 Set the output color primaries.
21618
21619 Possible values are:
21620 @table @var
21621 @item bt709
21622 @item bt2020
21623 @end table
21624
21625 Default is same as input.
21626
21627 @item transfer, t
21628 Set the output transfer characteristics.
21629
21630 Possible values are:
21631 @table @var
21632 @item bt709
21633 @item bt2020
21634 @end table
21635
21636 Default is bt709.
21637
21638 @item matrix, m
21639 Set the output colorspace matrix.
21640
21641 Possible value are:
21642 @table @var
21643 @item bt709
21644 @item bt2020
21645 @end table
21646
21647 Default is same as input.
21648
21649 @end table
21650
21651 @subsection Example
21652
21653 @itemize
21654 @item
21655 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
21656 @example
21657 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
21658 @end example
21659 @end itemize
21660
21661 @section unsharp_opencl
21662
21663 Sharpen or blur the input video.
21664
21665 It accepts the following parameters:
21666
21667 @table @option
21668 @item luma_msize_x, lx
21669 Set the luma matrix horizontal size.
21670 Range is @code{[1, 23]} and default value is @code{5}.
21671
21672 @item luma_msize_y, ly
21673 Set the luma matrix vertical size.
21674 Range is @code{[1, 23]} and default value is @code{5}.
21675
21676 @item luma_amount, la
21677 Set the luma effect strength.
21678 Range is @code{[-10, 10]} and default value is @code{1.0}.
21679
21680 Negative values will blur the input video, while positive values will
21681 sharpen it, a value of zero will disable the effect.
21682
21683 @item chroma_msize_x, cx
21684 Set the chroma matrix horizontal size.
21685 Range is @code{[1, 23]} and default value is @code{5}.
21686
21687 @item chroma_msize_y, cy
21688 Set the chroma matrix vertical size.
21689 Range is @code{[1, 23]} and default value is @code{5}.
21690
21691 @item chroma_amount, ca
21692 Set the chroma effect strength.
21693 Range is @code{[-10, 10]} and default value is @code{0.0}.
21694
21695 Negative values will blur the input video, while positive values will
21696 sharpen it, a value of zero will disable the effect.
21697
21698 @end table
21699
21700 All parameters are optional and default to the equivalent of the
21701 string '5:5:1.0:5:5:0.0'.
21702
21703 @subsection Examples
21704
21705 @itemize
21706 @item
21707 Apply strong luma sharpen effect:
21708 @example
21709 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
21710 @end example
21711
21712 @item
21713 Apply a strong blur of both luma and chroma parameters:
21714 @example
21715 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
21716 @end example
21717 @end itemize
21718
21719 @section xfade_opencl
21720
21721 Cross fade two videos with custom transition effect by using OpenCL.
21722
21723 It accepts the following options:
21724
21725 @table @option
21726 @item transition
21727 Set one of possible transition effects.
21728
21729 @table @option
21730 @item custom
21731 Select custom transition effect, the actual transition description
21732 will be picked from source and kernel options.
21733
21734 @item fade
21735 @item wipeleft
21736 @item wiperight
21737 @item wipeup
21738 @item wipedown
21739 @item slideleft
21740 @item slideright
21741 @item slideup
21742 @item slidedown
21743
21744 Default transition is fade.
21745 @end table
21746
21747 @item source
21748 OpenCL program source file for custom transition.
21749
21750 @item kernel
21751 Set name of kernel to use for custom transition from program source file.
21752
21753 @item duration
21754 Set duration of video transition.
21755
21756 @item offset
21757 Set time of start of transition relative to first video.
21758 @end table
21759
21760 The program source file must contain a kernel function with the given name,
21761 which will be run once for each plane of the output.  Each run on a plane
21762 gets enqueued as a separate 2D global NDRange with one work-item for each
21763 pixel to be generated.  The global ID offset for each work-item is therefore
21764 the coordinates of a pixel in the destination image.
21765
21766 The kernel function needs to take the following arguments:
21767 @itemize
21768 @item
21769 Destination image, @var{__write_only image2d_t}.
21770
21771 This image will become the output; the kernel should write all of it.
21772
21773 @item
21774 First Source image, @var{__read_only image2d_t}.
21775 Second Source image, @var{__read_only image2d_t}.
21776
21777 These are the most recent images on each input.  The kernel may read from
21778 them to generate the output, but they can't be written to.
21779
21780 @item
21781 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
21782 @end itemize
21783
21784 Example programs:
21785
21786 @itemize
21787 @item
21788 Apply dots curtain transition effect:
21789 @verbatim
21790 __kernel void blend_images(__write_only image2d_t dst,
21791                            __read_only  image2d_t src1,
21792                            __read_only  image2d_t src2,
21793                            float progress)
21794 {
21795     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21796                                CLK_FILTER_LINEAR);
21797     int2  p = (int2)(get_global_id(0), get_global_id(1));
21798     float2 rp = (float2)(get_global_id(0), get_global_id(1));
21799     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
21800     rp = rp / dim;
21801
21802     float2 dots = (float2)(20.0, 20.0);
21803     float2 center = (float2)(0,0);
21804     float2 unused;
21805
21806     float4 val1 = read_imagef(src1, sampler, p);
21807     float4 val2 = read_imagef(src2, sampler, p);
21808     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
21809
21810     write_imagef(dst, p, next ? val1 : val2);
21811 }
21812 @end verbatim
21813
21814 @end itemize
21815
21816 @c man end OPENCL VIDEO FILTERS
21817
21818 @chapter VAAPI Video Filters
21819 @c man begin VAAPI VIDEO FILTERS
21820
21821 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
21822
21823 To enable compilation of these filters you need to configure FFmpeg with
21824 @code{--enable-vaapi}.
21825
21826 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}
21827
21828 @section tonemap_vaapi
21829
21830 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
21831 It maps the dynamic range of HDR10 content to the SDR content.
21832 It currently only accepts HDR10 as input.
21833
21834 It accepts the following parameters:
21835
21836 @table @option
21837 @item format
21838 Specify the output pixel format.
21839
21840 Currently supported formats are:
21841 @table @var
21842 @item p010
21843 @item nv12
21844 @end table
21845
21846 Default is nv12.
21847
21848 @item primaries, p
21849 Set the output color primaries.
21850
21851 Default is same as input.
21852
21853 @item transfer, t
21854 Set the output transfer characteristics.
21855
21856 Default is bt709.
21857
21858 @item matrix, m
21859 Set the output colorspace matrix.
21860
21861 Default is same as input.
21862
21863 @end table
21864
21865 @subsection Example
21866
21867 @itemize
21868 @item
21869 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
21870 @example
21871 tonemap_vaapi=format=p010:t=bt2020-10
21872 @end example
21873 @end itemize
21874
21875 @c man end VAAPI VIDEO FILTERS
21876
21877 @chapter Video Sources
21878 @c man begin VIDEO SOURCES
21879
21880 Below is a description of the currently available video sources.
21881
21882 @section buffer
21883
21884 Buffer video frames, and make them available to the filter chain.
21885
21886 This source is mainly intended for a programmatic use, in particular
21887 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
21888
21889 It accepts the following parameters:
21890
21891 @table @option
21892
21893 @item video_size
21894 Specify the size (width and height) of the buffered video frames. For the
21895 syntax of this option, check the
21896 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21897
21898 @item width
21899 The input video width.
21900
21901 @item height
21902 The input video height.
21903
21904 @item pix_fmt
21905 A string representing the pixel format of the buffered video frames.
21906 It may be a number corresponding to a pixel format, or a pixel format
21907 name.
21908
21909 @item time_base
21910 Specify the timebase assumed by the timestamps of the buffered frames.
21911
21912 @item frame_rate
21913 Specify the frame rate expected for the video stream.
21914
21915 @item pixel_aspect, sar
21916 The sample (pixel) aspect ratio of the input video.
21917
21918 @item sws_param
21919 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
21920 to the filtergraph description to specify swscale flags for automatically
21921 inserted scalers. See @ref{Filtergraph syntax}.
21922
21923 @item hw_frames_ctx
21924 When using a hardware pixel format, this should be a reference to an
21925 AVHWFramesContext describing input frames.
21926 @end table
21927
21928 For example:
21929 @example
21930 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
21931 @end example
21932
21933 will instruct the source to accept video frames with size 320x240 and
21934 with format "yuv410p", assuming 1/24 as the timestamps timebase and
21935 square pixels (1:1 sample aspect ratio).
21936 Since the pixel format with name "yuv410p" corresponds to the number 6
21937 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
21938 this example corresponds to:
21939 @example
21940 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
21941 @end example
21942
21943 Alternatively, the options can be specified as a flat string, but this
21944 syntax is deprecated:
21945
21946 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
21947
21948 @section cellauto
21949
21950 Create a pattern generated by an elementary cellular automaton.
21951
21952 The initial state of the cellular automaton can be defined through the
21953 @option{filename} and @option{pattern} options. If such options are
21954 not specified an initial state is created randomly.
21955
21956 At each new frame a new row in the video is filled with the result of
21957 the cellular automaton next generation. The behavior when the whole
21958 frame is filled is defined by the @option{scroll} option.
21959
21960 This source accepts the following options:
21961
21962 @table @option
21963 @item filename, f
21964 Read the initial cellular automaton state, i.e. the starting row, from
21965 the specified file.
21966 In the file, each non-whitespace character is considered an alive
21967 cell, a newline will terminate the row, and further characters in the
21968 file will be ignored.
21969
21970 @item pattern, p
21971 Read the initial cellular automaton state, i.e. the starting row, from
21972 the specified string.
21973
21974 Each non-whitespace character in the string is considered an alive
21975 cell, a newline will terminate the row, and further characters in the
21976 string will be ignored.
21977
21978 @item rate, r
21979 Set the video rate, that is the number of frames generated per second.
21980 Default is 25.
21981
21982 @item random_fill_ratio, ratio
21983 Set the random fill ratio for the initial cellular automaton row. It
21984 is a floating point number value ranging from 0 to 1, defaults to
21985 1/PHI.
21986
21987 This option is ignored when a file or a pattern is specified.
21988
21989 @item random_seed, seed
21990 Set the seed for filling randomly the initial row, must be an integer
21991 included between 0 and UINT32_MAX. If not specified, or if explicitly
21992 set to -1, the filter will try to use a good random seed on a best
21993 effort basis.
21994
21995 @item rule
21996 Set the cellular automaton rule, it is a number ranging from 0 to 255.
21997 Default value is 110.
21998
21999 @item size, s
22000 Set the size of the output video. For the syntax of this option, check the
22001 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22002
22003 If @option{filename} or @option{pattern} is specified, the size is set
22004 by default to the width of the specified initial state row, and the
22005 height is set to @var{width} * PHI.
22006
22007 If @option{size} is set, it must contain the width of the specified
22008 pattern string, and the specified pattern will be centered in the
22009 larger row.
22010
22011 If a filename or a pattern string is not specified, the size value
22012 defaults to "320x518" (used for a randomly generated initial state).
22013
22014 @item scroll
22015 If set to 1, scroll the output upward when all the rows in the output
22016 have been already filled. If set to 0, the new generated row will be
22017 written over the top row just after the bottom row is filled.
22018 Defaults to 1.
22019
22020 @item start_full, full
22021 If set to 1, completely fill the output with generated rows before
22022 outputting the first frame.
22023 This is the default behavior, for disabling set the value to 0.
22024
22025 @item stitch
22026 If set to 1, stitch the left and right row edges together.
22027 This is the default behavior, for disabling set the value to 0.
22028 @end table
22029
22030 @subsection Examples
22031
22032 @itemize
22033 @item
22034 Read the initial state from @file{pattern}, and specify an output of
22035 size 200x400.
22036 @example
22037 cellauto=f=pattern:s=200x400
22038 @end example
22039
22040 @item
22041 Generate a random initial row with a width of 200 cells, with a fill
22042 ratio of 2/3:
22043 @example
22044 cellauto=ratio=2/3:s=200x200
22045 @end example
22046
22047 @item
22048 Create a pattern generated by rule 18 starting by a single alive cell
22049 centered on an initial row with width 100:
22050 @example
22051 cellauto=p=@@:s=100x400:full=0:rule=18
22052 @end example
22053
22054 @item
22055 Specify a more elaborated initial pattern:
22056 @example
22057 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
22058 @end example
22059
22060 @end itemize
22061
22062 @anchor{coreimagesrc}
22063 @section coreimagesrc
22064 Video source generated on GPU using Apple's CoreImage API on OSX.
22065
22066 This video source is a specialized version of the @ref{coreimage} video filter.
22067 Use a core image generator at the beginning of the applied filterchain to
22068 generate the content.
22069
22070 The coreimagesrc video source accepts the following options:
22071 @table @option
22072 @item list_generators
22073 List all available generators along with all their respective options as well as
22074 possible minimum and maximum values along with the default values.
22075 @example
22076 list_generators=true
22077 @end example
22078
22079 @item size, s
22080 Specify the size of the sourced video. For the syntax of this option, check the
22081 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22082 The default value is @code{320x240}.
22083
22084 @item rate, r
22085 Specify the frame rate of the sourced video, as the number of frames
22086 generated per second. It has to be a string in the format
22087 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22088 number or a valid video frame rate abbreviation. The default value is
22089 "25".
22090
22091 @item sar
22092 Set the sample aspect ratio of the sourced video.
22093
22094 @item duration, d
22095 Set the duration of the sourced video. See
22096 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22097 for the accepted syntax.
22098
22099 If not specified, or the expressed duration is negative, the video is
22100 supposed to be generated forever.
22101 @end table
22102
22103 Additionally, all options of the @ref{coreimage} video filter are accepted.
22104 A complete filterchain can be used for further processing of the
22105 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
22106 and examples for details.
22107
22108 @subsection Examples
22109
22110 @itemize
22111
22112 @item
22113 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
22114 given as complete and escaped command-line for Apple's standard bash shell:
22115 @example
22116 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
22117 @end example
22118 This example is equivalent to the QRCode example of @ref{coreimage} without the
22119 need for a nullsrc video source.
22120 @end itemize
22121
22122
22123 @section mandelbrot
22124
22125 Generate a Mandelbrot set fractal, and progressively zoom towards the
22126 point specified with @var{start_x} and @var{start_y}.
22127
22128 This source accepts the following options:
22129
22130 @table @option
22131
22132 @item end_pts
22133 Set the terminal pts value. Default value is 400.
22134
22135 @item end_scale
22136 Set the terminal scale value.
22137 Must be a floating point value. Default value is 0.3.
22138
22139 @item inner
22140 Set the inner coloring mode, that is the algorithm used to draw the
22141 Mandelbrot fractal internal region.
22142
22143 It shall assume one of the following values:
22144 @table @option
22145 @item black
22146 Set black mode.
22147 @item convergence
22148 Show time until convergence.
22149 @item mincol
22150 Set color based on point closest to the origin of the iterations.
22151 @item period
22152 Set period mode.
22153 @end table
22154
22155 Default value is @var{mincol}.
22156
22157 @item bailout
22158 Set the bailout value. Default value is 10.0.
22159
22160 @item maxiter
22161 Set the maximum of iterations performed by the rendering
22162 algorithm. Default value is 7189.
22163
22164 @item outer
22165 Set outer coloring mode.
22166 It shall assume one of following values:
22167 @table @option
22168 @item iteration_count
22169 Set iteration count mode.
22170 @item normalized_iteration_count
22171 set normalized iteration count mode.
22172 @end table
22173 Default value is @var{normalized_iteration_count}.
22174
22175 @item rate, r
22176 Set frame rate, expressed as number of frames per second. Default
22177 value is "25".
22178
22179 @item size, s
22180 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22181 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22182
22183 @item start_scale
22184 Set the initial scale value. Default value is 3.0.
22185
22186 @item start_x
22187 Set the initial x position. Must be a floating point value between
22188 -100 and 100. Default value is -0.743643887037158704752191506114774.
22189
22190 @item start_y
22191 Set the initial y position. Must be a floating point value between
22192 -100 and 100. Default value is -0.131825904205311970493132056385139.
22193 @end table
22194
22195 @section mptestsrc
22196
22197 Generate various test patterns, as generated by the MPlayer test filter.
22198
22199 The size of the generated video is fixed, and is 256x256.
22200 This source is useful in particular for testing encoding features.
22201
22202 This source accepts the following options:
22203
22204 @table @option
22205
22206 @item rate, r
22207 Specify the frame rate of the sourced video, as the number of frames
22208 generated per second. It has to be a string in the format
22209 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22210 number or a valid video frame rate abbreviation. The default value is
22211 "25".
22212
22213 @item duration, d
22214 Set the duration of the sourced video. See
22215 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22216 for the accepted syntax.
22217
22218 If not specified, or the expressed duration is negative, the video is
22219 supposed to be generated forever.
22220
22221 @item test, t
22222
22223 Set the number or the name of the test to perform. Supported tests are:
22224 @table @option
22225 @item dc_luma
22226 @item dc_chroma
22227 @item freq_luma
22228 @item freq_chroma
22229 @item amp_luma
22230 @item amp_chroma
22231 @item cbp
22232 @item mv
22233 @item ring1
22234 @item ring2
22235 @item all
22236
22237 @item max_frames, m
22238 Set the maximum number of frames generated for each test, default value is 30.
22239
22240 @end table
22241
22242 Default value is "all", which will cycle through the list of all tests.
22243 @end table
22244
22245 Some examples:
22246 @example
22247 mptestsrc=t=dc_luma
22248 @end example
22249
22250 will generate a "dc_luma" test pattern.
22251
22252 @section frei0r_src
22253
22254 Provide a frei0r source.
22255
22256 To enable compilation of this filter you need to install the frei0r
22257 header and configure FFmpeg with @code{--enable-frei0r}.
22258
22259 This source accepts the following parameters:
22260
22261 @table @option
22262
22263 @item size
22264 The size of the video to generate. For the syntax of this option, check the
22265 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22266
22267 @item framerate
22268 The framerate of the generated video. It may be a string of the form
22269 @var{num}/@var{den} or a frame rate abbreviation.
22270
22271 @item filter_name
22272 The name to the frei0r source to load. For more information regarding frei0r and
22273 how to set the parameters, read the @ref{frei0r} section in the video filters
22274 documentation.
22275
22276 @item filter_params
22277 A '|'-separated list of parameters to pass to the frei0r source.
22278
22279 @end table
22280
22281 For example, to generate a frei0r partik0l source with size 200x200
22282 and frame rate 10 which is overlaid on the overlay filter main input:
22283 @example
22284 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
22285 @end example
22286
22287 @section life
22288
22289 Generate a life pattern.
22290
22291 This source is based on a generalization of John Conway's life game.
22292
22293 The sourced input represents a life grid, each pixel represents a cell
22294 which can be in one of two possible states, alive or dead. Every cell
22295 interacts with its eight neighbours, which are the cells that are
22296 horizontally, vertically, or diagonally adjacent.
22297
22298 At each interaction the grid evolves according to the adopted rule,
22299 which specifies the number of neighbor alive cells which will make a
22300 cell stay alive or born. The @option{rule} option allows one to specify
22301 the rule to adopt.
22302
22303 This source accepts the following options:
22304
22305 @table @option
22306 @item filename, f
22307 Set the file from which to read the initial grid state. In the file,
22308 each non-whitespace character is considered an alive cell, and newline
22309 is used to delimit the end of each row.
22310
22311 If this option is not specified, the initial grid is generated
22312 randomly.
22313
22314 @item rate, r
22315 Set the video rate, that is the number of frames generated per second.
22316 Default is 25.
22317
22318 @item random_fill_ratio, ratio
22319 Set the random fill ratio for the initial random grid. It is a
22320 floating point number value ranging from 0 to 1, defaults to 1/PHI.
22321 It is ignored when a file is specified.
22322
22323 @item random_seed, seed
22324 Set the seed for filling the initial random grid, must be an integer
22325 included between 0 and UINT32_MAX. If not specified, or if explicitly
22326 set to -1, the filter will try to use a good random seed on a best
22327 effort basis.
22328
22329 @item rule
22330 Set the life rule.
22331
22332 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
22333 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
22334 @var{NS} specifies the number of alive neighbor cells which make a
22335 live cell stay alive, and @var{NB} the number of alive neighbor cells
22336 which make a dead cell to become alive (i.e. to "born").
22337 "s" and "b" can be used in place of "S" and "B", respectively.
22338
22339 Alternatively a rule can be specified by an 18-bits integer. The 9
22340 high order bits are used to encode the next cell state if it is alive
22341 for each number of neighbor alive cells, the low order bits specify
22342 the rule for "borning" new cells. Higher order bits encode for an
22343 higher number of neighbor cells.
22344 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
22345 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
22346
22347 Default value is "S23/B3", which is the original Conway's game of life
22348 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
22349 cells, and will born a new cell if there are three alive cells around
22350 a dead cell.
22351
22352 @item size, s
22353 Set the size of the output video. For the syntax of this option, check the
22354 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22355
22356 If @option{filename} is specified, the size is set by default to the
22357 same size of the input file. If @option{size} is set, it must contain
22358 the size specified in the input file, and the initial grid defined in
22359 that file is centered in the larger resulting area.
22360
22361 If a filename is not specified, the size value defaults to "320x240"
22362 (used for a randomly generated initial grid).
22363
22364 @item stitch
22365 If set to 1, stitch the left and right grid edges together, and the
22366 top and bottom edges also. Defaults to 1.
22367
22368 @item mold
22369 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
22370 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
22371 value from 0 to 255.
22372
22373 @item life_color
22374 Set the color of living (or new born) cells.
22375
22376 @item death_color
22377 Set the color of dead cells. If @option{mold} is set, this is the first color
22378 used to represent a dead cell.
22379
22380 @item mold_color
22381 Set mold color, for definitely dead and moldy cells.
22382
22383 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
22384 ffmpeg-utils manual,ffmpeg-utils}.
22385 @end table
22386
22387 @subsection Examples
22388
22389 @itemize
22390 @item
22391 Read a grid from @file{pattern}, and center it on a grid of size
22392 300x300 pixels:
22393 @example
22394 life=f=pattern:s=300x300
22395 @end example
22396
22397 @item
22398 Generate a random grid of size 200x200, with a fill ratio of 2/3:
22399 @example
22400 life=ratio=2/3:s=200x200
22401 @end example
22402
22403 @item
22404 Specify a custom rule for evolving a randomly generated grid:
22405 @example
22406 life=rule=S14/B34
22407 @end example
22408
22409 @item
22410 Full example with slow death effect (mold) using @command{ffplay}:
22411 @example
22412 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
22413 @end example
22414 @end itemize
22415
22416 @anchor{allrgb}
22417 @anchor{allyuv}
22418 @anchor{color}
22419 @anchor{haldclutsrc}
22420 @anchor{nullsrc}
22421 @anchor{pal75bars}
22422 @anchor{pal100bars}
22423 @anchor{rgbtestsrc}
22424 @anchor{smptebars}
22425 @anchor{smptehdbars}
22426 @anchor{testsrc}
22427 @anchor{testsrc2}
22428 @anchor{yuvtestsrc}
22429 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
22430
22431 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
22432
22433 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
22434
22435 The @code{color} source provides an uniformly colored input.
22436
22437 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
22438 @ref{haldclut} filter.
22439
22440 The @code{nullsrc} source returns unprocessed video frames. It is
22441 mainly useful to be employed in analysis / debugging tools, or as the
22442 source for filters which ignore the input data.
22443
22444 The @code{pal75bars} source generates a color bars pattern, based on
22445 EBU PAL recommendations with 75% color levels.
22446
22447 The @code{pal100bars} source generates a color bars pattern, based on
22448 EBU PAL recommendations with 100% color levels.
22449
22450 The @code{rgbtestsrc} source generates an RGB test pattern useful for
22451 detecting RGB vs BGR issues. You should see a red, green and blue
22452 stripe from top to bottom.
22453
22454 The @code{smptebars} source generates a color bars pattern, based on
22455 the SMPTE Engineering Guideline EG 1-1990.
22456
22457 The @code{smptehdbars} source generates a color bars pattern, based on
22458 the SMPTE RP 219-2002.
22459
22460 The @code{testsrc} source generates a test video pattern, showing a
22461 color pattern, a scrolling gradient and a timestamp. This is mainly
22462 intended for testing purposes.
22463
22464 The @code{testsrc2} source is similar to testsrc, but supports more
22465 pixel formats instead of just @code{rgb24}. This allows using it as an
22466 input for other tests without requiring a format conversion.
22467
22468 The @code{yuvtestsrc} source generates an YUV test pattern. You should
22469 see a y, cb and cr stripe from top to bottom.
22470
22471 The sources accept the following parameters:
22472
22473 @table @option
22474
22475 @item level
22476 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
22477 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
22478 pixels to be used as identity matrix for 3D lookup tables. Each component is
22479 coded on a @code{1/(N*N)} scale.
22480
22481 @item color, c
22482 Specify the color of the source, only available in the @code{color}
22483 source. For the syntax of this option, check the
22484 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
22485
22486 @item size, s
22487 Specify the size of the sourced video. For the syntax of this option, check the
22488 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22489 The default value is @code{320x240}.
22490
22491 This option is not available with the @code{allrgb}, @code{allyuv}, and
22492 @code{haldclutsrc} filters.
22493
22494 @item rate, r
22495 Specify the frame rate of the sourced video, as the number of frames
22496 generated per second. It has to be a string in the format
22497 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22498 number or a valid video frame rate abbreviation. The default value is
22499 "25".
22500
22501 @item duration, d
22502 Set the duration of the sourced video. See
22503 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22504 for the accepted syntax.
22505
22506 If not specified, or the expressed duration is negative, the video is
22507 supposed to be generated forever.
22508
22509 @item sar
22510 Set the sample aspect ratio of the sourced video.
22511
22512 @item alpha
22513 Specify the alpha (opacity) of the background, only available in the
22514 @code{testsrc2} source. The value must be between 0 (fully transparent) and
22515 255 (fully opaque, the default).
22516
22517 @item decimals, n
22518 Set the number of decimals to show in the timestamp, only available in the
22519 @code{testsrc} source.
22520
22521 The displayed timestamp value will correspond to the original
22522 timestamp value multiplied by the power of 10 of the specified
22523 value. Default value is 0.
22524 @end table
22525
22526 @subsection Examples
22527
22528 @itemize
22529 @item
22530 Generate a video with a duration of 5.3 seconds, with size
22531 176x144 and a frame rate of 10 frames per second:
22532 @example
22533 testsrc=duration=5.3:size=qcif:rate=10
22534 @end example
22535
22536 @item
22537 The following graph description will generate a red source
22538 with an opacity of 0.2, with size "qcif" and a frame rate of 10
22539 frames per second:
22540 @example
22541 color=c=red@@0.2:s=qcif:r=10
22542 @end example
22543
22544 @item
22545 If the input content is to be ignored, @code{nullsrc} can be used. The
22546 following command generates noise in the luminance plane by employing
22547 the @code{geq} filter:
22548 @example
22549 nullsrc=s=256x256, geq=random(1)*255:128:128
22550 @end example
22551 @end itemize
22552
22553 @subsection Commands
22554
22555 The @code{color} source supports the following commands:
22556
22557 @table @option
22558 @item c, color
22559 Set the color of the created image. Accepts the same syntax of the
22560 corresponding @option{color} option.
22561 @end table
22562
22563 @section openclsrc
22564
22565 Generate video using an OpenCL program.
22566
22567 @table @option
22568
22569 @item source
22570 OpenCL program source file.
22571
22572 @item kernel
22573 Kernel name in program.
22574
22575 @item size, s
22576 Size of frames to generate.  This must be set.
22577
22578 @item format
22579 Pixel format to use for the generated frames.  This must be set.
22580
22581 @item rate, r
22582 Number of frames generated every second.  Default value is '25'.
22583
22584 @end table
22585
22586 For details of how the program loading works, see the @ref{program_opencl}
22587 filter.
22588
22589 Example programs:
22590
22591 @itemize
22592 @item
22593 Generate a colour ramp by setting pixel values from the position of the pixel
22594 in the output image.  (Note that this will work with all pixel formats, but
22595 the generated output will not be the same.)
22596 @verbatim
22597 __kernel void ramp(__write_only image2d_t dst,
22598                    unsigned int index)
22599 {
22600     int2 loc = (int2)(get_global_id(0), get_global_id(1));
22601
22602     float4 val;
22603     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
22604
22605     write_imagef(dst, loc, val);
22606 }
22607 @end verbatim
22608
22609 @item
22610 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
22611 @verbatim
22612 __kernel void sierpinski_carpet(__write_only image2d_t dst,
22613                                 unsigned int index)
22614 {
22615     int2 loc = (int2)(get_global_id(0), get_global_id(1));
22616
22617     float4 value = 0.0f;
22618     int x = loc.x + index;
22619     int y = loc.y + index;
22620     while (x > 0 || y > 0) {
22621         if (x % 3 == 1 && y % 3 == 1) {
22622             value = 1.0f;
22623             break;
22624         }
22625         x /= 3;
22626         y /= 3;
22627     }
22628
22629     write_imagef(dst, loc, value);
22630 }
22631 @end verbatim
22632
22633 @end itemize
22634
22635 @section sierpinski
22636
22637 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
22638
22639 This source accepts the following options:
22640
22641 @table @option
22642 @item size, s
22643 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22644 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22645
22646 @item rate, r
22647 Set frame rate, expressed as number of frames per second. Default
22648 value is "25".
22649
22650 @item seed
22651 Set seed which is used for random panning.
22652
22653 @item jump
22654 Set max jump for single pan destination. Allowed range is from 1 to 10000.
22655
22656 @item type
22657 Set fractal type, can be default @code{carpet} or @code{triangle}.
22658 @end table
22659
22660 @c man end VIDEO SOURCES
22661
22662 @chapter Video Sinks
22663 @c man begin VIDEO SINKS
22664
22665 Below is a description of the currently available video sinks.
22666
22667 @section buffersink
22668
22669 Buffer video frames, and make them available to the end of the filter
22670 graph.
22671
22672 This sink is mainly intended for programmatic use, in particular
22673 through the interface defined in @file{libavfilter/buffersink.h}
22674 or the options system.
22675
22676 It accepts a pointer to an AVBufferSinkContext structure, which
22677 defines the incoming buffers' formats, to be passed as the opaque
22678 parameter to @code{avfilter_init_filter} for initialization.
22679
22680 @section nullsink
22681
22682 Null video sink: do absolutely nothing with the input video. It is
22683 mainly useful as a template and for use in analysis / debugging
22684 tools.
22685
22686 @c man end VIDEO SINKS
22687
22688 @chapter Multimedia Filters
22689 @c man begin MULTIMEDIA FILTERS
22690
22691 Below is a description of the currently available multimedia filters.
22692
22693 @section abitscope
22694
22695 Convert input audio to a video output, displaying the audio bit scope.
22696
22697 The filter accepts the following options:
22698
22699 @table @option
22700 @item rate, r
22701 Set frame rate, expressed as number of frames per second. Default
22702 value is "25".
22703
22704 @item size, s
22705 Specify the video size for the output. For the syntax of this option, check the
22706 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22707 Default value is @code{1024x256}.
22708
22709 @item colors
22710 Specify list of colors separated by space or by '|' which will be used to
22711 draw channels. Unrecognized or missing colors will be replaced
22712 by white color.
22713 @end table
22714
22715 @section adrawgraph
22716 Draw a graph using input audio metadata.
22717
22718 See @ref{drawgraph}
22719
22720 @section agraphmonitor
22721
22722 See @ref{graphmonitor}.
22723
22724 @section ahistogram
22725
22726 Convert input audio to a video output, displaying the volume histogram.
22727
22728 The filter accepts the following options:
22729
22730 @table @option
22731 @item dmode
22732 Specify how histogram is calculated.
22733
22734 It accepts the following values:
22735 @table @samp
22736 @item single
22737 Use single histogram for all channels.
22738 @item separate
22739 Use separate histogram for each channel.
22740 @end table
22741 Default is @code{single}.
22742
22743 @item rate, r
22744 Set frame rate, expressed as number of frames per second. Default
22745 value is "25".
22746
22747 @item size, s
22748 Specify the video size for the output. For the syntax of this option, check the
22749 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22750 Default value is @code{hd720}.
22751
22752 @item scale
22753 Set display scale.
22754
22755 It accepts the following values:
22756 @table @samp
22757 @item log
22758 logarithmic
22759 @item sqrt
22760 square root
22761 @item cbrt
22762 cubic root
22763 @item lin
22764 linear
22765 @item rlog
22766 reverse logarithmic
22767 @end table
22768 Default is @code{log}.
22769
22770 @item ascale
22771 Set amplitude scale.
22772
22773 It accepts the following values:
22774 @table @samp
22775 @item log
22776 logarithmic
22777 @item lin
22778 linear
22779 @end table
22780 Default is @code{log}.
22781
22782 @item acount
22783 Set how much frames to accumulate in histogram.
22784 Default is 1. Setting this to -1 accumulates all frames.
22785
22786 @item rheight
22787 Set histogram ratio of window height.
22788
22789 @item slide
22790 Set sonogram sliding.
22791
22792 It accepts the following values:
22793 @table @samp
22794 @item replace
22795 replace old rows with new ones.
22796 @item scroll
22797 scroll from top to bottom.
22798 @end table
22799 Default is @code{replace}.
22800 @end table
22801
22802 @section aphasemeter
22803
22804 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
22805 representing mean phase of current audio frame. A video output can also be produced and is
22806 enabled by default. The audio is passed through as first output.
22807
22808 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
22809 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
22810 and @code{1} means channels are in phase.
22811
22812 The filter accepts the following options, all related to its video output:
22813
22814 @table @option
22815 @item rate, r
22816 Set the output frame rate. Default value is @code{25}.
22817
22818 @item size, s
22819 Set the video size for the output. For the syntax of this option, check the
22820 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22821 Default value is @code{800x400}.
22822
22823 @item rc
22824 @item gc
22825 @item bc
22826 Specify the red, green, blue contrast. Default values are @code{2},
22827 @code{7} and @code{1}.
22828 Allowed range is @code{[0, 255]}.
22829
22830 @item mpc
22831 Set color which will be used for drawing median phase. If color is
22832 @code{none} which is default, no median phase value will be drawn.
22833
22834 @item video
22835 Enable video output. Default is enabled.
22836 @end table
22837
22838 @section avectorscope
22839
22840 Convert input audio to a video output, representing the audio vector
22841 scope.
22842
22843 The filter is used to measure the difference between channels of stereo
22844 audio stream. A monaural signal, consisting of identical left and right
22845 signal, results in straight vertical line. Any stereo separation is visible
22846 as a deviation from this line, creating a Lissajous figure.
22847 If the straight (or deviation from it) but horizontal line appears this
22848 indicates that the left and right channels are out of phase.
22849
22850 The filter accepts the following options:
22851
22852 @table @option
22853 @item mode, m
22854 Set the vectorscope mode.
22855
22856 Available values are:
22857 @table @samp
22858 @item lissajous
22859 Lissajous rotated by 45 degrees.
22860
22861 @item lissajous_xy
22862 Same as above but not rotated.
22863
22864 @item polar
22865 Shape resembling half of circle.
22866 @end table
22867
22868 Default value is @samp{lissajous}.
22869
22870 @item size, s
22871 Set the video size for the output. For the syntax of this option, check the
22872 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22873 Default value is @code{400x400}.
22874
22875 @item rate, r
22876 Set the output frame rate. Default value is @code{25}.
22877
22878 @item rc
22879 @item gc
22880 @item bc
22881 @item ac
22882 Specify the red, green, blue and alpha contrast. Default values are @code{40},
22883 @code{160}, @code{80} and @code{255}.
22884 Allowed range is @code{[0, 255]}.
22885
22886 @item rf
22887 @item gf
22888 @item bf
22889 @item af
22890 Specify the red, green, blue and alpha fade. Default values are @code{15},
22891 @code{10}, @code{5} and @code{5}.
22892 Allowed range is @code{[0, 255]}.
22893
22894 @item zoom
22895 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
22896 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
22897
22898 @item draw
22899 Set the vectorscope drawing mode.
22900
22901 Available values are:
22902 @table @samp
22903 @item dot
22904 Draw dot for each sample.
22905
22906 @item line
22907 Draw line between previous and current sample.
22908 @end table
22909
22910 Default value is @samp{dot}.
22911
22912 @item scale
22913 Specify amplitude scale of audio samples.
22914
22915 Available values are:
22916 @table @samp
22917 @item lin
22918 Linear.
22919
22920 @item sqrt
22921 Square root.
22922
22923 @item cbrt
22924 Cubic root.
22925
22926 @item log
22927 Logarithmic.
22928 @end table
22929
22930 @item swap
22931 Swap left channel axis with right channel axis.
22932
22933 @item mirror
22934 Mirror axis.
22935
22936 @table @samp
22937 @item none
22938 No mirror.
22939
22940 @item x
22941 Mirror only x axis.
22942
22943 @item y
22944 Mirror only y axis.
22945
22946 @item xy
22947 Mirror both axis.
22948 @end table
22949
22950 @end table
22951
22952 @subsection Examples
22953
22954 @itemize
22955 @item
22956 Complete example using @command{ffplay}:
22957 @example
22958 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
22959              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
22960 @end example
22961 @end itemize
22962
22963 @section bench, abench
22964
22965 Benchmark part of a filtergraph.
22966
22967 The filter accepts the following options:
22968
22969 @table @option
22970 @item action
22971 Start or stop a timer.
22972
22973 Available values are:
22974 @table @samp
22975 @item start
22976 Get the current time, set it as frame metadata (using the key
22977 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
22978
22979 @item stop
22980 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
22981 the input frame metadata to get the time difference. Time difference, average,
22982 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
22983 @code{min}) are then printed. The timestamps are expressed in seconds.
22984 @end table
22985 @end table
22986
22987 @subsection Examples
22988
22989 @itemize
22990 @item
22991 Benchmark @ref{selectivecolor} filter:
22992 @example
22993 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
22994 @end example
22995 @end itemize
22996
22997 @section concat
22998
22999 Concatenate audio and video streams, joining them together one after the
23000 other.
23001
23002 The filter works on segments of synchronized video and audio streams. All
23003 segments must have the same number of streams of each type, and that will
23004 also be the number of streams at output.
23005
23006 The filter accepts the following options:
23007
23008 @table @option
23009
23010 @item n
23011 Set the number of segments. Default is 2.
23012
23013 @item v
23014 Set the number of output video streams, that is also the number of video
23015 streams in each segment. Default is 1.
23016
23017 @item a
23018 Set the number of output audio streams, that is also the number of audio
23019 streams in each segment. Default is 0.
23020
23021 @item unsafe
23022 Activate unsafe mode: do not fail if segments have a different format.
23023
23024 @end table
23025
23026 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
23027 @var{a} audio outputs.
23028
23029 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
23030 segment, in the same order as the outputs, then the inputs for the second
23031 segment, etc.
23032
23033 Related streams do not always have exactly the same duration, for various
23034 reasons including codec frame size or sloppy authoring. For that reason,
23035 related synchronized streams (e.g. a video and its audio track) should be
23036 concatenated at once. The concat filter will use the duration of the longest
23037 stream in each segment (except the last one), and if necessary pad shorter
23038 audio streams with silence.
23039
23040 For this filter to work correctly, all segments must start at timestamp 0.
23041
23042 All corresponding streams must have the same parameters in all segments; the
23043 filtering system will automatically select a common pixel format for video
23044 streams, and a common sample format, sample rate and channel layout for
23045 audio streams, but other settings, such as resolution, must be converted
23046 explicitly by the user.
23047
23048 Different frame rates are acceptable but will result in variable frame rate
23049 at output; be sure to configure the output file to handle it.
23050
23051 @subsection Examples
23052
23053 @itemize
23054 @item
23055 Concatenate an opening, an episode and an ending, all in bilingual version
23056 (video in stream 0, audio in streams 1 and 2):
23057 @example
23058 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
23059   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
23060    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
23061   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
23062 @end example
23063
23064 @item
23065 Concatenate two parts, handling audio and video separately, using the
23066 (a)movie sources, and adjusting the resolution:
23067 @example
23068 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
23069 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
23070 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
23071 @end example
23072 Note that a desync will happen at the stitch if the audio and video streams
23073 do not have exactly the same duration in the first file.
23074
23075 @end itemize
23076
23077 @subsection Commands
23078
23079 This filter supports the following commands:
23080 @table @option
23081 @item next
23082 Close the current segment and step to the next one
23083 @end table
23084
23085 @anchor{ebur128}
23086 @section ebur128
23087
23088 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
23089 level. By default, it logs a message at a frequency of 10Hz with the
23090 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
23091 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
23092
23093 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
23094 sample format is double-precision floating point. The input stream will be converted to
23095 this specification, if needed. Users may need to insert aformat and/or aresample filters
23096 after this filter to obtain the original parameters.
23097
23098 The filter also has a video output (see the @var{video} option) with a real
23099 time graph to observe the loudness evolution. The graphic contains the logged
23100 message mentioned above, so it is not printed anymore when this option is set,
23101 unless the verbose logging is set. The main graphing area contains the
23102 short-term loudness (3 seconds of analysis), and the gauge on the right is for
23103 the momentary loudness (400 milliseconds), but can optionally be configured
23104 to instead display short-term loudness (see @var{gauge}).
23105
23106 The green area marks a  +/- 1LU target range around the target loudness
23107 (-23LUFS by default, unless modified through @var{target}).
23108
23109 More information about the Loudness Recommendation EBU R128 on
23110 @url{http://tech.ebu.ch/loudness}.
23111
23112 The filter accepts the following options:
23113
23114 @table @option
23115
23116 @item video
23117 Activate the video output. The audio stream is passed unchanged whether this
23118 option is set or no. The video stream will be the first output stream if
23119 activated. Default is @code{0}.
23120
23121 @item size
23122 Set the video size. This option is for video only. For the syntax of this
23123 option, check the
23124 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23125 Default and minimum resolution is @code{640x480}.
23126
23127 @item meter
23128 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
23129 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
23130 other integer value between this range is allowed.
23131
23132 @item metadata
23133 Set metadata injection. If set to @code{1}, the audio input will be segmented
23134 into 100ms output frames, each of them containing various loudness information
23135 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
23136
23137 Default is @code{0}.
23138
23139 @item framelog
23140 Force the frame logging level.
23141
23142 Available values are:
23143 @table @samp
23144 @item info
23145 information logging level
23146 @item verbose
23147 verbose logging level
23148 @end table
23149
23150 By default, the logging level is set to @var{info}. If the @option{video} or
23151 the @option{metadata} options are set, it switches to @var{verbose}.
23152
23153 @item peak
23154 Set peak mode(s).
23155
23156 Available modes can be cumulated (the option is a @code{flag} type). Possible
23157 values are:
23158 @table @samp
23159 @item none
23160 Disable any peak mode (default).
23161 @item sample
23162 Enable sample-peak mode.
23163
23164 Simple peak mode looking for the higher sample value. It logs a message
23165 for sample-peak (identified by @code{SPK}).
23166 @item true
23167 Enable true-peak mode.
23168
23169 If enabled, the peak lookup is done on an over-sampled version of the input
23170 stream for better peak accuracy. It logs a message for true-peak.
23171 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
23172 This mode requires a build with @code{libswresample}.
23173 @end table
23174
23175 @item dualmono
23176 Treat mono input files as "dual mono". If a mono file is intended for playback
23177 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
23178 If set to @code{true}, this option will compensate for this effect.
23179 Multi-channel input files are not affected by this option.
23180
23181 @item panlaw
23182 Set a specific pan law to be used for the measurement of dual mono files.
23183 This parameter is optional, and has a default value of -3.01dB.
23184
23185 @item target
23186 Set a specific target level (in LUFS) used as relative zero in the visualization.
23187 This parameter is optional and has a default value of -23LUFS as specified
23188 by EBU R128. However, material published online may prefer a level of -16LUFS
23189 (e.g. for use with podcasts or video platforms).
23190
23191 @item gauge
23192 Set the value displayed by the gauge. Valid values are @code{momentary} and s
23193 @code{shortterm}. By default the momentary value will be used, but in certain
23194 scenarios it may be more useful to observe the short term value instead (e.g.
23195 live mixing).
23196
23197 @item scale
23198 Sets the display scale for the loudness. Valid parameters are @code{absolute}
23199 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
23200 video output, not the summary or continuous log output.
23201 @end table
23202
23203 @subsection Examples
23204
23205 @itemize
23206 @item
23207 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
23208 @example
23209 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
23210 @end example
23211
23212 @item
23213 Run an analysis with @command{ffmpeg}:
23214 @example
23215 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
23216 @end example
23217 @end itemize
23218
23219 @section interleave, ainterleave
23220
23221 Temporally interleave frames from several inputs.
23222
23223 @code{interleave} works with video inputs, @code{ainterleave} with audio.
23224
23225 These filters read frames from several inputs and send the oldest
23226 queued frame to the output.
23227
23228 Input streams must have well defined, monotonically increasing frame
23229 timestamp values.
23230
23231 In order to submit one frame to output, these filters need to enqueue
23232 at least one frame for each input, so they cannot work in case one
23233 input is not yet terminated and will not receive incoming frames.
23234
23235 For example consider the case when one input is a @code{select} filter
23236 which always drops input frames. The @code{interleave} filter will keep
23237 reading from that input, but it will never be able to send new frames
23238 to output until the input sends an end-of-stream signal.
23239
23240 Also, depending on inputs synchronization, the filters will drop
23241 frames in case one input receives more frames than the other ones, and
23242 the queue is already filled.
23243
23244 These filters accept the following options:
23245
23246 @table @option
23247 @item nb_inputs, n
23248 Set the number of different inputs, it is 2 by default.
23249 @end table
23250
23251 @subsection Examples
23252
23253 @itemize
23254 @item
23255 Interleave frames belonging to different streams using @command{ffmpeg}:
23256 @example
23257 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
23258 @end example
23259
23260 @item
23261 Add flickering blur effect:
23262 @example
23263 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
23264 @end example
23265 @end itemize
23266
23267 @section metadata, ametadata
23268
23269 Manipulate frame metadata.
23270
23271 This filter accepts the following options:
23272
23273 @table @option
23274 @item mode
23275 Set mode of operation of the filter.
23276
23277 Can be one of the following:
23278
23279 @table @samp
23280 @item select
23281 If both @code{value} and @code{key} is set, select frames
23282 which have such metadata. If only @code{key} is set, select
23283 every frame that has such key in metadata.
23284
23285 @item add
23286 Add new metadata @code{key} and @code{value}. If key is already available
23287 do nothing.
23288
23289 @item modify
23290 Modify value of already present key.
23291
23292 @item delete
23293 If @code{value} is set, delete only keys that have such value.
23294 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
23295 the frame.
23296
23297 @item print
23298 Print key and its value if metadata was found. If @code{key} is not set print all
23299 metadata values available in frame.
23300 @end table
23301
23302 @item key
23303 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
23304
23305 @item value
23306 Set metadata value which will be used. This option is mandatory for
23307 @code{modify} and @code{add} mode.
23308
23309 @item function
23310 Which function to use when comparing metadata value and @code{value}.
23311
23312 Can be one of following:
23313
23314 @table @samp
23315 @item same_str
23316 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
23317
23318 @item starts_with
23319 Values are interpreted as strings, returns true if metadata value starts with
23320 the @code{value} option string.
23321
23322 @item less
23323 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
23324
23325 @item equal
23326 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
23327
23328 @item greater
23329 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
23330
23331 @item expr
23332 Values are interpreted as floats, returns true if expression from option @code{expr}
23333 evaluates to true.
23334
23335 @item ends_with
23336 Values are interpreted as strings, returns true if metadata value ends with
23337 the @code{value} option string.
23338 @end table
23339
23340 @item expr
23341 Set expression which is used when @code{function} is set to @code{expr}.
23342 The expression is evaluated through the eval API and can contain the following
23343 constants:
23344
23345 @table @option
23346 @item VALUE1
23347 Float representation of @code{value} from metadata key.
23348
23349 @item VALUE2
23350 Float representation of @code{value} as supplied by user in @code{value} option.
23351 @end table
23352
23353 @item file
23354 If specified in @code{print} mode, output is written to the named file. Instead of
23355 plain filename any writable url can be specified. Filename ``-'' is a shorthand
23356 for standard output. If @code{file} option is not set, output is written to the log
23357 with AV_LOG_INFO loglevel.
23358
23359 @item direct
23360 Reduces buffering in print mode when output is written to a URL set using @var{file}.
23361
23362 @end table
23363
23364 @subsection Examples
23365
23366 @itemize
23367 @item
23368 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
23369 between 0 and 1.
23370 @example
23371 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
23372 @end example
23373 @item
23374 Print silencedetect output to file @file{metadata.txt}.
23375 @example
23376 silencedetect,ametadata=mode=print:file=metadata.txt
23377 @end example
23378 @item
23379 Direct all metadata to a pipe with file descriptor 4.
23380 @example
23381 metadata=mode=print:file='pipe\:4'
23382 @end example
23383 @end itemize
23384
23385 @section perms, aperms
23386
23387 Set read/write permissions for the output frames.
23388
23389 These filters are mainly aimed at developers to test direct path in the
23390 following filter in the filtergraph.
23391
23392 The filters accept the following options:
23393
23394 @table @option
23395 @item mode
23396 Select the permissions mode.
23397
23398 It accepts the following values:
23399 @table @samp
23400 @item none
23401 Do nothing. This is the default.
23402 @item ro
23403 Set all the output frames read-only.
23404 @item rw
23405 Set all the output frames directly writable.
23406 @item toggle
23407 Make the frame read-only if writable, and writable if read-only.
23408 @item random
23409 Set each output frame read-only or writable randomly.
23410 @end table
23411
23412 @item seed
23413 Set the seed for the @var{random} mode, must be an integer included between
23414 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
23415 @code{-1}, the filter will try to use a good random seed on a best effort
23416 basis.
23417 @end table
23418
23419 Note: in case of auto-inserted filter between the permission filter and the
23420 following one, the permission might not be received as expected in that
23421 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
23422 perms/aperms filter can avoid this problem.
23423
23424 @section realtime, arealtime
23425
23426 Slow down filtering to match real time approximately.
23427
23428 These filters will pause the filtering for a variable amount of time to
23429 match the output rate with the input timestamps.
23430 They are similar to the @option{re} option to @code{ffmpeg}.
23431
23432 They accept the following options:
23433
23434 @table @option
23435 @item limit
23436 Time limit for the pauses. Any pause longer than that will be considered
23437 a timestamp discontinuity and reset the timer. Default is 2 seconds.
23438 @item speed
23439 Speed factor for processing. The value must be a float larger than zero.
23440 Values larger than 1.0 will result in faster than realtime processing,
23441 smaller will slow processing down. The @var{limit} is automatically adapted
23442 accordingly. Default is 1.0.
23443
23444 A processing speed faster than what is possible without these filters cannot
23445 be achieved.
23446 @end table
23447
23448 @anchor{select}
23449 @section select, aselect
23450
23451 Select frames to pass in output.
23452
23453 This filter accepts the following options:
23454
23455 @table @option
23456
23457 @item expr, e
23458 Set expression, which is evaluated for each input frame.
23459
23460 If the expression is evaluated to zero, the frame is discarded.
23461
23462 If the evaluation result is negative or NaN, the frame is sent to the
23463 first output; otherwise it is sent to the output with index
23464 @code{ceil(val)-1}, assuming that the input index starts from 0.
23465
23466 For example a value of @code{1.2} corresponds to the output with index
23467 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
23468
23469 @item outputs, n
23470 Set the number of outputs. The output to which to send the selected
23471 frame is based on the result of the evaluation. Default value is 1.
23472 @end table
23473
23474 The expression can contain the following constants:
23475
23476 @table @option
23477 @item n
23478 The (sequential) number of the filtered frame, starting from 0.
23479
23480 @item selected_n
23481 The (sequential) number of the selected frame, starting from 0.
23482
23483 @item prev_selected_n
23484 The sequential number of the last selected frame. It's NAN if undefined.
23485
23486 @item TB
23487 The timebase of the input timestamps.
23488
23489 @item pts
23490 The PTS (Presentation TimeStamp) of the filtered video frame,
23491 expressed in @var{TB} units. It's NAN if undefined.
23492
23493 @item t
23494 The PTS of the filtered video frame,
23495 expressed in seconds. It's NAN if undefined.
23496
23497 @item prev_pts
23498 The PTS of the previously filtered video frame. It's NAN if undefined.
23499
23500 @item prev_selected_pts
23501 The PTS of the last previously filtered video frame. It's NAN if undefined.
23502
23503 @item prev_selected_t
23504 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
23505
23506 @item start_pts
23507 The PTS of the first video frame in the video. It's NAN if undefined.
23508
23509 @item start_t
23510 The time of the first video frame in the video. It's NAN if undefined.
23511
23512 @item pict_type @emph{(video only)}
23513 The type of the filtered frame. It can assume one of the following
23514 values:
23515 @table @option
23516 @item I
23517 @item P
23518 @item B
23519 @item S
23520 @item SI
23521 @item SP
23522 @item BI
23523 @end table
23524
23525 @item interlace_type @emph{(video only)}
23526 The frame interlace type. It can assume one of the following values:
23527 @table @option
23528 @item PROGRESSIVE
23529 The frame is progressive (not interlaced).
23530 @item TOPFIRST
23531 The frame is top-field-first.
23532 @item BOTTOMFIRST
23533 The frame is bottom-field-first.
23534 @end table
23535
23536 @item consumed_sample_n @emph{(audio only)}
23537 the number of selected samples before the current frame
23538
23539 @item samples_n @emph{(audio only)}
23540 the number of samples in the current frame
23541
23542 @item sample_rate @emph{(audio only)}
23543 the input sample rate
23544
23545 @item key
23546 This is 1 if the filtered frame is a key-frame, 0 otherwise.
23547
23548 @item pos
23549 the position in the file of the filtered frame, -1 if the information
23550 is not available (e.g. for synthetic video)
23551
23552 @item scene @emph{(video only)}
23553 value between 0 and 1 to indicate a new scene; a low value reflects a low
23554 probability for the current frame to introduce a new scene, while a higher
23555 value means the current frame is more likely to be one (see the example below)
23556
23557 @item concatdec_select
23558 The concat demuxer can select only part of a concat input file by setting an
23559 inpoint and an outpoint, but the output packets may not be entirely contained
23560 in the selected interval. By using this variable, it is possible to skip frames
23561 generated by the concat demuxer which are not exactly contained in the selected
23562 interval.
23563
23564 This works by comparing the frame pts against the @var{lavf.concat.start_time}
23565 and the @var{lavf.concat.duration} packet metadata values which are also
23566 present in the decoded frames.
23567
23568 The @var{concatdec_select} variable is -1 if the frame pts is at least
23569 start_time and either the duration metadata is missing or the frame pts is less
23570 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
23571 missing.
23572
23573 That basically means that an input frame is selected if its pts is within the
23574 interval set by the concat demuxer.
23575
23576 @end table
23577
23578 The default value of the select expression is "1".
23579
23580 @subsection Examples
23581
23582 @itemize
23583 @item
23584 Select all frames in input:
23585 @example
23586 select
23587 @end example
23588
23589 The example above is the same as:
23590 @example
23591 select=1
23592 @end example
23593
23594 @item
23595 Skip all frames:
23596 @example
23597 select=0
23598 @end example
23599
23600 @item
23601 Select only I-frames:
23602 @example
23603 select='eq(pict_type\,I)'
23604 @end example
23605
23606 @item
23607 Select one frame every 100:
23608 @example
23609 select='not(mod(n\,100))'
23610 @end example
23611
23612 @item
23613 Select only frames contained in the 10-20 time interval:
23614 @example
23615 select=between(t\,10\,20)
23616 @end example
23617
23618 @item
23619 Select only I-frames contained in the 10-20 time interval:
23620 @example
23621 select=between(t\,10\,20)*eq(pict_type\,I)
23622 @end example
23623
23624 @item
23625 Select frames with a minimum distance of 10 seconds:
23626 @example
23627 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
23628 @end example
23629
23630 @item
23631 Use aselect to select only audio frames with samples number > 100:
23632 @example
23633 aselect='gt(samples_n\,100)'
23634 @end example
23635
23636 @item
23637 Create a mosaic of the first scenes:
23638 @example
23639 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
23640 @end example
23641
23642 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
23643 choice.
23644
23645 @item
23646 Send even and odd frames to separate outputs, and compose them:
23647 @example
23648 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
23649 @end example
23650
23651 @item
23652 Select useful frames from an ffconcat file which is using inpoints and
23653 outpoints but where the source files are not intra frame only.
23654 @example
23655 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
23656 @end example
23657 @end itemize
23658
23659 @section sendcmd, asendcmd
23660
23661 Send commands to filters in the filtergraph.
23662
23663 These filters read commands to be sent to other filters in the
23664 filtergraph.
23665
23666 @code{sendcmd} must be inserted between two video filters,
23667 @code{asendcmd} must be inserted between two audio filters, but apart
23668 from that they act the same way.
23669
23670 The specification of commands can be provided in the filter arguments
23671 with the @var{commands} option, or in a file specified by the
23672 @var{filename} option.
23673
23674 These filters accept the following options:
23675 @table @option
23676 @item commands, c
23677 Set the commands to be read and sent to the other filters.
23678 @item filename, f
23679 Set the filename of the commands to be read and sent to the other
23680 filters.
23681 @end table
23682
23683 @subsection Commands syntax
23684
23685 A commands description consists of a sequence of interval
23686 specifications, comprising a list of commands to be executed when a
23687 particular event related to that interval occurs. The occurring event
23688 is typically the current frame time entering or leaving a given time
23689 interval.
23690
23691 An interval is specified by the following syntax:
23692 @example
23693 @var{START}[-@var{END}] @var{COMMANDS};
23694 @end example
23695
23696 The time interval is specified by the @var{START} and @var{END} times.
23697 @var{END} is optional and defaults to the maximum time.
23698
23699 The current frame time is considered within the specified interval if
23700 it is included in the interval [@var{START}, @var{END}), that is when
23701 the time is greater or equal to @var{START} and is lesser than
23702 @var{END}.
23703
23704 @var{COMMANDS} consists of a sequence of one or more command
23705 specifications, separated by ",", relating to that interval.  The
23706 syntax of a command specification is given by:
23707 @example
23708 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
23709 @end example
23710
23711 @var{FLAGS} is optional and specifies the type of events relating to
23712 the time interval which enable sending the specified command, and must
23713 be a non-null sequence of identifier flags separated by "+" or "|" and
23714 enclosed between "[" and "]".
23715
23716 The following flags are recognized:
23717 @table @option
23718 @item enter
23719 The command is sent when the current frame timestamp enters the
23720 specified interval. In other words, the command is sent when the
23721 previous frame timestamp was not in the given interval, and the
23722 current is.
23723
23724 @item leave
23725 The command is sent when the current frame timestamp leaves the
23726 specified interval. In other words, the command is sent when the
23727 previous frame timestamp was in the given interval, and the
23728 current is not.
23729
23730 @item expr
23731 The command @var{ARG} is interpreted as expression and result of
23732 expression is passed as @var{ARG}.
23733
23734 The expression is evaluated through the eval API and can contain the following
23735 constants:
23736
23737 @table @option
23738 @item POS
23739 Original position in the file of the frame, or undefined if undefined
23740 for the current frame.
23741
23742 @item PTS
23743 The presentation timestamp in input.
23744
23745 @item N
23746 The count of the input frame for video or audio, starting from 0.
23747
23748 @item T
23749 The time in seconds of the current frame.
23750
23751 @item TS
23752 The start time in seconds of the current command interval.
23753
23754 @item TE
23755 The end time in seconds of the current command interval.
23756
23757 @item TI
23758 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
23759 @end table
23760
23761 @end table
23762
23763 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
23764 assumed.
23765
23766 @var{TARGET} specifies the target of the command, usually the name of
23767 the filter class or a specific filter instance name.
23768
23769 @var{COMMAND} specifies the name of the command for the target filter.
23770
23771 @var{ARG} is optional and specifies the optional list of argument for
23772 the given @var{COMMAND}.
23773
23774 Between one interval specification and another, whitespaces, or
23775 sequences of characters starting with @code{#} until the end of line,
23776 are ignored and can be used to annotate comments.
23777
23778 A simplified BNF description of the commands specification syntax
23779 follows:
23780 @example
23781 @var{COMMAND_FLAG}  ::= "enter" | "leave"
23782 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
23783 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
23784 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
23785 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
23786 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
23787 @end example
23788
23789 @subsection Examples
23790
23791 @itemize
23792 @item
23793 Specify audio tempo change at second 4:
23794 @example
23795 asendcmd=c='4.0 atempo tempo 1.5',atempo
23796 @end example
23797
23798 @item
23799 Target a specific filter instance:
23800 @example
23801 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
23802 @end example
23803
23804 @item
23805 Specify a list of drawtext and hue commands in a file.
23806 @example
23807 # show text in the interval 5-10
23808 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
23809          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
23810
23811 # desaturate the image in the interval 15-20
23812 15.0-20.0 [enter] hue s 0,
23813           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
23814           [leave] hue s 1,
23815           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
23816
23817 # apply an exponential saturation fade-out effect, starting from time 25
23818 25 [enter] hue s exp(25-t)
23819 @end example
23820
23821 A filtergraph allowing to read and process the above command list
23822 stored in a file @file{test.cmd}, can be specified with:
23823 @example
23824 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
23825 @end example
23826 @end itemize
23827
23828 @anchor{setpts}
23829 @section setpts, asetpts
23830
23831 Change the PTS (presentation timestamp) of the input frames.
23832
23833 @code{setpts} works on video frames, @code{asetpts} on audio frames.
23834
23835 This filter accepts the following options:
23836
23837 @table @option
23838
23839 @item expr
23840 The expression which is evaluated for each frame to construct its timestamp.
23841
23842 @end table
23843
23844 The expression is evaluated through the eval API and can contain the following
23845 constants:
23846
23847 @table @option
23848 @item FRAME_RATE, FR
23849 frame rate, only defined for constant frame-rate video
23850
23851 @item PTS
23852 The presentation timestamp in input
23853
23854 @item N
23855 The count of the input frame for video or the number of consumed samples,
23856 not including the current frame for audio, starting from 0.
23857
23858 @item NB_CONSUMED_SAMPLES
23859 The number of consumed samples, not including the current frame (only
23860 audio)
23861
23862 @item NB_SAMPLES, S
23863 The number of samples in the current frame (only audio)
23864
23865 @item SAMPLE_RATE, SR
23866 The audio sample rate.
23867
23868 @item STARTPTS
23869 The PTS of the first frame.
23870
23871 @item STARTT
23872 the time in seconds of the first frame
23873
23874 @item INTERLACED
23875 State whether the current frame is interlaced.
23876
23877 @item T
23878 the time in seconds of the current frame
23879
23880 @item POS
23881 original position in the file of the frame, or undefined if undefined
23882 for the current frame
23883
23884 @item PREV_INPTS
23885 The previous input PTS.
23886
23887 @item PREV_INT
23888 previous input time in seconds
23889
23890 @item PREV_OUTPTS
23891 The previous output PTS.
23892
23893 @item PREV_OUTT
23894 previous output time in seconds
23895
23896 @item RTCTIME
23897 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
23898 instead.
23899
23900 @item RTCSTART
23901 The wallclock (RTC) time at the start of the movie in microseconds.
23902
23903 @item TB
23904 The timebase of the input timestamps.
23905
23906 @end table
23907
23908 @subsection Examples
23909
23910 @itemize
23911 @item
23912 Start counting PTS from zero
23913 @example
23914 setpts=PTS-STARTPTS
23915 @end example
23916
23917 @item
23918 Apply fast motion effect:
23919 @example
23920 setpts=0.5*PTS
23921 @end example
23922
23923 @item
23924 Apply slow motion effect:
23925 @example
23926 setpts=2.0*PTS
23927 @end example
23928
23929 @item
23930 Set fixed rate of 25 frames per second:
23931 @example
23932 setpts=N/(25*TB)
23933 @end example
23934
23935 @item
23936 Set fixed rate 25 fps with some jitter:
23937 @example
23938 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
23939 @end example
23940
23941 @item
23942 Apply an offset of 10 seconds to the input PTS:
23943 @example
23944 setpts=PTS+10/TB
23945 @end example
23946
23947 @item
23948 Generate timestamps from a "live source" and rebase onto the current timebase:
23949 @example
23950 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
23951 @end example
23952
23953 @item
23954 Generate timestamps by counting samples:
23955 @example
23956 asetpts=N/SR/TB
23957 @end example
23958
23959 @end itemize
23960
23961 @section setrange
23962
23963 Force color range for the output video frame.
23964
23965 The @code{setrange} filter marks the color range property for the
23966 output frames. It does not change the input frame, but only sets the
23967 corresponding property, which affects how the frame is treated by
23968 following filters.
23969
23970 The filter accepts the following options:
23971
23972 @table @option
23973
23974 @item range
23975 Available values are:
23976
23977 @table @samp
23978 @item auto
23979 Keep the same color range property.
23980
23981 @item unspecified, unknown
23982 Set the color range as unspecified.
23983
23984 @item limited, tv, mpeg
23985 Set the color range as limited.
23986
23987 @item full, pc, jpeg
23988 Set the color range as full.
23989 @end table
23990 @end table
23991
23992 @section settb, asettb
23993
23994 Set the timebase to use for the output frames timestamps.
23995 It is mainly useful for testing timebase configuration.
23996
23997 It accepts the following parameters:
23998
23999 @table @option
24000
24001 @item expr, tb
24002 The expression which is evaluated into the output timebase.
24003
24004 @end table
24005
24006 The value for @option{tb} is an arithmetic expression representing a
24007 rational. The expression can contain the constants "AVTB" (the default
24008 timebase), "intb" (the input timebase) and "sr" (the sample rate,
24009 audio only). Default value is "intb".
24010
24011 @subsection Examples
24012
24013 @itemize
24014 @item
24015 Set the timebase to 1/25:
24016 @example
24017 settb=expr=1/25
24018 @end example
24019
24020 @item
24021 Set the timebase to 1/10:
24022 @example
24023 settb=expr=0.1
24024 @end example
24025
24026 @item
24027 Set the timebase to 1001/1000:
24028 @example
24029 settb=1+0.001
24030 @end example
24031
24032 @item
24033 Set the timebase to 2*intb:
24034 @example
24035 settb=2*intb
24036 @end example
24037
24038 @item
24039 Set the default timebase value:
24040 @example
24041 settb=AVTB
24042 @end example
24043 @end itemize
24044
24045 @section showcqt
24046 Convert input audio to a video output representing frequency spectrum
24047 logarithmically using Brown-Puckette constant Q transform algorithm with
24048 direct frequency domain coefficient calculation (but the transform itself
24049 is not really constant Q, instead the Q factor is actually variable/clamped),
24050 with musical tone scale, from E0 to D#10.
24051
24052 The filter accepts the following options:
24053
24054 @table @option
24055 @item size, s
24056 Specify the video size for the output. It must be even. For the syntax of this option,
24057 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24058 Default value is @code{1920x1080}.
24059
24060 @item fps, rate, r
24061 Set the output frame rate. Default value is @code{25}.
24062
24063 @item bar_h
24064 Set the bargraph height. It must be even. Default value is @code{-1} which
24065 computes the bargraph height automatically.
24066
24067 @item axis_h
24068 Set the axis height. It must be even. Default value is @code{-1} which computes
24069 the axis height automatically.
24070
24071 @item sono_h
24072 Set the sonogram height. It must be even. Default value is @code{-1} which
24073 computes the sonogram height automatically.
24074
24075 @item fullhd
24076 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
24077 instead. Default value is @code{1}.
24078
24079 @item sono_v, volume
24080 Specify the sonogram volume expression. It can contain variables:
24081 @table @option
24082 @item bar_v
24083 the @var{bar_v} evaluated expression
24084 @item frequency, freq, f
24085 the frequency where it is evaluated
24086 @item timeclamp, tc
24087 the value of @var{timeclamp} option
24088 @end table
24089 and functions:
24090 @table @option
24091 @item a_weighting(f)
24092 A-weighting of equal loudness
24093 @item b_weighting(f)
24094 B-weighting of equal loudness
24095 @item c_weighting(f)
24096 C-weighting of equal loudness.
24097 @end table
24098 Default value is @code{16}.
24099
24100 @item bar_v, volume2
24101 Specify the bargraph volume expression. It can contain variables:
24102 @table @option
24103 @item sono_v
24104 the @var{sono_v} evaluated expression
24105 @item frequency, freq, f
24106 the frequency where it is evaluated
24107 @item timeclamp, tc
24108 the value of @var{timeclamp} option
24109 @end table
24110 and functions:
24111 @table @option
24112 @item a_weighting(f)
24113 A-weighting of equal loudness
24114 @item b_weighting(f)
24115 B-weighting of equal loudness
24116 @item c_weighting(f)
24117 C-weighting of equal loudness.
24118 @end table
24119 Default value is @code{sono_v}.
24120
24121 @item sono_g, gamma
24122 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
24123 higher gamma makes the spectrum having more range. Default value is @code{3}.
24124 Acceptable range is @code{[1, 7]}.
24125
24126 @item bar_g, gamma2
24127 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
24128 @code{[1, 7]}.
24129
24130 @item bar_t
24131 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
24132 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
24133
24134 @item timeclamp, tc
24135 Specify the transform timeclamp. At low frequency, there is trade-off between
24136 accuracy in time domain and frequency domain. If timeclamp is lower,
24137 event in time domain is represented more accurately (such as fast bass drum),
24138 otherwise event in frequency domain is represented more accurately
24139 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
24140
24141 @item attack
24142 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
24143 limits future samples by applying asymmetric windowing in time domain, useful
24144 when low latency is required. Accepted range is @code{[0, 1]}.
24145
24146 @item basefreq
24147 Specify the transform base frequency. Default value is @code{20.01523126408007475},
24148 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
24149
24150 @item endfreq
24151 Specify the transform end frequency. Default value is @code{20495.59681441799654},
24152 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
24153
24154 @item coeffclamp
24155 This option is deprecated and ignored.
24156
24157 @item tlength
24158 Specify the transform length in time domain. Use this option to control accuracy
24159 trade-off between time domain and frequency domain at every frequency sample.
24160 It can contain variables:
24161 @table @option
24162 @item frequency, freq, f
24163 the frequency where it is evaluated
24164 @item timeclamp, tc
24165 the value of @var{timeclamp} option.
24166 @end table
24167 Default value is @code{384*tc/(384+tc*f)}.
24168
24169 @item count
24170 Specify the transform count for every video frame. Default value is @code{6}.
24171 Acceptable range is @code{[1, 30]}.
24172
24173 @item fcount
24174 Specify the transform count for every single pixel. Default value is @code{0},
24175 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
24176
24177 @item fontfile
24178 Specify font file for use with freetype to draw the axis. If not specified,
24179 use embedded font. Note that drawing with font file or embedded font is not
24180 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
24181 option instead.
24182
24183 @item font
24184 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
24185 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
24186 escaping.
24187
24188 @item fontcolor
24189 Specify font color expression. This is arithmetic expression that should return
24190 integer value 0xRRGGBB. It can contain variables:
24191 @table @option
24192 @item frequency, freq, f
24193 the frequency where it is evaluated
24194 @item timeclamp, tc
24195 the value of @var{timeclamp} option
24196 @end table
24197 and functions:
24198 @table @option
24199 @item midi(f)
24200 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
24201 @item r(x), g(x), b(x)
24202 red, green, and blue value of intensity x.
24203 @end table
24204 Default value is @code{st(0, (midi(f)-59.5)/12);
24205 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
24206 r(1-ld(1)) + b(ld(1))}.
24207
24208 @item axisfile
24209 Specify image file to draw the axis. This option override @var{fontfile} and
24210 @var{fontcolor} option.
24211
24212 @item axis, text
24213 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
24214 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
24215 Default value is @code{1}.
24216
24217 @item csp
24218 Set colorspace. The accepted values are:
24219 @table @samp
24220 @item unspecified
24221 Unspecified (default)
24222
24223 @item bt709
24224 BT.709
24225
24226 @item fcc
24227 FCC
24228
24229 @item bt470bg
24230 BT.470BG or BT.601-6 625
24231
24232 @item smpte170m
24233 SMPTE-170M or BT.601-6 525
24234
24235 @item smpte240m
24236 SMPTE-240M
24237
24238 @item bt2020ncl
24239 BT.2020 with non-constant luminance
24240
24241 @end table
24242
24243 @item cscheme
24244 Set spectrogram color scheme. This is list of floating point values with format
24245 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
24246 The default is @code{1|0.5|0|0|0.5|1}.
24247
24248 @end table
24249
24250 @subsection Examples
24251
24252 @itemize
24253 @item
24254 Playing audio while showing the spectrum:
24255 @example
24256 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
24257 @end example
24258
24259 @item
24260 Same as above, but with frame rate 30 fps:
24261 @example
24262 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
24263 @end example
24264
24265 @item
24266 Playing at 1280x720:
24267 @example
24268 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
24269 @end example
24270
24271 @item
24272 Disable sonogram display:
24273 @example
24274 sono_h=0
24275 @end example
24276
24277 @item
24278 A1 and its harmonics: A1, A2, (near)E3, A3:
24279 @example
24280 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),
24281                  asplit[a][out1]; [a] showcqt [out0]'
24282 @end example
24283
24284 @item
24285 Same as above, but with more accuracy in frequency domain:
24286 @example
24287 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),
24288                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
24289 @end example
24290
24291 @item
24292 Custom volume:
24293 @example
24294 bar_v=10:sono_v=bar_v*a_weighting(f)
24295 @end example
24296
24297 @item
24298 Custom gamma, now spectrum is linear to the amplitude.
24299 @example
24300 bar_g=2:sono_g=2
24301 @end example
24302
24303 @item
24304 Custom tlength equation:
24305 @example
24306 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)))'
24307 @end example
24308
24309 @item
24310 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
24311 @example
24312 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
24313 @end example
24314
24315 @item
24316 Custom font using fontconfig:
24317 @example
24318 font='Courier New,Monospace,mono|bold'
24319 @end example
24320
24321 @item
24322 Custom frequency range with custom axis using image file:
24323 @example
24324 axisfile=myaxis.png:basefreq=40:endfreq=10000
24325 @end example
24326 @end itemize
24327
24328 @section showfreqs
24329
24330 Convert input audio to video output representing the audio power spectrum.
24331 Audio amplitude is on Y-axis while frequency is on X-axis.
24332
24333 The filter accepts the following options:
24334
24335 @table @option
24336 @item size, s
24337 Specify size of video. For the syntax of this option, check the
24338 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24339 Default is @code{1024x512}.
24340
24341 @item mode
24342 Set display mode.
24343 This set how each frequency bin will be represented.
24344
24345 It accepts the following values:
24346 @table @samp
24347 @item line
24348 @item bar
24349 @item dot
24350 @end table
24351 Default is @code{bar}.
24352
24353 @item ascale
24354 Set amplitude scale.
24355
24356 It accepts the following values:
24357 @table @samp
24358 @item lin
24359 Linear scale.
24360
24361 @item sqrt
24362 Square root scale.
24363
24364 @item cbrt
24365 Cubic root scale.
24366
24367 @item log
24368 Logarithmic scale.
24369 @end table
24370 Default is @code{log}.
24371
24372 @item fscale
24373 Set frequency scale.
24374
24375 It accepts the following values:
24376 @table @samp
24377 @item lin
24378 Linear scale.
24379
24380 @item log
24381 Logarithmic scale.
24382
24383 @item rlog
24384 Reverse logarithmic scale.
24385 @end table
24386 Default is @code{lin}.
24387
24388 @item win_size
24389 Set window size. Allowed range is from 16 to 65536.
24390
24391 Default is @code{2048}
24392
24393 @item win_func
24394 Set windowing function.
24395
24396 It accepts the following values:
24397 @table @samp
24398 @item rect
24399 @item bartlett
24400 @item hanning
24401 @item hamming
24402 @item blackman
24403 @item welch
24404 @item flattop
24405 @item bharris
24406 @item bnuttall
24407 @item bhann
24408 @item sine
24409 @item nuttall
24410 @item lanczos
24411 @item gauss
24412 @item tukey
24413 @item dolph
24414 @item cauchy
24415 @item parzen
24416 @item poisson
24417 @item bohman
24418 @end table
24419 Default is @code{hanning}.
24420
24421 @item overlap
24422 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
24423 which means optimal overlap for selected window function will be picked.
24424
24425 @item averaging
24426 Set time averaging. Setting this to 0 will display current maximal peaks.
24427 Default is @code{1}, which means time averaging is disabled.
24428
24429 @item colors
24430 Specify list of colors separated by space or by '|' which will be used to
24431 draw channel frequencies. Unrecognized or missing colors will be replaced
24432 by white color.
24433
24434 @item cmode
24435 Set channel display mode.
24436
24437 It accepts the following values:
24438 @table @samp
24439 @item combined
24440 @item separate
24441 @end table
24442 Default is @code{combined}.
24443
24444 @item minamp
24445 Set minimum amplitude used in @code{log} amplitude scaler.
24446
24447 @end table
24448
24449 @section showspatial
24450
24451 Convert stereo input audio to a video output, representing the spatial relationship
24452 between two channels.
24453
24454 The filter accepts the following options:
24455
24456 @table @option
24457 @item size, s
24458 Specify the video size for the output. For the syntax of this option, check the
24459 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24460 Default value is @code{512x512}.
24461
24462 @item win_size
24463 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
24464
24465 @item win_func
24466 Set window function.
24467
24468 It accepts the following values:
24469 @table @samp
24470 @item rect
24471 @item bartlett
24472 @item hann
24473 @item hanning
24474 @item hamming
24475 @item blackman
24476 @item welch
24477 @item flattop
24478 @item bharris
24479 @item bnuttall
24480 @item bhann
24481 @item sine
24482 @item nuttall
24483 @item lanczos
24484 @item gauss
24485 @item tukey
24486 @item dolph
24487 @item cauchy
24488 @item parzen
24489 @item poisson
24490 @item bohman
24491 @end table
24492
24493 Default value is @code{hann}.
24494
24495 @item overlap
24496 Set ratio of overlap window. Default value is @code{0.5}.
24497 When value is @code{1} overlap is set to recommended size for specific
24498 window function currently used.
24499 @end table
24500
24501 @anchor{showspectrum}
24502 @section showspectrum
24503
24504 Convert input audio to a video output, representing the audio frequency
24505 spectrum.
24506
24507 The filter accepts the following options:
24508
24509 @table @option
24510 @item size, s
24511 Specify the video size for the output. For the syntax of this option, check the
24512 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24513 Default value is @code{640x512}.
24514
24515 @item slide
24516 Specify how the spectrum should slide along the window.
24517
24518 It accepts the following values:
24519 @table @samp
24520 @item replace
24521 the samples start again on the left when they reach the right
24522 @item scroll
24523 the samples scroll from right to left
24524 @item fullframe
24525 frames are only produced when the samples reach the right
24526 @item rscroll
24527 the samples scroll from left to right
24528 @end table
24529
24530 Default value is @code{replace}.
24531
24532 @item mode
24533 Specify display mode.
24534
24535 It accepts the following values:
24536 @table @samp
24537 @item combined
24538 all channels are displayed in the same row
24539 @item separate
24540 all channels are displayed in separate rows
24541 @end table
24542
24543 Default value is @samp{combined}.
24544
24545 @item color
24546 Specify display color mode.
24547
24548 It accepts the following values:
24549 @table @samp
24550 @item channel
24551 each channel is displayed in a separate color
24552 @item intensity
24553 each channel is displayed using the same color scheme
24554 @item rainbow
24555 each channel is displayed using the rainbow color scheme
24556 @item moreland
24557 each channel is displayed using the moreland color scheme
24558 @item nebulae
24559 each channel is displayed using the nebulae color scheme
24560 @item fire
24561 each channel is displayed using the fire color scheme
24562 @item fiery
24563 each channel is displayed using the fiery color scheme
24564 @item fruit
24565 each channel is displayed using the fruit color scheme
24566 @item cool
24567 each channel is displayed using the cool color scheme
24568 @item magma
24569 each channel is displayed using the magma color scheme
24570 @item green
24571 each channel is displayed using the green color scheme
24572 @item viridis
24573 each channel is displayed using the viridis color scheme
24574 @item plasma
24575 each channel is displayed using the plasma color scheme
24576 @item cividis
24577 each channel is displayed using the cividis color scheme
24578 @item terrain
24579 each channel is displayed using the terrain color scheme
24580 @end table
24581
24582 Default value is @samp{channel}.
24583
24584 @item scale
24585 Specify scale used for calculating intensity color values.
24586
24587 It accepts the following values:
24588 @table @samp
24589 @item lin
24590 linear
24591 @item sqrt
24592 square root, default
24593 @item cbrt
24594 cubic root
24595 @item log
24596 logarithmic
24597 @item 4thrt
24598 4th root
24599 @item 5thrt
24600 5th root
24601 @end table
24602
24603 Default value is @samp{sqrt}.
24604
24605 @item fscale
24606 Specify frequency scale.
24607
24608 It accepts the following values:
24609 @table @samp
24610 @item lin
24611 linear
24612 @item log
24613 logarithmic
24614 @end table
24615
24616 Default value is @samp{lin}.
24617
24618 @item saturation
24619 Set saturation modifier for displayed colors. Negative values provide
24620 alternative color scheme. @code{0} is no saturation at all.
24621 Saturation must be in [-10.0, 10.0] range.
24622 Default value is @code{1}.
24623
24624 @item win_func
24625 Set window function.
24626
24627 It accepts the following values:
24628 @table @samp
24629 @item rect
24630 @item bartlett
24631 @item hann
24632 @item hanning
24633 @item hamming
24634 @item blackman
24635 @item welch
24636 @item flattop
24637 @item bharris
24638 @item bnuttall
24639 @item bhann
24640 @item sine
24641 @item nuttall
24642 @item lanczos
24643 @item gauss
24644 @item tukey
24645 @item dolph
24646 @item cauchy
24647 @item parzen
24648 @item poisson
24649 @item bohman
24650 @end table
24651
24652 Default value is @code{hann}.
24653
24654 @item orientation
24655 Set orientation of time vs frequency axis. Can be @code{vertical} or
24656 @code{horizontal}. Default is @code{vertical}.
24657
24658 @item overlap
24659 Set ratio of overlap window. Default value is @code{0}.
24660 When value is @code{1} overlap is set to recommended size for specific
24661 window function currently used.
24662
24663 @item gain
24664 Set scale gain for calculating intensity color values.
24665 Default value is @code{1}.
24666
24667 @item data
24668 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
24669
24670 @item rotation
24671 Set color rotation, must be in [-1.0, 1.0] range.
24672 Default value is @code{0}.
24673
24674 @item start
24675 Set start frequency from which to display spectrogram. Default is @code{0}.
24676
24677 @item stop
24678 Set stop frequency to which to display spectrogram. Default is @code{0}.
24679
24680 @item fps
24681 Set upper frame rate limit. Default is @code{auto}, unlimited.
24682
24683 @item legend
24684 Draw time and frequency axes and legends. Default is disabled.
24685 @end table
24686
24687 The usage is very similar to the showwaves filter; see the examples in that
24688 section.
24689
24690 @subsection Examples
24691
24692 @itemize
24693 @item
24694 Large window with logarithmic color scaling:
24695 @example
24696 showspectrum=s=1280x480:scale=log
24697 @end example
24698
24699 @item
24700 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
24701 @example
24702 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24703              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
24704 @end example
24705 @end itemize
24706
24707 @section showspectrumpic
24708
24709 Convert input audio to a single video frame, representing the audio frequency
24710 spectrum.
24711
24712 The filter accepts the following options:
24713
24714 @table @option
24715 @item size, s
24716 Specify the video size for the output. For the syntax of this option, check the
24717 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24718 Default value is @code{4096x2048}.
24719
24720 @item mode
24721 Specify display mode.
24722
24723 It accepts the following values:
24724 @table @samp
24725 @item combined
24726 all channels are displayed in the same row
24727 @item separate
24728 all channels are displayed in separate rows
24729 @end table
24730 Default value is @samp{combined}.
24731
24732 @item color
24733 Specify display color mode.
24734
24735 It accepts the following values:
24736 @table @samp
24737 @item channel
24738 each channel is displayed in a separate color
24739 @item intensity
24740 each channel is displayed using the same color scheme
24741 @item rainbow
24742 each channel is displayed using the rainbow color scheme
24743 @item moreland
24744 each channel is displayed using the moreland color scheme
24745 @item nebulae
24746 each channel is displayed using the nebulae color scheme
24747 @item fire
24748 each channel is displayed using the fire color scheme
24749 @item fiery
24750 each channel is displayed using the fiery color scheme
24751 @item fruit
24752 each channel is displayed using the fruit color scheme
24753 @item cool
24754 each channel is displayed using the cool color scheme
24755 @item magma
24756 each channel is displayed using the magma color scheme
24757 @item green
24758 each channel is displayed using the green color scheme
24759 @item viridis
24760 each channel is displayed using the viridis color scheme
24761 @item plasma
24762 each channel is displayed using the plasma color scheme
24763 @item cividis
24764 each channel is displayed using the cividis color scheme
24765 @item terrain
24766 each channel is displayed using the terrain color scheme
24767 @end table
24768 Default value is @samp{intensity}.
24769
24770 @item scale
24771 Specify scale used for calculating intensity color values.
24772
24773 It accepts the following values:
24774 @table @samp
24775 @item lin
24776 linear
24777 @item sqrt
24778 square root, default
24779 @item cbrt
24780 cubic root
24781 @item log
24782 logarithmic
24783 @item 4thrt
24784 4th root
24785 @item 5thrt
24786 5th root
24787 @end table
24788 Default value is @samp{log}.
24789
24790 @item fscale
24791 Specify frequency scale.
24792
24793 It accepts the following values:
24794 @table @samp
24795 @item lin
24796 linear
24797 @item log
24798 logarithmic
24799 @end table
24800
24801 Default value is @samp{lin}.
24802
24803 @item saturation
24804 Set saturation modifier for displayed colors. Negative values provide
24805 alternative color scheme. @code{0} is no saturation at all.
24806 Saturation must be in [-10.0, 10.0] range.
24807 Default value is @code{1}.
24808
24809 @item win_func
24810 Set window function.
24811
24812 It accepts the following values:
24813 @table @samp
24814 @item rect
24815 @item bartlett
24816 @item hann
24817 @item hanning
24818 @item hamming
24819 @item blackman
24820 @item welch
24821 @item flattop
24822 @item bharris
24823 @item bnuttall
24824 @item bhann
24825 @item sine
24826 @item nuttall
24827 @item lanczos
24828 @item gauss
24829 @item tukey
24830 @item dolph
24831 @item cauchy
24832 @item parzen
24833 @item poisson
24834 @item bohman
24835 @end table
24836 Default value is @code{hann}.
24837
24838 @item orientation
24839 Set orientation of time vs frequency axis. Can be @code{vertical} or
24840 @code{horizontal}. Default is @code{vertical}.
24841
24842 @item gain
24843 Set scale gain for calculating intensity color values.
24844 Default value is @code{1}.
24845
24846 @item legend
24847 Draw time and frequency axes and legends. Default is enabled.
24848
24849 @item rotation
24850 Set color rotation, must be in [-1.0, 1.0] range.
24851 Default value is @code{0}.
24852
24853 @item start
24854 Set start frequency from which to display spectrogram. Default is @code{0}.
24855
24856 @item stop
24857 Set stop frequency to which to display spectrogram. Default is @code{0}.
24858 @end table
24859
24860 @subsection Examples
24861
24862 @itemize
24863 @item
24864 Extract an audio spectrogram of a whole audio track
24865 in a 1024x1024 picture using @command{ffmpeg}:
24866 @example
24867 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
24868 @end example
24869 @end itemize
24870
24871 @section showvolume
24872
24873 Convert input audio volume to a video output.
24874
24875 The filter accepts the following options:
24876
24877 @table @option
24878 @item rate, r
24879 Set video rate.
24880
24881 @item b
24882 Set border width, allowed range is [0, 5]. Default is 1.
24883
24884 @item w
24885 Set channel width, allowed range is [80, 8192]. Default is 400.
24886
24887 @item h
24888 Set channel height, allowed range is [1, 900]. Default is 20.
24889
24890 @item f
24891 Set fade, allowed range is [0, 1]. Default is 0.95.
24892
24893 @item c
24894 Set volume color expression.
24895
24896 The expression can use the following variables:
24897
24898 @table @option
24899 @item VOLUME
24900 Current max volume of channel in dB.
24901
24902 @item PEAK
24903 Current peak.
24904
24905 @item CHANNEL
24906 Current channel number, starting from 0.
24907 @end table
24908
24909 @item t
24910 If set, displays channel names. Default is enabled.
24911
24912 @item v
24913 If set, displays volume values. Default is enabled.
24914
24915 @item o
24916 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
24917 default is @code{h}.
24918
24919 @item s
24920 Set step size, allowed range is [0, 5]. Default is 0, which means
24921 step is disabled.
24922
24923 @item p
24924 Set background opacity, allowed range is [0, 1]. Default is 0.
24925
24926 @item m
24927 Set metering mode, can be peak: @code{p} or rms: @code{r},
24928 default is @code{p}.
24929
24930 @item ds
24931 Set display scale, can be linear: @code{lin} or log: @code{log},
24932 default is @code{lin}.
24933
24934 @item dm
24935 In second.
24936 If set to > 0., display a line for the max level
24937 in the previous seconds.
24938 default is disabled: @code{0.}
24939
24940 @item dmc
24941 The color of the max line. Use when @code{dm} option is set to > 0.
24942 default is: @code{orange}
24943 @end table
24944
24945 @section showwaves
24946
24947 Convert input audio to a video output, representing the samples waves.
24948
24949 The filter accepts the following options:
24950
24951 @table @option
24952 @item size, s
24953 Specify the video size for the output. For the syntax of this option, check the
24954 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24955 Default value is @code{600x240}.
24956
24957 @item mode
24958 Set display mode.
24959
24960 Available values are:
24961 @table @samp
24962 @item point
24963 Draw a point for each sample.
24964
24965 @item line
24966 Draw a vertical line for each sample.
24967
24968 @item p2p
24969 Draw a point for each sample and a line between them.
24970
24971 @item cline
24972 Draw a centered vertical line for each sample.
24973 @end table
24974
24975 Default value is @code{point}.
24976
24977 @item n
24978 Set the number of samples which are printed on the same column. A
24979 larger value will decrease the frame rate. Must be a positive
24980 integer. This option can be set only if the value for @var{rate}
24981 is not explicitly specified.
24982
24983 @item rate, r
24984 Set the (approximate) output frame rate. This is done by setting the
24985 option @var{n}. Default value is "25".
24986
24987 @item split_channels
24988 Set if channels should be drawn separately or overlap. Default value is 0.
24989
24990 @item colors
24991 Set colors separated by '|' which are going to be used for drawing of each channel.
24992
24993 @item scale
24994 Set amplitude scale.
24995
24996 Available values are:
24997 @table @samp
24998 @item lin
24999 Linear.
25000
25001 @item log
25002 Logarithmic.
25003
25004 @item sqrt
25005 Square root.
25006
25007 @item cbrt
25008 Cubic root.
25009 @end table
25010
25011 Default is linear.
25012
25013 @item draw
25014 Set the draw mode. This is mostly useful to set for high @var{n}.
25015
25016 Available values are:
25017 @table @samp
25018 @item scale
25019 Scale pixel values for each drawn sample.
25020
25021 @item full
25022 Draw every sample directly.
25023 @end table
25024
25025 Default value is @code{scale}.
25026 @end table
25027
25028 @subsection Examples
25029
25030 @itemize
25031 @item
25032 Output the input file audio and the corresponding video representation
25033 at the same time:
25034 @example
25035 amovie=a.mp3,asplit[out0],showwaves[out1]
25036 @end example
25037
25038 @item
25039 Create a synthetic signal and show it with showwaves, forcing a
25040 frame rate of 30 frames per second:
25041 @example
25042 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
25043 @end example
25044 @end itemize
25045
25046 @section showwavespic
25047
25048 Convert input audio to a single video frame, representing the samples waves.
25049
25050 The filter accepts the following options:
25051
25052 @table @option
25053 @item size, s
25054 Specify the video size for the output. For the syntax of this option, check the
25055 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25056 Default value is @code{600x240}.
25057
25058 @item split_channels
25059 Set if channels should be drawn separately or overlap. Default value is 0.
25060
25061 @item colors
25062 Set colors separated by '|' which are going to be used for drawing of each channel.
25063
25064 @item scale
25065 Set amplitude scale.
25066
25067 Available values are:
25068 @table @samp
25069 @item lin
25070 Linear.
25071
25072 @item log
25073 Logarithmic.
25074
25075 @item sqrt
25076 Square root.
25077
25078 @item cbrt
25079 Cubic root.
25080 @end table
25081
25082 Default is linear.
25083
25084 @item draw
25085 Set the draw mode.
25086
25087 Available values are:
25088 @table @samp
25089 @item scale
25090 Scale pixel values for each drawn sample.
25091
25092 @item full
25093 Draw every sample directly.
25094 @end table
25095
25096 Default value is @code{scale}.
25097 @end table
25098
25099 @subsection Examples
25100
25101 @itemize
25102 @item
25103 Extract a channel split representation of the wave form of a whole audio track
25104 in a 1024x800 picture using @command{ffmpeg}:
25105 @example
25106 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
25107 @end example
25108 @end itemize
25109
25110 @section sidedata, asidedata
25111
25112 Delete frame side data, or select frames based on it.
25113
25114 This filter accepts the following options:
25115
25116 @table @option
25117 @item mode
25118 Set mode of operation of the filter.
25119
25120 Can be one of the following:
25121
25122 @table @samp
25123 @item select
25124 Select every frame with side data of @code{type}.
25125
25126 @item delete
25127 Delete side data of @code{type}. If @code{type} is not set, delete all side
25128 data in the frame.
25129
25130 @end table
25131
25132 @item type
25133 Set side data type used with all modes. Must be set for @code{select} mode. For
25134 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
25135 in @file{libavutil/frame.h}. For example, to choose
25136 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
25137
25138 @end table
25139
25140 @section spectrumsynth
25141
25142 Synthesize audio from 2 input video spectrums, first input stream represents
25143 magnitude across time and second represents phase across time.
25144 The filter will transform from frequency domain as displayed in videos back
25145 to time domain as presented in audio output.
25146
25147 This filter is primarily created for reversing processed @ref{showspectrum}
25148 filter outputs, but can synthesize sound from other spectrograms too.
25149 But in such case results are going to be poor if the phase data is not
25150 available, because in such cases phase data need to be recreated, usually
25151 it's just recreated from random noise.
25152 For best results use gray only output (@code{channel} color mode in
25153 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
25154 @code{lin} scale for phase video. To produce phase, for 2nd video, use
25155 @code{data} option. Inputs videos should generally use @code{fullframe}
25156 slide mode as that saves resources needed for decoding video.
25157
25158 The filter accepts the following options:
25159
25160 @table @option
25161 @item sample_rate
25162 Specify sample rate of output audio, the sample rate of audio from which
25163 spectrum was generated may differ.
25164
25165 @item channels
25166 Set number of channels represented in input video spectrums.
25167
25168 @item scale
25169 Set scale which was used when generating magnitude input spectrum.
25170 Can be @code{lin} or @code{log}. Default is @code{log}.
25171
25172 @item slide
25173 Set slide which was used when generating inputs spectrums.
25174 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
25175 Default is @code{fullframe}.
25176
25177 @item win_func
25178 Set window function used for resynthesis.
25179
25180 @item overlap
25181 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25182 which means optimal overlap for selected window function will be picked.
25183
25184 @item orientation
25185 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
25186 Default is @code{vertical}.
25187 @end table
25188
25189 @subsection Examples
25190
25191 @itemize
25192 @item
25193 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
25194 then resynthesize videos back to audio with spectrumsynth:
25195 @example
25196 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
25197 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
25198 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
25199 @end example
25200 @end itemize
25201
25202 @section split, asplit
25203
25204 Split input into several identical outputs.
25205
25206 @code{asplit} works with audio input, @code{split} with video.
25207
25208 The filter accepts a single parameter which specifies the number of outputs. If
25209 unspecified, it defaults to 2.
25210
25211 @subsection Examples
25212
25213 @itemize
25214 @item
25215 Create two separate outputs from the same input:
25216 @example
25217 [in] split [out0][out1]
25218 @end example
25219
25220 @item
25221 To create 3 or more outputs, you need to specify the number of
25222 outputs, like in:
25223 @example
25224 [in] asplit=3 [out0][out1][out2]
25225 @end example
25226
25227 @item
25228 Create two separate outputs from the same input, one cropped and
25229 one padded:
25230 @example
25231 [in] split [splitout1][splitout2];
25232 [splitout1] crop=100:100:0:0    [cropout];
25233 [splitout2] pad=200:200:100:100 [padout];
25234 @end example
25235
25236 @item
25237 Create 5 copies of the input audio with @command{ffmpeg}:
25238 @example
25239 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
25240 @end example
25241 @end itemize
25242
25243 @section zmq, azmq
25244
25245 Receive commands sent through a libzmq client, and forward them to
25246 filters in the filtergraph.
25247
25248 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
25249 must be inserted between two video filters, @code{azmq} between two
25250 audio filters. Both are capable to send messages to any filter type.
25251
25252 To enable these filters you need to install the libzmq library and
25253 headers and configure FFmpeg with @code{--enable-libzmq}.
25254
25255 For more information about libzmq see:
25256 @url{http://www.zeromq.org/}
25257
25258 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
25259 receives messages sent through a network interface defined by the
25260 @option{bind_address} (or the abbreviation "@option{b}") option.
25261 Default value of this option is @file{tcp://localhost:5555}. You may
25262 want to alter this value to your needs, but do not forget to escape any
25263 ':' signs (see @ref{filtergraph escaping}).
25264
25265 The received message must be in the form:
25266 @example
25267 @var{TARGET} @var{COMMAND} [@var{ARG}]
25268 @end example
25269
25270 @var{TARGET} specifies the target of the command, usually the name of
25271 the filter class or a specific filter instance name. The default
25272 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
25273 but you can override this by using the @samp{filter_name@@id} syntax
25274 (see @ref{Filtergraph syntax}).
25275
25276 @var{COMMAND} specifies the name of the command for the target filter.
25277
25278 @var{ARG} is optional and specifies the optional argument list for the
25279 given @var{COMMAND}.
25280
25281 Upon reception, the message is processed and the corresponding command
25282 is injected into the filtergraph. Depending on the result, the filter
25283 will send a reply to the client, adopting the format:
25284 @example
25285 @var{ERROR_CODE} @var{ERROR_REASON}
25286 @var{MESSAGE}
25287 @end example
25288
25289 @var{MESSAGE} is optional.
25290
25291 @subsection Examples
25292
25293 Look at @file{tools/zmqsend} for an example of a zmq client which can
25294 be used to send commands processed by these filters.
25295
25296 Consider the following filtergraph generated by @command{ffplay}.
25297 In this example the last overlay filter has an instance name. All other
25298 filters will have default instance names.
25299
25300 @example
25301 ffplay -dumpgraph 1 -f lavfi "
25302 color=s=100x100:c=red  [l];
25303 color=s=100x100:c=blue [r];
25304 nullsrc=s=200x100, zmq [bg];
25305 [bg][l]   overlay     [bg+l];
25306 [bg+l][r] overlay@@my=x=100 "
25307 @end example
25308
25309 To change the color of the left side of the video, the following
25310 command can be used:
25311 @example
25312 echo Parsed_color_0 c yellow | tools/zmqsend
25313 @end example
25314
25315 To change the right side:
25316 @example
25317 echo Parsed_color_1 c pink | tools/zmqsend
25318 @end example
25319
25320 To change the position of the right side:
25321 @example
25322 echo overlay@@my x 150 | tools/zmqsend
25323 @end example
25324
25325
25326 @c man end MULTIMEDIA FILTERS
25327
25328 @chapter Multimedia Sources
25329 @c man begin MULTIMEDIA SOURCES
25330
25331 Below is a description of the currently available multimedia sources.
25332
25333 @section amovie
25334
25335 This is the same as @ref{movie} source, except it selects an audio
25336 stream by default.
25337
25338 @anchor{movie}
25339 @section movie
25340
25341 Read audio and/or video stream(s) from a movie container.
25342
25343 It accepts the following parameters:
25344
25345 @table @option
25346 @item filename
25347 The name of the resource to read (not necessarily a file; it can also be a
25348 device or a stream accessed through some protocol).
25349
25350 @item format_name, f
25351 Specifies the format assumed for the movie to read, and can be either
25352 the name of a container or an input device. If not specified, the
25353 format is guessed from @var{movie_name} or by probing.
25354
25355 @item seek_point, sp
25356 Specifies the seek point in seconds. The frames will be output
25357 starting from this seek point. The parameter is evaluated with
25358 @code{av_strtod}, so the numerical value may be suffixed by an IS
25359 postfix. The default value is "0".
25360
25361 @item streams, s
25362 Specifies the streams to read. Several streams can be specified,
25363 separated by "+". The source will then have as many outputs, in the
25364 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
25365 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
25366 respectively the default (best suited) video and audio stream. Default
25367 is "dv", or "da" if the filter is called as "amovie".
25368
25369 @item stream_index, si
25370 Specifies the index of the video stream to read. If the value is -1,
25371 the most suitable video stream will be automatically selected. The default
25372 value is "-1". Deprecated. If the filter is called "amovie", it will select
25373 audio instead of video.
25374
25375 @item loop
25376 Specifies how many times to read the stream in sequence.
25377 If the value is 0, the stream will be looped infinitely.
25378 Default value is "1".
25379
25380 Note that when the movie is looped the source timestamps are not
25381 changed, so it will generate non monotonically increasing timestamps.
25382
25383 @item discontinuity
25384 Specifies the time difference between frames above which the point is
25385 considered a timestamp discontinuity which is removed by adjusting the later
25386 timestamps.
25387 @end table
25388
25389 It allows overlaying a second video on top of the main input of
25390 a filtergraph, as shown in this graph:
25391 @example
25392 input -----------> deltapts0 --> overlay --> output
25393                                     ^
25394                                     |
25395 movie --> scale--> deltapts1 -------+
25396 @end example
25397 @subsection Examples
25398
25399 @itemize
25400 @item
25401 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
25402 on top of the input labelled "in":
25403 @example
25404 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
25405 [in] setpts=PTS-STARTPTS [main];
25406 [main][over] overlay=16:16 [out]
25407 @end example
25408
25409 @item
25410 Read from a video4linux2 device, and overlay it on top of the input
25411 labelled "in":
25412 @example
25413 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
25414 [in] setpts=PTS-STARTPTS [main];
25415 [main][over] overlay=16:16 [out]
25416 @end example
25417
25418 @item
25419 Read the first video stream and the audio stream with id 0x81 from
25420 dvd.vob; the video is connected to the pad named "video" and the audio is
25421 connected to the pad named "audio":
25422 @example
25423 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
25424 @end example
25425 @end itemize
25426
25427 @subsection Commands
25428
25429 Both movie and amovie support the following commands:
25430 @table @option
25431 @item seek
25432 Perform seek using "av_seek_frame".
25433 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
25434 @itemize
25435 @item
25436 @var{stream_index}: If stream_index is -1, a default
25437 stream is selected, and @var{timestamp} is automatically converted
25438 from AV_TIME_BASE units to the stream specific time_base.
25439 @item
25440 @var{timestamp}: Timestamp in AVStream.time_base units
25441 or, if no stream is specified, in AV_TIME_BASE units.
25442 @item
25443 @var{flags}: Flags which select direction and seeking mode.
25444 @end itemize
25445
25446 @item get_duration
25447 Get movie duration in AV_TIME_BASE units.
25448
25449 @end table
25450
25451 @c man end MULTIMEDIA SOURCES